iframe#agreement-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  border: none;
}

iframe#iframe-tutorial {
  width: 100%;
  height: 600px;
}

@font-face {
  font-family: "ShanghaiFace";
  src: url("../fonts/ShanghaiFace-RockGB.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "ShanghaiFaceBold";
  src: url("../fonts/ShanghaiFace-RockGB-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
/* *********** visual style starts *********** */
:root {
  font-size: 14px;
  --primaryColor: #fde102;
  --primaryLightColor: #ffef75;
  --secondaryColor: #5a0380;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
a.color-link {
  color: var(--primaryColor);
}
a.color-link:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
}

html {
  background: #FFF;
  font-family: "Microsoft YaHei", Tahoma, "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body .body-wrapper {
  margin: auto;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 150ms ease-in;
  transition: opacity 150ms ease-in;
  color: #333;
}

body.ready .body-wrapper {
  opacity: 1;
}

button {
  cursor: pointer;
}

input:-internal-autofill-selected {
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

.hide {
  display: none;
}

.btn-color {
  background-color: var(--primaryColor);
  border: 0;
  border-radius: 5px;
  color: #000;
  display: inline-block;
  font-size: 1rem;
  padding: 10px 15px;
  text-align: center;
  width: 120px;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-color.hide {
  display: none;
}
.btn-color:focus {
  outline: 0;
}
.btn-color:hover {
  background-color: #fff;
}

.title {
  color: #fff;
  font-family: "ShanghaiFaceBold", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.6rem;
  margin-bottom: 5px;
}

/* *********** index *********** */
.login-row {
  background: url("/util/banner-images/year_banner_bg.png") center no-repeat #bd2b2b;
  width: 100%;
  height: 470px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.login-row .container {
  position: relative;
}
.login-row .login-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.login-row .login-wrapper .login-banner-col {
  background: url("/util/banner-images/year_banner.png") center/contain no-repeat content-box;
  width: 700px;
  height: 475px;
  padding: 24px 0;
  margin-right: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.login-row .login-wrapper .login-banner-col .title {
  font-size: 4rem;
}
.login-row .login-wrapper .login-banner-col .subtitle {
  font-size: 1.6rem;
}
.login-row .login-wrapper .login-box-col {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 500px;
}
.login-row .login-wrapper .login-box-col .login-container {
  width: 270px;
  height: auto;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px 10px;
}
.login-row .login-wrapper .login-box-col .login-container.hide {
  display: none;
}
.login-row .login-wrapper .login-box-col .login-container .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.login-row .login-wrapper .login-box-col .login-container .title-wrapper .title {
  color: #fff;
  font-family: "ShanghaiFace", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin-left: 30px;
}
.login-row .login-wrapper .login-box-col .login-container .title-wrapper .btn-color {
  margin-left: 30px;
  margin-bottom: 5px;
  background-color: var(--primaryColor);
  border-radius: 20px;
  font-style: italic;
  padding: 3px 7px;
  width: 80px;
}
.login-row .login-wrapper .login-box-col .login-container .title-wrapper .btn-color:hover {
  background-color: #fff;
}
.login-row .login-wrapper .login-box-col .login-container .link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.login-row .login-wrapper .login-box-col .login-container .link-wrapper.after a {
  -ms-flex-preferred-size: 33.3333333333%;
  flex-basis: 33.3333333333%;
  text-align: center;
}
.login-row .login-wrapper .login-box-col .login-container .link-wrapper a {
  color: var(--primaryColor);
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.login-row .login-wrapper .login-box-col .login-container .link-wrapper a:hover {
  color: #fff;
}
.login-row .login-wrapper .login-box-col .login-container .link-wrapper .forgotpwd {
  margin-left: auto;
}
.login-row .login-wrapper .login-box-col .login-form div {
  margin-bottom: 15px;
}
.login-row .login-wrapper .login-box-col .login-form div:first-child {
  margin-top: 15px;
}
.login-row .login-wrapper .login-box-col .login-form .input-row {
  height: 50px;
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-self: center;
  margin: 10px auto;
  background-color: #fff;
  border-radius: 5px;
  font-size: 1.4rem;
  color: #999;
}
.login-row .login-wrapper .login-box-col .login-form .input-row input {
  all: unset;
  width: 100%;
  color: #999;
}
.login-row .login-wrapper .login-box-col .login-form .input-row input:focus {
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
}
.login-row .login-wrapper .login-box-col .login-form .vcode {
  position: relative;
}
.login-row .login-wrapper .login-box-col .login-form .vcode .verify-code {
  cursor: pointer;
  position: absolute;
  right: 1px;
  top: 2px;
  border-radius: 5px;
  height: 90%;
  width: 75px;
}
.login-row .login-wrapper .login-box-col .login-form #loginBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  width: 210px;
  height: 52px;
  background: url("../img/login_btn_green_white.png") no-repeat left top;
}
/*# sourceMappingURL=../maps/main.css.map */
