#header{
	position: relative;
	margin-bottom: 130px;
}
.header{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
	box-shadow: 0px 7px 7px -7px rgb(0 0 0 / 15%); 
}

/* 搜索框 */
.search{
	width: 100%;
	background-color: #e7f0f8;
}
.search .mainsVw{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.searchForm{
	text-align: right;
	position: relative;
	border-bottom: 1px solid #999999;
}
.searchForm input{
	width: 300px;
	border: none;
	outline: none;
	padding: 12px 0;
	background-color: transparent;
}
.searchForm button{
	border: none;
	outline: none;
	cursor: pointer;
	background-color: transparent;
}

/* 搜索内容显示框 */
.serchBox{
	position: absolute;
	width: 100%;
	top: 40px;
	z-index: 3;
	cursor: pointer;
	/*display: none;*/
	background-color: #fff;
	box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 15%);
}
.serchBox a{
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	margin-bottom: 20px;
}
.serchBox a.semm{
	width: 140px;
	margin: 0 auto 24px auto;
	background-color: #bbbbbb;
	padding: 10px 0;
	text-align: center;
	border-radius: 30px;
	justify-content: center;
	transition: all 0.5s;
}
.serchBox a.semm:hover{
	background-color: #126EBA;
}
.serchBox a.semm p{
	transition: all 0.5s;
}
.serchBox a.semm:hover p{
	color: #fff;
}
.serchBoxtop{
	width: 90%;
	padding: 8px 5%;
	display: flex;
	background-color: #eeeeee;
	justify-content: space-between;
	margin-bottom: 20px;
}
.serchBoxtop img{
	width: 12px;
	height: 12px;
}
.serchBox a img{
	width: calc(80px - 2px);
	display: block;
	margin-right: 10px;
	border: 1px solid #ddd;
}
.serchBox a p{
	/* width: calc(100% - 50px); */
	font-size: 14px;
	color: #333;
	text-align: left;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all 0.5;
}
.serchBox a:hover p{
	color: #126EBA;
}
/* 切换中英文 */
.Language{
	display: flex;
	margin-left: 50px;
	position: relative;
	cursor: pointer;
	z-index: 2;
}
.Language img{
	width: 20px;
	height: 20px;
}
.LanguageBox{
	width: 80px;
	color: #666;
	text-align: center;
}
.LanguageBox .en{
	position: absolute;
	display: none;
	width: 100%;
	top: 30px;
	left: 0;
	text-align: left;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 15%);
}
.LanguageBox .en a:first-child{
	border-top: none;
}
.LanguageBox .en a {
    width: 100%;
    padding: 12px 0;
    text-align: center;
	border-top: 1px solid #D9D9D9;
}
.LanguageBox .en a:hover{
	color: #126EBA;
}

/* 头部 导航栏 */
.headerNav{
	width: 100%;
	background-color: #fff;
}
.headerNav .mainsVw{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mobile_Navigation .logo img{
	width: 210px;
}
.mobile_Navigation .menuBtn{
	width: 50px;
	position: relative;
	cursor: pointer;
	z-index: 9;
	display: none;
}
.mobile_Navigation .menuBtn span{
	display: block;
	width: 25px;
	height: 2px;
	background-color: #126EBA;
	border-radius: 5px;
	margin: 6px auto;
	transition: all 0.5s;
}




/* 导航栏 */
.nav{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.nav li{
	margin-left: 10px;
}
.nav li a{
	width: auto;
	height: 90px;
	line-height: 90px;
	padding: 0 20px;
	font-size: 16px;
	color: #333;
	transition: all 0.5s;
}
.nav li a.active{
	color: #fff;
	background-color: #126EBA;
}
.nav li a:hover{
	color: #126EBA;
}
.nav li a.active:hover{
	color: #fff;
}

@media (max-width: 1200px) {
	.nav li{
		margin-left: 0px;
	}
}
@media (max-width: 1100px) {
	#header {
	    position: relative;
	    margin-bottom: 120px;
	}
	.nav li a{
		height: 80px;
		line-height: 80px;
		padding: 0 12px;
	}
	
}

@media (max-width: 960px) {
	.Language{
		display: flex;
		margin-left: 20px;
		position: relative;
		cursor: pointer;
	}
	.header.show{
		position: fixed;
		top: 0;
		width: 100%;
		height: 100vh;
		background-color: #fff;
	}
	.headerNav .mainsVw{
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.mobile_Navigation{
		width: 100%;
		padding: 12px 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.mobile_Navigation .menuBtn{
		width: 50px;
		position: relative;
		cursor: pointer;
		z-index: 9;
		display: block;
	}
	
	/* 头部 导航栏 */
	.nav{
		width: 100%;
		padding-bottom: 45px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		display: none;
		justify-content: flex-end;
	}
	.nav.show{
		display: block;
	}
	.nav li{
		width: 100%;
		margin-left: 0;
	}
	.nav li a{
		width: 100%;
		height: 50px;
		line-height: 50px;
		padding: 0;
		font-size: 16px;
		color: #333;
		text-indent: 20px;
		transition: all 0.5s;
	}
	.nav li a.active{
		color: #126EBA;
		border-bottom: 1px solid #126EBA;
		background-color: transparent;
	}
}
@media (max-width: 540px) {
	#header {
	    position: relative;
	    margin-bottom: 120px;
	    background: red;
	}
	.mobile_Navigation .logo img{
		width: 180px;
	}
	
	
	.search .mainsVw{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.searchForm{
		width: 60%;
		text-align: right;
		position: relative;
		border-bottom: 1px solid #999999;
	}
	.searchForm input{
		width: calc(100% - 40px);
		border: none;
		outline: none;
		padding: 12px 0;
		background-color: transparent;
	}
	.searchForm button{
		width: 32px;
		border: none;
		outline: none;
		cursor: pointer;
		background-color: transparent;
	}
	/* 切换中英文 */
	.Language{
		display: flex;
		margin-left: 5px;
		position: relative;
		cursor: pointer;
	}
}









/* 底部 */
.footer{
	width: 100%;
	background-color: #3b4044;
}
.footertiem{
	display: flex;
	align-items: flex-start;
	padding: 60px 0 70px 0;
}
.footertiem li{
	flex: 1;
}
.footertiem p{
	color: #fff;
	font-size: 16px;
	margin-bottom: 15px;
}
.footertiem a{
	color: #ddd;
	font-size: 14px;
	line-height: 30px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	transition: all 0.5s;
}
.footertiem li:last-child a{
	color: #fff;
}
.footertiem a:hover{
	color: #fff;
}

.footertiem a img{
	width: 20px;
	vertical-align: top;
	margin-top: 5px;
}
.footertiem a span{
	width: calc(100% - 25px);
	display: block;
	line-height: 24px;
}



.footertiem2{
	display: flex;
	align-items: flex-start;
	padding: 20px 0;
	border-top: 1px solid #ddd;
}
.footertiem2 a{
	color: #fff;
	font-size: 14px;
	line-height: 30px;
}
.footertiem2 a:hover{
	color: #fff;
}
.footertiem2 .link{
	width: 40%;
}
.footerLink{
	width: 60%;
	display: flex;
	justify-content: flex-end;
}
@media (max-width: 768px) {
	.footertiem li:nth-child(2),
	.footertiem li:nth-child(3){
		display: none;
	}
}
@media (max-width: 540px) {
	.footertiem{
		padding: 45px 0;
	}
	.footertiem2 .link{
		width: 100%;
	}
	.footertiem2{
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.footerLink{
		width: 100%;
		display: flex;
		justify-content: flex-end;
	}
	.footertiem li:nth-child(1){
		display: none;
	}
}