.detail input {
  width: 100%;
  padding: 13px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #E7E9EE;
  border-radius: 8px;
  /* font-family: "LB"; */
  font-family: "Roboto-Regular";
  color: #02021d;
}

/* .detail input:focus{
  border-color: #335bff;
} */
.detail {
  background-color: #fff;
}

.detail .content {
  max-width: 840px;
  padding: 60px 20px;
}

.first_title {
  font-size: 40px;
  line-height: 48px;
  color: #02021d;
  padding-bottom: 20px;
  display: flex;
  flex-flow: column;
}

.first_title b {
  font-weight: bold;
}

.form_wrap {
  padding: 24px 0;
  border-top: 1px solid #f3f3f3;
}

.form_remark {
  margin: 12px 0 24px;
  font-weight: bold;
  display: none;
}

.form_wrap_title {
  position: relative;
  /* font-size: 20px;
  line-height: 26px; */
  color: #02021d;
  padding-right: 150px;
}
.form_wrap_title .tips{
  font-size: 16px;
  color:#777777;
}
.form_wrap_title i{
  font-size: 14px;
  font-style: normal;
  color:#cc0000;
  padding-left: 4px;
}
.form_wrap_title i.nolimit{
  display: none;
}

.form_wrap_title.large {
  font-size: 20px;
  line-height: 26px;
}

.form_item {
  margin-top: 24px;
}

.extend .form_item{
  margin-top: 8px;
}
.form_item_wrap.lr{
  flex-wrap: wrap;
}
.lr .form_item {
  width: calc(50% - 8px);
}


.form_item_title {
  color: #02021d;
  margin-bottom: 8px;
}

.form_item_input {}

.form_item_select {
  position: relative;
  padding: 13px;
  padding-right: 43px;
  border: 1px solid #E7E9EE;
  border-radius: 8px;
  cursor: pointer;
}

.detail .form_item_select .form_item_select_input {
  border: none;
  position: absolute;
  width: calc(100% - 30px);
  height: 100%;
  padding: 13px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  display: none;
}

.form_item_select_txt {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #999;
}

.form_item_select_txt.checked {
  color: inherit;
}

.form_item_select i {
  font-size: 16px;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.form_item_select.open i {
  transform: translateY(-50%) rotate(180deg);
}

.form_select_list {
  width: calc(100% + 2px);
  max-height: 200px;
  overflow-y: scroll;
  position: absolute;
  left: -1px;
  top: 100%;
  background-color: #fff;
  border: 1px solid #E7E9EE;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
  z-index: 2;
  display: none;
}

.form_select_list li {
  padding: 0 13px;
  transition: all .6s ease;
}

.form_select_list li:hover {
  background-color: #eee;
}

.form_select_list div {
  padding: 13px 0;
  border-top: 1px solid #E7E9EE;
}

.form_select_list li:first-child div {
  border: none;
}

.form_item_select.open {
  border-radius: 8px 8px 0 0;
}

.form_item_select.open .form_select_list {
  display: block;
}

.form_switch {}

/* .form_switch .form_item_wrap{
  display: none;
} */
.form_switch.checked .form_item_wrap {
  display: flex;
}

.form_switch .form_wrap_title b {
  flex: 1;
}

.form_switch_btn {
  position: absolute;
  right: 0;
  width: 34px;
  height: 20px;
  border-radius: 10px;
  background-color: #ccc;
  cursor: pointer;
  transition: all .6s ease;
}

.form_switch_btn::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 8px;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: all .6s ease;
}

.form_switch.checked .form_switch_btn {
  background-color: #335bff;
}

.form_switch.checked .form_switch_btn::before {
  left: calc(100% - 18px);
}

.form_radio {
  display: flex;
  align-items: center;
}

.form_radio_item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form_radio_item+.form_radio_item {
  margin-left: 60px;
}

.form_radio_item_circle {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #CECFD6;
  border-radius: 100%;
  margin-right: 8px;
  transition: all .6s ease;
}

.form_radio_item_circle::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #335bff;
  position: absolute;
  left: 3px;
  top: 3px;
  opacity: 0;
  transition: all .6s ease;
}

