productCell.ttss
1.29 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
59
60
61
62
63
.product-cell {
width: 330rpx;
height: 640rpx;
display: flex;
flex-direction: column;
margin-left: 30rpx;
}
.product-cell-image {
width: 330rpx;
height: 440rpx;
margin-top: 54rpx;
}
.product-cell-name {
font-family: PingFang SC Medium;
font-size: 24rpx;
color: #444444;
letter-spacing: 0;
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
align-content: center;
margin-top: 24rpx;
}
.product-cell-sale-price {
font-family: SanFranciscoText Medium;
font-size: 26rpx;
color: #444444;
letter-spacing: 0;
margin-right: 14rpx;
}
.product-cell-sale-price-red {
font-family: SanFranciscoText Medium;
font-size: 26rpx;
color: #D0021B;
letter-spacing: 0;
margin-right: 14rpx;
}
.product-cell-market-price {
font-family: SanFranciscoText Regular;
font-size: 26rpx;
color: #B0B0B0;
letter-spacing: 0;
text-decoration:line-through;
}
.product-cell-price-view {
display: flex;
flex-direction: row;
margin-bottom: 12rpx;
}
.product-cell-bottom-view {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 146rpx;
}