@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	font-family: 'Microsoft Yahei';
}
body{
	overflow-x: hidden;
}
ul{
	list-style: none;
}
a{
	text-decoration: none;
}
.cf{
	clear: both;
}
#header{
	margin: 0 auto;
	width: 960px;
	height: 72px;
}
#header .logo{
	float: left;
	width: 380px;
	height: 72px;
}
#header .logo a{
	display: block;
	width: 380px;
	height: 72px;
	background: url("../images/logo.png") no-repeat center center;
}
#header .nav{
	float: right;
	text-align: right;
	width: 480px;
	height: 68px;
	line-height: 68px;
	padding-top: 4px;
	font-size: 12px;
	color: #666666;
}
#header .nav a{
	font-size: 12px;
	color: #666666;
}
#header .nav a.nemu_now,
#header .nav a:hover{
	color: #FF7F3F;
}
.banner_border{
	overflow: hidden;
}
#banner{
	padding-top: 210px;
	height: 198px;
	background: url("../images/bg.jpg") no-repeat center center;
}
#banner.animation{
	animation: an_showbanner 1.5s ease-out;
	-webkit-animation: an_showbanner 1.5s ease-out;
	-moz-animation: an_showbanner 1.5s ease-out;
	-ms-animation: an_showbanner 1.5s ease-out;
}
#banner a{
	display: block;
	margin: 0 auto;
	width: 180px;
	height: 54px;
	background: url("../images/download.png") no-repeat center center;
	_background: url("../images/download_btn.gif") no-repeat center center;
	transition: all .2s;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
}
#banner a:hover{
	border-radius: 5px;
	box-shadow: 0 0 25px 5px #FF7F3F;
	animation: an_yaohuang 1s linear;
	-webkit-animation: an_yaohuang 1s linear;
	-moz-animation: an_yaohuang 1s linear;
	-ms-animation: an_yaohuang 1s linear;
}
#content{
	margin: 0 auto;
	width: 960px;
}
#content .left{
	float: left;
	width: 180px;
	height: 460px;
	position: relative;
	left: 0;
	top: -20px;
}
#content .left ul li{
	width: 180px;
	height: 40px;
	margin-bottom: 2px;
	line-height: 40px;
	text-align: left;
	background-color: #f6f6f6;
	border-radius: 2px;
}
#content .left ul li a{
	display: block;
	width: 180px;
	height: 40px;
	font-size: 14px;
	color: #666666;
	text-indent: 45px;
	border-radius: 2px;
	transition: all .2s;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
}
#content .left ul li a.menu_now,
#content .left ul li a:hover{
	color: #ffffff;
	background-color: #FF7F3F;
	text-indent: 55px;
}
#content .left ul li a.menu_now{
	text-indent: 45px;
}
#content .left .tips{
	width: 180px;
	height: 180px;
	padding-top: 17px;
	background: url("../images/tips.png") no-repeat 0 17px;
}
#content .left .tips h2{
	padding: 8px 0 0 10px;
	font-size: 17px;
	color: #666666;
	font-weight: normal;
}
#content .left .tips p{
	padding: 8px 0 0 24px;
	_padding: 13px 0 0 24px;
	line-height: 26px;
	font-size: 12px;
	color: #666666;
}
#content .right{
	float: right;
	width: 750px;
}
#content .right p{
	text-align: center;
	font-size: 12px;
	color: #666666;
}
#content .right p a{
	color: #666666;
}
#content .right p a:hover{
	color: #FF7F3F;
}
#content .right p.left_bold{
	text-align: left;
	font-size: 14px;
}
#content .right p.title{
	font-size: 14px;
	color: #4c4c4c;
	text-align: left;
	padding: 12px 0 10px 0;
	border-bottom: 1px solid #eaeaea;
}
#content .right p.text{
	font-size: 12px;
	color: #666666;
	line-height: 24px;
	text-align: left;
}
#content .right p.s_title{
	padding: 15px 0;
	text-align: left;
	font-weight: bold;
	font-size: 14px;
	color: #000000;
}
#content .right table{
	width: 720px;
}
#content .right table tr td{
	font-size: 12px;
}
#footer{
	margin: 10px auto 0 auto;
	padding: 6px 0;
	width: 960px;
	border-top: 3px solid #FF7F3F;
}
#footer .nav{
	width: 960px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	font-size: 12px;
}
#footer .nav a{
	font-size: 12px;
	color: #333333;
}
#footer .site_info{
	height: 28px;
	line-height: 28px;
	text-align: center;
	font-size: 12px;
	color: #333333;
}
#footer .site_info a{
	font-size: 12px;
	color: #333333;
}
#footer .site_info img{
	vertical-align: middle;
	margin-top: -2px;
}
#footer a:hover{
	color: #FF7F3F;
}
/*动画*/
@keyframes an_yaohuang{
	5%{
		transform: rotateZ(-10deg);
	}
	10%{
		transform: rotateZ(10deg);
	}
	20%{
		transform: rotateZ(-10deg);
	}
	30%{
		transform: rotateZ(10deg);
	}
	35%{
		transform: rotateZ(0deg);
	}
}
@-webkit-keyframes an_yaohuang{
	5%{
		-webkit-transform: rotateZ(-10deg);
	}
	10%{
		-webkit-transform: rotateZ(10deg);
	}
	20%{
		-webkit-transform: rotateZ(-10deg);
	}
	30%{
		-webkit-transform: rotateZ(10deg);
	}
	35%{
		-webkit-transform: rotateZ(0deg);
	}
}
@-moz-keyframes an_yaohuang{
	5%{
		-moz-transform: rotateZ(-10deg);
	}
	10%{
		-moz-transform: rotateZ(10deg);
	}
	20%{
		-moz-transform: rotateZ(-10deg);
	}
	30%{
		-moz-transform: rotateZ(10deg);
	}
	35%{
		-moz-transform: rotateZ(0deg);
	}
}
@-ms-keyframes an_yaohuang{
	5%{
		-ms-transform: rotateZ(-10deg);
	}
	10%{
		-ms-transform: rotateZ(10deg);
	}
	20%{
		-ms-transform: rotateZ(-10deg);
	}
	30%{
		-ms-transform: rotateZ(10deg);
	}
	35%{
		-ms-transform: rotateZ(0deg);
	}
}
@keyframes an_showbanner{
	from{
		transform: scale(1.2);
		opacity: .5;
	}
	to{
		transform: scale(1);
		opacity: 1;
	}
}
@-webkit-keyframes an_showbanner{
	from{
		-webkit-transform: scale(1.2);
		opacity: .5;
	}
	to{
		-webkit-transform: scale(1);
		opacity: 1;
	}
}
@-moz-keyframes an_showbanner{
	from{
		-moz-transform: scale(1.2);
		opacity: .5;
	}
	to{
		-moz-transform: scale(1);
		opacity: 1;
	}
}
@-ms-keyframes an_showbanner{
	from{
		-ms-transform: scale(1.2);
		opacity: .5;
	}
	to{
		-ms-transform: scale(1);
		opacity: 1;
	}
}