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

/* 新闻列表 */
.news {
    padding: 0;
    background: none;
}

.news ul {
    padding: 0;
}

.news ul li {
    padding: 5px 0;
}

.news ul li a {
    display: block;
    padding: 2px;
    background: #fff;
}

.new-li-img {
    overflow: hidden;
}

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

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

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

.new-li-title {
    overflow: hidden;
    font: bold 16px/24px '微软雅黑';
    color: #2c2c2c;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    font: 400 14px/24px '微软雅黑';
    color: #2c2c2c;
    text-align: justify;
}

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

    .news ul {
        display: flex;
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .news ul li {
        width: 33.33%;
        padding: 0 15px;
    }

    .news ul li a {
        padding: 5px;
    }

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

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

    .new-li-title {
        font: bold 18px/30px '微软雅黑';
    }

    .new-li-p {
        height: 48px;
        overflow: hidden;
    }
}


/* 新闻详情 */

.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 '微软雅黑';
    }
}