/*css reset*/
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box;}
html,body,p{ padding: 0; margin: 0; font-family: "思源黑体", "Source Han Sans CN","微软雅黑","Microsoft YaHei", "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif; font-size: 12px;line-height: 1;}
ol, ul {list-style: none; padding: 0; margin: 0;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none; }
table {border-collapse: collapse; border-spacing: 0;}
th,td { vertical-align: middle;padding: 0;}
a{text-decoration:none;	outline: none;hlbr:expression(this.onFocus=this.blur());}
input, select {vertical-align: middle;padding: 0;border: 0 none;}
img, iframe {border: none; text-decoration:none;}
img{vertical-align: top;}
strong {font-weight: bold;}
h1,h2,h3,h4,h5,h6{padding: 0; margin: 0;}
:focus {outline: 0;}
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #999;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #999;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #999;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #999;
}
@font-face {
  font-family: "itc-xlt";
  src: url("../fonts/ITCAVANTGARDESTD-XLT.woff") format("woff"),
       url("../fonts/ITCAVANTGARDESTD-XLT.ttf") format("truetype"),
       url("../fonts/ITCAVANTGARDESTD-XLT.eot") format("embedded-opentype"),
       url("../fonts/ITCAVANTGARDESTD-XLT.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*css common*/
.clearfix:after{content: "";display: block;clear: both;visibility: hidden;line-height: 0;height: 0;font-size:0;}
.clearfix{*zoom:1;}
html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;font-size: 16px;margin: 0 auto;height: 100%;}
body{
 	font-size: 62.5%;
	overflow-x: hidden;
	position: relative;
	height: 100%;
}
body {
    overflow-y: hidden;/*为了兼容普通PC的浏览器*/
    height: 100%;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
}
.music-box{
	width: 1.25rem;
	height: 1.25rem;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/music_icon.png);
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	-webkit-display: flex;
	-webkit-align-items: flex-end;
	-webkit-justify-content: center;
	opacity: 0;
	z-index: 2;
}
.music-box.active{
	opacity: 1;
	transition: all 1s;
	-webkit-transition: all 1s;
}
.music-box .line{
	width: 1px;
	height: 0.625rem;
	margin-right: 1px;
	margin-bottom: 0.3125rem;
	background-color: #cd415a;
	animation: musicline 1s infinite linear;
	-webkit-animation: musicline 1s infinite linear;
}
.music-box.stop .line{
	opacity: 0.5;
	animation-play-state: paused;
	-webkit-animation-play-state: paused;
}
.music-box .line:nth-child(1){
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}
.music-box .line:nth-child(2){
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}
.music-box .line:nth-child(3){
	animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
}
.music-box .line:nth-child(4){
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}
.music-box .line:nth-child(5){
	animation-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
}
.music-box .line:nth-child(6){
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
	margin-right: 0;
}
@keyframes musicline{
	0% {
		height: 0%;
	}
	50% {
		height: 0.625rem;
	}
	100% {
		height: 0;
	}
}
@-webkit-keyframes musicline{
	0% {
		height: 0%;
	}
	50% {
		height: 0.625rem;
	}
	100% {
		height: 0;
	}
}
.bg{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background-repeat: no-repeat;
	background-image: url(../images/bg.jpg);
	background-position: center center;
}
.page-content{
	margin: 0 auto;
	height: 100%;
	position: relative;
	background-color: #fff;
	overflow: hidden;
}
.page-content .back{
	position: absolute;
	left: 1.25rem;
	top: 1.5rem;
	z-index: 3;
	opacity: 0;
}
.page-content .back.active{
	opacity: 1;
	transition: all 1s;
	-webkit-transition: all 1s;
}
.page-content .back img{
	vertical-align: middle;
	height: 0.625rem;
	margin-right: 0.3125rem;
}
.page-content .back span{
	font-size: 0.75rem;
	color: #c90302;
	vertical-align: middle;
}

