/* ===== 页脚统一样式(第二批「消重与收拢」第一块,2026-07-29) =====
   六页共用同一份页脚 HTML 结构 + 这份样式,不再各自为政。
   覆盖 css/style.css 里 .footer-content/.footer-section 的等宽三分布局,
   因为「网站信息」列内容明显最长,不该跟其余两列等宽。 */

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    gap: 30px;
}

.footer-section {
    flex: 1 1 0;
}

.footer-section:first-child {
    flex: 1.4 1 0;
}

/* 中文文本不允许在相邻汉字之间断行(修复"备案号："被拆成"备案/号："的问题) */
.footer-section h4,
.footer-section p {
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .footer-section:first-child {
        flex: 1 1 0;
    }
}
