闫增涛
2025-03-31 04c7b0163caeae4ab1c5da62e301fa993101cfad
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
/* pages/index/scanResult/selectPage/index.wxss */
.container {
  width: 100vw;
  height: 100%;
  position: relative;
}
 
 
.refresh-container {
  display: block;
  width: 100vw;
}
 
.loading {
  display: block;
  width: 100%;
  height: 180rpx;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.bottom-loading {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100rpx;
}
 
.content {
  height: calc(100vh - env(safe-area-inset-bottom) - 100rpx);
  box-sizing: border-box;
}
 
.empyt {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20rpx;
  margin: auto;
  box-sizing: border-box;
}
 
.oldPrice {
  text-decoration: line-through;
  font-size: 20rpx;
  color: #999;
}
 
.price {
  color: red !important;
}
 
.freePrice {
  color: rgb(49, 231, 43) !important;
  font-size: 26rpx;
}
 
.card {
  position: relative;
  margin: 32rpx;
  border-radius: 12rpx;
  overflow: hidden;
  box-sizing: border-box;
  border: 3rpx solid #eee;
}
 
.card--active {
  border-color: #0052d9;
}
 
.card--active::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  border: 14px solid #0052d9;
  border-bottom-color: transparent;
  border-right-color: transparent;
}
 
.card__icon {
  color: #fff;
  position: absolute;
  left: 1.5px;
  top: 1.5px;
  z-index: 1;
}
 
.iconStyle {
  width: 100%;
}
 
.select_tabbar {
  width: 100vw;
  height: 100rpx;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24rpx;
  position: fixed;
  left: 0;
  bottom: 0;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1rpx solid #eee;
}
 
.select_tabbar .cssPublic {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.select_tabbar .tabItams {
  font-size: 28rpx;
  margin-left: 30rpx;
}
 
.select_tabbar .activeCode {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200rpx;
  height: 100rpx;
  background-color: #d54941;
  color: #fff;
  font-size: 28rpx;
}
 
.t-back-top--fixed {
  bottom: 15vh !important;
}