    /* 新闻列表 */
    .Ny_News {
        display: grid;
        grid-gap: 30px 0;
    }

    .NewsItem {
        overflow: hidden;
        padding: 15px 30px;
        border: 1px solid #DEDEDE;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        transition: 0.5s;
    }

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

    .NewsItem .img {
        width: 320px;
    }

    .NewsItem .text {
        width: calc(100% - 320px - 90px);
        padding: 15px 60px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .NewsItem .text h1 {
        max-width: 720px;
        font-size: 22px;
        font-weight: bold;
        line-height: 1.5;
        color: #000000;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        transition: 0.5s;
    }

    .NewsItem:hover .text h1 {
        color: #fff;
    }

    .NewsItem .text .time {
        font-size: 16px;
        line-height: 2;
        color: #999999;
        transition: 0.5s;
    }

    .NewsItem:hover .text .time {
        color: #fff;
    }

    .NewsItem .More {
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        border: 1px solid #ccc;
        transition: 0.5s;
    }

    .NewsItem .More img {
        width: 20px;
    }

    .NewsItem:hover .More {
        background: #fff;
    }

    .NewsItem .More img {
        filter: brightness(0) invert(0) opacity(0.75);
    }

    .NewsItem:hover .More img {
        filter: brightness(1) invert(0);
    }



    @media (max-width: 1200px) {
        .NewsItem {
            padding: 15px;
        }

        .NewsItem .img {
            width: 240px;
        }

        .NewsItem .text {
            width: calc(100% - 240px - 60px);
            padding: 0px 30px;
        }

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

        .NewsItem .More {
            width: 60px;
            height: 60px;
        }

        .NewsItem .More img {
            width: 20px;
        }
    }

    @media (max-width: 720px) {
        .NewsItem .img {
            width: 100%;
        }

        .NewsItem .text {
            width: calc(100% - 45px);
            padding: 0;
            padding-top: 15px;
            padding-right: 15px;
        }

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

        .NewsItem .More {
            width: 45px;
            height: 45px;
        }

        .NewsItem .More img {
            width: 15px;
        }
    }


    @media (max-width: 460px) {}

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

    .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;
        }


    }