/* // 滚动条样式 */
.box {
max-height: 100%;
overflow-y: auto;
}
.box::-webkit-scrollbar-track-piece {
/* //滚动条凹槽的颜色,还可以设置边框属性 */
background-color: #f8f8f8;
}
.box::-webkit-scrollbar {
/* //滚动条的宽度 */
3px;
}
.box::-webkit-scrollbar-thumb {
/* //滚动条的设置 */
border-radius: 8px;
background-color: #ccc;
background-clip: padding-box;
}
.box::-webkit-scrollbar-thumb:hover {
background-color: #606266;
}