cart.wxss
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@import "./template/cart/goods-pool.wxss";
page {
height: 100%;
color: #444;
}
.empty-cart .empty-img {
display: block;
width: 204rpx;
height: 200rpx;
margin: 300rpx auto 0 auto;
}
.empty-cart .empty-desc {
display: block;
width: 400rpx;
margin: 60rpx auto 0 auto;
color: #444;
font-size: 26rpx;
line-height: 1.4;
text-align: center;
}
.empty-cart .shopping-btn {
width: 360rpx;
padding: 30rpx;
margin: 60rpx auto 0 auto;
color: #fff;
font-size: 28rpx;
text-align: center;
border-radius: 4rpx;
background-color: #444;
}
.tips-wrap {
width: 100%;
font-size: 24rpx;
}
.tips-wrap .hold-text,
.tips-wrap .fixed-top-tips {
padding: 16rpx 30rpx;
line-height: 1.5;
background-color: #f0f0f0;
box-sizing: border-box;
}
.tips-wrap .fixed-top-tips {
width: 100%;
position: fixed;
top: 0;
left: 0;
overflow: hidden;
z-index: 10;
}
.tips-wrap .hold-text,
.tips-wrap .price-down-tips,
.tips-wrap .shipping-cost-tips {
display: inline-block;
max-width: 70%;
vertical-align: middle;
}
.tips-wrap .edit-cart-btn {
height: 60rpx;
line-height: 60rpx;
position: absolute;
top: 50%;
right: 30rpx;
margin-top: -30rpx;
font-family: PingFang-SC-Regular;
color: #d0021b;
}
.split-line {
width: 100%;
height: 20rpx;
background-color: #eee;
}