/*基础样式类*/
.pos-relative {
    position: relative;
}
.bor-left {
    border-left: solid 1px #ddd;
}
.bor-right {
    border-right: solid 1px #ddd;
}
.bor-top {
    border-top: solid 1px #ddd;
}
.bor-bottom {
    border-bottom: solid 1px #ddd;
}

/*特殊样式类*/
.page-width {
    width: 1200px;
    margin: 0 auto;
}
.inner-page-width {
    width: 1000px;
    margin: 0 auto;
}
.goods-ctn {
    margin-top: 20px;
    line-height: 46px;
    background-color: #fff;
}
.fix:after {
    content: '';
    display: table;
    clear: both;
}
.fix {
    *zoom: 1;
}
/*进度栏*/
.progress-lists {
    width: 960px;
    margin: 20px auto;
    margin-bottom: 40px;
    overflow: hidden;
    /*新加*/
    display: flex;
    justify-content: flex-start;
}
.progress-lists .progress-list,
.progress-lists .progress-line {
    float: left;
}
.progress-lists .progress-list {
    /*width: 50px;*/
    width: 60px;
    /*margin-left: -10px;*/
    margin-left: -15px;
    text-align: center;
}
.progress-lists .progress-list.long-list {
    width: 60px;
}
.progress-lists .progress-list:first-child {
    margin-left: 0;
}
.progress-lists .progress-line {
    width: 110px;
    height: 4px;
    margin-top: 13px;
    /*margin-left: -10px;*/
    margin-left: -15px;
    background-color: #b9b9b9;
}
.progress-lists .progress-line.active {
    /*background-color: #ff9255;*/
    background-color: #7abd54;
}
.progress-lists .progress-list .step {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    line-height: 30px;
    text-align: center;
    overflow: hidden;
    /*background-color: #7abd54;*/
    /*background-color: #b9b9b9;*/
    color: #fff;
    /*border-radius: 50%;*/
    background-image: url("../../images/newgray.png") ;
    background-repeat: no-repeat;

}
.progress-lists .progress-list.active .step{
    background-image: url("../../images/newgreen.png");
    background-repeat: no-repeat;

    /*background-color: #ff9255;*/
}
.progress-lists .progress-list.active .step-txt {
    color: #7abd54;
    /*color: #ff9255;*/
}
.progress-lists .progress-list .step-txt {
    display: block;
    line-height: 30px;
}