﻿#header{
	width:100%;
	height:45px;
	display:inline-flex;
	align-items:center;
	justify-content:space-between;
	background-color:rgb(34, 51, 77);
}

#header .pc{
	display:none;
}

#header .mobile{
	display:block;
}

#header .logo-container{
	height:45px;
}
#header .logo-container img{
	height:40px;
	margin-top:2px;
}

#header .menu-mobile-icon{
	display:inline-block;
	width:35px;
	height:35px;
	line-height:35px;
	margin-right:5px;
	color: white;
	font-size: 24px;
}

#header .menu-mobile{
	display:inline-block;
	position:fixed;
	top:45px;
	right:-170px;
	bottom:0px;
	width:170px;
	overflow-y: auto;
	z-index:200;
	transition:0.4s;
	background-color:rgb(34, 51, 77);
}

#header .menu-mobile.active{
	display:block;
}

#header .menu-mobile .menu-item{
	text-align:left;
	padding:0px 15px;
}
#header .menu-mobile .menu-title{
	height:40px;
	line-height:40px;
	color:white;
	font-size:16px;
}

#header .menu-mobile .menu-title.dropdown:after{
	content:'';
	display:inline-block;
	width:10px;
	height:10px;
	margin-left:2px;
	box-sizing:border-box;
	border-top:solid 5px white;
	border-right:solid 5px transparent;
	border-bottomt:solid 5px transparent;
	border-left:solid 5px transparent;
}
#header .menu-mobile .menu-submenu{
	height:35px;
	line-height:35px;
	color:white;
	font-size:14px;
	margin-left:15px;
	display:none;
}
#header .menu-mobile .menu-item.active .menu-submenu{
	display:block;
}