你可以这样试试
<Scrollbars
autoHide
autoHideTimeout={1000}
autoHideDuration={200}
renderTrackVertical={({style, ...props}) =>
<div {...props} className={s.scrollTrackVertical} style={{...style, backgroundColor: 'blue', right: '2px', bottom: '2px', top: '2px', borderRadius: '3px', width: '5px'}}/>
}
renderThumbVertical={({style, ...props}) =>
<div {...props} className={s.scrollThumbVertical} style={{...style, width: '3px', borderRadius: '4px', boxShadow: '0 2px 4px 0 rgba(0, 0, 0, 0.16)', backgroundColor: '#ffffff'}}/>
}>
</Scrollbars>