litian
2024-08-30 122ca12cbb46a7fe9fc3489ad8310a6f3991fcfb
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
/* packageBookService/pages/components/webView/index.wxss */
.page-body {
  width: 100vw;
  height: calc(100vh - env(safe-area-inset-bottom));
  overflow: hidden;
}
 
.pdfBox {
  box-sizing: border-box;
  height: calc(100vh - env(safe-area-inset-bottom));
  overflow-y: auto;
}
 
.pdfItem {
  text-align: center;
}
 
.pdfItem image {
  height: 1000rpx !important;
}
 
.body-loading {
  padding: 200rpx 0;
  text-align: center;
}