.home {
    width: 100%;
    height: 100vh;
    display: flex;
}
.home .fiexd {
    width: 8%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.home .content {
    width: 92%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 55px;
}
.home .content .warp {
    width: 1570px;
    margin: auto;
    text-align: center;
}
.home .content .warp .title p{
    font-size: 12px;
    font-family: Nexa Text-Trial;
    font-weight: normal;
    color: #5B5B5B;
}
.home .content .warp .title span{
    font-size: 32px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #1E1E1E;
    margin-top: 22px;
}
.home .content .warp .title .case_nav{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 52px;
}
.home .content .warp .title .case_nav a{
    width: 140px;
    height: 46px;
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #7A7A7A;
    margin-right: 20px;
    transition: 0.6s;
}
.home .content .warp .title .case_nav .active{
    background: #D71518;
    color: #FFFFFF;
}
.home .content .warp .title .case_nav a:last-child{
    margin-right: 0;
}
.home .content .warp .title .case_nav a:hover{
    background: #D71518;
    color: #FFFFFF;
}
.home .content .warp .detail{
    width: 100%;
    margin-top: 58px;
    display: flex;
    flex-wrap: wrap;
}
.home .content .warp .detail .item{
    width: 374px;
    margin-right: 24px;
    margin-bottom: 45px;
}
.home .content .warp .detail .item:nth-child(4n){
    margin-right: 0;
}
.home .content .warp .detail .item .images{
    width: 374px;
    height: 234px;
    overflow: hidden;
}
.home .content .warp .detail .item .images img{
    width: 100%;
    height: 100%;
    transition: 3s;
}
.home .content .warp .detail .item:hover .images img{
    transform: scale(1.1);
}
.home .content .warp .detail .item .text{
    text-align: left;
    margin-top: 17px;
}
.home .content .warp .detail .item .text h1{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #242424;
    margin-bottom: 8px;
    transition: 0.6s;
}
.home .content .warp .detail .item .text div{
    display: flex;
    justify-content: space-between;
}
.home .content .warp .detail .item .text div p{
    font-size: 13px;
    font-family: Roboto;
    font-weight: 400;
    color: #747474;
    transition: 0.6s;
}
.home .content .warp .detail .item .text div i{
    font-size: 12px;
    color: #747474;
    transform: rotate(-90deg);
    position: relative;
    left: -10px;
    transition: 0.6s;
}
.home .content .warp .detail .item:hover .text div i{
    left: 0;
}
.home .content .warp .detail .item:hover h1{
    color: #d71518;
}

@media screen and (max-width: 1920px) {
    .home .content{
        margin-top: 0;
    }
    .home .content .warp .title .case_nav{
        margin-top: 32px;
    }
}

@media screen and (max-width: 1700px) {
    .home{
        height: auto;
    }
    .home .content{
        margin-top: 100px;
    }
    .home .content .warp{
        width: 80%;
    }
    .home .content .warp .detail .item{
        width: 23%;
    }
    .home .content .warp .detail .item .images{
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .home{
        height: auto;
    }
    .home .fiexd{
        display: none;
    }
    .home .content{
        width: 88%;
        margin: 130px auto 0;
    }
    .home .content .warp{
        width: 100%;
    }
    .home .content .warp .title span{
        font-size: 28px;
        margin-top: 15px;
    }
    .home .content .warp .title .case_nav{
        justify-content: space-between;
    }
    .home .content .warp .title .case_nav a{
        width: 45%;
        font-size: 12px;
        margin-right: 0;
    }
    .home .content .warp .detail{
        justify-content: space-between;
    }
    .home .content .warp .detail .item{
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width: 1700px) {
    .home .content .warp{
        width: 92%;
    }
    .home .content .warp .detail .item {
        width: 23%;
    }

}