.login-box {
  background-color: #ffe4d7;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 50px;
  overflow-x: hidden;
}
.login-logo {
  margin: 40px auto;
  text-align: center;
}
.login-logo img {
  width: 270px;
}
.login-content {
  width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 150px;
  box-sizing: border-box;
}
.login-title {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.form-item {
  margin-bottom: 20px;
}
.form-item .label {
  color: #57584e;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-item input,
.form-item select {
  border: 1px solid#D9D9D9;
  border-radius: 8px;
  height: 46px;
  line-height: 46px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px 0 15px;
  font-size: 16px;
}

.form-item select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari 和 Chrome */
  appearance: none; /* 标准属性 */
  background-image: url("../images/select.png"); /* 自定义箭头图片 */
  background-repeat: no-repeat;
  background-position: 98% center; /* 根据需要调整位置 */
  background-size: 10px 6px;
}
.form-item input::placeholder,
.form-item select::placeholder {
  color: #bebebe;
  font-size: 14px;
}
.form-btn-wrap .form-btn {
  width: 100%;
  margin-top: 20px;
  height: 56px;
  box-sizing: border-box;
  font-size: 22px;
  letter-spacing: 1px;
}
.tips {
  text-align: center;
  margin: 35px auto;
  font-size: 24px;
  color: #57584e;
}
.tips a {
  font-weight: bold;
  margin-left: 5px;
  color: var(--belco-base);
}

.phone-number-wrap {
  display: flex;
}
.phone-number-wrap select {
  width: 30%;
  background-position: 94% center; /* 根据需要调整位置 */
}
.radio-item {
  display: flex;
}
.radio-item input {
  width: 16px;
  height: 16px;
  position: relative;
  top: 8px;
}
.radio-item-ttext-wrap {
  margin-left: 12px;
}
.text1 {
  font-size: 16px;
  font-weight: bold;
}
.text2 {
  font-size: 14px;
  line-height: 24px;
}
.radio-item-wrap {
  display: flex;
}
.radio-item-wrap .radio-item {
  margin-right: 25px;
}
.other-text {
  font-size: 14px;
  line-height: 22px;
  margin-top: 20px;
}
.other-text P {
  margin-bottom: 10px;
}

.other-text span {
  color: #0061b5;
}
.other-text .underline {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .login-box {
    padding: 50px 20px;
  }
  .login-content {
    width: 90%;
    padding: 30px 20px;
    border-radius: 10px;
  }
  .login-logo img {
    width: 180px;
  }
  .login-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .form-btn-wrap .form-btn {
    height: 46px;
    margin-top: 10px;
    font-size: 18px;
  }
  .tips {
    font-size: 20px;
    margin: 25px auto;
  }
}
