.section {
    padding: 100px 0 120px;
}

.section .wrap .title {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 60px;
}
.section .wrap .box .part {
    display: flex;
    gap: 60px;
}
.section .wrap .box .part .part_l,.section .wrap .box .part .part_r {
    flex: 1;
}
.section .wrap .box .part .part_r img {
    display: block;
    width: 100%;
}
.section .wrap .box .part .part_l .h5 {
    color: #1685B8;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}
.section .wrap .box .part .part_l .des {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin: 24px 0;
}
.section .wrap .box .part .part_l .p {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;

}
.section .wrap .box .part .part_l .p p {
    margin-bottom: 24px;
}
.section .wrap .box .part .part_l .p li {
    margin-bottom: 24px;
    padding: 0 0 0 24px;
    position: relative;
}
.section .wrap .box .part .part_l .p li:after {
    content: url("/static/images/xl.svg");
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;

}
.section .wrap .box .part:nth-child(2n) {
    flex-direction: row-reverse;
}
.section .wrap .box .part:not(:nth-last-child(1)) {
    margin-bottom: 60px;
}


@media screen and (max-width: 1600px) {
    .section .wrap .title {
        font-size: 32px;
    }
}
@media screen and (max-width: 768px) {
    .section .wrap .title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .section .wrap .box .part {
        flex-direction: column-reverse !important;

        gap: 15px;
    }
    .section {
        padding: 50px 0 60px;
    }
    .section .wrap .box .part .part_l .h5 {
        font-size: 18px;
    }
}
