﻿#header{
	width:100%;
	height:90px;
	display:inline-flex;
	align-items:center;
	justify-content:space-between;
	background-color:rgb(251, 252, 253);
}

#header .mobile{
	display:none;
}

#header .pc{
	display:block;
}
/* logo区域 */
#header .logo-container{
	/* 
	height:90px;
	line-height:90px;
	padding-top: 15px;
	 */
	margin-right:0px;
	flex-shrink:0;
	
}

#header .logo-container .logo{
	
}
#header .logo-container .logo>img{

}

/* logo区域结束 */


/* menu区域 */


/* menu区域 */
#header .menu-container{
	width: 100%;
	max-width:1000px;
	height:90px;
	flex-grow:1;
	display:inline-block;
}


#header .menu-container .menu{
}


#header .menu-container .menu .menu-item{
	width:100%;
	min-width:90px;
	max-width:135px;
	height:90px;
	flex-grow:1;
	padding:0px 0px;
	box-sizing:border-box;
	display:inline-block;
	cursor:pointer;
	text-align:center;
	position:relative;
	border-top:solid 2px transparent;
	font-weight: 600;
    color: #333;
    font-family: "微软雅黑";
}

#header .menu-container .menu .menu-item:hover .submenu{
	display:inline-block;
    position: relative;
	font-size:12px;
    z-index: 65;
}
#header .menu-container .menu .menu-item .title{
	text-align:center;
}

#header .menu-container .menu .menu-item .title.dropdown:after{
	content:'';
	display:inline-block;
	width:10px;
	height:10px;
	box-sizing:border-box;
	border-top:solid 5px #1b1b1b;
	border-right:solid 5px transparent;
	border-bottomt:solid 5px transparent;
	border-left:solid 5px transparent;
}
#header .menu-container .menu .menu-item .title:hover{
}
#header .menu-container .menu .menu-item.active,
#header .menu-container .menu .menu-item:hover{
	 background-color:rgb(242, 242, 242); 
}

#header .menu-container .menu .menu-item .title{
	display:block;
	color:#1b1b1b;
	font-size:16px;
	text-align:center;
	height:90px;
	line-height:90px;
}


/* 二级菜单 */

#header .menu-container .menu .menu-item .submenu{
	display:none;
}

#header .menu-container .menu .menu-item .submenu{
	color:white;
	width: 100%;
	margin-top: -2px;
}

#header .menu-container .menu .menu-item .submenu .submenu-item{
	display:block;
	height:50px;
	line-height:50px;
	font-size:16px;
	overflow:hidden;
	background-color:rgba(36, 55, 76, 0);
	color:#1b1b1b;
	cursor:pointer;
}

#header .menu-container .menu .menu-item .submenu .submenu-item:hover{
	background-color:#e9e9e9;
}

/* menu区域结束 */








/* 语言选择区域开始 */
#header .lang-container{
	height:90px;
	line-height:30px;
	width:280px;
	box-sizing: border-box;
	padding:20px 10px 0px 10px;
		
	text-align:right;
	color:white;
	display:inline-block;
	
	background-image:url(../images/nav-right.png);
}

#header .lang{
	width:160px;
	height:30px;
	line-height:30px;
	font-size:16px;
	cursor:pointer;
	display:inline-block;
	text-align:right;
	margin-left:10px;
}
#header .telephone{
	font-size:18px;
}
#header .telephone:before{
	content:'服务电话：';
	font-size:12px;
	
}
/* 语言选择区域结束 */