.profile-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
.bg-box {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 716px;
  font-family: sans-serif;
  position: relative;
  border-radius: 8px;
}
.profile-modal {
  padding: 16px 0;
  position: relative;
  background: linear-gradient(118deg, rgba(246, 238, 255, 0.8) 0%, rgba(252, 230, 255, 0.8) 100%);
  border-radius: 8px;
}
.profile-modal .bgImg {
  position: absolute;
  width: 100%;
  object-fit: cover;
  left: 0;
  bottom: 0;
}
.profile-modal h3 {
  color: #1C1D1F;
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 0px;
  padding: 0 16px;
  padding-bottom: 0px;
  padding-top: 20px;
  display: flex;
}
.profile-modal h3 p {
  color: #68686A;
  font-size: 16px;
  /* 16px */
}
.profile-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 两列等宽 */
  gap: 14px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
}
.profile-option {
  line-height: 64px;
  border-radius: 8px;
  color: #1c1d1f;
  cursor: pointer;
  padding: 0 16px;
  font-size: 16px;
  border: 1px solid #E9E9E9;
  background: rgba(255, 255, 255, 0.5);
}
.profile-option svg {
  position: relative;
  top: 5px;
  margin-right: 4px;
}
.profile-option.selected {
  border: 1px solid #165DFF;
  background: #E9F0FF;
  color: #165DFF;
}
.profile-modal .footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
  padding-bottom: 20px;
  position: relative;
  z-index: 3;
}
.profile-modal button {
  line-height: 40px;
  width: 118px;
  background: #165dff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  border: #165dff solid 1px;
}
.profile-modal .disabledBtn {
  background: none;
  color: #165dff;
  border: #165dff solid 1px;
}
.profile-modal button:disabled {
  background: none;
  color: #165dff;
  border: #165dff solid 1px;
}
.borderBtn {
  background: none !important;
  color: #165dff !important;
  border: #165dff solid 1px !important;
}
.profile-modal .close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
}
.profile-modal .close-btn:hover {
  color: #333;
}
