@charset "UTF-8";
.login-dialog-box {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}

.login-dialog-close {
  cursor: pointer;
  position: absolute;
  right: 38px;
  top: 32px;
  width: 13px;
  height: 13px;
  border: unset;
  background: unset;
  padding: unset;
}

.login-dialog-close img {
  width: 100%;
  height: 100%;
}

.login-dialog-box .c-mask {
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.45);
}

.login-dialog-content {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -55%);
  background: #F3F0ED;
  padding: 71px 45px 45px 45px;
  width: 437px;
  height: auto;
}

.login-dialog-wrapper .title {
  margin-bottom: 28px;
  text-align: center;
  font-size: 22px;
  color: #404247;
  line-height: 31px;
}
.login-dialog-wrapper .input-box .input {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 0 40px;
  border-radius: 32px;
  width: 100%;
  height: 56px;
  border: 1px solid #D9D6D5;
  font-size: 16px;
  color: #404247;
  line-height: 18px;
}
.login-dialog-wrapper .other-box {
  margin-top: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #404247;
  line-height: 18px;
}
.login-dialog-wrapper .other-box .signed {
  display: flex;
  align-items: center;
  gap: 6px;
}
.login-dialog-wrapper .other-box .checkbox {
  margin: 0;
  cursor: pointer;
  width: 18px;
  height: 18px;
  position: relative;
  -webkit-appearance: none;
  /* 移除默认样式 */
  border: 1px solid #D9D6D5;
  outline: none;
  border-radius: 2px;
  position: relative;
}
.login-dialog-wrapper .other-box .checkbox:focus-visible {
  outline: 0px !important;
}
.login-dialog-wrapper .other-box .checkbox:checked {
  border: unset;
}
.login-dialog-wrapper .other-box .checkbox:checked::after {
  background: url("../images/user/checked.png");
  background-size: 100%;
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 0;
}
.login-dialog-wrapper .other-box .forget {
  cursor: pointer;
}
.login-dialog-wrapper .btn {
  margin-top: 35px;
  border-radius: 32px;
  width: 100%;
  height: 56px;
  background: #CD7E2C;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 18px;
}
.login-dialog-wrapper .not-box {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #404247;
  line-height: 18px;
}
.login-dialog-wrapper .not-box .sign {
  margin-left: 7px;
  font-size: 16px;
  color: #404247;
  line-height: 18px;
}
.login-dialog-wrapper .language {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-top: 56px;
  border-radius: 32px;
  width: 100%;
  height: 56px;
  background: #E7E1DA;
  position: relative;
  border: unset;
}
.login-dialog-wrapper .language .icon {
  width: 17px;
  height: 8.95px;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.login-dialog-wrapper .language .select {
  cursor: pointer;
  padding: 0 40px;
  color: #404247;
  font-size: 16px;
  line-height: 18px;
  width: 100%;
  height: 100%;
  background-color: unset;
  border: unset;
  /* 隐藏默认的下拉箭头 */
  -webkit-appearance: none;
  /* For Safari */
  -moz-appearance: none;
  /* For Firefox */
  appearance: none;
  /* 自定义下拉菜单样式 */
}
.login-dialog-wrapper .language .select:focus-visible {
  outline: 0px !important;
}
.login-dialog-wrapper .language .select::-ms-expand {
  display: none;
  /* 隐藏IE中的箭头 */
}

@media screen and (max-width: 830px) {
  .login-dialog-content {
    width: 90vw;
    padding: 18px 28px;
  }
}
/*# sourceMappingURL=login.css.map */