.vui-scrollbar_v1 {
  --vui-scrollbar_v1-opacity: .3;
  --vui-scrollbar_v1-background-color: #909399;
  --vui-scrollbar_v1-hover-opacity: .5;
  --vui-scrollbar_v1-hover-background-color: #909399;
  overflow: hidden;
  position: relative;
  height: 100%
}

.vui-scrollbar_v1__wrap {
  overflow: auto;
  height: 100%
}

.vui-scrollbar_v1__wrap--hidden-default {
  scrollbar-width: none
}

.vui-scrollbar_v1__wrap--hidden-default::-webkit-scrollbar {
  display: none
}

.vui-scrollbar_v1__thumb {
  position: relative;
  display: block;
  width: 0;
  height: 0;
  cursor: pointer;
  border-radius: inherit;
  background-color: var(--vui-scrollbar_v1-background-color, #909399);
  transition: var(--vui-transition-duration) background-color;
  opacity: var(--vui-scrollbar_v1-opacity, .3)
}

.vui-scrollbar_v1__thumb:hover {
  background-color: var(--vui-scrollbar_v1-hover-background-color, #909399);
  opacity: var(--vui-scrollbar_v1-hover-opacity, .5)
}

.vui-scrollbar_v1__bar {
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
  border-radius: 4px
}

.vui-scrollbar_v1__bar.is-vertical {
  width: 6px;
  top: 2px
}

.vui-scrollbar_v1__bar.is-vertical>div {
  width: 100%
}

.vui-scrollbar_v1__bar.is-horizontal {
  height: 6px;
  left: 2px
}

.vui-scrollbar_v1__bar.is-horizontal>div {
  height: 100%
}

.vui-scrollbar_v1-fade-enter-active {
  transition: opacity .34s ease-out
}

.vui-scrollbar_v1-fade-leave-active {
  transition: opacity .12s ease-out
}

.vui-scrollbar_v1-fade-enter-from, .vui-scrollbar_v1-fade-leave-active {
  opacity: 0
}

.vui-scrollbar_v1__view{
  height: 100%;
}
