@charset "utf-8";
/* CSS Document */

::-webkit-scrollbar {  /* 滚动条整体部分 */
          width:4px;
          margin-right:2px;
		
      } 
      ::-webkit-scrollbar-button { /* 滚动条两端的按钮 */
              
          background-color:#F5F5F5;
		  height:2px; 
		 
      }
      ::-webkit-scrollbar:horizontal {
          height:10px;
          margin-bottom:2px;
		  
      }
      ::-webkit-scrollbar-track {  /* 外层轨道 */
          border-radius: 8px;
		  
      }
      ::-webkit-scrollbar-track-piece {  /*内层轨道，滚动条中间部分 */
          background-color:#F5F5F5;
          border-radius:8px;
		  height:192px;
      }
      ::-webkit-scrollbar-thumb {  /* 滑块 */
          width:6px;
          border-radius: 8px;
          background: #666666;
		 
		
      }
      ::-webkit-scrollbar-corner { /* 边角 */
          width: 10px;
          background-color: red;
		
      }
      ::-webkit-scrollbar-thumb:hover { /* 鼠标移入滑块 */
          background:#1d0f0b;
		  opacity:0.5;
      }

