﻿a {
	color: #FFF;
	font-size: 16px;
	transition: all 0.5s;
}

a:hover {
	color: #fff;
}

.shadow {
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
}

#fixtop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	transform: translateY(0);
	transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

#fixtop.nav-hidden {
	transform: translateY(-100%);
}

#header {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	min-height: 98px;
	padding: 0 28px;
	box-sizing: border-box;
	background: #fff !important;
	border-bottom: 1px solid #f0f1f3;
	box-shadow: 0 1px 0 rgba(20, 39, 68, .025);
	font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
	transition: box-shadow 0.25s ease;
}

#header .topnav {
	display: flex;
	align-items: center;
	flex-basis: 100%;
	width: 100%;
	height: 98px;
	max-width: 1500px;
	margin: 0 auto;
}

#header .nav {
	height: 100%;
	margin-left: clamp(42px, 5.2vw, 92px);
}

#header .logo {
	flex: 0 0 auto;
}

#header .logo a {
	display: flex;
	align-items: center;
	height: 98px;
}

#header .logo img {
	display: block;
	width: 280px;
	max-height: 78px;
	height: auto;
	object-fit: contain;
}

#header .navul {
	display: flex;
	align-items: stretch;
	gap: clamp(28px, 2.55vw, 49px);
	height: 100%;
}

#header .navli {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

#header .navli > a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 1px;
	color: #17191d;
	font-size: 16px;
	font-weight: 400;
	white-space: nowrap;
	transition: color 0.22s ease;
}

#header .navli.active > a,
#header .navli:hover > a {
	color: #3263cc;
}

#header .navli.active::after,
#header .navli:hover::after,
#header .navli:focus-within::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 0;
	border-right: 5px solid transparent;
	border-bottom: 6px solid #3263cc;
	border-left: 5px solid transparent;
	transform: translateX(-50%);
}

#header .nav-arrow,
#header .lang-arrow {
	display: none;
	width: 7px;
	height: 7px;
	margin-left: 8px;
	margin-top: -4px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
}

#header .navli.has-children .nav-arrow {
	display: none;
}

#header .submenu {
	position: absolute;
	top: 98px;
	left: 50%;
	width: 180px;
	margin-left: -90px;
	padding: 0;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-top: 0;
	box-shadow: 0 14px 30px rgba(24, 45, 75, .11);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

#header .navli:hover .submenu,
#header .navli:focus-within .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#header .submenu li {
	height: 36px;
	border-bottom: 1px solid #e7e9ec;
}

#header .submenu li:last-child {
	border-bottom: 0;
}

#header .submenu a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 12px;
	color: #666b72;
	font-size: 14px;
	font-weight: 400;
	white-space: nowrap;
	transition: color .2s ease, background-color .2s ease;
}

#header .submenu a:hover,
#header .submenu a:focus-visible,
#header .submenu li.active a {
	color: #fff;
	background: #4f73b8;
	font-weight: 500;
}

#header .submenu a:focus-visible {
	outline: 2px solid #2d5da8;
	outline-offset: -2px;
}

#header .header-tools {
	display: flex;
	align-items: center;
	height: 100%;
	margin-left: auto;
}

#header #search {
	display: block;
	cursor: pointer;
	width: 21px;
	height: 21px;
	padding: 0;
	border: 0;
	background: url("../images/searchw.png") center / 19px 19px no-repeat;
	opacity: .68;
	transition: opacity .2s ease, transform .2s ease;
}

#header #search:hover { opacity: 1; transform: scale(1.06); }
#header #search:active { transform: scale(.96); }

#header #line {
	display: block;
	width: 1px;
	height: 22px;
	margin: 0 20px;
	background: #c7c7c7;
}

#header .language {
	display: flex;
	align-items: center;
	color: #30343a;
	font-size: 15px;
	line-height: 1;
	white-space: nowrap;
}

#header .language:hover {
	color: #3263cc;
}

#header .globe {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-right: 11px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	font-size: 7px;
}

#header .globe::before,
#header .globe::after {
	content: "";
	position: absolute;
	border: 1px solid #fff;
	border-radius: 50%;
}

#header .globe::before {
	width: 8px;
	height: 16px;
}

#header .globe::after {
	width: 16px;
	height: 7px;
}

#header .lang-arrow {
	display: inline-block;
	margin-left: 8px;
}

#header .m {
	display: none;
}

#header .mobile-tools {
	display: none;
}

