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
| /* packageBookService/pages/bookServices/detail/components/relatedBooks/index.wxss */
| .fl {
| display: flex;
| flex-wrap: wrap;
| }
|
|
| .ctr {
| justify-content: center;
| }
|
| .reletedBooks {
| padding: 80rpx 40rpx;
| }
|
| .book-box {
| width: 28%;
| margin-bottom: 40rpx;
| margin-right: calc(16vw - 68rpx);
| }
|
| .book-box:nth-child(3n) {
| margin-right: 0;
| }
|
| .book-image {
| width: 180rpx;
| height: 254rpx;
| display: flex;
| align-items: center;
| justify-content: center;
| box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
| }
|
| .book-image image {
| height: 100%;
| }
|
| .book-name {
| margin-top: 20rpx;
| width: 100%;
| word-break: break-all;
| display: -webkit-box;
| -webkit-line-clamp: 2;
| -webkit-box-orient: vertical;
| overflow: hidden;
| color: #333;
| font-weight: bold;
| font-size: 28rpx;
| }
|
| .loading-box {
| margin: 100rpx auto;
| }
|
| .noData {
| margin: 0 auto;
| }
|
|