
@import url("reset.min.css");
@import url("hover.css");
body {
	background:url(../images/index-bj.jpg) center center no-repeat; background-size:cover;
	overflow: hidden; position:relative;
}

canvas {
	display: block;
}


/*大屏幕*/
.g-index{ width:100%; height:100%; position:relative;}
.m-left-door{ width:50%; height:100%; position:absolute; top:0; left:0; z-index:9; background:url(../images/left-door.jpg) right center no-repeat;

animation:myMoveLeft 3s ease-out 0s 1 alternate forwards;
-webkit-animation:myMoveLeft 3s ease-out 0s 1 alternate forwards;
-moz-animation:myMoveLeft 3s ease-out 0s 1 alternate forwards;
-ms-animation:myMoveLeft 3s ease-out 0s 1 alternate forwards;
-o-animation:myMoveLeft 3s ease-out 0s 1 alternate forwards;

animation-delay:4s;
-webkit-animation-delay:4s;
-moz-animation-delay:4s;
-ms-animation-delay:4s;
-o-animation-delay:4s;}

.m-right-door{ width:50%; height:100%; position:absolute; top:0; right:0; z-index:9; background:url(../images/right-door.jpg) left center no-repeat;

animation:myMoveRight 3s ease-out 0s 1 alternate forwards;
-webkit-animation:myMoveRight 3s ease-out 0s 1 alternate forwards;
-moz-animation:myMoveRight 3s ease-out 0s 1 alternate forwards;
-ms-animation:myMoveRight 3s ease-out 0s 1 alternate forwards;
-o-animation:myMoveRight 3s ease-out 0s 1 alternate forwards;

animation-delay:4s;
-webkit-animation-delay:4s;
-moz-animation-delay:4s;
-ms-animation-delay:4s;
-o-animation-delay:4s;}


.m-left-dl{ width:58px; height:0; position:absolute; top:50%; right:35%; margin-top:-200px; z-index:99; opacity:0;}
.m-right-dl{ width:58px; height:0; position:absolute; top:50%; left:35%; margin-top:-200px; z-index:99; opacity:0;}


.f-enter{ width:130px; height:380px; text-align:center; position:absolute; left:50%; top:50%; margin-left:-65px; margin-top:-190px; z-index:999999;}

.m-enter-logo{ width:75px; height:0px; margin:0 auto; opacity:0;}
.m-enter-icon{ width:0; height:35px; margin:35px auto 0; opacity:0;}








/*小屏幕*/
@media screen and (max-height: 850px){
.g-index{ width:100%; height:100%; position:relative;}
.m-left-door{ width:50%; height:100%; position:absolute; top:0; left:0; z-index:9; background:url(../images/left-door.jpg) right center no-repeat;

animation:myMoveLeft 3s ease-out 0s 1 alternate forwards;
-webkit-animation:myMoveLeft 3s ease-out 0s 1 alternate forwards;
-moz-animation:myMoveLeft 3s ease-out 0s 1 alternate forwards;
-ms-animation:myMoveLeft 3s ease-out 0s 1 alternate forwards;
-o-animation:myMoveLeft 3s ease-out 0s 1 alternate forwards;

animation-delay:4s;
-webkit-animation-delay:4s;
-moz-animation-delay:4s;
-ms-animation-delay:4s;
-o-animation-delay:4s;}

.m-right-door{ width:50%; height:100%; position:absolute; top:0; right:0; z-index:9; background:url(../images/right-door.jpg) left center no-repeat;

animation:myMoveRight 3s ease-out 0s 1 alternate forwards;
-webkit-animation:myMoveRight 3s ease-out 0s 1 alternate forwards;
-moz-animation:myMoveRight 3s ease-out 0s 1 alternate forwards;
-ms-animation:myMoveRight 3s ease-out 0s 1 alternate forwards;
-o-animation:myMoveRight 3s ease-out 0s 1 alternate forwards;

animation-delay:4s;
-webkit-animation-delay:4s;
-moz-animation-delay:4s;
-ms-animation-delay:4s;
-o-animation-delay:4s;}


.m-left-dl{ width:58px; height:0; position:absolute; top:50%; right:40%; margin-top:-250px; z-index:99; opacity:0;}
.m-right-dl{ width:58px; height:0; position:absolute; top:50%; left:40%; margin-top:-250px; z-index:99; opacity:0;}


.f-enter{ width:130px; height:380px; text-align:center; position:absolute; left:50%; top:50%; margin-left:-65px; margin-top:-190px; z-index:999999;}

.m-enter-logo{ width:75px; height:0px; margin:0 auto; opacity:0;}
.m-enter-icon{ width:0; height:35px; margin:35px auto 0; opacity:0;}
}
















