/* ========== 服务详情-标准流程 ========== */
.qicheng-service-read-process {
  background-color: #fff;
  position: relative;
  z-index: 7;
  padding-top: 2.5rem;
  padding-bottom: calc(max(4.5rem, 40px) + var(--border-radius-lg, 60px));
}

.qicheng-service-read-process .process-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.qicheng-service-read-process .process-title {
  color: var(--text-color-black, #100);
  font-family: var(--font-family);
  font-size: var(--title-font-size-xl, 2.5rem);
  font-style: normal;
  font-weight: var(--title-font-weight, 900);
  line-height: 1.4;
  letter-spacing: -0.9px;
  margin: 0;
}

.qicheng-service-read-process .process-title-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  display: none; /* 仅移动端显示 */
}

.qicheng-service-read-process .process-title-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Web 端：横向波浪流程 ---------- */
.qicheng-service-read-process .process-body {
  position: relative;
  width: 100%;
}

.qicheng-service-read-process .process-flow-track {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);
  width: 96%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.qicheng-service-read-process .process-flow-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.qicheng-service-read-process .process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 0px;
  column-gap: 0;
  width: 96%;
  position: relative;
  left: 52%;
  transform: translateX(-50%);
  z-index: 1;
}

.qicheng-service-read-process .process-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qicheng-service-read-process .process-step--top {
  flex-direction: column;
  transform: translate(43%, -20%);
}

.qicheng-service-read-process .process-step--bottom {
  flex-direction: column-reverse;
  transform: translate(-6%, 12%);
}

.qicheng-service-read-process .process-step-icon {
  width: 4.111rem;
  height: 4.111rem;
  border-radius: 50%;
  background: url('https://okki-shop.oss-cn-hangzhou.aliyuncs.com/templates/shop-default/79140709-0a39-4467-9a77-5a592f05e973-e%201065.png')
    no-repeat;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qicheng-service-read-process .process-step-icon img {
  width: 1.6667rem;
  height: 1.6667rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.qicheng-service-read-process .process-step-content {
  margin-top: 0.8rem;
  max-width: 100%;
  padding: 0px 1rem;
}

.qicheng-service-read-process .process-step--bottom .process-step-content {
  flex: 1;
  margin-top: 0;
  margin-bottom: 1rem;
}

.qicheng-service-read-process .process-step-title {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--title-font-size-xsm);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.qicheng-service-read-process .process-step-desc {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-xl, 20px);
  font-weight: 400;
  line-height: 124%;
  margin: 0;
}

/* 移动端竖线：默认隐藏 */
.qicheng-service-read-process .process-timeline-line {
  display: none;
}

/* @media screen and (max-width: 1200px) {

} */

/* ---------- 移动端：纵向时间线 ---------- */
@media screen and (max-width: 1200px) {
  .qicheng-service-read-process .process-flow-track {
    display: none;
  }

  .qicheng-service-read-process .process-steps {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: relative;
    width: 100%;
    left: 0px !important;
    transform: none !important;
    row-gap: 26px;
  }

  .qicheng-service-read-process .process-step,
  .qicheng-service-read-process .process-step--top,
  .qicheng-service-read-process .process-step--bottom {
    order: inherit !important;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0;
    transform: none !important;
  }

  .qicheng-service-read-process .process-step:last-child {
    margin-bottom: 0;
  }

  .qicheng-service-read-process .process-step-content,
  .qicheng-service-read-process .process-step--bottom .process-step-content {
    margin: 0;
    flex: 1;
    min-width: 0;
    max-width: none;
    padding-left: 10px;
  }

  .qicheng-service-read-process .process-step-icon {
    width: max(3rem, 50px);
    height: max(3rem, 50px);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }

  .qicheng-service-read-process .process-step-icon img {
    width: max(1.5rem, 26px);
    height: max(1.5rem, 26px);
  }

  /* 左侧竖线 + 末端箭头（与图标中心对齐） */
  .qicheng-service-read-process .process-timeline-line {
    display: inline-block;
    position: absolute;
    left: calc(max(3rem, 50px) / 2);
    top: 1.5rem;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background: var(--second-color, #014c94);
    border-radius: 2px;
    pointer-events: none;
    z-index: 0;
  }

  .qicheng-service-read-process .process-timeline-line::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--second-color, #014c94);
    border-bottom: none;
  }

  .qicheng-service-read-process .process-step-title {
    /* font-size: var(--title-font-size-xss, 0.83333333rem); */
    font-weight: 900;
    margin-bottom: 4px;
  }

  .qicheng-service-read-process .process-step-desc {
    /* font-size: var(--text-font-size-base, 16px); */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* 移动端卡片样式：白底 + 深蓝边框（与图二一致） */
@media screen and (max-width: 768px) {
}

@media screen and (max-width: 552px) {
}
