cart.wxss
2.3 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
page {
background-color: #f5f9fa;
}
.carts {
padding-bottom: 150rpx;
}
.cartbox {
height: 32rpx;
width: 32rpx;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #000;
overflow: hidden;
margin-right: 24rpx;
position: relative;
}
.cartbox::before {
content: '';
position: absolute;
top: -10rpx;
right: -10rpx;
bottom: -10rpx;
left: -10rpx;
}
.cartbox .icon-duihao-copy {
color: #000;
font-size: 32rpx;
font-weight: 600;
}
.cartitem {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24rpx 32rpx 24rpx 24rpx;
height: 218rpx;
margin-top: 8rpx;
background-color: #fff;
}
.cartimg {
height: 170rpx;
width: 170rpx;
justify-content: center;
align-items: center;
display: flex;
border: 1px solid #eee;
}
.cartimg image {
height: 170rpx;
width: 170rpx;
}
.cartright {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 218rpx;
padding: 0 0 10rpx 0;
flex: 2!important;
margin-left: 32rpx;
}
.cartrightbox {
display: flex;
align-items: center;
justify-content: space-between;
}
.cartname {
font-size: 36rpx;
margin-left: 32rpx;
text-overflow: ellipsis;
margin-top: 32rpx;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
white-space: nowrap;
width: 350rpx;
}
.del {
font-size: 24rpx;
color: #FF87B1;
}
.prices {
font-size: 32rpx;
color: #FF87B1;
margin: 0 0 0 32rpx;
}
.cartstandard {
font-size: 24rpx;
color: #999;
margin: 10rpx 0 10rpx 32rpx;
}
.payfor {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 0 0 33rpx;
font-size: 30rpx;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 999;
background-color: #fff;
}
.paybtn {
padding: 33rpx 0;
text-align: center;
width: 250rpx;
background-color: #FF87B1;
color: #fff;
font-size: 36rpx;
}
.paynum {
font-size: 24rpx;
}
.paybtn:active {
opacity: 0.7;
}
.nodata {
position: fixed;
height: 100%;
width: 100%;
color: #999;
font-size: 40rpx;
display: flex;
justify-content: center;
align-items: center;
}