.corner{
	position: absolute;
	overflow: hidden;
	width: 2.5625rem;
	z-index: 2;
}
.corner.topleft{
	left: 0.625rem;
	top: 0.625rem;
}
.corner.topright{
	right: 0.625rem;
	top: 0.625rem;
}
.corner.bottomleft{
	left: 0.625rem;
	bottom: 0.625rem;
}
.corner.bottomright{
	right: 0.625rem;
	bottom: 0.625rem;
}
.corner img{
	width: 100%;
	transform: scale(0,0);
	-webkit-transform: scale(0,0);
}
.corner.topleft img{
	transform-origin: 0% 0%;
}
.corner.topright img{
	transform-origin: 100% 0%;
}
.corner.bottomleft img{
	transform-origin: 0% 100%;
}
.corner.bottomright img{
	transform-origin: 100% 100%;
}
.corner.active img{
	transition: all 1s 0.5s;
	-webkit-transition: all 1s 0.5s;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
}


.pop-box{
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-webkit-flex-direction: column;
	display: none;
	padding: 0 0.625rem;
	text-align: center;
}
.pop-box.active{
	display: flex;
	-webkit-display: flex;
}
.pop-box .title{
	height: 1.5rem;
	margin-bottom: 1.5rem;
}
.pop-box .tab-control{
	font-size: 0;
	text-align: center;
	width: 100%;
}
.pop-box .tab-control a{
	display: inline-block;
	vertical-align: top;
	font-size: 0.625rem;
	font-weight: lighter;
	color: #c90302;
	border: 1px solid #eebdc0;
	line-height: 1.5rem;
	width: 24.58%;
	margin-right: 0.56%;
	border-bottom: 0 none;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
}
.pop-box .tab-control a:last-child{
	margin-right: 0;
}
.pop-box .tab-control a.active{
	background-color: #f9e8e7;
}
.pop-box .tab-content{
	width: 100%;
}
.pop-box .tab-content .table-box{
	width: 100%;
	height: 17.25rem;
}
.pop-box .tab-content .table-box table{
	width: 100%;
	display: none;
	font-size: 0.625rem;
	line-height: 1.5;
	color: #333;
	background-color: #f9e8e7;
}
.pop-box .tab-content .table-box table.active{
	display: table;
}
.pop-box .tab-content .table-box table td{
	border: 1px solid #eebdc0;
	height: 1.5625rem;
	width: 14.285%;
}
.pop-box .tab-content .result-box{
	width: 100%;
}
.pop-box .tab-content .result-box .result{
	display: none;
	background-color: #4a4545;
	padding: 1.25rem 0;
}
.pop-box .tab-content .result-box .result.active{
	display: block;
}
.pop-box .tab-content .result-box .result h5{
	font-size: 0.75rem;
	color: #fff;
	font-weight: normal;
	margin-bottom: 0.625rem;
}
.pop-box .tab-content .result-box .result p{
	font-size: 1.375rem;
	color: #fff;
	font-family: "itc-xlt";
	font-weight: lighter;
	letter-spacing: 0.3125rem;
	margin-right: -0.3125rem;
}
.pop-box .btn-box{
	width: 100%;
	border: 1px solid #eebdc0;
	background-color: #f9e8e7;
	border-top: 0 none;
	padding: 1.125rem 0 1.25rem;
}
.pop-box .btn-box img{
	width: 8.75rem;
	vertical-align: middle;
}
.pop-box .btn-box ul{
	padding: 0.9375rem 1.375rem 0;
	text-align: left;
}
.pop-box .btn-box li{
	font-size: 0.5625rem;
	color: #333;
	position: relative;
	line-height: 0.8125rem;
	padding-left: 0.625rem;
	margin-bottom: 0.125rem;
}
.pop-box .btn-box li:last-child{
	margin-bottom: 0;
}
.pop-box .btn-box li span{
	width: 0.25rem;
	height: 0.25rem;
	display: block;
	border-radius: 50%;
	background-color: #d33130;
	position: absolute;
	left: 0;
	top: 0.28125rem;
}
.nicescroll-rails.nicescroll-rails-vr{
	z-index: 1!important;
}


