html:not(.dark) {
  .form {
    .form_field {
      :deep(.van-field__label) {
        color: rgb(88, 88, 88);
        flex: none !important;
      }
      :deep(.van-field__body) {
        background: rgb(251, 251, 251);
        box-shadow: inset 0 0 1px 0 rgba(0, 0, 0, 0.1);
        color: rgb(71, 71, 71);
      }
      :deep(.van-cell) {
        background: #ffffff;
      }
    }
    .extra_setting {
      .extra_setting_for_remember_password {
        color: rgb(88, 88, 88);
      }
    }
  }
}
.form {
  width: 100%;
  padding: 0 40px;
  .form_field {
    padding-right: 0;
    padding-left: 0;
    :deep(.van-field__label) {
      opacity: 0.7;
      font-size: 16px;
      font-weight: 400;
      line-height: 23px;
      text-transform: uppercase;
      text-indent: 10px;
    }
    :deep(.van-field__body) {
      height: 40px;
      border-radius: 5px;
      font-size: 16px;
      font-weight: 400;
      padding: 8px 10px;
      opacity: 0.6;
    }
  }
  .extra_setting {
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    .extra_setting_for_remember_password {
      opacity: 0.7;
      span {
        position: relative;
        bottom: 3px;
        left: 5px;
      }
    }
    .extra_setting_for_reset_password {
      position: relative;
      top: 2px;
      opacity: 0.7;
      color: rgb(56, 149, 250);
    }
  }
  .btn {
    height: 50px;
    :deep(.van-button__text) {
      color: rgb(255, 255, 255);
      font-size: 16px;
      font-weight: 700;
      line-height: 23px;
    }
  }
  .login_btn {
    background: rgb(56, 149, 250);
    margin-top: 104px;
  }
  .login_btn_face {
    background: rgb(56, 149, 250);
    margin-top: 4px;
  }
  .reset_btn {
    margin: 24px 0;
  }
  .back_btn {
    :deep(.van-button__text) {
      color: rgb(56, 149, 250);
    }
  }
  :deep(.van-cell:after) {
    border-bottom: none;
  }
}
.login_form {
  margin-top: 65px;
  z-index: 10;
  // 正常模式：白色背景
  html:not(.dark) & {
    background-color: white !important;
  }

  // 深色模式：黑色背景
  html.dark & {
    background-color: rgb(28, 28, 30) !important;
  }
}
.forget_password_form {
  margin-top: 15px;
}
/* 使图标垂直居中 */
.wechat-login-btn .van-icon {
  vertical-align: middle;
}
/* 悬停效果 */
.wechat-login-btn:hover {
  background-color: #06ad56 !important;
  border-color: #06ad56 !important;
}
/* 点击效果 */
.wechat-login-btn:active {
  background-color: #05994c !important;
  border-color: #05994c !important;
}
