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

    .Nybanner::after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, var(--color) 0%, rgba(0, 62, 152, 0.20) 100%);
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
    }

    .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;
    }

    .Nybanner .text h1 {
        color: #FFF;
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.10);
        font-family: MiSans2;
        font-size: 40px;
    }


    .mbx {
        position: relative;
        z-index: 3;
        display: flex;
        flex-wrap: wrap;
        grid-gap: 5px;
    }

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

    @media (max-width: 1440px) {
        .Nybanner {
            height: 400px;
        }
    }

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

        .Nybanner .text h1 {
            font-size: 30px;
        }

    }

    @media (max-width: 600px) {
        .Nybanner {
            height: 180px;
            padding-bottom: 10px;
        }

        .Nybanner::after {
            background: linear-gradient(180deg, var(--color) 0%, rgba(0, 62, 152, 0.40) 100%);
        }

        .Nybanner .text h1 {
            font-size: 24px;
        }

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

    .NyNav {
        max-width: 50%;
        position: absolute;
        z-index: 6;
        bottom: 30px;
        right: var(--container);
        display: flex;
        grid-gap: 45px;
    }

    .NyNav a {
        color: #FFF;
        text-align: center;
        font-size: 16px;
    }

    @media (max-width: 1200px) {
        .NyNav {
            margin-top: 15px;
            position: relative;
            bottom: 0;
            max-width: 100%;
            width: 100%;
            left: 0;
            right: auto;
            grid-gap: 15px;
        }
    }

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

        .NyNav a {
            font-size: 14px;
        }
    }

    /* 新加代码 */
    /* 标题 */
    .NyTitle {
        display: flex;
        flex-direction: column;
    }

    .NyTitle p {
        font-size: 24px;
        line-height: 1.5;
        color: var(--color);
        margin-bottom: 15px;
    }

    .NyTitle h1 {
        color: #000;
        font-family: MiSans2;
        font-size: 34px;
    }

    @media (max-width: 1200px) {
        .NyTitle p {
            font-size: 18px;
        }

        .NyTitle h1 {
            font-size: 28px;
        }
    }

    @media (max-width: 600px) {
        .NyTitle p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .NyTitle h1 {
            font-size: 24px;
        }
    }

    /* 查看更多 */
    @keyframes text {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0.75;
        }

        100% {
            opacity: 1;
        }
    }

    .NyMore,
    a.NyMore {
        width: 220px;
        height: 56px;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        grid-gap: 20px;
        color: #FFF;
        font-size: 16px;
        font-family: MiSans2;
        position: relative;
        overflow: hidden;
    }

    .NyMore::after,
    a.NyMore::after {
        content: "";
        position: absolute;
        bottom: -15px;
        width: 90%;
        height: 30px;
        background: var(--color);
        border-radius: 50%;
        filter: blur(3px);
    }

    .NyMore:hover::after,
    a.NyMore:hover::after {
        animation: text 2s linear infinite;
    }

    .NyMore img,
    a.NyMore img {
        width: 9px;
    }

    @media (max-width: 600px) {

        .NyMore,
        a.NyMore {
            width: 160px;
            height: 45px;
            font-size: 14px;
            grid-gap: 10px;
        }

        .NyMore::after,
        a.NyMore::after {
            bottom: -10px;
            height: 20px;
        }
    }