article {
    background: url(../images/new_bg.jpg) no-repeat center bottom /cover;
}

/* 新闻列表 */
.news {
    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-left {
    display: none;
}

.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 ul {
        padding: 54px 120px 24px;
        border-bottom: 1px solid #000;
    }

    .news ul li {
        padding: 12px 0;
    }

    .news ul li a {
        display: block;
        position: relative;
        height: 180px;
        overflow: hidden;
        padding: 15px 270px 0 0;
        color: #000;
        background: none;
        transition: transform;
        transition: 0.6s;
    }

    .new-li-img {
        position: absolute;
        right: 0;
        top: 0;
        width: 240px;
    }

    .new-li-img img {
        width: 100%;
        height: 180px;
    }

    .new-li-font {
        display: flex;
        justify-content: space-between;
        width: 640px;
    }

    .new-li-left {
        display: block;
        width: 75px;
        border-right: 1px solid #000;
    }

    .new-li-time .days {
        display: block;
        font: bold 48px/54px '微软雅黑';
    }

    .new-li-time .years {
        display: block;
        font: 400 14px/18px '微软雅黑';
    }

    .new-li-more {
        padding: 25px 0 0;
        font: 400 12px/18px '微软雅黑';
        text-transform: uppercase;
    }

    .new-li-right {
        width: 540px;
    }

    .new-li-title {
        overflow: hidden;
        font: bold 24px/1 '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        min-height: 90px;
        max-height: 150px;
        overflow: hidden;
        margin-top: 10px;
        font: 400 16px/24px '微软雅黑';
        color: #000;
    }

    .news ul li a:hover {
        transform: translate3d(-20px, 0, 0);
    }


}


/* 新闻详情 */

.new-er {}

.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-top: 20px;
    }

    .new-er-title {
        padding-bottom: 20px;
    }

    .new-er-name {
        position: relative;
        font: 400 24px/36px '微软雅黑';
        color: #202020;
        text-align: center;
    }

    .new-er-time {
        color: #333;
    }

    .new-er-content p {
        font: 400 16px/30px '微软雅黑';
    }
}