shoppingCartGiftOrPriceCell.ttss
1.31 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
64
65
66
67
68
69
70
71
72
73
74
75
.piftOrPriceContainer {
display:flex;
width: 100%;
flex-direction: column;
background-color: white;
}
.piftOrPriceCell {
width: 100%;
display: flex;
flex-direction:row;
height: 90rpx;
align-items: center;
align-content: center;
position: relative;
justify-content: space-between;
}
.piftOrPriceCell .cellContainer {
display: flex;
align-content: center;
align-items: center;
}
.giftOrPriceIcon{
width: 44rpx;
height: 44rpx;
margin-left: 30rpx;
}
.giftOrPriceTitle{
font-family: PingFang SC;
font-size: 32rpx;
color: #444444;
margin-left: 30rpx;
}
.giftOrPriceStatusString {
margin-right: 16rpx;
font-family: PingFang SC;
font-size: 28rpx;
color: #ff575c;
}
.giftOrPriceInvalidStatusString {
margin-right: 63rpx;
font-family: PingFang SC;
font-size: 28rpx;
color: #b0b0b0;
}
.giftOrPriceRightArrow {
margin-right: 30rpx;
width: 30rpx;
height: 30rpx;
}
.bottonGray {
width: 100%;
height: 15rpx;
background-color: #f0f0f0;
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.cellLine {
width: 650rpx;
height: 2rpx;
margin-left: 100rpx;
z-index: 999;
transform: scaleY(0.5);
background-color: #e0e0e0;
}