@charset "utf-8";
/* CSS Document */

body{ -webkit-font-smoothing: antialiased; }
.zbox-popup {
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    display: none;
    overflow: hidden;
    width: 420px;
    -webkit-transition-property: -webkit-transform,opacity;
    transition-property: transform,opacity;
    -webkit-transform:perspective(1200px) translate3d(-50%,-50%,0) scale(1.2) ;
    transform:perspective(1200px) translate3d(-50%,-50%,0) scale(1.2);
    text-align: center;
    opacity: 0;
    color: #000;
    border-radius: 10px;
    z-index: 10000;
     -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -ms-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-font-smoothing: antialiased;
}
.zbox-popup.zbox-popup-in {
    display: block;
    transition-property: all;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform:perspective(1200px) translate3d(-50%,-50%,0) scale(1) ;
    transform:perspective(1200px) translate3d(-50%,-50%,0) scale(1);
    opacity: 1;
}
.zbox-popup-inner {
    position: relative;
    padding: 0.4rem;
    border-radius: 10px 10px 0 0;
    background: rgba(255,255,255,.95);
}
.zbox-popup-inner:after {
    position: absolute !important;
    z-index: 15 !important;
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 1px !important;
    content: '';
    -webkit-transform: scaleY(.5) !important;
    transform: scaleY(.5) !important;
    -webkit-transform-origin: 50% 100% !important;
    transform-origin: 50% 100% !important;
    background-color: rgba(0,0,0,.2) !important;
}
.zbox-popup-title {
     font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #4a4a4a;
}
.zbox-popup-title+.zbox-popup-text {
    font-family: inherit;
    font-size: 16px;
    margin: 0.133333rem 0 0;
    color: #4a4a4a;
    line-height: 1.75;
}
.zbox-popup-buttons {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 2.173333rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.zbox-popup-button {
    font-size: 16px;
    line-height: 2.173333rem;
    position: relative;
    display: table-cell;
    overflow: hidden;
    box-sizing: border-box;
    width: 33rem;
    height:2.173333rem;
    padding: 0 0.133333rem;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    color:#d81214;
    background: rgba(255,255,255,.95);
    -webkit-box-flex: 1;
}
.zbox-popup-button:first-child:last-child {
    border-radius: 0 0 10px 10px;
}
.zbox-popup-button.zbox-popup-button-bold {
    font-weight: 600;
}
.zbox-popup-button:after {
    position: absolute !important;
    z-index: 15 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    display: block !important;
    width: 1px !important;
    height: 100% !important;
    content: '';
    -webkit-transform: scaleX(.5) !important;
    transform: scaleX(.5) !important;
    -webkit-transform-origin: 100% 50% !important;
    transform-origin: 100% 50% !important;
    background-color: rgba(0,0,0,.2) !important;
}
.zbox-popup-backdrop.zbox-active {
    opacity: 1;
}
.zbox-popup-backdrop {
    position: fixed;
    z-index: 998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    opacity: 0;
    background: rgba(0,0,0,.4);
}
#zchange{ 
	width:1.6rem;
	height: auto;
    display:block;
    margin: 0 auto; 
	animation:circle1 1.2s infinite linear; 
	-webkit-animation:circle1 1.2s infinite linear; transition: all linear;
	}

