    .section6 {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .Box6 {
        background: #F7F9FC;
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .lt6 {
        position: relative;
        z-index: 2;
        background: var(--color);
        padding-top: 100px;
        padding-left: var(--w1600);
        width: 32%;
        height: 100%;
    }

    .lt6 .indexTitle {
        margin-top: 100px;
        color: #fff;
    }

    .lt6 .icon6 {
        margin: 30px 0;
        max-width: 80%;
    }

    .lt6 p {
        color: #FFF;
        font-size: 20px;
        line-height: 2;
    }

    .lt6 .bj6 {
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 0;
        width: 100%;
    }

    .rt6 {
        position: relative;
        width: 68%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rt6 .desc {
        position: absolute;
        z-index: 2;
        left: 60px;
        bottom: 90px;
        width: 300px;
        color: #3E3E3E;
        font-size: 16px;
        line-height: 2;
    }

    .rt6 .desc b {
        display: block;
    }

    .rt6 .img6Box {
        position: relative;
        z-index: 1;
        width: 1150px;
        background: #F7F9FC;
    }

    .rt6 .img6Box span {
        position: absolute;
        z-index: 2;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--color);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-50%) translateY(-50%);
    }

    @keyframes dingwei {
        0% {
            opacity: 0;
            transform: scale(0);
        }

        50% {
            opacity: 0.25;
        }

        100% {
            opacity: 0;
            transform: scale(1.1);
        }

    }

    .rt6 .img6Box span::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        z-index: 2;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--color);
        opacity: 0.25;
        animation: dingwei 2s infinite;
    }

    .rt6 .img6Box span p {
        position: absolute;
        right: -60px;
        color: #000;
        font-size: 18px;
        display: none;
    }

    .rt6 .img6Box span:hover p {
        display: block;
    }

    .rt6 .img6Box span:hover {
        z-index: 3;
    }

    .rt6 .img6Box .img6 {
        position: relative;
        z-index: 1;
        width: 100%;
        mix-blend-mode: multiply;
    }

    @media (max-width: 1600px) {
        .rt6 .desc {
            left: 30px;
            bottom: 60px;
            line-height: 1.5;
        }
    }

    @media (max-width: 1440px) {
        .lt6 {
            width: 40%;
        }

        .lt6 .indexTitle {
            margin-top: 60px;
            color: #fff;
        }

        .lt6 p {
            font-size: 16px;
            line-height: 1.5;
        }

        .rt6 {
            width: 60%;
        }

        .rt6 .desc {
            font-size: 14px;
        }

    }

    @media (max-width: 1200px) {
        .lt6 {
            width: 40%;
            height: auto;
            padding-top: 90px;
            padding-bottom: 90px;
        }

        .lt6 .indexTitle {
            margin: 0;
        }

        .rt6 {
            height: auto;
        }

        .rt6 .desc {
            left: 30px;
            bottom: 30px;
        }

        .rt6 .img6Box span {
            width: 10px;
            height: 10px;
        }

        .rt6 .img6Box span::after {
            width: 25px;
            height: 25px;
        }
    }

    @media (max-width: 720px) {
        .lt6 {
            width: 100%;
            padding-top: 60px;
            padding-bottom: 120px;
        }

        .rt6 {
            padding-top: 30px;
            padding-bottom: 30px;
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .rt6 {
            padding-bottom: 90px;
        }
    }