/* custom-latest-posts plugin styles */

.custom-latest-posts {
    list-style: none;
    margin: 18px 12px!important;
    padding: 0;
    font-size: 16px;
}

.custom-latest-posts li {
    list-style: none;
    margin-bottom: 1.6em;
}

.custom-latest-posts li .custom-latest-post-title {
    margin: 0 0 5px 0;
    font-size: 16px;
	display: flex;
}

.custom-latest-posts li .custom-latest-post-title .clp-title-link {
    display: inline-block;      /* 或者 block，都可以 */
    white-space: nowrap;       /* 不换行 */
    overflow: hidden;          /* 隐藏溢出 */
    text-overflow: ellipsis;   /* 超出部分显示省略号 */
    color: #606060;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.custom-latest-posts li .custom-latest-post-title .clp-title-link:hover {
    color: #004097;
}

/* 摘要、日期、分类文字也保持16px */
.custom-latest-post-excerpt,
.custom-latest-post-date,
.custom-latest-post-categories {
    font-size: 16px;
    color: #606060;
}

.custom-latest-post-readmore {
    display: inline-block;
    margin-top: 5px;
    font-size: 16px;
    color: #606060;
    text-decoration: underline;
}

.custom-latest-post-readmore:hover {
    color: #004097;
}

/* icon 颜色 */
.custom-latest-post-title a i {
    color: #00A0E9;
	margin-right: 5px;
    font-size: 14px;
}
