* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #f8f9fa;
	color: #333;
	line-height: 1.5;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========= 导航栏 ========= */
.header-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: transparent;
	box-shadow: none;
	transition: all 0.3s;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 20px;
	flex-wrap: wrap;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-img {
	height: 55px;
	width: auto;
}

.logo-text {
	font-size: 1.4rem;
	font-weight: bold;
	color: #ffffff;
	letter-spacing: 1px;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 32px;
	margin: 0;
	padding: 0;
}

.nav-menu li a {
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 600;
	color: #ffffff;
	transition: all 0.3s;
	padding: 8px 0;
	display: inline-block;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-menu li a:hover {
	opacity: 0.85;
	color: #ffd966;
	transform: translateY(-2px);
}

.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 45px;
	left: 0;
	background: white;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	min-width: 170px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 101;
	list-style: none;
	padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
}

.dropdown-menu li a {
	padding: 10px 20px;
	display: block;
	font-size: 1rem;
	color: #2c3e50;
	text-shadow: none;
	font-weight: 500;
}

.dropdown-menu li a:hover {
	background-color: #f0f7ff;
	color: #0056b3;
}

.menu-toggle {
	display: none;
	font-size: 1.8rem;
	cursor: pointer;
	color: #ffffff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ========= Banner区域 ========= */
.banner-section {
	width: 100%;
	height: 400px;
	overflow: hidden;
	position: relative;
}

.banner-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-title {
	color: white;
	font-size: 3rem;
	font-weight: 700;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
	letter-spacing: 3px;
}

/* ========= 异形背景遮罩图 ========= */
.banner-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 13%;
	background-image: url(/Template/zhaosheng/pic/banner_bgpng.fw.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	z-index: 5;
	pointer-events: none;
}

/* ========= 面包屑导航 ========= */
.breadcrumb {
	background: #f1f5f9;
	padding: 15px 0;
	border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-content {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: #64748b;
}

.breadcrumb-content a {
	color: #0056b3;
	text-decoration: none;
	transition: color 0.3s;
}

.breadcrumb-content a:hover {
	color: #0a3d62;
}

.breadcrumb-content span {
	color: #94a3b8;
}

.breadcrumb-current {
	color: #1e293b;
	font-weight: 600;
}

/* ========= 主内容区域 ========= */
.main-content {
	padding: 50px 0;
	background: #fff;
}

.content-layout {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

/* ========= 左侧竖型导航 ========= */
.sidebar-nav {
	width: 280px;
	flex-shrink: 0;
	background: #f8fafc;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
	background: linear-gradient(135deg, #0a3d62, #0056b3);
	color: white;
	padding: 20px 25px;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: 1px;
}

.sidebar-menu {
	list-style: none;
	padding: 10px 0;
}

.sidebar-menu li {
	border-bottom: 1px solid #e2e8f0;
}

.sidebar-menu li:last-child {
	border-bottom: none;
}

.sidebar-menu li a {
	display: flex;
	align-items: center;
	padding: 16px 25px;
	color: #334155;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s;
	gap: 12px;
}

.sidebar-menu li a:hover {
	background: #e0f2fe;
	color: #0056b3;
	padding-left: 30px;
}

.sidebar-menu li a.active {
	background: #0056b3;
	color: white;
	font-weight: 600;
}

.sidebar-menu li a i {
	width: 20px;
	text-align: center;
	font-size: 0.9rem;
}

/* ========= 右侧新闻列表 ========= */
.news-content {
	flex: 1;
	min-width: 0;
}

.section-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #0a3d62;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 3px solid #0056b3;
	display: flex;
	align-items: center;
	gap: 15px;
}

.section-title i {
	color: #0056b3;
	font-size: 1.5rem;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.news-item {
	display: flex;
	align-items: center;
	padding: 22px 0;
	border-bottom: 1px solid #e2e8f0;
	transition: all 0.3s;
	gap: 20px;
}

.news-item:hover {
	background: #f8fafc;
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 8px;
	margin: 0 -15px;
}

.news-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #0056b3, #0a3d62);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.news-info {
	flex: 1;
	min-width: 0;
}

.news-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 8px;
	line-height: 1.6;
}

.news-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s;
}

.news-title a:hover {
	color: #0056b3;
}

.news-summary {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-date {
	flex-shrink: 0;
	text-align: center;
	background: #f1f5f9;
	padding: 12px 18px;
	border-radius: 10px;
	min-width: 90px;
}

.news-day {
	font-size: 1.8rem;
	font-weight: 700;
	color: #0056b3;
	line-height: 1.2;
}

.news-month-year {
	font-size: 0.8rem;
	color: #64748b;
	margin-top: 4px;
}

/* ========= 分页 ========= */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #64748b;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s;
}

.pagination a:hover {
	background: #e0f2fe;
	color: #0056b3;
	border-color: #0056b3;
}

.pagination .active {
	background: #0056b3;
	color: white;
	border-color: #0056b3;
}

.pagination .disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ========= 底部区域 ========= */
.footer {
	background-color: #0a3d62;
	position: relative;
	color: #ffffff;
	padding: 40px 20px 20px;
	margin-top: 60px;
	background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
	background-repeat: repeat;
	background-size: auto;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 61, 98, 0.85);
	z-index: 0;
}

