// 滚动条样式美化（只支持chrome浏览器）
.scrollbar {
  &::-webkit-scrollbar {
    width: 5px;
    /* vertical */
  }

  /* 轨道 */
  &::-webkit-scrollbar-track {
    background-color: transparent;
  }

  /* 滑块 */
  &::-webkit-scrollbar-thumb {
    border-radius   : 5px;
    box-shadow      : inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* 滑块hover */
  &::-webkit-scrollbar-thumb:hover {
    background: rgba(88, 88, 88, 0.2);
  }
}