html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

html,
body {
	background: #fff;
}

strong,
b {
	font-weight: 800;
}

a {
	text-decoration: none;
}

body {
	background-color: #f3f3f3;
}

.header {
	text-align: center;
	background-color: #fff;
	position: fixed;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.042);
}

.header .logo-box {
	display: block;
	width: 100%;
	color: #000;
	height: 80px;
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.072);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .logo-title {
	font-size: 30px;
	font-weight: bold;
	padding-left: 15px;
	color: #c30a0a;
	transition: 0.35s;
}

.header .nav-right {
	display: flex;
	align-items: center;
	padding-right: 15px;
}

.header .nav-right a {
	display: block;
	padding: 10px 10px;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	transition: .43s;
	margin-left: 20px;
	background-color: #c30a0a;
	color: #fff;
}

.header .nav-right span {
	transition: .43s;
}

.header .nav-right a:hover {
	transition: .43s;
	background-color: rgba(195, 10, 10, 0.85);
}

.header .nav-right a:hover span {
	display: block;
	transition: .43s;
	transform: translateX(-2px);
}

.header .navigation {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	width: 100%;
	height: 50px;
}

.header .navigation a {
	height: 40px;
	display: flex;
	align-items: center;
	color: #000;
	font-size: 14px;
	font-weight: 500;
	transition: .43s;
	position: relative;
}

.header .navigation a:hover {
	color: #c30a0a;
	transition: .43s;
}

.header .navigation a:hover:before {
	width: 100%;
	left: 0;
}

.header .navigation a:hover:after {
	right: 0;
	width: 100%;
}

.header .navigation a:after,
.header .navigation a:before {
	content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #c30a0a;
	transition: 0.43s;
}

.header .navigation a:before {
	top: -2px;
}

.header .navigation a:after {
	bottom: -3px;
}

.header .navigation a.active {
	color: #c30a0a;
}

.header .navigation a.active:before,
.header .navigation a.active:after {
	width: 100%;
}

.banner-image {
	width: 100%;
	height: 380px;
	object-fit: cover;
	margin-top: 120px;
}

.container {
	width: 1200px;
	margin: 0 auto;
}

.container-full {
	margin: 0 15px;
}

.content-container {
	margin-top: 40px;
	margin-bottom: 40px;
	padding: 20px 50px;
	border-radius: 2px;
	box-shadow: 0 -4px 9px 3px rgba(66, 66, 66, 0.023);
	position: relative;
	background: linear-gradient(rgba(255, 255, 255, 0.95), transparent);
}

.section-title {
	margin-bottom: 50px;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.35s;
	background-color: #c30a0a;
}

.section-title .title-main {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 3px;
	margin-top: 8px;
	position: relative;
	color: #fff;
	width: 200px;
}

.section-title .title-main:after {
	width: 50px;
	height: 5px;
	content: '';
	display: block;
	margin: 7px auto;
	border-radius: 10px;
	background-color: #c30a0a;
}

.section-title .title-desc {
	font-size: 15px;
	color: #999;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	display: block;
	padding: 8px;
	color: #fff;
}

.section-title .title-desc:after {
	background-color: rgba(0, 0, 0, 0.062);
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 1px;
}

.article-image {
	width: 400px;
	max-width: 400px;
	margin: 50px auto 30px auto;
	display: block;
}

.article-content p {
	font-size: 15px;
	margin-bottom: 15px;
	line-height: 20px;
}

