.news-list .news-wrap li{
    width: 100%;
    border: 1px solid #F0F0F0;
    background-color: #fff;
    border-left: none;
    margin-top: 30px;
}

.news-list .news-wrap li:first-child{
    margin-top: 0;
}

.news-list .news-wrap  a{
    display: block;
}

.news-list .news-wrap  .news-items{
    transition: all 0.5s;
}

.news-list .news-items .image{
    float: left;
    overflow: hidden;
}

.news-list .news-items .image img{
    transition: all 0.5s;
}

.news-list .news-items .article{
    float: left;
    padding: 24px 30px 25px;
    max-width: 879px;
    border-left: none;
    width: 100%;
}

.news-list .article h3{
    margin: 0;
    font-size: 24px;
    line-height: 36px;
    color: #333;
    font-weight: bold;
    transition: all 0.5s;
}

.news-list .article .data{
    margin: 10px 0 15px;
}

.news-list .data span{
    float: left;
    line-height: 24px;
    font-size: 14px;
    color: #777;
    margin-left: 40px;
    position: relative;
    background-repeat: no-repeat;
    background-position: left;
}

.news-list .data span:before{
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 10px;
    content: '';
    margin-top: -6px;
    background-color: #C1C1C1;
    margin-left: -20px;
}

.news-list .data span:first-child{
    margin: 0;
}

.news-list .data span:first-child:before{
    display: none;
}

.news-list .data .day{
    padding-left: 17px;
    background-image: url("../img/icon_15.png");
}

.news-list .data .read{
    padding-left: 17px;
    background-image: url("../img/icon_16.png");
}

.news-list p{
    font-size: 16px;
    line-height: 26px;
    color: #777;
}
.news-list i{
    font-style: normal;
    display: block;
    border: 1px solid #C1C1C1;
    line-height: 46px;
    color: #777;
    font-size: 16px;
    width: 140px;
    height: 46px;
    padding: 0 27px;
    background-image: url("../img/icon_17.png");
    background-repeat: no-repeat;
    background-position: center right 27px;
    margin-top: 15px;
}

.news-wrap a:hover .image img{
    transform: scale(1.1);
}

.news-wrap a:hover .news-items{
    box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.2);
}

.news-wrap a:hover h3{
    color: #00937D;
}

.news-wrap a:hover i{
    border: 1px solid #00937D;
    color: #00937D;
}

@media (max-width: 992px) {
    .news-list .news-wrap li{
        border-left: 1px solid #F0F0F0;
        margin-top: 15px;
    }
    .news-list .news-items .article{
        padding: 15px;
    }
    .news-list .article h3{
        font-size: 18px;
        line-height: 26px;
        font-weight: normal;
    }
    .news-list .article h3 b{
        font-weight: normal;
    }
    .news-list .article .data{
        margin: 5px 0 10px;
    }
    .news-list p{
        font-size: 16px;
        line-height: 1.6;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        white-space: normal;
    }
    .news-list i{
        padding: 0 10px;
        width: 120px;
        font-size: 14px;
        line-height: 36px;
        height: 36px;
        background-position: center right 15px;
        margin-top: 20px;
    }
}

@media (max-width: 375px) {
    .news-list .data span{
        margin-left: 20px;
    }
    .news-list .data span:before{
        margin-left: -10px;
    }
}