.step-process {
    display: flex;
    flex-direction: column;
}

.step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.step-title {
    font-weight: 500;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.85);
}

.step-line {
    position: absolute;
    background-color: #333;
    width: 2px;
    height: 100%;
    top: 50px;
    left: calc(50% - 1px);
    z-index: -1;
}

.step:last-child .step-line {
    display: none;
}

.step::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background: rgba(0, 0, 0, 0.25);
    bottom: -32px;
    left: 16px;
}

.step:last-child::after {
    display: none;
}

.step.-done .step-number, .step.-done::after {
    background: #12b76A;
    color: #fff;
}

.step.-current .step-number {
    border-color: #1890FF;
    color: #1890FF;
}