yiming
2024-03-13 f9d4b09377c5471e1202be2fef2c89de27b6654d
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
/* pages/cart/paymentPage/index.wxss */
.nacigationBar {
  background-color: #fff;
  display: flex;
  align-items: center;
 
}
 
.navbar-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #0F1214;
  font-size: 40rpx;
  font-weight: bold;
  margin-bottom: 5rpx;
}
 
.content {
  width: 100%;
  height: 1250rpx;
  background-color: #F2F3F8;
  padding: 40rpx 0;
  padding-top: 1rpx;
}
 
.shoppingCartList {
  min-height: 150rpx;
  background: #FFFFFF;
  border-radius: 20px;
  margin: 30rpx 0;
}
 
image {
  width: 150rpx;
  height: 210rpx;
  margin: 30rpx;
}
 
.cartListContent {
  /* margin: 0 auto; */
}
 
.cartList {
  display: flex;
}
 
.cartListContent {
  margin-top: 30rpx;
}
 
.cartListDetails {
  margin-bottom: 50rpx;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  font-size: 29rpx;
  color: #333333;
}
 
.textBox {
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 25rpx;
  color: #333333;
  /* margin: 10rpx 0; */
  margin-bottom: 20rpx;
}
 
.priceBox {
  font-weight: 500;
  font-size: 31rpx;
  color: #0F1214;
 
}
 
.priceBreakdown {
  height: 280rpx;
  background: #fff;
  padding: 30rpx;
 
}
 
.priceBreakdownContent {
  font-weight: bold;
  font-size: 32rpx;
  color: #0F1214;
  margin-bottom: 50rpx;
}
 
.amountMoney {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 33rpx;
  color: #0F1214;
  border-bottom: 2rpx solid #EDEDED;
  padding-bottom: 38rpx;
}
 
.amount {
  display: flex;
  justify-content: flex-end;
  margin: 30rpx 0;
}
 
 
 
.interval {
  width: 100%;
  height: 30rpx;
  background-color: #F2F3F8;
}
 
.paymentBox {
  /* margin-top: 50rpx; */
  display: flex;
  justify-content: space-between;
  padding: 30rpx;
  align-items: center;
}
 
.residue {
  color: #949494;
}
 
.residueTextBox {
  font-weight: bold;
  font-size: 38rpx;
  color: #FF6C00;
}
 
.buttonBox {
  background-color: #FF6C00;
  border: #fff;
}
 
.myQrcodeBox {
  margin: 30rpx;
}
 
.myQrcodeTextBox {
  text-align: center;
  margin: 30rpx 0;
}