
  .scenarios-section {
    text-align: center;
    padding: 40px 20px;
  }

  .scenarios-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold; /* 加粗标题 */
  }

  .scenarios-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
  }

  .scenario-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .scenario-item {
    width: 18%;
    min-width: 120px;
    text-align: center;
  }

  .scenario-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .scenario-item h4 {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
  }

  @media (max-width: 768px) {
    .scenario-item {
      width: 45%;
    }
  }
