
/* 产品样式 */

.products{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding: 59px 26px 8px; */
  /* border: 1px solid #212121; */
  margin-top: 42px;
  border-radius: 40px;
  width: 100%;
  position: relative;
}
.product::after{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 150px;
  background: url(/static/images/product_bg.png) 63% 20px no-repeat;
  background-size: auto 80px;
}
.product-title{
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: left;
  background: url(/static/images/product_bg.jpg) 0 0 no-repeat;
  background-size: 100%;
  font-size: 36px;
  color: #353535;
  padding-left: 30px;
  font-family: 'PingFangL';
}
.product-v2::after{
  content: unset;
}
.product-title-v2{
  background-image: none;
  background-color: #e0e0e0;
  position: relative;
}
.product-title-v2 img{
  height: 132px;
  position: absolute;
  top: -23px;
  right: 0;
}
.product .text{
  padding: 10px 30px 27px;
  width: 100%;
}
.product .text p{
  text-align: left;
  text-indent: 0;
  font-size: 14px;
  line-height: 24px;
  color: #3c3c3c;
  white-space: break-spaces;
}
.product ul{
  display: flex;
  padding: 0 42px;
  list-style-type: none;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.product ul li{
  width: 214px;
  height: 271px;
  background: #848484;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  margin: 0 20px 21px 0;
}
.product ul li:nth-child(4n + 4){
  margin-right: 0;
}
.product ul li img{
  width: 100%;
  height: 212px;
  object-fit: cover;
}
.product ul li .b{
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
}
.product ul li .b span{
  display: block;
  width: 27px;
  height: 4px;
  background: #fff;
  margin-left: 21px;
}
.product ul li .b p{
  text-align: left;
  color: #fff;
  text-indent: 21px;
  line-height: 21px;
  margin-top: 8px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 21px;
}
@media (max-width: 751px) {
  .product-box{
    padding: 0;
  }
  .my-title{
    margin: 0.24rem auto;
  }
  .product{
    border: 0;
    padding: 0;
    margin-top: 0.70rem;
    margin-bottom: 0.2rem;
  }
  .product::after{
    height: 1.20rem;
    top: -0.60rem;
    left: auto;
    right: 0;
    width: 4.65rem;
    background-size: 100% auto;
  }
  .product-title{
    background: #e0e0e0;
    padding-left: 0.32rem;
    height: 1rem;
    line-height: 1rem;
    font-size: 0.5rem;
  }
  .product .text{
    padding: 0.21rem 0.32rem;
  }
  .product .text p{
    font-size: 0.18rem;
    line-height: 0.42rem;
  }
  .product ul{
    /* justify-content: space-around; */
    padding: 0 0.16rem;
  }
  .product ul li{
    width: 2.72rem;
    height: 3.39rem;
    margin: 0 0.35rem;
    margin-bottom: 0.12rem;
  }
  .product ul li:nth-child(odd){
    margin-right: 0.68rem;
  }
  .product ul li img{
    height: 2.64rem;
  }
  .product ul li .b span{
    width: 0.33rem;
    height: 0.05rem;
    margin-left: 0.21rem;
  }
  .product ul li .b p{
    text-indent: 0.21rem;
    font-size: 0.16rem;
    margin-top: 0.08rem;
    line-height: 0.27rem;
    margin-right: 0.21rem;
  }
}