.junhua-service-process-section {
  /* padding: 80px 0; */
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color-white);
  margin-top: var(--spacing-2xl);
}

.junhua-service-process-container {
  position: relative;
  padding: 4rem var(--spacing-base);
}

/* 标题区域 */
.junhua-service-process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-2xl);
  margin-bottom: 2.5rem;
}

.junhua-service-process-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-h2);
  line-height: 1.15;
  color: var(--text-color-strong);
  text-align: center;
  margin: 0;
}

.junhua-service-process-title-highlight {
  color: var(--primary-color, #379487);
}

.junhua-service-process-subtitle {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-h5);
  line-height: 1.15;
  color: var(--text-color-strong);
  text-align: center;
  margin: 0;
}

/* 流程内容区域 */
.junhua-service-process-content {
  display: grid;
  /* justify-content: space-between; */
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
}

/* 左侧流程列表 */
.junhua-service-process-left.swiper {
  --process-icon-size: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-md);
  flex-shrink: 0;
  width: 100%;
  overflow: visible;
}

.junhua-service-process-left-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex-shrink: 0;
  width: 100%;
}

/* 单个流程步骤 */
.junhua-service-process-step {
  display: flex;
  align-items: center;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-5xl);
  cursor: pointer;
}

/* 选中状态 */
.junhua-service-process-step.is-active .junhua-service-process-icon-wrapper {
  background-color: var(--primary-color-light);
  border-color: var(--primary-color-light);
  transform: scale(1.2);
  transition: transform var(--transition-base);
  transform-origin: center center;
}

.junhua-service-process-step.is-active .junhua-service-process-step-text {
  color: var(--primary-color, #379487);
  font-size: calc(var(--font-size-h4) * 1.3);
}

.junhua-service-process-step.is-active .junhua-service-process-step-desc {
  display: block;
}

.junhua-service-process-icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 连接线 */
.junhua-service-process-icon-container::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1.5rem;
  width: 2px;
  top: calc(100% + var(--spacing-md));
  background-color: var(--border-color-lightest);
}

.junhua-service-process-step:last-child
  .junhua-service-process-icon-container::after {
  display: none;
}
/* 圆形图标容器 */
.junhua-service-process-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 60px;
  height: 60px; */
  min-width: 60px;
  border-radius: 50%;
  border: var(--border-width-medium) solid var(--border-color-lightest);
  background-color: var(--bg-color-white);
  position: relative;
  z-index: 2;
  padding: var(--spacing-lg);
}

.junhua-service-process-icon {
  width: var(--process-icon-size) !important;
  height: var(--process-icon-size) !important;
  object-fit: contain;
}

.junhua-service-process-step-text-container {
}

/* 流程文字 */
.junhua-service-process-step-text {
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-h4);
  line-height: 1.15;
  color: var(--text-color-primary);
  text-transform: capitalize;
}

.junhua-service-process-step-desc {
  /* 正文 */
  font-family: var(--font-family);
  font-size: var(--font-size-small);
  font-style: normal;
  font-weight: var(--font-weight-normal);
  line-height: normal;
  color: var(--text-color-gray-600);
  display: none;
  text-transform: capitalize;
}

.junhua-service-process-right {
  width: 100%;
  height: 100%;
}

.junhua-service-process-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  transition: opacity var(--transition-base);
}
.junhua-service-process-text-content {
  display: none;
}

/* 小屏手机适配 */
@media screen and (max-width: 576px) {
  .junhua-service-process-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .junhua-service-process-content {
    grid-template-columns: 1fr;
  }
  .junhua-service-process-text-content {
    display: block !important;
  }

  .junhua-service-process-text-content .junhua-service-process-step-text,
  .junhua-service-process-text-content .junhua-service-process-step-desc {
    display: block !important;
  }

  .junhua-service-process-text-content .junhua-service-process-step-text {
    font-size: 20px;
    color: var(--primary-color);
  }
  .junhua-service-process-text-content .junhua-service-process-step-desc {
    font-size: 12px;
  }
  .junhua-service-process-step.is-active .junhua-service-process-step-text {
    font-size: var(--font-size-h4);
  }
  .junhua-service-process-step.is-active .junhua-service-process-icon-wrapper {
    transform: scale(1);
  }

  .junhua-service-process-step {
    margin-bottom: 0px;
    margin-right: calc(var(--spacing-5xl) + 0.5rem);
    width: auto;
  }

  .junhua-service-process-left {
    flex-direction: row;
    overflow: hidden;
  }

  /* Swiper 相关样式 */
  .junhua-service-process-left.swiper {
    width: 100%;
    overflow: hidden;
  }

  .junhua-service-process-left-wrapper {
    display: flex;
    flex-direction: row;
  }

  .junhua-service-process-step.swiper-slide {
    width: auto !important;
    flex-shrink: 0;
  }

  .junhua-service-process-icon-container::after {
    width: 1.5rem;
    height: 2px;
    left: calc(100% + var(--spacing-md));
    top: 50%;
    transform: translateY(-50%);
  }
  .junhua-service-process-step-text-container {
    display: none;
  }
}
