/* APP下载模块样式 */
.app-download-section {
    background-color: #000;
    padding: 40px 0;
    border-bottom: 1px solid #333;
}

.app-download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-info {
    flex: 1;
}

.app-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 10px 0;
}

.app-download-buttons {
    display: flex;
    align-items: center;
    gap: 40px;
}

.platform-icons {
    display: flex;
    gap: 30px;
}

.platform-icon {
    text-align: center;
}

.platform-icon svg {
    margin-bottom: 5px;
}

.platform-text {
    font-size: 12px;
    color: #ccc;
    display: block;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #C71B1B;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #a61616;
}

.download-button svg {
    width: 20px;
    height: 20px;
}

/* Footer 样式 */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0 20px;
}

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

/* 顶部导航 */
footer.site-footer .top-nav {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

footer.site-footer .top-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

footer.site-footer .top-nav a:hover {
    color: #ccc;
}

/* 主要内容区域 */
footer.site-footer .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

/* 左侧联系信息 */
footer.site-footer .col-left .logo {
    margin-bottom: 20px;
}

footer.site-footer .col-left .logo img {
    max-width: 120px;
}

footer.site-footer .col-left .section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

footer.site-footer .col-left .addr p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 8px 0;
}

/* 中间联系方式 */
footer.site-footer .col-middle {
    padding-left: 20px;
    padding-top: 44px;
}

footer.site-footer .col-middle .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.site-footer .col-middle .contact-list li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
}

/* 右侧二维码 */
footer.site-footer .col-qr {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

footer.site-footer .col-qr .qr-wrap {
    text-align: center;
}

footer.site-footer .col-qr .qr-box {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

footer.site-footer .col-qr .qr-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer.site-footer .col-qr .qr-note {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

/* 底部线条 */
footer.site-footer .bottom-line {
    height: 1px;
    background-color: #333;
    margin-bottom: 20px;
}

/* 底部信息 */
footer.site-footer .bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

footer.site-footer .bottom-bar a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

footer.site-footer .bottom-bar a:hover {
    color: #ccc;
}
/* 响应式设计 */
@media (max-width: 992px) {
    footer.site-footer .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    footer.site-footer .col-middle {
        padding-left: 0;
    }
    
    footer.site-footer .col-qr {
        justify-content: flex-start;
    }
    
    footer.site-footer .bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .app-download-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .app-download-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    footer.site-footer .top-nav {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    footer.site-footer .col-qr {
        flex-direction: column;
        gap: 20px;
    }
    
    footer.site-footer .col-qr .qr-wrap {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    footer.site-footer .col-qr .qr-box {
        margin-bottom: 0;
    }
}