/*最后一篇文章移除边框*/
.post-lists .gb-grid-wrapper .gb-grid-column:last-child .post-list {
	border-bottom: none;
	padding-bottom: 20px;
}
/*文章特色图尺寸*/
.thumb-img figure {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 2 / 1;
    overflow: hidden;
}
/*文章标题仅显示一行*/
.post-title {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}
/*文章摘要仅显示三行*/
.post-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}