/* =====================================================================
   footer-legal.css — 页脚深色版权栏「法务链接」(bot-legal-links) 唯一真源
   ---------------------------------------------------------------------
   加载方：site_footer.php（filemtime 版本号，紧跟页脚内联 <style> 之后，
   保证级联顺序在其基础规则之后）。
   统一口径：移动端（≤767px）仅显示 4 个链接：
   关于我们 / 市场报告 / 租金走势 / 隐私政策
   PC 端布局仍由 site_footer.php 内联基础规则（L538-541）控制。
   ===================================================================== */

@media (max-width: 767px) {
  .bot-legal-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px 14px !important;
    margin-bottom: 10px !important;
  }
  .bot-legal-links a {
    font-size: 15px !important;
    color: rgba(255, 255, 255, .75) !important;
    text-decoration: none !important;
    padding: 4px 0 !important;
    transition: color .2s;
  }
  .bot-legal-links a:active { color: #fff !important; }
  .bot-legal-links a:not(:last-child)::after {
    content: '|' !important;
    margin-left: 14px;
    color: rgba(255, 255, 255, .25) !important;
  }
  /* 移动端仅显示：关于我们/市场报告/租金走势/隐私政策，隐藏服务条款/投诉建议/联系我们 */
  .bot-legal-links a[href*="#terms"],
  .bot-legal-links a[href*="#complaints"],
  .bot-legal-links a[href="/contact"] { display: none !important; }
}

@media (max-width: 480px) {
  .bot-legal-links a {
    font-size: var(--fs-xs, 12px) !important;
    padding: 0 4px !important;
  }
}
