.product-card {
  width: 187px;
  height: 279px;
  margin-left: 11.8px;
  margin-bottom: 20px;
}
.product-card:nth-of-type(6n + 1) {
  margin-left: 0;
}
.product-card .product-image {
  width: 100%;
  /* height: 100%; */
}
.product-card .product-image img {
  width: 100%;
}
.product-card .product-title {
  color: #333;
  font-size: 13px;
  min-height: 40px;
  max-height: 40px;
  line-height: 20px;
  /* 显示两行，省略号 */
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 4px;
  font-family: PingFangSC, PingFang SC;
}
.product-card .product-title h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.product-card .wrapper-list-and-price {
  margin-top: 3px;
}
.product-card .wrapper-list-and-price .product-list {
  font-size: 12px;
}
.product-card .wrapper-list-and-price .product-list .product-list-label {
  color: #999;
}
.product-card .wrapper-list-and-price .product-list .product-list-value {
  color: #333;
}
.product-card .wrapper-list-and-price .product-price-and-inventory {
  margin-top: 6px;
}
.product-card .wrapper-list-and-price .product-price-and-inventory .sellPrice {
  font-size: 16px;
  color: #333;
}
.product-card .wrapper-list-and-price .product-price-and-inventory .originPrice {
  margin-left: 0;
  color: #999;
  font-size: 12px;
}
