    /* 新加代码 */
    .Nybanner img {
        display: none;
    }

    .NewsBox1 {
        width: 100%;
        padding: 0 var(--container);
        padding-top: 180px;
        padding-bottom: 120px;
        background: #EFF2FB;
    }

    .Swiper1 {
        width: 100%;
    }

    .slide1 {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }

    .slide1 .img {
        width: 47%;
    }

    .slide1 .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slide1 .desc {
        width: 53%;
        background: #fff;
        padding: 90px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        grid-gap: 30px;
    }

    .slide1 .desc h1 {
        color: #000;
        font-size: 38px;
        line-height: 1.5;
    }

    .slide1 .desc span {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        grid-gap: 45px;
    }

    .slide1 .desc span .aa {
        display: block;
        width: 100%;
        height: 1px;
        background: #CDCDCD;
    }

    .slide1 .desc span p {
        position: relative;
        display: inline-block;
        color: var(--color);
        font-size: 22px;
        line-height: 1.5;
        border-bottom: 2px solid var(--color);
    }

    .Swiper1 .pagination1 {
        position: absolute;
        z-index: 2;
        left: auto;
        right: 90px;
        top: auto;
        bottom: 90px;
        width: 15%;
        display: flex;
        grid-gap: 10px;
    }

    .Swiper1 .pagination1 span {
        margin: 0 !important;
        width: 100%;
        height: 3px;
        border-radius: 0;
        opacity: 1;
        background: #E5E5E5;
    }

    .Swiper1 .pagination1 span.swiper-pagination-bullet-active {
        background: var(--color);
    }

    @media (max-width: 1440px) {
        .slide1 .img {
            width: 50%;
        }

        .slide1 .desc {
            width: 50%;
            padding: 60px;
        }

        .slide1 .desc h1 {
            font-size: 28px;
        }

        .Swiper1 .pagination1 {
            right: 60px;
            bottom: 60px;
        }
    }

    @media (max-width: 1200px) {
        .NewsBox1 {
            width: 100%;
            padding: 90px var(--container);
            background: #EFF2FB;
        }

        .slide1 .desc {
            width: 50%;
            padding: 30px;
        }

        .Swiper1 .pagination1 {
            right: 30px;
            bottom: 30px;
        }

        .slide1 .desc span p {
            font-size: 16px;
        }

        .slide1 .desc h1 {
            font-size: 18px;
        }

        .slide1 .desc span {
            grid-gap: 15px;
        }
    }

    @media (max-width: 720px) {
        .NewsBox1 {
            padding: 60px var(--container);
        }

        .NewsBox1 {
            flex-wrap: wrap;
        }

        .slide1 .img {
            width: 100%;
        }

        .slide1 .desc {
            width: 100%;
        }

        .Swiper1 .pagination1 {
            width: 50%;
        }
    }

    .Search1 {
        margin-top: 80px;
        margin-bottom: 50px;
        width: 550px;
        height: 80px;
        background: #EEF0F4;
        padding: 20px 50px;
        display: flex;
    }

    .searchInput1 {
        width: 100%;
        height: 40px;
        outline: none;
        background: #fff0;
    }

    .subButn1 {
        width: 40px;
        height: 40px;
    }

    .subButn1 i {
        font-size: 24px;
        color: #AEB0B4;
    }

    @media (max-width: 720px) {
        .Search1 {
            margin: 60px 0;
            width: 100%;
            padding: 20px 30px;
        }
    }

    /* 新闻列表 */
    .NeweList {
        margin-bottom: 45px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 40px 50px;
    }

    .NewsItem {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
    }


    .NewsItem .img {
        width: 100%;
    }

    .NewsItem .img img {
        width: 100%;
    }

    .NewsItem .text {
        background: #FFF;
        box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
        width: 100%;
        height: 100%;
        padding: 45px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        grid-gap: 45px;
    }

    .NewsItem .text h1 {
        color: #000;
        font-size: 28px;
        line-height: 1;
        margin-bottom: 15px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .NewsItem .text h2 {
        color: #6A6A6A;
        font-size: 16px;
        line-height: 1.5;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }


    .NewsItem .text .aa {
        width: 100%;
        height: 2px;
        margin-bottom: 30px;
        background: #D7D7D7;
    }

    .NewsItem .text p {
        display: inline-block;
        color: #AEB0B4;
        font-size: 16px;
        line-height: 1.5;
        border-bottom: 2px solid #AEB0B4;
    }

    .NewsItem:hover .text .aa {
        background: var(--color);
    }

    .NewsItem:hover .text p {
        color: var(--color);
        border-bottom: 2px solid var(--color);
    }

    @media (max-width: 1440px) {
        .NewsItem .text {
            padding: 30px;
        }

        .NewsItem .text h1 {
            font-size: 24px;
        }
    }

    @media (max-width: 1200px) {
        .NeweList {
            grid-gap: 30px;
        }
    }

    @media (max-width: 1000px) {
        .NeweList {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 720px) {
        .NewsItem .text {
            padding: 20px;
            grid-gap: 20px;
        }

        .NewsItem .text h1 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .NewsItem .text h2 {
            font-size: 14px;
        }

        .NewsItem .text .aa {
            margin-bottom: 15px;
        }
    }

    @media (max-width: 460px) {
        .NeweList {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    /* 详情 */
    /* 详情 */
    /* 详情 */
    .Ny_NewsPost {
        padding: 0 3vw;
    }

    .Ny_NewsPost .title {
        display: block;
        width: 100%;
        font-size: 24px;
        line-height: 2;
        font-weight: bold;
        text-align: center;
    }

    .Ny_NewsPost .desc {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .Ny_NewsPost .desc span {
        margin: 0 5px;
        color: #999;
        font-size: 14px;
        line-height: 3;
        text-align: center;
    }

    .Ny_NewsPost .Ny_xiangqing {
        margin-top: 30px;
        margin-bottom: 30px;
        min-height: 500px;
    }

    .Ny_NewsPost .Ny_xiangqing p {
        margin: 0;
    }


    @media (max-width: 720px) {

        .Ny_NewsPost .title {
            margin-top: 15px;
            margin-bottom: 10px;
            font-size: 18px;
            line-height: 1.5;
        }


    }