/* 滚动条背景色 */
::-webkit-scrollbar-track {
border-top-right-radius: 10px;
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
background: #efefef;
}
/* 默认滚动条色 */
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: #99abd2;
}
::-webkit-scrollbar-thumb:window-inactive {
background-color: #99abd2;
}
/* 鼠标经过滚动条颜色 */
::-webkit-scrollbar-thumb:vertical:hover {
background-color: #99abd2;
}
/* 鼠标按下滚动条颜色 */
::-webkit-scrollbar-thumb:vertical:active {
background-color: #99abd2;
}