/* ==========================================
   资源导航系统 - 分类列表页专属样式 (category.css)
========================================== */

/* 顶部大图背景遮罩 */
.cat-hero-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #111827; /* 默认深色底 */
}

.cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.4), rgba(17, 24, 39, 0.9));
    z-index: 0;
}

/* 子分类药丸按钮特效 */
.subcat-pill {
    transition: all 0.3s ease;
    cursor: pointer;
}

.subcat-pill.active {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3), 0 2px 4px -1px rgba(59, 130, 246, 0.06);
    font-weight: bold;
}

.dark .subcat-pill.active {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
}

/* 分页组件高级特效 */
.pagination-link {
    transition: all 0.2s ease-in-out;
}

.pagination-link:hover:not(.active):not(.disabled) {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pagination-link.active {
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    color: white;
    border-color: transparent;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.dark .pagination-link.active {
    background: linear-gradient(135deg, #2563eb, #4338ca);
}

.pagination-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f9fafb;
}

.dark .pagination-link.disabled {
    background-color: #1f2937;
    color: #6b7280;
    border-color: #374151;
}

/* 隐藏滚动条 */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}