/* 全站隐藏滚动条（方案 169 用户要求）：保留滚动能力。
   独立静态文件：Lightning CSS 会在构建时剥离 scrollbar-width 声明，故绕过编译管线。 */
* {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
