/* 成功提示框 */
#container_success_prompt{
    position: fixed;
    display: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 99999;
    background: rgba(0,0,0,0);
}
#container_success_prompt div{
    position: absolute;
    padding: 0 20px;
    left: 0;
    right: 0;
    bottom: 50%;
    text-align: center;
}
#container_success_prompt span{
    padding: 5px 16px;
    background: rgba(0,0,0,.6);
    color: #fff;
    border-radius: 3px;
}

/* 错误提示框 */
#container_alert_prompt{
    /*width:95%;
    overflow: hidden;*/
    position: fixed;
    top: -44px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.8);
    text-align: center;
    font-size: 12px;
    padding: 13px 36px;
    line-height: initial;
    transform: translateY(0);
    transition: transform .5s ease 0s;
    -webkit-transition: transform .5s ease 0s; /* Safari and Chrome */
    z-index: 99999;
    color: white;
}
#container_alert_prompt.slide_down{
    transform: translateY(44px);
}
#container_alert_prompt.slide_up{
    transform: translateY(-44px);
}
#container_alert_prompt span{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    vertical-align: middle;
    font-size: 20px;
    color: white;
}

/* loading */
#FEerloading{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
}
#FEerloading .backDrop{
    min-width: 100px;
    min-height: 100px;
    text-align: center;
    border-radius: 4px;
    color: rgba(255,255,255,.8);
    background: rgba(0,0,0,.8);
}
#FEerloading .backDrop i{
    position: relative;
    display: block;
    margin: 10px auto 10px;
    height: 50px;
    width: 50px;
    overflow: hidden;
}
#FEerloading .backDrop i.FEer-loading-icon{
    background: #d7ad6a;
    border-radius: 50%;
}
#FEerloading .backDrop i.FEer-loading-icon:before{
    content: "";
    position: absolute;
    top: -98px;
    left: 50%;
    margin-left: -60px;
    width: 120px;
    height: 120px;
    background: rgba(0,0,0,.5);
    border-radius: 50px;
    -webkit-animation: roll-before 7s linear infinite;
}
@-webkit-keyframes roll-before{
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
#FEerloading .backDrop i.FEer-loading-icon:after{
    content: "";
    position: absolute;
    top: -97px;
    left: 50%;
    margin-left: -60px;
    width: 120px;
    height: 120px;
    background: rgba(0,0,0,.5);
    border-radius: 45px;
    -webkit-animation: roll-after 5s linear infinite;
}
@-webkit-keyframes roll-after{
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
#FEerloading .backDrop i.FEer-success-icon:before{
    content: "";
    position: absolute;
    left: 16px;
    top: 10px;
    width: 20px;
    height: 35px;
    border: 3px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
}
#FEerloading .backDrop i.FEer-failed-icon:before{
    content: "";
    position: absolute;
    left: 24px;
    top: 10px;
    width: 3px;
    height: 35px;
    transform: rotate(45deg);
    background: #fff;
}
#FEerloading .backDrop i.FEer-failed-icon:after{
    content: "";
    position: absolute;
    left: 24px;
    top: 10px;
    width: 3px;
    height: 35px;
    transform: rotate(-45deg);
    background: #fff;
}

/* 进度条 */
.fastorder-accessbar {
    padding: 20px;
    padding-bottom: 45px;
}

.fastorder-accessbar .step {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 1px;
    border-radius: 30px;
    color: #ddd;
}

.fastorder-accessbar .line {
    background: #ddd;
    height: 1px;
    margin-top: 14px;
    margin-right: 2px;
    margin-left: 2px;
}

.fastorder-accessbar .step div {
    width: 30px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    background: #ddd;
    border-radius: 50px;
}

.fastorder-accessbar .step p {
    position: absolute;
    bottom: -35px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    font-size: 12px;
    text-align: center;
}
.fastorder-accessbar .step.active .num{
    background-color: #d7ad6a !important;
}
.fastorder-accessbar .step.active .tit {
    color: #333;
}

/*公共弹框样式 start*/
.show-model-div{
    display: none;
    width: 100%;

}
.show-model-div .wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}

.show-model-div .box {
    width:70%;
    background-color: #fff;
    border-radius:8px; 
    font-size: 16px;
}

.show-model-div .box .tip-text {
    padding: 44px 0px;
    text-align: center;
}

.show-model-div .box .btn-confirm {
    display: flex;
    padding: 10px 0px;
    background-color: #EEEEEE;
    border-radius: 0px 0px 8px  8px;
}  

.show-model-div .box .btn-confirm a{
    display: block; 
    flex: 1;
    text-align: center;
}

.show-model-div .box .btn-confirm a+a{
    border-left: 1px solid #ccc;
    color: #d7ad6a;
}
.show-model-div .box .input-wrap {
    border: 1px solid #e6e6e6;
    padding: 3px 0px;
    border-radius: 4px;
}

.show-model-div .box .input-wrap input {
    padding: 0px 10px;
    width: 100%;
    border: 0px;
}
.show-model-div .box .has-input {
    margin: 10px 15px;
}
.show-model-div .box .has-input .tip {
    padding: 10px 0px 5px 0px;
    text-align: right;
}
.show-model-div .box .has-input .link-tip {
    color: #76b2fb;
    font-size: 13px;
    text-align: right;
    padding-top: 5px;
} 
