 /* Section6 */
    .section6 {
        display: block;
        padding-bottom: 0;
    }

    .section6 .indexTitle p {
        text-align: center;
        color: rgba(255, 255, 255, 0.10);
    }

    .section6 .indexTitle h1 {
        text-align: center;
        color: #fff;
    }

    .Box6 {
        position: relative;
        width: 100%;
        margin-top: 60px;
        display: flex;
        align-items: center;
        padding: 0 90px;
    }

    .Swiper6 {
        width: 100%;
        display: flex;
        align-items: center;
        padding-bottom: 120px;
    }

    .Slide6 {
        width: max-content;
    }

    .Slide6 img {
        height: 20vw;
        max-height: 350px;
        -webkit-box-reflect: below 5px linear-gradient(transparent 40%, rgba(0, 0, 0, 0.4));
        box-reflect: below 5px linear-gradient(transparent 40%, rgba(0, 0, 0, 0.4));
    }

    .prev6 {
        left: 0;
    }

    .next6 {
        right: 0;
    }

    .prev6,
    .next6 {
        transform: translateY(-60px);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 3;
        opacity: 0.5;
        transition: 0.5s;
    }

    .prev6:hover,
    .next6:hover {
        opacity: 1;
    }

    .prev6 i,
    .next6 i {
        font-size: 18px;
        color: var(--color);
    }


    @media (max-width: 1200px) {
        .Box6 {
            margin-top: 30px;
            padding: 0 60px;
        }

        .prev6,
        .next6 {
            width: 45px;
            height: 45px;
            transform: translateY(-45px);
        }

        .Swiper6 {
            padding-bottom: 90px;
        }
    }

    @media (max-width: 900px) {
        .Box6 {
            padding: 0;
        }
    }

    @media (max-width: 600px) {
        .Slide6 img {
            height: 50vw;
            max-height: 350px;
        }
    }