/*支付页面特有的样式*/
.pay-btn-wrapper {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px 10px;
    background-color: #f3f3f3;
}
.pay-btn-wrapper a{
    text-decoration: none;
}
.pay-btn-wrapper span {
    display: block;
    height: 100%;
    color: white;
    background-color: #ea4242;
    box-sizing: border-box;
    padding: 12px 10px;
}
.pay-btn-wrapper span.pay-btn-paymoney{
    background-color: #1aac19;
}
.my-pay-picture{
    font-size: 14px;
    color: #ff4303;
}
.my-pay-picture i {
    font-style: normal;
    position: relative;
}
.my-pay-picture i:after {
    /*content: " > ";*/
    position: absolute;
    display: block;
    right: -1em;
    top: -1px;
}
/*END支付页面特有的样式*/

/*loading页面样式*/
.loading_lable_box{
  font-size: 0px;
  margin-top: 11px;
}

.loading_lable_box div{
  width: 10px;
  height: 10px;
  background-color: #6a809a;
  border-radius: 50%;
  display:inline-block;
   /* -webkit-animation: loadinglable  1s steps(1) infinite; */
   /* animation-delay: 1s; */
}
.loading_lable_box div:first-child{
  margin-right: 4px;
   /* -webkit-animation: loadinglable  1s steps(1) linear infinite; */
   /* animation-delay: 0s; */
}
.loading_lable_box div:last-child{
  margin-left: 4px;
   /* -webkit-animation: loadinglable  1s steps(1) linear infinite; */
   /* animation-delay: 2s; */
}

/*支付失败*/
.payfail{
  font-family: '微软雅黑';
  color: #6a809a;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  background-color: rgba(0,0,0,0.2);
}
.payfail .payfail-dialog{
  width: 95%;
  height: 250px;
  background-color: #fff;
  border-radius: 12px;
  margin: auto;
  margin-top: 40%;
    text-align: center;
}
.payfail .payfail-dialog img{
  width: 80px;
  margin-top: 5%;
}
.payfail .payfail-dialog .title{
  font-size: 0.8rem;
  margin-top: 4%;
}
.payfail .payfail-dialog .text{
  font-size: 0.6rem;
  margin-top: 3%;
}
.payfail .payfail-dialog .cancel{
  font-size: 0.5rem;
  text-decoration: underline;
  display: inline-block;
  float: left;
  line-height: 33px;
    margin-left: 20px;
}
.payfail .payfail-dialog a{
  color: #fff;
  text-decoration: none;
  background-color: #ff4303;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
    font-size: 18px;
}
.payfail .payfail-dialog .btngroup{
  margin-top: 10px;
  padding: 17px;
  position: relative;
}

/* 示例图样式 */
.example-dialog-box{
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  background-color: #000;
  z-index: 999;
}
.example-dialog-box .example-dialog-wrapper{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
}
.example-dialog-box .example-dialog-text{
  position:absolute;
  bottom:0;
  text-align:left;
  line-height:150%;
  font-size: 0.7rem;
  padding: 20px;
  background-color: rgba(0,0,0,0.4);
  color: #fff;
}
.example-dialog-box img{
      max-width: 100%;
    max-height: 100%;
}

.example-dialog-box .btn{
  padding: 2px 3px;
  border: 1px solid #fff600;
  border-radius: 6px;
  float: right;
  color: #fff600;
}

@-webkit-keyframes loadinglable{
  from{
    background-color: #6a809a;

  }
  to{
    background-color: #fff;
  }
}

/*动画*/
@-webkit-keyframes roting
{
    0%
    {
        -webkit-transform: rotateZ(0) ;
    }
    100%
    {
        -webkit-transform: rotateZ(360deg) ;
    }
}
@-webkit-keyframes bounce
{
    0%,
    7%,
    21%,
    35%,
    100%
    {
        -webkit-transform: translateY(0);
    }
    14%,
    28%
    {
        -webkit-transform: translateY(10px);
    }
}
@-webkit-keyframes roting
{
    0%
    {
        -webkit-transform: rotateZ(0);
    }
    100%
    {
        -webkit-transform: rotateZ(360deg) ;
    }
}


/*new btn style*/
.normalstartbtn span {
    background: #FABF11;
    margin: 13px 0 13px 0;
}

.mixbtnbox{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    background-color: #f3f3f3;
    display: -webkit-flex;
    display: flex;
}
.mixstartbtn ,.mixpaybtn{
    padding: 25px 0 0 0;
    flex: 1;
}
.mixstartbtn span {
    display: block;
    color: white;
    background-color: #FABF11;
    font-size: 16px;
    padding: 12px 0;
    margin-right: 8.5px;
    border-radius: 6px;
}
.mixpaybtn{
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #f3f3f3;
    text-align: center;
}

.mixpaybtn span.pay-btn-paymoney {
    background-color: #00C800;
    font-size: 16px;
    margin-left: 8.5px;
    border-radius: 6px;
    text-align: center;
    display: block;
    height: 100%;
    color: white;
    box-sizing: border-box;
    padding: 12px 0;
}
.mixpaybtn span.pay-btn-paymoney i{
    font-style: normal;
    font-size: 12px;
    font-family: sans-serif;
}
.pay-btn-wrapper{
    padding: 21px 0 21px 10px;
    text-align: left;
}

