﻿/* 确保根字体稳定，避免 rem 过小 */
html {
    font-size: 16px;
}

/* 页尾自定义样式 - 电脑与手机统一效果 */
.custom-site-footer {
    background: #1e1a0f;
    padding: 12px 10px 16px;   /* 改用 px，保证移动端足够空间 */
    text-align: center;
    border-top: 1px solid #3e3520;
    margin-top: 8px;
    color: #b8aa7a;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.custom-site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;            /* 行间距16px，列间距24px，触控舒适 */
    margin-bottom: 16px;
}

.custom-site-footer .footer-links a {
    color: #e4d5a3;
    text-decoration: none;
    font-size: 15px;           /* 明确大小，手机和电脑都清晰 */
    padding: 6px 0;            /* 增大点击区域 */
    transition: opacity 0.2s;
    display: inline-block;
}

.custom-site-footer .footer-links a:active {
    opacity: 0.7;              /* 移动端点击反馈 */
}

.custom-site-footer .copyright {
    font-size: 13px;
    line-height: 1.5;
    color: #8f825a;
    margin-top: 12px;
}

.custom-site-footer .icp {
    font-size: 12px;
    margin-top: 8px;
    color: #6b5e3e;
}

.custom-site-footer .icp a {
    color: #8f825a;
    text-decoration: none;
}

/* 小屏手机微调（仅缩小外边距，不缩小文字） */
@media (max-width: 480px) {
    .custom-site-footer {
        padding: 10px 8px 14px;
    }
    .custom-site-footer .footer-links {
        gap: 12px 16px;
    }
    .custom-site-footer .footer-links a {
        font-size: 14px;       /* 依然清晰 */
    }
    .custom-site-footer .copyright {
        font-size: 12px;
    }
    .custom-site-footer .icp {
        font-size: 11px;
    }
}