@charset "utf-8";
body {
	font-family: MicrosoftYaHei;
	-webkit-text-size-adjust: 100% !important;
/*	background: url("../images/view.jpg") no-repeat top center;*/
}
* {
	margin: 0;
	padding: 0;
}
.container {
	width: 1170px;
	height: 100%;
	margin: 0 auto;
	position: relative;
}
/* CSS Document */
/*common*/
.nopadding {
	padding: 0;
}
.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.flex {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
}
.flexRow {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
}
.flexColumn {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
}
.itemsCenter {
	align-items: center;
	-webkit-align-items: center;
}
.justifyCenter {
	justify-content: center;
	-webkit-justify-content: center;
}
.flexAround {
	justify-content: space-around;
	-webkit-justify-content: space-around;
}
.flexBetween {
	justify-content: space-between;
	-webkit-justify-content: space-between;
}
.flexWrap {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}
.bsBox {
	box-sizing: border-box;
}
/*header*/
header {
	width: 100%;
min-width: 1170px;
	height: 143px;
	background: url("../images/header_bg.png");
}
header img.logo {
	width: 580px;
	height: 85px;
	position: absolute;
	top: 35px;
	left: 7px;
}
header img.slogan {
	width: 238px;
	height: 69px;
	position: absolute;
	top: 37px;
	right: 67px;
}
/*END of header*/
/*nav*/
nav {
	width: 100%;
	height: 60px;
	background-color: #89D6AA;
}
nav ul#navBox {
	width: 100%;
	height: 100%;
	list-style-type: none;
	background-color: #00a374;
	border-radius: 10px;
	padding: 0 50px;
	box-sizing: border-box;
	border-radius: 10px;
}
nav ul#navBox a {
	text-align: center;
	width: 115px;
	height: 42px;
	line-height: 42px;
	color: white;
	display: block;
	margin-top: 10px;
	text-decoration: none;
}
nav ul#navBox a:hover {
	background-color: #1f874a;
	border-radius: 10px;
}
nav ul#navBox li {
	height: 100%;
	display: block;
	font-size: 22px;
	position: relative;
}
ul#navBox li dl {
	display: none;
	position: absolute;
	width: 120px;
	z-index: 99;
	background-color: #edf6f0;
	border-radius: 1px 1px 10px 10px;
	top: 60px;
	left: -8px;
	padding: 5px;
}
ul#navBox li dl a {
	margin: 7px auto;
	height: 28px;
	line-height: 28px;
	display: block;
	font-size: 18px;
	color: #246237;
	text-align: center;
	box-sizing: border-box;
}
ul#navBox li dl a:hover {
	background-color: #c0ebd0;
	border-radius: 11px;
}
/*END of nav*/
/*main*/
/*
.main {
min-width: 1170px;
	background: url("../images/main_bg.jpg") no-repeat bottom center;
	background-size: 100% auto;
}  */
/*END of main*/
/*footer*/
footer {
	width: 100%;
	min-width: 1170px;
	height: 212px;
	background-color: #89D6AA;
	color: #4d594e;
}
footer .detailBox {
	width: 30%;
	text-align: center;
	margin-top: 33px;
}
footer .detailBox h2 {
	font-size: 15px;
	font-weight: normal;
	margin-bottom: 10px;
}
footer .detailBox p {
	font-size: 14px;
	margin-top: 18px;
}
footer .detailBox a {
	display: inline-block;
	margin: 0 5px;
	text-decoration: none;
	color: #4d594e;
}
/*search Box*/
#searchBox {
	width: 188px;
	height: 32px;
	border-radius: 7px;
	border: solid 1px #526557;
	padding: 0 10px;
	box-sizing: border-box;
	margin-top: 30px;
}
#searchBox form {
	width: 100%;
	height: 100%;
}
#searchBox input[type="text"] {
	line-height: 24px;
	outline: none;
	border: none;
	margin: 0;
	padding: 0;
	background-color: transparent;
	display: block;
	width: 150px;
	color: #526557;
}
#searchBox input[type="submit"] {
	background: url("../images/icon_search.png") no-repeat center;
	display: block;
	width: 15px;
	height: 15px;
	outline: none;
	border: none;
	cursor: pointer;
	margin-left: 2px;
}
footer .visitBox {
	color: #526557;
	font-size: 17px;
	margin-top: 25px;
}
footer .grayLine {
	width: 1.5px;
	height: 131px;
	background-color: #a0a0a0;
	margin-top: 36px;
}