html,
body,
div,
p,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
iframe,
select,
button,
textarea,
table,
th,
td {
	margin: 0;
	padding: 0;
}

iframe {
	border: none;
}

* {
	box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

img {
	width: 100%;
}

ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

a,
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #fff;
}

body {
	background: #FFF;
	font-size: 18px;
	color: #666;
	line-height: 1.5;
	font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Hiragino Sans GB W3", "WenQuanYi Micro Hei", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
	position: relative;
}


/*头部*/

#Header_wrapper {
	position: fixed;
	width: 100%;
	z-index: 9999;
	background: #30b7a0;
}

#Header_wrapper.menuFixed {
	position: fixed;
	left:0;
}

#Header {
	background: url(../img/nav-bg.png) repeat-y;
	background: linear-gradient(to right, #96c95f 20%, #30b7a0 100%);
}

#Header .container {
	position: relative;
}

.logo {
	float: left;
}

#menu {
	z-index: 9999;
}

#logo {
	display: block;
	float: left;
	padding: 9.5px 0;
}

.menu_wrapper {
	float: right;
}

.menu>.menu-item {
	float: left;
	margin: 20px 0;
	transition: all 0.5s ease-in;
}

.menu>.menu-item>a:hover {
	background: rgba(239, 239, 239, 0.5);
	border-radius: 4px;
}

.menu>.menu-item>a {
	display: block;
	color: #fff;
	width: 100px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	margin: 0 10px;
	transition: background 0.2s ease-in-out;
}

.menu>.menu-item.last-child>a {
	width: auto;
}

html,
body {
	min-height: 100%;
}

.menu>.menu-item>a.active {
	background: rgba(239, 239, 239, 0.5);
	border-radius: 4px;
}

.responsive-menu-toggle {
	padding: 0 20px;
	font-size: 18px;
	color: #fff;
	line-height: 88px;
	display: none;
}

.responsive-menu-toggle:hover {
	color: #fff;
}

.phone-ic {
	display: inline-block;
	width: 18px;
	height: 19px;
	background: url(../img/phone.png) no-repeat;
	vertical-align: middle;
	margin-right: 10px;
}

.no-padding {
	padding: 0;
}

#Content {
	padding-top: 88px;
	/*	height: 100%;*/
}


/*滚动条*/

::-webkit-scrollbar {
	width: 0;
	height: 0;
}
@media (max-width: 768px) {
	#Content {
	padding-top: 60px;
}
}

@media (min-width: 1440px) {
	.container {
		width: 1200px;
	}
}

@media only screen and (min-width: 1000px) {
	.menu_wrapper .menu-main {
		display: block!important;
	}
}

@media only screen and (max-width: 1000px) {
	.menu_wrapper .menu-main {
		display: none;
	}
	.menu-main {
		position: absolute;
		right: 1px;
		top: 100%;
		background: #30b7a0;
		width: 300px;
	}
	.menu {
		padding: 20px 0;
	}
	.menu>.menu-item {
		float: none;
		margin: 0;
	}
	.menu>.menu-item>a {
		width: 100%;
		margin: 0;
		text-align: left;
		padding-left: 50px;
	}
	.menu>.menu-item>a.active {
		border-radius: 0;
	}
	.menu>.menu-item>a:hover {
		background-color: rgba(0, 0, 0, 0.2);
	}
	.responsive-menu-toggle {
		display: block;
	}
}