#credential_picker_container {
  z-index: 9999999999999999999999999999999999999999999 !important;
}

/* 隐藏密码框默认的小眼睛图标 */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

input[type="password"]::-webkit-textfield-decoration-container,
input[type="password"]::-webkit-credentials-auto-fill-button {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  /* background: #000000; */
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
  font-size: 0;
  padding: 0;
  @media (max-width: 768px) {
    display: none;
  }
}
.close-btn:hover {
  /* background: #333333; */
  transform: scale(1.1);
}
.close-btn:active {
  transform: scale(0.95);
}
.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
}
.close-btn::before {
  transform: rotate(45deg);
}
.close-btn::after {
  transform: rotate(-45deg);
}

.close-btn-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  font-family: Arial, sans-serif;
}
.close-logo {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px;
  right: 16px;
  display: none;
  cursor: pointer;
  @media (max-width: 768px) {
    display: block;
  }
}
#login-form-index,#login-form-email-index{
  @media (max-width: 768px) {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12.3px);
  }
}
.login-form {
  width: 526px;
  border: 1px solid rgba(68, 68, 68, 1);
  @media (min-width: 768px) {
    width: 490px !important;
    height: auto !important;
    padding: 24px!important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  @media (max-width: 768px) {
    width: 100% !important;
    height: 100%;
    padding: 1 32px !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    border: none !important;
  }
}
.login-form {
  position: relative;
  padding: 1px 32px;
  box-sizing: border-box;
  border-radius: 16px;
  /* overflow: hidden; */
  @media (min-width: 768px) {
    width: 100%;
    height: auto;
    background: rgba(35, 35, 35, 1);
  }
  @media (max-width: 768px) {
    width: 100vw;
    height: 100vh;
    padding: 0 32px;
    padding-top: 121px;
  }
}
.login-form-code {
  @media (max-width: 768px) {
    padding: 0;
    padding-top: 10px;
    .close-logo {
      top: 10px;
      right: 16px;
    }
    .emailCodeBox-content {
      padding: 0 32px;
    }
  }
  @media (min-width: 768px) {
    height: auto;
    width: 400px !important;
  }
}


.layer-content {
  position: relative;
}

.login-form-title {
  white-space: nowrap;
  text-align: center;
  margin-bottom: 45px;
  font-family: AaHouDiHei;
  font-weight: 400;
  font-style: Regular;
  font-size: 36px;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: -0.3px;
  text-align: center;
  font-family: AaHouDiHei;
  font-weight: 400;
  font-style: Regular;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: -0.3px;
  
  display: none;
  @media (max-width: 768px) {
    margin-top: 0px;
    font-size: 25px;
    margin-bottom: 31px;
    display: block;
    
  }
}
.login-form-title h1 {
  font-weight: bold;
}
.login-form-title .logo{
  height: 100%;
}

.login-form-input {
  @media (min-width: 768px) {
    width: 100%;
  }

  height: 54px;
  background: rgba(21, 21, 21, 1);
  color: rgba(255, 255, 255, 1);
  
  border-radius: 8px;
  /* border: 1px solid rgba(68, 68, 68, 1); */
  padding: 0 16px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
  font-style: Regular;
  line-height: 54px;
  letter-spacing: -0.3px;
  border: 1px solid transparent;
}
.login-form-input input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  
}
.login-form-input input::placeholder{
  color: rgba(102, 102, 102, 1);
font-family: PingFang SC;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: -0.3px;

}
/* 邮箱输入框聚焦  父元素添加*/
.login-form-input:focus-within {
  border: 1px solid rgba(68, 68, 68, 1)
}

.error-input {
  border: 1px solid rgba(255, 78, 78, 1);
}
.login-form-error {
  height: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(255, 78, 78, 1);
  margin-bottom: 12px;
}
.login-form-btn {
  width: 100%;
  height: 54px;
  background: rgba(64, 64, 64, 1);

  border-radius: 8px;
  border: none;
  cursor: pointer;

  

  line-height: 54px;
  letter-spacing: -0.3px;

  font-weight: 600;

  font-size: 16px;

  letter-spacing: -0.3px;
  color: rgba(102, 102, 102, 1);
  text-align: center;

  margin-bottom: 14px;
  cursor: not-allowed;
}
.btnActive {
  background: linear-gradient(98.36deg, #FC01F6 -35.91%, #4F00FF 91.35%);

 
  color: #ffffff;
  cursor: pointer;
}
.login-form-tip{
  height: 17px;
  font-family: PingFang SC;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 17px;
letter-spacing: -0.3px;
color: rgba(102, 102, 102, 1);
text-align: center;


}
.login-form-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 42px 0 10px;
  height: 22px;
}

.login-form-line::before,
.login-form-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(102, 102, 102, 1);
}

.login-form-line-text {
  font-family: PingFang SC;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: rgba(102, 102, 102, 1);
 

  white-space: nowrap;
}

.login-form-logo {
   height: 32px;
   margin-bottom: 48px;
  @media (max-width: 768px) {
    display: none;
  }
}

.layui-layer-page .layui-layer-content {
  overflow: visible;
}

.other-login {
  display: flex;
  gap:10px;
  margin-bottom: 16px;
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 20px;
  }
}

