    /* Section6 */
    .section6 {
        display: block;
    }

    .Box6 {
        display: block;
        position: relative;
        width: 100%;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        grid-gap: 30px;
    }

    .lt6 {
        width: 50%;
    }

    .lt6 .indexTitle {
        padding: 0;
    }

    .lt6 .indexTitle * {
        color: #fff;
    }

    .item6 {
        margin-top: 45px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px 25px;
    }

    .item6 a {
        padding: 0px 45px;
        width: 100%;
        height: 70px;
        background: #fff;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        grid-gap: 30px;
        position: relative;
        overflow: hidden;
    }

    .item6 a::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, var(--color2) 0%, var(--color) 100%);
        opacity: 0;
        transition: 0.5s;
    }

    .item6 a:hover::before {
        opacity: 1;
    }


    .item6 a h1 {
        color: #000;
        font-size: 16px;
        position: relative;
        z-index: 2;
        transition: 0.5s;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .item6 a:hover h1 {
        color: #fff;
    }

    .item6 a img {
        display: block;
        position: relative;
        z-index: 2;
        transition: 0.5s;
    }

    .item6 a:hover img {
        filter: brightness(0) invert(1);
    }

    .rt6 {
        width: calc(50% - 120px);
        border-radius: 40px;
        background: #FFF;
        padding: 45px 30px;
    }

    .rt6 form {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 20px 30px;
    }

    .input1 {
        width: calc(50% - 15px);
        height: 50px;
        border-radius: 16px;
        background: #F9FAFB;
        outline: none;
        padding-left: 15px;
    }

    .input2 {
        width: 100%;
        height: 120px;
        background: #F9FAFB;
        padding: 15px;
    }

    .captcha {
        width: 100%;
        position: relative;
        height: 50px;
        display: flex;
    }

    .captcha input {
        width: calc(100% - 160px);
        height: 100%;
        border-radius: 16px;
         padding-left: 15px;
        background: #F9FAFB;
        outline: none;
    }

    .captcha img {
        width: 160px;
        height: 100%;
    }

    .input4 {
        width: 100%;
        height: 60px;
        background: #000;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        grid-gap: 15px;
        color: #FFF;
        font-family: MiSans2;
        font-size: 12px;
    }


    @media (max-width: 1440px) {
        .item6 a {
            padding: 0px 30px;
        }

        .item6 a h1 {
            font-size: 14px;
        }
    }

    @media (max-width: 1200px) {
        .lt6 {
            width: 100%;
        }

        .rt6 {
            width: 100%;
        }
    }

    @media (max-width: 600px) {
        .item6 {
            grid-template-columns: repeat(1, 1fr);
        }

        .input1 {
            width: 100%;
        }

        .captcha input {
            width: calc(100% - 120px);
        }

        .captcha img {
            width: 120px;
        }
    }

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

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