item.wxss
1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
.product-item {
display: flex;
flex-direction: column;
margin-top: 65rpx;
}
.product-item .item-detail {
position: relative;
height: 128rpx;
}
.product-item .item-price {
position: absolute;
bottom: 0;
font-family: PingFang-SC-Regular, sans-serif;
font-size: 24rpx;
color: #444;
width: 322rpx;
max-width: 322rpx;
letter-spacing: 0.28rpx;
}
.item-price .price {
display: inline-block;
}
.price1.before-market-price {
color: #d0021b !important;
}
.product-item .item-price .price2 {
color: #b0b0b0;
margin-left: 10rpx;
text-decoration: line-through;
}
.product-item .item-image {
width: 322rpx;
height: 430rpx;
}
.product-item .item-title {
font-family: PingFang-SC-Regular, sans-serif;
font-size: 24rpx;
color: #444;
width: 322rpx;
max-width: 322rpx;
line-height: 1.3;
letter-spacing: 0.28px;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
white-space: pre-wrap;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
margin: 20rpx 0;
}