.modal {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  width: 1000px;
  max-width: calc(100% - 48px);
  padding: 30px 0 40px 0;
  background: white;
  margin: 80px auto 30px auto;
}

.modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.modal-close img {
  width: 20px;
  height: 20px;
}

.modal-title {
  font-size: 28px;
  color: #333;
  text-align: center;
}

.modal-tips {
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  text-align: center;
  margin-top: 38px;
  margin-bottom: 38px;
}

.modal-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.modal-form-item {
  margin-bottom: 24px;
}

.modal-form-item-label {
  margin-bottom: 12px;
  font-size: 16px;
}

.modal-form-item-input {
  width: 400px;
  height: 40px;
  border: 2px solid #bababa;
}

.modal-form-item-input input {
  width: 100%;
  height: 100%;
  padding: 0 12px;
  border: none;
  box-sizing: border-box;
  border-radius: 0;
}

.modal-radio-group-box {
  display: flex;
}

.modal-radio-group {
  margin-left: 50px;
}

.modal-radio-title {
  font-size: 16px;
  color: #333;
}

.modal-radio-box {
  display: flex;
  align-items: center;
  margin-right: 77px;
  cursor: pointer;
}

.modal-radio {
  width: 16px;
  height: 16px;
  border: 2px solid #cbcbcb;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}

.modal-radio-box.active .modal-radio {
  background: #c4a15e;
  border: 2px solid #c4a15e;
}

.modal-radio img {
  opacity: 0;
  width: 90%;
}

.modal-radio-box.active img {
  opacity: 1;
}

.modal-btn {
  width: 320px;
  height: 48px;
  background: #c4a15e;
  font-family: PingFang SC;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0 auto;
  cursor: pointer;
}

.required::before {
  content: "*";
  color: red;
}

input:focus {
  border-color: #c4a15e !important;
  border-radius: 0;
}

.modal-form-item-warn {
  color: red;
  font-size: 12px;
  margin-top: 2px;
}
