Sanakey
2020-10-13 245dd6f1b9a206019ba1680b5214d3bbcd870d72
提交 | 用户 | age
492b82 1 /* pages/posterList/posterList.wxss */
S 2 @import "../template/no-more/no-more-template";
3
92f679 4 view {
492b82 5   font-size: 28rpx;
S 6 }
92f679 7
S 8 text {
9   color: inherit;
10 }
11
e26080 12 .navigator-hover {
S 13   background-color: transparent;
14 }
15
92f679 16 .van-nav-bar .van-nav-bar__title {
S 17   font-size: 26rpx;
18 }
19
20 .container {
21   display: flex;
22   background-color: #fff;
23 }
24
492b82 25 .nav-left {
S 26   width: var(--left-sidebar-width);
27   height: 1080rpx;
92f679 28   color: #333;
492b82 29   box-sizing: border-box;
92f679 30   /*border-right: 2rpx solid #ddd;*/
S 31   background-color: #f7f8fa;
492b82 32 }
S 33
92f679 34 .search-bar {
S 35   display: flex;
36   flex-direction: row;
37   /* background-color: #229bc9; */
38   background-color: #fff;
39   /*position: fixed;*/
40   /*left: 0;*/
41   /*right: 0;*/
42   /*top: 0;*/
43   /*z-index: 100;*/
44   height: 40px;
45 }
46
47 .search-box {
48   flex: 1;
49 }
50
51 .search-input {
52   box-sizing: border-box;
53   height: 30px;
54   line-height: 30px;
55   background: #f1f1f1;
56   border-radius: 30rpx;
57   color: #333;
58   margin: 5px;
59   padding: 0 10rpx;
60 }
61
62 .search-input icon, .search-input text {
63   margin-left: 16rpx;
64   font-size: 26rpx;
65 }
66
67 .has-footer {
68   /*padding-bottom: 100rpx;*/
69   margin-bottom: 0;
70 }
71
72 .cart-footer {
73   position: fixed;
74   bottom: 10rpx;
75   left: 0;
76   right: 0;
77   height: 80rpx;
78   background-color: transparent;
79   padding: 10rpx 30rpx;
80   z-index: 1000;
81 }
82
83 .card-container .van-card {
84   background-color: #fff;
85 }
86
87 .cart-bar {
88   height: 80rpx;
89   display: flex;
90   border-radius: 80rpx;
91   background-color: #fafafa;
92   box-shadow: 0rpx 0rpx 12rpx #ccc;
93   justify-content: space-between;
94 }
95
96 .cart-icon {
97   width: 128rpx;
492b82 98   position: absolute;
92f679 99   z-index: 10;
S 100   bottom: 5rpx;
101   left: 40rpx;
102 }
103
104 .cart-btn {
105   padding: 0 40rpx;
106   border-radius: 0 80rpx 80rpx 0;
107   background-color: #fe3c20;
108   color: #fff;
109   font-size: 32rpx;
110   line-height: 80rpx;
111 }
112
113 .cart-icon-container {
114   width: 180rpx;
115   position: relative;
116 }
117
118 .cart-info {
119   flex: 1;
120 }
121
122 .dot {
123   position: absolute;
124   right: 10rpx;
125   top: 40rpx;
126   background-color: #fe3c20;
127   color: #fff;
128   border-radius: 50rpx;
129   padding: 0 10rpx;
130 }
131
132 .price {
133   color: #fe3c20;
134 }
135
136 .dialog .card-container {
245dd6 137   height: 550rpx;
92f679 138   overflow: auto;
S 139   /*padding-bottom: 120rpx;*/
140 }
141
142 .dialog-footer {
143   height: 170rpx;
144 }
145
146 .dialog-title {
147   height: 80rpx;
148   line-height: 80rpx;
149   text-align: right;
150 }
151
152 .clear-cart {
153   color: #777;
154   font-size: 26rpx;
155   padding: 0 20rpx;
156   display: inline-block;
157 }
158
159 .delete-item-btn {
160   display: flex;
161   align-items: center;
162   background-color: #fe3c20;
163   color: #fff;
164   font-size: 28rpx;
165   width: 130rpx;
166   height: 100%;
167   text-align: center;
168   justify-content: center;
169 }
170
171 .van-stepper .stepper-plus {
172   background-color: #fe3c20;
173   border-radius: 50%;
174   color: #fff;
175 }
176
177 .van-stepper .stepper-minus {
178   background-color: transparent;
179   border-radius: 50%;
180   color: #fe3c20;
181   border: 1px solid #fe3c20;
182 }
183
184 .van-stepper .stepper-input {
185   background-color: transparent;
186 }
187
188 .van-stepper .stepper-input-hide {
189   display: none;
190 }
191
192 .van-stepper .stepper-input-show {
193   display: inline-block;
194 }
195
196 .add-btn {
197   font-size: 24rpx;
198   background-color: #fe3c20;
199   color: #fff;
200   border-radius: 50%;
201   padding: 15rpx;
202   margin-right: 5rpx;
203 }
204
205 .cart-card-footer {
206   position: relative;
207 }
208
209 .cart-card-footer .van-stepper {
210   top: -25rpx;
211   left: 0;
212   right: 0;
213   position: absolute;
214 }
215
216 .h1-item-title {
217   font-weight: bold;
218 }
219
220 .h1-item-title, .item-title {
221   max-width: 140rpx;
222 }
223
224 .van-sidebar .van-sidebar-item {
225   padding: 30rpx 12rpx;
226 }
227
228 .van-sidebar .item-title {
229   margin-left: 10rpx;
230 }
231
232 .user-center {
233   border-radius: 50rpx;
234   border: 1rpx solid #ddd;
235   padding: 0 10rpx;
236   height: 70rpx;
237   align-items: center;
238   margin-bottom: 10rpx;
239   margin-left: -15rpx;
240 }
241
242 .avatar {
243   width: 60rpx;
244   height: 60rpx;
245   border-radius: 50%;
246 }
247
248 .avatar-icon {
249   font-size: 60rpx;
250   color: #ddd;
251 }
252
253 .avatar-text {
254   margin: 0 8rpx;
255 }
256
257 .van-nav-title {
258   display: flex;
259   justify-content: center;
260   align-items: center;
261 }
262
263 .van-nav-title .search-icon {
264   color: #4397e1;
265   font-size: 32rpx;
266   margin-left: 20rpx;
267 }
268
269 .nav-title {
270   font-size: 28rpx;
271 }
e26080 272
S 273 .origin-price {
274   text-decoration: line-through;
275   color: #999;
276 }
277
278 .now-price {
279   font-size: 28rpx;
280   margin-right: 10rpx;
281   font-weight: bold;
282 }
283
284 .goods-card .card-footer {
285   align-items: center;
286 }
287
245dd6 288 .goods-desc view{
e26080 289   font-size: 26rpx;
S 290 }