    /* 新闻列表 */
    .NyNewsBox {
        padding-top: 60px;
    }

    .NeweList {
        margin-bottom: 45px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 20px;
    }

    .NewsItem {
        width: 100%;
        background: rgba(246, 246, 246, 0.50);
        position: relative;
        transition: 0.5s;
        top: 0;
    }

    .NewsItem:hover {
        top: -20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }


    .NewsItem .text {
        width: 100%;
        padding: 30px 20px;
    }

    .NewsItem h1 {
        color: #000;
        font-size: 20px;
        font-weight: 700;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

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

    .NewsItem h2 {
        margin: 15px 0;
        font-size: 16px;
        line-height: 1.5;
        color: rgba(0, 0, 0, 0.50);
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .NewsItem h3 {
        display: flex;
        align-items: center;
        grid-gap: 5px;
        color: rgba(0, 0, 0, 0.50);
        font-size: 12px;
    }

    @media (max-width: 1440px) {
        .NewsItem h1 {
            font-size: 18px;
        }

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

    @media (max-width: 1200px) {
        .NyNewsBox {
            padding-top: 0;
        }

        .NeweList {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 900px) {
        .NewsItem .text {
            width: 100%;
            padding: 20px 10px;
        }

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

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

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


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


    }