/* ===== 统一列表工具栏（筛选+搜索） ===== */
.list-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.list-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}
.list-filter {
    padding: 8px 18px;
    border: 1.5px solid var(--c-line);
    background: #fff;
    color: var(--c-text);
    border-radius: var(--r-xl);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    user-select: none;
}
.list-filter:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    transform: translateY(-1px);
}
.list-filter.active {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(30, 58, 95, .15);
}
.list-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--c-line);
    border-radius: var(--r-xl);
    padding: 4px 4px 4px 16px;
    transition: all .25s ease;
    min-width: 280px;
}
.list-search:focus-within {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, .08);
}
.list-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 8px 0;
    background: transparent;
    color: var(--c-text);
}
.list-search input::placeholder {
    color: var(--c-faint);
}
.list-search button {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--c-primary);
    color: #fff;
    border-radius: calc(var(--r-xl) - 4px);
    cursor: pointer;
    font-size: 15px;
    transition: all .2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list-search button:hover {
    background: var(--c-primary-d);
    transform: scale(1.05);
}

/* 结果统计 */
.result-info {
    padding: 4px 2px 16px;
    font-size: 12.5px;
    color: var(--c-faint);
}

/* 无结果提示 */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1px dashed var(--c-line);
    border-radius: var(--r-md);
}
.no-results-icon {
    font-size: 48px;
    margin-bottom: 8px;
    line-height: 1;
    height: 48px;
}
.no-results-icon svg {
    width: 48px;
    height: 48px;
}
.empty-icon svg {
    width: 32px;
    height: 32px;
}
.no-results h3 {
    font-size: 18px;
    color: var(--c-title);
    margin: 0 0 8px;
}
.no-results p {
    font-size: 13.5px;
    color: var(--c-muted);
    margin: 0 0 20px;
}

/* 定制化 CTA 响应式 */
@media (max-width: 960px) {
    .custom-cta {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 28px;
    }
    .custom-features {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .custom-cta {
        padding: 28px 20px;
    }
    .custom-cta-left h2 {
        font-size: 22px;
    }
    .custom-features {
        grid-template-columns: 1fr;
    }
    .custom-box {
        padding: 24px 20px;
    }
    .section-title {
        font-size: 20px;
    }
    .section-icon {
        font-size: 22px;
    }
}


