main {
  height: 816px;
  background:#e5e5e5;
  /* url('../image/form-bg.jpg') center center no-repeat;*/
  margin-top: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}

main>div {
  width: 1200px;
  height: 656px;
  background: url('../new_image/form-bg.png') no-repeat center center;
  background-size: cover;
  box-shadow: rgb(0 0 0 / 30%) 0 0 5px;
  border-radius: 28px;
}

.form_title {
  width: 510px;
  height: 200px;
  color: #333333;
  margin-left: 50px;
  padding-top: 120px;
}

.form_title h1 {
  font-size: 30px;
}

.form_title span {
  color: #a40001;
}

.form_title h1 span:last-child {
  font-size: 44px;
  font-weight: 600;
}

.form_title p {
  font-size: 26px;
  line-height: 66px;
}

.form_title ul {
  display: flex;
  flex-wrap: wrap;
  color: #a40001;
  margin-left: 25px;
  margin-top: 40px;
}

.form_title ul li {
  width: 230px;
  font-size: 20px;
  line-height: 2;
  list-style-type: disc;
}

.form_title ul li span {
  color: #333333;
}

.form_content {
  /*width: 550px;*/
  width:47%;
  height: 126px;
  padding: 22px 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /*justify-content: space-around;*/
  /* background-color: white; */
  /* box-shadow: rgb(0 0 0 / 30%) 0 0 5px; */
  border-radius: 8px;
  margin-left: 50px;
  margin-top: 60px;
  position: relative;
}
.form_content input {
 /* width: 180px;*/
  width:35%;
  height: 46px;
  border-radius: 5px;
  border: 1px solid #d0d0d0;
  outline: none;
  font-size: 16px;
  line-height: 46px;
  color: #737373;
  cursor: pointer;
  text-indent: 20px;
  margin-left: 20px
}
.form_content input:nth-child(1), .form_content input:nth-child(3) {
  margin-left: 10px
}
.form_content div{
  margin-left: 10px;
}
.form_content img {
  position: absolute;
  right: 0;
  cursor: pointer;
  /* height: 100%; */
  top:20px;
}

/* 下拉选择器 */
#select {
  /*width: 180px;*/
  width: 35%;
  position: relative;
}

#select:after {
  content: "";
  position: absolute;
  top: 16.5px;
  right: 20px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-bottom: 2px solid #656565;
  border-right: 2px solid #656565;
}
.form_content div input{
  width:100%;
}
#select>div {
  position: absolute;
  width: 100%;
  height: 180px;
  overflow-y: scroll;
  top: 42px;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #d0d0d0;
  z-index: 2;
}

#select>div>label {
  display: block;
  cursor: pointer;
  height: 35px;
  margin: 0;
  font-size: 16px;
  line-height: 35px;
  text-indent: 20px;
  color: #737373;
}

#select>div>label:hover {
  background-color: #ffc66c;
  color: white;
}

label input {
  display: none;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #F1F1F1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #c1c1c1;
}
.cover_img{
  display: none;
}
@media screen and (max-width:800px) {
  main{
    height: auto;
    margin-top: 100px;
    margin-bottom: 50px;
    background: #fff;
  }
  main div{
    width: 92%;
    height: auto;
    background: none;
    background-size: cover;
    padding: 10px;
    margin: auto;
  }
  .cover_img{
    width: 100%;
    padding: 10px;
    display: block;
    box-sizing: border-box;
  }
  .cover_img img{
    width: 100%;
  }
  .form_content img{
    width: 80px;
    right: 20px;
    top: auto;
    bottom: 40px;
  }
  .form_content{
    width: 100%;
    padding: 0;
    margin: 0;
    height: auto;
    padding: 25px 5px;
    box-sizing: border-box;
  }
  .form_content input{
    width: 70%;
    font-size: 12px;
    margin-top: 10px;
  }
  #select{
    padding:0px;
    width: 70%;
    margin-left: 0px;
    margin-top: 10px;
  }
  .form_content input:nth-child(1), .form_content input:nth-child(3){
    margin-left: 0px;
    padding:0px;

  }
  #select:after{
    top: 25px;
  }
}
