    .section8 {
        position: relative;
        overflow: hidden;
        background: #f3f3f3;
    }

    .box8 {
        position: relative;
    }

    .list8 {
        margin-top: 60px;
        display: flex;
        grid-gap: 20px;
    }

    .item8 {
        width: calc((100% - 60px) / 4);
        display: flex;
        flex-direction: column;
    }

    .img8 {
        width: 100%;
    }

    .img8 img {
        width: 100%;
    }

    .text8 {
        background: #f8f8f8;
        width: 100%;
        padding: 20px 30px;
    }

    .text8 h1 {
        font-weight: 500;
        font-size: 18px;
        line-height: 1.5;
        height: 54px;
        margin-bottom: 10px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .text8 h2 {
        color: #707070;
        font-size: 14px;
        line-height: 2;
        height: 56px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }


    @media (max-width: 1200px) {
        .item8:last-child {
            display: none;
        }

        .item8 {
            width: calc((100% - 40px) / 3);
        }

        .text8 {
            padding: 20px 20px;
        }

        .text8 h1 {
            font-size: 16px;
            height: 48px;

        }
    }

    @media (max-width: 720px) {
        .list8 {
            display: flex;
            flex-wrap: wrap;
        }

        .item8:last-child {
            display: flex;
        }

        .item8 {
            width: calc((100% - 20px) / 2);
        }
    }

    @media (max-width: 460px) {
        .item8 {
            width: 100%;
        }
    }