.zhiting-service-process {
  padding: calc(var(--component-gap) / 2) 0 var(--component-gap);
  background: var(--bg-color);
}

.zhiting-service-process-wrap {
  display: flex;
  align-items: stretch;
  gap: var(--gap-100);
}

/* 左侧图片 */
.zhiting-service-process-pic {
  flex-shrink: 0;
  width: 730px;
  aspect-ratio: 730/800;
  border-radius: 5px;
  overflow: hidden;
}

.zhiting-service-process-pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右侧内容 */
.zhiting-service-process-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.zhiting-service-process-title {
  margin: 0 0 var(--gap-40) 0;
  color: #111;
  font-family: var(--zhiting-font-accent);
  font-size: var(--font-48);
  font-weight: 700;
  line-height: normal;
  padding-left: 30px;
}

/* 列表 */
.zhiting-service-process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  flex: 1;
}

.zhiting-service-process-item {
  position: relative;
  padding: 10px 30px;
  max-width: 400px;
  border-left: 6px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.zhiting-service-process-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--zhiting-accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.zhiting-service-process-item-number {
  margin-bottom: 10px;
  color: #5B5B5B;
  font-family: var(--zhiting-font-accent);
  font-size: var(--font-48);
  font-weight: 700;
  line-height: normal;
  transition: all 0.3s ease;
}

.zhiting-service-process-item-title {
  margin: 0 0 10px 0;
  color: #000;
  font-family: var(--zhiting-font-accent);
  font-size: var(--font-22);
  font-weight: 800;
  line-height: normal;
  transition: all 0.3s ease;
}

.zhiting-service-process-item-desc {
  margin: 0;
  color: #454545;
  font-family: var(--zhiting-font-accent);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* hover */
.zhiting-service-process-item:hover {
  background: #F8F8F8;
}

.zhiting-service-process-item:hover::before {
  opacity: 1;
}

.zhiting-service-process-item:hover .zhiting-service-process-item-number,
.zhiting-service-process-item:hover .zhiting-service-process-item-title {
  background: var(--zhiting-accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 响应式 */
@media screen and (max-width: 1500px) {
  .zhiting-service-process-pic{
    width: 50%;
  }
  .zhiting-service-process-wrap{
    gap: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .zhiting-service-process-wrap {
    gap: 30px;
  }

  .zhiting-service-process-item {
    padding: 20px;
  }
}

@media screen and (max-width: 992px) {
  .zhiting-service-process-wrap {
    flex-direction: column;
  }

  .zhiting-service-process-pic {
    width: 100%;
    aspect-ratio: 16/10;
  }

  .zhiting-service-process-list {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .zhiting-service-process-title {
    margin-bottom: 30px;
  }

  .zhiting-service-process-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .zhiting-service-process-item {
    padding: 20px;
  }

  .zhiting-service-process-item-number,
  .zhiting-service-process-item-title {
    margin-bottom: 12px;
  }
}
