


body {
    -webkit-font-smoothing: antialiased;
}

.zbox-popup {
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    display: none;
    overflow: hidden;
    width: 290px;
    height: 170px;
    -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: 3px;
    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;
    background-color: #FAFAFA;
}

.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);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
    opacity: 1;
    font-family: "Microsoft YaHei";
	z-index:10001;
}

.zbox-popup-inner {
    position: relative;
    
    height: 120px;
    border-radius: 3px 3px 0 0;
    
}

.zbox-popup-title {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #484848;
    
    padding-left: 20px;
    text-align: left;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #e1e1e1;
}

.zbox-popup-title + .zbox-popup-text {
    font-family: inherit;
    font-size: 16px;
    margin: 5px 0 0;
    color: #484848;
    height: 70px;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    width: 400px;
    padding: 0 30px;
}

.zbox-popup-buttons {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 70px;
    background: #FAFAFA;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.zbox-popup-button {
    font-size: 16px;
    position: relative;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    width: 100px;
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: white;
    background: #fa4d32;
    -webkit-box-flex: 1;
    border: 0;
    border-radius: 4px;
}

.R {
    margin-left: 20px;
    background: #e9e9e9;
    color: #999;
}

.zbox-popup-button:first-child:last-child {
    border-radius: 4px;
}

.zbox-popup-button.zbox-popup-button-bold {
    font-weight: 600;
}

.closeXx {
    position: absolute;
    top: 10px;
    color: #484848;
    right: 10px;
    font-size: 24px;
    height: 24px;
    line-height: 21px;
    width: 24px;
    cursor: pointer;
    text-align: center;
    
    margin-top: -3px;
}


.zbox-popup-backdrop {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    opacity: 0;
    background: rgba(0, 0, 0, .4);
    width: 100%;
    height: 100%;
}

.zbox-active {
    opacity: 1;
}

.zbox-toast-container {
    position: fixed;
    z-index: 9999;
    bottom: 60px;
    width: 160px;
    height: 40px;
    line-height: 40px;
    -webkit-transition: opacity .8s;
    transition: opacity .8s;
    opacity: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.zbox-toast-container.zbox-active {
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
}

.zbox-toast-message {
    font-size: 14px;
    
    margin: 5px auto;
    padding: 10px;
    text-align: center;
    color: #000;
    border-radius: 5px;
    background-color: #FDF0ED;
    border: 1px solid #FFB4a0;
}

.successAutoHide {
    background: #dff0d8;
    border-color: #C3DEB7;
    color: #3c763d;
}

#zchange {
    width: 44px;
    height: 44px;
    display: block;
    margin: 0 auto;
    animation: circle1 1.2s infinite linear;
    -webkit-animation: circle1 1.2s infinite linear;
    transition: all linear;
}

.closeXx:hover {
    animation: circle1 0.8s
}

@-webkit-keyframes circle1 {
    0% {
        -webkit-transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes circle1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}