/* 新闻列表 */

.news {}

.new-banner {
    position: relative;
}

.new-banner a {
    display: block;
}

.new-top-img img {
    width: 100%;
}

.new-top-font {
    color: #000;
    border-top: 2px solid #04287e;
}

.new-top-title {
    font-size: 16px;
    line-height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-top-p {
    height: 60px;
    margin: 5px 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
}

.new-top-time {
    width: 100px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background: #04287e;
}

#new-page {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    z-index: 10;
    left: auto;
    right: 5px;
    bottom: 5px;
    width: 100px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 0 15px;
    background: url(../images/new_icon.png) no-repeat center center;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: url(../images/new_icona.png) no-repeat center center;
}

.news ul {}

.news ul li {
    padding: 6px 0;
    border-bottom: 1px dashed #0d0036;
}

.news li a {
    display: block;
}

.new-li-img {
    overflow: hidden;
}

.new-li-img img {
    width: 100%;
    transition: 0.3s;
}

.new-li-font {
    color: #000;
}

.new-li-title {
    font-size: 16px;
    line-height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 60px;
    margin: 0 0 5px 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
}

.new-li-time {
    width: 100px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background: #04287e;
}

@media (min-width: 1200px) {
    article {}
    .new-top {
        margin: 2vw 0 0;
        background: url(../images/new_top_bg.png) no-repeat right center/100% 100%;
    }
    .new-banner {
        position: relative;
    }
    .new-banner a {
        display: flex;
        justify-content: space-between;
    }
    .new-top-img {
        width: 20vw;
    }
    .new-top-img img {
        width: 100%;
    }
    .new-top-font {
        width: 41vw;
        padding: 1.5vw 5vw 0 0;
        color: #000;
        border-top: 4px solid #04287e;
    }
    .new-top-title {
        font-size: 1.2vw;
        line-height: 1.5vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new-top-p {
        height: 7.2vw;
        margin: 1.2vw 0;
        overflow: hidden;
        font-size: 0.8vw;
        line-height: 1.2vw;
    }
    .new-top-time {
        width: 5vw;
        font-size: 0.75vw;
        line-height: 1vw;
        color: #fff;
        text-align: center;
        background: #04287e;
    }
    #new-page {
        display: block;
        position: absolute;
        z-index: 10;
        left: auto;
        right: 1.2vw;
        top: 2vw;
        bottom: auto;
        width: 20px;
    }
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 0 15px;
        background: url(../images/new_icon.png) no-repeat center center;
        opacity: 1;
    }
    .swiper-pagination-bullet-active {
        background: url(../images/new_icona.png) no-repeat center center;
    }
    .news ul {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }
    .news ul li {
        width: 33.3%;
        padding: 3vw 0.5vw;
        border-bottom: 1px dashed #0d0036;
    }
    .news ul li:nth-child(3n) {
        padding-left: 1vw;
        padding-right: 0;
    }
    .news ul li:nth-child(3n+1) {
        padding-left: 0;
        padding-right: 1vw;
    }
    .news li a {
        display: block;
        transition: 0.3s;
    }
    .new-li-img {
        overflow: hidden;
    }
    .new-li-img img {
        width: 100%;
        transition: 0.3s;
    }
    .new-li-font {
        padding: 1.5vw 2px 0;
    }
    .new-li-title {
        height: 2.4vw;
        overflow: hidden;
        font-size: 1vw;
        line-height: 1.2vw;
        color: #000;
    }
    .new-li-p {
        height: 3.6vw;
        margin: 1.2vw 0;
        overflow: hidden;
        font-size: 0.8vw;
        line-height: 1.2vw;
        color: #999999;
    }
    .new-li-time {
        width: 5vw;
        font-size: 0.75vw;
        line-height: 1vw;
        color: #fff;
        text-align: center;
        background: #04287e;
    }
    .news li a:hover {
        transform: translate3d(0, -0.5vw, 0);
    }
    .news li a:hover .new-li-img img {
        transform: scale(1.05);
    }
}


/* 新闻详情 */

.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: 10px 40px 30px;
    }
    .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;
    }
}