.footer-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.footer-info,
.footer-contact,
.footer-qrcode {
	flex: 1;
	min-width: 200px;
}

.footer-qrcode {
	text-align: center;
}

.footer-qrcode h4 {
	margin-bottom: 15px;
	font-size: 1rem;
}

.qr-images {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.qr-item {
	text-align: center;
}

.qr-item img {
	width: 100px;
	height: 100px;
	background: white;
	padding: 8px;
	border-radius: 12px;
	object-fit: contain;
}

.qr-item span {
	display: block;
	font-size: 0.7rem;
	margin-top: 6px;
	color: #ddd;
}

.footer-info p,
.footer-contact p {
	line-height: 1.8;
	font-size: 0.9rem;
}

.footer a {
	color: #ffffff;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.copyright {
	position: relative;
	z-index: 2;
	text-align: center;
	margin-top: 30px;
	font-size: 0.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
}

/* ========= 响应式设计 ========= */
@media (max-width: 992px) {
	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		background: rgba(0, 86, 179, 0.95);
		backdrop-filter: blur(10px);
		width: 80%;
		height: calc(100% - 80px);
		flex-direction: column;
		padding: 40px 30px;
		box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
		transition: left 0.3s;
		z-index: 999;
		gap: 20px;
	}

	.nav-menu.active {
		left: 0;
	}

	.menu-toggle {
		display: block;
	}

	.dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		padding-left: 20px;
		background: transparent;
		display: none;
	}

	.dropdown-menu li a {
		color: white;
	}

	.dropdown-menu li a:hover {
		background: rgba(255, 255, 255, 0.2);
	}

	.dropdown:hover .dropdown-menu {
		display: block;
	}

	.content-layout {
		flex-direction: column;
	}

	.sidebar-nav {
		width: 100%;
	}

	.banner-section {
		height: 300px;
	}

	.banner-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.navbar {
		padding: 15px 20px;
	}

	.banner-section {
		height: 250px;
	}

	.banner-title {
		font-size: 1.5rem;
		letter-spacing: 2px;
	}

	.main-content {
		padding: 30px 0;
	}

	.section-title {
		font-size: 1.4rem;
	}

	.news-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.news-item:hover {
		padding-left: 10px;
		padding-right: 10px;
	}

	.news-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.news-date {
		align-self: flex-end;
		min-width: auto;
		padding: 8px 15px;
	}

	.news-day {
		font-size: 1.4rem;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-qrcode .qr-images {
		justify-content: center;
	}

	.pagination {
		gap: 5px;
	}

	.pagination a,
	.pagination span {
		min-width: 35px;
		height: 35px;
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.logo-img {
		height: 45px;
	}

	.logo-text {
		font-size: 1.1rem;
	}

	.nav-menu li a {
		font-size: 1rem;
	}

	.sidebar-menu li a {
		padding: 14px 20px;
		font-size: 0.95rem;
	}

	.news-title {
		font-size: 1rem;
	}

	.news-summary {
		font-size: 0.85rem;
	}
}