.other-login-item {
  @media (min-width: 768px) {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(68, 68, 68, 1);
  }
  @media (max-width: 768px) {
    width: 100%;
    justify-content: center;
   
    background: rgba(27, 27, 27, 1);
  }

  height: 54px;

  border-radius: 8px;
  
  display: flex;
  align-items: center;

  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 16px;
}
.other-login-item-content{
  @media (max-width: 768px) {
    width: 176px;
    display: flex;
    align-items: center;
    
  }
}
.other-login-item:hover {
  @media (min-width: 768px) {
    background: rgba(80, 80, 80, 1);
    transform: translateY(-1px);
  }
  @media (max-width: 768px) {
    background: rgba(35, 35, 35, 1);
    transform: none;
  }
}
.other-login-item:active {
  transform: translateY(0);
}
.other-login-item-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  @media (max-width: 768px) {
    width: 24px;
    height: 24px;
    margin-right: 12px;
  }
}
.other-login-item span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  font-family: PingFang SC;
  letter-spacing: -0.3px;
  line-height: 1;
  display: none;
  @media (max-width: 768px) {
    display: block;
  }
}
.login-agreement {
  
font-family: PingFang SC;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-align: center;
}
.login-agreement {
  color: #ffffff;
}
.login-agreement a {
  color: rgba(113, 94, 255, 1);
  text-decoration: none;
  font-weight: 600;
}
.login-agreement a:hover {
  color: rgba(113, 94, 255, 1);
  text-decoration: underline;
}

/* 邮箱验证模块 */
.backBtn {
  display: flex;
  align-items: center;

  @media (max-width: 768px) {
    margin-top: 120px;
    margin-bottom: 36px;
  }
  @media (min-width: 768px) {
    margin-top: -2px;
    margin-bottom: 41px;
  }
}
.backBtnImg {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  cursor: pointer;
}
.backBtn .btnspan {
  font-family: PingFang SC;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);

  font-size: 20px;

  line-height: 100%;
  letter-spacing: -0.3px;
}
.emailMessage {
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(206, 206, 206, 1);
  line-height: 100%;
  letter-spacing: -0.3px;
}
.emailMessageSpan {
  color: rgba(255, 255, 255, 1);
  margin-left: 5px;
}
.subCodeTitle{
  font-family: PingFang SC;
font-weight: 600;
font-style: Semibold;
font-size: 16px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: -0.3px;
color: rgba(255, 255, 255, 1);
margin-bottom: 16px;

}
.emailCodeInputBox {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;

  height: 54px;
  @media (max-width: 768px) {
    height: auto;
  }
  margin-bottom: 16px;
}
.emailCodeInputBox input {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  /*固定比例*/

  @media (max-width: 768px) {
    height: 100%;
    aspect-ratio: 41/54;
  }

  @media (min-width: 768px) {
    height: 100%;
  }
  background: rgba(21, 21, 21, 1);
  font-family: PingFang SC;
  font-weight: 600;

  font-size: 20px; 
  @media (max-width: 768px) {
    font-size: 28px;
  }
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}
.emailCodeInputBox input:focus {
  border: 1px solid rgba(79, 0, 255, 1)
}
.emailCodeInputBox input[type="number"]::-webkit-outer-spin-button,
.emailCodeInputBox input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
.emailCodeInputBox input[type="text"]:focus {
  @media (min-width: 768px) {
    border: 1px solid rgba(68, 68, 68, 1);
  }
  @media (max-width: 768px) {
    border: 1px solid rgba(113, 94, 255, 1);
  }
}
.emailCodeInputBox .errorCode {
  border: 1px solid rgba(255, 78, 78, 1);
}
.countDown {
  margin-bottom: 24px;
  display: flex;
  /* height: 22px; */
  align-items: center;
  justify-content: space-between;
 
}
.countDownTextBox{
  border-radius: 9999px;
  border: 1px solid  rgba(102, 102, 102, 1);
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.countDownText {
  font-family: PingFang SC;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;

  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 1);
  cursor: pointer; 
  @media (max-width: 768px) {
    font-size: 12px;
  }
}
.countDownTime {
  font-weight: 400;

  font-size: 14px;
  color: rgba(102, 102, 102, 1);

  line-height: 100%;
  letter-spacing: -0.3px;
  
}
.countDownTimeText{
  margin-left: 5px;
  color: rgba(255, 255, 255, 1);
}
.error-code {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(255, 78, 78, 1);
  display: none;
}
.login-form-btn-code {
  margin-bottom: 4px;
}

/* 账号异常弹窗 */
.account-exception-content {
  padding: 32px;
  box-sizing: border-box;
  background: rgba(18, 18, 18, 1);
  border-radius: 16px;
  border: 1px solid rgba(68, 68, 68, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  @media (max-width: 768px) {
    width: 306px;
    height: auto;
  }

  @media (min-width: 768px) {
    width: 430px;
    height: 362px;
  }
}
.account-exception-content-title {
  font-family: Alimama ShuHeiTi;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 32px;
}

.account-exception-content-cancel {
  width: 108px;
  height: 36px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 1);
  border-radius: 8px;
  text-align: center;
  text-align: center;
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
  background: rgba(60, 60, 60, 1);
  cursor: pointer;
}
.account-exception-content-sure {
  width: 108px;
  height: 36px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 1);
  border-radius: 8px;
  background: rgba(113, 94, 255, 1);
  margin-left: 16px;
  text-align: center;
  font-family: PingFang SC;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.account-exception-content-btn {
  float: right;
}
.account-exception-content-img {
  width: 176px;
  margin: 0 auto;
  margin-bottom: 32px;
  margin-top: 8px;
  display: block;
}
.account-exception-content-text {
  font-family: PingFang SC;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 1);
}
.login-form-title-m-img{
  height: 32px;
}
.account-exception-content-text-email {
  color: rgba(162, 150, 255, 1);
}
