// 容器滚动条样式
@mixin hybridcloud-scrollbar {
  &::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }
  &::-webkit-scrollbar-thumb {
    border-color: transparent;
    border-style: solid;
    border-width: 4px;
    background-clip: content-box;
    border-radius: 6px;
    background-color: var(--scrollbar-thumb-bg);
    &:hover {
      border-width: 3px;
      background-color: var(--scrollbar-thumb-hover-bg); 
    }
  }
  &::-webkit-scrollbar-track {
    background-color: transparent;
  }
}