/* 下载页面专用样式 */

/* 确保链接无下划线 */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.download-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-text {
    padding-right: 40px;
}

.download-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.1;
}

.download-subtitle {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.6;
}

.download-buttons-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.download-app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 248px;
    height: 62px;
    background: linear-gradient(90deg, #F9D558 0%, #FBC200 100%);
    border-radius: 100px;
    border: none;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 12px;
    position: relative;
    box-shadow: 0 0 0 1px rgba(251, 194, 0, 0.8);
}

.download-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.download-app-btn i {
    font-size: 1.8rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-platform {
    font-size: 0.75rem;
    opacity: 0.9;
}

.btn-type {
    font-size: 0.9rem;
    font-weight: 700;
}

.qr-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.qr-text h4 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 8px;
}

.qr-text p {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.4;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100% !important;
    height: 100% !important;
    margin:0 !important;
    box-shadow: none!important;
    overflow: initial !important;
}


.phone-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.phone-image-desktop {
    display: block;
}

.phone-image-mobile {
    display: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .download-text {
        padding-right: 0;
        order: 2;
        text-align: center;
    }

    .phone-mockup {
        order: 1;
    }

    .phone-image-desktop {
        display: none;
    }

    .phone-image-mobile {
        display: block;
    }

    .download-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .download-subtitle {
        text-align: center;
    }

    .download-buttons-section {
        justify-content: center;
        flex-wrap: wrap;
    }

    .qr-section {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }


}

@media (max-width: 480px) {
    .download-content {
        display: flex;
        flex-direction: column;
    }

    .download-text {
        order: 2;
        text-align: center;
    }

    .phone-mockup {
        order: 1;
    }

    .phone-image-desktop {
        display: none;
    }

    .phone-image-mobile {
        display: block;
    }

    .download-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .download-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .download-buttons-section {
        flex-direction: column;
        align-items: center;
    }

    .qr-section {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }

    .qr-text h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .qr-text p {
        font-size: 0.85rem;
    }

 
}  