/* 底部样式 - Footer */

.footer {
    background-color: #FFFFFF;
    color: #333;
    padding: 60px 0 32px;
    border-top: 1px solid #E8E8E8;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* 底部内容区 */
.footer__content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E0E0E0;
}

/* 底部区块 */
.footer__section {
    flex: 0 0 auto;
    min-width: 0;
    padding-right: 24px;
}

.footer__section:first-child .logo-wrapper {
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.footer__section:first-child .logo-wrapper .footer__logo {
    margin-bottom: 0;
}

.footer__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.footer__logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

/* 底部链接列表 */
.footer__list {
    list-style: none;
}

.footer__item {
    margin-bottom: 8px;
}

.footer__link {
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: #2A9011;
    transform: translateX(5px);
}

/* 联系信息 */
.footer__contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.footer__contact-icon {
    flex-shrink: 0;
    width: 58px;
    margin-right: 8px;
    font-weight: 600;
    color: #2A9011;
}

/* 社交媒体链接 */
.footer__social {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2A9011;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer__social-link:hover {
    color: #1B5E20;
    transform: translateY(-2px);
}

/* 底部版权区 */
.footer__bottom {
    padding-top: 24px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

.footer__copyright {
    margin-bottom: 8px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer__bottom-link {
    color: #999;
    transition: all 0.3s ease;
}

.footer__bottom-link:hover {
    color: #2A9011;
    text-decoration: underline;
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
    .footer__content {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 32px;
    }
}

@media screen and (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .footer__section {
        padding-right: 0;
        margin-bottom: 24px;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__list {
        padding: 0;
    }

    .footer__contact-item {
        justify-content: center;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 12px;
    }
}
