
  /* 容器：启用 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: 10px 8px;
  }

  /* 统一的高级感图标底框 */
 .lmc-icon-box {
    width: 30px;
    height: 30px;
    margin: 0 auto 8px auto;
    border-radius: 4px;
    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: #222;
  }
  
 .lmc-adv-subtitle {
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-top: 3px;
    color: #444;
  }

 .lmc-adv-desc {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    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%;
    }
  }
