    .section6 {
        display: block;
    }

    .Box6 {
        display: block;
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .Top6 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .Box6 {
        margin-top: 90px;
    }

    .Slide6 {
        position: relative;
    }

    .Slide6 h1 {
        color: #333;
        font-size: 18px;
        font-weight: 700;
        height: 42px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .Slide6 span {
        width: 28px;
        height: 4px;
        display: block;
        background: #000;
        margin: 30px 0;
    }

    .Slide6 p {
        margin-top: 15px;
        margin-bottom: 30px;
        color: #808080;
        font-size: 16px;
        height: 48px;
        line-height: 1.5;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .Slide6 b {
        font-weight: 500;
        color: #808080;
        font-size: 16px;
        text-transform: uppercase;
    }

    .Slide6:hover h1,
    .Slide6:hover b {
        color: var(--color);
    }

    .Slide6:hover span {
        background: var(--color);
    }

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

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

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

        .Slide6 h1 {
            font-size: 16px;
            height: 36px;
        }

        .Slide6 span {
            margin: 15px 0;
        }

        .Slide6 p {
            font-size: 14px;
            height: 42px;
            margin-top: 10px;
            margin-bottom: 20px;
        }
    }

    @media (max-width: 720px) {
        .Box6 {
            margin-top: 30px;
        }


    }

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

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


    a.indexMore6 {
        color: #000;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        grid-gap: 30px;
    }

    a.indexMore6 span {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    a.indexMore6 span::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 46px;
        height: 46px;
        background: var(--color);
        transition: 0.5s;
    }

    a.indexMore6 span i {
        font-weight: bold;
        color: #fff;
        font-size: 18px;
    }

    a.indexMore6:hover span::after {
        transform: rotate(45deg);
    }