body {
  width: 7.5rem;
  position: relative;
  background: linear-gradient(183deg, #FFEBF0 0%, #B2CAFF 100%);
  margin: auto;
  font-family: PingFang SC, PingFang SC;
}
.container {
  width: 100%;
  max-width: 7.5rem;
  margin: auto;
}
.content {
  position: relative;
  z-index: 3;
  min-height: 3rem;
  margin: auto;
  box-sizing: border-box;
}
.content .to-be-submitted {
  display: block;
}
.content .to-be-submitted .item {
  background: #FFFFFF;
  border-radius: 0.48rem;
  width: 6.7rem;
  box-sizing: border-box;
  margin: 0 auto 0.32rem;
  padding: 0.4rem;
}
.content .to-be-submitted .item:first-child {
  padding: 0.48rem;
}
.content .to-be-submitted .item-bg {
  background: url(../../image/radius.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.content .to-be-submitted .title {
  font-weight: bold;
  font-size: 0.4rem;
  color: #000000;
  margin-top: 0.16rem;
}
.content .to-be-submitted .title > img {
  width: 0.38rem;
  height: 0.22rem;
  margin-right: 0.08rem;
}
.content .to-be-submitted .second-level-title {
  font-weight: bold;
  font-size: 0.4rem;
  color: #000000;
  display: flex;
  align-items: center;
}
.content .to-be-submitted .second-level-title > img {
  width: 0.32rem;
  height: 0.32rem;
  margin-right: 0.08rem;
  vertical-align: middle;
}
.content .to-be-submitted .form-item {
  display: flex;
  align-items: center;
  height: 0.76rem;
  margin-top: 0.32rem;
}
.content .to-be-submitted .form-item label {
  width: 1.3rem;
  font-size: 0.36rem;
  font-weight: 400;
  color: #333333;
}
.content .to-be-submitted .form-item > div {
  display: flex;
  justify-content: flex-end;
  width: 5.48rem;
  /*自定义下拉框 -> 开始*/
  /*自定义下拉框 -> 结束*/
  /*滑块选择器 -> 开始*/
  /*滑块选择器 -> 结束*/
}
.content .to-be-submitted .form-item > div > ul {
  display: flex;
}
.content .to-be-submitted .form-item > div > ul > li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.24rem;
  height: 0.56rem;
  border-radius: 0.12rem;
  border: 0.02rem solid #F3F3F3;
  font-size: 0.32rem;
  font-weight: 300;
  color: #333333;
  background: #F8F8F8;
  text-align: center;
  margin-right: 0.24rem;
}
.content .to-be-submitted .form-item > div > ul > li:nth-child(2n+0) {
  margin-right: 0;
}
.content .to-be-submitted .form-item > div > ul > li > img {
  width: 0.32rem;
  height: 0.32rem;
  margin-top: 0.02rem;
  margin-right: 0.06rem;
  vertical-align: middle;
}
.content .to-be-submitted .form-item > div > ul > li.active {
  border-color: #000000;
}
.content .to-be-submitted .form-item > div > ul > li.active::before {
  opacity: 1;
}
.content .to-be-submitted .form-item > div > ul .man {
  background: linear-gradient(183deg, #71AEFF 0%, #006FFF 100%);
  color: #FFF;
  border: none;
}
.content .to-be-submitted .form-item > div > ul .girl {
  background: linear-gradient(183deg, #FF7194 0%, #FF0051 100%);
  color: #FFF;
  border: none;
}
.content .to-be-submitted .form-item > div .custom-select {
  position: relative;
  width: 60%;
}
.content .to-be-submitted .form-item > div .select-trigger {
  padding: 0.06rem 0;
  font-size: 0.32rem;
  color: #666666;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s ease;
}
.content .to-be-submitted .form-item > div .select-trigger:hover {
  border-color: #666666;
}
.content .to-be-submitted .form-item > div .select-trigger:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  border-right: 0.02rem solid #666666;
  border-bottom: 0.02rem solid #666666;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 0.16rem;
}
.content .to-be-submitted .form-item > div .custom-select.open .select-trigger:after {
  transform: rotate(-135deg);
}
.content .to-be-submitted .form-item > div .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  overflow-y: auto;
  max-height: 6rem;
}
.content .to-be-submitted .form-item > div .custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.content .to-be-submitted .form-item > div .option {
  padding: 0.16rem;
  font-size: 0.32rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.content .to-be-submitted .form-item > div .option:hover {
  background-color: #f5f5f5;
}
.content .to-be-submitted .form-item > div .option.selected {
  background-color: #eef4ff;
  color: #000;
  font-weight: 300;
}
.content .to-be-submitted .form-item > div .slider-container {
  width: 65%;
  padding-right: 0.28rem;
}
.content .to-be-submitted .form-item > div .slider-container .slider-header {
  display: flex;
  justify-content: center;
  margin-top: 0.06rem;
}
.content .to-be-submitted .form-item > div .slider-container .slider-header .slider-title {
  font-weight: 300;
  color: #333333;
  font-size: 0.24rem;
}
.content .to-be-submitted .form-item > div .slider-container .range-slider {
  position: relative;
  height: 0.08rem;
  background: #e0e0e0;
  border-radius: 0.2rem;
}
.content .to-be-submitted .form-item > div .slider-container .range-slider .track {
  position: absolute;
  height: 100%;
  background: #409eff;
  border-radius: 10px;
}
.content .to-be-submitted .form-item > div .slider-container .range-slider .thumb {
  position: absolute;
  width: 0.28rem;
  height: 0.28rem;
  background: #FFFFFF;
  border: 0.02rem solid #666666;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 2;
}
.content .to-be-submitted .form-item > div .slider-container .range-slider .thumb:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0.08rem 0.2rem rgba(0, 0, 0, 0.3);
}
.content .to-be-submitted .form-item > div .slider-container .range-slider .thumb.active {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 0.08rem 0.24rem rgba(106, 17, 203, 0.5);
}
.content .to-be-submitted .multiple-choice > ul {
  display: flex;
  flex-wrap: wrap;
}
.content .to-be-submitted .multiple-choice > ul > li {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 1.86rem;
  height: 0.6rem;
  font-weight: 300;
  font-size: 0.32rem;
  color: #333333;
  border-radius: 0.08rem;
  border: 0.02rem solid #F3F3F3;
  margin-top: 0.16rem;
  margin-right: 0.16rem;
}
.content .to-be-submitted .multiple-choice > ul > li:nth-child(3n+0) {
  margin-right: 0;
}
.content .to-be-submitted .multiple-choice > ul > li.active {
  border-color: #FF3F43;
  background: #FFF0F1;
  color: #FF3F43;
}
.content .to-be-submitted .hint {
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 0.24rem;
  color: #666666;
  margin-top: 0.16rem;
}
.content .to-be-submitted .hint img {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.06rem;
}
.content .to-be-submitted .phoneNumber {
  font-size: 0;
  padding-top: 0.1rem;
}
.content .to-be-submitted .phoneNumber .custom-input {
  width: 100%;
  height: 0.72rem;
  box-sizing: border-box;
  border: 0.02rem solid #D0D0D0;
  border-radius: 0.08rem;
  outline: none;
  transition: all 0.3s ease;
  font-size: 0.32rem;
  font-weight: 300;
  padding: 0 0.2rem;
}
.content .to-be-submitted .btn {
  display: flex;
  justify-content: center;
  padding-bottom: 0.48rem;
}
.content .to-be-submitted .btn > button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.12rem;
  height: 1.2rem;
  margin-top: 0.16rem;
  background: linear-gradient(183deg, #FFB3D1 0%, #FF3A3D 100%);
  box-shadow: inset 0 0 0.28rem 0 rgba(255, 255, 255, 0.25);
  border-radius: 0.32rem;
  font-weight: bold;
  font-size: 0.4rem;
  color: #FFFFFF;
  border: none;
}
.content .to-be-submitted .btn > button:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}
.content .submit-successfully {
  display: none;
  width: 100%;
}
.content .submit-successfully .item {
  background: #FFFFFF;
  border-radius: 0.48rem;
  width: 6.7rem;
  box-sizing: border-box;
  margin: 0 auto 0.32rem;
  padding: 1rem 0.4rem;
}
.content .submit-successfully .item-bg {
  background: url(../../image/radius.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.content .submit-successfully > div {
  margin: 1.6rem auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0;
}
.content .submit-successfully > div > img {
  width: 5.64rem;
  height: 2.44rem;
}
.content .submit-successfully > div .message h2 {
  font-weight: bold;
  font-size: 0.64rem;
  color: #000000;
  text-align: center;
}
.content .submit-successfully > div .message p {
  font-weight: 400;
  font-size: 0.4rem;
  color: #666666;
  text-align: center;
  margin-top: 0.16rem;
}
.flex-items-center {
  height: 0.38rem;
  display: flex;
  align-items: center;
}
.text-primary {
  color: red;
}
input[type="checkbox"] {
  width: 0.24rem;
  height: 0.24rem;
}
.text-gray {
  font-size: 0.23rem;
  font-weight: 300;
}
.text-gray > img {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.06rem;
}
label {
  font-size: 0.24rem;
}
label a {
  text-decoration: inherit;
}
label.text-gray {
  margin-left: 0.06rem;
}
.color-grey {
  color: #666666;
}
.mt-8 {
  margin-top: 0.2rem;
}
