@charset "UTF-8";
html,
body {
  background: linear-gradient(135deg, #E3F2FD 0%, #C8DEF3 100%);
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.login_input1 {
  background-color: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 8px;
  outline: none;
  height: 44px;
  line-height: 44px;
  display: block;
  width: 100%;
  font-size: 15px;
  padding: 0 14px;
  color: #2c3e50;
  transition: all 0.25s ease;
}
.login_input1:focus {
  border-color: #2968ff;
  box-shadow: 0 0 0 3px rgba(41, 104, 255, 0.1);
}
.login_input1::placeholder {
  color: #a2aab3;
}

.login_input2 {
  background-color: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 8px;
  outline: none;
  height: 44px;
  line-height: 44px;
  display: block;
  width: 100%;
  font-size: 15px;
  padding: 0 14px;
  color: #2c3e50;
  transition: all 0.25s ease;
}
.login_input2:focus {
  border-color: #2968ff;
  box-shadow: 0 0 0 3px rgba(41, 104, 255, 0.1);
}
.login_input2::placeholder {
  color: #a2aab3;
}

/* 验证码输入组容器（去掉输入框样式，作为flex容器） */
.form-input.login_input1 {
  border: none;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
  line-height: normal;
}
.form-input.login_input1 .login_input2 {
  flex-grow: 1;
}
.form-input.login_input1 a {
  flex: 0 0 auto;
  height: 44px;
  line-height: 44px;
  padding: 0 16px;
  text-align: center;
  color: #2968ff;
  font-size: 14px;
  background: rgba(41, 104, 255, 0.08);
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
}
.form-input.login_input1 a:hover:not(.disabled) {
  background: rgba(41, 104, 255, 0.15);
}
.form-input.login_input1 a.disabled {
  pointer-events: none;
  color: #a2aab3;
  cursor: not-allowed;
  background: #f3f4f6;
}

/* 覆盖浏览器自动填充的黄色背景 - 登录页专属 */
@keyframes loginAutofill {
  to {
    background-color: #ffffff;
    color: #2c3e50;
  }
}
.login_input1:-webkit-autofill,
.login_input1:-webkit-autofill:hover,
.login_input1:-webkit-autofill:focus,
.login_input1:-webkit-autofill:active,
.login_input2:-webkit-autofill,
.login_input2:-webkit-autofill:hover,
.login_input2:-webkit-autofill:focus,
.login_input2:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #2c3e50 !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-animation: loginAutofill 0s forwards !important;
  animation: loginAutofill 0s forwards !important;
  caret-color: #2c3e50;
  border-radius: 8px;
}

.login-header {
  display: flex;
  align-items: center;
  padding-top: 20px;
}
.login-header .logo {
  flex: 0 0 300px;
  width: 300px;
  display: flex;
  align-items: center;
}
.login-header .logo span {
  margin-left: 30px;
  font-size: 20px;
  color: #1e2c52;
}
.login-header .menu {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.login-header .menu a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #1e2c52;
  padding: 7px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(41, 104, 255, 0.06);
  text-decoration: none;
  transition: all 0.25s ease;
}
.login-header .menu a i {
  font-size: 16px;
  color: #2968ff;
}
.login-header .menu a:hover {
  color: #2968ff;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(41, 104, 255, 0.14);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .login-header .logo {
    flex: 0 0 100%;
    width: 100%;
  }
  .login-header .menu {
    display: none;
  }
}

