article {
    background: url(../images/news_bg.jpg) no-repeat center bottom /cover;
}

/* 新闻列表 */
.news-banner {
    display: none;
}

.news li {
    padding: 4px 0;
}

.news li a {
    display: block;
    padding: 0;
    color: #000;
    background: #fff;
}

.new-li-img {
    width: 100%;
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    padding: 10px;
}

.new-li-title {
    overflow: hidden;
    font: 400 18px/24px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 48px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
}

.new-li-time {
    font: 400 12px/20px '微软雅黑';
}

@media (min-width:1200px) {
    .news {
        padding: 60px 35px 10px;
    }

    .news-banner {
        display: block;
        padding: 0 0 30px;
    }

    .news-banner img {
        width: 100%;
    }

    .news li {
        padding: 0 0 20px;
    }

    .news li a {
        display: flex;
        justify-content: space-between;
        padding: 20px 30px 20px 45px;
        color: #000;
        background: #fff;
    }

    .new-li-img {
        width: 196px;
        height: 120px;
    }

    .new-li-img img {
        width: 100%;
        height: 100%;
    }

    .new-li-font {
        width: 830px;
        padding: 0;
    }

    .new-li-title {
        overflow: hidden;
        font: 400 24px/30px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 48px;
        overflow: hidden;
        font: 400 14px/24px '微软雅黑';
    }

    .new-li-time {
        font: 400 14px/24px '微软雅黑';
    }

    .news li a:hover {
        color: #008a00;
    }

}

/* 新闻详情 */

.new-er {
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
}

.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-content p {
    margin-bottom: 10px;
    font: 400 14px/24px '微软雅黑';
    color: #333;
    text-align: justify;
}

.new-er-content p img {
    width: 100%;
    max-width: 100%;
}

@media (min-width:1200px) {
    .new-er {
        padding: 20px;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        font: 400 30px/36px '微软雅黑';
        color: #202020;
        text-align: left;
        border-bottom: 1px solid #999;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #202020;
    }

    .new-er-content p {
        font: 400 16px/30px '微软雅黑';
    }
}