/* ============================================================================
 * 栏目页 · column.css
 * ========================================================================== */

.page-column .page-main {
    padding-top: 20px;
    padding-bottom: 60px;
}

/* 面包屑 */
.page-column .breadcrumb,
.page-article .breadcrumb {
    font-size: 13px;
    color: #999;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.page-column .breadcrumb .sep,
.page-article .breadcrumb .sep {
    margin: 0 8px;
    color: #ccc;
}
.page-column .breadcrumb a,
.page-article .breadcrumb a {
    color: #666;
}
.page-column .breadcrumb a:hover,
.page-article .breadcrumb a:hover {
    color: #c00;
}

/* 二级标题 */
.page-hd {
    margin: 30px 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #c00;
}
.page-hd h1 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}
.page-hd .sub-tabs {
    margin-top: 12px;
    font-size: 14px;
}
.page-hd .sub-tabs li {
    display: inline-block;
    margin-right: 24px;
    padding: 4px 0;
}
.page-hd .sub-tabs li.active a {
    color: #c00;
    border-bottom: 2px solid #c00;
    padding-bottom: 2px;
}

/* 文章列表 */
.article-list {
    list-style: none;
}
.article-list .article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 8px;
    border-bottom: 1px dashed #eee;
    font-size: 15px;
}
.article-list .article-item:hover {
    background: #fafafa;
}
.article-list .article-link {
    flex: 1;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.article-list .article-link:hover {
    color: #c00;
}
.article-list .badge {
    display: inline-block;
    padding: 1px 6px;
    background: #c00;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    margin-right: 6px;
    vertical-align: middle;
}
.article-list .badge.top {
    background: #f60;
}
.article-list .date {
    color: #999;
    font-size: 13px;
    flex-shrink: 0;
    margin-left: 16px;
}
.article-list .empty {
    padding: 40px;
    text-align: center;
    color: #999;
}

/* 分页 */
.pager {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #666;
}
.pager .page-info {
    margin: 0 16px;
}
.pager .page-prev,
.pager .page-next {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    margin: 0 4px;
    text-decoration: none;
}
.pager .page-prev:hover,
.pager .page-next:hover {
    color: #c00;
    border-color: #c00;
}