litian
2024-06-28 75a9abca4f4cf0ebe579705abc369489cfe20e7c
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
161
162
163
164
165
166
167
168
169
170
171
172
173
/* pages/digitalCourses/index.wxss */
@import "./index.skeleton.wxss";
 
image {
  width: 100%;
  height: 100%;
}
 
 
.nacigationBar {
  display: flex;
  align-items: center;
  --td-search-font-size: 28rpx;
  margin-bottom: 30rpx;
}
 
 
.nacigationBar .t-icon-base {
  font-size: 38rpx;
}
 
 
.custom-tabs {
  margin-bottom: 32rpx;
}
 
.custom-panel {
  /* height: ; */
  height: calc(100vh - 300rpx);
  color: var(--td-text-color-primary);
}
 
.t-tabs .t-tabs__track {
  display: none;
}
 
.t-tabs__item--active {
  color: #FF6C00 !important;
}
 
.t-tabs__track {
  background-color: #FF6C00 !important;
}
 
.t-tabs .t-tabs__item--active {
  background-repeat: no-repeat;
  /* background-size: 100% 100%;
  background-position: 100% 100%; */
  background-image: url(https://jsek.bnuic.com/home/image/click-icon.png);
  background-position: 85% center;
  background-size: 20% 50%;
  /* 将背景图片位置设置为靠右 */
}
 
.contentBox {
  width: 100%;
  height: 100%;
  background-color: #f2f3f7;
}
 
.titleBox {
  display: flex;
  align-items: center;
  margin-left: 0;
  padding-top: 30rpx;
}
 
.frameBox {
  width: 7rpx;
  height: 54rpx;
  background: #FF6C00;
  border-radius: 0rpx 9rpx 9rpx 0rpx;
}
 
.titleTextBox {
  margin-left: 10px;
  width: 180rpx;
  height: 36rpx;
  /*宽 3.7   高1 */
}
 
.titleTextBox image {
  width: 100%;
  height: 100%;
  image-rendering: -webkit-optimize-contrast;
}
 
.informationBox {
  width: calc(100%/2 - 15rpx);
  min-height: 450rpx;
  overflow: hidden;
  border-radius: 9rpx 9rpx 9rpx 9rpx;
  background-color: #fff;
  margin-bottom: 40rpx;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}
 
.book-img {
  width: 100%;
  height: 194rpx;
  margin: 0 auto;
  /* box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16); */
}
 
.book-Info {
  padding: 20rpx;
}
 
.book-name {
  color: #333;
  font-size: 28rpx;
  font-weight: 700;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
 
}
 
.author {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20rpx;
  font-weight: bold;
  font-weight: 400;
  font-size: 25rpx;
  color: #333333;
}
 
.money {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #ff6c00;
}
 
.ExternalInformationBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 25rpx;
  margin-top: 40rpx;
}
 
.noDataBox {
  width: 100%;
  /* margin-top: 200rpx; */
  height: 620rpx;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.viewCount {
  margin: 16rpx 0;
  font-weight: 400;
  font-size: 22rpx;
  color: #AEAFC0;
}
 
.outsideContentBox {
  /* padding: 30rpx; */
  background: #F2F3F8;
  border-radius: 18rpx 18rpx 18rpx 18rpx;
  /* padding-bottom: 325rpx; */
  height: calc(100vh - 450rpx);
 
  /* width: calc(100vw - 60rpx); */
 
}