html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

* {
  list-style: none;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  width: 100%;
  background-color: #fff;
  padding: 0 60px 0px 50px;
  box-sizing: border-box;
}

header h2 {
  font-size: 36px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #333333;
}

header a {
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #999999;
  text-decoration: none;
}

section {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  background: url(../../backstageImage/loginBG.png) no-repeat;
  background-size:100% 100%;
}

section .main_box {
  flex: 1;
  padding-right: 20%;
}

section .main_box .login_form {
  display: flex;
  flex-direction: column;
  width: 446px;
  height: 440px;
  margin-top: 180px;
  float: right;
  background: #FFFFFF;
  border: 1px solid #D4E9FF;
  padding: 0 24px;
  box-sizing: border-box;
}

section .main_box .login_form .login_tabBar {
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 0;
}

section .main_box .login_form .login_tabBar li {
  flex: 1;
  cursor: pointer;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #303030;
  box-sizing: border-box;
  border-top: 4px solid transparent;
}

section .main_box .login_form .login_tabBar .current {
  border-top: 4px solid #0a81ff;
}

section .main_box .login_form .login_content {
  display: none;
  flex: 1;
}

section .main_box .login_form .login_content .btn {
  width: 100%;
  height: 55px;
  margin-top: 45px;
  border: 0;
  background: #097FFF;
  box-shadow: 0px 5px 24px 0px rgba(9, 127, 255, 0.5);
  border-radius: 28px;
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #FFFFFF;
}

section .main_box .login_form .login_content form {
  width: 100%;
  height: 100%;
}

section .main_box .login_form .login_content form input:focus {
  outline: none;
}

section .main_box .login_form .login_content form .user {
  width: 100%;
  height: 55px;
  border-radius: 28px;
  padding-left: 73px;
  background: #D4E9FF;
  background: #D4E9FF ;
  background-position: 30px 50%;
  box-sizing: border-box;
  border: 0;
}

section .main_box .login_form .login_content form .password {
  width: 100%;
  height: 55px;
  margin-top: 13px;
  border-radius: 28px;
  padding-left: 73px;
  background: #D4E9FF;
  background-position: 30px 50%;
  box-sizing: border-box;
  border: 0;
}

section .main_box .login_form .login_content form .code_row {
  display: flex;
  flex-direction: row;
  padding-top: 13px;
  align-items: center;
  justify-content: space-between;
}

section .main_box .login_form .login_content form .code {
  width: 216px;
  height: 55px;
  border-radius: 28px;
  padding-left: 30px;
  background-color: #D4E9FF;
  box-sizing: border-box;
  border: 0;
}

section .main_box .login_form .login_content form .login_code {
  height: 48px;
  width: 126px;
  border: 1px solid #E4E4E4;
  box-sizing: border-box;
}

section .main_box .login_form .login_content form .btn {
  width: 100%;
  height: 55px;
  margin-top: 20px;
  border: 0;
  background: #097FFF;
  box-shadow: 0px 5px 24px 0px rgba(9, 127, 255, 0.5);
  border-radius: 28px;
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #FFFFFF;
  outline: none!important;
}
section .main_box .login_form .login_content form .checkbox-custom{
  margin-top: 10px;
}

section .footer {
  height: 95px;
  width: 100%;
  background: #09203D;
  opacity: 0.82;
  text-align: center;
}

section .footer p {
  margin-top: 30px;
  font-size: 16px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5;
}

input::-webkit-input-placeholder {
  /* WebKit browsers */
  font-size: 16px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #053b75;
  opacity: 0.63;
}

.form-group{
  /*height: 60px!important;*/
  position: relative;
  padding-bottom: 10px!important;
  box-sizing: border-box;
}
.form-group #username-error{
  font-size: 14px;
  position: absolute;
  left: 70px;
  bottom: -10px;

}
.form-group #password-error{
  font-size: 14px;
  position: absolute;
  left: 70px;
  bottom: -10px;
}
/*.form-group .error{*/

/*}*/

/*.form-group.required .control-label:before {*/
  /*color: red!important;*/
  /*content: "*";*/
  /*!*position: absolute;*!*/
  /*margin-left: -15px;*/
/*}*/
/*.help-block {*/
  /*width: 100%;*/
  /*position: absolute;*/
  /*left: 0;*/
  /*bottom: -10px;*/
  /*color: red!important;*/
  /*margin: 0 !important;*/
  /*padding-left: 70px;*/
  /*padding-top: 5px;*/
  /*box-sizing: border-box;*/
/*}*/
