.uxsearch-suggest-box {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.uxsearch-loading,
.uxsearch-no-result {
    padding: 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.uxsearch-suggest-list {
    padding: 8px;
}

.uxsearch-suggest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #e2e8f0;
    transition: background 0.2s;
}

.uxsearch-suggest-item:hover {
    background: #334155;
}

.uxsearch-thumb,
.uxsearch-thumb-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.uxsearch-info {
    flex: 1;
    min-width: 0;
}

.uxsearch-title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.uxsearch-title mark {
    background: #4f46e5;
    color: #fff;
    padding: 2px 4px;
    border-radius: 3px;
}

.uxsearch-type {
    font-size: 12px;
    color: #94a3b8;
}

/* 滚动条样式 */
.uxsearch-suggest-box::-webkit-scrollbar {
    width: 6px;
}

.uxsearch-suggest-box::-webkit-scrollbar-track {
    background: transparent;
}

.uxsearch-suggest-box::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 3px;
}

.uxsearch-suggest-box::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}
