@charset "utf-8";
::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 5px !important;

    /*高宽分别对应横竖滚动条的尺寸*/
    height: 5px !important;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track{
    border-radius: 10px !important;
    background-color: rgba(0,0,0,0.1) !important;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb{
    border-radius: 10px !important;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3) !important;
    background-color: rgba(0,0,0,0.1) !important;
}
