﻿*{ 
	margin:0;
	padding: 0;
}
body{
	
}
.box{
	width:735px;
	margin: 200px auto;
	text-align: center；

	}
.box .link{
	width: 205px;
	height: 280px;
	float: left;
	margin: 0 20px;
	position: relative;
}
.box .icon{
	display:inline-block;
	width: 100%;
	height:190px;
	transition: 0.3s linear;
	-webkit-transition: 0.3s linear;
	-o-transition: 0.3s linear;
	-moz-transition: 0.3s linear;
	-ms-transition: 0.3s linear;
}
.link-mission .icon{
	background: url("../images/1.png") no-repeat center center;
}
.link-play .icon{
	background: url("../images/2.png") no-repeat center center;
}
.link-touch .icon{
	background: url("../images/3.png") no-repeat center center;
}
.link .icon:hover{
	transform:rotate(360deg) scale(1.2);
	-ms-transform: rotate(360deg) scale(1.2);
	-webkit-transform: rotate(360deg) scale(1.2);
	-o-transform: rotate(360deg) scale(1.2);
	-moz-transform: rotate(360deg) scale(1.2);
}
.button{
	display: block;
	width: 180px;
	height: 50px;
	line-height: 50px;
	margin: 0 auto;
	font-family: "微软雅黑", Arial, Helvetica, sans-serif;
	font-weight: bolder;
	border: 2px solid rgba(255,255,255,0.7);
	color:#2dcb70;
	text-decoration: none;
	padding-left: 20px;
	box-sizing:border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	background: url("../images/icon-button-arrow.svg") no-repeat 130px center;
	position: relative;
	transition:0.4s ease;
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	-ms-transition: 0.4s ease;
}
.button:hover{
	border: 2px solid rgba(255,255,255,1);
	background-position: 145px center;
}
.button .line{
	display: block;
	position: absolute;
	transition: 0.4s ease;
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	-ms-transition: 0.4s ease;
}
.button:hover .line{
	background: #fff;
}
.button .line-top{
	width:0;
	height: 2px;
	left: -110%;
	top:-2px;

}
.button:hover .line-top{
	width: 100%;
	left: 0;	
}
.button .line-bottom{
	width: 0;
	height: 2px;
	right: -110%;
	bottom:-2px;
}
.button:hover .line-bottom{
	width: 100%;
	right:0;
}
.button .line-left{
	width: 2px;
	height: 0;
	bottom: -110%;
	left: -2px;
}
.button:hover .line-left{
	height: 100%;
	bottom: 0;
}
.button .line-right{
	width: 2px;
	height: 0;
	right:-2px;
	top:-110%;
}
.button:hover .line-right{
	height: 100%;
	top:0;
}
.tip{
	position: absolute;
	padding: 0 14px;
	height: 35px;
	line-height: 35px;
	background: ;
	color: white;
	top: 345px;
	font-size: 16px;
	font-weight: normal;
	text-transform: none;
	margin: 0 auto;
	border-radius: 3px;
	opacity: 0;
}
.tip em{
	font-weight: normal;
}
.tip span{
	position: absolute;
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-top-color: ;
	left: 50%;
	margin-left: -3px;
	bottom: -14px;
}

/*
滚动条
*/
::-webkit-scrollbar
{
    width: 9px;
    height: 9px;
    -webkit-border-radius: 9px;
}
::-webkit-scrollbar-track-piece
{
    background-color: #0cc;
    -webkit-border-radius: 18px;
}
::-webkit-scrollbar-thumb:vertical
{
    height: 5px;
    background-color: #EA7500;/*main-color*/
    -webkit-border-radius: 18px;
}
::-webkit-scrollbar-thumb:horizontal
{
    width: 5px;
    background-color: #CCCCCC;
    -webkit-border-radius: 18px;
}

/**新鼠标样式**/
body {
cursor: url(/images/arr118.png), auto;
}