@charset "UTF-8";
html {
  width: 100%;
  min-height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  background: linear-gradient(180deg, #EEF8FF 0%, #F6F6F6 100%);
  overflow-x: hidden;
}

/* CDN 服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
  font-family: 'iconfont';
  /* Project id 2444528 */
  src: url("//at.alicdn.com/t/c/font_2444528_6abxvkna6cr.woff2?t=1666688532273") format("woff2"), url("//at.alicdn.com/t/c/font_2444528_6abxvkna6cr.woff?t=1666688532273") format("woff"), url("//at.alicdn.com/t/c/font_2444528_6abxvkna6cr.ttf?t=1666688532273") format("truetype");
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 20px;
  color: #666;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

.con {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 80px;
}

.con .logo {
  width: 80px;
  height: auto;
}

.con .form-box {
  width: 100%;
  margin-top: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 8px 16px -10px rgba(0, 0, 0, 0.2);
}

.con .form-box .form-tit {
  width: 100%;
  height: 76px;
  background: url("../img/pc-form-title.png") center center no-repeat;
  background-size: cover;
  border-radius: 12px 12px 0 0;
  padding-left: 40px;
  font-size: 24px;
  font-weight: 600;
  color: #EFF8FF;
  line-height: 76px;
}

.con .form-box .form-inner {
  width: 100%;
  padding: 29px 40px 36px;
}

.con .form-box .form-inner .tips {
  display: block;
  margin-bottom: 32px;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
}

.con .form-box .form-inner .form-item {
  width: 100%;
}

.con .form-box .form-inner .form-item .item-name {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
}

.con .form-box .form-inner .form-item .item-name em {
  display: block;
  margin-right: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #FF3B30;
  line-height: 28px;
}

.con .form-box .form-inner .form-item .item-name span {
  display: block;
  font-size: 18px;
  color: #1E1E1E;
  line-height: 28px;
}

.con .form-box .form-inner .form-item .item-body {
  width: 100%;
  min-height: 96px;
  padding: 12px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
}

.con .form-box .form-inner .form-item .item-body .textarea {
  width: 100%;
  height: 72px;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}

.con .form-box .form-inner .form-item .item-body .textarea:-moz-placeholder {
  color: #BFBFBF;
}

.con .form-box .form-inner .form-item .item-body .textarea:-ms-input-placeholder {
  color: #BFBFBF;
}

.con .form-box .form-inner .form-item .item-body .textarea::-webkit-input-placeholder {
  color: #BFBFBF;
}

.con .form-box .form-inner .form-item .item-body .input {
  width: 100%;
  height: 24px;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}

.con .form-box .form-inner .form-item .err-border {
  border: 1px solid #FF375F;
}

.con .form-box .form-inner .form-item .focus-border {
  border: 1px solid #198CFF;
  caret-color: #198CFF;
}

.con .form-box .form-inner .form-item .item-tips {
  width: 100%;
  height: 40px;
  padding-left: 12px;
  font-size: 14px;
  color: #FF375F;
  line-height: 40px;
}

.con .form-box .form-inner .submit {
  width: 200px;
  height: 56px;
  background: #198CFF;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  line-height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.con .form-box .form-inner .submit span {
  display: block;
  padding: 0 8px;
}

.success-mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 9;
  display: none;
}

.success-alert {
  width: 520px;
  height: 320px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 60px 94px 40px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: none;
}

.success-alert .clear {
  width: 16px;
  height: 16px;
  font-size: 18px;
  text-align: center;
  line-height: 16px;
  color: #BFBFBF;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
}

.success-alert .alert-tit {
  display: block;
  width: 100%;
  height: 36px;
  font-size: 24px;
  font-weight: 600;
  color: #1E1E1E;
  text-align: center;
  line-height: 36px;
}

.success-alert .alert-tips {
  display: block;
  margin-top: 28px;
  width: 100%;
}

.success-alert .alert-tips p {
  display: block;
  width: 100%;
  font-size: 18px;
  color: #333333;
  text-align: center;
  line-height: 32px;
}

.success-alert .alert-btn {
  width: 100%;
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.success-alert .alert-btn span {
  width: 144px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #198CFF;
  font-size: 18px;
  color: #198CFF;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
}

.success-alert .alert-btn a {
  width: 144px;
  height: 48px;
  background: #198CFF;
  border-radius: 4px;
  font-size: 18px;
  color: #FFFFFF;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
}

.login-btn-loading {
  width: 30px;
  height: 30px;
  background: url(https://passport.jiaoyubao.cn/images/loading.svg) no-repeat;
  background-size: 100% 100%;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: weuiLoading 1s steps(12, end) infinite;
  margin-bottom: 3px;
  display: none;
}

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

@media (max-width: 799px) {
  .con {
    max-width: 351px;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .con .submit {
    margin: 0 auto;
  }
  .con .form-box .form-inner {
    padding: 29px 20px 36px;
  }
  .success-alert {
    width: 320px;
    height: 270px;
    padding: 40px 24px 30px;
  }
  .success-alert .alert-tips {
    margin-top: 20px;
  }
  .success-alert .alert-btn {
    margin-top: 30px;
  }
  .success-alert .alert-btn span {
    width: 120px;
  }
  .success-alert .alert-btn a {
    width: 120px;
  }
  .pc-return-index {
    display: none;
  }
  .h5-return-index {
    display: block;
  }
}

@media screen and (min-width: 800px) {
  .pc-return-index {
    display: block;
  }
  .h5-return-index {
    display: none;
  }
}
