﻿@charset "utf-8";
/* CSS Document */

*{margin: 0;padding: 0;font-family:"微软雅黑";}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td,a { margin:0; padding:0;font-family:"微软雅黑"; }
fieldset, img { border:0; /* 解决ie6下，加了a链接之后的图片会有边框的问题*/}
ol, ul,li{ list-style:none; }
h1, h2, h3, h4, h5, h6{font-size:100%; font-weight:normal;}
em,i{ font-style:normal; }
input, button, select, textarea,a { outline:none; border-radius: 0; border:none; background:none;}
.clear{clear:both; height:1px;}
a{text-decoration:none; color:inherit;}
img{height:auto;width:100%; vertical-align:middle;}
body{ -webkit-text-size-adjust: none;}
a {
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}

/*弹出框*/
.close_uppop{position:absolute; right:6px; top:2px;}
.close_uppop{width:20px; height:20px;}
.popup-backdrop{position: fixed;
    z-index: 998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    background: rgba(0,0,0,0.5);
}
.popup {
    position: fixed;
    z-index: 10000;
    top: 40%;
    left: 50%;
    display: none;
    overflow: hidden;
    width:80%;
    -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;
    color: #000;
    border-radius: 5px;
    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:#fff;
}
.popup.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;
}

.popup-inner {
    position: relative;
    padding: 15px 0;
    border-radius: 3px 3px 0 0;
    background: rgba(255,255,255,.95);
}
.popup-inner h3{line-height:40px;}


.popup-title {
    font-size:16px;
    font-weight: 500;
    text-align: center;
    color: #cd3136;
	font-weight:bold;
}
.popup-title+.popup-text {
    font-family: inherit;
    font-size: 14px;
    color: #4a4a4a;
    line-height:20px;
	padding:10px;
}
.popup-buttons {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 44px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.popup-button {
    font-size: 16px;
    line-height: 32px;
    position: relative;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 32px;
    padding: 0 5px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    color:#666;
    background: rgba(255,255,255,.95);
    -webkit-box-flex: 1;
}
.popup-button.blue
{    
    background: #cd3136;
    color:#fff;font-size:1em;
    width:50%;
    border-radius:5px;
 }
.popup-button:first-child:last-child {
    border-radius:5px;
}
.popup-button.popup-button-bold {
    font-weight: 600;
}
/*.popup-button:after {
    position: absolute;
    z-index: 15;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    display: block;
    width: 1px;
    height: 100%;
    content: '';
    -webkit-transform: scaleX(.5);
    transform: scaleX(.5);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    background-color: rgba(0,0,0,.2);
}*/
.popup-backdrop-loading{position: fixed;
    z-index: 998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    background: rgba(0,0,0,0.5);
}
.popup-backdrop.active {
    opacity: 1;
}
.toast-container{
	position:fixed;
	z-index:10001;
	top:40%;
	width:100%;
	-webkit-transition:opacity .8s;
	transition:opacity .8s;
	
	left: 0;
	}
.toast-container.active{opacity:1}
.toast-message{
	font-size:14px;
	width:40%;
	margin:5px auto;
	padding:30px;
	text-align:center;
	color:#fff;
	border-radius:5px;
	background-color:rgba(0,0,0,.4)
	}
	

.btn-outlined.btn-blue, .btn-outlined.btn-primary {
    color: #007aff;
}

.btn-outlined {
    background-color: transparent;
}
.btn-blue, .btn-primary, input[type=submit] {
    color: #fff;
    border: 1px solid #007aff;
    background-color: #007aff;
}
/*.btn, button, input[type=button], input[type=reset], input[type=submit] {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    padding: 6px 12px;
    cursor: pointer;
    -webkit-transition: all;
    transition: all;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    text-align: center;
    vertical-align: top;
    white-space: nowrap;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: #fff;
    background-clip: padding-box;
}
*/
.zbox-btn {
    display: block;
    width: 120px;
    margin: 10px auto;
}
	#zchange{ width:30px; height: 30px; display:block;margin: 0 auto; 
	animation:circle1 1.2s infinite linear; -webkit-animation:circle1 1.2s infinite linear; transition: all linear; margin-bottom:20px;}

@-webkit-keyframes circle1
{
0% { -webkit-transform: rotate(0deg)  }
100% {  -webkit-transform: rotate(360deg)  ;}
}

@keyframes circle1
{
0% { transform: rotate(0deg)  ;}
100% { transform: rotate(360deg) ;}
}
.vlipopup-buttons {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 44px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-top:1px solid #e5e5e5;
}
.vlipopup-button {
    font-size: 16px;
    line-height: 44px;
    position: relative;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    width: 50%;
    height: 44px;
    padding: 0 5px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    color:#666;
    background: rgba(255,255,255,.95);
    -webkit-box-flex: 1;
}
.vlipopup-button.blue
{   
    border-left: 1px solid #e5e5e5;
 }
.baseyzm{width: 95px;border: 1px solid #eee;border-right: none;margin: 10px 0;height: 38px;}
.popup-inner p{color:#aaa; font-size: 12px;}
.GraphCode{width: 85%;height: 30px;line-height: 30px;font-size: 14px;border: 1px solid #aaa;border-radius: 0px;}
.yzm{border: 1px solid #eee;border-right: none;height: 100%;}