@CHARSET "UTF-8";
html, body, header, article, footer, nav,section, ul, li, div, form, input,textarea,p,fieldset,legend {
	margin: 0;
	padding: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
body{
	overflow-x:hidden;
}
header{
	width:100%;
	height:50px;
	padding:0 2%;
}
header #siteLogo{
	float:left;
	width:300px;
	height:100%;
	overflow:hidden;
}
header #siteLogo img{
	height:100%;
}
header nav{
	float:left; 
	width:calc(100% - 336px); 
	font-size:16px;
}
header #welcome1{
	float:right;
	width:36px;
	height:100%;
	text-align:right;
	padding-top:13px;
}
header #welcome1 img{
	width:24px;
	height:24px;
	opacity:0.4;
}
header #welcome1 img:hover{
	opacity:1;
}
header #welcome{
	display:none;
}
ul,li{
	list-style:none;
}
.clr {
	clear: both;
	width:0;
	heihgt:0;
}
a{
	color:#444;
	text-decoration: none;
}
a:hover{
	color:#ff0000;
}
/*****menu start *****/
nav ul {
	width: 100%;
	display: flex;
}
nav ul li {
	flex: 1; /**宽度相等**/
	height: 44px;
	line-height: 44px;
	position: relative;
	text-align: center;
}
nav ul li:hover {
	background: #ffc862;
}
nav ul a {
	width:100%;
	height: 100%;
	color: #444;
	display: block;
	white-space: nowrap;
	text-transform: none;
}
nav ul a:hover {
	color: #ff0000;
}
nav ul li:hover>ul {
	display: block;
}
/** Sub-menu **/
nav ul ul {
	display: none;
	position: absolute;
	width:100%;
	top: 36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9;
}
nav ul ul li {
	width:100%;
	height:40px;
	line-height:40px;
	font-size:14px;
	text-align:center;
	display: block;
	background: #e6e6e6;
	border-top:1px solid #fff;
	border-bottom: 1px solid #c0c0c0;
}
nav ul ul li a {
	color: #666;
}
nav ul ul li a:hover {
	color: #ff0000;
}
nav ul ul li:hover{
	background: #f5f5f5 url(/images_pub/arr_r.png) left center no-repeat;
	border-bottom: 4px solid #ff0000;
}
.smallmenu li:nth-child(1):before {
	content: '';
	position: absolute;
	left: 30px;
	top: -8px;
	width: 0;
	height: 0;
	/**三角**/
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 8px solid #fff;
}
/** Third Grade Menu **/
nav ul ul ul {
	position: absolute;
	top: 0;
	left: 150%;
	z-index: 10;
}
.grandmenu li:first-child:before{
	content: '';
	position: absolute;
	left: -13px;
	top: 16px;
	width: 0;
	height: 0;
	/**左侧三角**/
	border-top: 5px solid transparent;
	border-right: 8px solid #ffd6ac;
	border-bottom: 5px solid transparent;
}
/** Clear floated elements **/
nav ul:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
}
.container{
	width:100%;
	padding:30px 5%
}
.navfoot{
	width:100%;
	text-align:center;
	margin-top:30px;
}
footer{
	width:100%;
	height:auto;
	color:#fff;
	text-align:center;
	font-size:12px;
	background:#005157;
	padding:32px 0;
	margin-top:32px;
}
footer p{
	padding-bottom:15px
}
footer a{
	color:#fff;
}
footer a:hover{
	color:#ff0000;
}
footer img:first-child{
	width:60px;
	heiht:60px;
}