    /* 内页大图 */
    .Nybanner {
        margin-top: 100px;
        overflow: hidden;
        position: relative;
        width: 100%;
        height: auto;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding: 0 var(--container);
    }


    .Nybanner .banner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 1;
    }

    .Nybanner .text {
        position: relative;
        z-index: 3;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 8vw 0;
    }

    .Nybanner .text p {
        color: rgba(255, 255, 255, 0.1);

    }

    .Nybanner .text h1 {
        color: #fff;
        position: relative;
    }

    .Nybanner .text h1::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 15px;
        background: var(--color2);
    }

    .mbx {
        position: relative;
        z-index: 3;
        display: flex;
        flex-wrap: wrap;
        grid-gap: 5px;
        padding-bottom: 30px;
        opacity: 0.5;
    }

    .mbx,
    .mbx a {
        font-size: 14px;
        color: #fff;
    }


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

        .mbx {
            padding-bottom: 15px;
        }
    }

    .NyNav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        grid-gap: 10px;
    }

    .NyNav a {
        padding: 15px 45px;
        background: var(--color);
        display: flex;
        align-items: center;
        justify-content: center;
        grid-gap: 15px;
        color: #FFF;
        font-size: 16px;
        text-align: center;
        font-weight: bold;
    }

    .NyNav a.active {
        background: var(--color2);
    }

    .NyNav a img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
        .NyNav {
            grid-gap: 5px 15px;
        }

        .NyNav a {
            grid-gap: 5px;
            padding: 10px 15px;
        }

        .NyNav a img {
            width: 20px;
            height: 20px;
        }
    }

    @media (max-width: 600px) {
        .NyNav a img {
            display: none;
        }
    }

    /* 新加代码 */

    /* 标题 */
    .fs42 {
        font-size: 42px;
        font-weight: 700;
        line-height: 1;
    }

    .NyTitle {
        display: flex;
        flex-direction: column;
        grid-gap: 5px;
    }

    .NyTitle p {
        color: rgba(16, 85, 159, 0.10);

    }

    .NyTitle h1 {
        color: #000;
    }


    @media (max-width: 1440px) {
        .fs42 {
            font-size: 34px;
        }
    }

    @media (max-width: 900px) {
        .fs42 {
            font-size: 28px;
        }
    }