    .section5 {
        padding-top: 30px;
        padding-bottom: 150px;
        overflow: hidden;
        position: relative;
    }

    .Box5 {
        position: relative;
        display: flex;
    }

    .Box5 h1 {
        width: calc((100% - 25px) / 6);
        height: 96px;
        font-family: PuHuiTi85;
        font-size: 38px;
        color: #FFFFFF;
        background: var(--color);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .swiper5 {
        z-index: 1;
        width: calc(100% - (100% - 25px) / 6 - 5px);
        overflow: visible;
    }

    .slide5 {
        height: 96px;
        background: #FFFFFF;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide5 img {
        max-width: 60%;
        max-height: 60%;
        object-fit: cover;
    }

    .swiper-slide-visible {
        opacity: 1;
    }

    @media (max-width: 1440px) {
        .Box5 h1 {
            width: calc((100% - 20px) / 5);
        }

        .swiper5 {
            width: calc(100% - (100% - 20px) / 5 - 5px);
        }
    }

    @media (max-width: 1200px) {
        .Box5 h1 {
            height: 75px;
            font-size: 32px;
            width: calc((100% - 15px) / 4);
        }

        .swiper5 {
            width: calc(100% - (100% - 15px) / 4 - 5px);
        }

        .slide5 {
            height: 75px;
        }
    }

    @media (max-width: 720px) {
        .Box5 h1 {
            height: 60px;
            font-size: 24px;
            width: calc((100% - 10px) / 3);
        }

        .swiper5 {
            width: calc(100% - (100% - 10px) / 3 - 5px);
        }

        .slide5 {
            height: 60px;
        }
    }

    @media (max-width: 460px) {
        .Box5 h1 {
            width: calc((100% - 5px) / 2);
        }

        .swiper5 {
            width: calc(100% - (100% - 5px) / 2 - 5px);
        }
    }