/* 新闻列表 */

.news {}
.news ul li {
    padding: 2px;
}

.news ul a {
    display: block;
    padding: 10px;
    border: 1px solid #000;
}

.new-li-time {
    font: 400 16px/18px '微软雅黑';
    color: #000;
    background: url(../images/new_li_line.png) no-repeat 0 bottom/0 6px;
    transition: 0.6s;
}

.new-li-img {
    margin-top: 10px;
}

.new-li-img img {
    width: 100%;
    height: 220px;
}

.new-li-title {
    overflow: hidden;
    margin: 5px 0;
    font: 400 18px/24px '微软雅黑';
    color: #000;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 100px;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
    color: #343434;
}

.new-li-more {
    margin-top: 5px;
    font: 400 14px/20px '微软雅黑';
    color: #000;
}

.new-li-more span {
    padding-left: 20px;
}
@media (min-width: 1200px) {
    .news {}
    .news ul{
        display: flex;
        flex-wrap: wrap;
    }
    .news ul li {
        width: 400px;
        border: 1px solid #000;
    }

    .news ul a {
        display: block;
        padding: 50px 30px 90px;
        border: 0;
    }

    .new-li-time {
        font: 400 16px/18px '微软雅黑';
        color: #000;
        background: url(../images/new_li_line.png) no-repeat 0 bottom/0 6px;
        transition: 0.6s;
    }

    .new-li-img {
        margin-top: 30px;
    }

    .new-li-img img {
        width: 100%;
        height: 240px;
    }

    .new-li-title {
        overflow: hidden;
        margin: 25px 0;
        font: 400 24px/30px '微软雅黑';
        color: #000;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 216px;
        overflow: hidden;
        font: 400 14px/24px '微软雅黑';
        color: #343434;
    }

    .new-li-more {
        margin-top: 15px;
        font: 400 14px/24px '微软雅黑';
        color: #000;
    }

    .new-li-more span {
        padding-left: 20px;
    }

    .news ul a:hover {
        background: url(../images/new_li_bg.png) no-repeat center 0;
    }

    .news ul a:hover .new-li-time {
        color: #fff;
        background-size: 90px 6px;
    }

    .news ul a:hover .new-li-title {
        color: #fff;
    }

    .news ul a:hover .new-li-p {
        color: #fff;
    }

    .news ul a:hover .new-li-more {
        color: #fff;
    }

}


/* 新闻详情 */

.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 p img {
    max-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;
    }
}