
/* DaySiUI 隐藏滚动条类 */
.custom-scrollbar-hide {
    /* 1. 兼容 Firefox：直接隐藏滚动条 */
    scrollbar-width: none;
    /* 2. 兼容 IE/Edge 旧版 */
    -ms-overflow-style: none;
}

/* 3. Webkit 内核（Chrome/Safari/Edge 12+）：必须单独写，不能嵌套 */
.custom-scrollbar-hide::-webkit-scrollbar {
    width: 0 !important; /* 纵向滚动条宽度 */
    height: 0 !important; /* 横向滚动条高度 */
    display: none !important; /* 额外保险：直接隐藏 */
}

/* 可选：清除轨道样式，防止残留 */
.custom-scrollbar-hide::-webkit-scrollbar-track {
    background: transparent !important;
}

/* 可选：清除滑块样式 */
.custom-scrollbar-hide::-webkit-scrollbar-thumb {
    background: transparent !important;
}