/*大屏幕向左移动*/
@keyframes myMoveLeft
{
from {left:0px;}
to {left:-130px;}
}

@-webkit-keyframes myMoveLeft 
{
from {left:0px;}
to {left:-130px;}
}
@-moz-keyframes myMoveLeft 
{
from {left:0px;}
to {left:-130px;}
}
@-ms-keyframes myMoveLeft 
{
from {left:0px;}
to {left:-130px;}
}
@-o-keyframes myMoveLeft 
{
from {left:0px;}
to {left:-130px;}
}

/*大屏幕向右移动*/
@keyframes myMoveRight
{
from {right:0px;}
to {right:-130px;}
}

@-webkit-keyframes myMoveRight 
{
from {right:0px;}
to {right:-130px;}
}
@-moz-keyframes myMoveRight 
{
from {right:0px;}
to {right:-130px;}
}
@-ms-keyframes myMoveRight 
{
from {right:0px;}
to {right:-130px;}
}
@-o-keyframes myMoveRight 
{
from {right:0px;}
to {right:-130px;}
}



/*小屏幕向左移动*/
@keyframes myMoveLeftSmall
{
from {left:0px;}
to {left:-560px;}
}

@-webkit-keyframes myMoveLeftSmall 
{
from {left:0px;}
to {left:-560px;}
}
@-moz-keyframes myMoveLeftSmall 
{
from {left:0px;}
to {left:-560px;}
}
@-ms-keyframes myMoveLeftSmall 
{
from {left:0px;}
to {left:-560px;}
}
@-o-keyframes myMoveLeftSmall 
{
from {left:0px;}
to {left:-560px;}
}

/*小屏幕向右移动*/
@keyframes myMoveRightSmall
{
from {right:0px;}
to {right:-560px;}
}

@-webkit-keyframes myMoveRightSmall 
{
from {right:0px;}
to {right:-560px;}
}
@-moz-keyframes myMoveRightSmall 
{
from {right:0px;}
to {right:-560px;}
}
@-ms-keyframes myMoveRightSmall 
{
from {right:0px;}
to {right:-560px;}
}
@-o-keyframes myMoveRightSmall 
{
from {right:0px;}
to {right:-560px;}
}


.f-skip{
	position: fixed;
	right: 30px;
	top: 30px;
	width: 70px;
	height: 70px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	z-index: 1000;
}
.m-skip:after{
	width: 70px;
	height: 70px;
	box-sizing: border-box;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 50%;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-name: intervalHamburgerBorder;
	animation-name: intervalHamburgerBorder;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
@-webkit-keyframes intervalHamburgerBorder {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@-moz-keyframes intervalHamburgerBorder {
	0% {
		opacity: 1;
		-moz-transform: scale(1);
		transform: scale(1);
	}
	100% {
		opacity: 0;
		-moz-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@-ms-keyframes intervalHamburgerBorder {
	0% {
		opacity: 1;
		-ms-transform: scale(1);
		transform: scale(1);
	}
	100% {
		opacity: 0;
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
}
@keyframes intervalHamburgerBorder {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}
.skip-yuan{width: 80px; height: 80px; background:#fce0b7;position: relative; transform: scale(0.7); position: absolute; left:-5px; top:-5px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;}
.skip-yuan2{width: 60px; height: 60px; line-height:60px; text-align:center; position: absolute; left: 10px; top: 10px; font-size:18px; color:#7e4919; background:#fad193; 
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;}

.skip-yuan2 a{ font-size:18px; color:#7e4919;}