/* 新闻列表 */

.news {
    background: rgba(0, 113, 218, 0.8);
}

.news ul li {
    padding: 2px;
}

.news ul a {
    display: block;
    color: #fff;
}

.new-li-img {
    height: 210px;
    overflow: hidden;
}

.new-li-img img {
    width: 100%;
    height: 100%;
}

.new-li-font {
    padding: 5px 0;
}

.new-li-title {
    overflow: hidden;
    font: 400 18px/30px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 48px;
    overflow: hidden;
    font: 400 16px/24px '微软雅黑';
}

@media (min-width: 1200px) {
    .news {}

    .news ul {
        padding: 30px 100px;
    }

    .news ul li {
        padding: 15px 0;
    }

    .news ul a {
        display: flex;
        justify-content: space-between;
        color: #fff;
    }

    .new-li-img {
        width: 250px;
        height: 160px;
        overflow: hidden;
    }

    .new-li-img img {
        width: 100%;
        height: 100%;
        transition: 0.6s;
    }

    .new-li-font {
        width: 690px;
        padding: 30px;
    }

    .new-li-title {
        overflow: hidden;
        font: 400 21px/30px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 60px;
        margin-top: 10px;
        overflow: hidden;
        font: 400 18px/30px '微软雅黑';
    }

    .news ul a:hover .new-li-img {
        border: 5px solid #fff;
    }

    .news ul a:hover .new-li-img img {
        transform: scale(1.1);
    }

    .news ul a:hover .new-li-font {
        color: #000;
        background: #fff;
    }

}


/* 新闻详情 */

.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;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        text-align: left;
        border-bottom: 1px solid #fff;
    }

    .new-er-name {
        color: #fff;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #fff;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #fff;
    }
}