/*sem order*/
.so--wrapper{
    width: 100%;
    background-color: #f69;
    color:#f69;
    height: 120px;
    /*position: fixed;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*z-index: 20;*/
    opacity: 1;
    /*-webkit-transform: translate(0,120px);*/
    /*-moz-transform: translate(0,120px);*/
    /*-ms-transform: translate(0,120px);*/
    /*-o-transform: translate(0,120px);*/
    /*transform: translate(0,120px);*/
    /*-webkit-transition: all 0.3s;*/
    /*-moz-transition: all 0.3s;*/
    /*-ms-transition: all 0.3s;*/
    /*-o-transition: all 0.3s;*/
    /*transition: all 0.3s;*/
}

@media screen and (min-width: 1920px){
    /*.so--wrapper{*/
        /*width: 1920px;*/
        /*left: 50%;*/
        /*margin-left: -960px;*/
    /*}*/
}

.so--wrapper-inner{
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.so--step{
    position: relative;
    padding: 20px 40px;
    float: left;
    height: 100%;
}

.so--step-1{
    width: 22%;
}

.so--step-2{
    width: 33%;
}

.so--step-3{
    width: 21%;
}

.so--step-4{
    width: 21%;
    padding-top: 30px;
}

.so--step:after{
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    width: 1px;
    height: 90%;
    background: rgba(219,219,219,0);
    background: -moz-linear-gradient(top, rgba(219,219,219,0) 0%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 69%, rgba(226,226,226,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(219,219,219,0)), color-stop(33%, rgba(255,255,255,0.5)), color-stop(50%, rgba(255,255,255,0.5)), color-stop(69%, rgba(255,255,255,0.5)), color-stop(100%, rgba(226,226,226,0)));
    background: -webkit-linear-gradient(top, rgba(219,219,219,0) 0%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 69%, rgba(226,226,226,0) 100%);
    background: -o-linear-gradient(top, rgba(219,219,219,0) 0%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 69%, rgba(226,226,226,0) 100%);
    background: -ms-linear-gradient(top, rgba(219,219,219,0) 0%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 69%, rgba(226,226,226,0) 100%);
    background: linear-gradient(to bottom, rgba(219,219,219,0) 0%, rgba(255,255,255,0.5) 33%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.5) 69%, rgba(226,226,226,0) 100%);
}

.so--step.last:after{
    width: 0;
}

.so--step-title{
    font-size: 18px;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.so--step-main{

}

.so--step-tag{
    display: inline-block;
    width: 80px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #f69;
    color: #fff;
    border:1px solid #fff;
    border:1px solid rgba(255,255,255,0.6);
    font-size: 12px;
    margin-bottom: 5px;
    cursor: pointer;
}

.so--step-tag:hover{
    background-color: #fff;
    color: #f69;
    /*color: currentColor;*/
}

.so--step-tag.active{
    background-color: #fff;
    color: #f69;
    /*color: currentColor;*/
}

.so--step-input{
    background-color: #fff;
    border: none;
    outline: none;
    border-radius: 3px;
    padding: 0 10px;
    display: block;
    height: 30px;
}

.so--submit-btn{
    padding:10px 20px;
    background-color: #fdf8a0;
    color: #333;
    text-align: center;
    margin-bottom: 5px;
}

.so--submit-text{
    font-size: 12px;
    color: #fff;
    margin-left: 25px
}

@media screen and (max-width: 1200px){
    .so--step-1 {
        width: 20%;
    }

    .so--step {
        padding: 20px 30px;
    }

    .so--step-2 {
        width: 27%;
    }

    .so--step-3 {
        width: 21%;
    }

}

@media screen and (max-width: 800px){
    .so--wrapper {
        width: 100%;
        height: 180px;
    }

    .so--wrapper-inner {
        width: 100%;
    }

    .so--step {
        padding: 20px 10px;
    }

    .so--step-1 {
        width: 30%;
    }

    .so--step-2 {
        width: 30%;
    }

    .so--step-3 {
        width: 20%;
    }

    .so--step-4 {
        width: 20%;
    }

    .so--step-input {
        width: 120px;
    }
    .so--step-tag {
        width: 100px;
        height: 30px;
        line-height: 30px;
    }

}