.onlypaybtn{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px 10px 0 10px;
    background-color: #f3f3f3;
}
.onlypaybtn span{
    background-color: #00C800;
    font-size: 16px;
    border-radius: 6px;
    text-align: center;
    display: block;
    height: 100%;
    color: white;
    padding: 12px 0;
    margin: 13px 0 0 0;
}
.onlypaybtn span i{
    font-style: normal;
    font-size: 12px;
    font-family: sans-serif;
}

.unuse-submit{
    padding-bottom: 0;
}
.unuse-submit span{
    background: #FABF11;
    margin: 13px 0 0 0;
}
.unuse-pay{
    display: none;
}
/*.unuse-pay span{
    background-color: #00C800;
    font-size: 16px;
    border-radius: 6px;
    text-align: center;
    display: block;
    height: 100%;
    color: white;
    padding: 12px 0;
    margin: 13px 0 0 0;
}*/
.unuse-pay span i{
    font-style: normal;
    font-size: 12px;
    font-family: sans-serif;
}

/*确认支付样式*/
.ConfirmPaybox{
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    display: none;
}
.ConfirmPaybg{
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.ConfirmPayInfo{
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: white;
    -webkit-transform: translateY(217px);
}
.ConfirmPay-titlebox{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
}
.ConfirmPay-title{
    text-align: left;
    color: #444444;
    font-weight: 900;
    margin: 20.7px 0 15.525px 0;
    font-size: 18px;
    line-height: 18px;
}
.ConfirmPay-list{
    font-size: 14px !important;
    text-align: left;
    margin-bottom: 25.875px;
    line-height: 14px;
}
.ConfirmPay-list a{;
    color: #808080;
    text-decoration: none;
}
.ConfirmPay-list ss{
    color: #9596ab;
    text-decoration: underline;
}
.ConfirmPay-spliteline{
    display: block;
    height: 1px;
    background-color: #EEEEEE;
}
.ConfirmPay-prizebox{
    overflow: hidden;
    padding: 0 10px;
    line-height: 90px;
}
.ConfirmPay-prizetext{
    float: left;
    font-size: 14px;
    color: #999999;
}
.ConfirmPay-prize{
    float: right;
    font-size: 42px;
    color: #444444;
    font-family: helvetica;
}
.ConfirmPaybtnbox{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px 20px 10px;
}
.ConfirmPaybtn{
    background-color: #00C800;
    font-size: 16px;
    border-radius: 6px;
    text-align: center;
    display: block;
    height: 100%;
    color: white;
    padding: 12px 0;
}
/* result tip */
.result-pay-tipbox{
    position: fixed;
    width: 100%;
    display: block;
    font-size: 14px;
    padding: 0 9px;
    box-sizing: border-box;
    left: 0;
    bottom: 58px;
}
.result-pay,.result-showlist{
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 48px;
    line-height: 48px;
    overflow: hidden;
    color: white;
    opacity: 0;
    display: none;
    border-radius: 5px;
}
.result-pay-word{
    float: left;
    text-align: left;
    display: inline-block;
    margin-left: 7px;
}
.result-pay-btn,.result-showlist-btn{
    float: right;
    display: inline-block;
}
.result-pay-btn span{
    line-height: 14px;
    background-color: #00C800;
    padding: 10px;
    margin-right: 7px;
    border-radius: 5px;
}
.result-showlist-btn a{
    text-decoration: none;
    color: white;
}
.result-showlist-btn span{
    line-height: 14px;
    background-color: #FABF11;
    padding: 10px;
    margin-right: 7px;
    border-radius: 5px;
}
/*animation*/
.showConfirm{
    display: block;
}
.showConfirm .ConfirmPayInfo{
    -webkit-animation:upin 0.5s 0s 1 ease normal forwards;
}
@-webkit-keyframes upin{
    100%{
        -webkit-transform:translateY(0);
    }
}

.resultTipshow .result-pay,
.resultTipshow .result-showlist{
    -webkit-animation:upin2 0.5s 0s 1 ease normal forwards;
}
@-webkit-keyframes upin2{
    0%{
        opacity: 0;
        -webkit-transform:translateY(100%);
    }
    100%{
        opacity: 1;
        -webkit-transform:translateY(0);
    }
}

/* paystatus == 2 */
.payfail{position:fixed;top:0;height:100%;width:100%;background:rgba(0,0,0,.7);display: table;color:#71869E;z-index:1000}
.tip-content-wrap{display:table-cell;vertical-align:middle;text-align:center;min-height:100px}
.tip-content-wrap .tip-content{width: 242px;margin: -50px auto 0 auto;text-align: center;background-color: white;border-radius: 10px;}
.tip-content-wrap .tip-img-box{position: relative;width: 100%;left: 0;top: 0;color: #6a809a;}
.tip-content-wrap .tip-img-box img{position: absolute;width: 60px;left: 50%;top: 0;-webkit-transform: translate(-50%,-50%);transform: translate(-50%,-50%);}
.tip-content-wrap .tip-img-box span{height: 45px;display: block;}
.tip-content-wrap .tip-desc-box{font-size: 16px;line-height: 16px;color: #6a809a;}
.tip-content-wrap .tip-desc-box span{display: block;height: 16px;line-height: 16px;margin-bottom: 12px;}
.tip-content-wrap .tip-btns-box{ margin: 20px auto 0 auto;padding-bottom: 15px;font-size: 16px;}
.tip-content-wrap .tip-btns-box span{display: inline-block;height: 38px;width: 113.85px;line-height: 38px;background: #FF4303;color: #fff;border-radius: 5px;}
