/* CSS Document */
			* {
				padding: 0;
				margin: 0;
			}

			body {
				font-family: 微软雅黑, Tahoma, sans-serif;
			}
			.banner {
				width: 100%;
				height: 500px;
				position: relative;
				cursor: pointer;
				overflow: hidden;
			}
			.banner img{
				width:100%;
			}
			
			.banner>ul>li {
				position: absolute;
				display: none;
				list-style: none;
			}
			
			.banner>ul>li:first-child {
				display: block;
			}
			
			/* 左右箭头 */
			.left,
			.right {
				width: 40px;
				height: 80px;
				font-size: 60px;
				line-height: 80px;
				color: green;
				position: absolute;
				top: 50%;
				margin-top: -30px;
				text-align: center;
				cursor: pointer;
			}
			
			.left:hover,
			.right:hover {
				background-color: darkgreen;
			}
			
			.left {
				left: 20px;
			}
			
			.right {
				right: 20px;
			}
			
			/* 圆点 */
			.num {
				width: 200px;
				height: 20px;
				position: absolute;
				left: 50%;
				top: 430px;
			}
			.num ul li {
				width: 20px;
				height: 20px;
				background-color: #e2e2e2;
				border-radius: 50%;
				float: left;
				margin-left: 15px;
				list-style: none;
			}
			.num ul li.show {
				background-color: green;
			}
			
			#banner-top {
				position: relative;
			} 

			#top {
				width: 100%;
				height: 50px;
				background: #064113;
				position: fixed; 
				top: 0;
				z-index: 3;
			}

			#top_center {
				margin: 0 auto;
			}

			#logo {
				float: left;
				margin-left: 360px;
				margin-top: 2px;
			}
			#nav {
				margin:0 auto;
				padding-left: 550px;
			}
			#nav li{
				list-style: none;
				float: left;
			}
			#nav a{
				text-decoration: none;
				color: #fff;
				padding:0 28px;
				line-height:50px;
				display:inline-block;
				text-align:center;
				font-weight:bolder;
				background: #064113;
			}
			/* 二级导航效果 */
			#nav a:hover{
				background: #b09135;
				color: #ffffff;
			}
			#nav ul li{
				float: none;
				margin-top: 1px;
			}
			#nav ul a{
				display: block;
			}
			#nav ul {
				display: none;
			}
			#nav li:hover ul{
				display: block;
			}

			#banner_icon {
				width: 40px;
				height: 40px;
				background: url("../images/icon-copy.png") no-repeat left;
				margin-left: 500px;
			}

			#banner_icon p {
				font-size: 24px;
				color: #0C9C2E;
				margin-left: 50px;
				font-weight:bolder;
			}

			#circle {
				float: left;
				left: 940px;
				position: absolute;
				bottom: 15px;
			}

			#circle li {
				list-style: none;
				float: left;
				margin-left: 10px;
			}
			#footer {
				width: 100%;
				height: 80px;
				background: #064113;
				padding-top: 14px;
				margin-top: 30px;
			}
			#footer p {
				text-align: center;
				font-size: 14px;
				color: #FFF;
				line-height: 30px;
			}
			
			#footer a {
				text-decoration: none;
				color: #FFF;
				background: url(../images/security.png) no-repeat left center;
				padding-left: 30px;
			}
			#footer a:hover {
				color: #999;
			}
