/*美化滚动条*/
/*整体部分*/
::-webkit-scrollbar
{
    width: 10px;
    height: 10px;
}
/*滑动轨道*/
::-webkit-scrollbar-track
{
    border-radius: 0px;
    background: none;
}
/*滑块*/
::-webkit-scrollbar-thumb
{
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.5);
    background-color: rgba(226, 226, 226, 0.75)
}
/*滑块效果*/
::-webkit-scrollbar-thumb:hover
{
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.4);
    background-color: rgba(126, 126, 126, 0.4);
}