/* 新闻列表 */

.news {}

.new-nav ul {
    display: flex;
    flex-wrap: wrap;
}

.new-nav ul li {
    width: 33.3%;
    padding: 2px;
}

.new-nav ul a {
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
}

.new-nav ul a .ch {
    position: relative;
    z-index: 5;
    font: bold 16px/30px '微软雅黑';
    color: #19499c;
}

.new-nav ul a .en {
    display: none;
}

.new-nav ul li.active a {
    background: #4f8ad9;
}

.new-nav ul li.active a .ch {
    color: #fff;
}


.news {
    margin-top: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
}


.news ul li {
    padding: 10px 0;
}

.news ul a {
    display: block;
    padding: 10px;
    background: #fff;
}


.new-li-img img {
    width: 100%;
}

.new-li-font {
    position: relative;
    padding: 0 0 0 10px;
}

.new-li-font::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 18px;
    background: #333;
}

.new-li-title {
    overflow: hidden;
    font: bold 16px/30px '微软雅黑';
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-time {
    margin: 10px 0 0;
    font: 400 12px/20px '微软雅黑';
    color: #383838;
    opacity: 0.75;
}

.new-li-p {
    height: 48px;
    font: 400 14px/24px '微软雅黑';
    color: #000;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .new-nav {}

    .new-nav ul {
        display: flex;
        justify-content: space-around;
    }

    .new-nav ul li {
        width: 345px;
        background: #ffffff;
    }

    .new-nav ul a {
        position: relative;
        display: block;
        overflow: hidden;
        padding: 20px 0;
    }

    .new-nav ul a .ch {
        font: bold 20px/30px '微软雅黑';
    }

    .new-nav ul a .en {
        display: block;
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        padding: 10px 0 0;
        text-align: center;
        color: #19499c;
        opacity: 0.1;
        font: bold 50px/1 '微软雅黑';
        transition: 0.6s;
    }

    .new-nav ul a:hover {
        background: #4f8ad9;
    }

    .new-nav ul a:hover .ch {
        color: #fff;
    }

    .new-nav ul a:hover .en {
        transform: rotate(-20deg);
    }

    .new-nav ul .active a {
        background: #4f8ad9;
    }

    .new-nav ul .active a .ch {
        color: #fff;
    }

    .new-nav ul .active a .en {
        transform: rotate(-20deg);
    }

    .news {
        margin-top: 25px;
        padding: 0 30px;
        background: none;
    }

    .news ul {
        padding: 10px 20px;
        background: rgba(0, 0, 0, 0.3);
    }

    .news ul li {
        padding: 15px 0;
    }

    .news ul a {
        display: flex;
        justify-content: space-between;
        padding: 15px 30px;
        background: #fff;
        transition: 0.6s;
    }

    .new-li-img {
        width: 180px;
        height: 120px;
        overflow: hidden;
    }

    .new-li-img img {
        width: 100%;
    }

    .new-li-font {
        position: relative;
        width: 840px;
        padding: 0 0 0 10px;
    }

    .new-li-font::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        width: 6px;
        height: 20px;
        background: #333;
    }

    .new-li-title {
        overflow: hidden;
        font: bold 18px/30px '微软雅黑';
        color: #333;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-time {
        margin: 10px 0 10px;
        font: 400 12px/20px '微软雅黑';
        color: #383838;
        opacity: 0.75;
    }

    .new-li-p {
        height: 48px;
        font: 400 14px/24px '微软雅黑';
        color: #000;
        overflow: hidden;
    }

    .news ul a:hover {
        background: #357dd7;
        transform: translate3d(-20px,0,0);
    }

    .news ul a:hover .new-li-font {
        color: #fff;
    }

    .news ul a:hover .new-li-font::before {
        background: #fff;
    }

    .news ul a:hover .new-li-title {
        color: #fff;
    }

    .news ul a:hover .new-li-time {
        color: #fff;
    }

    .news ul a:hover .new-li-p {
        color: #fff;
    }

    .pages {
        margin: 20px 30px 0;
        background: rgba(0, 0, 0, 0.6);
    }
}


/* 新闻详情 */

.new-er {
    margin: 20px 2px 0;
    background: rgba(255, 255, 255, 0.9);
}

.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 {
        margin: 25px 28px 0;
        padding: 50px 150px;

    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #fff;
        text-align: left;
    }

    .new-er-name {
        font: bold 18px/24px "微软雅黑";
        color: #333;
    }

    .new-er-time {
        margin: 10px 0;
        padding-left: 10px;
        font: 400 16px/20px '微软雅黑';
        color: #383838;
        background: url(../images/new_er_line.png) no-repeat 0 center;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #333;
    }
}