/* 下载区样式 */
.download {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    background-image: url(../asset/download_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.download-left{
    max-width: 485px;
    text-align: center;
    .download-left-title{
        font-family: BeVietnamProBlack;
        font-size: 42px;
        line-height: 53px;
        color: #111111;
        margin-bottom: 14px;
    }
    .download-btn-box{
        display: flex;
        align-items: center;
        justify-content: center;
        .download-btn img{
            cursor: pointer;
            width: 145px;
            height: 56px;
            border-radius: 10px;
        }
    }

}
.download-right{
    width: 486px;
    height: 490px;
    background-image: url(../asset/download_right.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
/* 响应式设计 */
@media(min-width: 768px) {
    .download{
        padding-left: 80px;
        padding-right: 80px;
    }
    .download-content{
        width: 100%;
        height: 320px;
        max-width: 980px;
        position: relative;
    }
    .download-left{
        position: absolute;
        bottom: -4px;
        left: 0;
        z-index: 2;
    }
    .download-right{
        position: absolute;
        z-index: 1;
        bottom: 0;
        right: 0
    }
}
@media (max-width: 767px) {
    .download{
        padding-bottom: 0px;
        flex-direction: column;
    }
    .download-content{
        margin-top: 24px;
    }
    .download-right{
        width: 100%;
        height: auto;
        aspect-ratio: 486/490;
    }
}