.list_1 {
  padding-bottom: 100px;
  /* margin-top: 124px; */
  margin-top: 40px;
}
.list_1 .centent {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.list_1 .centent .top {
  background-color: #fff;
  width: 100%;
  height: 60px;
  padding: 0 33px;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.list_1 .centent .top .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 100%;
  margin-right: 56px;
  font-size: 16px;
  font-family: 'Regular';
  color: #999;
}
.list_1 .centent .top .item.art,
.list_1 .centent .top .item:hover {
  color: #19C76B;
  border-bottom: 2px solid #19C76B;
}
.list_1 .centent .box {
  width: 100%;
  display: flex;
  justify-content: center;
  /* display: grid; */
  /* grid-template-columns: repeat(3,1fr); */
  grid-column-gap: 20px;
}
.list_1 .centent .box .item {
  width: 33.3%;
  /* height: 300px; */
  display: flex;
  align-items: center;
  flex-direction: column;
  /* justify-content: center; */
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 30px 0;
}
.list_1 .centent .box .item:first-child .f16{
  cursor: pointer;
}
.list_1 .centent .box .item:first-child .f16 .bold{
  font-weight: 600;
}
.list_1 .centent .box .item img {
  width: 96px;
  /* height: 60px; */
}
.list_1 .centent .box .item .f20 {
  font-family: 'AtAeroMedium';
  margin-top: 20px;
}
.list_1 .centent .box .item .f16 {
  margin-top: 10px;
  max-width: 278px;
  text-align: center;
  font-family: 'Regular';
}
.list_1 .centent .box .item .c9 {
  color: #999;
  font-size: 14px;
}
.list_1 .centent .boxs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.list_1 .centent .boxs .f40 {
  font-size: 40px;
  margin-bottom: 40px;
  font-family: 'AtAeroMedium';
}
.list_1 .centent .boxs .center {
  background-color: #fff;
  border: 1px solid #19C76B;
  width: 800px;
  border-radius: 20px;
  padding: 60px 100px ;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.list_1 .centent .boxs .center .f30 {
  font-size: 30px;
  margin-bottom: 50px;
  font-family: 'AtAeroMedium';
}
.list_1 .centent .boxs .center .inp {
  width: 100%;
  margin-bottom: 30px;
}
.list_1 .centent .boxs .center .inp p {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Regular';
}
.list_1 .centent .boxs .center .inp input {
  width: 100%;
  height: 40px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #999;
  padding-left: 10px;
  box-sizing: border-box;
  color: #000;
  font-family: 'Regular';
}
.list_1 .centent .boxs .center .inp textarea {
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 1px solid #999;
  padding-left: 10px;
  box-sizing: border-box;
  font-family: 'Regular';
  color: #000;
}
.list_1 .centent .boxs .center .inps {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.list_1 .centent .boxs .center .inps div {
  width: 48%;
}
.list_1 .centent .boxs .center .inps div p {
  font-size: 16px;
  margin-bottom: 10px;
}
.list_1 .centent .boxs .center .inps div input {
  width: 100%;
  height: 40px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #999;
  padding-left: 10px;
  box-sizing: border-box;
  color: #000;
  font-family: 'Regular';
}
.list_1 .centent .boxs .center .btn {
  width: 300px;
  height: 50px;
  border-radius: 25px;
  background: linear-gradient(101deg, #19C76B 5%, #2ABDDD 94%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Regular';
}
@media screen and (max-width: 768px){
  .list_1{
    padding-bottom: 50px;
    margin-top: 80px;
  }
  .list_1 .centent{
    width: 100%;
  }
  .list_1 .centent .boxs .f40{
    width: 90%;
    font-size: 30px;
  }
  .list_1 .centent .top{
    /* flex-wrap: wrap; */
    overflow-x: auto;
    /* height: auto; */
    position: sticky;
    top: 60px;
  }
  .list_1 .centent .top .item{
    /* margin-right: 5px; */
    flex-shrink: 0;
  }
  .list_1 .centent .box{
    flex-direction: column;
  }
  .list_1 .centent .boxs .center{
    width: 90%;
    padding: 10px;
    border-radius: 10px;
  }
  .list_1 .centent .boxs .center .f30{
    font-size: 24px;
  }
  .list_1 .centent .box {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    width: 90%;
    margin: auto;
  }
  .list_1 .centent .box .item{
    /* background: none; */
    width: 100%;
    height: auto;
    /* justify-content: flex-start; */
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 5vw;
    box-sizing: border-box;
    grid-column-gap:5vw ;
    place-items: start;
  }
  .list_1 .centent .box .item img{
    width: 40px;
    grid-row: 1/4;
  }
  .list_1 .centent .box .item .f20{
    margin-top: 0;
  }
  .list_1 .centent .box .item .f16{
    text-align: left;
    width: 100%;
    max-width: none;
  }
  .list_1 .centent .boxs .center .btn{
    height: 32px;
    font-size: 14px;
  }
}