.z_wrap {
    display: flex;
    justify-content: space-between;
}
.z_leftbox {
    width: 30%;
}
.z_rightbox {
    width: 68%;
}
.big_title {
    position: relative;
    background: #0c7b5b;
    height: 60px;
    line-height: 60px;
    color: #fff;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
}
.big_title img {
    display: none;
}
.h_url a {
    display: block;
    /* text-align: center; */
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    color: #333;
    padding-left: 30px;
    background: #ebebeb;
    /* padding-bottom: 40px; */
}
.h_url a:last-child {
    height: 100px;
}
.h_url .act {
    color: #0c7b5b;
    font-weight: bold;
}
.z_list li a {
    height: 188px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    background: #e6e6e6;
    margin-bottom: 20px;
}
.z_list li a img {
    width: 36%;
    height: 100%;
}
.z_list li a .l_r {
    width: 64%;
    padding: 0 20px;
    display: flex;
}
.z_list li a .l_r .time {
    min-width: 120px;
}
.z_list li a .l_r .title {
    line-height: 26px;
}
@media screen and (max-width: 769px) {
    .z_wrap {
        display: block;
    }
    .z_leftbox {
        width: 100%;
        margin-bottom: 10px;
    }
    .z_rightbox {
        width: 100%;
    }
    .z_list li a {
        height: 120px;
    }
    .z_list li a .l_r {
        display: block;
        font-size: 16px;
    }
    .h_url {
        display: flex;
        justify-content: space-evenly;
        background: #ebebeb;
        flex-wrap: wrap;
    }
    .h_url a {
        height: 40px;
        padding-left: 0;
        width: 30%;
        text-align: center;
    }
    .h_url a:last-child {
        height: 60px;
    }
    .big_title img {
        display: block;
        position: absolute;
        right: 10px;
        top: 16px;
    }
    .z_list li a .l_r .title {
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}