/* ==========================================
   process.css - 服务流程页（process.html）独有样式
   ========================================== */

.flow-detail {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px dashed #e5e5e5;
}

.flow-detail:first-of-type {
  border-top: 1px dashed #e5e5e5;
  margin-top: 10px;
}

.flow-num {
  width: 56px;
  height: 56px;
  background: #00a651;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-body h4 {
  font-size: 17px;
  color: #333;
  font-weight: normal;
  margin-bottom: 8px;
}

.flow-body p {
  font-size: 14px;
  color: #777;
  line-height: 1.9;
}

.process-more {
  text-align: center;
  margin-top: 40px;
}

/* 响应式 */
@media (max-width: 576px) {
  .flow-detail {
    flex-direction: column;
    gap: 12px;
  }
}