.login-content {
  position: relative;
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
  height: 100vh; /* 视口高度 */
  width: 100%;
}
.login-content .box {
  position: absolute;
  width: 98%;
  max-width: 760px;
  height: 500px;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(41, 104, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}
.login-content .box .item .content {
  display: flex;
  width: 100%;
  margin-top: 40px;
}
.login-content .box .item .content .weixin {
  width: 43%;
  border-right: 3px solid #c4cbd7;
}
.login-content .box .item .content .weixin .title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.login-content .box .item .content .weixin .title img {
  width: 28px;
  height: 28px;
}
.login-content .box .item .content .weixin .title span {
  font-weight: bold;
  font-size: 20px;
  color: #1e2c52;
  margin-left: 5px;
}
.login-content .box .item .content .weixin .code {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.login-content .box .item .content .weixin .code img {
  max-width: 184px;
  width: 80%;
}
.login-content .box .item .content .weixin .remark {
  margin-top: 10px;
  font-size: 16px;
  color: #8b949f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-content .box .item .content .login {
  width: 57%;
  padding: 0 30px;
}
.login-content .box .item .content .login .login-type {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  gap: 10px;
}
.login-content .box .item .content .login .login-type a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  height: 40px;
  padding: 0 24px;
  border-radius: 10px;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}
.login-content .box .item .content .login .login-type a:hover {
  color: #2968ff;
  background-color: rgba(41, 104, 255, 0.06);
}
.login-content .box .item .content .login .login-type a.active {
  color: #2968ff;
  background: rgba(41, 104, 255, 0.1);
  font-weight: 600;
  border-bottom: none;
  transform: none;
}
.login-content .box .item .content .login .account .col-12 {
  margin-top: 20px;
  padding: 0 20px;
}
.login-content .box .item .content .login .account .d-grid {
  margin-top: 24px;
  padding: 0 20px;
}
.login-content .box .item .content .login .account .d-grid .btn {
  height: 44px;
  line-height: 44px;
  padding: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(135deg, #2968ff 0%, #1a53ff 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(41, 104, 255, 0.25);
  transition: all 0.25s ease;
}
.login-content .box .item .content .login .account .d-grid .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(41, 104, 255, 0.35);
}
.login-content .box .item .content .login .account .d-grid .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(41, 104, 255, 0.2);
}
.login-content .box .item .content .login .account .save_info {
  display: flex;
  padding: 0 20px;
  margin-top: 20px;
}
.login-content .box .item .content .login .account .save_info .form-check {
  flex-grow: 1;
}
.login-content .box .item .content .login .account .save_info .form-check .form-check-label {
  color: #a2aab3;
}
.login-content .box .item .content .login .account .save_info .forgot_pass {
  flex: 0 0 80px;
  width: 80px;
}
.login-content .box .item .content .login .account .save_info .forgot_pass a {
  color: #2968ff;
}
.login-content .box .item .content .login .account .other,
.login-content .box .item .content .reg-box .other {
  display: flex;
  padding: 0 20px;
  margin-top: 20px;
  align-items: center;
}
.login-content .box .item .content .login .account .other .title,
.login-content .box .item .content .reg-box .other .title {
  flex: 0 0 80px;
  width: 80px;
  color: #8b949f;
}
.login-content .box .item .content .login .account .other .remark,
.login-content .box .item .content .reg-box .other .remark {
  flex-grow: 1;
}
.login-content .box .item .content .login .account .other .remark img,
.login-content .box .item .content .reg-box .other .remark img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
  cursor: pointer;
}
.login-content .box .item .content .login .account .other .remark .weixin-login {
  display: none;
}
/* 注册页没有左侧"扫码登录"区块，需始终显示微信图标 */
.login-content .box .item .content .reg-box .other .remark .weixin-login {
  display: inline-block;
}
@media (max-width: 720px) {
  .login-content .box .item .content .login .account .other .remark .weixin-login,
  .login-content .box .item .content .reg-box .other .remark .weixin-login {
    display: inline-block;
  }
}
.login-content .box .item .content .login .account .alert_remark {
  padding: 0 20px;
  margin-top: 10px;
  font-size: 14px;
  color: #8b949f;
  text-align: center;
}
@media (max-width: 720px) {
  .login-content .box .item .content .weixin {
    display: none;
  }
  .login-content .box .item .content .login {
    width: 100%;
    padding: 0;
  }
  .login-content .box .item .content .login .login-type a {
    font-size: 17px;
    margin: 0 15px;
  }
}
/* 注册页 box 内容超出 500px（5 个表单 + 其它方式 + 底部提示），需自适应高度 */
.login-content .box.reg-page {
  height: auto;
  min-height: 500px;
}
.login-content .box .item .content .reg-box {
  display: flex;
  width: 100%;
  padding: 0 30px;
  flex-direction: column;
}
.login-content .box .item .content .reg-box .reg-box-type {
  flex-grow: 1;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  gap: 10px;
}
.login-content .box .item .content .reg-box .reg-box-type a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  height: 40px;
  padding: 0 24px;
  border-radius: 10px;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}
