html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

html {
	min-height: 100%;
}

/*
 * Keep the public footer at the viewport bottom when a new site, an article
 * detail, or a timeline has only a small amount of content.  Once content is
 * taller than the viewport the same elements continue in normal document
 * flow, so this does not create an overlay or a fixed footer.
 */
body {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	min-height: 100vh;
}

@supports (min-height: 100dvh) {
	body {
		min-height: 100dvh;
	}
}

body > header.site-header,
body > nav.menu,
body > footer:not(#footer) {
	flex: 0 0 auto;
}

body > section.wrapper.main {
	flex: 1 0 auto;
	box-sizing: border-box;
}

body.wechat-dialog-open {
	overflow: hidden;
}

.wechat-dialog {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	inset: 0;
	z-index: 10020;
	display: grid;
	align-items: center;
	justify-items: center;
	box-sizing: border-box;
	padding: 18px 16px;
	padding: max(18px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
	background: rgba(24, 38, 48, .42);
	background: color-mix(in srgb, var(--site-primary-deep, #183b4a) 34%, transparent);
	backdrop-filter: blur(9px) saturate(.92);
	-webkit-backdrop-filter: blur(9px) saturate(.92);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .22s ease, visibility .22s ease;
}

.wechat-dialog.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.wechat-dialog__panel {
	--texture-ink: var(--site-primary, #2f7d91);
	--texture-accent: var(--site-accent, #83c7b4);
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	width: calc(100vw - 32px);
	max-width: 360px;
	width: min(360px, calc(100vw - 32px));
	max-height: calc(100vh - 36px);
	max-height: calc(100dvh - 36px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
	padding: 28px 24px 22px;
	border: 1px solid var(--site-border, #c8dde2);
	border-color: color-mix(in srgb, var(--site-border, #c8dde2) 78%, var(--site-surface, #fff));
	border-radius: 24px;
	color: var(--site-text, #334e5a);
	background-color: var(--site-surface, #fff);
	background-image: var(--surface-texture-image);
	background-image: var(--surface-texture-image), linear-gradient(145deg, color-mix(in srgb, var(--site-surface, #fff) 98%, white), color-mix(in srgb, var(--site-surface, #fff) 91%, var(--site-accent, #83c7b4)));
	background-position: var(--surface-texture-position), 0 0;
	background-size: var(--surface-texture-size), auto;
	box-shadow: 0 24px 70px rgba(24, 38, 48, .24);
	box-shadow: 0 24px 70px color-mix(in srgb, var(--site-primary-deep, #183b4a) 32%, transparent), inset 0 1px 0 color-mix(in srgb, white 74%, transparent);
	text-align: center;
	transform: translateY(12px) scale(.98);
	transition: transform .24s ease;
}

.wechat-dialog.is-open .wechat-dialog__panel {
	transform: translateY(0) scale(1);
}

.wechat-dialog__close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--site-border, #c8dde2);
	border-color: color-mix(in srgb, var(--site-border, #c8dde2) 74%, transparent);
	border-radius: 50%;
	color: var(--site-heading, #183b4a);
	background: var(--site-surface, #fff);
	background: color-mix(in srgb, var(--site-surface, #fff) 88%, transparent);
	font: 400 25px/1 Arial, sans-serif;
	cursor: pointer;
}

.wechat-dialog__close:hover,
.wechat-dialog__close:focus-visible {
	color: var(--site-link-hover, #236b7d);
	border-color: var(--site-accent, #83c7b4);
	outline: none;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--site-accent, #83c7b4) 20%, transparent);
}

.wechat-dialog__eyebrow {
	display: block;
	margin: 0 34px 5px;
	color: var(--site-accent, #2f7d91);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .13em;
}

.wechat-dialog__panel h2 {
	margin: 0;
	color: var(--site-heading, #183b4a);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
}

.wechat-dialog__panel > p {
	margin: 7px auto 16px;
	color: var(--site-muted, #708691);
	font-size: 13px;
	line-height: 1.65;
}

.wechat-dialog__code {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 64vw;
	max-width: 244px;
	width: min(244px, 64vw);
	height: 64vw;
	max-height: 244px;
	height: min(244px, 64vw);
	aspect-ratio: 1;
	margin: 0 auto 18px;
	padding: 12px;
	border: 1px solid color-mix(in srgb, var(--site-border, #c8dde2) 84%, white);
	border-radius: 19px;
	background: #fff;
	box-shadow: 0 12px 28px color-mix(in srgb, var(--site-primary, #2f7d91) 14%, transparent), inset 0 0 0 5px color-mix(in srgb, var(--site-accent, #83c7b4) 8%, white);
}

.wechat-dialog__code img {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
	object-position: center;
}

.wechat-dialog__actions {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 10px;
}

.wechat-dialog__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 44px;
	padding: 9px 14px;
	border: 1px solid transparent;
	border-radius: 13px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.wechat-dialog__button.is-secondary {
	color: var(--site-heading, #183b4a);
	border-color: var(--site-border, #c8dde2);
	border-color: color-mix(in srgb, var(--site-border, #c8dde2) 84%, transparent);
	background: var(--site-surface, #fff);
	background: color-mix(in srgb, var(--site-surface, #fff) 88%, var(--site-body-bg, #f4f8f9));
}

.wechat-dialog__button.is-primary {
	color: #fff;
	color: color-mix(in srgb, white 94%, var(--site-surface, #fff));
	background: var(--site-accent, #2f7d91);
	background: linear-gradient(135deg, var(--site-accent, #2f7d91), color-mix(in srgb, var(--site-accent, #2f7d91) 68%, var(--site-primary, #236b7d)));
	box-shadow: 0 8px 18px color-mix(in srgb, var(--site-accent, #2f7d91) 24%, transparent);
}

.wechat-dialog__button:hover,
.wechat-dialog__button:focus-visible {
	transform: translateY(-1px);
	outline: none;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--site-accent, #2f7d91) 24%, transparent);
}

@media (max-width: 420px) {
	.wechat-dialog {
		align-items: end;
		padding-right: max(10px, env(safe-area-inset-right));
		padding-bottom: max(10px, env(safe-area-inset-bottom));
		padding-left: max(10px, env(safe-area-inset-left));
	}

	.wechat-dialog__panel {
		width: 100%;
		padding: 24px 18px 18px;
		border-radius: 22px;
	}

	.wechat-dialog__panel h2 {
		font-size: 21px;
	}

	.wechat-dialog__code {
		width: min(220px, 62vw);
		height: min(220px, 62vw);
		padding: 10px;
		border-radius: 17px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wechat-dialog,
	.wechat-dialog__panel,
	.wechat-dialog__button {
		transition: none;
	}
}

/* `clip` prevents fixed/off-screen decorations from creating a horizontal
   scroll range while keeping the page itself as the vertical scroller. */
@supports (overflow-x: clip) {
	html,
	body {
		overflow-x: clip;
	}
}
body {
	background: #eee url(img/bg.png) repeat;
	line-height: 25px;
}
::selection {
	color: #003399;
	background: #fff;
}
/*头部：所有尺寸均由可视区域约束，不再由上传图片的原始尺寸撑高。*/
header.site-header {
	position: relative;
	padding: 0;
	background: #0066cc;
	border-bottom: 5px solid #003b68;
}

.site-header-layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	box-sizing: border-box;
	min-height: 122px;
	padding: 12px 0;
	gap: clamp(20px, 3.5vw, 48px);
}

.site-heading {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.site-brand {
	display: flex;
	align-items: center;
	justify-self: start;
	box-sizing: border-box;
	width: fit-content;
	max-width: 100%;
	min-width: 0;
	padding: 8px 17px 8px 10px;
	gap: clamp(12px, 1.4vw, 18px);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 18px;
	background: rgba(255, 255, 255, .07);
	box-shadow: 0 9px 28px rgba(0, 0, 0, .09);
}

.site-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 175px;
	width: 175px;
	max-width: 175px;
	height: 82px;
	aspect-ratio: auto;
}

.site-logo-link.has-no-logo {
	display: none;
	width: 0;
	height: 0;
}

.site-logo-link.has-no-logo + .site-brand-copy {
	max-width: min(70vw, 520px);
	padding-left: 0;
	border-left: 0;
}

header .site-logo {
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
	margin: 0;
	object-fit: contain;
	object-position: center;
	image-rendering: auto;
}

.site-brand-copy {
	min-width: 0;
	max-width: clamp(170px, 28vw, 410px);
	padding-left: clamp(12px, 1.4vw, 18px);
	border-left: 1px solid rgba(255, 255, 255, .24);
	color: #fff;
}

header strong.site-title {
	position: static;
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: #fff;
	font-size: clamp(18px, 1.5vw, 24px);
	font-weight: 600;
	line-height: 1.32;
	letter-spacing: .005em;
	overflow-wrap: anywhere;
	word-break: break-word;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.site-brand-rule {
	display: none;
}

.site-header-extras {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	max-width: min(48vw, 530px);
	gap: clamp(12px, 2vw, 24px);
}

.site-header-extras.without-wechat {
	max-width: min(52vw, 620px);
}

.site-header-extras.without-wechat .site-header-panel {
	flex-basis: 420px;
	width: clamp(240px, 34vw, 420px);
}

.site-header-panel {
	display: flex;
	flex: 0 1 290px;
	flex-direction: column;
	width: clamp(210px, 23vw, 290px);
	min-width: 0;
}

.site-header-panel.is-compact {
	flex-basis: auto;
	width: auto;
	max-width: min(100%, 380px);
}

.site-quick-links {
	overflow: hidden;
	max-height: 27px;
}

.site-quick-links ul {
	display: flex;
	justify-content: flex-end;
	overflow: hidden;
	gap: 8px;
}

header .site-quick-links li {
	float: none;
	min-width: 0;
}

header .site-quick-links li a {
	display: block;
	overflow: hidden;
	max-width: 118px;
	margin: 0;
	color: #fff;
	font-size: 12px;
	line-height: 25px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/*名片内容最多展示两行，避免用户输入较长文字后推高整个页头。*/
header .site-profile-card {
	box-sizing: border-box;
	width: 100%;
	margin: 7px 0 0;
	padding: 0;
	background: #fff;
}

header .site-profile-card h3 {
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 9px 14px 8px;
	color: #fff;
	background: #6dcc26;
	font-size: 14px;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

header .site-profile-copy {
	display: -webkit-box;
	overflow: hidden;
	box-sizing: border-box;
	max-height: 48px;
	padding: 8px 14px 9px;
	font-size: 12px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

header .site-profile-copy p {
	margin: 0;
	padding: 0;
}

/* 单独填写标题或正文时改用完整的独立卡片，避免响应式双栏留下空白占位。 */
header .site-profile-card.is-title-only {
	display: block;
	width: fit-content;
	max-width: min(100%, 380px);
	margin-right: auto;
	margin-left: auto;
	padding: 0;
	border: 0;
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
}

/* 配色方案会给通用 .card 再注入表面渐变。标题独立显示时必须清除
 * 这层外壳，否则圆角边缘会露出一圈白底，看起来像兼容性描边。 */
header .site-profile-card.is-title-only.card::before,
header .site-profile-card.is-title-only.card::after {
	display: none !important;
	content: none !important;
}

header .site-profile-card.is-title-only h3 {
	display: flex;
	align-items: center;
	max-width: min(68vw, 380px);
	padding: 9px 16px 10px;
	gap: 7px;
	border: 0;
	border-radius: 14px;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--site-primary-deep) 18%, transparent);
	line-height: 1.42;
	text-align: left;
	text-overflow: clip;
	text-wrap: balance;
	white-space: normal;
}

header .site-profile-card.is-title-only h3::before {
	content: "“";
	flex: 0 0 auto;
	margin-top: -2px;
	font-family: Georgia, serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	opacity: .72;
}

header .site-profile-card.is-content-only {
	display: block;
	border: 1px solid color-mix(in srgb, var(--site-accent) 28%, transparent);
	border-radius: 14px;
}

header .site-profile-card.is-content-only .site-profile-copy {
	display: block;
	max-height: 62px;
	padding: 10px 16px 11px;
	border-left: 4px solid var(--site-accent);
}

header .wechat {
	flex: 0 0 auto;
	margin: 0;
	color: #fff;
}

header .wechat img {
	display: block;
	box-sizing: border-box;
	width: clamp(92px, 9vw, 116px);
	height: clamp(92px, 9vw, 116px);
	margin: 0;
	padding: 5px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .88);
	object-fit: contain;
}

header .wechat a {
	color: #fff;
}
/*导航菜单*/
nav.menu {
	background: #003399;
}
nav.menu li {
	position: relative;
	float: left;
}
nav.menu li a {
	color: #fff;
	line-height: 39px;
	padding: 3px 5px;
	font-size: 1em;
}
nav.menu li a:hover, .menu li a.current {
	color: #999;
}
nav.menu li a.current:before, .menu li a:hover:before {
	position: absolute;
	content: '';
	bottom: -12px;
	left: 50%;
	border: 6px solid;
	border-color: #003399 transparent transparent transparent;
	margin-left: -6px;
}
/*内容*/
.main {
	padding: 20px 0;
}
/*文章*/
article {
	width: 72%;
	float: left;
}
/*相关信息*/
aside {
	width: 26%;
	float: right;
}
/*底部*/
footer, footer a {
	color: #fff;
}
footer .footer1 {
	background: #0066cc;
}
footer .footer1 .friendlink {
	width: 50%;
	float: left;
	margin-bottom: 10px;
}
footer .footer1 p {
	margin-top: 5px;
}
footer .footer1 p a {
	font-size: 0.875em;
	padding: 5px;
}
footer .footer1 .contact {
	float: right;
	width: 30%;
	padding: 10px;
	border: 1px solid #fff;
	border-radius: 5px;
}
footer .footer2 {
	background: #003399;
	font-size: 0.75em;
	padding: 5px 0;
	color: #999;
	text-align: center;
}
footer .footer2 .wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 12px;
	padding-left: 12px;
}
footer .footer2 p {
	max-width: 100%;
	margin: 0;
	line-height: 1.7;
	text-align: center;
	overflow-wrap: anywhere;
	word-break: break-word;
}

@media screen and (max-width:1100px) {
	.site-header-layout {
		min-height: 114px;
		gap: 18px;
	}
	.site-logo-link {
		flex-basis: 160px;
		width: 160px;
		max-width: 160px;
		height: 76px;
	}
	header .site-logo {
		height: 100%;
	}
	.site-header-extras {
		max-width: 46vw;
		gap: 12px;
	}
	.site-header-panel {
		width: clamp(196px, 22vw, 250px);
	}
	header .wechat img {
		width: 88px;
		height: 88px;
	}
}

@media screen and (max-width:900px) {
	.site-header-layout {
		grid-template-columns: minmax(0, 1fr);
		min-height: auto;
		padding: 10px 0;
		gap: 8px;
	}
	.site-brand {
		justify-self: center;
	}
	.site-header-extras {
		justify-self: center;
		width: min(100%, 440px);
		max-width: none;
	}
	.site-header-extras:not(.has-panel) {
		display: none;
	}
	header .wechat {
		display: none;
	}
	.site-header-panel {
		width: 100%;
		flex-basis: auto;
	}
	.site-header-extras.without-wechat .site-header-panel {
		width: 100%;
		flex-basis: auto;
	}
}

@media screen and (max-width:768px) {
.wrapper {
	width: 96%;
	margin: 0 auto;
}
.site-header-layout {
	min-height: auto;
	padding: 9px 0;
	gap: 8px;
}
.site-brand {
	justify-content: center;
	padding: 7px 14px 7px 9px;
	gap: 11px;
	border-radius: 16px;
}
.site-logo-link {
	flex-basis: 126px;
	width: 126px;
	max-width: 126px;
	height: 62px;
}
header .site-logo {
	height: 100%;
}
.site-brand-copy {
	max-width: min(45vw, 300px);
	padding-left: 13px;
}
header strong.site-title {
	font-size: clamp(17px, 4vw, 21px);
}
.site-header-extras {
	justify-content: center;
	width: 100%;
	max-width: none;
}
.site-header-panel {
	width: min(100%, 440px);
	flex-basis: auto;
}
.site-quick-links ul {
	justify-content: center;
}
header .site-profile-card {
	display: grid;
	grid-template-columns: minmax(96px, .38fr) minmax(0, 1fr);
	align-items: stretch;
	margin-top: 4px;
}
header .site-profile-card h3 {
	display: flex;
	align-items: center;
	white-space: normal;
}
header .site-profile-copy {
	align-self: center;
	max-height: 46px;
}
article, aside, footer .footer1 .friendlink, footer .footer1 .contact {
	float: none;
	width: 100%;
	box-sizing: border-box;
}
#footer {
	display: block;
}
header .wechat{display:none;}
}

@media screen and (max-width:480px) {
	.site-header-layout {
		padding: 8px 0;
	}
	.site-brand {
		justify-content: center;
		padding: 6px 11px 6px 8px;
		gap: 8px;
		border-radius: 14px;
	}
	.site-logo-link {
		flex-basis: 112px;
		width: 112px;
		max-width: 112px;
		height: 56px;
	}
	header .site-logo {
		height: 100%;
	}
	.site-brand-copy {
		max-width: calc(100vw - 152px);
		padding-left: 10px;
	}
	.site-quick-links {
		display: none;
	}
	header .site-profile-card {
		grid-template-columns: minmax(86px, .34fr) minmax(0, 1fr);
		margin-top: 0;
	}
	header .site-profile-card h3,
	header .site-profile-copy {
		padding: 7px 10px;
	}
}

@media screen and (min-width:769px) {
.wrapper {
	width: 80%;
	margin: 0 auto;
}
#footer {
	display: none;
}
}
footer .nav {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 99;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: 43px;
	box-sizing: content-box;
	padding-bottom: env(safe-area-inset-bottom, 0px);
}
.nav {
	text-align: center;
	line-height: 43px;
	border-top: 1px solid #707070;
	width: 100%;
	background: rgb(69,72,77); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(69,72,77,1) 0%, rgba(0,0,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(69,72,77,1)), color-stop(100%, rgba(0,0,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(69,72,77,1) 0%, rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(69,72,77,1) 0%, rgba(0,0,0,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(69,72,77,1) 0%, rgba(0,0,0,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(69,72,77,1) 0%, rgba(0,0,0,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000', GradientType=0 ); /* IE6-9 */
}
#footer .nav > li {
	-webkit-background-size: auto 80%;
	background-size: auto 50%;
	background: url(../default/img/li.png) no-repeat right center transparent;
	box-sizing: border-box;
	float: none;
	width: auto;
	min-width: 0;
	height: 43px;
}
#footer .nav > li > a {
	display: inline-block;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	font-weight: bold;
	font-size: 1rem;
	text-indent: 5px;
}

#footer .nav > li:not(.home) > a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	box-sizing: border-box;
	padding: 0 7px;
	line-height: 1.15;
	text-indent: 0;
	background-image: none;
}

#footer .nav > li:not(.home) > a::before {
	display: block;
	width: 21px;
	height: 20px;
	flex: 0 0 21px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
}

#footer .nav > li > a.tel::before {
	background-image: url(../default/img/tel.png);
}

#footer .nav > li > a.add::before {
	background-image: url(../default/img/add.png);
}

#footer .nav > li > a.help::before {
	background-image: url(../default/img/help.png);
}
/*
.box {width: 100%;display: -webkit-box;display: -moz-box;-webkit-box-orient: horizontal;-moz-box-orient: horizontal;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;}
.box > * {-webkit-box-flex: 1;-moz-box-flex: 1;}
*/
#footer .nav > li.home {
	position: relative;
	height: 43px;
}

@media screen and (max-width:768px) {
	body {
		/* Reserve the fixed navigation and the device safe area. */
		padding-bottom: calc(44px + env(safe-area-inset-bottom, 0px));
	}
	#footer .nav > li:not(.home) > a {
		gap: 4px;
		padding: 0 2px;
		font-size: clamp(12px, 3.4vw, 15px);
		white-space: nowrap;
	}
	#footer .nav > li:not(.home) > a::before {
		width: 18px;
		height: 18px;
		flex-basis: 18px;
	}
}
#footer .nav > li.home .home-img {
	position: absolute;
	left: 50%;
	top: -15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 46px;
	height: 46px;
	margin: 0;
	border: 3px solid transparent;
	border-radius: 50%;
	line-height: 1;
	text-indent: 0;
	transform: translateX(-50%);
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
#footer .nav > li.home .home-glyph {
	position: relative;
	display: block;
	width: 16px;
	height: 12px;
	margin-top: 5px;
	border-radius: 2px 2px 3px 3px;
	background: currentColor;
}
#footer .nav > li.home .home-glyph::before {
	position: absolute;
	left: -2px;
	top: -8px;
	width: 0;
	height: 0;
	border-right: 10px solid transparent;
	border-bottom: 9px solid currentColor;
	border-left: 10px solid transparent;
	content: "";
}
#footer .nav > li.home .home-glyph::after {
	position: absolute;
	right: 3px;
	bottom: 0;
	width: 4px;
	height: 7px;
	border-radius: 2px 2px 0 0;
	background: var(--mobile-home-door, rgba(0, 0, 0, .34));
	content: "";
}
#footer .nav > li.home .home-img:hover,
#footer .nav > li.home .home-img:focus-visible {
	transform: translateX(-50%) translateY(-2px);
}
#footer .nav > li.home .home-img:active {
	transform: translateX(-50%) translateY(1px) scale(.96);
}
.tel {
	background: url(../default/img/tel.png) no-repeat 10px center;
	background-size: 21px 20px;
}
.add {
	background: url(../default/img/add.png) no-repeat 10px center;
	background-size: 21px 20px;
}
.help {
	background: url(../default/img/help.png) no-repeat 10px center;
	background-size: 21px 20px;
}
.nav_header_list {
	display: none;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#0066cc), to(#003399));
	background: -moz-linear-gradient(center top, #0066cc, #003399);
	width: 100px;
	position: absolute;
	bottom: 43px;
	border-radius: 5px 5px 0 0;
	z-index: 1000;
	left: 50%;
	margin-left: -55px;
	text-align: left;
	border: 1px solid #0066cc;
	overflow: hidden;
}
.nav_header_list.on {
	display: inline-block;
}
.nav_header_list a {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	display: block;
	line-height: 35px;
	overflow: hidden;
	text-overflow: ellipsis;
	border-top: 1px solid #0066cc;
	border-bottom: 1px solid #003399;
	text-align: center;
	width: 100px;
	text-align: left;
	text-indent: 10px;
}
/*错误页面*/
.error{ position:absolute; width:560px; padding:10px 0; color:#5c6049;}
.error strong{font-size:80px; font-family:Georgia, "Times New Roman", Times, serif}
/*返回主页*/
.return{position:fixed; right:0; top:350px; z-index:99;}
.return li a{width: 100px;
height: 30px;
display: block;
background: #fff;
margin-top: 1px;
transition: all ease-out .2s;
line-height: 30px;
color: #fff;
position: relative;
right: -63px;}
.return li a span {display:inline-block; float:left;background:url(../public/img/icon.png) no-repeat;
width: 37px;
height: 30px; font-size:12px;}
.return li a:hover {
background-color: #6BC30D;font-size:12px; text-decoration:none;
right: 0;}
.return li a.home span{background-position: -74px -30px;}
.return li a.home:hover span{background-position: -37px -60px;}
.return li a.attention span{background-position: -0px -90px;}
.return li a.attention:hover span{background-position: -37px -30px;}
.return li a.letter span{background-position: -0px -30px;}
.return li a.letter:hover span{background-position: -0px -60px;}

@media screen and (max-width:768px) {
	/* Desktop expands these shortcuts on hover.  Moving a 100px link 63px
	   outside the viewport can enlarge scrollWidth in mobile WebViews, so the
	   touch layout is an icon-only rail whose complete box stays on screen. */
	.return {
		right: max(0px, env(safe-area-inset-right, 0px));
		width: 37px;
		max-width: 37px;
		overflow: hidden;
	}

	.return li,
	.return li a,
	.return li a:hover,
	.return li a:focus,
	.return li a:active {
		box-sizing: border-box;
		width: 37px;
		max-width: 37px;
		right: 0;
		overflow: hidden;
	}

	.return li a span {
		float: none;
		display: block;
	}
}
