/***********************
模块名：滚动条
作者：rexren（任寒韬）
************************/

/*针对Chrome*/
::-webkit-scrollbar{width:10px;height:10px;background: #f1f1f1;}
::-webkit-scrollbar-button{width:4px;height:4px;}
::-webkit-scrollbar-button:start:decrement,::-webkit-scrollbar-button:end:increment{display:block;}
::-webkit-scrollbar-button:vertical:start:increment,::-webkit-scrollbar-button:vertical:end:decrement {display:none;}
::-webkit-scrollbar-corner{display:block;}
::-webkit-scrollbar-thumb {background-clip:padding-box;background-color: #c0c0c0;border-radius:10px;}
::-webkit-scrollbar-thumb:hover {background-clip:padding-box;background-color: #a8a8a8;border-radius:10px;}
::-webkit-scrollbar-track:hover {background-clip:padding-box;}

