/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/
/* 移动端强制使用原生滚动 */
@media (max-width: 991px) {
    .left-categories {
        overflow-y: auto !important; /* 覆盖插件样式 */
        -webkit-overflow-scrolling: touch; /* 启用 iOS 惯性滚动 */
        scroll-behavior: smooth; /* 可选：启用平滑滚动 */
    }
    
    /* 清除插件生成的容器样式 */
    .mCustomScrollBox,
    .mCSB_container {
        min-height: auto !important;
        height: auto !important;
    }
    
    /* 隐藏滚动条轨道（可选） */
    .left-categories::-webkit-scrollbar {
        width: 0 !important;
        display: none;
    }
}