/* 外层容器 */
.main-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 16px;
}

/* 布局 */
.flex-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.flex-layout .left {
  flex: 1;
}

.flex-layout .right {
  flex: 1;
}

/* 图片 */
.img-wrapper {
  position: relative;
}

.img-wrapper img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: block;
}

/* 角标 */
.tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tag.hot {
  background: #ef4444;
}

.tag.service {
  background: #3b82f6;
}

/* 内容 */
.category {
  display: inline-block;
  padding: 8px 16px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.title {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.2;
}

.desc {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* 价格卡片 */
.price-box {
  background: linear-gradient(to right, #eff6ff, #ecfeff);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #dbeafe;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.price-item {
  text-align: center;
}

.price-label {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
}

.old-price {
  font-size: 20px;
  color: #ef4444;
  text-decoration: line-through;
}

.new-price {
  font-size: 30px;
  font-weight: 700;
  color: #2563eb;
}

.consult-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 180px;
}

.consult-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.consult-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.consult-btn:hover::before {
  left: 100%;
}

.consult-btn:active {
  transform: translateY(-1px);
}

/* 底部特性 */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
}

.feature svg {
  width: 16px;
  height: 16px;
  stroke: #2563eb;
  stroke-width: 2;
  fill: none;
}

/* 手机端 */
@media (max-width: 768px) {
  .flex-layout {
    flex-direction: column;
  }

  .price-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .consult-btn {
    width: 100%;
    justify-content: center;
  }

  .features {
    justify-content: center;
  }

  .title {
    font-size: 24px;
  }
}

/* ===========导航栏============= */
.service-tabs {
  background: #f4f4f4;
  border: none;
  position: relative;
  z-index: 30;
  width: 100%;
  top: 20px;
  /* 匹配效果图2的白色圆角容器 */
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-tabs.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 0;
}

.tabs-container {
  margin: 0 auto;
  padding: 0;
}

.tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  padding: 0;
  position: relative;
}

/* 基础Tab样式 - 完全匹配效果图2的极简风格 */
.tab-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: 0;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  color: #6b7280;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  flex: 1;
  text-align: center;
}

.tab-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #6b7280;
  transition: color 0.3s ease;
}

/* 激活态（当前选中）- 匹配效果图2的橙色文字+下划线 */
.tab-item.active {
  color: #f97316;
  /* 效果图2的橙色 */
  font-weight: 600;
}

.tab-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
  /* 渐变下划线 */
  border-radius: 2px 2px 0 0;
}

.tab-item.active .tab-icon {
  color: #f97316;
}

/* 悬浮效果 - 柔和变色，不突兀 */
.tab-item:not(.active):hover {
  color: #2563eb;
}

.tab-item:not(.active):hover .tab-icon {
  color: #2563eb;
}

/* 点击反馈 */
.tab-item:active {
  transform: translateY(1px);
}

/* =================================== */
/* ✅ 移动端完美适配 */
/* =================================== */
@media (max-width: 768px) {
  .service-tabs {
    border-radius: 16px;
    padding: 0 10px;
  }

  .tabs-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
  }

  .tabs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .tab-item {
    font-size: 15px;
    padding: 16px 12px;
    flex: 0 0 auto;
  }

  .tab-icon {
    width: 16px;
    height: 16px;
  }

  .tab-item.active::after {
    width: 70%;
  }
}

/* 超小屏适配 - 仅显示图标 */
@media (max-width: 380px) {
  .tab-item span {
    display: none;
  }

  .tab-item {
    padding: 16px 8px;
  }
}

