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

/* 新闻列表 */

.news ul li {
    width: 100%;
}

.news li a {
    display: block;
    padding: 5px 0;
    color: #000;
    border-bottom: 1px solid #dddddd;
}

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

.new-li-img {
    padding: 5px 0;
}

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

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

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


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

    .news ul {
        display: flex;
        flex-wrap: wrap;
    }

    .news ul li {
        width: 100%;
        padding: 30px 0;
    }

    .news li a {
        display: flex;
        padding: 25px 50px;
        color: #000;
        background: #fff;
    }

    .new-li-img {
        flex-grow: 0;
        width: 150px;
        height: 150px;
    }

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

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

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

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

    .new-li-time {
        padding: 10px 0 0;
        font: 400 16px/24px '微软雅黑';
    }

    .news li a:hover {}

    .news li a:hover .new-li-title {}
}

/* 新闻详情 */

.new-er {
    padding: 10px;
}

.new-er-title {
    text-align: center;
}

.new-er-name {
    font: bold 18px/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 '微软雅黑';
    }
}