@charset "UTF-8";
/* scrollbar.scss */
/* =========================================
   Custom Scrollbar System (跨瀏覽器通用版)
   ========================================= */
.scrollbar-style01 {
  /* 2. Webkit 核心屬性 (Chrome, Edge, Safari) */
}
.scrollbar-style01::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}
.scrollbar-style01 {
  /* 設定滾動條的「軌道」 (Track) */
}
.scrollbar-style01::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0px;
  margin-block: 4px;
}
.scrollbar-style01 {
  /* 設定滾動條的「滑塊」 (Thumb) */
}
.scrollbar-style01::-webkit-scrollbar-thumb {
  background-color: #00bbff;
  border-radius: 0px;
  border: 1px solid transparent;
  background-clip: content-box;
}
.scrollbar-style01::-webkit-scrollbar-thumb:hover {
  background-color: #008cff;
  border: 1px solid transparent;
}
.scrollbar-style01::-webkit-scrollbar-thumb:active {
  background-color: #008cff;
}

.scrollbar-style01-inner {
  width: inherit;
  height: -moz-fit-content;
  height: fit-content;
}/*# sourceMappingURL=scrollbar.css.map */