/* 流程步骤样式 */
.progressbar {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    margin: 15px;
    padding: 0;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
    z-index: 99;
}

.progressbar li {
    list-style-type: none;
    font-size: 14px;
    float: left;
    position: relative;
}

.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    line-height: 30px;
    display: block;
    font-size: 12px;
    color: #333;
    background: #ccc;
    border-radius: 20px;
    margin: 0 auto 10px auto;
}

.progressbar li:after {
    content: '';
    width: calc(100% - 20px);
    height: 2px;
    background: #ccc;
    position: absolute;
    left: calc((-100% + 30px) / 2);
    top: 14px;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active:before, .progressbar li.active:after {
    background: #27AE60;
    color: #fff;
}

.progressbar li.red-active:before, .progressbar li.red-active:after {
    background: #dd4b39;
    color: #fff;
}