    /* box2 */
    .section2 {
        display: block;
        border-top: 16px solid var(--color2);
        padding: 0 var(--container);
    }

    .Search {
        margin-top: 30px;
        margin-left: auto;
        margin-right: 0;
        width: 330px;
        height: 45px;
        border: 4px solid var(--color2);
        background: var(--color2);
        border-radius: 50px;
        overflow: hidden;
        display: flex;
    }

    .searchInput {
        width: calc(100% - 40px);
        height: 100%;
        background: #fff;
        border-radius: 50px;
        padding-left: 15px;
    }

    .subButn {
        width: 40px;
        height: 100%;
        background: var(--color2);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .subButn img {
        width: 25px;
    }

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

    .Box2 img {
        float: left;
        margin-right: 30px;
        margin-bottom: 30px;
    }

    .Box2 .text2 p {
        font-size: 14px;
        line-height: 36px;
        text-indent: 28px;
        color: #4a4a4a;
    }

    .Box2 a {
        margin-top: 45px;
        margin-left: auto;
        margin-right: 0;
        width: 150px;
        height: 36px;
        background: var(--color2);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 18px;
        color: #fff;
    }

    @media (max-width: 1200px) {
        .Box2 img {
            width: 300px;
        }
    }

    @media (max-width: 720px) {
        .Box2 img {
            width: 100%;
            max-width: 480px;
            float: none;
            display: block;
            margin: 0 auto;
            margin-bottom: 30px;
        }

        .Box2 .text2 p {
            font-size: 14px;
            line-height: 1.75;
        }
    }

    @media (max-width: 460px) {
        .Search {
            width: 100%;
        }
    }

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