
回复
// 溢出隐藏滚动
overflow-x: hidden;
overflow-y: auto;
// 设置滚动条样式
&::-webkit-scrollbar {
width: 1px;
}
&::-webkit-scrollbar-thumb {
border-radius: 10px;
background: #b3b3b3;
}
&::-webkit-scrollbar-track {
border-radius: 10px;
background: #ebeaea;
}