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

/*a:hover {
	color: #fff;
}*/

.shadow {
	box-shadow: 0 8px 24px rgba(191, 35, 35, 0.08);
}

body {
	padding-top: 90px;
}

body #banner {
	margin-top: 0;
}

#fixtop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	height: 90px;
}

#fixtop #header {
	box-sizing: border-box;
	height: 90px;
	background: #fff;
	padding: 0 clamp(24px, 4vw, 64px);
	border-bottom: 1px solid #edf2f8;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	transition: box-shadow 0.25s ease;
}

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

#header .nav {
	margin-left: auto;
	line-height: 1;
}

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

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

#header .navul {
	display: flex;
	align-items: center;
	gap: clamp(22px, 2.25vw, 46px);
}

#header .navli {
	position: relative;
	margin-left: 0;
}

#header .navli > a {
	position: relative;
	display: flex;
	align-items: center;
	height: 90px;
	color: #202733;
	font-size: 20px;
	font-weight: 700;
	white-space: nowrap;
	transition: color 0.22s ease;
}

#header .navli > a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 20px;
	width: 0;
	height: 2px;
	background: #ca1c1d;
	transform: translateX(-50%);
	transition: width 0.22s ease;
}

#header .navli > a:hover,
#header .navli > a:focus-visible,
#header .navli.is-active > a {
	color: #ca1c1d;
}

#header .navli > a:hover::after,
#header .navli > a:focus-visible::after,
#header .navli.is-active > a::after {
	width: 100%;
}

#header .subnav {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	z-index: 3;
	width: max-content;
	min-width: 100%;
	max-width: calc(100vw - 32px);
	padding: 0;
	background: #fff;
	border-top: 3px solid #ca1c1d;
	box-shadow: 0 18px 36px rgba(18, 48, 82, 0.16);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

#header .subnav:empty {
	display: none;
}

#header .navli:hover > .subnav,
#header .navli:focus-within > .subnav {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

#header .subnav li + li {
	border-top: 1px solid #e3e7ec;
}

#header .nav .subnav > li > a {
	display: block;
	box-sizing: border-box;
	min-height: 58px;
	padding: 15px 18px;
	color: #202733;
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	white-space: nowrap;
	transition: color 0.2s ease, background-color 0.2s ease;
}

#header .nav .subnav > li > a:hover,
#header .nav .subnav > li > a:focus-visible,
#header .nav .subnav > li.is-active > a {
	padding-left: 18px;
	color: #fff;
	background-color: #ca1c1d;
}

#header .search {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: clamp(28px, 3vw, 58px);
}

#header #search {
	position: relative;
	box-sizing: border-box;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid #dce6f1;
	border-radius: 0;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.22s ease, background-color 0.22s ease;
}

#header #search::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 13px;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	border: 2px solid #333;
	border-radius: 50%;
}

#header #search::after {
	content: '';
	position: absolute;
	left: 30px;
	top: 29px;
	width: 8px;
	height: 2px;
	background: #333;
	transform: rotate(45deg);
	transform-origin: left center;
}

#header #search:hover,
#header #search:focus-visible {
	border-color: #ca1c1d;
	background: #f4f8fd;
}

#header .ebook {
	display: flex;
	align-items: center;
	gap: 10px;
	color: red;
	font-size: 40px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

#header .ebook:hover,
#header .ebook:focus-visible {
	color: red;
}

#header .phone-icon {
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 28px;
	height: 28px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

#header .phone-icon::before {
	content: '\260E';
	position: absolute;
	left: 5px;
	top: 1px;
	font-size: 17px;
	line-height: 20px;
	transform: rotate(-24deg);
}

#header .m {
	display: none;
}

#header #mnav {
	position: relative;
	cursor: pointer;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid #dce6f1;
	background: linear-gradient(#bf2323, #bf2323) center / 18px 2px no-repeat #fff;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

#header #mnav::before,
#header #mnav::after {
	content: '';
	position: absolute;
	left: 50%;
	width: 18px;
	height: 2px;
	background: #bf2323;
	transform: translateX(-50%);
	transition: top 0.2s ease, transform 0.2s ease;
}

#header #mnav::before {
	top: 13px;
}

#header #mnav::after {
	top: 27px;
}

#header #mnav.is-open {
	border-color: #bf2323;
	background-size: 0 2px;
}

#header #mnav.is-open::before,
#header #mnav.is-open::after {
	top: 20px;
}

#header #mnav.is-open::before {
	transform: translateX(-50%) rotate(45deg);
}

#header #mnav.is-open::after {
	transform: translateX(-50%) rotate(-45deg);
}

#header .hide {
	display: none;
	position: absolute;
	top: 90px;
	right: clamp(24px, 4vw, 64px);
	padding: 16px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(191, 35, 35, 0.12);
}

