header{
	position: fixed;
	width: 100%;
	background: #fff;
	top: 0;
	left: 0;
	z-index: 999;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
}
header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 103px;
}
.welcome{
	background:#164c96;
	padding:10px 0px;
}
.welcome .container{
	height:auto;
}
.welcome span{
	color:#fff;
	font-size:16px;
	font-weight:300;
}
.welcome form{
	display: flex;
	background: #fff;
	width:50%;
	max-width:600px;
}
.welcome form input{
	width: 82%;
	border: 0;
	height: 40px;
	line-height: 20px;
	font-size:14px;
	padding: 10px 15px;
	width: 100%;
}
.welcome form button{
	width: 18%;
	border: 0;
	display: flex;
	align-items: center;
	transition: .3s;
	justify-content: center;
	color: #000;
}
.welcome form button i{
	font-size: 22px;
}
.welcome form button:hover{
	cursor: pointer;
	background: #ee8319;
	color:#fff;
}
.logo{
	max-width: 150px;
}
nav{
	width: 80%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
nav ul{
	display: flex;
	justify-content: space-between;
	width: calc(70% - 150px);
}
nav li{
	position:relative;
}
nav li>a{
	color: #000;
	font-size: 20px;
	font-family:SHSCR;
	line-height: 40px;
	transition:.3s;
}
nav li:hover>a{
	color:#164c96;
}
nav li:last-child{
	display: none;
}
nav li .tmenu {
	position: absolute;
	top: 100%;
	left: -40%;
	width: 180%;
	transform: translateY(-10px);
	opacity: 0;
	padding: 31px 0 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
	visibility: hidden;
	z-index: 10;
}
nav li:hover .tmenu {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}
.tmenu dl{
	background:#fff;
	box-shadow:0px 5px 5px rgba(0,0,0,.1);
	opacity:0;
	transition:.3s;
}
nav li:hover .tmenu dl{
	opacity:1;
}
.tmenu dd a{
	display:block;
	text-align:center;
	font-size:14px;
	line-height:36px;
	font-weight:300;
	color:#000;
	transition:.3s;
}
.tmenu dd a:hover{
	color:#fff;
	background:#164c96;
}
.language a{
	display: flex;
	align-items: center;
}
.language a i{
	color: #1b2e91;
	font-size: 20px;
	animation: spin 2s linear infinite;
}
.language a p{
	font-size: 18px;
	color: #474342;
	margin-left: 10px;
	font-family:SHSCR;
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@media (max-width: 1440px) {
	header .container{
		height: 88px;
	}
	.welcome span{
		font-size:14px;
	}
	.welcome form input{
		height: 36px;
		line-height: 20px;
		font-size:14px;
		padding: 8px 10px;
	}
	.welcome form button i{
		font-size: 20px;
	}
	.logo{
		max-width: 150px;
	}
	nav{
		width: 80%;
	}
	nav ul{
		width: calc(65% - 150px);
	}
	nav li a{
		font-size: 18px;
		line-height: 36px;
	}
	.language a i{
		font-size: 18px;
	}
	.language a p{
		font-size: 16px;
	}
}
@media (max-width: 1200px) {
	header .container{
		height: 70px;
	}
	.welcome{
		padding:10px 0px;
	}
	.welcome span{
		display:none;
	}
	.welcome form{
		width:100%;
		max-width:600px;
	}
	.welcome form input{
		height: 34px;
		line-height: 20px;
		font-size:13px;
		padding: 7px 10px;
	}
	.welcome form button i{
		font-size: 20px;
	}
	.logo{
		max-width: 120px;
	}
	nav ul{
		width: calc(65% - 120px);
	}
	nav li a{
		font-size: 16px;
		line-height: 30px;
	}
	.language a i{
		font-size: 16px;
	}
	.language a p{
		font-size: 14px;
	}
}
.nav-click{
	display: none;
	padding: 5px;
}
.nav-click i{
	display: block;
	padding: 2px 0px;
	width: 23px;
}
.nav-click i:after{
	content: "";
	height: 2px;
	display: block;
	background: #1b2e91;
}
.black-bg{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .7);
	z-index: 3;
}
@media (max-width: 992px) {
	header .container{
		height: 40px;
	}
	.logo{
		max-width: 120px;
	}
	.logo a{
		display: block;
		height: 34px;
	}
	.logo img{
		max-height: 100%;
	}
	.nav-click{
		display: block;
	}
	nav ul{
		width: 70%;
		display: block;
		position: fixed;
		top: 0;
		height: 100%;
		right: -100%;
		background: #fff;
		z-index: 6;
		opacity: 0;
		transition: .3s;
		overflow-y:auto;
	}
	nav ul.ul{
		right: 0;
		opacity: 1;
	}
	nav li:last-child{
		display: block;
	}
	nav li a{
		font-size: 15px;
		line-height: 50px;
		padding: 0px 15px;
		border-bottom: 1px solid #ddd;
		display: flex;
		align-items: center;
	}
	nav li .tmenu{
		position:static;
		top:0;
		left:0;
		width:100%;
		transform:translateY(0px) translateX(0px);
		opacity: 1;
		padding:0px 0px 0px;
		visibility:visible;
	}
	.tmenu dl{
		box-shadow:none;
		opacity: 1;
	}
	nav li a::before{
		content: "";
		width: 8px;
		height: 1px;
		background: #666;
		margin-right: 10px;
	}
	.tmenu dd a{
		font-size:14px;
		line-height:30px;
		text-align:left;
		padding: 3px 0px 5px 25px;
		color:#333;
	}
	.language{
		display: none;
	}
	.body{
		overflow:hidden;
		width:100%;
		height:100%;
		position:fixed;
		top:0;
		left:0;
	}
}