    .section {
      padding: 20px 8px 100px;
    }

    h1 {
      font-size: 60px;
      font-weight: bold;
      color: rgba(0, 100, 0, 0.1);
      margin: 0;
    }

    h2 {
      font-size: .38rem;
      color: #048646;
      margin: -20px 0 10px 10px;
      font-weight: bold;
    }

    .buttons {
      margin: 50px 23%;
    }

    .btn {
      display: inline-block;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 15px;
      font-weight: bold;
      margin: 0 5px;
      cursor: pointer;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn.green {
      background: #048646;
    }

    .btn.orange {
      background: #f08c32;
    }

    .btn.active {
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transform: scale(1.05);
    }

    .products {
      display: none; /* 默认隐藏 */
      justify-content: center;
      flex-wrap: wrap;
      gap:13px;
      margin-top: 40px;
    }

    .products.active {
      display: flex; /* 显示被选中的分类 */
    }

    .product {
      text-align: center;
      position: relative;
    }

    .weight {
      font-weight: bold;
      font-size: 14px;
      color: #048646;
      margin-bottom: 10px;
    }

    .line {
      width: 2px;
      height: 40px;
      background: #f08c32;
      margin: 0 auto;
      position: relative;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: #f08c32;
      border-radius: 50%;
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
    }

    .product img {
      margin-top: 10px;
      max-width: 50px;
      height: auto;
      display: block;
    }