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

/* 新闻列表 */

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

.news ul li {
    width: 50%;
    padding: 5px;
}

.news ul li a {
    display: block;
    padding: 10px;
    color: #000;
    background: rgba(255, 255, 255, 0.8);
}

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

.new-li-title {
    overflow: hidden;
    padding: 5px 0;
    font: bold 16px/24px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-time {
    display: none;
}

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

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

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

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

    .news ul li a {
        position: relative;
        padding: 0;
        background: none;
    }

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

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

    .new-li-time {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
        width: 72px;
        height: 72px;
        padding: 11px 0 0;
        text-align: center;
        color: #fff;
        background: rgba(154, 8, 21, 0.9);
    }

    .new-li-time .days {
        display: block;
        font: 400 24px/30px '微软雅黑';
    }

    .new-li-time .years {
        display: block;
        font: 400 14px/18px '微软雅黑';
    }

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

    .new-li-more {
        padding: 10px 0;
    }

    .news ul li a:hover {
        /* color: #fff; */
    }

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

    .news ul li a:hover .new-li-more {
        /* border-color: #fff; */
    }
}

/* 新闻详情 */

.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;
        min-height: 600px;
    }

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