/* 顶部品牌栏固定在视口顶部，页面滚动时保持可见。 */
body {
  padding-top: 68px;
}

.appbar {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 10;
}

/* 后台「顶部 Logo 区」开关：关闭时隐藏整个顶栏（含品牌与搜索入口）。
   由 /public/app.js 的 applySiteConfig() 依据 /api/v1/home 的 logoEnabled 切换 body.logo-off。 */
body.logo-off .appbar {
  display: none;
}

body.logo-off {
  padding-top: 0;
}
