/* 新闻列表 */

.news {}
.news ul li {
    padding: 2px 0;
}

.news ul a {
    display: block;
    padding: 5px;
    color: #000;
    background: #f0f0f0;
    transition: 0.6s;
}

.new-li-img {
    padding: 10px 10px 10px 16px;
    background: #dedede url(../images/new_li_line.png) no-repeat 2px center;
}

.new-li-img img {
    width: 100%;
    border: 3px solid #fff;
}


.new-li-title {
    position: relative;
    margin-top: 10px;
    padding-left: 10px;
    overflow: hidden;
    font: bold 18px/30px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-title::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 5px;
    width: 3px;
    height: 18px;
    background: #000;
}

.new-li-p {
    height: 60px;
    margin: 10px 0;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
}

.new-li-time {
    padding-left: 24px;
    font: 400 14px/30px '微软雅黑';
    background: url(../images/mouse.png) no-repeat 0 center/20px;
}

@media (min-width: 1200px) {
    .news {
        padding: 20px 60px;
    }

    .news ul li {
        padding: 20px 0;
    }

    .news ul a {
        display: flex;
        justify-content: space-between;
        padding: 15px;
        color: #000;
        background: #f0f0f0 no-repeat right bottom;
        transition: 0.6s;
    }

    .new-li-img {
        width: 310px;
        height: 200px;
        padding: 10px 10px 10px 16px;
        background: #dedede url(../images/new_li_line.png) no-repeat 2px center;
    }

    .new-li-img img {
        width: 100%;
        height: 100%;
        border: 3px solid #fff;
    }

    .new-li-font {
        width: 660px;
    }

    .new-li-title {
        position: relative;
        margin-top: 24px;
        padding-left: 18px;
        overflow: hidden;
        font: bold 24px/30px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-title::after {
        content: '';
        position: absolute;
        z-index: 1;
        left: 0;
        top: 5px;
        width: 5px;
        height: 20px;
        background: #000;
    }

    .new-li-p {
        height: 60px;
        margin: 30px 0 15px;
        overflow: hidden;
        font: 400 16px/30px '微软雅黑';
    }

    .new-li-time {
        padding-left: 54px;
        font: 400 16px/36px '微软雅黑';
        background: url(../images/mouse.png) no-repeat 0 center;
    }

    .news ul a:hover {
        color: #fff;
        background: #189c77 url(../images/new_icon.png) no-repeat right bottom;
        transform: translate3d(-20px,0,0);
    }

    .news ul a:hover .new-li-title {
        color: #fff;
    }

    .news ul a:hover .new-li-title::after{
        background: #fff;
    }

    .news ul a:hover .new-li-p {
        color: #fff;
    }
    .news ul a:hover .new-li-time{
        background-image: url(../images/mousea.png);
    }

}


/* 新闻详情 */

.new-er {}

.new-er-title {
    text-align: center;
}

.new-er-name {
    font: bold 16px/24px "微软雅黑";
    color: #333;
}

.new-er-time {
    font: 400 14px/24px "微软雅黑";
    color: #999;
}

.new-er-p p {
    margin-bottom: 10px;
    font: 400 14px/24px "微软雅黑";
    color: #333;
    text-align: justify;
}

.new-er-p  img {
   width: 100%;
}

@media (min-width: 1200px) {
    .new-er {
        padding: 50px 150px;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #fff;
        text-align: left;
        border-bottom: 1px solid #333;
    }

    .new-er-name {
        color: #333;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #333;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #333;
    }
}