#header #mnav {
	cursor: pointer;
	background: url("../images/mnav.png")/*tpa=/themes/default/images/mnav.png*/ no-repeat scroll 0 16px;
	width: 19px;
}

#header .hide {
	display: none;
	position: absolute;
	z-index: 4;
	top: 0;
	left: 0;
	width: 100%;
	height: 98px;
	padding: 0 28px;
	box-sizing: border-box;
	background: #fff;
}

#header .hide form {
	width: 100%;
	height: 100%;
}

#header .searchbox {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
}

#header .search-submit {
	position: relative;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

#header .search-submit::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 2px;
	width: 13px;
	height: 13px;
	border: 1.5px solid #16191d;
	border-radius: 50%;
}

#header .search-submit::after {
	content: "";
	position: absolute;
	top: 16px;
	left: 15px;
	width: 7px;
	height: 1.5px;
	background: #16191d;
	transform: rotate(45deg);
	transform-origin: left center;
}

#header .search-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

#header .searchbox .serach-txt {
	flex: 1;
	min-width: 0;
	height: 48px;
	margin: 0 22px 0 10px;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #202328;
	font: inherit;
	font-size: 14px;
	-webkit-appearance: none;
}

#header .searchbox .serach-txt::-webkit-search-cancel-button {
	display: none;
}

#header .searchbox .serach-txt::placeholder {
	color: #7a7d82;
	opacity: 1;
}

#header .search-close {
	position: relative;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	opacity: .82;
	transition: opacity .2s ease, transform .2s ease;
}

#header .search-close::before,
#header .search-close::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 9px;
	width: 25px;
	height: 1px;
	background: #171a1e;
}

#header .search-close::before { transform: rotate(45deg); }
#header .search-close::after { transform: rotate(-45deg); }
#header .search-close:hover { opacity: 1; transform: rotate(4deg); }
#header .search-close:active { transform: scale(.94); }

#header .search-submit:hover {
	transform: scale(1.05);
}

#header a:focus-visible,
#header button:focus-visible,
#header input:focus-visible {
	outline: 2px solid #3263cc;
	outline-offset: 3px;
}

#header .mnav {
	display: none;
	flex-basis: 100%;
	height: 100vh;
}

#header .mnav .mnavul {
	text-align: center;
}

#header .mnav .mnavli {
	border-bottom: 1px solid #3368b4;
}

#header .mnav a {
	color: #86b2f0;
	line-height: 12vh;
}

#header .mnavli.active a {
	color: #fff;
}

#footer {
	background-color: #014099;
}

.fright{margin-right: 30px; width: 120px;}
.fright img{width: 120px; float:left;}
.fright span{float:left; color:#fff; height: 40px; line-height: 40px; text-align: center; width:120px;}

#footer .footerin {
	padding: 104px 56px 30px;max-width: 1392px; margin:0 auto;
}

#footer .nav {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

#footer .navdown ul {
	display: flex;
}

#footer .navdown .firstli a {
	padding-left: 0;
}

#footer .navdown ul li a {
	border-right: 1px solid #FFFFFF;
	padding: 0 14px;
}
#footer .navdown ul li:last-child a{border:0px;}

#footer .navtext p {
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	margin: 40px 0 56px;
}

#footer .copyright {
	display: flex;
	justify-content: space-between;
}

#footer .copyright p {
	color: #ffffff;
	font-size: 14px;
	margin-top: 30px;
}

@media only screen and (max-width: 1440px) {
	#footer .footerin {
		padding: 104px 3% 30px;
	}
	#header { padding: 0 3%; }
	#header .logo img { width: 235px; }
	#header .nav { margin-left: 36px; }
	#header .navul { gap: 27px; }
	#header .navli > a { font-size: 15px; }
	#header .header-tools { margin-left: auto; }
}

