/* 底部栏目样式 */
.footer-section {
    background-color: #fafdff;
    color: #000;
    padding: 20px 0;
}

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

/* 第一行：左侧图片和右侧关注我们 */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
    gap: 40px;
}

.footer-left {
    flex: 1;
}

.footer-left img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 8px;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
}

.footer-right img {
    height: 31px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0px 14px;
}
.foot_link_wap {
    display:block;
}
/* 第二行：客服联系信息 */
.footer-contact {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 10px;
    padding: 10px 0;
    border-top: 1px solid #e1e5e9;
    border-bottom: 1px solid #e1e5e9;
}
.footer-contact-wap {
    display: none;
}
.footer-contact span {
    font-size: 1.2rem;
    color: #000;
}

/* 第三行：文本链接 */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 90px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

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

/* 底部版权信息 */
.footer-copyright {
    text-align: center;
    margin-top: 20px;
}

.footer-copyright p {
    color: #000;
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-left img {
        max-width: 250px;
    }
    
    .footer-contact {
        display: none;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .foot_link_wap {
        display:none;
    }
    
    .footer-contact-wap {
        display: block;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-section {
        padding: 40px 0 20px;
    }
}
