@charset "utf-8";
/* CSS Document */
::-webkit-scrollbar-track-piece {  /*滚动条里面轨道*/
    background-color:#f8f8f8;  
  
}  
::-webkit-scrollbar {  /*滚动条整体样式*/
    width:5px;   /*高宽分别对应横竖滚动条的尺寸*/
    height:15px;  
}  
::-webkit-scrollbar-thumb {  /*滚动条里面小方块*/
    background-color:#003150;  
    background-clip:padding-box;  
    
}  
::-webkit-scrollbar-thumb:hover {  
    background-color:#bbbbbb;  
}  
