/* 滚动条默认样式修改 */
.scrollbar::-webkit-scrollbar {
width: 8px;
height:8px;
}
.scrollbar::-webkit-scrollbar-track {
background: #f7f7f7;
border-radius: 5px;
}
.scrollbar::-webkit-scrollbar-thumb {
background: #c8c8d0;
border-radius: 5px;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
background: #ababb3;
}