    /* box2 */
    .section2 {
        position: relative;
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .Box2 {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: space-between;
    }

    .title2 {
        background: #F2F2F2;
        width: 100%;
        height: 50px;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .title2 h1 {
        display: flex;
        flex-direction: column;
    }

    .title2 p {
        font-size: 20px;
        color: var(--color);
    }

    .title2 b {
        font-weight: 500;
        font-size: 14px;
        color: #656565;
    }

    .title2 a {
        color: var(--color);
        font-size: 14px;
    }

    .text2 {
        display: block;
        width: 100%;
    }

    .text2 img {
        width: 49%;
        float: left;
        padding-right: 15px;
    }

    .text2 p {
        font-size: 14px;
        line-height: 2.5;
        color: #555555;
    }

    .lt2 {
        width: 55%;
    }

    .rt2 {
        width: 40%;
    }

    .rt2 img {
        width: 100%;
    }

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


    @media (max-width: 720px) {
        .Box2 {
            flex-wrap: wrap;
            grid-gap: 30px;
        }

        .lt2 {
            width: 100%;
        }

        .rt2 {
            width: 100%;
        }
    }

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