productListCell.wxss
997 Bytes
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
59
60
61
62
/* 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;
}