.flow-node {
    position: absolute;
    width: 130px;
    margin-bottom: 14px;
}

.flow-node .flow-node-content {
    position: relative;
    height: 31px;
    line-height: 31px;
    padding-left: 36px;
    border:1px solid #e4effe;
    border-radius: 40px;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.flow-node.success .flow-node-content {
    color: #2a92fc;
    background-color: #e0edfe;
}
.flow-node.waiting .flow-node-content {
    color: #fff;
    background-color: #0c7ffc;
}
.flow-node .flow-node-content span{
    position: absolute;
    top: 50%;
    left: 7px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin-top: -11px;
    color: #333;
    text-align: center;
    background-color: #e0edfe;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #e0edfe;
}
.flow-node.waiting .flow-node-content {
    border: 1px solid #0c7ffc;
    box-shadow: 0 1px 7px 0px hsla(220, 98%, 52%, 0.8);
}
.flow-node.waiting .flow-node-content span{
    color: #fff;
    background-color: #0c7ffc;
    border: 1px solid #fff;
}
.flow-node.success .flow-node-content span {
    position: absolute;
    top: 50%;
    left: 7px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    margin-top: -11px;
    overflow: hidden;
    border-radius: 50%;
    color: #333;
    text-align: center;
    background-color: #e0edfe;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../../image/flow/check.png);
}
.flow-node .flow-node-sub {
    position: relative;
    margin-top: 10px;
    padding-left: 13px;
    font-size: 12px;
    color: #8e8e8e;
}
.flow-node .flow-node-sub::before {
    content: '└';
    position: absolute;
    top: 2px;
    left: 0;
    color: #666;
}
.flow-node .flow-node-sub .status{
    float: right;
    color: #53aafd;
}
.flow-line {
    position: absolute;
    width: 110px;
    height: 31px;
}
.flow-line .line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin-top: 16px;
    border-bottom: 2px solid #e0edfe;
}
.flow-line span{
    position: absolute;
    left: 0;
    top: 8px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 12px;
    text-align: center;
}
.flow-line.r-arrow span,
.flow-line.l-arrow span {
    height: 16px;
}
.flow-line.r-arrow span{
    background-image: url(../../image/flow/r.png);
}
.flow-line.l-arrow span{
    background-image: url(../../image/flow/l.png);
}

.flow-bending {
    position: absolute;
    width: 100px;
    height: 80px;
    border: 2px solid #e0edfe;
    border-radius: 40px;
    box-sizing: border-box;
    z-index: -1;
}
.flow-bending.r-arrow:after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    background-image: url(../../image/flow/d.png);
    margin-top: -8px;
}
.flow-bending.l-arrow:after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    background-image: url(../../image/flow/d.png);
    margin-top: -8px;
}
.flow-bending.r-arrow::before {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    height: 100%;
    width: 50px;
    border: 2px solid #fff;
    background-color: #fff;
}
.flow-bending.l-arrow::before{
    content: '';
    position: absolute;
    right: -2px;
    top: -2px;
    height: 100%;
    width: 50px;
    border: 2px solid #fff;
    background-color: #fff;
}