.img {
    width: 200px;
    height: 150px;
    overflow: hidden;
   position: relative;
}
.img:hover img {
    transform: scale(1.1, 1.1);
}
.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease-in-out 0s;
}
.status_flag_box {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: 100%;
    background-color: orange;
    border-radius: 300px;
    padding: 5px 15px;
    font-size: 15px;
    color: #fff;
    border: 1px solid #fff;
}
#wrap li {
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 20px !important;
    overflow: hidden;
}

#wrap {
    width: 100%;
}

.txt {
    padding-left: 20px;
    flex: 1;
}

.d_time {
    display: flex;
}

.d_titles {
    font-size: 18px;
    color: #666;
    cursor: pointer;
    transition: all .3s ease-in-out 0s;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 520px;
}

.d_titles:hover {
    color: #4788d7;
}

.d_desc {
    line-height: 20px;
    color: #999;
    margin: 10px 0;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; */
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 520px;
}