/* 搜索补全下拉列表容器 */
.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999 !important;
    background: var(--bg-surface);
    border: 1px solid var(--border-strong);
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    list-style: none;
    padding: 0;
    margin-top: 0px;
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
}

.suggestions-list li {
    border-bottom: 1px solid var(--border-subtle);
}

.suggestions-list li:last-child {
    border-bottom: none;
}

.suggestions-list a {
    display: block;
    padding: 10px 20px;
    color: var(--text-body);
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.suggestions-list a:hover {
    background-color: var(--bg-hover);
    color: var(--text-title);
}


/* 高亮关键词  */
.suggestions-list span {
    color: #000;
    /* font-weight: bold; */
}