    /* Section5 */
    .section5 {
        display: block;
    }

    .Box5 {
        display: block;
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .item5 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .time5 {
        background: url(/assets/images/time_bj.png) no-repeat;
        width: 120px;
        height: 48px;
        font-size: 16px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .text5 {
        width: calc(100% - 150px);
        background: url(/assets/images/dashed.png) no-repeat left;
        padding: 20px;
        padding-left: 90px;
    }

    .text5 h1 {
        font-weight: bold;
        font-size: 16px;
        color: #323232;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .text5 h2 {
        font-size: 14px;
        color: #7b7b7b;
        margin: 5px 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .text5 p {
        font-size: 12px;
        color: #2781c8;
    }


    @media (max-width: 600px) {
        .time5 {
            display: none;
        }

        .text5 {
            width: 100%;
            padding-left: 30px;
        }
    }

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