/* 基础复用样式 */
.text-light-opacity-80 {
    color: rgba(255,255,255,0.8) !important;
}
.sidebar-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}
.sidebar-card li:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
/* 筛选栏样式 */
.update-filter-bar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}
.type-tab {
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}
.type-tab.active {
    background-color:  #dc3545;
    color: #fff;
}
.type-tab:hover:not(.active) {
    background-color: #f1f1f1;
}
.time-tab-group {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.time-tab {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.time-tab.active {
    background-color:  #dc3545;
    color: #fff;
}
.time-tab:hover:not(.active) {
    background-color: #f1f1f1;
}
/* 更新列表样式 */
.update-list-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.update-item {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-bottom: 1px dashed #eee;
    transition: all 0.2s;
}
.update-item:last-child {
    border-bottom: none;
}
.update-item:hover {
    background-color: #f8f9fa;
    padding-left: 0.5rem;
    border-radius: 4px;
}
/* 作品基础信息 */
.update-work-info {
    flex: 1 1 60%;
    margin-right: 1rem;
}
.update-work-title {
    font-weight: 600;
    color: #333;
    text-decoration: none;
    font-size: 1.05rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.update-work-title:hover {
    color:  #dc3545;
}
.update-work-meta {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.update-work-tag {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background-color: #f1f1f1;
    color: #666;
    margin-right: 0.5rem;
}
/* 更新内容信息 */
.update-content-info {
    flex: 1 1 30%;
    min-width: 200px;
    margin-top: 0.5rem;
}
.update-chapter {
    background-color:  #dc3545;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.update-time {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.update-time i {
    font-size: 0.8rem;
}
/* 分页样式 */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.page-item.active .page-link {
    background-color:  #dc3545;
    border-color:  #dc3545;
}
.page-link {
    color: #333;
}
.page-link:hover {
    color: #dc3545;
    border-color:  #dc3545;
}
/* 今日更新数统计 */
.update-count-badge {
    background-color: #dc3545;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}