/* 2026.09.03 · khp · 底部导航换 5 个新 3D 图标（v110）
   底部导航=nav.bottom-nav > a（Vue 组件 bootstrap-DnEky_FH.js 渲染），
   按 href 匹配目标页：隐藏原 SVG，锚点挂背景图。
   对应：home=房子 / premium(买车)=货车 / publish(卖车)=盾车¥ / news=文档 / profile(我的)=盾人
   未列入的链接（商家·服务等）保留原 SVG 不受影响。
   回滚：各页 nav110.css 引用删掉即可，图标文件可删可不删。 */
nav.bottom-nav a[href="/index.html"],
nav.bottom-nav a[href$="index.html"],
nav.bottom-nav a[href="/"]{
  background:url("/icons/nav-home-110.png") center 2px/24px 24px no-repeat;
  color:#334155;
}
nav.bottom-nav a[href*="premium.html"]{
  background:url("/icons/nav-buy-110.png") center 2px/26px 24px no-repeat;
  color:#334155;
}
nav.bottom-nav a[href*="publish.html"]{
  background:url("/icons/nav-sell-110.png") center 2px/24px 24px no-repeat;
  color:#334155;
}
nav.bottom-nav a[href*="news.html"]{
  background:url("/icons/nav-news-110.png") center 2px/24px 24px no-repeat;
  color:#334155;
}
nav.bottom-nav a[href*="profile.html"]{
  background:url("/icons/nav-mine-110.png") center 2px/24px 24px no-repeat;
  color:#334155;
}
/* 上述 5 个链接的旧 SVG 图标隐藏（其余链接保留 SVG） */
nav.bottom-nav a[href*="premium.html"] svg,
nav.bottom-nav a[href*="publish.html"] svg,
nav.bottom-nav a[href*="news.html"] svg,
nav.bottom-nav a[href*="profile.html"] svg,
nav.bottom-nav a[href="/"] svg{ display:none; }
