/*整个滚动条*/
::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: #ffffff;
}
/*滑动轨迹*/
::-webkit-scrollbar-track {
background-color: transparent;
}
/*滑动方块*/
::-webkit-scrollbar-thumb {
border-radius: 3px;
background-image: linear-gradient(135deg, #09f, #3c9);
}