/* Aurora Admin Steps 样式 — 对齐 组件2/7 StepList:序号、标题、描述、状态、连接线、横/纵 */ .aa-steps { font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); color: var(--au-color-text-body); } .aa-steps.horizontal { display: flex; } .aa-steps.vertical { display: inline-flex; flex-direction: column; } .aa-step { position: relative; display: flex; gap: 12px; flex: 1; } .aa-steps.vertical .aa-step { flex-direction: column; } .aa-step-icon { position: relative; width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--au-color-border); display: flex; align-items: center; justify-content: center; font-size: 14px; background: var(--au-color-card-bg); color: var(--au-color-text-secondary); flex-shrink: 0; z-index: 1; } .aa-step.is-finish .aa-step-icon { border-color: var(--au-color-brand); color: var(--au-color-brand); background: var(--au-color-brand-bg); } .aa-step.is-process .aa-step-icon { border-color: var(--au-color-brand); color: var(--au-color-text-inverse); background: var(--au-color-brand); } .aa-step.is-error .aa-step-icon { border-color: var(--au-color-error); color: var(--au-color-error); background: #FFF1F0; } .aa-step-title { font-size: 14px; font-weight: 500; line-height: 32px; } .aa-step.is-wait .aa-step-title { color: var(--au-color-text-secondary); } .aa-step-desc { font-size: 12px; color: var(--au-color-text-secondary); margin-top: 2px; } /* 连接线 */ .aa-steps.horizontal .aa-step:not(:last-child) .aa-step-icon::after { content: ''; position: absolute; top: 15px; left: 38px; right: -12px; height: 2px; background: var(--au-color-border); } .aa-steps.horizontal .aa-step.is-finish:not(:last-child) .aa-step-icon::after { background: var(--au-color-brand); } .aa-steps.vertical .aa-step-body { padding-bottom: 24px; } .aa-steps.vertical .aa-step:not(:last-child) .aa-step-icon::after { content: ''; position: absolute; top: 40px; left: 15px; bottom: -12px; width: 2px; background: var(--au-color-border); } .aa-steps.vertical .aa-step.is-finish:not(:last-child) .aa-step-icon::after { background: var(--au-color-brand); }