.wrap {
  background-color: #daf0ff;
}
.form_ftable {
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #D7D7D7;
  border-left: solid 1px #D7D7D7;
  background-color: #fff;
}
.form_ftable .fth {
  font-size: 16px;
  font-weight: normal;
  color: #006bc3;
  text-align: right;
  padding-right: 16px;
}
.form_ftable .ftd {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  text-align: right;
}
.form_ftable .frow {
  display: flex;
  justify-content: start;
}
.form_ftable .fth,
.form_ftable .ftd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: solid 1px #D7D7D7;
  border-right: solid 1px #D7D7D7;
  line-height: 38px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.form_ftable .fth {
  width: 170px;
  background-color: #eff7fe;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .form_ftable .fth {
    width: 120px;
  }
}
.form_ftable .ftd {
  flex: 1;
  padding-left: 10px;
  padding-right: 10px;
  word-break: break-all;
  text-align: justify;
}
@media (max-width: 992px) {
  .form_ftable {
    width: 100%;
  }
  .form_ftable .frow {
    width: 100% !important;
  }
}
.ftable_form select,
.ftable_form input,
.ftable_form textarea,
.ftable_form button,
.ftable_form img {
  box-sizing: border-box;
  outline: none;
  border: none;
  vertical-align: middle;
}
.ftable_form .red_star {
  color: #f41c20;
  margin-right: 3px;
}
.ftable_form div[class*='_box'] {
  width: 100%;
}
.ftable_form div[class*='_box']::after {
  content: '';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.ftable_form div[class*='_box'] + div[class*='_box'] {
  margin-top: 10px;
}
.ftable_form select,
.ftable_form input[type='text'],
.ftable_form textarea {
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #e9e8e8;
  padding: 0 1em;
  font-size: 16px;
  font-weight: normal;
  color: #333;
}
.ftable_form select::placeholder,
.ftable_form input[type='text']::placeholder,
.ftable_form textarea::placeholder {
  color: #999999;
}
.ftable_form select,
.ftable_form input[type='text'] {
  width: 100%;
  height: 38px;
  line-height: 38px;
}
@media (max-width: 600px) {
  .ftable_form select,
  .ftable_form input[type='text'] {
    width: 100%;
  }
  .ftable_form select + select,
  .ftable_form input[type='text'] + select,
  .ftable_form select + input[type='text'],
  .ftable_form input[type='text'] + input[type='text'] {
    margin-top: 10px;
  }
}
.ftable_form select {
  max-width: 190px;
}
.ftable_form textarea {
  width: 100%;
  height: 170px;
  padding: 1em;
  resize: none;
}
.ftable_form .radios_box label {
  font-size: 16px;
  font-weight: normal;
  color: #333333;
  float: left;
  word-break: keep-all;
}
.ftable_form .radios_box label + label {
  margin-left: 15px;
}
.ftable_form .radios_box input[type='radio'] {
  appearance: auto;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.ftable_form .upload_box {
  position: relative;
}
.ftable_form .upload_box .upload_btn,
.ftable_form .upload_box input[type='file'] {
  display: inline-block;
  width: 120px;
  height: 38px;
  text-align: center;
  line-height: 38px;
}
.ftable_form .upload_box .upload_btn {
  width: 103px;
  height: 35px;
  background-color: #6699cc;
  font-size: 14px;
  font-weight: normal;
  color: #ffffff;
}
.ftable_form .upload_box input[type='file'] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.ftable_form .form_ftable_ver {
  margin-top: 10px;
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: start;
  border-top: solid 1px #e6e6e6;
  border-left: solid 1px #e6e6e6;
  background-color: #fff;
}
.ftable_form .form_ftable_ver .fth {
  font-size: 14px;
  font-weight: normal;
  color: #666666;
}
.ftable_form .form_ftable_ver .ftd {
  font-size: 14px;
  font-weight: normal;
  color: #333333;
}
.ftable_form .form_ftable_ver .frow {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.ftable_form .form_ftable_ver .fth,
.ftable_form .form_ftable_ver .ftd {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  border-bottom: solid 1px #e6e6e6;
  border-right: solid 1px #e6e6e6;
  line-height: 20px;
  padding: 9px 15px;
}
.ftable_form .form_ftable_ver .fth {
  background-color: #f2f2f2;
}
.ftable_form .form_ftable_ver .ftd {
  word-break: break-all;
  text-align: justify;
  line-height: 38px;
}
@media (max-width: 992px) {
  .ftable_form .form_ftable_ver {
    flex-wrap: wrap;
  }
  .ftable_form .form_ftable_ver .frow {
    width: 100% !important;
  }
}
.ftable_form .form_ftable_ver .del_btn {
  background-color: #FF5722;
  display: inline-block;
  height: 38px;
  line-height: 38px;
  padding: 0 18px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  font-size: 14px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
.ftable_form .yzm_box .yzm_input {
  width: 130px;
}
@media (max-width: 600px) {
  .ftable_form .yzm_box .yzm_input {
    width: calc(100% - 90px);
  }
}
.ftable_form .yzm_box .yzm_img {
  width: 80px;
  height: 38px;
}
.ftable_form .button_box {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  margin-top: 40px;
}
.ftable_form .button_box button {
  width: 143px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
}
.ftable_form .button_box .submit_btn {
  background-color: #6699cc;
  margin-right: 40px;
}
.ftable_form .button_box .reset_btn {
  background-color: #f2f2f2;
  color: #333333;
}
.ftable_form .select_box_body {
  position: relative;
  max-width: 190px;
}
.ftable_form .select_box_body .select_box_icon {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  cursor: pointer;
  border: 6px solid transparent;
  border-top-color: #c2c2c2;
  visibility: visible !important;
}
