/* 分类页面样式 */
.category-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.filter-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.filter-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 14px;
    color: #999;
    min-width: 50px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.filter-btn {
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    font-size: 13px;
    color: #ccc;
    transition: all 0.3s;
    white-space: nowrap;
}

.filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background-color: #00d4ff;
    color: #0a0a0a;
}

.category-header {
    margin-bottom: 30px;
}

.category-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    padding: 10px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s;
}

.page-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-btn.active {
    background-color: #00d4ff;
    color: #0a0a0a;
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .category-container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .filter-row {
        flex-wrap: wrap;
    }
    
    .filter-label {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .filter-options {
        width: 100%;
    }
}
