zhongshujie
13 小时以前 c0ff00c32bca4077b140d0d69b2863851ae31273
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
147
148
149
150
151
152
153
154
/* pages/index/scanResult/index.wxss */
.content {
  width: 100vw;
  height: calc(100vh - env(safe-area-inset-bottom));
  overflow: auto;
}
 
.empyt {
  width: 100vw;
  height: calc(100vh - env(safe-area-inset-bottom));
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 200rpx;
  margin: auto;
  box-sizing: border-box;
}
 
.text {
  padding: 10rpx 20rpx;
  box-sizing: border-box;
  font-size: 28rpx;
  line-height: 50rpx;
}
 
.button-example {
  width: 100%;
  padding: 20rpx;
  box-sizing: border-box;
}
 
.button-example:not(:last-child) {
  margin-bottom: 32rpx;
}
 
 
 
.coupon {
  width: 650rpx;
  height: 180rpx;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f0434304;
  margin-bottom: 20px;
  position: relative;
}
 
.couponIcon {
  position: absolute;
  left: 0;
  top: 0;
  width: 650rpx;
  height: 180rpx;
}
 
.price {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36rpx;
  color: #f04343;
  border-right: 1px dashed #e95c5cc7;
  padding-left: 20rpx;
  box-sizing: border-box;
}
 
.timer {
  font-size: 26rpx;
}
 
.couponInfo {
  width: 60%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  padding-left: 20rpx;
  box-sizing: border-box;
  font-size: 30rpx;
  color: #f04343;
}
 
.couponIcon {
  max-width: 100%;
  height: 100%;
}
 
.productWall,
.couponWall {
  max-height: 600rpx;
  overflow-y: auto;
  padding: 0 12rpx;
  box-sizing: border-box;
}
 
.productWall {
  height: 400rpx;
}
 
.selectCard {
  border-top: 1rpx solid #eee;
  border-bottom: 1rpx solid #eee;
}
 
.product {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20rpx;
  box-sizing: border-box;
}
 
.icon {
  width: 250rpx;
  height: 200rpx;
  border: 1rpx solid #eee;
}
 
.productInfo {
  min-height: 200rpx;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 20rpx;
}
 
.publicCss {
  font-size: 28rpx;
  padding: 10rpx 0;
}
 
.type-box {
  font-size: 24rpx;
  color: #FF6C00;
  background: rgba(255, 108, 0, 0.24);
  padding: 6rpx 12rpx;
  border-radius: 9rpx;
}
 
.explain {
  font-size: 28rpx;
  line-height: 44rpx;
  padding: 40rpx;
}
 
.center {
  margin-top: 10rpx;
}