.categories-tab .tabs {
    height: 50px;
    border-bottom: 1px solid rgba(99,99,99,.1);
    position: relative;
    margin-bottom: 10px;
}

.categories-tab .tabs .tab {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle
}

.categories-tab .tabs .tab:not(:last-child)::after {
    position: absolute;
    top: 17px;
    right: -10px;
    content: "";
    width: 1px;
    height: 16px;
    background: hsla(0, 0%, 39%, .1);
}


.categories-tab .tabs .tab a {
    display: block;
    font-size: 18px;
    color: #222;
    font-weight: 400;
    text-decoration: none;
    line-height: 48px;
    padding-bottom: 0;
}


.categories-tab .tabs .tab.active a {
    position: relative;
    font-weight: 500;
    color: #03A9F4;
    border-bottom: 1px solid #03A9F4;
    height: 50px;
}

.categories-tab ul {
    list-style: none;
    min-height: 200px;
    display: none;
    padding-bottom: 0;
    margin: 2px 0 0;
}

.categories-tab ul.active {
    display: block;
}

.categories-tab ul li {
    border-bottom: 1px dashed #ddd;
    padding: 15px 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.categories-tab ul li .img, .categories-tab ul  li .img img {
    height: 120px;
    width: 160px;
    object-fit: cover;
}

.categories-tab ul li.active li .img {
    display: block;
    float: left;
}

.categories-tab ul li .post-info {
    float: right;
    height: 80px;
    width: 660px;
}
.categories-tab ul li .post-info .title {
    font-size: 18px;
    color: #222;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.categories-tab ul li .post-info .title:hover {
    color: #03A9F4;
}

.categories-tab ul li .post-info .summary {
    font-size: 14px;
    height: 40px;
    line-height: 20px;
    color: #777;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.categories-tab ul li .post-info .meta {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

.categories-tab 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;
}

.categories-tab ul li .category-title:hover {
    background-color: #1abc9c;
    color: #fff;
}