
  /* 容器：启用 flex 布局 */
  .lmc-advantages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    box-sizing: border-box;
  }

  /* 每个卖点：桌面端默认 6 列布局 */
  .lmc-adv-item {
    flex: 0 0 16.66%;
    box-sizing: border-box;
    padding: 12px 8px;
  }

  /* 统一的高级感图标底框 */
  .lmc-icon-box {
    width: 32px;
    height: 32px;
    margin: 0 auto 8px auto;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
  }

  /* 标题和描述的基础样式 */
  .lmc-adv-title {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111111;
  }
  
  .lmc-adv-subtitle {
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.5px;
    margin-top: 2px;
    color: #d5a55b;
    text-transform: uppercase;
  }

  .lmc-adv-desc {
    font-size: 12px;
    color: #555555;
    margin-top: 6px;
    line-height: 1.4;
  }

  /* 平板端：改为 3 列布局 */
  @media (max-width: 900px) {
    .lmc-adv-item {
      flex: 0 0 33.33%;
    }
  }

  /* 手机端：改为 1 列竖排（人群/体验在前，产品/工艺在后） */
  @media (max-width: 600px) {
    .lmc-adv-item {
      flex: 0 0 100%;
      padding: 14px 10px;
      border-bottom: 1px solid #e0e0e0;
    }
    .lmc-adv-item:last-child {
      border-bottom: none;
    }
  }
