/* 顶部横幅 */
.product-banner {
  background-image: url('../img/pc/product-banner.png');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
}
h3{
    width: 100%;
}
.product-banner .container {
  color: #fff;
}

.product-banner .container p {
  width: 50%;
  font-size: 18px;
  margin-top: 1.5rem;
}

/* 产品列表 */
.product-wrap {
  padding-top: 6rem;
  padding-bottom: 6rem;
  min-height: 600px;
}
.product-wrap label{
    margin-right: 10px;
}
.product-wrap .soso svg {
  position: absolute;
  left: 10px;
  z-index: 10;
}

.product-wrap .soso input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  text-indent: var(--gap)
}

.product-wrap .soso button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media screen and (max-width: 768px) {
  .product-banner {
    background-image: url('../img/h5/product-banner.png');
    min-height: 400px;
    padding-top: 48px;
  }

  .product-banner .container p {
    width: auto;
  }

  .product-wrap {
    padding-top: 0;
    padding-bottom: var(--gap);
   
  }

  .product-wrap .form-wrap {
    background-color: #fff;
    padding: var(--gap);
    /*margin-left: calc(-1 * var(--gap));*/
    /*margin-right: calc(-1 * var(--gap));*/
    margin-bottom: var(--gap)!important;
    margin-top: var(--gap)!important;
     flex-wrap: wrap;
     gap:5px 10px;
    /*padding-: 2rem;*/
  }
  .soso{
      max-width: 100%;
     width: 100%;
      /*margin-top:16px;*/
  }
  .soso input{
      width: 100% !important;
  }
 .product-wrap .form-wrap>div:nth-child(1) {
    margin-left: 0 !important;
    width: calc(100% / 2 - 5px) !important;
  }
  .product-wrap .form-wrap>div:nth-child(2) {
    margin-left: 0 !important;
    width: calc(100% / 2 - 5px) !important;
  }
    .product-wrap .form-wrap select{
        width: 100% !important;
    }
  .product-list.grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}