    /* 内页大图 */
    .Nybanner {
        margin-top: 90px;
        overflow: hidden;
        position: relative;
        width: 100%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Nybanner .banner {
        position: relative;
        width: 100%;
        object-fit: cover;
        opacity: 1;
    }

    .Nybanner .text {
        position: absolute;
        z-index: 3;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 var(--container);
        color: #FFF;
        font-weight: bold;
        text-shadow: 3px 5px 4px rgba(0, 0, 0, 0.25);
        font-size: 50px;
    }

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

    @media (max-width: 1200px) {
        .Nybanner {
            margin-top: 60px;
        }

        .Nybanner .text {
            font-size: 38px;
        }

    }

    @media (max-width: 600px) {
        .Nybanner .banner {
            min-height: 100px;
        }

        .Nybanner .text {
            font-size: 28px;
            text-shadow: 0px 0px 5px #000;
        }

    }



    /* 新加代码 */

    /* 内页分类 */
    .NyNavList {
        width: 100%;
        padding: 0 var(--container);
        border-bottom: 1px solid #C0C0C0;
        padding-bottom: 5px;
        grid-gap: 10px 90px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .NyNavList a {
        height: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        text-align: center;
        font-size: 16px;
        border-bottom: 4px solid #fff0;
    }

    .NyNavList a.active {
        font-weight: bold;
        color: var(--color);
        border-bottom: 4px solid var(--color);
    }

    @media (max-width: 1000px) {
        .NyNavList {
            padding: 15px var(--container);
            flex-wrap: wrap;
            grid-gap: 15px 30px;
        }

        .NyNavList a {
            height: auto;
            border-bottom: 2px solid #fff0;
        }

        .NyNavList a.active {
            border-bottom: 2px solid var(--color);
        }
    }

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