/* 服务详情区域样式 */
.service-details-section {
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.introduce {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.module-title {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: #2563eb;
  margin-right: 12px;
  border-radius: 2px;
}

.intro-content-wrapper {
  padding: 16px 0;
}

.intro-content {
  margin-bottom: 20px;
}

.font14 {
  font-size: 14px;
}

.col666 {
  color: #666666;
}

.lh20 {
  line-height: 20px;
}

.intro-content p {
  margin: 12px 0;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 8px;
}

.attr-label {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.el-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  border: none;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: #ffffff;
  transition: all 0.3s ease;
}

.el-tag--light {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: #ffffff;
  border: none;
}

.el-tag:hover {
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  color: #ffffff;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .service-details-section {
    padding: 20px 16px;
  }

  .introduce {
    padding: 16px;
  }

  .module-title {
    font-size: 20px;
  }

  .attr-label {
    gap: 8px;
  }

  .el-tag {
    font-size: 12px;
    padding: 4px 8px;
  }
}


/* 服务详情区域样式 */
.service-details-section {
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.introduce {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.module-title {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: #2563eb;
  margin-right: 12px;
  border-radius: 2px;
}

.intro-content-wrapper {
  padding: 16px 0;
}

.intro-content {
  margin-bottom: 20px;
}

.font14 {
  font-size: 14px;
}

.col666 {
  color: #666666;
}

.lh20 {
  line-height: 20px;
}

.intro-content p {
  margin: 12px 0;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 8px;
}

.attr-label {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.el-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  border: none;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: #ffffff;
  transition: all 0.3s ease;
}

.el-tag--light {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: #ffffff;
  border: none;
}

.el-tag:hover {
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  color: #ffffff;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .service-details-section {
    margin-top: 20px;
    padding: 20px 16px;
  }

  .introduce {
    padding: 16px;
  }

  .module-title {
    font-size: 20px;
  }

  .attr-label {
    gap: 8px;
  }

  .el-tag {
    font-size: 12px;
    padding: 4px 8px;
  }
}

/* ====================== 相关产品推荐模块 ====================== */
.product-recommend-section {
  background-color: #f9fafb;
  padding: 48px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* 卡片基础样式 */
.product-card {
  display: block;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* 图片区域 */
.card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

/* 标签样式 */
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #ef4444;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  line-height: 1.4;
}

/* 内容区域 */
.card-content {
  padding: 20px;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 价格区域 */
.card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price span {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
  line-height: 1.2;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.product-card:hover .arrow-icon {
  color: #2563eb;
}

/* ====================== 移动端适配 ====================== */
/* 平板端：2列布局 */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 36px;
  }
}

/* 手机端：1列布局 */
@media (max-width: 768px) {
  .product-recommend-section {
    padding: 32px 16px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-image-wrap {
    height: 180px;
  }

  .card-content {
    padding: 16px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-desc {
    font-size: 14px;
  }

  .card-price span {
    font-size: 20px;
  }
}

/* 超小屏适配 */
@media (max-width: 380px) {
  .card-badge {
    font-size: 12px;
    padding: 3px 8px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-price span {
    font-size: 18px;
  }
}

/* ====================== 蓝青渐变CTA横幅 ====================== */
.cta-banner {
  /* 1:1还原效果图的蓝青渐变背景 */
  background: linear-gradient(90deg, #2563eb 0%, #0891b2 100%);
  padding: 64px 20px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 主标题样式 */
.banner-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.2;
}

/* 副标题样式 */
.banner-subtitle {
  font-size: 28px;
  font-weight: 400;
  color: #e0f2fe;
  margin: 0 0 40px;
  line-height: 1.4;
}

/* 按钮样式 */
.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #2563eb;
  font-size: 24px;
  font-weight: 600;
  padding: 20px 48px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.banner-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ====================== 移动端适配 ====================== */
/* 平板端 */
@media (max-width: 1024px) {
  .cta-banner {
    padding: 48px 16px;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-subtitle {
    font-size: 22px;
  }

  .banner-btn {
    font-size: 20px;
    padding: 16px 36px;
  }
}

/* 手机端 */
@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 12px;
  }

  .banner-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .banner-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .banner-btn {
    font-size: 18px;
    padding: 14px 32px;
    border-radius: 12px;
  }

  .btn-arrow {
    width: 20px;
    height: 20px;
  }
}

/* 超小屏适配 */
@media (max-width: 380px) {
  .banner-title {
    font-size: 24px;
  }

  .banner-subtitle {
    font-size: 16px;
  }

  .banner-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}
/* ====================== 服务详情 ====================== */
.services-mb-6 {
  margin-bottom:20px;
}

/* 标题样式 */
.services-section-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0F4C81, #1E88E5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

/* 确保emoji图标保持原始颜色 */
.services-section-title .emoji {
  background: none !important;
  color: inherit !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  background-image: none !important;
  text-shadow: none !important;
  display: inline-block;
}

.services-text-theme-blue {
  color: var(--theme-blue);
}

.services-text-primary-blue {
  color: var(--primary-blue);
}

/* 卡片阴影 */
.services-card-shadow {
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.services-card-shadow:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 48, 80, 0.12);
}

/* 占位图标盒子 */
.services-img-placeholder {
  background: #f9fafb;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #6b7280;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  padding: 12px;
}

.services-img-placeholder i,
.services-img-placeholder svg {
  color: #2563eb;
  opacity: 0.9;
}

.services-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
}

.services-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.services-avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.services-process-board {
  width: 140px;
  height: 80px;
  border-radius: 40px;
}

.services-cert-box {
  width: 80px;
  height: 80px;
  border-radius: 20px;
}

.services-chart-box {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.services-badge-pill {
  border-radius: 60px;
}

/* 按钮样式 */
.services-btn-outline {
  border: 1px solid #90CAF9;
  background: transparent;
  border-radius: 40px;
  padding: 8px 20px;
  color: #1565C0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 流程表格 */
.services-process-wrapper {
  background: #fff;
  border: 1px solid #e5e7eb;
}

.services-process-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
}

.services-process-table td {
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
}

/* 快速流程 */
.services-fast-track {
  background: #eff6ff;
  border-left: 5px solid #2563eb;
}

.services-section-badge {
  background: #eff6ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 80px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* 小图表 */
.services-mini-chart {
  background: #f3f4f6;
  border-radius: 16px;
  padding: 12px 16px;
  text-align: center;
  flex: 1;
  min-width: 100px;
  color: #374151;
}

.services-mini-chart svg {
  color: #2563eb;
}

/* 专家卡片 */
.services-mentor-card {
  border: 1px solid #D6E6F5;
  border-radius: 20px;
  transition: 0.3s;
  background: #fff;
}

.services-mentor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.services-avatar-place {
  width: 100px;
  height: 100px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #2563eb;
  margin: 0 auto;
}

.services-avatar-place svg {
  color: #2563eb;
}

.services-mentor-name {
  color: #111827;
  font-weight: 700;
  font-size: 1.2rem;
}

.services-mentor-title {
  background: #eff6ff;
  color: #2563eb;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  display: inline-block;
}

.services-bg-soft {
  background: #f3f4f6 !important;
}

/* 保障卡片 */
.services-guar-card {
  background: white;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
}

.services-guarantee-category {
  font-weight: 700;
  font-size: 1.2rem;
  color: #111827;
}

.services-guarantee-category svg {
  color: #2563eb;
}

/* 荣誉标签 */
.services-honor-item {
  background: #f3f4f6;
  padding: 10px 18px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #374151;
}

.services-honor-item svg {
  color: #2563eb;
}

/* 品牌底部 */
.services-brand-footer {
  background: var(--dark-blue);
  color: white;
}

.services-float-icon {
  width: 80px;
  height: 80px;
  background: var(--theme-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* 响应式 - 手机优化 */
@media (max-width: 768px) {
  .services-section-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .services-fast-track {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .services-mb-6 {
    margin-bottom: 3rem !important;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .card {
    margin-bottom: 8px;
  }
  .services-brand-footer {
    padding: 30px 20px !important;
  }
  .services-float-icon {
    width: 60px;
    height: 60px;
  }
  
  /* SVG图标移动端优化 */
  .services-icon-box svg,
  .services-icon-circle svg,
  .services-avatar-place svg {
    width: 28px;
    height: 28px;
  }
  
  .services-chart-box svg {
    width: 36px;
    height: 36px;
  }
  
  .services-guarantee-category svg,
  .services-honor-item svg {
    width: 14px;
    height: 14px;
  }
  
  .services-mini-chart svg {
    width: 16px;
    height: 16px;
  }

  /* 移动端表格优化 */
  .services-process-table {
    font-size: 0.85rem;
  }
  
  .services-process-table th,
  .services-process-table td {
    padding: 8px 4px;
  }
  
  /* 移动端流程图标优化 */
  .services-process-wrapper {
    padding: 10px;
  }
  
  /* 移动端荣誉标签优化 */
  .services-honor-item {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  
  /* 移动端卡片优化 */
  .services-mentor-card {
    padding: 16px !important;
  }
  
  .services-guar-card {
    padding: 16px !important;
  }
  
  /* 移动端按钮优化 */
  .services-btn-outline {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  /* 移动端文本优化 */
  .services-text-theme-blue,
  .services-text-primary-blue {
    font-size: 0.9rem;
  }
  
  /* 移动端服务全生命周期导图优化 */
  .services-img-placeholder.p-4.mt-4 {
    padding: 12px !important;
  }
  
  .services-img-placeholder.p-4.mt-4 svg {
    width: 24px;
    height: 24px;
  }
  
  .services-img-placeholder.p-4.mt-4 span {
    font-size: 0.9rem;
  }
}