@media only screen and (max-width: 1180px) {
	#header {
		min-height: 55px;
		padding: 0 15px;
		background: #fff !important;
	}
	#header .topnav { height: 55px; }
	#header .logo img { width: 147px; max-width: 42vw; }
	#footer .footerin {
		padding: 54px 9vw 30px;
	}
	#footer .fright img,
	#header .nav,
	#header .header-tools {
		display: none;
	}
	#header .mobile-tools {
		display: flex;
		align-items: center;
		margin-left: auto;
		color: #111;
	}
	#header #msearch {
		width: 20px;
		height: 20px;
		padding: 0;
		border: 0;
		background: url("../images/searchw.png") center / 18px 18px no-repeat;
		cursor: pointer;
	}
	#header .mobile-line {
		width: 1px;
		height: 19px;
		margin: 0 11px;
		background: #c8c8c8;
	}
	#header .mobile-language {
		display: flex;
		align-items: center;
		font-size: 14px;
		line-height: 1;
		white-space: nowrap;
	}
	#header .mobile-language .globe {
		width: 18px;
		height: 18px;
		margin-right: 7px;
	}
	#header .mobile-language .globe::before { width: 7px; height: 14px; }
	#header .mobile-language .globe::after { width: 14px; height: 6px; }
	#header .mobile-language .lang-arrow {
		display: inline-block;
		width: 7px;
		height: 7px;
		margin: -4px 15px 0 7px;
		border-width: 0 1px 1px 0;
		border-style: solid;
		transform: rotate(45deg);
	}
	#header #mnav {
		position: relative;
		display: block;
		width: 22px;
		height: 22px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
	}
	#header #mnav::before,
	#header #mnav::after,
	#header #mnav i {
		content: "";
		position: absolute;
		left: 0;
		width: 22px;
		height: 2px;
		background: #333;
		transition: transform .2s ease, top .2s ease, opacity .2s ease;
	}
	#header #mnav::before { top: 3px; }
	#header #mnav i { top: 10px; }
	#header #mnav::after { top: 17px; }
	#header #mnav.is-open::before { top: 10px; transform: rotate(45deg); }
	#header #mnav.is-open i { opacity: 0; }
	#header #mnav.is-open::after { top: 10px; transform: rotate(-45deg); }
	#header .hide {
		top: 0;
		left: 0;
		height: 55px;
		padding: 0 15px;
	}
	#header .searchbox .serach-txt { margin-right: 8px; }
	#header .search-close { flex-basis: 36px; width: 36px; height: 36px; }
	#header .search-close::before,
	#header .search-close::after { top: 18px; left: 7px; width: 22px; }
	#header .mnav {
		position: absolute;
		top: 55px;
		left: 0;
		width: 100%;
		height: calc(100vh - 55px);
		height: calc(100dvh - 55px);
		background: #fff;
		overflow-y: auto;
		border-top: 1px solid #e8e8e8;
	}
	#header .mnav .mnavul {
		text-align: left;
	}
	#header .mnav .mnavli {
		border-bottom: 1px solid #ededed;
	}
	#header .mnav .mnav-row {
		display: flex;
		align-items: stretch;
		height: 46px;
	}
	#header .mnav .mnavli > a,
	#header .mnav .mnav-row > a {
		display: flex;
		align-items: center;
		min-height: 46px;
		padding: 0 15px;
		box-sizing: border-box;
		color: #333;
		font-size: 15px;
		line-height: 1;
	}
	#header .mnav .mnav-row > a { flex: 1; }
	#header .mnav .mnav-toggle {
		position: relative;
		width: 50px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
	}
	#header .mnav .mnav-toggle i {
		position: absolute;
		top: 18px;
		right: 20px;
		width: 7px;
		height: 7px;
		border-right: 1.5px solid #333;
		border-bottom: 1.5px solid #333;
		transform: rotate(45deg);
		transition: transform .18s ease, top .18s ease;
	}
	#header .mnav .mnavli.is-open .mnav-toggle i {
		top: 21px;
		transform: rotate(225deg);
	}
	#header .mnav .msubmenu {
		display: none;
		padding: 0 15px 0 29px;
	}
	#header .mnav .msubmenu li {
		height: 42px;
		border-top: 1px solid #ededed;
	}
	#header .mnav .msubmenu a {
		display: flex;
		align-items: center;
		height: 100%;
		color: #333;
		font-size: 15px;
		line-height: 1;
	}
	#header .mnavli.active > a,
	#header .mnavli.active .mnav-row > a,
	#header .mnav .msubmenu li.active a {
		color: #333;
	}
}

@media only screen and (max-width: 620px) {
	#footer .navdown ul {
		flex-wrap: wrap;
	}
	#footer .navdown .firstli a {
		padding-left: 0px;
	}
	#footer .navdown li:nth-child(4) a{padding-left: 0px;}
	#footer .copyright .cright {
		display: none;
	}
}


