.fixed-right-bar {
    position: fixed;
    right: 0.1rem;
    bottom: 3rem;
    z-index: 2;
    display: none;
}

.fixed-right-bar div {
    width: 0.6rem;
    height: 0.6rem;
    background-color: rgba(0,0,0,0.4);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0.15rem 0;
    position: relative;
}
.fixed-right-bar div img {
    display: block;
    width: 0.36rem;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.fixed-right-bar .to-bottom img{
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -moz-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
    -o-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}
.success,.error{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    background-color: rgba(0,0,0,.6);
    display: none;
    text-align: center;
}
.success>div,.error>div{
    width: 60%;
    /*height: 100px;*/
    padding: 20px;
    background-color: #FFFFFF;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
/*.success>div{*/
    /*height: 120px;*/
/*}*/
.success .icon img,.error .icon img{
    display: block;
    width: 40px;
    height: auto;
    margin: 0 auto 10px;
}
.loading{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    background-color: rgba(0,0,0,.6);
    display: none;
    text-align: center;
}
.spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 150px;
    text-align: center;

}

.spinner > div {
    width: 30px;
    height: 30px;
    background-color: #ff7272;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0.0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 40% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}

@font-face{
	font-family: htjtzw;
	src: url('../font/mbz.ttf'),
		 url('../font/mbz.eot'); /* IE9+ */
}
.num-name.mbz{
	font-family:htjtzw;
	color: #FCF3C0;
	font-size: 0.8rem;
}


/*弹出确认框*/
.confirm-alert{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background-color: rgba(0,0,0,.4);
}
.confirm-alert .box{
    width: 270px;
    padding: .3rem;
    background-color: #ffffff;
    -webkit-border-radius: .3rem;
    -moz-border-radius: .3rem;
    border-radius: .3rem;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.confirm-alert .tip{
    font-size: .36rem;
    font-weight: 500;
    text-align: center;
}
.confirm-alert h2{
    text-align: center;
    font-size: .3rem;
    line-height: .5rem;
    color: #222222;
    margin:0;
    padding: .18rem 0 .3rem;
    border-bottom: 1px solid rgba(0,0,0,.2);
}
.confirm-alert .btn{
    display: block;
    font-size: 0;
    text-align: center;
    margin-top: .4rem;
}
.confirm-alert .btn span{
    display: inline-block;
    width: 2rem;
    height: .6rem;
    font-size: .28rem;
    text-align: center;
    line-height: .6rem;
    color: #333333;
}
.confirm-alert .btn span:last-child{
    color: #ec6964;
    font-weight: normal;
}
