/* 新闻列表 */

.news {
    padding: 0;
    background: none;
}

.news ul li {
    padding: 2px 0;
}

.news ul a {
    display: block;
    padding: 10px;
    color: #333;
    background: rgba(255, 255, 255, 0.85);
}

.new-li-img img {
    width: 100%;

}

.new-li-font {

    padding: 5px 0 0;
}

.new-li-title {
    overflow: hidden;
    font: bold 16px/30px "微软雅黑";
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-time {
    padding: 5px 0;
    font: 400 14px/18px '微软雅黑';
}

.new-li-p {
    height: 48px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
}

.new-li-more {
    display: none;

}

@media (min-width: 1200px) {
    .news ul li {
        padding: 0 0 20px;
    }

    .news ul a {
        display: flex;
        justify-content: space-between;
        padding: 14px 28px;
        transition: 0.6s;
    }

    .new-li-img {
        width: 300px;
        height: 170px;
    }

    .new-li-img img {
        width: 100%;
        height: 100%;
    }

    .new-li-font {
        width: 640px;
        padding: 12px 0 0;
    }

    .new-li-title {
        font: bold 18px/30px "微软雅黑";
    }

    .new-li-time {
        padding: 15px 0;
    }

    .new-li-more {
        display: none;
        font: 400 14px/24px "微软雅黑";
        opacity: 0;
    }

    .news ul a:hover {
        background: rgba(19, 61, 146, 0.8);
        color: #fff;
        transform: translate3d(-10px, 0, 0);
    }

    .news ul a:hover .new-li-more {
        opacity: 1;
    }
}


/* 新闻详情 */

.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: 35px 70px;
        background: rgba(255, 255, 255, 0.8);
    }

    .new-er-title {
        padding: 0 0 24px;
    }

    .new-er-name {
        font: bold 18px/30px "微软雅黑";
        color: #222222;
    }

    .new-er-time {
        font: 400 12px/24px "微软雅黑";
        color: #000;
    }

    .new-er-content p {
        font: 400 14px/30px "微软雅黑";
        color: #fff;
    }
}