/* 全站滚动条：保持可见性，减少亮蓝渐变对内容的干扰 */
html {
  scrollbar-color: #aebccc transparent;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border: 1px solid transparent;
  border-radius: 999px;
  background: #aebccc;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
  background: #5b91c7;
  background-clip: padding-box;
}

body.night,
html:has(body.night) {
  scrollbar-color: #59687a transparent;
}

html:has(body.night)::-webkit-scrollbar-thumb {
  background: #59687a;
  background-clip: padding-box;
}

html:has(body.night)::-webkit-scrollbar-thumb:hover,
html:has(body.night)::-webkit-scrollbar-thumb:active {
  background: #7ba9d8;
  background-clip: padding-box;
}
