﻿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: 72px;
	padding: 0 4.8%;
	box-sizing: border-box;
	background: #fff !important;
	border-bottom: 1px solid rgba(17, 24, 39, 0.06);
	box-shadow: 0 4px 18px rgba(18, 43, 70, 0.035);
	transition: box-shadow 0.25s ease;
}

#header .topnav {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
	align-items: center;
	flex-basis: 100%;
	width: 100%;
	height: 72px;
	max-width: 1670px;
	margin: 0 auto;
}

#header .nav {
	height: 100%;
	justify-self: center;
}

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

#header .logo img {
	display: block;
	width: 180px;
	height: auto;
	max-width: 100%;
	transform: translateX(-14.75%);
}

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

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

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

#header .navli.active > a,
#header .navli:hover > a,
#header .navli:focus-within > a {
	color: #2563eb;
}

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

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

#header .navli.has-children:hover .nav-arrow,
#header .navli.has-children:focus-within .nav-arrow {
	margin-top: 3px;
	transform: rotate(225deg);
}

#header .submenu {
	position: absolute;
	top: 72px;
	left: -30px;
	width: 254px;
	margin-left: 0;
	padding: 17px 40px 18px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 14px 28px rgba(18, 43, 70, 0.1);
	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: 39px;
}

#header .submenu a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
	color: #303744;
	font-size: 15px;
	font-weight: 400;
	white-space: nowrap;
	transition: color 0.2s ease, transform 0.2s ease;
}

#header .submenu a:hover {
	color: #2563eb;
	transform: translateX(3px);
}

#header .submenu li.active a {
	color: #2563eb;
}

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

#header .header-tools {
	display: flex;
	align-items: center;
	justify-self: end;
	height: 100%;
	margin-left: 0;
}

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

#header #search:hover {
	opacity: 0.65;
	transform: scale(1.05);
}

#header .store-link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 13px;
	box-sizing: border-box;
	border: 1px solid #e3e6eb;
	border-radius: 18px;
	color: #111827;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#header .store-link:hover {
	color: #2563eb;
	border-color: #bfcef8;
	background: #f7f9ff;
}

#header .store-icon {
	margin-right: 7px;
}

#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: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 72px;
	padding: 0;
	box-sizing: border-box;
	background: #fff;
	border-bottom: 1px solid rgba(17, 24, 39, 0.06);
	box-shadow: 0 4px 18px rgba(18, 43, 70, 0.035);
}

#header .hide form {
	display: flex;
	align-items: center;
	width: calc(100% - 48px);
	max-width: 1335px;
	height: 100%;
	margin: 0 auto;
}

#header .searchbox {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

#header .searchbox .serach-txt {
	flex: 1;
	width: auto;
	min-width: 0;
	height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
	border: 1px solid #e1e4e9;
	border-radius: 21px;
	background: #fff;
	color: #1f2937;
	font-size: 15px;
	line-height: 40px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#header .searchbox .serach-txt::placeholder {
	color: #8b8f97;
}

#header .searchbox .serach-txt:focus {
	border-color: #b8c8f8;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

#header .searchbox .serach-btn {
	display: inline-flex;
	flex: 0 0 119px;
	align-items: center;
	justify-content: center;
	gap: 5px;
	height: 38px;
	padding: 0 20px;
	box-sizing: border-box;
	cursor: pointer;
	border: none;
	border-radius: 20px;
	background-color: #315eea;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

#header .searchbox .serach-btn:hover {
	background-color: #2750d5;
}

#header .searchbox .serach-btn:active {
	transform: scale(0.98);
}

#header .search-close {
	position: relative;
	display: block;
	flex: 0 0 24px;
	width: 24px;
	height: 32px;
	margin-left: 0;
	padding: 0;
	cursor: pointer;
	border: 0;
	background: transparent;
	color: #20242b;
	transition: color 0.2s ease, transform 0.2s ease;
}

#header .search-close::before,
#header .search-close::after {
	content: "";
	position: absolute;
	top: 15px;
	left: 5px;
	width: 15px;
	height: 2px;
	border-radius: 1px;
	background: currentColor;
}

#header .search-close::before {
	transform: rotate(45deg);
}

#header .search-close::after {
	transform: rotate(-45deg);
}

#header .search-close:hover {
	color: #2563eb;
	transform: rotate(90deg);
}

#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 .topnav { grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr); }
	#header .logo img { width: 170px; }
	#header .navul { gap: 26px; }
	#header .navli > a { font-size: 15px; }
	#header .store-link { padding: 0 10px; }
}

@media only screen and (max-width: 1180px) {
	#header {
		min-height: 55px;
		padding: 0 15px;
		background: #fff !important;
	}
	#header .topnav { display: flex; 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 .mobile-store {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		margin-right: 10px;
		color: #1f2937;
	}
	#header #msearch {
		width: 20px;
		height: 20px;
		padding: 0;
		border: 0;
		background: url("../images/searchw.png") center / 18px 18px no-repeat;
		cursor: pointer;
	}
	#header #mnav {
		position: relative;
		display: block;
		width: 22px;
		height: 22px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
		margin-left: 12px;
	}
	#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;
		right: auto;
		height: 55px;
		padding: 0;
	}
	#header .hide form {
		width: calc(100% - 24px);
	}
	#header .searchbox {
		gap: 7px;
	}
	#header .searchbox .serach-txt {
		flex: 1;
		width: auto;
		min-width: 0;
		height: 36px;
		padding: 0 14px;
		font-size: 14px;
		line-height: 36px;
	}
	#header .searchbox .serach-btn {
		flex: 0 0 44px;
		height: 36px;
		padding: 0;
	}
	#header .searchbox .serach-btn span {
		display: none;
	}
	#header .search-close {
		flex-basis: 22px;
		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}
}
