/* ============================================================
 * footer-dark.css — 全站统一金色玻璃拟态底部
 * 三列链接 + 金色 LOGO + 版权/邮箱/电话
 * 覆盖各页面内联 .footer 样式（!important）
 * ============================================================ */

.footer {
    margin-top: 40px !important;
    padding: 14px 0 8px !important;
    background: rgba(5, 6, 7, 0.82) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    color: #A8B5C6 !important;
    text-align: left !important;
}
.footer .container {
    max-width: 1080px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    display: block !important;
}

.footer-links-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-evenly !important;
    gap: 24px !important;
    padding: 4px 48px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 18px !important;
}
.footer-links-row > div {
    flex: 1 !important;
    min-width: 0 !important;
}
.footer-links-row h4 {
    color: #D4AF37 !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    font-size: 15px !important;
}
.footer-links-row > div > a {
    display: block !important;
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 2 !important;
    transition: color .2s ease, padding-left .2s ease !important;
}
.footer-links-row > div > a:hover {
    color: #D4AF37 !important;
    padding-left: 4px !important;
}

.footer-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    flex-wrap: wrap !important;
}
.footer-logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}
.footer-logo img {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4)) !important;
}
.footer-logo strong {
    color: #D4AF37 !important;
    font-size: 18px !important;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4) !important;
}
.footer-content p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    text-align: left !important;
}
.footer-content p a {
    color: #818CF8 !important;
    text-decoration: underline !important;
    transition: color .2s ease !important;
}
.footer-content p a:hover {
    color: #A5B4FC !important;
}

@media (max-width: 768px) {
    .footer-links-row {
        flex-direction: column !important;
        padding: 4px 12px 20px !important;
    }
    .footer-content {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
    }
}

/* ===== 大屏(2K/4K)自适应 - 20260913 ===== */
@media (min-width: 1440px) {
  .footer .container { max-width: 1600px; }
}
@media (min-width: 1920px) {
  .footer .container { max-width: 1800px; }
}
