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

/* 新闻列表 */
.news {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.7);
}

.news li {
    padding: 5px 0;
}

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

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


.new-li-title {
    overflow: hidden;
    padding: 5px 0;
    font: 400 18px/30px '微软雅黑';
    text-overflow: ellipsis;
    word-wrap: normal;
}

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

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

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

    .news li {
        padding: 30px 0;
        border-bottom: 1px dashed #000;
    }

    .news li a {
        display: flex;
        justify-content: space-between;
        padding: 0;
    }

    .new-li-img {
        width: 290px;
        height: 190px;
        overflow: hidden;
    }

    .new-li-img img {
        transition: 1s;
    }

    .new-li-font {
        width: 750px;
    }

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

    .new-li-time span {
        padding-right: 5px;
        font-size: 36px;
    }

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

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

    .news li a:hover {}

    .news li a:hover .new-li-img img {
        transform: scale(1.05);
    }
}


/* 新闻详情 */

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

.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%;
}

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

    .new-er-title {
        position: relative;
        padding: 0 0 10px;
        font: 400 30px/36px '微软雅黑';
        color: #202020;
        text-align: center;
    }

    .new-er-time {
        color: #202020;
    }

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