#header .searchbox {
	display: flex;
	margin-top: 0;
}

#header .searchbox .serach-btn {
	width: 80px;
	height: 40px;
	text-align: center;
	border: none;
	background-color: red;
	color: #FFFFFF;
}

#header .searchbox .serach-txt {
	border: 1px solid;
	width: 300px;
	padding-left: 16px;
}

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

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

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


#header .msubnav:empty {
	display: none;
}

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

#footer {
	position: relative;
	overflow: hidden;
	background: #c9ccd1 url("../images/footer-silver-wave.png") center bottom / cover no-repeat;
	color: #252c35;
}

#footer::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 54%, rgba(72, 77, 86, 0.06) 100%);
}

#footer .footerin {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: min(100%, 1512px);
	margin: 0 auto;
	padding: clamp(64px, 6.5vw, 104px) clamp(24px, 4vw, 60px) 28px;
}

#footer .footer-main {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(210px, 0.62fr) 180px;
	gap: clamp(52px, 7vw, 112px);
	align-items: start;
	padding-bottom: clamp(52px, 5vw, 76px);
}

#footer .footer-eyebrow,
#footer .footer-nav__title {
	display: block;
	margin-bottom: 18px;
	color: #a52121;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
}

#footer .footer-profile h2 {
	max-width: 620px;
	margin: 0;
	color: #20262e;
	font-size: clamp(26px, 2.1vw, 36px);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

#footer .footer-lead {
	margin: 12px 0 34px;
	color: #5b626c;
	font-size: 15px;
	line-height: 1.8;
}

#footer .footer-contact {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 40px;
	max-width: 700px;
	margin: 0;
}

#footer .footer-contact__item {
	min-width: 0;
}

#footer .footer-contact__item--address {
	grid-column: 1 / -1;
}

#footer .footer-contact dt {
	margin-bottom: 7px;
	color: #707781;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
}

#footer .footer-contact dd,
#footer .footer-contact dd a {
	margin: 0;
	color: #2f3741;
	font-size: 15px;
	line-height: 1.7;
	word-break: break-word;
	font-variant-numeric: tabular-nums;
}

#footer .footer-contact dd a {
	display: inline-block;
	text-decoration: none;
}

#footer .footer-nav ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(78px, 1fr));
	gap: 0 30px;
	margin: 0;
}

#footer .footer-nav li {
	border-bottom: 1px solid rgba(55, 62, 71, 0.18);
}

#footer .footer-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	color: #414953;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.22s ease, padding-left 0.22s ease;
}

#footer .footer-nav a i {
	color: #a52121;
	font-size: 12px;
	font-style: normal;
	opacity: 0;
	transform: translate(-5px, 4px);
	transition: opacity 0.22s ease, transform 0.22s ease;
}

#footer .footer-nav a:hover,
#footer .footer-nav a:focus-visible,
#footer .footer-contact a:hover,
#footer .footer-contact a:focus-visible,
#footer .footer-bottom a:hover,
#footer .footer-bottom a:focus-visible {
	color: #941b1b;
}

#footer .footer-nav a:hover,
#footer .footer-nav a:focus-visible {
	padding-left: 4px;
}

#footer .footer-nav a:hover i,
#footer .footer-nav a:focus-visible i {
	opacity: 1;
	transform: translate(0, 0);
}

#footer a:focus-visible {
	outline: 2px solid #a52121;
	outline-offset: 4px;
	border-radius: 2px;
}

#footer .footer-wechat {
	margin: 0;
	text-align: center;
}

#footer .footer-wechat__code {
	box-sizing: border-box;
	width: 156px;
	margin: 0 auto;
	padding: 12px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 18px 42px rgba(45, 51, 60, 0.18);
}

#footer .footer-wechat img {
	display: block;
	width: 132px;
	height: 132px;
	object-fit: cover;
}

#footer .footer-wechat figcaption {
	display: grid;
	gap: 4px;
	margin-top: 15px;
}

#footer .footer-wechat strong {
	color: #272e37;
	font-size: 14px;
	font-weight: 600;
}

#footer .footer-wechat span {
	color: #69717b;
	font-size: 12px;
}

#footer .footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 18px 22px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(244, 246, 248, 0.76);
	box-shadow: 0 12px 34px rgba(50, 55, 64, 0.1);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

#footer .footer-bottom p {
	margin: 0;
	color: #5d6570;
	font-size: 13px;
	line-height: 1.8;
}

#footer .footer-bottom a {
	color: #3e4650;
	font-size: inherit;
	text-decoration: none;
	transition: color 0.22s ease;
}

#footer .footer-copyright a {
	margin-left: 8px;
}

#footer .footer-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	white-space: nowrap;
}

