自定义滚动条
.scroll::-webkit-scrollbar {
width: 5px;
height: 1px;
}
.scroll::-webkit-scrollbar-thumb {
border-radius: 5px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: #8094bb;
}
.scroll::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 5px;
background: #ededed;
}