/* 极简页脚样式 */
.clean-footer {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 35px 20px 25px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* 网站信息 */
.footer-info {
    text-align: center;
    margin-bottom: 25px;
}

.footer-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.footer-desc {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
}

/* 导航链接 */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1890ff;
}

/* 版权信息 */
.footer-copy {
    text-align: center;
    color: #999;
    font-size: 12px;
    line-height: 1.8;
}

.footer-copy a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-copy a:hover {
    color: #1890ff;
}

/* 响应式 */
@media (max-width: 768px) {
    .clean-footer {
        padding: 25px 15px 80px;
        margin-top: 60px;
    }

    .footer-info {
        margin-bottom: 20px;
    }

    .footer-name {
        font-size: 16px;
    }

    .footer-desc {
        font-size: 12px;
    }

    .footer-links {
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-copy {
        font-size: 11px;
    }
}