.forms {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.forms .item {
	margin-bottom: 15px;
}

.forms .item .lab {
	font-size: 15px;
	font-weight: 600;
	color: #121212;
	margin-bottom: 6px;
}

.forms .item .entry-sty {
	border: 1px solid #ccc;
	width: 500px;
	height: 26px;
	padding: 8px;
	outline: none;
	font-size: 14px;
	transition: 0.4s;
}

.forms .item .entry-sty:focus {
	transition: 0.4s;
	border-color: #c30a0a;
}

.forms .item .submit-button {
	background-color: #c30a0a;
	color: #fff;
	border: 0;
	width: 516px;
	height: 40px;
	cursor: pointer;
}

.footer-top {
	padding: 20px 15px 30px 15px;
	color: #999999;
	display: flex;
	justify-content: space-between;
	background-color: #333;
}

.footer-top a,
.footer-top p {
	color: #999999;
	font-size: 14px;
	line-height: 1.75;
}

.footer-top a:hover {
	text-decoration: underline;
}

.footer-top .tit {
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	line-height: 40px;
	border-bottom: 1px solid #414141;
	margin-bottom: 25px;
}

.footer-top .friendly-warp {
	flex: 1;
	margin-right: 40px;
}

.footer-top .friendly-warp .friendly-box {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.footer-top .friendly-warp .friendly-box a {
	font-size: 13px;
}

.footer-top .about {
	width: 30%;
}

.footer-top .about .cont {
	font-size: 18px;
	font-weight: 600;
}

.footer-top .about .more {
	display: block;
	width: 94px;
	height: 30px;
	line-height: 30px;
	border-radius: 20px;
	text-align: center;
	border: 1px solid #484848;
	font-size: 14px;
	transition: all 0.3s;
	color: #5e5e5e;
	font-family: "宋体";
	margin-top: 20px;
	text-transform: uppercase;
	font-size: 13px;
	color: #5f5f5f;
	display: inline-block;
	vertical-align: unset;
}

.footer-top .about .more span {
	padding-right: 20px;
	transition: all 0.3s;
}

.footer-top .about .more:hover {
	border-color: #fff;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
}

.footer-top .about .more:hover span {
	color: #fff;
	padding-right: 18px;
}

.footer-center {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 0;
	background: #151515;
	color: #999999;
	font-size: 14px;
}

.footer-center a {
	color: #999999;
	font-size: 14px;
}

.footer-center a:hover {
	text-decoration: underline;
}

.footer-center span {
	margin: 0 8px;
	font-size: 12px;
}

.footer-bom {
	padding: 20px 15px;
	color: #999;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
}

.footer-bom a {
	color: #999;
	font-size: 14px;
}

.footer-bom a:hover {
	text-decoration: underline;
}

.footer-bom a,
.footer-bom span {
	margin: 0 10px;
}


@media (max-width: 1200px) {
	.container {
		width: auto;
		margin-left: 15px;
		margin-right: 15px;
	}

	.footer-top .friendly-warp .friendly-box a {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

}

@media (max-width: 1000px) {
	.header .logo-title {
		transition: 0.35s;
		font-size: 24px;
	}

	.forms {
		margin-top: 120px;
	}

	.footer-top .friendly-warp .friendly-box {
		grid-template-columns: 1fr 1fr;
	}

	.banner-image {
		height: 280px;
	}
}

@media (max-width: 768px) {
	.header .logo-title {
		font-size: 18px;
		/* padding-left: 0; */
		transition: 0.35s;
	}

	.section-title {
		transition: 0.35s;
		transform: scale(0.5);
		margin-top: -22px;
		margin-left: -50px;
	}

	.forms {
		margin-top: 50px;
	}

	.footer-top {
		flex-direction: column;
	}

	.footer-top .friendly-warp {
		margin-right: 0;
	}

	.footer-top .about {
		width: 100%;
		margin-top: 30px;
	}

	.banner-image {
		height: 200px;
	}

}

@media (max-width: 620px) {

	.forms .item {
		width: 100%;
	}

	.forms .item .submit-button,
	.forms .item .entry-sty {
		width: 100%;
		box-sizing: content-box;
	}

	.footer-top .friendly-warp .friendly-box a {
		line-height: 28px;
	}


	.header .logo-box {
		position: relative;
		z-index: 2;
		background-color: #fff;
	}

	.header {
		height: 60px;
		z-index: 22;
	}

	.banner-image {
		margin-top: 60px;
	}

	.header .nav-right {
		display: none;
	}

	#icon-menu {
		content: '';
		display: block;
		width: 20px;
		height: 17px;
		position: fixed;
		right: 15px;
		top: 20px;
		z-index: 9;
		transition: 0.4s;
		background: #c30a0a;
	}

	#icon-menu::before,
	#icon-menu::after {
		content: '';
		display: block;
		width: 100%;
		height: 4px;
		transition: 0.2s;
		background-color: #fff;
	}

	#icon-menu::before {
		margin-top: 3px;
	}

	#icon-menu::after {
		margin-top: 3px;
		height: 4px;
	}


	#icon-menu.active {
		transition: 0.4s;
	}

	#icon-menu.active::before {
		transition: 0.4s;
		margin-top: 0;
		position: absolute;
		top: 7px;
		left: 0;
		width: 100%;
		height: 3px;
		background: #fff;
		transform: rotate3d(1, 1, 2, 45deg);
	}

	#icon-menu.active::after {
		transition: 0.4s;
		margin-top: 0;
		position: absolute;
		top: 7px;
		left: 0;
		width: 100%;
		height: 3px;
		background: #fff;
		transform: rotate3d(1, 1, 2, -50deg);
	}

	.header .navigation {
		display: block;
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #fff;
		top: 0;
		padding-top: 80px;
		z-index: 1;
		text-align: center;
		transition: 0.3s;
		transform: translateY(-150vh);
	}

	.header .navigation a {
		justify-content: center;
		display: none;
		line-height: 40px;
	}

	.header .navigation.active {
		transition: 0.3s;
		transform: translateY(0);
	}

	.header .navigation.active a {
		display: block;
		transition: 0.3s;
	}

	.header .navigation a:before,
	.header .navigation a:after {
		display: none;
	}


	.article-image {
		max-width: 100%;
	}

	.footer-top .about .cont {
		font-size: 15px;
	}

}

@media (max-width: 450px) {
	.content-container {
		padding: 20px 15px;
	}

	.footer-top .tit {
		margin-bottom: 15px;
	}

	.footer-top .friendly-warp .friendly-box {
		grid-template-columns: 1fr;
	}

	.footer-top .friendly-warp .friendly-box a::before {
		content: '▸';
		margin-right: 5px;
	}

	.forms .item .submit-button,
	.forms .item .entry-sty {
		height: 40px;
		box-sizing: border-box;
	}

	.header {
		height: 50px;
	}

	.banner-image {
		margin-top: 50px;
	}

	.header .logo-title {
		font-size: 14px;
	}


	#icon-menu {
		transform: scale(0.75);
		top: 16px;
		right: 10px;
	}
}

@media (max-width: 380px) {}

@media (max-width: 350px) {}
/*
     FILE ARCHIVED ON 13:16:17 Apr 11, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 06:42:34 Mar 13, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.686
  exclusion.robots: 0.05
  exclusion.robots.policy: 0.038
  esindex: 0.01
  cdx.remote: 130.703
  LoadShardBlock: 270.717 (3)
  PetaboxLoader3.datanode: 364.031 (5)
  PetaboxLoader3.resolve: 247.368 (3)
  load_resource: 422.261
  loaddict: 91.175
*/