
  .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
  }

  .price-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
  }

  .price-table th,
  .price-table td {
    border: 1px solid #444;
    padding: 12px 16px;
    white-space: nowrap;
    font-size: 14px;
  }

  .price-table th {
    background-color: #111;
    font-weight: 700;
  }

  .price-table tr:hover {
    background-color: #1a1a1a;
  }

  .price-table .mold {
    color: #ff4d4d;
    font-weight: bold;
  }

  /* 手机端优化 */
  @media screen and (max-width: 768px) {
    .price-table {
      min-width: 860px;
    }

    .price-table th,
    .price-table td {
      padding: 10px 12px;
      font-size: 12px;
    }
  }
