/* ============================================================
   页脚：所有文字黑色，字体加大，删除下划线
   ============================================================ */
.footer {
    text-align: center;
    padding: 0px 16px 0 !important;
    margin-bottom: 9px !important;
    padding-bottom: 0 !important;
    border-top: none;
    margin-top: 0px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 6px;
}
.footer-links a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
}
.footer-links a:hover {
    color: #333;
    text-decoration: underline;
}

/* ===== 页脚导航：字体14px，黑色 ===== */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 10px;
    margin-bottom: 8px;
}
.footer-nav a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #333;
    text-decoration: underline;
}
.footer-nav-divider {
    color: #000;
    font-size: 14px;
}

.footer-copyright {
    color: #000;
    font-size: 13px;
}
.footer-copyright a {
    color: #000;
    text-decoration: none;
}
.footer-notice {
    color: #000;
    font-size: 13px;
    margin-top: 4px;
}

/* ===== 暗黑模式 ===== */
body.dark-mode .footer-links a {
    color: #ccc;
}
body.dark-mode .footer-links a:hover {
    color: #fff;
}
body.dark-mode .footer-nav a {
    color: #ccc;
}
body.dark-mode .footer-nav a:hover {
    color: #fff;
}
body.dark-mode .footer-nav-divider {
    color: #555;
}
body.dark-mode .footer-copyright {
    color: #ccc;
}
body.dark-mode .footer-copyright a {
    color: #ccc;
    text-decoration: none;
}
body.dark-mode .footer-notice {
    color: #ccc;
}