| 1234567891011121314151617181920212223 |
- /* 全局样式:强制隐藏所有页面的系统滚动条,提升沉浸式体验 */
- /* 针对页面根节点、普通视图和滚动容器 */
- page, view, scroll-view {
- -ms-overflow-style: none;
- /* IE and Edge */
- scrollbar-width: none;
- /* Firefox */
- }
- page::-webkit-scrollbar, view::-webkit-scrollbar, scroll-view::-webkit-scrollbar {
- display: none !important;
- width: 0 !important;
- height: 0 !important;
- -webkit-appearance: none;
- background: transparent;
- color: transparent;
- }
- /* 额外确保在部分环境下彻底移除 */
- ::-webkit-scrollbar {
- display: none !important;
- width: 0 !important;
- height: 0 !important;
- }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;}
|