productListCell.wxss 997 Bytes
/* component/productListCell.wxss */

.product {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.productImage {
  display: block;

}

.productTitle {
  margin-top: 21rpx;
  margin-bottom: 1rpx;
  color: #444444;
  font-family: PingFang SC;
  font-size: 24rpx;
  /*font-weight: bold;*/
  line-height: 30rpx;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 60rpx;
}

.bottomContainerView {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  /* margin-bottom: 20rpx; */
  justify-content: space-between;
}

.priceContainer {
  display: flex;
  flex-direction: row;
  width: 236rpx;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.price1 {
  font-size: 24rpx;
  color: #d0021b;
}

.price2 {
  margin-left: 10rpx;
  font-size: 24rpx;
  color: #b0b0b0;
  text-decoration: line-through;
}

.addToShopCartImage {
  width: 80rpx;
  height: 46rpx;
}