.page0{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-webkit-flex-direction: column;	
}
.page0.active{
	opacity: 1;
	z-index: 1;
	transition: all 1s;
	-webkit-transition: all 1s;
}
.page0 img{
	width: 9.0625rem;
}
.page1{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-webkit-flex-direction: column;
}
.page1.active{
	transition: all 1s;
	-webkit-transition: all 1s;
	opacity: 1;
	z-index: 1;
}
.page1 .top{
	width: 18.5625rem;
	height: 8.0625rem;
	margin-bottom: 1.375rem;
	position: relative;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/page1_top_bg.png);
	padding-top: 0.5rem;
}
.page1 .top .line1{
	width: 5.09375rem;
	position: absolute;
	top: 0;
	left: 2.4375rem;
	overflow: hidden;
}
.page1 .top .line1 img{
	width: 100%;
}
.page1 .top .line1 .cover{
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.page1.active .top .line1 .cover{
	left: 100%;
	transition: all 1s 1s;
	-webkit-transition: all 1s 1s;
}
.page1 .top .line2{
	width: 6.96875rem;
	position: absolute;
	bottom: 1.5625rem;
	right: 0.4375rem;
	overflow: hidden;
}
.page1 .top .line2 img{
	width: 100%;
}
.page1 .top .line2 .cover{
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	right: 0;
	top: 0;
}
.page1.active .top .line2 .cover{
	right: 100%;
	transition: all 1s 1s;
	-webkit-transition: all 1s 1s;
}
.page1 .top p{
	font-size: 0.9375rem;
	color: #333;
	line-height: 1.4rem;
	text-align: center;
	opacity: 0;
}
.page1.active .top p{
	opacity: 1;
	transition: all 1s 2s;
	-webkit-transition: all 1s 2s;
}
.page1 .middle{
	text-align: center;
	margin-bottom: 0.625rem;
	position: relative;
}
.page1 .middle .cir{
	width: 1.75rem;
	position: absolute;
	bottom: 100%;
	margin-bottom: 0.625rem;
	right: 100%;
	margin-right: 2rem;
	opacity: 0;
}
.page1.active .middle .cir{
	transition: all 1s 2.5s;
	-webkit-transition: all 1s 2.5s;
	opacity: 1;
	animation: pageonecir 2s infinite linear;
	-webkit-animation: pageonecir 2s infinite linear;
}
@keyframes pageonecir{
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes pageonecir{
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
.page1 .middle .line{
	height: 1.6875rem;
	position: absolute;
	bottom: 100%;
	left: -2rem;
	overflow: hidden;
}
.page1 .middle .line img{
	height: 100%;
}
.page1 .middle .line .cover{
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.page1.active .middle .line .cover{
	left: 100%;
	top: 100%;
	transition: all 1s 3s;
	-webkit-transition: all 1s 3s;
}
.page1 .middle .num-box{
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/page1_middle_numbg.png);
	width: 9.375rem;
	height: 2.8125rem;
	display: table-cell;
	vertical-align: middle;
	opacity: 0;
}
.page1.active .middle .num-box{
	opacity: 1;
	transition: all 1s 3.5s;
	-webkit-transition: all 1s 3.5s;
}
.page1 .middle .num-box .num{
	font-size: 1.25rem;
	color: #cd415a;
	font-family: "itc-xlt";
	font-weight: lighter;
}
.page1 .middle .num-box .num b{
	font-weight: lighter;
	vertical-align: text-bottom;
}
.page1 .middle .num-box .odometer-digit{
	margin-left: 0.375rem;
}
.page1 .bottom{
	width: 13.5rem;
	margin-bottom: 0.375rem;
	opacity: 0;
}
.page1.active .bottom{
	opacity: 1;
	transition: all 1s 4.5s;
	-webkit-transition: all 1s 4.5s;
}
.page1 .btn{
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/page1_btn.png);
	width: 12.5rem;
	height: 2.8125rem;
	line-height: 2.8125rem;
	text-align: right;
	padding: 0 1.25rem;
	font-size: 0;
	opacity: 0;
	display: block;
}
.page1.active .btn{
	opacity: 1;
	transition: all 1s 5s;
	-webkit-transition: all 1s 5s;
}
.page1 .btn .tri{
	height: 0.9375rem;
	vertical-align: middle;
	margin-left: -0.3125rem;
}
.page1.active .btn .tri.one{
	animation: pageonebtn 0.6s 0s infinite linear;
	-webkit-animation: pageonebtn 0.6s 0s infinite linear;
}
.page1.active .btn .tri.two{
	animation: pageonebtn 0.6s 0.15s infinite linear;
	-webkit-animation: pageonebtn 0.6s 0.15s infinite linear;
}
.page1.active .btn .tri.three{
	animation: pageonebtn 0.6s 0.3s infinite linear;
	-webkit-animation: pageonebtn 0.6s 0.3s infinite linear;
}
@keyframes pageonebtn{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes pageonebtn{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.page2{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-webkit-flex-direction: column;
}
.page2.active{
	opacity: 1;
	z-index: 1;
	transition: all 1s;
	-webkit-transition: all 1s;
}
.page2 .top{
	width: 18.5625rem;
	height: 9.90625rem;
	margin-bottom: 2.1875rem;
	position: relative;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/page2_top_bg.png);
	padding-top: 0.625rem;
}
.page2 .top .line1{
	width: 5.09375rem;
	position: absolute;
	top: 0;
	left: 2.4375rem;
	overflow: hidden;
}
.page2 .top .line1 img{
	width: 100%;
}
.page2 .top .line1 .cover{
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.page2.active .top .line1 .cover{
	left: 100%;
	transition: all 1s 1s;
	-webkit-transition: all 1s 1s;
}
.page2 .top .line2{
	width: 6.96875rem;
	position: absolute;
	bottom: 0;
	right: 0.4375rem;
	overflow: hidden;
}
.page2 .top .line2 img{
	width: 100%;
}
.page2 .top .line2 .cover{
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	right: 0;
	top: 0;
}
.page2.active .top .line2 .cover{
	right: 100%;
	transition: all 1s 1s;
	-webkit-transition: all 1s 1s;
}
.page2 .top p{
	font-size: 1rem;
	color: #333;
	line-height: 1.8125rem;
	text-align: center;
	opacity: 0;
}
.page2.active .top p{
	opacity: 1;
	transition: all 1s 2s;
	-webkit-transition: all 1s 2s;
}
.page2 .top p span{
	color: #c90302;
}
.page2 .middle{
	width: 9.8125rem;
	margin-bottom: 1rem;
	opacity: 0;
}
.page2.active .middle{
	opacity: 1;
	transition: all 1s 3s;
	-webkit-transition: all 1s 3s;
}
.page2 .bottom{
	width: 12.1875rem;
	opacity: 0;
}
.page2.active .bottom{
	opacity: 1;
	transition: all 1s 4s;
	-webkit-transition: all 1s 4s;
}
.page2 .tip{
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 2.5rem;
	opacity: 0;
}
.page2.active .tip{
	opacity: 1;
	transition: all 1s 5s;
	-webkit-transition: all 1s 5s;
}
.page2 .tip .tri{
	width: 1.5625rem;
	display: block;
	margin: -0.25rem auto 0;
}
.page2.active .tip .tri.one{
	animation: pageonebtn 0.6s 0s infinite linear;
	-webkit-animation: pageonebtn 0.6s 0s infinite linear;
}
.page2.active .tip .tri.two{
	animation: pageonebtn 0.6s 0.15s infinite linear;
	-webkit-animation: pageonebtn 0.6s 0.15s infinite linear;
}
.page2.active .tip .tri.three{
	animation: pageonebtn 0.6s 0.3s infinite linear;
	-webkit-animation: pageonebtn 0.6s 0.3s infinite linear;
}


.page3{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-webkit-flex-direction: column;
}
.page3.active{
	z-index: 1;
	opacity: 1;
	transition: all 1s;
	-webkit-transition: all 1s;
}
.page3 .top{
	width: 20.4375rem;
	height: 8.65625rem;
	margin-bottom: 2.1875rem;
	position: relative;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/page3_top_bg.png);
	overflow: hidden;
	opacity: 0;
	margin-bottom: 4rem;
}
.page3.active .top{
	opacity: 1;
	transition: all 1s 2s;
	-webkit-transition: all 1s 2s;
}
.page3 .top .line1{
	width: 5.09375rem;
	position: absolute;
	top: 0;
	left: 4.375rem;
	overflow: hidden;
}
.page3 .top .line1 img{
	width: 100%;
}
.page3 .top .line1 .cover{
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.page3.active .top .line1 .cover{
	left: 100%;
	transition: all 1s 3s;
	-webkit-transition: all 1s 3s;
}
.page3 .top .line2{
	width: 6.96875rem;
	position: absolute;
	bottom: 0;
	right: 0.4375rem;
	overflow: hidden;
}
.page3 .top .line2 img{
	width: 100%;
}
.page3 .top .line2 .cover{
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	right: 0;
	top: 0;
}
.page3.active .top .line2 .cover{
	right: 100%;
	transition: all 1s 3s;
	-webkit-transition: all 1s 3s;
}
.page3 .top .slidebox{
	perspective: 10.21rem;
	-webkit-perspective: 10.21rem;
	height: 100%;
}
.page3 .top .slidebox .bd{
	width: 72.6%;
	margin: 0 auto;
	transform: rotate3d(1, 0, 0, 30deg);
	transform-style: preserve-3d;
	-webkit-transform: rotate3d(1, 0, 0, 30deg);
	-webkit-transform-style: preserve-3d;
	position: relative;
	height: 100%;
}
.page3 .top .slidebox ul{
	display: table;
	width: 100%;
	position: absolute;
	left: 0%;
	top: 110%;
}
.page3.active .top .slidebox ul{
	top: 5%;
	transition: all 5s 4s linear;
	-webkit-transition: all 5s 4s linear;
}
.page3 .top .slidebox ul li{
	display: table-row;
	width: 100%;
}
.page3 .top .slidebox ul li p{
	font-size: 1rem;
	color: #333;
	display: table-cell;
	width: 50%;
}
.page3 .top .slidebox ul li p:first-child{
	text-align: right;
}
.page3 .top .slidebox ul li p:last-child{
	text-align: left;
}
.page3 .top .slidebox ul li .miles{
	display: table-cell;
	vertical-align: middle;
	text-align: right;
	width: 50%;
	font-size: 1rem;
	color: #666;
	height: 1.5rem;
	padding-right: 0.3125rem;
}
.page3 .top .slidebox ul li .money{
	display: table-cell;
	vertical-align: middle;
	width: 50%;
	font-size: 1rem;
	color: #333;
	height: 1.5rem;
	padding-left: 0.3125rem;
}
.page3 .top .slidebox ul li .miles.fake,.page3 .top .slidebox ul li .money.fake{
	opacity: 0;
}
.page3 .middle{
	margin-bottom: 3.125rem;
	opacity: 0;
}
.page3.active .middle{
	opacity: 1;
	transition: all 1s 5s;
	-webkit-transition: all 1s 5s;
}
.page3 .middle img{
	width: 8.75rem;
}
.page3 .bottom{
	position: relative;
	margin-bottom: 2.1875rem;
}
.page3 .bottom .img{
	width: 10rem;
}
.page3.active .bottom .img{
	animation: pagethreebigsmall 2s infinite;
	-webkit-animation: pagethreebigsmall 2s infinite;
}
@keyframes pagethreebigsmall{
	0% {
		transform: scale(1,1);
	}
	50% {
		transform: scale(1.1,1.1);
	}
	100% {
		transform: scale(1,1);
	}
}
@-webkit-keyframes pagethreebigsmall{
	0% {
		-webkit-transform: scale(1,1);
	}
	50% {
		-webkit-transform: scale(1.1,1.1);
	}
	100% {
		-webkit-transform: scale(1,1);
	}
}
.page3 .bottom .text{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 4.8125rem;
}
.page3 .tip{
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 2.5rem;
	opacity: 0;
}
.page3.active .tip{
	opacity: 1;
	transition: all 1s 6s;
	-webkit-transition: all 1s 6s;
}
.page3 .tip .word{
	width: 10rem;
	display: block;
	margin: 0 auto 0.9375rem;
}
.page3 .tip .tri{
	width: 1.5625rem;
	display: block;
	margin: -0.25rem auto 0;
}
.page3.active .tip .tri.one{
	animation: pageonebtn 0.6s 0s infinite linear;
	-webkit-animation: pageonebtn 0.6s 0s infinite linear;
}
.page3.active .tip .tri.two{
	animation: pageonebtn 0.6s 0.15s infinite linear;
	-webkit-animation: pageonebtn 0.6s 0.15s infinite linear;
}
.page3.active .tip .tri.three{
	animation: pageonebtn 0.6s 0.3s infinite linear;
	-webkit-animation: pageonebtn 0.6s 0.3s infinite linear;
}
.page3 .pop-box .car{
	width: 11.6875rem;
	margin: 1.5625rem auto 0;
}




.page4{
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	-webkit-flex-direction: column;
}
.page4.active{
	opacity: 1;
	top: 0;
	z-index: 1;
	transition: all 1s;
	-webkit-transition: all 1s;
}
.page4 .top{
	width: 8.875rem;
	margin-bottom: 2.1875rem;
}
.page4 .img-box{
	width: 8.8125rem;
	margin-bottom: 1.5rem;
	position: relative;
	opacity: 0;
}
.page4.active .img-box{
	opacity: 1;
	transition: all 1s 1s;
	-webkit-transition: all 1s 1s;
}
.page4 .img-box img{
	width: 100%;
}
.page4 .img-box .cir1,.page4 .img-box .cir2,.page4 .img-box .cir3,.page4 .img-box .cir4,.page4 .img-box .cir5{
	position: absolute;
	left: 0;
	top: 0;
}
.page4.active .img-box .cir1,.page4.active .img-box .cir3,.page4.active .img-box .cir5{
	animation: pagefourcir 2s infinite linear;
	-webkit-animation: pagefourcir 2s infinite linear;
}
.page4.active .img-box .cir2,.page4.active .img-box .cir4{
	animation: pagefouranticir 2s infinite linear;
	-webkit-animation: pagefouranticir 2s infinite linear;
}
@keyframes pagefourcir{
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes pagefourcir{
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes pagefouranticir{
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}
@-webkit-keyframes pagefouranticir{
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(-360deg);
	}
}
.page4 .middle{
	font-size: 0;
	margin-bottom: 1.5rem;
	opacity: 0;
}
.page4.active .middle{
	opacity: 1;
	transition: all 1s 2s;
	-webkit-transition: all 1s 2s;
}
.page4 .middle a:nth-child(1){
	cursor: default;
}
.page4 .middle img{
	width: 8.75rem;
	margin: 0 0.5rem;
}
.page4 .bottom{
	width: 20.4375rem;
	height: 8.65625rem;
	margin-bottom: 2.1875rem;
	position: relative;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/page3_top_bg.png);
	overflow: hidden;
	opacity: 0;
}
.page4.active .bottom{
	opacity: 1;
	transition: all 1s 3s;
	-webkit-transition: all 1s 3s;
}
.page4 .bottom .line1{
	width: 5.09375rem;
	position: absolute;
	top: 0;
	left: 4.375rem;
	overflow: hidden;
}
.page4 .bottom .line1 img{
	width: 100%;
}
.page4 .bottom .line1 .cover{
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.page4.active .bottom .line1 .cover{
	left: 100%;
	transition: all 1s 4s;
	-webkit-transition: all 1s 4s;
}
.page4 .bottom .line2{
	width: 6.96875rem;
	position: absolute;
	bottom: 0;
	right: 0.4375rem;
	overflow: hidden;
}
.page4 .bottom .line2 img{
	width: 100%;
}
.page4 .bottom .line2 .cover{
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	right: 0;
	top: 0;
}
.page4.active .bottom .line2 .cover{
	right: 100%;
	transition: all 1s 4s;
	-webkit-transition: all 1s 4s;
}
.page4 .bottom .slidebox{
	perspective: 21.875rem;
	-webkit-perspective: 21.875rem;
	margin-top: -1rem;
	height: 100%;
}
.page4 .bottom .slidebox .bd{
	width: 72.6%;
	margin: 0 auto;
	transform: rotate3d(1, 0, 0, 45deg);
	transform-style: preserve-3d;
	-webkit-transform: rotate3d(1, 0, 0, 45deg);
	-webkit-transform-style: preserve-3d;
	position: relative;
	height: 100%;
}
.page4 .bottom .slidebox ul{
	display: table;
	width: 100%;
	position: absolute;
	left: 0;
	top: 122%;
}
.page4.active .bottom .slidebox ul{
	top: -107%;
	transition: all 5s 5s linear;
	-webkit-transition: all 5s 5s linear;
}
.page4 .bottom .slidebox ul li{
	display: table-row;
	width: 100%;
}
.page4 .bottom .slidebox ul li p{
	font-size: 1rem;
	color: #333;
	display: table-cell;
	width: 50%;
}
.page4 .bottom .slidebox ul li p:first-child{
	text-align: right;
}
.page4 .bottom .slidebox ul li p:last-child{
	text-align: left;
}
.page4 .bottom .slidebox ul li .miles{
	display: table-cell;
	vertical-align: middle;
	text-align: right;
	width: 50%;
	font-size: 1.25rem;
	color: #666;
	height: 1.8rem;
	padding-right: 0.3125rem;
}
.page4 .bottom .slidebox ul li .money{
	display: table-cell;
	vertical-align: middle;
	width: 50%;
	font-size: 1.25rem;
	color: #333;
	height: 1.8rem;
	padding-left: 0.3125rem;
}
.page4 .bottom .slidebox ul li .money.red{
	color: #c90302;
}
.page4 .openframe{
	font-size: 0.875rem;
	color: #c90302;
}
.page4 .openframe span{
	text-decoration: underline;
}
.page4 .openframe img{
	width: 1.125rem;
	vertical-align: text-bottom;
	margin-right: 0.3125rem;
}
.iframe-cover{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	background-color: rgba(0,0,0,0.8);
	display: none;
	-webkit-display: none;
}
.iframe-cover.active{
	display: flex;
	-webkit-display: flex;
}
.iframe-cover .iframe-box{
	background-color: #fff;
	width: 86.67%;
	height: 75%;
	position: relative;
}
.iframe-cover .iframe-box .close{
	width: 1.0625rem;
	height: 1.0625rem;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(../images/iframe_close.png);
	position: absolute;
	right: 0.625rem;
	top: 0.625rem;
}
.logo{
	position:fixed;
	left: 50%;
	top: 50%;
	width: 109px;
	margin-left: -54.5px;
	margin-top:-50px;
	opacity: 0;
	z-index:100;
	transition: all 1s;
	-webkit-transition: all 1s;
}
.logo.active{
	opacity: 1;
}
.bg_zz{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background-color:#fff; z-index:99;
}
.bg_zz.active{
	transition: all 1s;
	-webkit-transition: all 1s;
	opacity: 0;
	z-index: -1;
}
@media screen and (max-width:768px){
}