/**
 * 公众页整页滚动：覆盖 NeoAdmin layout-shell 的 body overflow:hidden。
 * 须在 layout-shell.css 之后加载（见 App.razor）。
 */
html.neo-public-active,
html:has(.neo-public-page),
body.neo-public-active,
body:has(.neo-public-page) {
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.neo-public-active > *,
body:has(.neo-public-page) > * {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}
