﻿@charset "utf-8";
*{margin:0; padding:0; list-style:none}
*:not(input):not(textarea) {
	-webkit-user-select:none;/* 禁用选择复制 */
	-webkit-touch-callout:none;/* 禁用系统默认菜单 */
} 
html{
	-webkit-tap-highlight-color:rgba(0,0,0,0);/* 禁止点选高亮显示 */
	-webkit-overflow-scrolling:touch;/* 局部滚动 */
}
.cube{
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);/* 开启硬件加速 */
}
.wow{visibility: hidden;}
.none{display:none;}

body{
	width:100%;
	*cursor:default;
	font:14px/1.5 Helvetica,sans-serif;
	color:#333;
	background:#fff;
}

#pageContain{
	overflow:hidden;
	display:none;
}
.page{
	width:100%;
	height:100%;
	overflow:hidden;
	position:absolute;
	/*top:0;
	left:0;*/
}
.contain{
	display:none;
	width:100%;
	height:100%;
	overflow:hidden;
	position:relative;
}
.contain ul {position:absolute; width:100%; height:100%; margin:0; padding:0;}
.contain ul li img{position:absolute; z-index:10;}
.contain ol img{position:absolute; z-index:10;}
.current .contain,.slide .contain{
	display:block;
}
.current {
	display:block;
	z-index:1;
}
.slide {
	display:block;
	z-index:2;
}
.swipe {
	display:block;
	z-index:3;
	transition-duration:0ms !important;
	-webkit-transition-duration:0ms !important;
}

/* 页面导航 */
/*#navBar {
	z-index:3;
	position:absolute;
	top:10%;
	right:3%;
}
#navBar .active {
	background:#ccc;
}
#navBar li {
	cursor:pointer;
	margin-bottom:10px;
	transition:all .7s ease;
	border-radius:50%;
	line-height:0.3rem;
	text-align:center;
	width:0.3rem;
	height:0.3rem;
}

#prev,#next {
	z-index:4;
	text-align: center;
	line-height:1rem;
	position: absolute;
	width:1rem;
	height:1rem;
	top:50%;
	cursor:pointer;
	margin-top:-0.5rem;
	font-size:1rem;
	color:rgba(255,255,255,0.5);
}
#prev {
	left:0
}
#next {
	right:0
}*/

/* 页面加载 */
#loading{position:absolute; width:100%; height:100%; background:#fff url("../images/loading.gif") no-repeat 50% 50%; z-index:10000; display:none;}

/* 音乐标志 */
#music_btn{position:fixed; width:0.5rem; height:0.5rem; top:0.1rem; right:0.1rem; z-index:9999; cursor:pointer; display:none;
	-webkit-animation:music_dh 10s linear 0s infinite;
	animation:music_dh 10s linear 0s infinite;
}
@-webkit-keyframes music_dh{
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
@keyframes music_dh{
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
.music_on{
	background:url(../images/m_play.png) no-repeat 50%;
	background-size:100% 100%;
}
.music_off{
	background:url(../images/m_pause.png) no-repeat 50%;
	background-size:100% 100%;
}

/* 箭头 */
.arrow_up {position:fixed; background-image:url("../images/arrow_u.png"); background-size:100%; bottom:0.2rem; left:50%; width:0.5rem; height:0.25rem; z-index:9999;
-webkit-transform:translateX(-50%);
transform:translateX(-50%);
-webkit-animation:arrow_up 1s linear 0s infinite alternate;
animation:arrow_up 1s linear 0s infinite alternate;
}
@-webkit-keyframes arrow_up {
from {bottom:0.1rem;}
to {bottom:0.3rem;}
}
@keyframes arrow_up {
from {bottom:0.1rem;}
to {bottom:0.3rem;}
}

.arrow_d{
	display:none;
	position:absolute;
	top:3.6rem;
	left:50%;
	transform:translateX(-50%);
	width:2.74rem; 
	height:0.32rem;
	background-image:url("../images/arrow_d.png"); 
	background-size:100% 100%;
	z-index:100;
	-webkit-animation:arrow_d 1s linear 0s infinite alternate;
	animation:arrow_d 1s linear 0s infinite alternate;
}
@-webkit-keyframes arrow_d {
from {top:3.6rem;}
to {top:3.8rem;}
}
@keyframes arrow_d {
from {top:3.6rem;}
to {top:3.8rem;}
}

/* 页面背景 */
.page1{background:url(../images/001.jpg) no-repeat 50%;}
.page2,.page3,.page4,.page5,.page6,.page7,.page8,.page9{background:url(../images/002.jpg) no-repeat 50%;}
.page1,.page2,.page3,.page4,.page5,.page6,.page7,.page8,.page9{
-webkit-background-size:cover;
-moz-background-size:cover;
-ms-background-size:cover;
-o-background-size:cover;
background-size:cover;
}
/* .page1,.page2,.page3,.page4,.page5,.page6,.page7,.page8,.page9{
filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale')";
-webkit-background-size:100% 100%;
-moz-background-size:100% 100%;
-ms-background-size:100% 100%;
-o-background-size:100% 100%;
background-size:100% 100%;
} */

/* 自适应框架（设计图宽度） */
body {
	max-width:7.5rem;
	margin:0 auto;
}
body * {
	max-width:7.5rem;
}

/* 启动页 */
#index{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:99;
	/* background:url(../images/000.jpg) no-repeat 50%;
	background-size:cover; */
	display:none; 
}
#index img{position:absolute;}

#pop{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	overflow:hidden;
	overflow-y:auto;
	z-index:99;
	background:url(../images/003.jpg) no-repeat 50%;
	background-size:100% 100%;
	display:none;
}
.pop{
	position:absolute;
	width:100%;
	height:100%;
	display:none;
}
.pop img{position:absolute;}
.on{display:block;}

.pop1{height:47.2rem;}
.pop2{height:26.9rem;}
.pop3{height:35rem;}
.pop4{height:32.3rem;}
.pop5{height:48.2rem;}
.pop6{height:22.7rem;}
.pop7{height:31.5rem;}
.pop8{height:39.3rem;}
.pop9{height:16.5rem;}

#pop_iframe{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:100;
	background:rgba(0, 0, 0, 0.7);
	overflow:hidden;
	display:none;
}
#pop_iframe i{
	position:absolute;
	top:0.3rem;
	left:50%;
	transform:translateX(-50%);
	width:0.7rem;
	height:0.7rem;
	background:url(../images/close.png) no-repeat 50%;
	background-size:100% 100%;
	cursor:pointer;
}
#pop_iframe iframe{
	position:absolute;
	top:10%;
	left:0;
	width:100%;
	height:90%;
}

/*微信分享*/
#mcover{
display:none;
position:fixed;
width:100%;
height:100%;
background:rgba(0, 0, 0, 0.7);
z-index:10000;
}
#mcover img{
position:fixed;
top:0.1rem;
width:100%;
height:auto;
z-index:10001;
}
.wx_btn{position:relative; z-index:9999; cursor:pointer;}

.btn_go,.btn_next,.btn_back,.btn_end{cursor:pointer;}

/* 移动端自适应 */
/* iphoneX */
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
	.contain{
		position:absolute;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		height:11.83rem;
	}
}
/* iphoneXS MAX */
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) {
	.contain{
		position:absolute;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		height:11.83rem;
	}
}
/* iphoneXR */
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
	.contain{
		position:absolute;
		top:50%;
		left:50%;
		transform:translate(-50%,-50%);
		height:11.83rem;
	}
}

