.news ul li{
    padding: 50px 0;
    transition: all .3s;
}
.news ul li .width{
    width: calc(100% - 100px);
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
}
.news ul li a{
    display: block;
}
.news ul li .data{
    width: 135px;
    margin-top: 8%;
    font-size: 40px;
    text-align: right;
    transition: all .3s;
}
.news ul li .data span{
    display: block;
    color: #aaa;
    font-size: 22px;
    margin-top: 10px;
}
.news ul li .img{
    width: 45%;
    margin: 0 40px;
}
.news ul li .img img{
    display: block;
    width: 100%;
    transition: all .3s;
}
.news ul li .text-wrapper{
    width: calc(55% - 215px);
    transition: all .3s;
}
.news ul li .text-wrapper h4{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 15px 0;
    font-size: 30px;
    font-weight: initial;
    line-height: 1.3;
    color: #333;
    transition: all .3s;
}
.news ul li .text-wrapper span{
    display: none;
}
.news ul li .text-wrapper p{
    font-size: 18px;
    line-height: 1.5;
}
.news ul li:nth-of-type(odd){
    background: #f3f3f3;
}
.news ul li:nth-of-type(odd) .data{
    float: left;
}
.news ul li:nth-of-type(odd) .img{
    float: left;
}
.news ul li:nth-of-type(odd) .text-wrapper{
    float: right;
}
.news ul li:nth-of-type(even) .data{
    float: right;
    text-align: left;
}
.news ul li:nth-of-type(even) .img{
    float: right;
}
.news ul li:nth-of-type(even) .text-wrapper{
    float: left;
}
.news ul li:hover{
    background: #d61919;
}
.news ul li:hover .data,
.news ul li:hover .data span,
.news ul li:hover .text-wrapper h4,
.news ul li:hover .text-wrapper span,
.news ul li:hover .text-wrapper p{
    color: #FFF;
}

@media screen and (max-width: 950px){
    .news ul li .data{
        display: none;
    }
    .news ul li .img{
        margin: 0;
    }
    .news ul li .text-wrapper{
        width: calc(55% - 40px);
    }
    .news ul li .text-wrapper span{
        display: block;
    }
    .news ul li .text-wrapper h4{
        font-size: 25px;
        color: #333;
    }
}

@media screen and (max-width: 760px){
    .news ul li .img,
    .news ul li .text-wrapper{
        margin: 0;
        float: initial !important;
        width: 100%;
    }
    .news ul li .text-wrapper{
        margin-top: 30px;
    }
}

@media screen and (max-width: 414px) {
    .news ul li{
        padding: 20px;
    }
    .news ul li .width{
        width: 100%;
        padding: 0;
    }
    .news ul li .text-wrapper h4{
        font-size: 16px;
    }
    .news ul li .text-wrapper p{
        font-size: 14px;
    }
}