/* ============================================
   超简洁页脚 - Footer Ultra Minimal
   特点：Logo居中、无emoji、与导航一致
   ============================================ */

.footer {
    background: #FAFAFA;
    border-top: 1px solid #E8E8E8;
    padding: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Logo居中 */
.footer-logo-wrap {
    margin-bottom: 32px;
}

.footer-logo {
    height: 48px;
    width: auto;
    display: inline-block;
}

/* 导航链接 - 与头部一致 */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #E60012;
}

/* 分割线 */
.footer-divider {
    height: 1px;
    background: #E8E8E8;
    margin-bottom: 24px;
}

/* 底部版权 */
.footer-bottom {
    font-size: 13px;
    color: #999;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #E60012;
}

/* 响应式 */
@media (max-width: 768px) {
    .footer {
        padding: 32px 20px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 20px 32px;
    }
    
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .footer-bottom a {
        margin: 0;
    }
}
