.attr-group-filter {
    margin-bottom: 30px;
}

.attr-group-filter .filter-title {
    margin: 0 0 15px;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.attr-group-filter-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.attr-group-filter .filter-group {
    margin-bottom: 5px;
}

.attr-group-filter .group-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.attr-group-filter .group-attributes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 5px;
}

.attr-group-filter .group-attributes label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #666;
    font-size: 13px;
}

.attr-group-filter .group-attributes label:hover {
    color: #333;
}

.attr-group-filter .group-attributes input[type="checkbox"] {
    margin: 0;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .attr-group-filter {
        margin-bottom: 20px;
    }

    .attr-group-filter .filter-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .attr-group-filter-content {
        gap: 12px;
    }

    .attr-group-filter .group-name {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .attr-group-filter .group-attributes {
        gap: 4px;
    }

    .attr-group-filter .group-attributes label {
        font-size: 12px;
    }
} 