// 滚动条整体样式
::-webkit-scrollbar {
background: #1c232d !important;
width: 14px;
height: 14px;
}
// 可拖动部分的样式
::-webkit-scrollbar-thumb {
background-color: #374050 !important;
border: 4px solid #1c232d !important;
border-radius: 9px !important;
}
// 轨道样式
::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece {
background: #1c232d !important;
}
// 交叉点样式(右下角)
::-webkit-scrollbar-corner {
background: #1c232d !important;
}