/* 完全隐藏所有滚动条 */
* {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
}

/* Chrome, Safari和其他WebKit浏览器 */
::-webkit-scrollbar {
    display: none !important;
}

/* 保证内容可滚动 */
html, body, iframe {
    overflow: auto !important;
} 