inviteProductListCell.wxss 1.13 KB
/* pages/inviteFriend/inviteProudctListCell.wxss */
.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300rpx;
  height: 470rpx;
  margin-left: 30rpx;
  margin-bottom: 30rpx;
}

.product-icon {
  width: 100%;
  height: 400rpx;
  /* background: red; */
}

.product-brand {
  width: 100%;
  height: 70rpx;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-name {
  margin-left: 20rpx;
  margin-right: 20rpx;
  color: white;
  text-align: center;
  font-size: 36rpx;
  font-weight: 500;
  font-style: italic;
  white-space: nowrap;
  text-overflow:ellipsis; 
  display: block;
  overflow: hidden;
}

.product-price {
  margin-top: -50rpx;
  width: 100%;
  height: 50rpx;
  background-color: #b60809;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-salePrice {
  font-size: 36rpx;
  font-weight: 500;
  text-align: center;
  color: #010101;
  font-style: italic
}

.product-marketPrice {
  font-style: italic;
  margin-left: 12rpx;
  font-size: 24rpx;
  font-weight: 500;
  text-align: center;
  color: #010101;
  text-decoration: line-through;
}