复制代码
.w11-con-right-con::-webkit-scrollbar-track { /* 定义滚动条轨道  内阴影+圆角*/
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #f5f5f5;
}

.w11-con-right-con::-webkit-scrollbar { /*滚动条整体样式*/
  width: 5px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.w11-con-right-con::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #6cda98;
}
复制代码

类选择器 .w11-con-right-con 换成要改变滚动条样式区域的类名