/* 新闻列表 */

.news {
    padding:10px 15px;
}

.news ul li {
    padding: 5px 0;
}

.news ul a {
    display: block; 
    background: rgba(255, 255, 255, 0.9);
}


.new-li-img img {
    width: 100%;
}

.new-li-font {
    padding: 10px;
    color: rgba(0, 0, 0, 0.7);
}

.new-li-title {
    overflow: hidden;
    font: bold 16px/30px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
}

.new-li-time {
    padding: 5px 0;
    font: 400 14px/18px '微软雅黑';
}

.new-li-p {
    height: 48px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
}

@media (min-width: 1200px) {
    .news {
        width: 1000px;
        margin: 0 auto;
        padding: 50px;
    }

    .news ul li {
        padding: 20px 0;
    }

    .news ul a {
        display: flex;
        transition: 0.6s;
    }

    .new-li-img {
        width: 350px;
    }

    .new-li-img img {
        width: 100%;
    }

    .new-li-font {
        width: 650px;
        padding: 30px;
        color: rgba(0, 0, 0, 0.7);
        background: #fff url(../images/new_li_bg.png) no-repeat 0 0/0 100%;
        transition: 0.5s;
    }

    .new-li-title {
        overflow: hidden;
        font: bold 20px/32px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #000;
    }

    .new-li-time {
        padding: 9px 0;
        font: 400 14px/18px '微软雅黑';
    }

    .new-li-p {
        height: 60px;
        overflow: hidden;
        font: 400 16px/30px '微软雅黑';
    }

    .news ul a:hover .new-li-font {
        color: #fff;
        background-size: 100% 100%;
    }

    .news ul a:hover .new-li-title {
        color: #fff;
    }

    .pages {
        padding: 20px 40px;
    }
}


/* 新闻详情 */

.new-er {}

.new-er-title {
    text-align: center;
}

.new-er-name {
    font: bold 16px/24px "微软雅黑";
    color: #333;
}

.new-er-time {
    font: 400 14px/24px "微软雅黑";
    color: #999;
}

.new-er-p p {
    margin-bottom: 10px;
    font: 400 14px/24px "微软雅黑";
    color: #333;
    text-align: justify;
}

.new-er-p p img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .new-er {
        padding: 50px 150px;
        background: rgba(255, 255, 255, 0.9);
    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #fff;
        text-align: left;
        border-bottom: 1px solid #333;
    }

    .new-er-name {
        color: #333;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #333;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #333;
    }
}