.form_title {
  font-size: 18px;
  font-family: Poppins_Bold, Arial, sans-serif;
  margin-top: 15px;
}
.form_box .line_item {
  display: flex;
  /* align-items: center; */
  margin-bottom: 10px;
}
.form_box .left {
  width: 250px;
  /* 不要缩小 */
  flex-shrink: 0;
  line-height: 30px;
  margin-right: 15px;
}
.form_box .select_ {
  border: 1px solid #000;
  line-height: 30px;
  min-width: 340px;
  padding: 0 20px;
  font-size: 16px;
  font-family: Poppins_Regular, Arial, sans-serif;
}
.form_box .input_ {
  border: 1px solid #000;
  line-height: 30px;
  min-width: 300px;
  padding: 0 20px;
  font-size: 16px;
  font-family: Poppins_Regular, Arial, sans-serif;
}
.form_box .input_text {
  border: 1px solid #000;
  line-height: 30px;
  min-width: 300px;
  padding: 0 20px;
  font-size: 16px;
  font-size: 16px;
  font-family: Poppins_Regular, Arial, sans-serif;
}
.form_box .other_input {
  margin-left: 25px;
  display: none;
}
.form_box .button {
  color: #fff;
  background-color: var(--blue);
  padding: 10px 20px;
  line-height: 40px;
  border-radius: 40px;
  margin: 30px auto;
  width: 250px;
  text-align: center;
  cursor: pointer;
  display: block;
}
.form_box .check_item_box {
  display: flex;
  width: 700px;
  /* 可以换行 */
  flex-wrap: wrap;
}
.form_box .check_item_con1 {
  width: 40%;
}
.form_box .check_item_con2 {
  width: 30%;
}
.form_box .check_input {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  cursor: pointer;
  margin-right: 5px;
}
.form_box .check_item {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}
.form_box .other_box {
  display: flex;
  width: 700px;
}
.form_box .radio_box {
  display: flex;
  width: 320px;
}
.form_box .radio_item {
  width: 30%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form_box .radio_input {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  cursor: pointer;
  margin-right: 5px;
}
.form_box .upload_item {
  display: flex;
}
.form_box .upload_input {
  width: 300px;
  height: 30px;
  border: 1px solid #000;
  padding: 0 20px;
  font-size: 16px;
  font-family: Poppins_Regular, Arial, sans-serif;
}
.form_box .upload_btn {
  background-color: var(--blue);
  color: #fff;
  padding: 0 20px;
  line-height: 30px;
  border-radius: 40px;
  cursor: pointer;
  margin-left: 10px;
}
.form_box .upload_text2 {
  color: red;
}
.form_box .mobile_box {
  display: flex;
}
.form_box .mobile_box .area_code {
  width: 50px !important;
  min-width: auto;
}
.form_box .mobile_box .mobile {
  width:180px !important;
  min-width: auto;
}
.form_box .mobile_box .mobile_line {
  width: 30px !important;
  min-width: auto;
  text-align: center;
}
@media screen and (max-width: 1219px) {
  .form_box .line_item {
    flex-direction: column;
    align-items: flex-start;
  }
  .form_box .check_item_box {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .form_box .upload_box {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .form_box .upload_item {
    flex-direction: column;
  }
  .form_box .upload_btn {
    text-align: center;
    margin: 10px 0;
  }
  .form_box .check_item_con1 {
    width: 100%;
  }
  .form_box .check_item_con2 {
    width: 100%;
  }
}
