.post-list {
    width: 100%;
    padding: 15px;
    background: #fff;
}

.post-list .title {
    width: 100%;
    border-bottom: 1px solid #ddd;
    display: table;
    padding: 0 0 3px 0;
}

.post-list .title h1 {
    float: left;
    line-height: 40px;
    font-size: 18px;
    font-weight: normal;
    position: relative;
    text-indent: 10px;
}

.post-list .title h1:before {
    content: '';
    border-left: 2px solid #0590d6;
    display: inline-block;
    height: 18px;
    position: absolute;
    left: 0;
    bottom: 10px;
}

.post-list ul li {
    width: 100%;
    display: table;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}


.post-list ul a:not(.category-title) {
    position: relative;
}

.post-list li h2, .post-list li p, .post-list li time{
    width: 675px;
    float: right;
}

.post-list ul li img {
    height: 120px;
    float: left;
    width: 160px;
    object-fit: cover;
}

.post-list ul li h2 {
    font-size: 16px;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: normal;
}

.post-list ul li p {
    font-size: 14px;
    color: #777;
    line-height: 20px;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.post-list ul li time {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

.post-list ul li .category-title {
    position: absolute;
    left: 10px;
    top: 25px;
    padding: 5px 6px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    filter: alpha(opacity=60);
    background: rgba(0, 0, 0, .6);
    border-radius: 2px;
    text-decoration: none;
}