.product-box {
  padding: 30px 30px 50px 30px;
  background: #fff;
}
.product-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.product-list li {
  width: 33.3333%;
  padding: 10px;
}
.product-list a {
  display: block;
  overflow: hidden;
}
.product-list .pic {
  display: block;
  width: 100%;
  height: 271px;
  overflow: hidden;
  margin-bottom: 3px
}
.product-list .pic img {
  width: 100%;
  height: 100%;
  padding: 2px;
  object-fit: cover;
  border: 1px solid #ccc;
}
.product-list .text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  background: #f2f2f2;
  height: 60px;
  line-height: 60px;
  padding: 0 10px;
  overflow: hidden;
  text-align: center;
}
.product-list a:hover .pic img {
  transform: scale(1.05)
}
/*PC自适应*/
@media only screen and (min-width:1024px) and (max-width:1900px){


}

/*Mobile v1*/
@media only screen and (max-width:767px){
.product-box {
  width: 100%;
  max-width: 100%;
  padding: 10px 4% 10px 4%;
}
.product-list {
  margin: -10px;
  margin-top: 10px;
  padding-bottom: 10px;
}
.product-list li {
  width: 50%;
}
.product-list li .pic {
  height: 105px;
}
.product-list li a .text {
  height: 38px;
  line-height: 38px;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

}