    /* 内页大图 */
    .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 .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.25);
        font-family: "Playfair Display";
        font-size: 52px;
    }


    .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 .text h1 {
            font-size: 24px;
        }

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


    /* 新加代码 */
    section {
        position: relative;
        z-index: 1;
        overflow: hidden;
        width: 100%;
        padding: 90px var(--container);
    }

    @media (max-width: 900px) {
        section {
            padding: 60px var(--container);
        }
    }

    /* 标题 */
    .BaseTitle {
        display: flex;
        flex-direction: column;
        grid-gap: 10px;
    }

    .BaseTitle p {
        color: #707070;
        font-size: 14px;
        letter-spacing: 2.8px;
    }

    .BaseTitle h1 {
        color: #2C2C2C;
        font-family: "Playfair Display";
        font-size: 60px;
        line-height: 1;
    }

    .BaseTitle h1 b {
        font-weight: 500;
        color: var(--color);
        font-family: "Playfair Display";
    }

    @media (max-width: 1200px) {
        .BaseTitle h1 {
            font-size: 48px;
        }
    }

    @media (max-width: 900px) {
        .BaseTitle h1 {
            font-size: 38px;
        }
    }

    @media (max-width: 600px) {
        .BaseTitle h1 {
            font-size: 28px;
        }
    }