横滚动条: 
&::-webkit-scrollbar-track { 
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); 
    background-color: $light; 
    border-radius: 5px; 
} 
 
&::-webkit-scrollbar { 
    height: 5px; 
    background-color: $light; 
} 
 
&::-webkit-scrollbar-thumb { 
    background-color: $gray-500; 
    border-radius: 5px; 
    background-image: -webkit-linear-gradient(45deg, rgba(0, 0, 0, .3) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .3) 75%, transparent 75%, transparent) 
} 
 
 
竖滚动条: 
&::-webkit-scrollbar-track { 
    box-shadow: inset 0 0 6px rgba($color: $fst, $alpha: 0.5); 
    background-color: rgba($color: $fst, $alpha: 0.1); 
    border-radius: 5px; 
} 
 
&::-webkit-scrollbar { 
    width: 10px; 
    background-color: rgba($color: $fst, $alpha: 0.1); 
} 
 
&::-webkit-scrollbar-thumb { 
    background-color: $gray-500; 
    border-radius: 5px; 
    background-image: -webkit-linear-gradient(45deg, rgba(0, 0, 0, .3) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .3) 75%, transparent 75%, transparent) 
} 
 |