﻿/* 宽度 */
::-webkit-scrollbar {
    width: 8px;
    border-radius: 6px;
}
/* 背景色 */
::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 6px;
}
/* 滑块颜色 */
::-webkit-scrollbar-thumb {
    background-color: #d4d4d4;
    border-radius: 6px;
}
/* 水平滚动条样式 */
/* 高度 */
::-webkit-scrollbar {
    height: 8px;
    border-radius: 3px;
}
/* 背景色 */
::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 6px;
}

/* 滑块颜色 */
::-webkit-scrollbar-thumb {
    background-color: #d4d4d4;
    border-radius: 6px;
}