.login-content .box .item .content .reg-box .reg-box-type a:hover {
  color: #2968ff;
  background-color: rgba(41, 104, 255, 0.06);
}
.login-content .box .item .content .reg-box .reg-box-type a.active {
  color: #2968ff;
  background: rgba(41, 104, 255, 0.1);
  font-weight: 600;
  border-bottom: none;
  transform: none;
}
.login-content .box .item .content .reg-box .reg-validation {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.login-content .box .item .content .reg-box .reg-validation .form-item {
  width: 100%;
  display: flex;
  align-items: center;
}
.login-content .box .item .content .reg-box .reg-validation .form-item .form-input {
  width: 50%;
  display: inline-flex;
  margin-top: 20px;
}
.login-content .box .item .content .reg-box .reg-validation .form-item .form-input span {
  display: inline-block;
  flex: 0 0 80px;
  width: 80px;
  font-size: 16px;
  color: #1e2c52;
}
.login-content .box .item .content .reg-box .reg-validation .form-item .form-input input {
  flex-grow: 1;
}
.login-content .box .item .content .reg-box .reg-validation .form-item .form-input {
  align-items: center;
}
.login-content .box .item .content .reg-box .reg-validation .form-item .form-input a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 90px;
  width: 90px;
  height: 44px;
  line-height: 1;
  text-align: center;
  color: #2968ff;
  font-size: 14px;
  background: rgba(41, 104, 255, 0.08);
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
}
.login-content .box .item .content .reg-box .reg-validation .form-item .form-input a:hover:not(.disabled) {
  background: rgba(41, 104, 255, 0.15);
}
.login-content .box .item .content .reg-box .reg-validation .form-item .form-input a.disabled {
  pointer-events: none; /* 禁止点击 */
  color: #ccc; /* 变灰 */
  cursor: not-allowed;
}
.login-content .box .item .content .reg-box .reg-validation .form-item .form-alert {
  padding-top: 30px;
  width: 50%;
  padding-left: 20px;
  font-size: 14px;
  color: #8b949f;
}
.login-content .box .item .content .reg-box .reg-validation .form-item .form-alert i {
  margin-right: 4px;
}
@media (max-width: 720px) {
  .login-content .box .item .content .reg-box .reg-validation .form-item .form-input {
    width: 100%;
  }
  .login-content .box .item .content .reg-box .reg-validation .form-item .form-alert {
    display: none;
  }
}
.login-content .box .item .content .reg-box .reg-validation .reg-btn {
  display: flex;
  margin-top: 24px;
  width: 50%;
}
.login-content .box .item .content .reg-box .reg-validation .reg-btn .btn,
.login-content .box .item .content .forgot-box .forgot-validation .forgot-btn .btn {
  height: 44px;
  line-height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(135deg, #2968ff 0%, #1a53ff 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(41, 104, 255, 0.25);
  transition: all 0.25s ease;
}
.login-content .box .item .content .reg-box .reg-validation .reg-btn .btn:hover,
.login-content .box .item .content .forgot-box .forgot-validation .forgot-btn .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(41, 104, 255, 0.35);
}
.login-content .box .item .content .reg-box .reg-validation .reg-btn .btn:active,
.login-content .box .item .content .forgot-box .forgot-validation .forgot-btn .btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(41, 104, 255, 0.2);
}
.login-content .box .item .content .forgot-box {
  display: flex;
  width: 100%;
  padding: 0 30px;
  flex-direction: column;
}
.login-content .box .item .content .forgot-box .forgot-type {
  flex-grow: 1;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  gap: 10px;
}
.login-content .box .item .content .forgot-box .forgot-type a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  height: 40px;
  padding: 0 24px;
  border-radius: 10px;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}
