html,
body {
  overflow-y: auto;
}

/* 全局滚动条 - 必生效版 */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: transparent !important;
}
::-webkit-scrollbar-thumb {
  background: #6d28d9 !important;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8b5cf6;
}

/* 火狐兼容 */
* {
  scrollbar-width: thin;
  scrollbar-color: #6d28d9 transparent;
}