    .section4 {
        position: relative;
        padding: 0;
    }

    .Box4 {
        position: relative;
        overflow: hidden;
        width: 100%;
        z-index: 2;
        display: flex;
    }

    .Box4 .lt4 {
        width: 20%;
        padding-left: var(--container);
        display: flex;
        align-items: center;
        font-weight: 700;
        font-size: 28px;
        color: #FFFFFF;
        position: relative;
        z-index: 2;
    }

    .Box4 .lt4::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        right: 0;
        top: 0;
        width: 140%;
        height: 100%;
        background: var(--color);
        transform: skewX(-15deg);
    }

    .Swiper4 {
        z-index: 1;
        width: 80%;
        overflow: visible;
    }

    .slide4 {
        padding: 0 60px;
        width: auto;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide4::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #EDEDED;
        transform: skewX(-15deg);
    }

    .slide4 img {
        max-width: 75%;
        height: 50px;
        object-fit: contain;
    }


    @media (max-width: 1200px) {
        .Box4 .lt4 {
            width: 200px;
            font-size: 18px;
        }

        .Swiper4 {
            width: calc(100% - 200px);
        }

        .slide4 {
            padding: 0 30px;
            height: 60px;
        }

        .slide4 img {
            height: 40px;
        }
    }

    @media (max-width: 720px) {
        .Box4 .lt4 {
            width: 150px;
            font-size: 18px;
        }

        .Swiper4 {
            width: calc(100% - 150px);
        }
    }

    @media (max-width: 460px) {
        .Box4 {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .Box4 .lt4 {
            width: 100%;
            text-align: center;
            justify-content: center;
            padding: 15px 0;
            margin-bottom: 15px;
        }

        .Box4 .lt4::after {
            right: auto;
            width: 80%;
            transform: skewX(-30deg);
        }

        .Swiper4 {
            width: 100%;
        }
    }

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