/* ========== 容器重置 ========== */
  #_quota {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  #_quota li {
    padding: 0;
    margin: 0;
  }

  /* ========== Grid 表格布局 ========== */
  #_quota dl {
    display: grid;
    grid-template-columns:2fr 2fr 1.2fr 1fr 0.8fr 1.2fr;
    align-items: center;
    padding: 12px 20px;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
  }

  /* 移除所有 dt/dd 默认样式 */
  #_quota dl dt,
  #_quota dl dd {
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ========== 表头样式 ========== */
  #_quota dl:first-child {
    background: #f8fafc;
    border-bottom: 2px solid #e8ecf0;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  #_quota dl:first-child dt,
  #_quota dl:first-child dd {
    font-weight: 700 !important;
    color: #0965b0 !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  /* ========== 数据行交互 ========== */
  #_quota dl:not(:first-child):hover {
    background-color: #f5f9ff;
  }

  #_quota dl:last-child {
    border-bottom: none;
  }

  /* ========== 涨跌颜色优化 ========== */
  /* 绿色 = 下跌 (中国市场惯例) */
  #_quota .green {
    color: #00a854 !important;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }

  /* 红色 = 上涨 */
  #_quota .red {
    color: #e84749 !important;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }

  /* 数值列右对齐，更易比对 */
  #_quota dl dt:nth-child(1),
  #_quota dl dd:nth-child(1) {
    text-align: center;
    font-weight: 500;
  }

  #_quota dl dt:nth-child(n+2),
  #_quota dl dd:nth-child(n+2) {
    text-align: center;
  }

  /* 日期列居中 */
  #_quota dl dt:last-child,
  #_quota dl dd:last-child {
    text-align: center;
    color: #888;
    font-size: 13px;
  }

  /* ========== 数字等宽排列 ========== */
  #_quota dl dt {
    font-variant-numeric: tabular-nums;
    line-height: 1.6;
  }

  /* ========== 响应式：移动端横向滚动 ========== */
  @media (max-width: 768px) {
    #_quota {
      border-radius: 0;
      box-shadow: none;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
    }

    #_quota dl {
      grid-template-columns: 1.8fr 1fr 0.8fr 0.6fr 1fr;
      padding: 10px 12px;
      font-size: 12px;
      /* min-width: 500px; /* 触发父级横向滚动 */ */
    }

    /* 移动端表头不sticky，避免遮挡 */
    #_quota dl:first-child {
      position: static;
    }
	.x6{
		width: 100%;
	}
  }

  /* ========== 无障碍：减少动画 ========== */
  @media (prefers-reduced-motion: reduce) {
    #_quota dl {
      transition: none;
    }
  }
  .quota li dl:nth-child(n+12) {
      display: none !important;
  }