    .section7 {
        position: relative;
        overflow: hidden;
        background: #f3f3f3;
    }

    .box7 {
        position: relative;
    }

    .list7 {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .item7 {
        background: #fff;
        width: 100%;
        display: flex;
    }

    .item7:nth-child(2n) {
        display: flex;
        flex-direction: row-reverse;
    }

    .img7 {
        width: 50%;
    }

    .img7 img {
        width: 100%;
    }

    .text7 {
        width: 50%;
        padding: 20px 45px;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .text7 h1 {
        font-weight: 500;
        font-size: 20px;
        line-height: 1.5;
    }

    .text7 h2 {
        color: #707070;
        font-size: 14px;
        line-height: 2;
        margin: 20px 0;
    }

    .text7 a {
        width: 175px;
        height: 45px;
        background: var(--color1);
        color: #fff;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @media (max-width: 1200px) {
        .img7 {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .img7 img {
            width: 100%;
            height: auto;
        }
    }

    @media (max-width: 900px) {
        .item7 {
            background: #fff;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
        }

        .img7 {
            width: 100%;
        }

        .text7 {
            width: 100%;
            padding: 30px 45px;
        }
    }

    @media (max-width: 720px) {
        .text7 {
            width: 100%;
            padding: 30px 20px;
        }

        .text7 h2 {
            color: #707070;
            font-size: 14px;
            line-height: 1.5;
            margin: 15px 0;
        }
    }

    @media (max-width: 460px) {
        .text7 a {
            font-size: 12px;
            width: 140px;
            height: 35px;
        }

        .text7 h2 {
            font-size: 18px;
        }
    }