/* ===== 生产工艺流程 - 简洁两行流程 ===== */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 6px;
  padding: 20px 0;
  max-width: 820px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 6px;
}

.process-step-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #d6e0ee;
  border-radius: 8px;
  padding: 8px 16px 8px 12px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.process-step-box:hover {
  background: #f0f4fa;
  border-color: #1a5fb4;
  box-shadow: 0 2px 8px rgba(26,95,180,0.1);
}

.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #1a5fb4;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.process-step .step-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
}

.process-step-arrow {
  color: #1a5fb4;
  font-size: 14px;
  opacity: 0.3;
  flex-shrink: 0;
  user-select: none;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .process-step-arrow {
    display: none;
  }
}
