@charset "utf-8";
html,
body {
	width: 100vw;
	max-width: 750px;
	margin: 0 auto;
    background: #fff;
}
img {
	display: block;
	overflow: hidden;
    border: 0;
    height: 100%;
}
img[src=""],
img:not([src]) {
    opacity: 0;
}

[v-cloak] {
    display: none !important;
}
.popup-show {
    animation: codeShow 0.3s;
    -o-animation: codeShow 0.3s;
    -moz-animation: codeShow 0.3s;
    -webkit-animation: codeShow 0.3s;
}
.popup-hide {
    animation: codeHide 0.3s;
    -o-animation: codeHide 0.3s;
    -moz-animation: codeHide 0.3s;
    -webkit-animation: codeHide 0.3s;
}
@keyframes codeShow {
    0%{
        transform: scale(0);
        -o-transform: scale(0);
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0;
    }
    20%{
        transform: scale(0.3);
        -o-transform: scale(0.3);
        -moz-transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.5;
    }
    40%{
        transform: scale(0.6);
        -o-transform: scale(0.6);
        -moz-transform: scale(0.6);
        -webkit-transform: scale(0.6);
        opacity: 1;
    }
    60%{
        transform: scale(0.9);
        -o-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }
    80%{
        transform: scale(1.2);
        -o-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
    }
    100%{
        transform: scale(1);
        -o-transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
    }
}
@keyframes codeHide{
    0%{
        transform: scale(1.2);
        -o-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
    }
    20%{
        transform: scale(1);
        -o-transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        
    }
    40%{
        transform: scale(0.9);
        -o-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }
    60%{
        transform: scale(0.6);
        -o-transform: scale(0.6);
        -moz-transform: scale(0.6);
        -webkit-transform: scale(0.6);
        opacity: 1;
    }
    80%{
        transform: scale(0.3);
        -o-transform: scale(0.3);
        -moz-transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.5;
    }
    100% {
        transform: scale(0);
        -o-transform: scale(0);
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0;
    }
}
.flex {
    display: -webkit-box; 
    display: -moz-box;     
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;         
}
.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
}
.flex-center {
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    -webkit-box-align: center;
}
.median {
    display: -webkit-box; 
    display: -moz-box;     
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;   
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    -webkit-box-align: center;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-box-pack: center;
    -ms-box-align: center;
    -webkit-moz-box-pack: center;
    box-pack: center;
}
.flex-just {
    -webkit-justify-content: center;
    justify-content: center;
    -moz-box-pack: center;
    -ms-box-align: center;
    -webkit-moz-box-pack: center;
    box-pack: center;
}
.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex-warp {
    -webkit-flex-wrap: wrap;
    -ms-box-align: center;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}
.flex-item {
    -webkit-box-flex: 1;  
    -moz-box-flex: 1;              
    -webkit-flex: 1;     
    -ms-flex: 1;           
    flex: 1;             
}

.text-overflow {
	width: 100%;
	word-wrap: break-word;
	word-break: break-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
} 
.hr2 {
    width: 7.1rem;
    height: 1px;
    background: #e7e7e7;
    margin: 0 auto;
}
.time-item em {
    color: #f00;
}
.start-btn,.btn,.bottom-btn,.lock-btn,.back-top {
  cursor: pointer;
  z-index: 1;
}
/*返回页面弹窗*/
.order_back_background{
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.65);
    z-index: 37;
}
.pay-return-mask-close{
    width: 1.7rem;
    height: 1.7rem;
    top: 20%;
    right:-10%;
    position: fixed;
    z-index: 38;
    cursor: pointer;
}
.order_back_img{
    width:100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 0.8rem;
    border-radius: 0.8rem;
    position: fixed;
    z-index: 38;
}
.jj_pay{
    margin-top: -1.2rem;
    margin-left: .4rem;
    margin-bottom: .4rem;
    overflow: hidden;
}
.lj_pay{
    margin-top: -1.45rem;
    margin-left: 4rem;
    margin-bottom: .4rem;
}
.scroll-ctx {
    width: 3.4rem;
    border-radius: 1rem 0 0 1rem ;
    height: .8rem;
    font-size: .26rem;
    line-height: .8rem;
    position: fixed;
    bottom: 1.1rem;
    right: .2rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    margin-right: -.3rem;
    overflow: hidden;
}

.scroll-ctx li {
    margin-left: .2rem;
    font-size: 0.25rem	;
}

.scroll-ctx li img {
    width: .65rem;
    height: .65rem;
    border-radius: 50%;
    margin: 0.1rem 0.2rem 0 -0.12rem;
}

.scroll-ctx li span{
    float: right;
    margin-top: -.9rem;
    margin-right: .1rem;
    margin-left: .8rem;
    font-size: .2rem;
}

.scroll-ctx li .content{
    width: 100%;
    margin-top: -.5rem;
    float: right;
    margin-right: .1rem;
    margin-left: .8rem;
}
.scroll-ctx span text {
    color: #00f0ff;
}
.common-fixed-report {
    position: fixed;
    right: 0;
    bottom: 10%;
    width: .64rem;
    height: 3.78667rem;
    z-index: 3;
}
.common-fixed-report span {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url(/new_index/toushu.png) no-repeat;
    background-size: 100%;
}
/*.quweics_title {*/
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 10%;*/
    /*width: 2.64rem;*/
    /*height: 7.38667rem;*/
    /*z-index: 3;*/
/*}*/
/*.quweics_title span {*/
    /*display: inline-block;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*background: url(/quweics/image/index/quweics_title.png) no-repeat;*/
    /*background-size: 100%;*/
/*}*/
/*.zycs_title {*/
    /*position: fixed;*/
    /*left: 0;*/
    /*bottom: 10%;*/
    /*width: 2.64rem;*/
    /*height: 9.78667rem;*/
    /*z-index: 3;*/
/*}*/
/*.zycs_title span {*/
    /*display: inline-block;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*background: url(/quweics/image/index/zycs_title.png) no-repeat;*/
    /*background-size: 100%;*/
/*}*/