/* 步骤条 */

.optStepLine {
    width: 100%;
}

.optStepLine ul {
    display: flex;
}

.optStepLine li {
    height: 50px;
    background-color: #003399;
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 50px;
    display: flex;
    /* align-items: center;  */
    justify-content: center;
    position: relative;
}

.optStepLine li:not(:first-child) {
    height: 50px;
    background-color: #003399;
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 50px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    position: relative;
    margin-left: 10px;
}

.optStepLine li:not(:last-child)::after {
    content: "";
    z-index: 999;
    width: 25px;
    height: 50px;
    right: -25px;
    position: absolute;
    background-image: url('/vcommon/theme/account/img/icon_step_arrow_blue.png');
    background-size: 100%;
    /* border-top: 25px solid transparent;
    border-left: 25px solid #003399;
    border-bottom: 25px solid transparent; */
}

.optStepLine li:not(:first-child)::before {
    content: "";
    width: 25px;
    height: 50px;
    left: 0;
    position: absolute;
    background-image: url('/vcommon/theme/account/img/icon_step_arrow_white.png');
    background-size: 100%;
    /* border-top: 25px solid transparent;
    border-left: 25px solid #ffffff;
    border-bottom: 25px solid transparent; */
}

.optStepLine li[step_status="0"] {
    height: 50px;
    background-color: #F3F3F3;
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    color: #9B9B9B;
    line-height: 50px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.optStepLine li:not(:first-child)[step_status="0"] {
    height: 50px;
    background-color: #F3F3F3;
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    color: #9B9B9B;
    line-height: 50px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    margin-left: 10px;
}

.optStepLine li:not(:last-child)[step_status="0"]::after {
    content: "";
    z-index: 999;
    width: 25px;
    height: 50px;
    right: -25px;
    position: absolute;
    background-image: url('/vcommon/theme/account/img/icon_step_arrow_gray.png');
    background-size: 100%;
    /* border-top: 25px solid transparent;
    border-left: 25px solid #F3F3F3;
    border-bottom: 25px solid transparent; */
}

.optStepLine li:not(:first-child)[step_status="0"]::before {
    content: "";
    width: 25px;
    height: 50px;
    left: 0;
    position: absolute;
    background-image: url('/vcommon/theme/account/img/icon_step_arrow_white.png');
    background-size: 100%;
    /* border-top: 25px solid transparent;
    border-left: 25px solid #ffffff;
    border-bottom: 25px solid transparent; */
}