.form_radio_item.checked .form_radio_item_circle {
  border-color: #335bff;
}

.form_radio_item.checked .form_radio_item_circle::before {
  opacity: 1;
}

.form_check_list {}

.form_check_item {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 20px;
}

.form_check_item>div {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  background-color: #E6E7EA;
  border-radius: 4px;
  transition: all .6s ease;
}

.form_check_item i {
  color: #fff;
  font-size: 16px;
}

.form_check_item text {
  color: #02021d;
  flex: 1;
}

.form_check_item.checked>div {
  background-color: #335bff;
}

.form_check_item_input {
  margin-top: 20px;
  display: none;
}

.form_check_item.checked+.form_check_item_input {
  display: block;
}

.form_item_text {
  width: 100%;
  height: 120px;
  padding: 13px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #E7E9EE;
  font-size: 14px;
  /* font-family: "LB"; */
  font-family: "Roboto-Regular";
  color: #02021d;
}

.submit_control{
  display: none;
}

.form_agree {}

.form_agree .form_check_item {
  font-size: 12px;
  line-height: 16px;
  color: #666;
  margin-top: 16px;
}

.form_agree .form_check_item:first-child {
  margin-top: 0;
}

.form_agree .form_check_item>div {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.form_agree .form_check_item i {
  font-size: 12px;
}

.form_check_item a {
  color: #335bff;
  font-style: italic;
}

.form_btn {
  display: flex;
}

.form_item_btn {
  padding: 11px 19px;
  border: 1px solid #E7E9EE;
  border-radius: 8px;
  cursor: pointer;
  transition: all .6s ease;
  text-align: center;
}

.form_item_btn+.form_item_btn {
  margin-left: 20px;
}

.form_item_btn.confirm {
  width: 229px;
  height: 44px;
  padding: 0;
  line-height: 44px;
  background-color: #335bff;
  color: #fff;
  border: none;
}

.form_item_btn.cancel {
  width: 60px;
}

.form_item_btn.disable {
  background-color: #d5e3fe;
  color: #fff;
  cursor: auto;
}
.form_item_btn.cancel.disable {
  background-color: #fff;
  color: inherit;
}

.form_item_btn.confirm:hover,
.form_item_btn.cancel:hover {
  opacity: .7;
}

.form_item_btn.disable:hover {
  opacity: 1;
}

.form_item_btn i {
  display: none;
}

.form_item_btn.btnLoading b {
  display: none;
}

.form_item_btn.btnLoading i {
  display: block;
  height: 100%;
  line-height: inherit;
}

.bit {
  display: none;
}

.form_item_title .mark {
  opacity: 0;
}

.checked .form_item_title .mark {
  opacity: 1;
}

/* extend */
.extend_item.disabled {
  opacity: .3;
}

.extend_item.disabled .form_check_item {
  cursor: default;
}

.extend_radio .form_check_item>div {
  overflow: hidden;
  border-radius: 10px;
}

.extend_item.checked .form_check_item>div {
  background-color: #335bff;
}


@media screen and (max-width: 1024px) {
  .detail .content {
    padding: 36px 12px;
  }

  .first_title {
    font-size: 24px;
    line-height: 36px;
  }

  .form_wrap {
    padding: 20px 0;
  }

  .form_wrap_title.large {
    font-size: 18px;
    line-height: normal;
  }

  .form_wrap_title {
    padding-right: 0;
  }

  .form_item {
    margin-top: 10px;
  }

  .lr .form_item {
    width: 100%;
  }

  .form_item_title {
    margin-bottom: 6px;
  }

  .form_switch_btn {
    position: relative;
    margin-top: 10px;
  }

  .form_switch .lr {
    align-items: initial;
  }

  .form_check_item {
    margin-top: 16px;
  }

  .form_check_item_input {
    margin-top: 10px;
  }

  .form_btn {
    display: block;
    margin-top: 20px;
    text-align: center;
  }

  .form_item_btn+.form_item_btn {
    margin-left: 0;
    margin-top: 10px;
  }

  .form_item_btn.confirm, .form_item_btn.cancel {
    width: auto;
  }

}