/* 新闻列表 开始 */
.newList {
    width: 100%;
    padding: 70px 0 60px;
}

.newList .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newList .tabs .tab {
    padding: 0 35px;
    background-color: #F9F9F9;
    margin-right: 6px;
    font-size: 18px;
    : Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    line-height: 49px;
    transition: 0.5s;
}

.newList .tabs .tab:last-child {
    margin: 0;
}

.newList .tabs .tab.active,
.newList .tabs .tab:hover {
    cursor: pointer;
    background-color: #CE1C24;
    color: #fff;
}

.newList .nTop {
    margin-top: 50px;
    box-shadow: 0px 0px 31px 37px rgba(18, 18, 18, 0.02);
    background: url('../images/new_nTop_bg.png') no-repeat bottom right;
}

.newList .nTop .one {
    width: 100%;
    padding: 16px 40px 16px 16px;
    display: flex;
    justify-content: space-between;
}

.newList .nTop .one .imgWrapper {
    width: 32%;
}

.newList .nTop .one .nTInfo {
    width: 62%;
    padding: 40px 0;
    : Barlow Condensed Medium;
    font-weight: 400;
}

.newList .nTop .one .nTInfo .time,
.newList .list .one .time {
    display: flex;
    flex-direction: column;
}

.newList .nTop .one .nTInfo .time .date {
    font-size: 47px;
    color: #333333;
}

.newList .nTop .one .nTInfo .time .YandM,
.newList .list .one .time .YandM {
    font-size: 16px;
    color: #666666;
}

.newList .nTop .one .nTInfo .title {
    font-size: 24px;
    font-weight: 400;
    color: #333333;
    line-height: 32px;
    margin-top: 25px;
}

.newList .nTop .one .nTInfo .text,
.newList .list .one .text {
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    margin-top: 50px;
}

.newList .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0 50px;
    margin-top: 70px;
}

.newList .list .one {
    border-top: 1px solid #C9C9C9;
    padding: 60px 30px 80px 15px;
    : Source Han Sans CN;
    font-weight: 400;
    transition: 0.5s;
}

.newList .list .one .time .date {
    font-size: 42px;
    color: #333333;
}

.newList .list .one .title {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    transition: 0.5s;
}

.newList .list .one .text {
    margin-top: 65px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.newList .list .one .text>i {
    font-size: 22px;
}

.newList .list .one:hover {
    background: #F9F9F9;
    border-top: 1px solid #F9F9F9;
}

.newList .list .one:hover .title {
    color: #CE1C24;
}

/* 新闻列表 结束 */


/* 分页器   开始 */
.pagination {
    width: 100%;
    margin: 20px 0 60px;
}

.pagination .pages {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.pagination .pages .page {
    /* width: 38px; */
    /* height: 38px; */
    /* line-height: 38px; */
    text-align: center;
    border: 1px solid #C9C9C9;
    border-radius: 3px;
    font-size: 14px;
    : Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    margin-right: 12px;
    transition: 0.3s;
}

.pagination .pages .page:last-of-type {
    margin: 0;
}

.pagination .pages .page.prev,
.pagination .pages .page.next {
    width: auto;
    padding: 0 12px;
}

.pagination .pages .page.more {
    border: none;
}

.pagination .pages .page.current,
.pagination .pages .page:hover:not(.pagination .pages .page.more) {
    background-color: #CE1C24;
    color: #fff;
    border: 1px solid #CE1C24;
}

/* 分页器   结束 */



@media screen and (max-width: 1680px) {
    .newList .nTop .one .imgWrapper {
        width: 40%;
    }

    .newList .nTop .one .nTInfo {
        width: 55%;
    }
}


@media screen and (max-width: 1440px) {
    .newList .nTop .one .nTInfo .time .date {
        font-size: 38px;
    }

    .newList .nTop .one .nTInfo .title,
    .newList .list .one .title {
        margin-top: 20px;
    }

    .newList .nTop .one .nTInfo .text,
    .newList .list .one .text {
        margin-top: 30px;
    }

    .newList .list .one {
        padding: 50px 20px;
    }

    .newList .list {
        grid-gap: 0 40px;
    }

    .newList .list .one .time .date {
        font-size: 34px;
    }
}


@media screen and (max-width: 1280px) {
    .newList {
        padding: 50px 0;
    }

    .newList .tabs .tab {
        font-size: 16px;
    }

    .newList .nTop .one .nTInfo {
        padding: 30px 0;
    }

    .newList .list {
        margin-top: 50px;
    }

    .newList .nTop .one .nTInfo .time .date {
        font-size: 34px;
    }

    .newList .nTop .one .nTInfo .title {
        font-size: 20px;
    }

    .newList .nTop .one .nTInfo .text,
    .newList .list .one .text {
        font-size: 14px;
        line-height: 1.5;
    }

    .newList .nTop .one .imgWrapper {
        width: 46%;
    }

    .newList .nTop .one .nTInfo {
        width: 52%;
    }

    .newList .list .one {
        padding: 30px 20px;
    }

    .newList .list .one .time .date {
        font-size: 30px;
    }

    .newList .list .one .title {
        font-size: 18px;
    }
}


@media screen and (max-width: 1024px) {
    .newList .nTop .one {
        flex-direction: column;
    }

    .newList .nTop .one .imgWrapper {
        width: 100%;
        order: 2;
    }

    .newList .nTop .one .nTInfo {
        width: 100%;
    }

    .newList .list {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media screen and (max-width: 768px) {
    .newList .tabs .tab {
        padding: 0 25px;
        line-height: 40px;
    }

    .pagination .pages .page.m_no {
        display: none;
    }

    .newList .nTop .one .nTInfo .title {
        font-size: 18px;
    }

    .newList .nTop .one .nTInfo .text,
    .newList .list .one .text {
        margin-top: 20px;
    }

    .newList .nTop .one .nTInfo .time .date {
        font-size: 28px;
    }

    .newList .list .one .time .date {
        font-size: 26px;
    }

    .newList .list .one {
        padding: 20px;
    }

    .newList .list .one .title {
        font-size: 16px;
    }

    .newList .nTop .one .nTInfo .time .YandM,
    .newList .list .one .time .YandM {
        font-size: 14px;
    }

    .newList .list .one .text {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 8;
        -webkit-box-orient: vertical;
    }

    .newList .list .one .text>i {
        float: right;
    }
}


@media screen and (max-width: 600px) {
    .newList {
        padding: 30px 0;
    }

    .newList .list {
        grid-template-columns: repeat(1, 1fr);
    }

    .pagination .pages .page {
        /* width: 30px; */
        /* height: 30px; */
        margin-right: 4px;
    }

    .pagination .pages .page.prev,
    .pagination .pages .page.next {
        padding: 0 6px;
    }

    .newList .tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        text-align: center;
    }
}