.login-content .box .item .content .forgot-box .forgot-type a:hover {
  color: #2968ff;
  background-color: rgba(41, 104, 255, 0.06);
}
.login-content .box .item .content .forgot-box .forgot-type a.active {
  color: #2968ff;
  background: rgba(41, 104, 255, 0.1);
  font-weight: 600;
  border-bottom: none;
  transform: none;
}
.login-content .box .item .content .forgot-box .forgot-validation {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.login-content .box .item .content .forgot-box .forgot-validation .form-item {
  width: 100%;
  display: flex;
  align-items: center;
}
.login-content .box .item .content .forgot-box .forgot-validation .form-item .form-input {
  width: 100%;
  display: inline-flex;
  margin-top: 20px;
}
.login-content .box .item .content .forgot-box .forgot-validation .form-item .form-input span {
  display: inline-block;
  flex: 0 0 80px;
  width: 80px;
  font-size: 16px;
  color: #1e2c52;
}
.login-content .box .item .content .forgot-box .forgot-validation .form-item .form-input input {
  flex-grow: 1;
}
.login-content .box .item .content .forgot-box .forgot-validation .form-item .form-input {
  align-items: center;
}
.login-content .box .item .content .forgot-box .forgot-validation .form-item .form-input a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 90px;
  width: 90px;
  height: 44px;
  line-height: 1;
  text-align: center;
  color: #2968ff;
  font-size: 14px;
  background: rgba(41, 104, 255, 0.08);
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
}
.login-content .box .item .content .forgot-box .forgot-validation .forgot-btn {
  display: flex;
  margin-top: 20px;
  width: 50%;
}
.login-content .box .item .alert_info {
  margin-top: 20px;
  font-size: 14px;
  color: #8b949f;
  padding: 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 25px;
}
.login-content .box .reg {
  position: absolute;
  right: 24px;
  top: 24px;
  background: linear-gradient(135deg, #2968ff 0%, #1a53ff 100%);
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(41, 104, 255, 0.25);
  transition: all 0.25s ease;
}
.login-content .box .reg:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(41, 104, 255, 0.35);
}
.login-content .box .reg a {
  color: #ffffff;
  padding: 0;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
.login-content .box-bind {
  position: absolute;
  width: 98%;
  max-width: 500px;
  height: 350px;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(41, 104, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}
.login-content .box-bind .bind {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.login-content .box-bind .bind .icon {
  padding-top: 40px;
}
.login-content .box-bind .bind .icon i {
  font-size: 60px;
  color: #005eff;
}
.login-content .box-bind .bind .alert {
  font-size: 16px;
  color: #1e2c52;
}

.weixinModalBody .modal-dialog {
  max-width: 380px;
  width: 92%;
}
.weixinModalBody .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}
.weixinModalBody .modal-header {
  border-bottom: 1px solid #f0f3f7;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}
.weixinModalBody .modal-header .modal-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e2c52;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.weixinModalBody .modal-header .modal-title i {
  font-size: 22px;
  color: #07c160;
}
.weixinModalBody .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 20px;
}
.weixinModalBody .modal-body .qrcode-box {
  padding: 12px;
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(7, 193, 96, 0.08);
}
.weixinModalBody .modal-body .qrcode-box img {
  display: block;
  width: 220px;
  height: 220px;
  max-width: 220px;
}
.weixinModalBody .modal-body .qr-tip {
  margin-top: 16px;
  font-size: 14px;
  color: #1e2c52;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.weixinModalBody .modal-body .qr-tip i {
  font-size: 16px;
  color: #07c160;
}
.weixinModalBody .modal-body .qr-subtip {
  margin-top: 6px;
  font-size: 12px;
  color: #8b949f;
}

/*# sourceMappingURL=login.css.map */

