
.custom-steps-wrap{
  max-width:1200px;
  margin:60px auto;
  padding:0 15px;
  text-align:center;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"PingFang SC","Microsoft YaHei",sans-serif;
}

.custom-steps-title{
  font-size:28px;
  font-weight:600;
  margin-bottom:45px;
}

.custom-steps-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:30px;
  align-items:flex-start;
}

.custom-step-item{
  text-align:center;
}

.custom-step-icon svg{
  width:64px;
  height:64px;
  stroke:#3a8b82;
  stroke-width:1.8;
  fill:none;
}

.custom-step-number{
  width:30px;
  height:30px;
  background:#3a8b82;
  color:#fff;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin:12px auto;
}

.custom-step-text{
  font-size:15px;
  color:#333;
  line-height:1.45;
}

/* 手机端适配 */
@media (max-width:768px){
  .custom-steps-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px 20px;
  }
}
