/* 全站共享 — 设计令牌 + 顶栏/导航/页脚 */
:root {
	--theme-colors: #a72126;
	--theme-dark: #8a1a1e;
	--theme-light: #c9353a;
	--theme-accent: #c9a227;
	--theme-muted: color-mix(in srgb, var(--theme-colors) 10%, white);
	--font-colors: #fff;
	--font-typeface: "PingFang SC", "Microsoft YaHei", "微软雅黑", sans-serif;
	--text-primary: #1a1a1a;
	--text-secondary: #555;
	--text-muted: #999;
	--bg-page: #f7f7f7;
	--bg-card: #fff;
	--bg-light: #f5f5f5;
	--bg-sidebar: #f0f0f0;
	--border-light: #e5e5e5;
	--page-max: 1200px;
	--nav-height: 64px;
	--shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 6px 24px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--transition: 200ms ease;
}

* {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	margin: 0;
	font: 14px/1.7, var(--font-typeface);
	color: var(--text-secondary);
	background: var(--bg-page);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::selection {
	background: var(--theme-muted);
	color: var(--theme-dark);
}

form,
ul,
li,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	border: none;
}

a {
	color: var(--text-secondary);
	font-size: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--theme-colors);
}

a:focus-visible {
	outline: 2px solid var(--theme-colors);
	outline-offset: 2px;
}

input {
	outline: none;
}

input::placeholder {
	color: var(--font-colors);
	font-size: 16px;
}

#wfsykjgz {
	width: 100%;
	height: 100%;
}

/* ── 顶部 Header ── */
.top {
	display: flex;
	justify-content: center;
	width: 100%;
	background: var(--bg-card);
	border-bottom: 1px solid var(--border-light);
}

.top_head {
	width: var(--page-max);
	max-width: calc(100% - 40px);
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top_logo {
	float: none;
}

.top_logo img {
	width: 560px;
	max-width: 100%;
}

.top_xiaoxun {
	float: none;
	padding-top: 0;
}

.top_xiaoxun img {
	width: 300px;
	max-width: 100%;
}

/* ── 导航栏 ── */
.navigation {
	display: flex;
	justify-content: center;
	width: 100%;
	height: var(--nav-height);
	background: linear-gradient(180deg, var(--theme-colors) 0%, var(--theme-dark) 100%);
	color: var(--font-colors);
	box-shadow: var(--shadow-md);
	border-bottom: 3px solid var(--theme-accent);
}

.navigation ul {
	float: left;
	width: 980px;
}

.navigation ul li a {
	color: var(--font-colors);
	cursor: default;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	float: left;
	width: 98px;
	display: block;
	font: 17px / var(--nav-height) var(--font-typeface);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-align: center;
	transition: background var(--transition), opacity var(--transition);
}

.navigation ul li a:hover {
	background: rgba(255, 255, 255, 0.14);
}

.navigation ul li a:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: -2px;
	background: rgba(255, 255, 255, 0.1);
}

.navigation ul li a:active {
	background-color: color-mix(in srgb, var(--theme-colors) 80%, black 20%);
}

.search {
	float: right;
	width: 220px;
	display: flex;
	justify-content: center;
}

.search input[type="search"] {
	width: 161px;
	font-size: 15px;
	line-height: 32px;
	border: 1px rgba(255, 255, 255, 0.6) solid;
	border-right: none;
	margin: 14px 0 14px 10px;
	border-radius: 30px 0 0 30px;
	padding: 4px 5px 4px 16px;
	background-color: rgba(255, 255, 255, 0.12);
	color: var(--font-colors);
}

.search button {
	line-height: 32px;
	border: 1px rgba(255, 255, 255, 0.6) solid;
	border-left: none;
	margin: 14px 10px 14px 0;
	border-radius: 0 30px 30px 0;
	padding: 4px 6px;
	background-color: rgba(255, 255, 255, 0.12);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: background var(--transition);
}

