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
|
| /*每个页面公共css */
| /* 解决小程序和app滚动条的问题 */
| ::-webkit-scrollbar {
| display: none;
| width: 0 !important;
| height: 0 !important;
| -webkit-appearance: none;
| background: transparent;
| color: transparent;
| }
|
|
| /* 解决H5 的问题 */
|
|
|
|
|
|
|
|
|
|
|
| page{--status-bar-height:25px;--top-window-height:0px;--window-top:0px;--window-bottom:0px;--window-left:0px;--window-right:0px;--window-magin:0px}[data-c-h="true"]{display: none !important;}
|
|