    /* Section7 */

    .Box7 {
        margin-top: 60px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        grid-gap: 30px;
    }

    .lt7 {
        width: calc(50% - 15px);
        background: #F3F3F3;
    }

    .lt7 .img7 {
        width: 100%;
        max-height: 320px;
        height: 20vw;
        position: relative;
    }

    .lt7 .img7 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .lt7 .img7 i {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 2;
        width: 75px;
        height: 75px;
        background: var(--color2);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 40px;
        color: #fff;
    }

    .lt7 .text7 {
        padding: 45px;
        display: flex;
        flex-direction: column;
        grid-gap: 20px;
    }

    .lt7 .text7 h1 {
        color: #000;
        font-size: 18px;
        font-weight: 700;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .lt7 .text7 h2 {
        color: rgba(0, 0, 0, 0.60);
        font-size: 16px;
        line-height: 1.5;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .lt7 .text7 h3 {
        color: rgba(0, 0, 0, 0.60);
        font-size: 14px;
    }

    .rt7 {
        width: calc(50% - 15px);
        display: flex;
        flex-wrap: wrap;
        grid-gap: 20px;
    }


    .item7 {
        width: 100%;
        padding: 30px;
        background: #F3F3F3;
        display: flex;
        transition:0.5s;
    }

    .item7:hover {
        background: var(--color);
    }

    .time4 {
        padding-right: 30px;
        margin-right: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #000;
        text-align: center;
        font-size: 16px;
        border-right: 1px solid rgba(0, 0, 0, 0.10);
    }

    .time4 b {
        color: #000;
        font-size: 30px;
        font-weight: 700;
        text-align: center;
    }

    .item7 h1 {
        color: #000;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .item7 h2 {
        color: rgba(0, 0, 0, 0.60);
        font-size: 16px;
        line-height: 1.5;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .item7 * {
        transition:0.5s;
    }

    .item7:hover * {
        color: #fff;
    }
    @media (max-width: 1200px) {
        .lt7 .text7 {
            padding: 20px;
            grid-gap: 10px;
        }

        .lt7 .text7 h1 {
            font-size: 16px;
        }

        .lt7 .text7 h2 {
            font-size: 14px;
        }

        .time4 {
            padding-right: 15px;
            margin-right: 15px;
        }

        .item7 {
            padding: 20px;
        }

        .item7 h1 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .item7 h2 {
            font-size: 14px;
        }
    }

    @media (max-width: 900px) {
        .Box7 {
            margin-top: 30px;
        }

        .lt7 .img7 {
            max-height: unset;
            height: auto;
        }

        .lt7,
        .rt7 {
            width: 100%;
        }
    }

    @media (max-width: 600px) {
        .time4 {
            font-size: 12px;
        }

        .time4 b {
            font-size: 24px;
        }

        .lt7 .img7 i {
            width: 45px;
            height: 45px;
        }
    }