.section{
    width: 100%;
    overflow: hidden;
    background: #F6F6F6;
}
.section .warp{
    margin: 130px auto 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section .warp .picture{
    width: 508px;
    height: 657px;
    overflow: hidden;
    margin-right: 96px;
}
.section .warp .picture img{
    width: 100%;
    height: 100%;
}
.section .warp .text{
    width: 840px;
}
.section .warp .text span{
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #0C0C0C;
}
.section .warp .text h1{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #1B1B1B;
    line-height: 28px;
    padding: 0 0 0 12px;
    position: relative;
}
.section .warp .text h1:after{
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 3px;
    height: 13px;
    background: #AB0E12;
}
.section .warp .text p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #323232;
    line-height: 28px;
}

@media screen and (max-width: 1856px) {
    .section .warp .text{
        width: 50%;
    }
    .section .warp{
        align-items: unset;
    }
    .section .warp .picture{
        margin: 0 50px 0 0;
    }
}

@media screen and (max-width: 768px) {
    .section .warp{
        width: 90%;
        margin: 50px auto;
        flex-direction: column;
    }
    .section .warp .picture{
        width: 100%;
        height: auto;
        margin: 0;
    }
    .section .warp .text{
        width: 100%;
        margin: 50px 0 0 0;
    }
    .section .warp .text span{
        font-size: 18px;
    }
    .section .warp .text h1{
        font-size: 12px;
    }
    .section .warp .text p{
        font-size: 12px;
    }
}