
  .cat-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e8e0d8;
  }

  .cat-wrap .cat-image {
    flex: 0 0 44%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #4caf7a, #7cb083, #b47ea3, #f3e1c2, #cc9c7b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    letter-spacing: 2px;
  }

  .cat-wrap .cat-content {
    flex: 1;
    padding: 2.8rem 3rem 2.8rem 2.8rem;
    display: flex;
    flex-direction: column;
  }

  .cat-wrap .cat-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #4a8a6a;
    font-weight: 700;
    margin-bottom: 0.2rem;
  }

  .cat-wrap .cat-title {
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 0.4rem;
    color: #1f6d4b;
    letter-spacing: -1px;
  }

  .cat-wrap .cat-desc {
    color: #4a4038;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 0.8rem;
  }

  .cat-wrap .cat-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 0.5rem;
    list-style: none;
    padding: 0;
    margin-bottom: 0.6rem;
    max-height: 82px;
    overflow-y: auto;
  }
  .cat-wrap .cat-colors li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 400;
    color: #4a4038;
    background: #f6f2ed;
    padding: 0.1rem 0.5rem 0.1rem 0.2rem;
    border-radius: 20px;
    border: 1px solid #ece6e0;
    white-space: nowrap;
  }
  .cat-wrap .cat-colors .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
  }

  .cat-wrap .cat-set {
    font-size: 0.75rem;
    font-weight: 600;
    color: #b0a090;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-top: 0.6rem;
    border-top: 2px solid #f0e8e0;
  }

  /* 自定义滚动条 */
  .cat-wrap .cat-colors::-webkit-scrollbar {
    width: 3px;
  }
  .cat-wrap .cat-colors::-webkit-scrollbar-track {
    background: #f0ece6;
    border-radius: 4px;
  }
  .cat-wrap .cat-colors::-webkit-scrollbar-thumb {
    background: #d0c8c0;
    border-radius: 4px;
  }

  @media (max-width: 700px) {
    .cat-wrap {
      flex-direction: column;
    }
    .cat-wrap .cat-image {
      flex: none;
      width: 100%;
      aspect-ratio: 16 / 9;
    }
    .cat-wrap .cat-content {
      padding: 1.8rem;
    }
    .cat-wrap .cat-title {
      font-size: 2.8rem;
    }
    .cat-wrap .cat-colors {
      max-height: 60px;
    }
  }
