
    .color-chart {
      font-family: Arial, sans-serif;
      color: #333;
    }
    .color-chart .notice {
      text-align: center;
      font-size: 14px;
      margin: 20px auto 10px;
      padding: 10px;
      color: #555;
    }
    .color-chart .notice a {
      color: #d63384;
      font-weight: bold;
      text-decoration: none;
    }
    .color-chart .notice a:hover {
      text-decoration: underline;
    }

    /* 表格外层，便于桌面端宽表格在小屏时允许横向滚动（兜底） */
    .color-chart .table-container {
      width: 100%;
      overflow-x: auto;
    }

    /* 桌面端样式（8列） */
    .color-chart table {
      border-collapse: collapse;
      margin: 10px auto 40px;
      text-align: center;
      background: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      width: 100%;
      table-layout: fixed;
      min-width: 960px; /* 8列时更稳定的排版宽度 */
    }
    .color-chart td {
      border: 1px solid #000;
      padding: 8px 10px;
      vertical-align: top;
      word-wrap: break-word;
      background: #fff;
    }
    .color-chart .label {
      font-size: 14px;
      margin-bottom: 4px;
      display: block;
      font-weight: normal;
    }
    .color-chart .color-box {
      width: 100%;
      height: 50px;
      border: 1px solid #ccc;
    }
    .color-chart td[colspan="8"] {
      background: #f0f0f0;
      font-size: 16px;
      font-weight: 700;
      text-align: center;
    }

    /* 移动端自适应（≤640px）：行变为两列卡片式 */
    @media (max-width: 640px) {
      .color-chart .table-container {
        overflow-x: visible; /* 我们用卡片式就不需要横向滚动了 */
      }
      .color-chart table {
        min-width: 0;           /* 不强制宽度 */
        box-shadow: none;       /* 移动端更轻量 */
      }
      .color-chart tbody tr {
        display: flex;          /* 每一行改成弹性布局 */
        flex-wrap: wrap;        /* 自动换行 */
        border: 1px solid #000; /* 外圈边线，视觉保持 */
        border-left: 0;
        border-right: 0;
        margin-bottom: 10px;
      }
      .color-chart td {
        box-sizing: border-box;
        width: 50%;             /* 两列 */
        border: 1px solid #000; /* 每个卡片有边框 */
        padding: 10px;
      }
      .color-chart td[colspan="8"] {
        width: 100%;
        border-width: 1px 0;    /* 顶部标题占满整行 */
        font-size: 15px;
      }
      .color-chart .color-box {
        height: 56px;           /* 手机上色块稍高一点更显眼 */
      }
    }
  