/* 新闻列表 */

.news ul {
    padding: 10px;
}

.news ul li {
    padding: 10px;
    text-align: left;
}

.news ul li a {
    display: block;
    background: #f5f7f9;
}

.new-li-img {
    width: 100%;
    overflow: hidden
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    position: relative;
    padding: 10px;
}

.new-li-title {
    margin: 0 0 10px;
    overflow: hidden;
    color: #1f1f1f;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer
}

.new-li-p {
    overflow: hidden;
    margin-bottom: 10px;
    font-size: 14px;
    color: #000;
}

.new-li-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #dbd9dc
}

.new-li-time {
    font-size: 14px;
    color: #888;
}

.new-li-more {
    font-size: 1.042vw;
    padding-right: 1.458vw;
    color: #000;
    background: url(../images/arrow_right_b.png) no-repeat right center;
}

.page-box {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 20px;
}

.page-prev {
    width: 24px;
    height: 24px;
    background: #f7f7f7;
    border-radius: 50%;
    cursor: pointer;
}

.page-prev span {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/arrow_left_b.png) no-repeat center center;
}

.page-next {
    width: 24px;
    height: 24px;
    background: #f7f7f7;
    border-radius: 50%;
    cursor: pointer;
}

.page-next span {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/arrow_right_b.png) no-repeat center center;
}

.page-num {
    display: flex;
    justify-content: center;
    font-size: 16px;
}

.page-num a {
    padding: 0 5px;
}

@media (min-width: 1200px) {
    .news {
        width: 76vw;
        margin: 0 auto;
        padding: 3vw 0;
    }
    .news ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0;
    }
    .news ul li {
        width: 33.3%;
        padding: 1vw;
        text-align: left;
    }
    .news ul li a {
        display: block;
        background: #f5f7f9;
        transition: 0.6s;
    }
    .new-li-img {
        width: 100%;
        overflow: hidden
    }
    .new-li-img img {
        width: 100%;
    }
    .new-li-font {
        position: relative;
        padding: 1vw;
    }
    .new-li-title {
        margin: 0 0 1vw;
        overflow: hidden;
        color: #1f1f1f;
        font-size: 1.5vw;
        line-height: 1;
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer
    }
    .new-li-p {
        height: 6.252vw;
        overflow: hidden;
        margin-bottom: 0.781vw;
        font-size: 1.042vw;
    }
    .new-li-bottom {
        display: flex;
        justify-content: space-between;
        padding: 1vw 0 0;
        border-top: 1px solid #dbd9dc
    }
    .new-li-time {
        font-size: 1.042vw;
        color: #888;
    }
    .new-li-more {
        font-size: 1.042vw;
        padding-right: 1.458vw;
        background: url(../images/arrow_right_b.png) no-repeat right center;
    }
    .news ul li a:hover {
        transform: translate3d(0, -1vw, 0);
    }
    .news ul li a:hover .new-li-title {
        color: #0047ba
    }
    .pages {
        padding: 1vw 1vw;
    }
}


/* 详情 */

.new-er {
    padding: 20px;
}

.new-er-title {
    padding-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.new-er-info {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    border-bottom: 1px solid #e5e5e5;
}

.new-er-info span {
    margin-right: 1.302vw;
    padding-right: 1.302vw;
    border-right: 1px solid #f5f7f9;
}

.new-er-p {
    font-size: 14px;
}

.new-er-p p {
    margin-bottom: 10px;
}

@media (min-width: 1200px) {
    .new-er {
        width: 74vw;
        margin: 0 auto;
        padding: 0;
    }
    .new-er-title {
        padding: 1vw 0;
        font-size: 2.604vw;
        color: #333;
    }
    .new-er-info {
        display: flex;
        margin-bottom: 3vw;
        padding-bottom: 2vw;
        font-size: 1.042vw;
        border-bottom: 1px solid #e5e5e5;
    }
    .new-er-info span {
        margin-right: 1.302vw;
        padding-right: 1.302vw;
        border-right: 1px solid #f5f7f9;
    }
    .new-er-p {
        font-size: 1.042vw;
    }
    .new-er-p p {
        margin-bottom: 0.8vw;
    }
}