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
| /* pages/bookExhibitionDetails/index.wxss */
|
| @import "./index.skeleton.wxss";
|
| .nacigationBar {
| background-color: #fff;
| display: flex;
| align-items: center;
| width: 100%;
|
| }
|
| .navbar-title {
| /* white-space: nowrap; */
| /* overflow: hidden; */
| /* text-overflow: ellipsis;
| color: #0F1214;
| font-size: 40rpx;
| font-weight: bold;
| margin-bottom: 5rpx; */
|
|
| /*
| white-space: nowrap;
| overflow: hidden;
| text-overflow: ellipsis;
| color: #0F1214;
| font-size: 40rpx;
| font-weight: bold; */
| margin: 0 auto;
| }
|
| .titleBox {
|
| font-weight: 800;
| font-size: 45rpx;
| display: flex;
| justify-content: center;
| padding: 10rpx 30rpx;
|
| }
|
| .informationBox {
| margin-top: 30rpx;
| display: flex;
| justify-content: space-around;
| padding: 0 50rpx;
| font-size: 25rpx;
| color: #545C63;
| font-weight: 400;
| }
|
| .partingBox {
| width: 750rpx;
| height: 40rpx;
| margin: 30rpx 0;
| }
|
| .bannerBox {
| min-width: 690rpx;
| height: 270rpx;
| margin: 0 30rpx;
|
| }
|
| image {
| width: 100%;
| height: 100%;
| }
|
| .textContent {
| width: 690rpx;
| /* height: 315rpx; */
| padding: 0 30rpx;
| font-size: 25rpx;
| color: #545C63;
| font-weight: 400;
| line-height: 50rpx;
| margin: 20rpx 2rpx;
| }
|
|
| .booksBox {
| width: 330rpx;
| /* height: 430rpx; */
| /* background-color: #8bc34a; */
| margin: 20rpx;
| background: #FFFFFF;
| box-shadow: 0rpx 0rpx 18rpx 2rpx rgba(0, 0, 0, 0.08);
| padding: 10rpx;
| box-sizing: border-box;
| }
|
|
|
| .outsideBooksImageBox {
| background: #F5F5F5;
| width: 100%;
| margin: 0 auto;
| width: 240rpx;
| height: 300rpx;
| margin: 30rpx;
| }
|
| .outsideBooksImageBox image {
| width: 100%;
| height: 100%;
| }
|
| .booksTextBox {
| font-size: 25rpx;
| font-family: PingFang SC, PingFang SC;
| font-weight: bold;
| width: 280rpx;
| margin: 30rpx 25rpx;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
|
| }
|
| .outsideBooksBox {
| display: flex;
| flex-wrap: wrap;
| }
|
| .boosAuthor {
| font-family: PingFang SC, PingFang SC;
| font-weight: 400;
| font-size: 22rpx;
| color: #949494;
| margin: 30rpx 25rpx;
| }
|
| .tltiBox {
| position: fixed;
| top: 0;
| background-color: #fff;
| width: 100%;
| }
|
| .centerBox {
| position: relative;
| }
|
| .outsideHeadBox {
| margin-top: 200rpx;
| }
|
| .bottom-box {
| margin: 0 auto;
| }
|
|