 /* 筛选器区域 */
 .filter-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filter-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-weight: bold;
    color: #333;
    margin-right: 15px;
    min-width: 60px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-option {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

.filter-option:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.filter-option.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* 结果区域 */
.results-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.results-count {
    color: #666;
    font-size: 14px;
}

.sort-options {
    display: flex;
    gap: 10px;
}

.sort-button {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8f9fa;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.sort-button:hover {
    background: #e9ecef;
}

.sort-button.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}



.manga-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.manga-item:hover {
    transform: translateY(-2px);
}

  