/* 盒子主体 */
.body-ai {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.body-ai .index-team-swip {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.body-ai .left {
    flex: 1;
    position: relative;
    padding-right: 20px;
}

.body-ai .left h3 {
    font-size: 36px;
    color: #222;
    margin-bottom: 10px;
}

.body-ai .left .insd {
    font-size: 72px;
    color: #efefef;
    position: absolute;
    top: -20px;
    right: 14px;
    z-index: 0;
    pointer-events: none;
}

.body-ai .left hr {
    width: 100%;
    border: 1px solid #e0e0e0;
    margin: 20px 0;
}

.body-ai .left span,
.body-ai .left p {
    display: block;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.7;
}

.body-ai .left ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.body-ai .left ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.body-ai .left ul li i {
    width: 8px;
    height: 8px;
    background: #d82528;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    margin-top: 8px;
}

.body-ai .right {
    flex: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body-ai .right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.body-ai strong{
    color: #d82528;
}


/* 幻灯按钮 */
.ai-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
  }
  
  .ai-swiper {
    overflow: hidden;
  }
  
  .ai-swiper-btns {
    display: flex;
    gap: 10px;
  }
  
  /* 通用按钮基础样式 */
  .ai-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #c1c1c1;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    transition: all 0.3s ease;
  }
  
  .ai-btn::after {
    font-family: 'swiper-icons';
    font-size: 18px;
    text-transform: none;
    color: #c1c1c1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    content: '';
  }
  
  .ai-btn-prev::after {
    content: 'prev';
  }
  
  .ai-btn-next::after {
    content: 'next';
  }
  
  .ai-btn:hover {
    border-color: #222222;
  }
  
  .ai-btn:hover::after {
    color: #222222;
  }
  
  /* 幻灯效果 */
  .ai-swiper .swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: nowrap;
  }
 
