闫增涛
2024-03-20 ecbc81c918a288dc752b1634b3f545f795d992aa
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
page {
  background-color: #F2F3F8;
  box-sizing: border-box;
}
 
.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;
}
 
.t-tabs__content {
  background: #fff !important;
  margin-top: -30rpx;
  padding-top: 30rpx;
}
 
.listBox {
  display: flex;
  flex-flow: row wrap;
  padding: 30rpx 0;
}
 
 
.content-item {
  width: calc(100%/3 - 40rpx);
  margin-bottom: 30rpx;
  margin: 0 20rpx;
  align-self: stretch;
  position: relative;
}
 
.content-item .icon {
  height: 300rpx;
  width: 210rpx;
  box-shadow: 0px 0px 20rpx 2px rgba(0, 0, 0, 0.16);
}
 
.content-item .icon .t-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
 
.body-info {
  padding: 20rpx 0;
}
 
.body-info .name {
  font-size: 32rpx;
  height: 88rpx;
  color: #333333;
  font-weight: bold;
  line-height: 44rpx;
  display: -webkit-box;
  margin-bottom: 10rpx;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.body-info .author {
  height: 30rpx;
  color: #333333;
  line-height: 30rpx;
  display: -webkit-box;
  margin-bottom: 10rpx;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.currentBtn {
  position: absolute;
  top: 10rpx;
  right: 10rpx;
  background: #FF6C00;
  border-radius: 8rpx;
  padding: 6rpx;
  width: 36rpx;
  height: 36rpx;
}
 
.currentBtn .img {
  width: 100%;
  height: 100%;
}
 
.empyt {
  padding: 200rpx 0;
}