| 1234567891011121314151617181920 |
- /* 全局隐藏滚动条 */
- ::-webkit-scrollbar {
- display: none !important;
- width: 0 !important;
- height: 0 !important;
- -webkit-appearance: none;
- background: transparent;
- }
-
- /* 全局基础样式,使用标准CSS */
- page {
- background-color: #F5F7FA;
- font-size: 28rpx;
- color: #333;
- }
- view, text, scroll-view {
- box-sizing: border-box;
- }
- 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;}
|