/* 全站股票搜索下拉 — 与 valuation 顶栏 autocomplete 视觉一致 */
.sv-stock-search-wrap,
.search-input-wrap {
  position: relative;
}

.sv-stock-suggestions,
.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 200;
  max-height: 280px;
  overflow-y: auto;
  display: none;
}

.sv-stock-suggestions.open,
.suggestions.open {
  display: block;
}

.suggestion-item {
  padding: 9px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.suggestion-item:hover,
.suggestion-item.active {
  background: #e8f0fe;
}

.suggestion-item .s-name {
  font-weight: 500;
}

.suggestion-item .s-code {
  color: #888;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.suggestion-item .s-st {
  color: #d93025;
  font-size: 11px;
  margin-left: 4px;
  font-weight: 600;
}

/* 港美股市场徽标（搜索建议项） */
.s-mkt{display:inline-block;font-size:11px;line-height:1;padding:2px 4px;border-radius:4px;margin-right:6px;vertical-align:middle;font-weight:600;}
.s-mkt-hk{background:#fff1f0;color:#cf1322;}
.s-mkt-us{background:#e6f4ff;color:#1677ff;}
