bug
litian
2024-09-14 4c29b79d485d68d506e798f4fd381232ebc55a86
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
155
156
157
158
159
160
@import "./index.skeleton.wxss";
 
page {
  background-color: #F2F3F8;
}
 
.container {
  width: 100vw;
  height: 100vh;
}
 
.top-content {
  padding: 40rpx;
}
 
.boxStyle {
  border: 2rpx solid #ff6d00;
  background: rgba(255, 108, 0, 0.1);
  font-size: 26rpx;
  color: #9D9D9D;
  padding: 20rpx;
  display: flex;
  justify-content: space-around;
  line-height: 56rpx;
}
 
.box-item {
  text-align: center;
}
 
.result {
  color: #333;
}
 
 
.num {
  font-size: 36rpx;
  color: #ff6d00;
  font-weight: bold;
}
 
.t-tabs__track {
  display: none;
}
 
.t-tabs {
  padding-top: 20rpx;
  background: none !important;
  width: 100%;
  position: fixed;
  top: 0rpx;
  left: 0;
  z-index: 1
}
 
.t-tabs__wrapper {
  background: none !important;
}
 
.t-tabs__nav :nth-child(1) {
  border-radius: 30rpx 30rpx 0 0rpx !important;
}
 
.t-tabs__nav :nth-child(2) {
  border-radius: 0rpx 30rpx 0 30rpx;
}
 
.t-tabs__item {
  flex: 1 !important;
  background: #E6E8F1;
  height: 76rpx !important;
  margin-top: 16rpx;
  border-radius: 30rpx 0 30rpx 0rpx !important;
}
 
.t-tabs__item--active {
  color: #333 !important;
  background: #fff;
  height: 96rpx;
  font-size: 32rpx;
  margin-top: 0;
  height: 96rpx !important;
  border-radius: 30rpx 30rpx 0 0rpx !important;
}
 
.t-tabs__item--active+.t-tabs__item {
  border-radius: 0 30rpx 0 30rpx !important;
}
 
.t-tabs__item--active+.t-tabs__item+.t-tabs__item {
  border-radius: 30rpx 30rpx 0rpx 0rpx !important;
}
 
.refresh-container {
  margin: 0 auto;
}
 
.bottom-loading,
.loading {
  padding: 20rpx;
  text-align: center;
}
 
.empyt {
  padding: 100rpx 0;
}
 
.pageInfo {
  background: #fff;
  margin-top: -30rpx;
  padding: 30rpx;
}
 
.content {
  height: calc(100vh - env(safe-area-inset-bottom) - 456rpx);
  box-sizing: border-box;
}
 
.listBox {
  display: flex;
  flex-flow: row wrap;
  padding-top: 30rpx;
}
 
.content-item,
.class--tem {
  background: #F7F7F7;
  border-radius: 10rpx;
  box-sizing: border-box;
  width: calc(100%/2 - 10rpx);
  margin-right: 20rpx;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30rpx;
  padding: 50rpx 20rpx 40rpx 20rpx;
 
}
 
.content-item:nth-child(2n) {
  margin-right: 0;
}
 
.icon image {
  object-fit: contain;
}
 
.body-info .name {
  height: 80rpx;
  margin-top: 24rpx;
  width: 100%;
  font-size: 30rpx;
  line-height: 40rpx;
  font-weight: 700;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}