/*默认滚动条样式*/
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
border: 1px #d3d3d3 solid;
box-shadow: 0px 0px 3px #dfdfdf inset;
border-radius: 10px;
background: #eee;
}
::-webkit-scrollbar-thumb {
border: 1px #808080 solid;
border-radius: 10px;
background: #999;
}
::-webkit-scrollbar-thumb:hover {
background: #7d7d7d;
}