/* 首页贵金属卡片 — Gate 风格 */
.gs-home-metals {
  margin: 8px 15px 4px;
  padding: 14px;
  border-radius: 12px;
  background: var(--background-secondary, #151920);
  border: 1px solid var(--border-strength-100, #2b2f36);
}
.gs-home-metals .gs-h-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--content-primary, #eaecef);
}
.gs-home-metals .gs-h-more {
  border: none;
  background: none;
  color: var(--color-primary, #2354e6);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 0;
}
.gs-home-metals .gs-h-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gs-home-metals .gs-h-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 8px;
  background: var(--background-primary, #0b0e11);
  border: 1px solid var(--border-strength-100, #2b2f36);
  cursor: pointer;
  transition: transform .12s, border-color .12s;
}
.gs-home-metals .gs-h-item:active {
  transform: scale(.98);
  border-color: var(--color-primary, #2354e6);
}
.gs-home-metals .gs-h-item img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.gs-home-metals .gs-h-info { flex: 1; min-width: 60px; }
.gs-home-metals .gs-h-info b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--content-primary, #eaecef);
}
.gs-home-metals .gs-h-info span {
  font-size: 10px;
  color: var(--content-tertiary, #848e9c);
}
.gs-home-metals .gs-h-price {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 2px;
}
.gs-home-metals .gs-h-price em {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--content-primary, #eaecef);
}
.gs-home-metals .gs-h-price i {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}
.gs-home-metals .gs-h-price i.up { color: #fff; background: #17e6a1; }
.gs-home-metals .gs-h-price i.down { color: #fff; background: #f6465d; }

.ci-placeholder {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08) !important;
}
