    .section5 {
        position: relative;
    }

    .section5 .indexTitle h1 {
        text-align: center;
    }

    .Box5 {
        margin-top: 60px;
        position: relative;
        width: 100%;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .lt5 {
        width: 30%;
        border-radius: 16px;
        overflow: hidden;
    }

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

    .rt5 {
        width: calc(70% - 30px);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-content: flex-start;
    }

    .item5 {
        width: calc(50% - 30px);
        padding: 30px 0;
        position: relative;
    }

    .item5 h1 {
        font-size: 22px;
        line-height: 40px;
        height: 80px;
        color: #3D3D3D;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .item5 span {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .item5 span p {
        font-size: 16px;
        color: #959595;
    }

    .item5 img {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        filter: grayscale(1);
    }

    .item5 * {
        transition: 0.5s;
    }

    .item5:hover h1 {
        color: var(--color);
    }

    .item5:hover img {
        filter: grayscale(0);
    }

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

    @media (max-width: 1440px) {
        .item5 h1 {
            font-size: 18px;
            line-height: 30px;
            height: 60px;
        }

        .item5 span {
            margin-top: 15px;
        }
    }

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

        .item5 h1 {
            font-size: 16px;
            line-height: 1;
            height: auto;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
        }

        .item5 {
            width: calc(50% - 10px);
        }
    }

    @media (max-width: 720px) {
        .lt5 {
            display: none;
        }

        .rt5 {
            width: 100%;
        }

        .item5 {
            width: 100%;
            padding: 20px 0;
        }

        .item5 span {
            margin-top: 10px;
        }
    }