.col-md-12.news-line {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background-color: #f5f5f5;
    transition: all .55 ease;
    cursor: pointer;
    margin-bottom: 20px;
}
.col-md-12.news-line:hover{
    box-shadow: 0px 0px 20px 0px #0c4b9433;
    background-color: white;
}
.div-line {
    height: 100px;
    width: 1px;
    background-color: #e3e3e3;
    margin: 0px 30px;
}

.img-wrap {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.img-wrap img {
    width: 100%;
    height: auto;
}

.desc-view {
    display: flex;
    /* height: 100%; */
    flex-direction: column;
    flex: 1;
}

.desc-view .news-line-name {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    font-weight: 600;
}
.desc-view .news-line-desc {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #666666;
    margin-top: 20px;
}

.time-view {
   margin-left: 40px;
   color: #666666;
   width: auto;
   display: flex;
   align-items: center; 
}

@media screen and (max-width: 576px) {
    .item-wrap {
        width: 100%;
    }

    #position-wrap {
        flex-wrap: wrap;
    }
    .search-line::after {
        width: 100%;
    }
    .img-wrap {
        width: 100%;
        height: auto;
        max-height: 200px;
    }
    .col-md-12.news-line{
        flex-direction: column;
    }
    .div-line{
        display: none;
    }
    .time-view{
        width: 100%;
        margin-left: 0px;
    }
    .desc-view {
        flex: auto;
    }
}

@media screen and (min-width: 576px) {
    .item-wrap {
        width: 100%;
    }

    #position-wrap {
        flex-wrap: wrap;
    }
    .search-line::after {
        width: 100%;
    }
    .img-wrap {
        width: 100%;
        height: auto;
        max-height: 200px;
    }
    .col-md-12.news-line{
        flex-direction: column;
    }
    .div-line{
        display: none;
    }
    .time-view{
        width: 100%;
        margin-left: 0px;
    }
    .desc-view {
        flex: auto;
    }
}

@media screen and (min-width: 768px) {
    .item-wrap {
        width: 50%;
    }

    #position-wrap {
        flex-wrap: wrap;
    }
    .search-line::after {
        width: 80%;
    }
    .img-wrap {
        width: 140px;
        height: 140px;
    }
    .col-md-12.news-line{
        flex-direction: row;
    }
    .div-line{
        display: block;
    }
    .time-view{
        width: auto;
        margin-left: 20px;
    }
    .desc-view {
        flex: 1;
    }

}

@media screen and (min-width: 992px) {
    .item-wrap {
        width: 30%;
    }

    #position-wrap {
        flex-wrap: wrap;
    }
    .search-line::after {
        width: 60%;
    }
    .img-wrap {
        width: 160px;
        height: 160px;
    }
    .col-md-12.news-line{
        flex-direction: row;
    }
    .div-line{
        display: block;
    }
    .time-view{
        width: auto;
        margin-left: 40px;
    }
}

@media screen and (min-width: 1200px) {
    .item-wrap {
        width: 25%;
    }

    #position-wrap {
        flex-wrap: nowrap;
    }
    .search-line::after {
        width: 50%;
    }
    .img-wrap {
        width: 160px;
        height: 160px;
    }
}