    .NyProTitle {
        border: 1px solid #e5e5e5;
        background: #f9f9f9;
        line-height: 24px;
        padding: 10px;
        margin: 15px;
        text-indent: 20px;
        font-size: 12px;
        color: #666666
    }

    /* 列表 */
    .NyProList {
        padding: 30px;
        padding-top: 0;
        margin-bottom: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px 30px;
    }



    .NyProList .item {
        width: 100%;
        transition: 0.5s;
    }



    .NyProList .img {
        width: 100%;
        border: 1px solid #e0e1dc;
    }

    .NyProList .item:hover .img {
        border: 1px solid #e87518;
    }

    .NyProList .item h1 {
        padding-top: 5px;
        width: 100%;
        text-align: center;
        font-size: 12px;
        line-height: 1.5;
        color: #595959;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }





    @media (max-width: 720px) {
        .NyProTitle {
            margin: 15px 0;
        }

        .NyProList {
            padding: 15px 0;
        }
    }

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