    .NyProList {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }

    .NyProList .item {
        width: 100%;
        border-radius: 10px;
        border: 1px solid #F4F4F4;
        background: #FFF;
        overflow: hidden;
    }

    .NyProList .item .img {
        width: 100%;
    }

    .NyProList .item .img img {
        width: 100%;
    }

    .NyProList .item .text {
        width: 100%;
        padding: 30px;
        padding-bottom: 45px;
    }

    .NyProList .item .text h1 {
        color: #000;
        font-family: MiSans2;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .NyProList .item .text h2 {
        color: rgba(0, 0, 0, 0.60);
        font-size: 16px;
    }

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

    .NyProList .item:hover .text * {
        color: #fff;
    }


    @media (max-width: 1200px) {
        .NyProList .item .text {
            width: 100%;
            padding: 30px 15px;
        }

        .NyProList .item .text h1 {
            font-size: 18px;
            margin-bottom: 5px;
        }

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

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

    @media (max-width: 600px) {
        .NyProList {
            grid-gap: 10px;
        }
    }

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



    /* 详情 */
    .NyContentBanner .text h1 {
        line-height: 1.5;
    }

    .NyContentBanner .text p {
        display: flex;
        align-items: center;
        grid-gap: 5px;
        color: rgba(255, 255, 255, 0.50);
    }

    .NyContentBanner .text p img {
        width: 15px;
        filter: invert(1);
    }



    .Ny_NewsPost .Ny_xiangqing {
        margin-bottom: 30px;
    }