.yibo_customization_service {
  overflow: hidden;
  padding: var(--component-gap) 0;
  background: var(--bg-color);
  --icon-size: clamp(90px, 9.375vw, 180px);
}

.yibo_customization_service-line {
  width: 98%;
  height: 1px;
  margin: 0 auto;
  background: rgba(22, 20, 19, 0.34);
}

.yibo_customization_service-head {
  padding-bottom: var(--text-gap-xs);
  text-align: center;
}

.yibo_customization_service-desc {
  padding-top: var(--component-gap);
}

.yibo_customization_service-title {
  margin: 0;
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--title-size);
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: break-spaces;
  text-align: center;
}

.yibo_customization_service-flow {
  position: relative;
  margin-top: var(--component-gap-md);
  padding-bottom: var(--component-gap-md);
}

.yibo_customization_service-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: var(--text-gap-lg);
  width: 100%;
  margin-inline: auto;
}

.yibo_customization_service-row.is-bottom {
  direction: rtl;
}



.yibo_customization_service-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--icon-size) / 2);
  height: 1px;
  background: var(--color-primary);
  transform: translateY(-50%);
  z-index: -1;
}

.yibo_customization_service-row.is-top::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(var(--icon-size) / 2);
  width: 1px;
  height: 100%;
  background: var(--color-primary);
  z-index: -1;
}

.yibo_customization_service-step {
  padding-bottom: var(--component-gap-md);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
  direction: ltr;
  height: stretch;
}

.yibo_customization_service-row.is-top .yibo_customization_service-step:not(:last-child)::after,
.yibo_customization_service-row.is-bottom .yibo_customization_service-step:not(:last-child)::after {
  position: absolute;
  top: calc(var(--icon-size) / 2);
  color: var(--color-primary);
  font-family: var(--title-font-family);
  font-size: var(--text-size-sm);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.2em;
  z-index: 2;
}

.yibo_customization_service-row.is-top .yibo_customization_service-step:not(:last-child)::after,
.yibo_customization_service-row.is-bottom .yibo_customization_service-step:not(:last-child)::after {
  right: calc((var(--text-gap-lg) / -2) - 0.3em);
  transform: translate(50%, -50%);
  content: "";
  height: clamp(6px, 0.625vw, 12px);
  aspect-ratio: 3 / 1;
  position: absolute;
  background-image: url(https://okki-shop.oss-accelerate.aliyuncs.com/templates/shop-default/a62ceb6f-ebad-4eae-bbb7-f11b54f61150-1000010481_1786513244359.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.yibo_customization_service-row.is-bottom .yibo_customization_service-step:not(:last-child)::after {
  left: calc((var(--text-gap-lg) / -2) - 0.3em);
  transform: translate(-50%, -50%) rotate(180deg);
}

.yibo_customization_service-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  aspect-ratio: 1;
}

.yibo_customization_service-ring,
.yibo_customization_service-ring::before,
.yibo_customization_service-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 244, 0.92);
}

.yibo_customization_service-ring::before {
  inset: clamp(7px, 0.729vw, 14px);
}

.yibo_customization_service-ring::after {
  inset: clamp(15px, 1.094vw, 21px);
}

.yibo_customization_service-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #FFFAF4;
}

.yibo_customization_service-icon img {
  display: block;
  width: clamp(42px, 3.646vw, 70px);
  aspect-ratio: 1;
  object-fit: contain;
}

.yibo_customization_service-step-title {
  margin: var(--text-gap-xs) 0 0;
  color: var(--title-text-color);
  font-family: var(--title-font-family);
  font-size: var(--text-size);
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.yibo_customization_service-step-title span {
  color: var(--color-primary);
}

.yibo_customization_service-step-desc {
  width: 90%;
  flex: 1;
  margin: var(--text-gap) 0 0;
  color: var(--title-text-color);
  font-family: var(--font-family);
  font-size: var(--text-size-md);
  font-weight: 400;
  line-height: 1.4118;
}

.yibo_customization_service-step-time {
  width: 90%;
  margin: var(--text-gap-xs) 0 0;
  color: var(--color-primary);
  font-family: var(--font-family);
  font-size: var(--text-size-md);
  font-weight: 400;
  line-height: 1.4118;
}

@media (max-width: 1199px) {
  .yibo_customization_service-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .yibo_customization_service-row::before,
  .yibo_customization_service-row.is-top::after,
  .yibo_customization_service-row .yibo_customization_service-step::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .yibo_customization_service-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .yibo_customization_service-step {
    align-items: flex-start;
    text-align: left;
  }

  .yibo_customization_service-step-title {
    white-space: normal;
  }
}