/* 全局滚动条：宽度 5px，颜色保持浏览器默认 */
html {
    scrollbar-width: thin;
    scrollbar-color: auto;
}

* {
    scrollbar-width: thin;
    scrollbar-color: auto;
}

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