.search input[type="search"]:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: 0;
	background-color: rgba(255, 255, 255, 0.18);
}

.search button:hover {
	background-color: rgba(255, 255, 255, 0.22);
}

.search button:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: 2px;
}

.search button img {
	width: 29px;
	height: 29px;
}

/* ── 页脚 ── */
.footer {
	width: 100%;
	background: linear-gradient(180deg, var(--theme-colors) 0%, var(--theme-dark) 100%);
	background-repeat: no-repeat;
	background-position: center;
	padding: 44px 0 44px;
	overflow: hidden;
	color: var(--font-colors);
	border-top: 3px solid var(--theme-accent);
	font-size: 17px;
	line-height: 2;
	letter-spacing: 0.02em;
}

.container {
	width: 100%;
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.footer-top {
	padding-bottom: 28px;
	overflow: visible;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 48px;
}

.footer-logo {
	width: 220px;
	flex: 0 0 220px;
}

.footer-logo img {
	width: 100%;
	max-width: 220px;
	display: block;
}

.footer-nav {
	border-top: none;
	line-height: 1.8;
	font-size: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: var(--font-colors);
	padding: 8px 0;
	flex: 1 1 auto;
	overflow: visible;
	gap: 12px 28px;
}

.footer-nav-box {
	padding: 0;
	font-size: 16px;
	color: var(--font-colors);
	white-space: normal;
	word-break: break-word;
	flex-shrink: 1;
	border-right: none;
	text-align: center;
}

.footer-nav-box:last-child {
	border-right: none;
}

.footer-nav-box a {
	color: var(--font-colors);
	font-size: 16px;
	font-weight: 600;
	transition: opacity var(--transition);
}

.footer-nav-box a:hover {
	opacity: 0.88;
	text-decoration: underline;
}

.footer-phones {
	white-space: normal;
}

.footer-phones a {
	white-space: normal;
	font-size: 16px;
	font-weight: 600;
}

.copyright {
	width: 100%;
	margin: 0 auto;
	overflow: visible;
	text-align: center;
	padding-top: 28px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 12px 32px;
}

.copyrightBox {
	border-right: none;
	padding: 0;
	font-size: 16px;
	color: var(--font-colors);
	opacity: 0.95;
	white-space: normal;
	word-break: break-word;
	flex-shrink: 1;
	text-align: center;
}

.copyrightBox:last-child {
	border-right: none;
}

.copyrightBox a {
	color: var(--font-colors);
	font-size: 16px;
	transition: opacity var(--transition);
}

.copyrightBox a:hover {
	opacity: 0.88;
	text-decoration: underline;
}

/* ── 窄窗口适配 ── */
@media (max-width: 1200px) {
	.footer-top {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.footer-logo {
		width: auto;
		flex: none;
		margin-bottom: 0;
	}

	.footer-logo img {
		max-width: 240px;
	}

	.footer-nav {
		width: 100%;
		justify-content: center;
		padding: 4px 0;
	}

	.footer-nav-box {
		width: 100%;
		max-width: 100%;
		padding: 0 8px;
		box-sizing: border-box;
	}

	.navigation {
		overflow-x: auto;
		justify-content: flex-start;
		padding: 0 10px;
		box-sizing: border-box;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.navigation::-webkit-scrollbar {
		display: none;
	}

	.navigation ul {
		width: auto;
		min-width: max-content;
		float: none;
		display: flex;
		flex-wrap: nowrap;
	}

	.navigation ul li a {
		float: none;
		flex-shrink: 0;
	}

	.search {
		flex-shrink: 0;
		float: none;
	}
}

@media (max-width: 900px) {
	.top_head {
		flex-wrap: wrap;
		height: auto;
		padding: 12px 0;
		justify-content: center;
		gap: 8px;
	}

	.top_logo img {
		width: 100%;
		max-width: 420px;
	}

	.top_xiaoxun img {
		width: 100%;
		max-width: 260px;
	}
}
