/* === 首页底部 & 页脚 === */

/* 分割标题 */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 36px 0 24px;
    color: #aaa;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}
.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: #ddd;
}

/* 友情链接 */
.links-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #999;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
}
.links-heading::before,
.links-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}
.links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.link-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    background: #f8f9fa;
    text-decoration: none;
    transition: all .2s ease;
    border: 1px solid transparent;
}
.link-pill:hover {
    color: #333;
    background: #fff;
    border-color: #e0e0e0;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* 统计条 */
.footer-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    padding: 18px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #bbb;
}
.footer-stats strong {
    font-weight: 600;
    color: #888;
    margin: 0 2px;
}
.footer-stats a {
    color: #bbb;
    text-decoration: none;
    transition: color .2s;
}
.footer-stats a:hover {
    color: #666;
}
.footer-stats .sep {
    color: #e0e0e0;
    margin: 0 6px;
}

/* ICP */
.footer-icp {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding-bottom: 24px;
}
.footer-icp a {
    display: inline-flex;
    align-items: center;
    color: #ccc;
    font-size: 12px;
    text-decoration: none;
    transition: color .2s;
}
.footer-icp a:hover {
    color: #999;
}
.footer-icp img {
    margin-right: 4px;
    opacity: .5;
}
