@charset "utf-8";
html, body {
    overflow-x: inherit;
}

.section-budget {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1024px;
    padding: 80px 60px;
    margin: auto;
}
.description-one {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 20px 60px;
}
.description-one .desc-cover-wrap{
    flex: 4;
}
.description-one .desc-cover-wrap img{
    width: 100%;
}
.description-one .desc-main-wrap{
    flex: 6;
    padding: 0 0 0 60px;
}
.description-one .desc-main-wrap .title{
    font-family: var(--cn-title-font);
    font-weight: 800;
    font-size: 46px;
    padding: 15px 0 0 0;
}
.description-one .desc-main-wrap .subtitle{
    font-weight: bold;
    padding: 0 0 10px 0;
}
.description-one .desc-main-wrap .content{

}
.description-one .desc-main-wrap .download-btn-wrap{
    white-space: normal;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: #0094e0;
    cursor: pointer;
}
.description-one .desc-main-wrap .download-btn-wrap .download-btn{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.description-two{
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 120px 60px;
    flex-wrap: wrap;
    row-gap: 100px;
}
.description-two .desc-wrap{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 50%;
}
.description-two .desc-wrap:nth-child(odd) .desc-item{
    margin: 0 12% 0 0;
}
.description-two .desc-wrap:nth-child(even) .desc-item{
    margin: 0 0 0 12%;
}
.description-two .desc-wrap .desc-item .desc-image-wrap{

}
.description-two .desc-wrap .desc-item  .desc-image-wrap img{
    width: 100%;
}
.description-two .desc-wrap .desc-item  .title{
    font-family: var(--cn-title-font);
    font-weight: 800;
    font-size: 30px;
    padding: 15px 0 0 0;
}
.description-two .desc-wrap .desc-item  .page{

}
.description-two .desc-wrap .desc-item  .content{

}

@media (max-width: 1024px) {
    .description-one .desc-main-wrap .title{
        font-size: 38px;
        padding: 5px 0 0 0;
    }
    .description-two .desc-wrap .desc-item  .title{
        font-size: 22px;
    }
    .description-two{
        row-gap: 70px;
    }
    .description-two .desc-wrap:nth-child(odd) .desc-item{
        margin: 0 8% 0 0;
    }
    .description-two .desc-wrap:nth-child(even) .desc-item{
        margin: 0 0 0 8%;
    }
}
@media (max-width: 900px) {
}
@media (max-width: 768px) {
    .section-budget {
        padding: 0;
    }
    .description-one {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .description-one .desc-main-wrap{
        flex: auto;
        padding: 30px 60px;
    }
    .description-one .desc-main-wrap .download-btn-wrap {
        width: 100%;
    }

    .description-two {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        margin: 60px;
        row-gap: 100px;
        padding: 0;
    }

    .description-two .desc-wrap {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .description-two .desc-wrap:nth-child(odd) .desc-item {
        margin: 0;
        padding: 0 60px;
    }
    .description-two .desc-wrap:nth-child(even) .desc-item {
        margin: 0;
        padding: 0 60px;
    }
}
@media (max-width: 580px) {
    .description-one .desc-main-wrap .title{
        font-size: 22px;
    }
    .description-one .desc-main-wrap{
        padding: 15px 20px;
    }

    .description-two {
        margin: 30px;
        row-gap: 60px;
    }

    .description-two .desc-wrap:nth-child(odd) .desc-item {
        padding: 0 30px;
    }
    .description-two .desc-wrap:nth-child(even) .desc-item {
        padding: 0 30px;
    }
}