#banner-inside{position:relative;width:100%;height:auto;overflow:hidden;margin:0 auto}
#banner-inside .bannertext{width:100%; text-align: center; position: absolute; top:40%;    }
.bannertext .bigtext{font-size: 50px;margin-bottom: 60px; color:#fff; position: relative; width: 100%; display: table;}
.bannertext .bigtext:after{ content: ''; display: block;position: absolute; left: 50%; width: 72px; height: 1px; margin-left: -36px; bottom: -40px; background: #fff;}
.bannertext .bigtext2{font-size: 40px; font-weight: 300; font-family: 'Microsoft YaHei Light', 'Microsoft YaHei';color: #5d92fe;width: 100%; display: table;}
#banner-inside img{width:100%;}

@media (max-width: 768px){
	#banner-inside{}
	#banner-inside img {left: 0; margin-left: 0px;}
	.bannertext .bigtext{font-size: 30px;}
	.bannertext .bigtext2{font-size: 20px;}

}
.g-bd{padding:50px 56px; margin:0 auto; max-width: 1392px;}
#navpart{position:relative;background:#004098;margin:102px auto 0;width:100%; display: table;}
#navpart .position{padding:25px 3% 25px; margin:0 auto;color:#999;font-size:12px;text-align:left;float: right;}
#navpart .position a{color:#999}
#navpart .position a:hover{color:#5d92fe;text-decoration:underline}
#navpart .column{padding:20px 56px 20px; max-width: 1392px; margin:0 auto;text-align:left;overflow:auto}
#navpart .column ul{text-align:left}
#navpart .column ul li{display:inline-block;float:left;border:1px solid rgba(255,255,255,0.3);background:rgba(255,255,255,0.6);height:40px;line-height:40px;padding:0 30px;margin-right:10px;font-size:14px;text-align:center; }
#navpart .column a{display:block; color:#002e90;}
#navpart .column .A,#navpart .column ul li:hover{background:#5d92fe;border:1px solid #5d92fe}
#navpart .column .A a,#navpart .column ul li:hover a{color:#fff}
#navpart .column #scrollwidth{width:auto}

.linkbox{display: none;}
.footer-social ul li{color:#ccc; display:inline-block; margin-right:10px;height:30px; line-height: 30px; color:#fff;text-align:center;font-size:12px;}
.footer-social ul{margin:1.5em 0}
.footer-social ul li a{color:#ccc; font-size: 12px;}
.footer-social ul li:hover a{color:#fff;text-decoration:none}

@media(max-width: 768px){
	#navpart{margin-top: 58px;}
	.title-style h2{ line-height:30px; height:30px}
.about-ours .img img{ height:inherit !important}
.about-ours .right2{ display:none}
}
/* Shared subpage hero, breadcrumb and column navigation */
.subpage-hero{position:relative;width:100%;height:clamp(200px,13.55vw,260px);margin-top:98px;overflow:hidden;background:#164b83}
.subpage-hero__image{display:block;width:100%;height:100%;object-fit:cover;object-position:center}
#navpart{display:block;width:100%;height:94px;margin:0;border-bottom:1px solid #e5e5e5;background:#fff}
#navpart .subpage-nav__inner{display:flex;align-items:center;justify-content:space-between;width:calc(100% - 48px);max-width:1600px;height:100%;margin:0 auto}
#navpart .position,#navpart .column{float:none;width:auto;margin:0;padding:0}
#navpart .position{display:flex;flex:0 0 auto;align-items:center;gap:10px;color:#4d4d4d;font-size:18px;line-height:1;white-space:nowrap}
#navpart .position img{display:block;flex:0 0 15px}
#navpart .position a{color:#4d4d4d}
#navpart .position a:hover{color:#3974d9;text-decoration:none}
#navpart .column{max-width:none;overflow:visible}
#navpart .column ul,#navpart .column #scrollwidth{display:flex;align-items:center;width:auto!important;margin:0;text-align:right;white-space:nowrap}
#navpart .column ul li{display:block;float:none;height:auto;margin:0 0 0 50px;padding:0;border:0;background:transparent;font-size:18px;line-height:94px}
#navpart .column a,#navpart .column .A a,#navpart .column ul li:hover a{color:#111}
#navpart .column .A,#navpart .column ul li:hover{border:0;background:transparent}
@media(max-width:768px){.subpage-hero{height:clamp(120px,39vw,150px);margin-top:72px}#navpart{height:auto;min-height:58px}#navpart .subpage-nav__inner{display:block;width:100%}#navpart .position{min-height:48px;padding:0 4%;font-size:14px}#navpart .column{width:100%;padding:0 4% 10px;overflow-x:auto;-webkit-overflow-scrolling:touch}#navpart .column ul li{margin:0 28px 0 0;font-size:15px;line-height:42px}}
/* Search/GEO heading: semantic context without changing the established hero artwork. */
.seo-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
