.order{
    overflow: hidden;
}
.order .steps{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}
.order .steps .step{
    padding: 30px 30px 60px;
    position: relative;
    font-size: 16px;
    text-align: center;
    width: 33.33%;
}
.order .steps .step:after{
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #eee;
}
.order .steps .step:before{
    content: '';
    position: absolute;
    left: 50%;
    top: 62px;
    width: 20px;
    margin-left: -10px;
    height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #eee;
}
.order .steps .step.active{
    color: #dc393f;
}
.order .steps .step.active:after,
.order .steps .step.active:before{
    background-color: #dc393f;
}
.order .list{
    border: solid 1px #ddd;
}
.order .list .head{
    padding: 0 10px;
    background-color: #eee;
    display: flex;
    line-height: 40px;
    border-bottom: solid 1px #ddd;
}
.order .list .head .checkbox{
    width: 25px;
    display: inline-block;
}
.order .list .w1{
    width: 100px;
}
.order .list .w2{
    width: 390px;
    flex: 1;
}
.order .list .w3{
    width: 120px;
    text-align: center;
}
.order .list .w5{
    width: 150px;
    text-align: center;
}
.order .list .w4{
    width: 100px;
    text-align: center;
}
.order .list .w2{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.order .list .body .item{
    display: flex;
    align-items: center;
    margin: 10px;
    background-color: #eee;
    padding: 10px;
    font-size: 12px;
}
.order .list .body .w2 img{
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.order .list .body .w2 p{
    padding-left: 10px;
}
.order .list .body .calculatorBox{
    display: flex;
    align-items: center;
    justify-content: center;
}
.order .list .body .calculatorBox a{
    width: 30px;
    height: 30px;
    line-height: 25px;
    font-size: 16px;
    border: solid 1px #ddd;
    background-color: #fff;
}
.order .list .body .calculatorBox a:hover{
    background-color: #dc393f;
    color: #fff;
}
.order .list .body .calculatorBox .inp{
    width: 50px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
    text-align: center;
}
.order .list .body .item.no{
    background-color: #fff;
}
.order .list .body .item.no .no{
    text-align: center;
    width: 100%;
    font-size: 16px;
    line-height: 80px;
}
.order .list .body .item.no .no a{
    color: #dc393f;
}

.order .summary{
    margin-top: 20px;
    border: 1px solid #EBE4BA;
    background: #FFFEF5;
    height: 65px;
    overflow: hidden;
    padding: 14px 20px;
}
.order .summary .btn{
    float: right;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 2px;
    font-size: 16px;
    margin: 0 20px;
}
.order .summary .btn.btn-gray{
    background-color: #E6E6E6;
    color: #333;
}
.order .summary .btn.btn-red{
    background-color: #dc393f;
    color: #fff;
}
.order .summary p{
    display: inline-block;
    line-height: 35px;
}
.order .summary p span{
    color: #dc393f;
}
.order .summary p.money{
    margin-left: 30px;
}
.order .summary p.money span{
    font-size: 20px;
}
.order .t-title{
    background-color: #F5F5F5;
    font-size: 18px;
    font-weight: bold;
    line-height: 40px;
    padding: 0 20px;
    margin-bottom: 10px;
}