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

/* 新闻列表 */
.news ul li a {
    display: block;
    padding: 10px 0;
    color: #000;
}

.new-li-box {
    background: #f9eccd;
}


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

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

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

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

@media (min-width:1200px) {
    .news ul li a {
        display: block;
        padding: 30px 0;
        color: #000;
    }

    .new-li-box {
        position: relative;
        height: 135px;
        background: #f9eccd;
        border-radius: 65px;
    }

    .news ul li:nth-child(2n+1) .new-li-box {
        padding: 0 40px 0 200px;
    }

    .news ul li:nth-child(2n) .new-li-box {
        padding: 0 200px 0 40px;
    }


    .new-li-img {
        position: absolute;
        top: -20px;
        width: 185px;
        height: 185px;
        overflow: hidden;
        border-radius: 50%;
        border-top-right-radius: 0;
    }

    .news ul li:nth-child(2n+1) .new-li-img {
        left: 0;
    }

    .news ul li:nth-child(2n) .new-li-img {
        right: 0;
    }


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

    .new-li-font {
        padding: 0;
    }

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

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

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

    .news ul li a:hover .new-li-box {
        background: #e60012;
    }
}

/* 新闻详情 */

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