              /* 子元素默认宽度设置 */
              .section-content,
              .case-tabs,
              .data-section,
              .case-section {
                  width: 100%;
                  max-width: 1200px;
                  margin-left: auto;
                  margin-right: auto;
                  box-sizing: border-box;
              }
      
              .case-section {
                  max-width: 1600px;
              }
      
      
              /* 页面标题 */
              .page-title {
                  text-align: center;
                  font-size: 32px;
                  font-weight: 600;
                  color: #2c3e50;
                  margin-bottom: 60px;
                  margin-top: 60px;
              }
      
              /* 数据部分通用样式 */
              .data-section {
                  margin-bottom: 80px;
              }
      
              .section-title {
                  text-align: center;
                  font-size: 28px;
                  font-weight: 600;
                  color: #2c3e50;
                  margin-bottom: 15px;
              }
      
              .section-subtitle {
                  text-align: center;
                  color: #666;
                  font-size: 14px;
                  margin-bottom: 50px;
              }
      
              .section-content {
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  overflow: hidden;
                  border-radius: 24px;
              }
      
              /* 通用媒体元素样式 */
              .media-item {
                  width: 100%;
                  height: 100%;
                  object-fit: cover;
                  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
              }
      
      
              /* 客户案例样式 */
              .case-section {
                  margin-bottom: 80px;
              }
      
              .case-tabs {
                  display: flex;
                  justify-content: center;
                  flex-wrap: nowrap;
                  /* 防止换行 */
                  gap: 20px;
                  margin-bottom: 40px;
                  padding: 0 20px;
                  position: relative;
                  z-index: 1;
                  width: 100%;
                  box-sizing: border-box;
                  overflow-x: auto;
                  /* 添加水平滚动 */
                  -webkit-overflow-scrolling: touch;
                  /* 提升iOS滚动体验 */
                  scrollbar-width: none;
                  /* Firefox隐藏滚动条 */
                  -ms-overflow-style: none;
                  /* IE和Edge隐藏滚动条 */
              }
      
              .case-tabs::-webkit-scrollbar {
                  display: none;
                  /* 隐藏WebKit浏览器的滚动条(Chrome和Safari) */
              }
      
              .tab-item {
                  padding: 10px 20px;
                  cursor: pointer;
                  font-size: 16px;
                  color: #666;
                  transition: all 0.3s ease;
                  position: relative;
                  border-bottom: 2px solid transparent;
                  white-space: nowrap;
                  text-align: center;
                  flex-shrink: 0;
                  /* 防止在空间不足时被压缩 */
              }
      
              .tab-item.active {
                  color: #1660ff;
                  font-weight: 500;
                  border-bottom: 2px solid #1660ff;
              }
      
              .tab-item:hover:not(.active) {
                  color: #1660ff;
              }
      
      
      
              .case-swiper {
                  width: 100%;
                  /* height: 480px; */
                  margin-bottom: 40px;
                  /* 防止内容溢出屏幕 */
              }
      
              .case-slide {
                  display: flex;
                  gap: 40px;
                  align-items: center;
                  background-color: #fff;
                  border-radius: 20px;
                  transition: all 0.5s ease;
                  padding: 20px;
                  box-sizing: border-box;
                  width: 100%;
              }
      
              .case-left {
                  flex: 1;
                  padding-right: 20px;
                  display: flex;
                  flex-direction: column;
                  justify-content: space-between;
                  min-height: 540px;
              }
      
              .case-content-top {
                  display: flex;
                  flex-direction: column;
              }
      
              /* 产品优势包装容器 */
              .product-advantages-wrapper {
                  width: 100%;
                  max-width: 1200px;
                  margin:  auto;
              }
      
              .case-tag {
                  display: inline-block;
                  margin-bottom: 16px;
                  transition: all 0.3s ease;
              }
      
              .case-tag img {
                  height: 36px;
                  width: auto;
                  object-fit: contain;
                  vertical-align: middle;
                  transition: all 0.3s ease;
              }
      
              .case-tag:hover img {
                  transform: scale(1.05);
              }
      
              .case-title {
                  font-size: 24px;
                  font-weight: 600;
                  color: #2c3e50;
                  margin-bottom: 16px;
              }
      
              .case-description {
                  color: #666;
                  line-height: 1.8;
                  margin-bottom: 0;
                  font-size: 14px;
              }
      
              .case-btn {
                  font-size: 18px;
                  border-radius: 6px;
                  font-weight: bold;
                  line-height: 2.444444444444444;
                  width: 46.51162790697674%;
                  text-align: center;
                  padding: 2px;
                  color: #fff;
                  background: linear-gradient(to right, #165dff, #1fa2ff);
                  position: relative;
                  transition: all 0.6s;
                  max-width: 210px;
                  border: none;
                  cursor: pointer;
              }
      
              .case-btn:hover {
                  background: linear-gradient(to right, #0d4edb, #1a8ad9);
                  transform: translateY(-2px);
                  box-shadow: 0 4px 12px rgba(22, 96, 255, 0.3);
              }
      
              .case-right {
                  /* flex: 1; */
                  width: 960px;
                  height: 540px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
              }
      
              .case-image {
                  width: 100%;
                  max-width: 100%;
                  border-radius: 13px;
                  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                  transition: all 0.3s ease;
                  object-fit: fill;
                  height: 100%;
                  box-sizing: border-box;
                  display: block;
              }
      
              .case-image:hover {
                  transform: scale(1.02);
                  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
              }
      
      
              /* 小屏幕上的活动标签样式增强 */
              @media (max-width: 768px) {
                  .tab-item.active {
                      background-color: rgba(22, 93, 255, 0.05);
                      border-radius: 4px;
                  }
              }
      
              /* 动画效果 */
              @keyframes fadeInUp {
                  from {
                      opacity: 0;
                      transform: translateY(30px);
                  }
      
                  to {
                      opacity: 1;
                      transform: translateY(0);
                  }
              }
      
              .data-section,
              .case-section {
                  animation: fadeInUp 0.8s ease forwards;
              }
      
              .data-section:nth-child(3) {
                  animation-delay: 0.2s;
              }
      
              /* 媒体查询 - 平板设备 */
              @media (min-width: 577px) and (max-width: 992px) {
                  .case-tabs {
                      justify-content: flex-start;
                      /* 左对齐，方便滚动查看 */
                      flex-wrap: nowrap;
                      padding: 0 15px;
                      gap: 15px;
                      margin-bottom: 35px;
                      overflow-x: auto;
                      -webkit-overflow-scrolling: touch;
                      /* 提升iOS滚动体验 */
                      scrollbar-width: none;
                      /* Firefox隐藏滚动条 */
                      -ms-overflow-style: none;
                      /* IE和Edge隐藏滚动条 */
                  }
      
                  .tab-item {
                      padding: 10px 18px;
                      font-size: 15px;
                      flex-shrink: 0;
                      /* 防止在空间不足时被压缩 */
                  }
      
                  .case-swiper {
                      height: auto;
                      /* min-height: 550px; */
                  }
      
                  .case-slide {
                      gap: 25px;
                      padding: 20px;
                      align-items: flex-start;
                  }
      
                  .case-left {
                      min-height: 350px;
                      padding-right: 10px;
                      width: 50%;
                  }
      
                  .case-right {
                      display: flex;
                      justify-content: center;
                      width: 50%;
                  }
      
                  .case-image {
                      height: 350px;
                      max-height: 50vh;
                  }
      
                  .case-content-top {
                      margin-bottom: 20px;
                  }
      
                  .case-tag {
                      margin-bottom: 14px;
                  }
      
                  .case-tag img {
                      height: 32px;
                  }
      
                  .case-title {
                      font-size: 22px;
                      margin-bottom: 14px;
                  }
      
                  .case-description {
                      font-size: 14px;
                      line-height: 1.7;
                      margin-bottom: 20px;
                  }
      
                  .case-btn {
                      font-size: 17px;
                      max-width: 200px;
                      width: 100%;
                  }
              }
      
              /* 媒体查询 - 手机设备 */
              @media (max-width: 576px) {
                  .case-tabs {
                      gap: 5px;
                      padding: 0 5px;
                      margin-bottom: 20px;
                      justify-content: flex-start;
                      /* 左对齐，方便滚动查看 */
                      flex-wrap: nowrap;
                      /* 确保不换行 */
                      overflow-x: auto;
                      /* 确保可以水平滚动 */
                      -webkit-overflow-scrolling: touch;
                      /* 提升iOS滚动体验 */
                      scrollbar-width: none;
                      /* Firefox隐藏滚动条 */
                      -ms-overflow-style: none;
                      /* IE和Edge隐藏滚动条 */
                  }
      
                  .tab-item {
                      padding: 8px 12px;
                      /* 增加垂直内边距，提供更大的触摸区域 */
                      font-size: 13px;
                      min-width: 80px;
                      /* 确保最小宽度，便于点击 */
                      flex-shrink: 0;
                      /* 防止在空间不足时被压缩 */
                  }
      
                  /* 增强活动标签的视觉效果 */
                  .tab-item.active {
                      box-shadow: 0 1px 3px rgba(22, 93, 255, 0.1);
                  }
      
                  /* 小屏幕下case-slide改为上下布局 */
                  .case-slide {
                      flex-direction: column;
                      gap: 20px;
                      padding: 15px;
                  }
      
                  .case-left {
                      padding-right: 0;
                      min-height: auto;
                      width: 100%;
                      order: 2;
                      /* 内容部分放在下面 */
                  }
      
                  .case-right {
                      width: 100%;
                      order: 1;
                      /* 图片部分放在上面 */
                  }
      
                  .case-image {
                      height: 200px;
                      max-height: 40vh;
                      margin-bottom: 10px;
                  }
      
                  .case-content-top {
                      margin-bottom: 15px;
                  }
      
                  .case-title {
                      font-size: 20px;
                      margin-bottom: 12px;
                  }
      
                  .case-description {
                      font-size: 14px;
                      line-height: 1.6;
                  }
      
                  .case-btn {
                      font-size: 16px;
                      width: 100%;
                      max-width: 100%;
                      margin: 0 auto;
                  }
      
                  .case-swiper {
                      /* min-height: 600px; */
                  }
      
                  .case-tag {
                      margin-bottom: 12px;
                  }
      
                  .case-tag img {
                      height: 30px;
                  }
              }