cart-item.wxss 2.2 KB
@import "../../../iconfont.wxss";

.goods-item {
  width: 100%;
  height: 200rpx;
  line-height: 200rpx;
  padding: 20rpx 0;
  font-size: 26rpx;
  display: flex;
  flex-direction: row;
  position: relative;
}

.goods-item:before {
  content: '';
  height: 1rpx;
  position: absolute;
  left: 100rpx;
  right: 0;
  top: -1rpx;
  background-color: #f0f0f0;
}

.goods-item.top-none:before {
  display: none;
}

.goods-item .red {
  color: #d0021b;
}

.goods-item .choose-btn {
  width: 100rpx;
  text-align: center;
  display: flex;
  flex-direction: row;
}

.goods-item .choose-btn .iconfont {
  margin: auto;
}

.goods-item .thumb {
  width: 150rpx;
  height: 200rpx;
  background-color: #f3f3f3;
  display: flex;
  flex-direction: row;
  position: relative;
}

.goods-item .thumb .goods-type {
  width: 100%;
  height: 30rpx;
  line-height: 30rpx;
  font-size: 20rpx;
  background-color: #444;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
}

.goods-item .thumb .price-gift-tag {
  background-color: #fc1261;
}

.goods-item .thumb .gift-tag {
  background-color: #85c45c;
}

.goods-item .thumb .low-storage-tag {
  background-color: #b0b0b0;
}

.goods-item .thumb .virtual-tag {
  background-color: #c80813;
}

.goods-item .info {
  line-height: 1.5;
  display: flex;
  flex-direction: row;
}

.goods-item .info-wrap {
  width: 380rpx;
  padding-left: 20rpx;
}

.goods-item .info-wrap .name {
  line-height: 1.4;
  direction: flex;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 20rpx;
}

.goods-item .info-wrap .color-size {
  padding: 10rpx 0;
  line-height: 1.3;
  color: #b0b0b0;
  font-size: 24rpx;
}

.goods-item .info-wrap .sale-price {
  color: #d0021b;
  margin-right: 10rpx;
}

.goods-item .info-wrap .mark-price {
  color: #b0b0b0;
  margin-right: 10rpx;
  text-decoration: line-through;
}

.goods-item .info-wrap .vip-price-tig {
  height: 28rpx;
  line-height: 28rpx;
  padding: 0 14rpx;
  border-radius: 16rpx;
  font-size: 22rpx;
  color: #fff;
  background-color: #d0021b;
}


.goods-item .buy-num {
  padding-top: 20rpx;
  line-height: 1.4;
  color: #b0b0b0;
  position: absolute;
  right: 30rpx;
}