/**
 * page-top-spacing.css — 页面顶部间距公共组件
 *
 * 设计（2026-08-28）：
 * - 收紧固定导航（header.header，高 64px）与首屏内容条（面包屑+内联搜索框）
 *   之间的间距，用户反馈"距离顶部导航太远"。
 * - 原状：base-main.min.css / pc-main.min.css 的
 *   `body:not(.home-page) .breadcrumb-row,...{margin-top:12px !important}`
 *   + includes/search_box.php 的 `.breadcrumb-row{padding:14px 20px}`
 *   → 导航底部到面包屑文字实际空隙 26px。
 * - 现状：margin-top 0 + padding 10px 20px → 空隙 10px。
 *
 * 注意：本文件经 _footer_content.php 全站最后加载，body 前缀 + !important
 *       压过上述两条规则。列表页（rent/sale 等）的 .breadcrumb-row 同步收紧，
 *       保持全站一致；移动端 .breadcrumb-row 多为隐藏或另有布局，不受影响。
 */

body .breadcrumb-row,
body:not(.home-page) .breadcrumb-row {
  margin-top: 0 !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
