    .NyNewsBox {
        background: #F0F0F0;
    }

    .NewsTop {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .NavList {
        width: 50%;
        display: flex;
        grid-gap: 60px;
    }

    .NavList a {
        width: 100%;
        height: 72px;
        background: var(--color);
        border-radius: 6px;
        font-weight: 700;
        font-size: 18px;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .NavList a img {
        position: absolute;
        right: 30px;
    }

    .NavList a.active {
        background: var(--color);
    }

    /* 新闻列表 */
    .NeweList {
        padding: 75px 0;
        background: #fff;
        margin-top: 60px;
        margin-bottom: 45px;
        display: grid;
        grid-gap: 75px;
    }

    .NewsItem {
        padding: 0px 75px;
        width: 100%;
        position: relative;
        overflow: hidden;
        transition: 0.5s;
        display: flex;
        align-items: center;
    }


    .NewsItem .img {
        width: 20%;
    }

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

    .NewsItem .text {
        width: 80%;
        padding-left: 90px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .NewsItem h1 {
        font-weight: bold;
        font-size: 32px;
        line-height: 1.5;
        color: #484848;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }


    .NewsItem h2 {
        margin-top: 20px;
        margin-bottom: 40px;
        font-size: 18px;
        line-height: 1.5;
        color: #7E7E7E;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .NewsItem:hover h1,
    .NewsItem:hover h2 {
        color: var(--color);
    }

    .NewsItem span {
        width: 210px;
        height: 60px;
        border-radius: 50px;
        background: var(--color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #fff;
        display: none;
    }

    @media (max-width: 1440px) {
        .NavList {
            width: 75%;
            grid-gap: 30px;
        }

        .NeweList {
            padding: 45px 0;
            margin-bottom: 45px;
            display: grid;
            grid-gap: 45px;
        }

        .NewsItem {
            padding: 0 45px;
        }

        .NewsItem .img {
            width: 30%;
        }

        .NewsItem .text {
            width: 70%;
            padding-left: 60px;
        }

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


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

    @media (max-width:1200px) {
        .NavList {
            width: 60%;
            grid-gap: 15px;
        }

        .NavList a {
            height: 60px;
        }

        .NavList a img {
            display: none;
        }

        .NeweList {
            padding: 0;
            background: #fff0;
        }

        .NewsItem {
            padding: 0;
        }

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

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

        .NewsItem span {
            width: 160px;
            height: 45px;
        }
    }

    @media (max-width: 720px) {
        .NewsTop {
            display: flex;
            flex-wrap: wrap;
        }

        .NavList {
            margin-top: 30px;
            width: 100%;
        }

        .NavList a {
            height: 45px;
            font-size: 14px;
        }

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

        .NewsItem .img {
            width: 100%;
        }

        .NewsItem .text {
            width: 100%;
            padding: 0;
            padding-top: 15px;
        }

        .NewsItem h2 {
            margin: 15px 0;
        }
    }



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


    }