/**
 * 页脚样式
 */

.main-footer {
    background: #2d3436;
    margin-top: 60px;
    padding: 50px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 主内容区 */
.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 30px;
}

/* 品牌区域 */
.footer-brand {
    flex-shrink: 0;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #b1ce48 0%, #9ab73a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #2d3436;
}

.footer-brand-text {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.footer-brand-desc {
    color: #b2bec3;
    font-size: 13px;
    line-height: 1.6;
    max-width: 260px;
    margin-bottom: 16px;
}

/* 社交图标 */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b2bec3;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: #b1ce48;
    color: #2d3436;
}

.footer-social i {
    font-size: 18px;
}

/* 链接区域 */
.footer-links-wrap {
    display: flex;
    gap: 60px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #b2bec3;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #b1ce48;
}

/* 底部版权区 */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #636e72;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal a,
.footer-legal span {
    color: #636e72;
    font-size: 13px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #b1ce48;
}

.legal-dot {
    width: 4px;
    height: 4px;
    background: #636e72;
    border-radius: 50%;
}

/* 响应式 */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links-wrap {
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
