    /* 列表 */
    .NyProListBox {
        margin-top: 45px;
        width: 100%;
        overflow: hidden;
    }

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

    .ListItem {
        width: 100%;
        position: relative;
        border-radius: 8px;
        border: 1px solid rgba(204, 204, 204, 0.80);
        background: #FFF;
    }

    .ListItem .img {
        overflow: hidden;
        position: relative;
        z-index: 2;
        width: 100%;
        border-bottom: 3px solid var(--color);
    }

    .ListItem .text {
        padding: 30px;
        position: relative;
    }

    .ListItem .text::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(231deg, var(--color) 7.22%, var(--color2) 100%);
        z-index: 1;
        opacity: 0;
        transition: 0.5s;
    }

    .ListItem:hover .text::after {
        opacity: 1;
    }

    .ListItem:hover .text * {
        color: #fff;
    }

    .ListItem h1 {
        position: relative;
        z-index: 2;
        color: #000;
        font-family: MiSans2;
        font-size: 20px;
        margin-bottom: 15px;
        transition: 0.5s;
    }


    .ListItem h2 {
        position: relative;
        z-index: 2;
        color: #808080;
        font-size: 16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        transition: 0.5s;
    }

    .ListItem:hover .text * {
        color: #fff;
    }

    @media (max-width: 1440px) {
        .ListItem .text {
            padding: 20px;
        }

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

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

    @media (max-width: 900px) {
        .ListBox {
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 10px;
        }
    }

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

        .ListItem .text {
            padding: 20px 10px;
        }

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

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

    /* NySection1 */
    .NySection1 {
        position: relative;
        padding: 75px var(--container);
    }

    .NySection1 .NyTitle {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .NySection1 .NyTitle * {
        text-align: center;
        color: #fff;
    }

    .NySection1 .NyTitle a {
        padding: 12px 20px;
        color: #FFF;
        font-family: MiSans2;
        font-size: 12px;
        background: var(--color);
        border-radius: 50px;
    }