shoppingCartFooterView.wxss
1.48 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
.shoppingCartFooterContainer {
position: fixed;
background-color:white;
width:100%;
height:64px;
display:flex;
flex-direction:row;
justify-content: space-between;
z-index: 99;
bottom: 0px;
align-items: center;
}
.selectAllContainer {
display:flex;
flex-direction:column;
}
.selectAllText {
height: 11.5px;
font-family: PingFang-SC;
font-size: 12px;
line-height: 1.67;
color: #444444;
margin-left: 15px;
margin-top: 3px;
}
.settlementContainer {
display:flex;
flex-direction:row;
align-items: center;
margin-top: 15px;
margin-bottom: 12px;
justify-content: flex-end;
width: 85%;
}
.totalCostContainer {
display:flex;
flex-direction:column;
align-items: flex-end;
}
.totalCostText {
height: 16.5px;
font-family: PingFang-SC;
font-size: 17px;
line-height: 1.18;
color: #d0021b;
}
.freightTipText {
height: 11.5px;
font-family: PingFang-SC;
font-size: 12px;
line-height: 1.67;
color: #b0b0b0;
}
.paymentContainer{
width: 84px;
height: 44px;
border-radius: 3px;
background-color: #d0021b;
text-align: center;
margin-right: 14px;
margin-left: 12px;
}
.paymentText{
font-family: PingFang-SC;
font-size: 14px;
color: #ffffff;
line-height: 44px;
}
.moveToFavContainer {
width: 84px;
height: 44px;
border-radius: 3px;
background-color: black;
text-align: center;
margin-right: 14px;
}
.deleteContainer {
width: 84px;
height: 44px;
border-radius: 3px;
background-color: #d0021b;
text-align: center;
margin-right: 14px;
}