.s-h-100vh{
    height: 100vh;
}


/** 颜色 **/
.s-bg-grey{
    background-color: #f1f1f1;
}
.s-bg-white{
    background-color: #ffffff;
}

/** 字体 大小颜色**/
.s-fs-12{
    font-size: 12px;
}
.s-fs-14{
    font-size: 14px;
}
.s-fs-16{
    font-size: 16px;
}
.s-fs-18{
    font-size: 18px;
}
.s-fs-20{
    font-size: 20px;
}
.s-fs-24{
    font-size: 24px;
}


.s-fw-b{
    font-weight: bold;
}
.s-fw-n{
    font-weight: normal;
}

.s-color-black{
    color: #333;
}
.s-color-orange{
    color: #ff8a00;
}


/** 边框 **/
.s-border-bottom-solid-min-black {
    border-bottom: 1px solid #f0f0f0;
}
.s-border--bottom-dashed-min-black{
    border-bottom: 1px dashed #ebecec ;
}

/** 布局 **/
.s-df{
    display: flex;
}
.s-df-jc-space-between{
    display: flex;
    justify-content: space-between;
}
.s-d-inline-block{
    display: inline-block;
}

/** padding **/
.s-p-20{
    padding: 20px;
}

.s-p-tb-20{
    padding: 20px 0;
}
.s-p-tb-40{
    padding: 40px 0;
}

.s-p-lr-10{
    padding: 0 10px;
}
.s-p-lr-20{
    padding: 0 20px;
}


.s-pl-10{
    padding-left: 10px;
}
.s-pl-20{
    padding-left: 20px;
}

/** margin **/
.s-mt-20{
    margin-top: 20px;
}

.s-ml-10{
    margin-left: 10px;
}
.s-ml-30{
    margin-left: 30px;
}

/** other **/
.s-table-box{
    background: #fff;
    border-collapse: collapse;
    border-spacing: 0;
}
.s-thead-box{
    text-align: left;
    background-color: #f0f0f0;
}
.s-tbody-box{
    background-color: #fafafa;
}
.s-thead-box tr th div{
    padding: 5px 15px;
}
.s-tbody-box tr td div{
    padding: 25px 20px;
}
.s-submit-box{
    display: flex;
    justify-content: flex-end;
    /*position: absolute;*/
    /*bottom: 0;*/
    padding: 30px 0;
    background-color: #fff;
    width: 100%;

    margin-bottom:40px;
}
.s-submit-price-box{
    display: inline-block;
    padding: 0 30px;
    vertical-align: bottom;
    box-sizing: border-box;
}
.s-submit-button-box{
    margin-right: 5%;
    background-color: #ffa133;
    border-color: transparent;
    margin-left: 25px;
    min-width: 105px;
    box-sizing: border-box;
    color: #fff;
}

/** 余额选择 **/
.s-input-checkbox{
    margin: 1px;
    color: #373d41;
    font-size: 12px;
    box-sizing: border-box;
    vertical-align: text-bottom;
    display: inline-block;
    width: 16px;
    height: 16px;
    cursor: pointer;
    overflow: visible;
}
.s-input-number{
    width: 100%;
    border: none;
    outline: none;
    margin: 0;
    font-weight: 400;
    vertical-align: middle;
    padding: 0 8px;
    height: 26px;
    font-size: 12px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #373d41;
    border-radius: 0;
}
.s-input-number:hover{
    border-color: #e6e7eb;
    background-color: #f7f8fa;
}
.s-input-number-checked{
    color: #ccc;
    border-color: #e6e7eb;
    background-color: #f7f8fa;
    cursor: not-allowed;
}

/** 支付选择 **/
.s-active{
    border-color: #0d95e8 !important;
    color: #0d95e8;
}
.s-pay-radio-box{
    padding: 20px;
    display: flex;
    justify-content: start;

}
.s-pay-radio-box div{
    margin: 0 20px;
}
.s-pay-radio-box div label{
    height: 40px;
    display: block;
    font-size: 14px;
    line-height: 40px;
    /*color: #999;*/
    background: #fff;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-weight: 400;
}
.s-pay-radio-box div img{
    height: 22px;
    margin: 8px;
    vertical-align: inherit;
}