/*滚动条样式*/
::-webkit-scrollbar {
width:5px;
height: 8px;
background:#fff;
}
::-webkit-scrollbar-button {
background-color:transparent;
}
::-webkit-scrollbar-track {
background:transparent;
}
::-webkit-scrollbar-thumb{/*滚动条颜色*/
background:#c2c6cc;
border-radius:5px;
}
::-webkit-scrollbar-corner {
background:transparent;
}
::-webkit-scrollbar-resizer {
background:#2d8cf0;
}