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
page {
  background-color: #f0f2f5;
  box-sizing: border-box;
  padding: 0 24rpx;
}
 
.t-tabs__track {
  display: none;
}
 
.t-tabs {
  margin-top: 20rpx;
  background: none !important;
}
 
.t-tabs__wrapper {
  background: none !important;
}
 
.t-tabs__nav :nth-child(1) {
  border-radius: 30rpx 30rpx 0 0rpx;
}
 
.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;
}
 
.refresh-container {
  margin: 0 auto;
}
 
.bottom-loading,
.loading {
  padding: 20rpx;
  text-align: center;
}
 
.content {
  height: calc(100vh - env(safe-area-inset-bottom));
  box-sizing: border-box;
}
 
.content-item {
  background: #fff;
}
 
.listBox:nth-child(1) {
  margin-top: -30rpx;
  padding-top: 30rpx;
}
 
.submitBox {
  width: 220rpx;
  height: 80rpx;
  line-height: 80rpx;
  background: #ff6d00;
  color: #fff;
  border-radius: 50rpx 0 0 50rpx;
  position: fixed;
  bottom: 20%;
  right: 0;
}
 
.submitBox .box {
  display: flex;
  margin: 0 auto;
  width: 160rpx;
  align-items: center;
  text-align: center;
  font-size: 28rpx;
}
 
.submitBox .img {
  width: 40rpx;
  height: 40rpx;
  margin-right: 10rpx;
}
 
.empyt {
  padding: 200rpx 0;
}