    /* 推荐新闻 */
    .Box1 {
        width: 100%;
        overflow: hidden;
        margin-bottom: 90px;
    }

    .Swiper1 {
        width: 100%;
        overflow: hidden;
    }

    .item1 {
        display: flex;
        flex-wrap: wrap;
    }

    .item1 .img1 {
        width: 45%;
    }

    .item1 .text1 {
        width: 55%;
        background: #F8FAFC;
        padding: 75px 90px;
    }

    .item1 .text1 h1 {
        font-size: 42px;
        line-height: 1;
        color: #000000;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .item1 .text1 h2 {
        font-size: 16px;
        line-height: 2;
        color: #000000;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        margin: 30px 0 60px;
    }

    .item1 .text1 .aa {
        display: block;
        width: 100%;
        height: 3px;
        background: #D7D7D7;
        margin-bottom: 60px;
        position: relative;
    }

    .item1 .text1 .aa::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 0%;
        height: 100%;
        background: var(--color);
        transition: 0.5s;
    }

    .item1:hover .text1 .aa::after {
        width: 100%;
    }


    .item1 .More {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 240px;
        height: 56px;
        position: relative;
        z-index: 2;
        font-size: 16px;
        color: #FFFFFF;
    }

    .item1 .More::after {
        content: "";
        position: absolute;
        z-index: -1;
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        background: var(--color);
        transform: skewX(-20deg);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    }

    .Swiper1 .swiper-pagination {
        width: 200px;
        height: 3px;
        left: auto;
        right: 90px;
        bottom: 75px;
        display: flex;
        grid-gap: 10px;
    }

    .Swiper1 .swiper-pagination span {
        width: 100%;
        height: 6px;
        border-radius: 0px;
        background: #D9D9D9;
        margin: 0 !important;
        opacity: 1;
        background: #D9D9D9;
    }

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

    @media (max-width: 1440px) {
        .item1 .text1 {
            padding: 60px;
        }

        .item1 .text1 h1 {
            font-size: 38px;
        }

        .item1 .text1 h2 {
            margin: 30px 0;
        }

        .item1 .text1 .aa {
            margin-bottom: 30px;
        }

        .item1 .More {
            width: 180px;
        }
    }

    @media (max-width: 1200px) {
        .Box1 {
            margin-bottom: 60px;
        }

        .item1 .text1 {
            padding: 45px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }

        .item1 .text1 h1 {
            font-size: 32px;
        }

        .Swiper1 .swiper-pagination {
            right: 30px;
            bottom: 30px;
        }

        .item1 .More {
            width: 120px;
            height: 45px;
            font-size: 14px;
        }

        .item1 .text1 h1 {
            font-size: 24px;
        }

        .item1 .text1 h2 {
            font-size: 14px;
            line-height: 1.5;
            margin: 15px 0;
        }

        .item1 .text1 .aa {
            margin-bottom: 15px;
        }
    }

    @media (max-width: 720px) {
        .item1 {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column-reverse;
        }

        .item1 .text1 {
            width: 100%;
            padding: 30px;
        }

        .item1 .img1 {
            width: 100%;
        }

        .item1 .More {
            width: 150px;
        }
    }

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

    .NewsItem {
        width: 100%;
        position: relative;
        transition: 0.5s;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .NewsItem .time {
        font-size: 18px;
        color: #A4A4A4;
        display: flex;
        align-items: baseline;
    }

    .NewsItem .time b {
        font-weight: 700;
        font-size: 38px;
        line-height: 1;
        color: #505050;
        margin-right: 5px;
    }

    .NewsItem img {
        width: 100%;
        margin: 30px 0;
    }

    .NewsItem h1 {
        font-size: 20px;
        line-height: 1.5;
        color: #444444;
    }

    .NewsItem::after {
        content: "";
        position: absolute;
        top: 0;
        right: -36px;
        width: 1px;
        height: 100%;
        background: #BFBFBF;
    }

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

        .NewsItem .time {
            font-size: 16px;
        }

        .NewsItem .time b {
            font-size: 28px;
        }

        .NewsItem img {
            margin: 15px 0;
        }

        .NewsItem h1 {
            font-size: 16px;
        }

        .NewsItem::after {
            right: -25px;
        }
    }

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

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

        .NewsItem::after {
            right: -15px;
        }

        .NewsItem h1 {
            font-size: 14px;
        }
    }

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



    /* 详情 */
    /* 详情 */
    /* 详情 */
    .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;
        }


    }