/* login页面属性 */

#login-center {
  width: 720px;
  height: 600px;
  margin: 67px auto;
  margin-bottom: 146px;
  position: relative;
}

/* 左侧图片描述 */

#center-left {
  float: left;
  width: 270px;
  height: 600px;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  background-color: #f9f9f9;
}

/* 右侧登录 */

#center-right {
  position: relative;
  text-align: center;
  float: right;
  width: 450px;
  height: 600px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}

#center-right #account-corner {
  display: none;
}

#center-right .corner-box {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 16px;
}

#center-right .corner-box .corner-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 0 0 20px;
}

#center-right .corner-box .corner-tip {
  position: relative;
  border-radius: 2px;
  padding: 7px 12px;
  background-color: #fe6135;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

#center-right .corner-box .corner-tip:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  display: block;
  border-style: solid;
  border-width: 4px;
  border-color: transparent transparent transparent #fe6135;
}

#center-right .qrcode-block {
  display: none;
}

#center-right .qrcode-block .qrcode-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  padding: 10px;
  margin: 0 auto;
  box-sizing: border-box;
}

@keyframes loading {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

#center-right .qrcode-block .qrcode-wrap .wx-loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#center-right .qrcode-block .qrcode-wrap .wx-loading img {
  font-size: 10px;
  width: 3em;
  height: 3em;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: loading 1s steps(12, end) infinite;
  animation: loading 1s steps(12, end) infinite;
}

#center-right .qrcode-block .qrcode-wrap .qrcode-img {
  width: 100%;
  height: 100%;
}

#center-right .qrcode-block .qrcode-wrap .qrcode-status {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.89);
  cursor: pointer;

  flex-direction: column;
  justify-content: center;
  display: none;
}

#center-right .qrcode-block .qrcode-wrap .qrcode-status .icon {
  position: relative;
  width: 3em;
  height: 3em;
  margin: 0 auto 15px;
}

#center-right .qrcode-block .qrcode-wrap .qrcode-status .tip {
  color: #333;
}

#center-right .qrcode-block .qrcode-wrap .qrcode-status .action {
  color: #00a4ff;
  font-weight: 700;
  margin-top: 5px;
}

#center-right .qrcode-block .qrcode-wrap .qrcode-status .action:hover {
  text-decoration-line: underline;
}

#center-right .qrcode-block .title {
  font-size: 22px;
  color: #222;
  font-weight: 500;
  margin-bottom: 30px;
}

#center-right .qrcode-block .foot {
  margin-top: 73px;
}

/* 左侧信息 */

.left-mes {
  height: 41px;
  margin-top: 69px;
  margin-left: 50px;
}

.left-mes-1 {
  margin-top: 85px;
}

.left-mes > img {
  float: left;
}

.left-mes > div {
  width: auto;
  height: 41px;
  font-size: 16px;
  font-family: “Microsoft YaHei” !important;
  color: rgba(153, 153, 153, 1);
  line-height: 14px;
  margin-left: 46px;
}

.left-mes > div > span {
  display: block;
  font-size: 12px;
  margin-top: 14px;
}

/* 中间竖虚线 */

#separate {
  position: absolute;
  z-index: 100;
  top: 49px;
  left: 269px;
  width: 2px;
  height: 502px;
  border-right: 2px dashed rgba(221, 221, 221, 1);
}

/* 右侧"登录"标题 */

#center-right > .login {
  display: block;
  height: 23px;
  font-size: 24px;
  font-family: 'Microsoft YaHei' !important;
  color: rgba(74, 136, 247, 1);
  line-height: 23px;
  margin-top: 58px;
  letter-spacing: 8px;
}

/* 表单 */

#form-login {
  margin-top: 30px;
  font-family: 'Microsoft YaHei' !important;
}

/* 表单提示字 */

#form-login label {
  font-size: 16px;
  font-family: “Microsoft YaHei” !important;
  margin-bottom: 10px;
  height: 16px;
  line-height: 16px;
}

#form-login .form-group-2 {
  margin-top: 24px !important;
  margin-bottom: 25px;
}

/* 表单文本控件 */

#form-login #name {
  width: 380px;
  height: 40px;
  background: rgba(255, 255, 255, 1);
  font-size: 14px;
  border-radius: 0px;
  padding: 13px 16px;
}

/* 表单密码控件 */

#form-login #pwd {
  width: 380px;
  height: 40px;
  background: rgba(255, 255, 255, 1);
  font-size: 14px;
  border-radius: 0px;
  padding: 13px 16px;
}

/* 表单提示和控件 */

#form-login .form-group {
  margin-top: 0px;
  text-align: left;
}
/* '记住密码'选择按钮设置 */

#form-login #radio {
  margin-top: 0px !important;
}

#form-login .radio-lable {
  width: auto;
  height: 14px;
  font-size: 14px;
  font-family: “Microsoft YaHei” !important;
  color: #999;
  line-height: 12px;
  margin: 0px;
  font-weight: 400;
}

#form-login .phone-radio-lable {
  width: auto;
  height: 14px;
  font-size: 14px;
  font-family: “Microsoft YaHei” !important;
  color: #999;
  line-height: 12px;
  margin: 0px;
  font-weight: 400;
}

input[type='checkbox'] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.radio-lable::before {
  content: '\a0';
  border: 1px solid silver;
  display: inline-block;
  text-align: center;
  width: 14px;
  height: 14px;
  font-weight: bold;
  border-radius: 3px;
  margin-right: 5px;
  cursor: pointer;
  position: relative;
  top: 3px;
}

