/* 标签选中效果 */
.category-label-active {
    font-weight: 600;
    color: #2a6afa;
}

.category-label-active .label-icon {
    display: inline !important;
}

/* 鼠标移入文章卡片效果 */
.article-card:hover {
    /* 增加阴影 */
    box-shadow: 0 .4rem .4rem #1a1a1a19;
    /* 渐变 */
    transition-duration: 0.2s;
    /* 渐变属性 */
    transition-property: box-shadow;
}

.article-card:hover i {
    color: #2a6afa;
}

.category-table td {
    padding: .5rem 0 .5rem 0;
}

.category-table tr td:last-child {
    border-bottom: 1px solid #CCCCCC;
}

.category-table tr:last-child td:last-child {
    border-bottom: 0;
}