html{
	width: 100%;
	height: 100%;
}
body{
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}
.container{
	width: 100%;
	max-width: 750px;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	background-color: #000;
	background: -webkit-linear-gradient(left bottom, #19153e , #3d2d53); /* Safari 5.1 - 6.0 */
	background: -ms-linear-gradient(left bottom, #19153e , #3d2d53);
    background: -o-linear-gradient(left bottom, #19153e , #3d2d53); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(left bottom, #19153e , #3d2d53); /* Firefox 3.6 - 15 */
    background: linear-gradient(left bottom, #19153e , #3d2d53); /* 标准的语法 */
}
.mask_screen{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #000;
	background: -webkit-linear-gradient(left bottom, #19153e , #3d2d53); /* Safari 5.1 - 6.0 */
	background: -ms-linear-gradient(left bottom, #19153e , #3d2d53);
    background: -o-linear-gradient(left bottom, #19153e , #3d2d53); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(left bottom, #19153e , #3d2d53); /* Firefox 3.6 - 15 */
    background: linear-gradient(left bottom, #19153e , #3d2d53); /* 标准的语法 */
   z-index: 999;
   display: none;
}
.mask_screen h2{
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	text-align: center;
	font-size: 6.0rem;
	color: #FFFFFF;
}
#layaContainer{
	width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    top: -10%;
    z-index: 9;
}
/*loading样式开始*/
.load{
	width: 192px;
	height: 192px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -96px;
	margin-top: -96px;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	perspective: 600;
	-webkit-perspective: 600;
	perspective-origin: center center;
	-webkit-perspective-origin: center center;
	/*display: none;*/
}
.load_con{
	width: 100%;
	height: 100%;
	transform: rotatex(0deg) rotateY(0deg) rotateZ(0deg);
	-webkit-transform: rotatex(0deg) rotateY(0deg) rotateZ(0deg);
}
.radian{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border-top: 5px solid #6143b1;
	position: absolute;
	left: 0;
	top: 0;
	animation: turn 1s infinite;
	-webkit-animation: turn 1s infinite;
}
.circle{
	width: 182px;
	height: 182px;
	border: 2px solid #6143b1;
	border-radius: 50%;
	position: absolute;
	left: 5px;
	top: 5px;
}
@keyframes turn{
	from{transform: rotate(0deg);}
	to{transform: rotate(360deg);}
}
@-webkit-keyframes turn{
	from{-webkit-transform: rotate(0deg);}
	to{-webkit-transform: rotate(360deg);}
}
.loadImg{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -50%;
	margin-top: -50%;
	background: url(../images/logo_D.png) center no-repeat;
	transform: rotatex(0deg) rotateY(0deg) rotateZ(0deg) translateX(0px) translateY(0px);
	-webkit-transform: rotatex(0deg) rotateY(0deg) rotateZ(0deg) translateX(0px) translateY(0px);
}
/*loading样式结束*/

.logo_digitalsky{
	width: 34%;
	position: absolute;
	left: 5%;
	top: 3%;
	z-index: 99;
}
.text_digitalsky{
	width: 100%;
	padding: 0 7%;
	text-align: center;
	font-family: arial;
	font-size: 1.4rem;
	color: rgba(255,255,255,0.5);
	position: absolute;
	left: 0;
	bottom: 3%;
	z-index: 99;
}
.text_digitalsky a{ 
	color: rgba(255,255,255,0.5); 
  } 
.text_digitalsky a i{ 
	display: inline-block; 
	width: 8px; 
	height: 8px; 
	margin-right: 1px; 
	background: url(../images/icon-police.png) ; 
	background-size: cover;
	vertical-align: middle; 
	margin-top: -2px; 
} 
/*显示/隐藏菜单的按钮样式开始*/
.menu_button{
	width: 21px;
	height: 21px;
	position: absolute;
	right: 5%;
	top: 3%;
	z-index: 99;
	cursor: pointer;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	/*display: none;*/
}
.menu_button span{
	width: 100%;
	height: 0px;
	opacity: 0;
	background-color: #9a92a4;
	border-radius: 1px;
	position: absolute;
	left: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.menu_button div{
	width:30px;
	height:30px;
	-webkit-transition: all 0.5s;
}
.menu_button div img{
	width:30px;
	height:30px;
}
.menu_top{
	top: 0;
}
.menu_middle{
	top: 10px;
}
.menu_bottom{
	top: 20px;
}
.menu_button.active .menu_top{
	top: 10px;
	opacity: 1;
	height: 4px;
	background-color: #FFFFFF;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.menu_button.active .menu_middle{
	opacity: 0;
}
.menu_button.active .menu_bottom{
	height: 4px;
	opacity: 1;
	top: 10px;
	background-color: #FFFFFF;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.menu_button.active div{
	opacity: 0
}
/*显示/隐藏菜单的按钮样式结束*/

.menu_overlay{
	width: 100%;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #525a90;
	z-index: 98;
	overflow: hidden;
	transition: height 0.5s ease;
	-webkit-transition: height 0.5s ease;
}
.menu_overlay.open{
	height: 100%;
}
.menu_con{
	width: 100%;
	position: absolute;
	left: 0;
	top: 46%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
}
.main_nav{
	width: 100%;
	padding: 0 10%;
}
.main_nav a{
	width: 100%;
	color: #ffffff;
	white-space:nowrap;
	padding: 3% 0;
	opacity: 0;
}
.main_nav strong{
	width: 75%;
	display: inline-block;
	font-family: "arial black";
	font-size: 5.2rem;
	text-transform: uppercase;
	transition: transform 1s;
	-webkit-transition: transform 1s;
}
.main_nav span{
	width: 25%;
	display: inline-block;
	font-family: "微软雅黑";
	font-weight: bold;
	font-size: 2.4rem;
}
@keyframes fadeInRight {
	0% {
		opacity:0;
		transform:translateX(1000px)
	}
	100% {
		opacity:1;
		transform:translateX(0)
	}
}
@-webkit-keyframes fadeInRight {
	0% {
		opacity:0;
		-webkit-transform:translateX(1000px)
	}
	100% {
		opacity:1;
		-webkit-transform:translateX(0)
	}
}
.menu_overlay.open .main_nav a:nth-of-type(1){
	animation-delay: 0.45s;
	-webkit-animation-delay: 0.45s;
}
.menu_overlay.open .main_nav a:nth-of-type(2){
	animation-delay: 0.50s;
	-webkit-animation-delay: 0.50s;
}
.menu_overlay.open .main_nav a:nth-of-type(3){
	animation-delay: 0.55s;
	-webkit-animation-delay: 0.55s;
}
.social_nav{
	text-align: center;
	margin-top: 10%;
}
.social_nav a{
	width: 15.6%;
	border-radius: 50%;
	margin: 0 8%;
	opacity: 0;
}
.social_nav img{
	/*width: 100%;*/ 
	/*border: 1px solid yellow; position: relative;z-index: 9;*/
}
.menu_overlay.open .social_nav a:nth-of-type(1) {
    animation-delay: 1.0s;
}
.menu_overlay.open .social_nav a:nth-of-type(2) {
    animation-delay: 1.2s;
}
.menu_overlay.open .social_nav a:nth-of-type(3) {
    animation-delay: 1.4s;
}

.menu_overlay.open .main_nav a,.menu_overlay.open .social_nav a{
	animation: fadeInRight 0.5s ease forwards;
	-webkit-animation: fadeInRight 0.5s ease forwards;
}

/*首页样式开始*/
.one_bg{
	background: url(../images/bg_1.jpg) center no-repeat;
	background-size: cover;
}
.one_theme{
	position: relative;
	top: 30%;
}
/*导航块样式开始*/
.nav{
	width: 100%;
	position: absolute;
	left: 0%;
	bottom: 20%;
	z-index: 8;
	text-align: center;
	display: none;
}
.nav_item{
	width: 23%;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	margin: 0 4%;
	/*opacity: 0;*/
}
.nav_item:nth-child(1){
	transition: opacity .5s linear 0s;
	-webkit-transition: opacity .5s linear 0s;
}
.nav_item:nth-child(2){
	transition: opacity .5s linear 0.5s;
	-webkit-transition: opacity .5s linear 0.5s;
}
.nav_item:nth-child(3){
	transition: opacity .5s linear 1s;
	-webkit-transition: opacity .5s linear 1s;
}
/*导航块样式结束*/
/*首页样式结束*/


/*关于我们样式开始*/
.our_item, .game_itme{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	visibility: hidden;
}
.our_item.active, .game_itme.active{
	z-index: 9;
	visibility: visible;
}
.our_item_bg{
	width: 100%;
	height: 100%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	transform: scale(1.2);
    -webkit-transform: scale(1.2);
	transition: opacity 1s,transform 4s;
	-webkit-transition: opacity 1s,transform 4s;
}
.about_bg{
	background: url(../images/bg_2.jpg) center no-repeat;
	background-size: cover;
}

.our_item_theme{
	width: 80%;
	opacity: 0;
	transform: scale(0.8);
	-webkit-transform: scale(0.8);
	transition: all 1s linear .5s;
	-webkit-transition: all 1s linear .5s;
	margin: 0 auto;
}
.our_middle{
	width: 100%; 
	position: absolute; 
	left: 0; 
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
}
.our_item_txt{
	width: 90%;
	margin: 0 auto;
	padding-bottom: 10%;
	/*position: absolute;
	left: 5%;
	top: 5%;*/
	color: #ffffff;
}
.our_item_til{
	font-family: "arial black";
	font-size: 6.0rem;
	opacity: 0;
	transition: all .5s linear 1s;
	-webkit-transition: all .5s linear 1s;
}
.our_item_p{
	width: 100%;
	font-family: "黑体";
	font-size: 2.6rem;
	line-height:20px;
	opacity: 0;
	transition: all .5s ease-in-out 1.5s;
	-webkit-transition: all .5s ease-in-out 1.5s;
}
.our_item_menu{
	/*position: absolute;
	left: 50%;
	bottom: 8%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);*/
}
.about_menu{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.our_item_menu_item{
	width: 30%;
	/*height: 30px;
	line-height: 30px;*/
	padding: 3% 0;
	margin-top: 5%;
	text-align: center;
	color: #FFFFFF;
	background-color: #8693f7;
	border-radius: 20px;
	opacity: 0;
	font-size: 3.0rem;
}
.our_item_menu_item1{
	transition: opacity .5s linear 2s;
	-webkit-transition: opacity .5s linear 2s;
}
.our_item_menu_item2{
	transition: opacity .5s linear 2.5s;
	-webkit-transition: opacity .5s linear 2.5s;
	margin-left: 5px;
	margin-right: 5px;
}
.our_item_menu_item3{
	transition: opacity .5s linear 3.0s;
	-webkit-transition: opacity .5s linear 3.0s;
}
.our_item_menu_item4{
	transition: opacity .5s linear 3.5s;
	-webkit-transition: opacity .5s linear 3.5s;
}
.our_item.active > .our_item_bg, .game_itme.active .our_item_bg,.history_item.active .our_item_bg{
	opacity: 1;
	transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
}
.our_item.active > .our_item_theme, .game_itme.active .our_item_theme, .our_item.active .our_item_menu_item{
	opacity: 1;
	transform: scale(1);
	-webkit-transform: scale(1);
}
.our_item.active > .our_middle > .our_item_txt > .our_item_til, 
.our_item.active > .our_middle > .our_item_txt > .our_item_p,
.game_itme.active .our_item_til,
.game_itme.active .our_item_p{
	opacity: 1;
	transform: translate(0,5%);
	-webkit-transform: translate(0,5%);
	-ms-transform: translate(0,5%);
}
/*关于我们样式结束*/

/*公司历程样式开始*/
.history, .life, .contact{
	width: 100%;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 9;
    /*transform: translate(100%,0);
    -webkit-transform: translate(100%,0);*/
}
.history_circle{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	border-radius: 50%;
}
.history_con{
	width: 100%;
	height: 100%;
	background-color: #000;
    background: -webkit-linear-gradient(left bottom, #19153e , #3d2d53);
    background: -ms-linear-gradient(left bottom, #19153e , #3d2d53);
    background: -o-linear-gradient(left bottom, #19153e , #3d2d53);
    background: -moz-linear-gradient(left bottom, #19153e , #3d2d53);
    background: linear-gradient(left bottom, #19153e , #3d2d53);
}
.history_item{
	width: 100%;
	height: 100%;
	text-align: center;
	color: #FFFFFF;
	position: absolute;
	left: 0;
	top: 0;
}

.history_time{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: scale(0.5);
	-webkit-transform: scale(0.5);
	opacity: 0;
	transition: all 1s;
	-webkit-transition: all 1s;
}
.history_item1 .history_bg{
	background: url(../images/history/history_bg1.jpg) center no-repeat;
	background-size: cover;
}
.history_item2 .history_bg{
	background: url(../images/history/history_bg2.jpg) center no-repeat;
	background-size: cover;
}
.history_item3 .history_bg{
	background: url(../images/history/history_bg3.jpg) center no-repeat;
	background-size: cover;
}
.history_item4 .history_bg{
	background: url(../images/history/history_bg4.jpg) center no-repeat;
	background-size: cover;
}
.history_item5 .history_bg{
	background: url(../images/history/history_bg5.jpg) center no-repeat;
	background-size: cover;
}
.history_item1 .history_time{
	background: url(../images/history/year_1.png) center no-repeat;
	background-size: 90% auto;
}
.history_item2 .history_time{
	background: url(../images/history/year_2.png) center no-repeat;
	background-size: 90% auto;
}
.history_item3 .history_time{
	background: url(../images/history/year_3.png) center no-repeat;
	background-size: 90% auto;
}
.history_item4 .history_time{
	background: url(../images/history/year_4.png) center no-repeat;
	background-size: 90% auto;
}
.history_item5 .history_time{
	background: url(../images/history/year_5.png) center no-repeat;
	background-size: 90% auto;
}
.history_txt{
	width: 100%;
	/*height: 90px;*/
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-webkit-perspective:400;
    -webkit-perspective-origin:50% 50%;
}
.history_line_top,.history_line_bottom{
	width: 0;
	height: 1px;
	opacity: 0.5;
	background-color: #9a98aa;
	position: absolute;
	transition: all 1s ease .5s;
	-webkit-transition: all 1s ease .5s;
}
.history_line_top{
	top: 0;
	left: 15%;
}
.history_line_bottom{
	right: 15%;
	bottom: 0;
}
.history_txt h3{
	width: 100%;
	/*line-height: 70px;*/
	font-weight: normal;
	font-size: 4.8rem;
	position: absolute;
	top: -50px;
	opacity: 0;
	transition: all .5s ease 2s;
	-webkit-transition: all .5s ease 2s;
}
.history_txt h2{
	width: 100%;
	/*line-height: 90px;*/
	font-size: 6.4rem;
	opacity: 0;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform: rotateX(90deg);
	-webkit-transform: rotateX(90deg);
	transition: all 1s ease 1.2s;
	-webkit-transition: all 1s ease 1.2s;
}
.history_txt p{
	width: 100%;
	/*line-height: 30px;*/
	font-size: 2.4rem;
	position: absolute;
	/*top: 70px;*/
	opacity: 0;
	transition: all .5s ease 2s;
	-webkit-transition: all .5s ease 2s;
}
.history_item.active .history_time{
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}
.history_item.active .history_line_top,.history_item.active .history_line_bottom{
	width: 70%;
}
.history_item.active .history_txt h3{
	top: -120%;
	opacity: 1;
}
.history_item.active .history_txt h2{
	transform: skewX(0deg);
	-webkit-transform: skewX(0deg);
	opacity: 1;
}
.history_item.active .history_txt p{
	top: 150%;
	opacity: 1;
}
.history_page {
	bottom: 15% !important;
}
.history_page .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 1px;
    position: relative;
    background: transparent;
}
.swiper-pagination-bullet-active:before {
    content: "";
    width: 4px;
	height: 4px;
	position: absolute;
	left: 1px;
	top: 1px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.5);
}
.btn_return{
	width: 8%;
	position: absolute;
	left: 5%;
	top: 3%;
	z-index: 9;
}

svg.p_c{
	width: 100%;
	position: absolute;
	left:0;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
}
svg.p_c circle{
	fill: none;
	stroke: rgba(255,255,255,0.2);
	stroke-width: 1px;
}
.g1{
	transform: rotate(90deg);
	transform-origin: center;
}
.g2{
	transform: rotate(180deg);
	transform-origin: center;
}
/*公司历程样式结束*/

/*数天生活样式开始*/
.life,.contact{
	background: url(../images/life/life_bg.jpg) center no-repeat;
	background-size: cover;
}
.life .life_yg,.life .life_hj{
	width: 94%;
	height: 100%;
	position: absolute;
	left: 3%;
	top: 0%;
	opacity: 0;
	transform: scale(0);
	-webkit-transform: scale(0);
	transition: all 0.5s;
	
}
.life .swiper-container.active{
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}
.swiper_item{
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	background-color: rgba(0,0,0,0.4);
}
.swiper_item p{
	font-size: 2.4rem;
	color: #FFFFFF;
	padding: 3% 1%;
}
.nav_life{
	width: 8%;
    position: absolute;
    top: 3%;
    z-index: 9;
}
.nav_life img{
	visibility: hidden;
}
.btn_life_yg{
	left: 15%;
	background: url(../images/life/nav_life1.png) top left no-repeat;
	background-size: 225% 100%;
}
.btn_life_hj{
	left: 25%;
	background: url(../images/life/nav_life2.png) top left no-repeat;
	background-size: 225% 100%;
}
.btn_life_yg.active{
	background: url(../images/life/nav_life1.png) top right no-repeat;
	background-size: 225% 100%;
}
.btn_life_hj.active{
	background: url(../images/life/nav_life2.png) top right no-repeat;
	background-size: 225% 100%;
}

/*数天生活样式结束*/

/*联系我们样式开始*/
.contact{
}
.contact_con{
	width: 94%;
	height: 40%;
	position: absolute;
	left: 3%;
	top: 30%;
	background-color: rgba(0,0,0,0.4);
}
.contact_title{
	width: 100%;
	text-align: center;
	padding: 5% 0;
	font-size: 4.8rem;
	color: #FFFFFF;
}
.contact_info{
	width: 100%;
	margin: 5% 0;
	color: #cccccc;
	text-align: center;
}
.contact_address{
	width: 100%;
	/*height: 45px;
	line-height: 45px;*/
	font-size: 2.4rem;
	/*padding-left: 56px;
	margin-bottom: 20px;*/
	padding-bottom: 3%;
}
.contact_address .contact_tag{
	background: url(../images/tag.png) left top no-repeat;
	background-size: 100% 400%;
	
}
.contact_info span{
	/*height: 45px;
	line-height: 45px;
	padding-left: 50px;*/
	font-size: 2.0rem;
	display: inline-block;
    /*margin-right: 15px;*/
}
.contact_tag{
	width: 6.5%;
	display: inline-block;
}
.contact_tag img{
	visibility: hidden;
}
.contact_letter .contact_tag{
	width: 30%;
	background: url(../images/tag.png) no-repeat;
	background-position: 0 35%;
	background-size: 100% 400%;
}
.contact_phone .contact_tag{
	width: 20%;
	background: url(../images/tag.png) no-repeat;
	background-position: 0 68%;
	background-size: 100% 400%;
}
.contact_mail .contact_tag{
	width: 18%;
	background: url(../images/tag.png) no-repeat;
	background-position: 0 100%;
	background-size: 100% 400%;
}
/*联系我们样式结束*/

/*我们的游戏样式开始*/
.about,.products{
	width: 100%;
    height: 100%;
    background-color: #000;
    background: -webkit-linear-gradient(left bottom, #19153e , #3d2d53);
    background: -ms-linear-gradient(left bottom, #19153e , #3d2d53);
    background: -o-linear-gradient(left bottom, #19153e , #3d2d53);
    background: -moz-linear-gradient(left bottom, #19153e , #3d2d53);
    background: linear-gradient(left bottom, #19153e , #3d2d53);
}
.game_con{
	width: 100%;
	height: 100%;
} 
.game_itme{
}
.game_bg{
	background: url(../images/game/game_bg.jpg) center no-repeat;
    background-size: cover;
}
.game_itme_bg1 {
	background: url(../images/game/game_bg1.jpg) center no-repeat;
    background-size: cover;
}
.game_itme_bg2 {
	background: url(../images/game/game_bg2.jpg) center no-repeat;
    background-size: cover;
}
.game_itme_bg3 {
	background: url(../images/game/game_bg3.jpg) center no-repeat;
    background-size: cover;
}
.game_itme_bg4 {
	background: url(../images/game/game_bg4.jpg) center no-repeat;
    background-size: cover;
}
.game_itme_bg5 {
	background: url(../images/game/game_bg5.jpg) center no-repeat;
    background-size: cover;
}
.game_itme_bg6 {
	background: url(../images/game/game_bg6.jpg) center no-repeat;
    background-size: cover;
}
.game_itme_bg7 {
	background: url(../images/game/game_bg7.jpg) center no-repeat;
    background-size: cover;
}
.game_itme_bg8 {
	background: url(../images/game/game_bg8.jpg) center no-repeat;
	background-size: cover;
}
.game_itme_bg9 {
	background: url(../images/game/game_bg9.jpg) center no-repeat;
	background-size: cover;
}
.game_itme_wrapper{
	width: 90%;
	position: absolute;
	left: 5%;
	bottom: 16%;
	background-color: rgba(27,27,27,0.7);
	overflow: hidden;
	opacity: 0;
	transform: translate(0, -10%);
	-webkit-transform: translate(0, -10%);
	transition: all .5s ease-in 1.5s;
	-webkit-transition: all .5s ease-in 1.5s;
}
.game_itme.active .game_itme_wrapper{
	opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}
.game_item_info{
	width: 100%;
	padding: 3% 3%;
	overflow: hidden;
	color: #7d7d7d;
	opacity: 0;
	transition: opacity .5s ease-in 2s;
	-webkit-transition: opacity .5s ease-in 2s;
}
.game_itme.active .game_item_info{
	opacity: 1;
}
.game_item_info_head{
	width: 100%;
}
.game_item_icon{
	width: 20%;
	margin-right: 3%;
	float: left;
	display: inline-block;
}

.game_item_info_head h2{
	font-size: 4.8rem;
	color: #dcdcdc;
	padding: 5% 0 1%;
}
.game_item_info_head p{
	font-size: 1.8rem;
}
.game_item_info_txt{
	width: 100%;
	overflow: hidden;
	margin: 4% 0;
	color: #c9c9c9;
	font-size: 2.4rem;
	font-family: "黑体";
}
.game_item_info_jietu{
	width: 100%;
}
.jietu_item{
	width: 30%;
	background-color: #000000;
	float: left;
	display: inline-block;
	margin-left: 5%;
}
.jietu_item:first-child{
	margin-left: 0px;
}
.jietu_item img{
	width: 100%;
}
.game_item_sign{
	width: 45px;
	height: 0px;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #5f52a0;
	transition: all .5s linear 2s;
	-webkit-transition: all .5s linear 2s;
	cursor: pointer;
}
.game_itme.active .game_item_sign{
	height: 45px;
	top: 0;
}
.game_item_sign span{
	width: 9px;
    height: 9px;
    border-bottom: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -4.5px;
    margin-top: -4.5px;
    opacity: 0;
    transition: opacity .5s ease-in 2.5s;
    -webkit-transition: opacity .5s ease-in 2.5s;
}
.game_itme.active .game_item_sign span{
	opacity: 1;
}







.products_prompt{
	width: 120px;
	position: absolute;
	left: 50%;
	bottom: 10%;
	margin-left: -60px;
	text-align: center;
	color: #FFFFFF;
	font-size: 2.0rem;
	font-family: "arial";
	opacity: 1;
	z-index: 10;
}
.products_prompt_sign{
	width: 9px;
	height: 9px;
	margin: 0px auto;
	animation:hintToDown 1.6s ease-out infinite; 
	-webkit-animation:hintToDown 1.6s ease-out infinite;
}
.products_prompt_sign span{
	width: 100%;
	height: 100%;
	border-bottom: 3px solid #FFFFFF;
	border-right: 3px solid #FFFFFF;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	display: block;
}
.our_item.active .products_prompt{
	opacity: 1;
}
@keyframes hintToDown {
0%   { transform:translate(0,-10px); opacity: 0; }
20%  { transform:translate(0,0px); opacity: 1; }
100% { transform:translate(0,10px); opacity: 0; }
}
@-webkit-keyframes hintToDown {
0%   { -webkit-transform:translate(0,-10px); opacity: 0; }
20%  { -webkit-transform:translate(0,0px); opacity: 1; }
100% { -webkit-transform:translate(0,10px); opacity: 0; }
}
/*我们的游戏样式结束*/