.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px dashed rgba(221, 221, 221, 1);
    border-radius: 8px;
    width: 100%;
    padding: 16px 36px 16px 20px;
    box-sizing: border-box;
    height: 60px;
}
.steps li {
    display: flex;
    align-items: center;
}
.steps .circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 24px;
}
.steps .step-content {
    margin: 0 12px 0 8px;
    font-size: 18px;
    font-weight: 600;
}
.steps .step-line {
    width: 110px;
    height: 2px;
    background: #DDDDDD;
}
.steps .process-status .circle,
.steps .finish-status .circle {
    background: #0D4CE6;
    color: #fff;
    position: relative;
}
.steps .finish-status .circle {
    background: #0D4CE6;
}
.steps .process-status .step-content,
.steps .finish-status .step-content {
    color: #0D4CE6;
}
.steps .finish-status .step-content {
    color: #333333;
}
.steps-corrent {
    display: none;
}
.steps .finish-status .circle .steps-corrent {
    width: 16px;
    height: 16px;
    display: inline-block;

}
.steps .finish-status .step-line {
    background: #0D4CE6;
}

 .steps .waiting-status .circle {
    background: #999999;
    color: #fff;
}

 .steps .waiting-status .step-content {
    color: #666666;
}
