shop_cart.wxss
1.9 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
page {
background: #F9F9F9;
padding-bottom: 100rpx;
}
.no_login {
font-size: 36rpx;
font-family: PingFang SC;
font-weight: 400;
color: #ccc;
margin-top: 200rpx;
text-align: center;
}
.content {
width: 100%;
padding: 30rpx 32rpx;
box-sizing: border-box;
background: #f9f9f9;
margin-bottom: 120rpx;
}
.empty {
font-size: 36rpx;
font-family: PingFang SC;
font-weight: 400;
color: #ccc;
margin-top: 200rpx;
text-align: center;
}
.footer {
width: 100%;
height: 100rpx;
padding: 0 32rpx;
box-sizing: border-box;
background: #fff;
position: fixed;
left: 0;
bottom: calc(100rpx + env(safe-area-inset-bottom));
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: rgba(19, 26, 46, 1);
display: flex;
justify-content: space-between;
align-items: center;
}
.footer .check_box {
display: flex;
align-items: center;
}
.footer .check_box .check {
width: 36rpx;
height: 36rpx;
padding: 20rpx 20rpx 20rpx 0;
}
.footer .check_box .text {
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: rgba(19, 26, 46, 1);
}
.tips_info text:first-child {
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 400;
color: rgba(156, 156, 156, 1);
margin-right: 20rpx;
}
.tips_info text:last-child {
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
color: #f20000;
}
.submit {
padding: 14rpx 26rpx 14rpx 40rpx;
background: rgba(242, 0, 0, 1);
border-radius: 34rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
color: rgba(255, 255, 255, 1);
display: flex;
justify-content: center;
align-items: center;
}
.delname {
color: rgba(242, 0, 0, 1);
font-size: 28rpx;
text-align: right;
}
.editname {
color: #333;
font-size: 28rpx;
}
.edittop {
display: flex;
justify-content: space-between;
align-items: center;
padding: 32rpx;
box-sizing: border-box;
}