/* 新闻列表 */

.news {}

.news ul li {

    background: url(../images/new_li_line.png) repeat-x 0 bottom;
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    padding: 0.4rem 0;
}

.new-li-title {
    overflow: hidden;
    font: bold 0.4rem/0.6rem '微软雅黑';
    color: #3d3d3d;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-time {
    margin: 0.2rem 0 0;
    padding: 0 0 0 15px;
    font: 400 12px/18px '微软雅黑';
    color: #333333;
    background: url(../images/time_icon.png) no-repeat 0 center/10px;
}

.new-li-p {
    height: 96px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
    color: #333333;
    text-align: justify;
}

.new-li-more span {
    display: none;
}

@media (min-width: 1200px) {
    .news {}


    .news ul a {
        display: flex;
        justify-content: space-between;
        padding: 30px 30px 32px 20px;
        background: url(../images/new_lia_line.png) no-repeat 0 bottom/0 2px;
        transition: 0.6s background;
    }

    .new-li-img {
        width: 490px;
    }

    .new-li-img img {
        width: 490px;
    }

    .new-li-font {
        display: flex;
        justify-content: space-between;
        width: 640px;
        padding: 24px 0 0;
    }

    .new-li-left {
        width: 250px;
    }

    .new-li-title {
        height: 48px;
        font: bold 24px/42px '微软雅黑';
    }

    .new-li-time {
        margin: 34px 0 0;
        padding: 0 0 0 20px;
        font: 400 14px/24px '微软雅黑';
    }

    .new-li-right {
        width: 300px;
    }

    .new-li-p {
        height: 120px;
        overflow: hidden;
        font: 400 14px/24px '微软雅黑';
        color: #333333;
        text-align: justify;
    }

    .new-li-more span {
        display: block;
        font: 400 14px/24px '微软雅黑';
        color: #910000;
        background: url(../images/new_arrow.png) no-repeat 60px center;
    }

    .news li a:hover .new-li-title {
        color: #910000;
    }

    .news li a:hover {
        background-size: 670px 2px;
        transform: translateY(0);
    }

}


/* 新闻详情 */

.new-er {}

.new-er-title {
    padding: 10px 0;
    font: bold 18px/30px '微软雅黑';
    color: #000;
    text-align: center;
}


.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: 0 0 20px;
    }

    .new-er-title {
        position: relative;
        padding: 30px 0;
        font: bold 24px/30px '微软雅黑';
        color: #000;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #333333;
    }
}