.section{
    width: 100%;
    overflow: hidden;
    background: #F6F6F6;
}
.section .warp{
    width: 1040px;
    margin: 150px auto 105px;
}
.section .warp .content .item{
    width: 100%;
    height: 120px;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    padding: 0 0 0 50px;
    position: relative;
    transition: 1s;
}
.section .warp .content .item:hover{
    background: #FFFFFF;
    box-shadow: 0px 1px 38px 0px rgba(35, 35, 35, 0.1);
}

.section .warp .content .item:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #E9E9E9;
    transition: 1s;
}
.section .warp .content .item:hover:after{
    opacity: 0;
}
.section .warp .content .item .time{

    text-align: center;
}
.section .warp .content .item .time span{
    font-size: 26px;
    font-family: Roboto;
    font-weight: 500;
    color: #292929;
    transition: 0.6s;
}
.section .warp .content .item .time p{
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    color: #292929;
    margin-top: 5px;
    transition: 0.6s;
}
.section .warp .content .item:hover .time span,.section .warp .content .item:hover .time p{
    color: #C9151E;
}
.section .warp .content .item .line{
    width: 1px;
    height: 48px;
    background: #E8E8E8;
    margin: 0 40px 0 30px;
}
.section .warp .content .item .text h1{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #000000;
    margin-bottom: 5px;
}
.section .warp .content .item .text p{
    width: 722px;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #848383;
    line-height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.section .warp .content .item .red{
    width: 83px;
    height: 120px;
    background: #C42F2F;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 1s;
}
.section .warp .content .item .red .iconfont{
    color: #FFFFFF;
    font-size: 30px;
    transform: rotateY(180deg);
}

.section .warp .content .item:hover .red{
    opacity: 1;
}

.section .warp .pagination__{
    margin-top: 100px;
}

@media screen and (max-width: 768px) {
    .section .warp{
        width: 90%;
        margin: 72px auto 0;
    }
    .section .warp .content .item .time span{
        font-size: 20px;
    }
    .section .warp .content .item .time p{
        font-size: 12px;
    }
    .section .warp .content .item{
        padding: 0 0 0 33px;
    }

    .section .warp .content .item .line{
        margin: 0 25px;
    }
    .section .warp .content .item .text h1{
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
    .section .warp .content .item .text p{
        font-size: 12px;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .section .warp .content .item .text{
        width: 64%;
    }
    .section .warp .content .item .red{
        display: none;
    }
    .section .warp .content .item {
        background: #FFFFFF;
        box-shadow: 0px 1px 38px 0px rgb(35 35 35 / 10%);
        height: 93px;
    }
    .section .warp .content .item:after{
        display: none;
    }
    .section .warp .pagination__{
        margin-top: 60px;
    }
}
