.section{
    width: 100%;
    overflow: hidden;
    background: #F6F6F6;
}
.section .warp{
    width: 1445px;
    margin: 168px auto 101px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section .warp .item{
    width: 700px;
    height: 280px;
    background: #FFFFFF;
    display: flex;
    margin-bottom: 35px;
}
.section .warp .item .picture{
    width: 264px;
    height: 100%;
    overflow: hidden;
    display: block;
}
.section .warp .item .picture img{
    width: 100%;
    height: 100%;
    transition: 5s;
    cursor: pointer;
}
.section .warp .item .picture img:hover{
    transform: scale(1.1);
}

.section .warp .item .text{
    padding: 50px 0 50px 44px;
}
.section .warp .item .text .headline{
    font-size: 26px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #0C0C0C;
    transition: 0.6s;
}
.section .warp .item .text .headline:hover{
    color: #AB0E12;
}
.section .warp .item .text h2{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #5D5D5D;
    margin: 15px 0 56px 0;
}
.section .warp .item .text .pick{
    width: 345px;
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #3D3D3D;
    line-height: 28px;
    display: block;
    transition: 0.6s;
}
.section .warp .item .text .pick:hover{
    color: #AB0E12;
}
.page{
    width: 100%;
    min-height: 76.2vh;
    overflow: hidden;
    background: #F6F6F6;
}
.page .warp{
    width: 1360px;
    margin: 230px auto 87px;
}
.page .warp .bread{
    display: flex;
    align-items: center;
    margin-top: 26px;
}
.page .warp .bread a{
    display: flex;
    align-items: center;
}
.page .warp .bread a .iconfont{
    color: #535353;
    font-size: 15px;
    opacity: 0.5;
    margin-right: 5px;
    margin-top: -2px;
}
.page .warp .bread a p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #1B1B1B;
    line-height: 22px;
    opacity: 0.5;
}
.page .warp .bread .active p{
    opacity: 1;
}
.page .warp .content{
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}
.page .warp .content .picture{
    width: 264px;
    height: 280px;
    overflow: hidden;
}

.page .warp .content .introduce{
    width: 1070px;
    height: 567px;
    background: #FFFFFF;
    padding: 62px 65px;
}
.page .warp .content .introduce span{
    font-size: 32px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #0C0C0C;
}
.page .warp .content .introduce h2{
    margin: 15px 0 0 0;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #5D5D5D;
}
.page .warp .content .introduce .line{
    width: 30px;
    height: 3px;
    background: #C42F2F;
    margin: 19px 0 61px 0;
}
.page .warp .content .introduce p{
    width: 932px;
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #3D3D3D;
    line-height: 30px;
}

@media screen and (max-width: 1856px) {
    .section .warp{
        width: 90%;
    }
    .section .warp .item{
        width: 48%;
    }
    .section .warp .item .text .pick{
        width: 273px;
    }
    .page .warp{
        width: 90%;
    }
    .page .warp .content .introduce{
        width: 75%;
    }
    .page .warp .content .introduce p{
        width: 100%;
    }
}


@media screen and (max-width: 768px) {
    .section .warp{
        margin: 50px auto;
        flex-direction: column;
    }
    .section .warp .item{
        width: 100%;
        height: auto;
        margin: 0 0 50px 0;
        flex-direction: column;
        background: transparent;
    }
    .section .warp .item .picture{
        width: 100%;
        height: auto;
    }
    .section .warp .item .text{
        padding: 0;
        margin: 20px 0 0 0;
    }
    .section .warp .item .text h2{
        margin: 15px 0 35px 0;
    }
    .section .warp .item .text .pick{
        width: 100%;
        font-size: 14px;
    }
    .page .warp{
        margin: 110px auto 87px;
    }
    .page .warp .content{
        flex-direction: column;
        margin: 30px 0 0 0;
    }
    .page .warp .content .picture{
        width: 100%;
        height: auto;
    }
    .page .warp .content .picture img{
        width: 100%;
        height: 100%;
    }
    .page .warp .content .introduce{
        width: 100%;
        height: auto;
        background: transparent;
        padding: 0;
        margin: 20px 0 0 0;
    }
    .page .warp .content .introduce span{
        font-size: 28px;
    }
    .page .warp .content .introduce .line{
        margin: 19px 0 45px 0;
    }
    .page .warp .content .introduce p{
        font-size: 12px;
    }
    .page .warp .bread a p{
        font-size: 12px;
    }
}