.phone-radio-lable::before {
  content: '\a0';
  border: 1px solid silver;
  display: inline-block;
  text-align: center;
  width: 14px;
  height: 14px;
  font-weight: bold;
  border-radius: 3px;
  margin-right: 5px;
  cursor: pointer;
  background: #fff;
}

input[type='checkbox']:checked + .radio-lable::before {
  content: '\2713';
  color: rgb(255, 255, 255);
  background-color: #4a88f7;
  position: relative;
  top: 3px;
}

input[type='checkbox']:checked + .phone-radio-lable::before {
  content: '\2713';
  color: rgb(255, 255, 255);
  background-color: #4a88f7;
}

/* 忘记密码链接 */

#form-login .forgetpass {
  float: right;
  width: auto;
  height: 14px;
  font-size: 14px;
  font-family: “Microsoft YaHei” !important;
  color: rgba(51, 51, 51, 1);
  line-height: 14px;
}

/* 立即登录按钮 */

.sub-but {
  width: 100%;
  height: 40px;
  background: rgba(74, 136, 247, 1);
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  font-family: “Microsoft YaHei” !important;
  border: none;
  margin-top: 25px;
  border-radius: 2px;
}

/* 非会员点击 */

.sub-but:hover {
  background: rgb(28, 92, 201);
}

#login-mes {
  display: block;
  font-size: 14px;
  font-family: “Microsoft YaHei” !important;
  color: rgba(51, 51, 51, 1);
  margin-top: 23px;
  height: 17px;
  line-height: 16px;
}

#login-mes a {
  color: #fe6135;
}

#child-op:before{
  content: '|';
  display: inline-block;
  margin: 0 5px;
  color: #EBEBEB;
}

/* 微信登录图片 */

#center-right img {
  /* display: none;
  margin-top: 8px;
  margin-left: -335px; */
}

/* 虚线下划线 */

#login-fenge {
  width: 380px;
  border-top: 1px dashed #dddddd;
  /* margin-top: 17px;
  margin-bottom: 18px; */
  margin-top: 10px;
  margin-bottom: 25px;
}

/* 内部小页脚 */

#login-right-footer {
  width: 384px;
  height: 37px;
  font-size: 12px;
  font-family: “Microsoft YaHei” !important;
  color: rgba(153, 153, 153, 1);
  line-height: 24px;
  margin: 0px auto;
}

.space-error {
  height: 25px;
  margin-top: 45px;
}
.space-error > .err-text {
  color: #ff0000;
  line-height: 25px;
}
/* 新版登录样式 */
.formlogin {
  padding: 25px 65px;
}
.header {
  border-bottom: 2px solid #f9f9f9;
  display: flex;
  font-size: 14px;
  color: #999;
  font-weight: 400;
}
.phonelogin {
  padding: 12px 0;
  margin-right: 48px;
  margin-bottom: -2px;
}
.accountlogin {
  padding: 12px 0;
  margin-bottom: -2px;
}
#form-login input {
  width: 100%;
  height: 40px;
  border-radius: 2px;
  border: 1px solid #e9e9f0;
  padding-left: 30px;
}
#form-login input::-webkit-input-placeholder {
  color: #ccc;
}
.formgroup {
  position: relative;
  margin-bottom: 20px;
}
#form-login .formgroup .inputimg {
  display: block;
  margin: 0;
  position: absolute;
  width: 14px;
  height: 16px;
  top: 12px;
  left: 9px;
}
#form-login #login-mes {
  float: initial;
  margin-top: 30px;
}
.send-message {
  position: absolute;
  width: 110px;
  height: 40px;
  background-color: #f9f9f9;
  top: 0;
  right: 0;
  border: 1px solid #e9e9f0;
  border-left: none;
  outline: none;
  font-size: 14px;
  color: #4a88f7;
}
.active {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  border-bottom: 2px solid #4a88f7;
}
.loginways {
  cursor: pointer;
}
.login-account {
  display: none;
}
.phonelogin {
  margin-right: 48px;
}
.login-phone {
  display: block;
}
.phone-comeon {
  display: block;
}
.account-comeon {
  display: none;
}
#form-login .form-group input {
  padding-left: 16px;
}
#form-login input[type='checkbox'] {
  width: 12px;
  height: 12px;
  margin-left: -100px;
}

/* 重置密码引导 */
#reset-pwd-guide .modal-dialog {
  width: 330px;
}
#reset-pwd-guide .modal-content {
  padding: 20px 30px;
}
#reset-pwd-guide .modal-body {
  padding: 10px 0;
}
#reset-pwd-guide .tip {
  font-size: 16px;
  color: #333;
  margin-top: 60px;
}
#reset-pwd-guide .btns {
  margin-top: 40px;
}
#reset-pwd-guide .btns a {
  display: inline-block;
  text-decoration: none;
}
#reset-pwd-guide .btn-cancel {
  border: 0;
  line-height: 36px;
  min-width: 100px;
  border-radius: 50px;
  background: #efefef;
}
#reset-pwd-guide .btn-submit {
  border: 0;
  line-height: 36px;
  min-width: 100px;
  border-radius: 50px;
  color: #fff;
  background: linear-gradient(135deg, #2ba6ff, #2a76ff);
}

.policy {
  color: #999;
  margin-top: 25px;
}
.policy a {
  color: #6e86b1;
  text-decoration: underline;
}
