.x-scroll--mini{
  &::-webkit-scrollbar{
    width: 4px;
    height: 4px;
  }
  &::-webkit-scrollbar-thumb{
    border-radius: 2px;
    background-color: var(--color-grey-4);
    cursor: pointer;
  }
  &:hover::-webkit-scrollbar-thumb{
    background-color: var(--color-grey-6);
  }
}
.x-scroll{
  &::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }
  // 滚动条轨道
  &::-webkit-scrollbar-track{
    border-radius: 2px;
    background-color: var(--color-grey-2);
  }
  // 滚动条滑块
  &::-webkit-scrollbar-thumb{
    border-radius: 4px;
    background-color: var(--color-grey-4);
    cursor: pointer;
  }
  &:hover::-webkit-scrollbar-thumb{
    background-color: var(--color-grey-6);
  }
}