@media only screen and (max-width: 1440px) {
	#footer .footerin {
		padding-right: 4vw;
		padding-left: 4vw;
	}
	#header .navul { gap: 22px; }
	#header .search { margin-left: 28px; gap: 16px; }
}

@media only screen and (max-width: 1180px) {
	html.nav-open,
	body.nav-open {
		overflow: hidden;
	}
	body {
		padding-top: 70px;
	}
	#fixtop {
		height: 70px;
	}
	#fixtop #header {
		height: 70px;
		padding: 0 5vw;
		background-color: #fff;
	}
	#header .topnav {
		height: 70px;
	}
	#header .logo img {
		height: 60px;
		max-width: 70vw;
	}
	#header .hide {
		top: 70px;
	}
	#footer .footer-main {
		grid-template-columns: minmax(0, 1fr) minmax(210px, 0.55fr);
	}
	#footer .footer-wechat {
		display: none;
	}
	#header .nav,
	#header .search {
		display: none;
	}
	#header .m {
		display: flex;
		margin-left: auto;
	}
	#header .mnav {
		position: fixed;
		inset: 70px 0 0;
		z-index: 100;
		box-sizing: border-box;
		width: 100%;
		height: auto;
		max-height: calc(100vh - 70px);
		max-height: calc(100dvh - 70px);
		padding: 8px clamp(20px, 5vw, 56px) 28px;
		background: #fff;
		box-shadow: 0 18px 30px rgba(191, 35, 35, 0.1);
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}
	#header .mnav .mnavul {
		width: 100%;
		max-width: 720px;
		margin: 0 auto;
		text-align: left;
	}
	#header .mnav .mnavli {
		position: relative;
		border-bottom: 1px solid #e6edf5;
	}
	#header .mnav .mnavli > a {
		display: block;
		box-sizing: border-box;
		min-height: 54px;
		padding: 15px 52px 15px 4px;
		color: #202733;
		font-size: 17px;
		font-weight: 600;
		line-height: 24px;
	}
	#header .mnav .mnavli:not(.has-submenu) > a {
		padding-right: 4px;
	}
	#header .mnavli.is-active > a,
	#header .mnavli > a:hover,
	#header .mnavli > a:focus-visible {
		color: #bf2323;
	}
	#header .submenu-toggle {
		position: absolute;
		top: 6px;
		right: 0;
		width: 42px;
		height: 42px;
		padding: 0;
		border: 0;
		background: transparent;
		color: #bf2323;
		cursor: pointer;
	}
	#header .submenu-toggle::before,
	#header .submenu-toggle::after {
		content: '';
		position: absolute;
		top: 20px;
		left: 13px;
		width: 16px;
		height: 2px;
		background: currentColor;
		transition: transform 0.2s ease;
	}
	#header .submenu-toggle::after {
		transform: rotate(90deg);
	}
	#header .submenu-toggle[aria-expanded="true"]::after {
		transform: rotate(0);
	}
	#header .submenu-toggle:focus-visible {
		outline: 2px solid #d64735;
		outline-offset: -2px;
	}
	#header .msubnav li + li {
		border-top: 1px solid #e3e9f0;
	}
	#header .msubnav a {
		display: block;
		box-sizing: border-box;
		min-height: 46px;
		padding: 11px 14px;
		color: #566170;
		font-size: 15px;
		font-weight: 400;
		line-height: 24px;
		text-align: left;
	}
	#header .msubnav a:hover,
	#header .msubnav a:focus-visible,
	#header .msubnav li.is-active > a {
		color: #bf2323;
		background: #fff;
	}
}

@media only screen and (max-width: 620px) {
	#footer .footerin {
		padding: 56px 24px 24px;
	}
	#footer .footer-main {
		grid-template-columns: 1fr;
		gap: 44px;
		padding-bottom: 46px;
	}
	#footer .footer-profile h2 {
		font-size: 26px;
	}
	#footer .footer-contact {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	#footer .footer-contact__item--address {
		grid-column: auto;
	}
	#footer .footer-nav ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 24px;
	}
	#footer .footer-wechat {
		display: flex;
		align-items: center;
		gap: 18px;
		text-align: left;
	}
	#footer .footer-wechat__code {
		width: 112px;
		margin: 0;
		padding: 8px;
	}
	#footer .footer-wechat img {
		width: 96px;
		height: 96px;
	}
	#footer .footer-wechat figcaption {
		margin-top: 0;
	}
	#footer .footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}
	#footer .footer-meta {
		flex-wrap: wrap;
		gap: 8px 18px;
		white-space: normal;
	}
	#footer .footer-copyright a {
		display: inline-block;
		margin-left: 0;
	}
}


#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: #d64735;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:#bf2323;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:#d64735;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:#a61f20;}
#navpart .column .A,#navpart .column ul li:hover{background:#d64735;border:1px solid #d64735}
#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}
}


