yiming
2024-06-04 1fa826006ce5458722eb68bdbd814b08bd6baad3
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
174
175
176
177
178
179
180
181
182
183
184
185
186
/* pages/digitalTextbooks/index.wxss */
 
.nacigationBar {
  display: flex;
  align-items: center;
  --td-search-font-size: 28rpx;
  margin-bottom: 30rpx;
}
 
 
.nacigationBar .t-icon-base {
  font-size: 38rpx;
}
 
.t-search__input-box {
  height: var(--td-search-height, 70rpx) !important;
}
 
.t-icon {
  font-family: t !important;
}
 
 
 
 
 
.tabBox {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 750rpx;
  overflow-x: auto;
  /* 添加水平滚动条 */
  white-space: nowrap;
  /* 保持子元素在一行显示 */
 
}
 
.tabBox .nameBox {
  color: #FF6C00;
  height: 70rpx;
  /* border-bottom: 1px solid #FF6C00; */
}
 
.bottomLineBox {
  height: 5rpx;
  width: 50rpx;
  background-color: #FF6C00;
  margin: 0 auto;
}
 
.contentBox {
  background-color: #F2F3F8;
  height: 100%;
  margin-top: 268rpx;
}
 
.titleBox {
  display: flex;
  align-items: center;
  margin: 10px;
  margin-left: 0;
  padding-top: 30rpx;
}
 
.frameBox {
  width: 7rpx;
  height: 54rpx;
  background: #FF6C00;
  border-radius: 0rpx 9rpx 9rpx 0rpx;
}
 
.titleTextBox {
  margin-left: 15px;
  min-width: 180rpx;
  min-height: 36rpx;
  /*宽 3.7   高1 */
}
 
.titleTextBox image {
  width: 100%;
  height: 100%;
  image-rendering: -webkit-optimize-contrast;
}
 
.bookContentBox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20rpx;
}
 
.external {
  width: 300rpx;
  min-height: 520rpx;
  background-color: #fff;
  margin: 30rpx 10rpx;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  padding: 15rpx;
}
 
.imageBox {
  width: 210rpx;
  height: 290rpx;
  margin: 30rpx auto;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
}
 
image {
  width: 100%;
  height: 100%;
}
 
.amountClick {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-size: 30rpx;
 
}
 
.information {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 20rpx;
}
 
.bookName {
  margin: 0 20rpx;
  height: 75rpx;
  color: #333;
  width: 100%;
  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;
}
 
.book-author {
  color: #333;
  margin: 16rpx 0;
  font-size: 24rpx;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
 
.price {
  color: #FF6C00;
  margin: 16rpx 0;
  font-size: 24rpx;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
 
.noData {
  margin: 0 auto;
  margin-top: 100rpx;
}
 
/* 固定在顶部的盒子样式 */
.fixed-header {
  position: fixed;
  /* 固定定位 */
  top: 0;
  /* 距离顶部0px */
  left: 0;
  /* 距离左侧0px */
  width: 100%;
  /* 宽度为100%,可根据需要调整 */
  background-color: #ffffff;
  /* 背景颜色,可根据需要调整 */
  z-index: 999;
  /* 确保盒子在页面其他元素的上方 */
  /* 其他样式,如padding、box-shadow等 */
}