* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #eef2f5;
	font-family: 'Microsoft YaHei', 'PingFang SC', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	color: #1e2a3e;
	line-height: 1.5;
}

a {
	color: #1f6e7a;
	text-decoration: none;
	transition: color 0.2s ease;
}
a:hover {
	color: #c89d3e;
}

/* 顶部栏 */
.szpm-topbar {
	background: #0e4b57;
	color: #e7f0f2;
	font-size: 13px;
}
.szpm-topbar .inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 8px 24px;
	text-align: right;
}

/* 主头部 */
.szpm-header {
	background: #ffffff;
	border-bottom: 1px solid #e2e8f0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.szpm-header .inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.szpm-brand img {
	max-width: 340px;
	height: auto;
	display: block;
}
.szpm-contact {
	text-align: right;
	padding: 8px 20px;
	border-radius: 10px;
}
.szpm-contact .phone {
	font-size: 26px;
	font-weight: 700;
	color: #0f5c68;
}
.szpm-contact .txt {
	font-size: 13px;
	color: #4b5e6c;
	margin-top: 4px;
}

/* 导航栏 - 靠左显示 */
.szpm-nav {
	background: #0f5c68;
	border-top: 1px solid #0a4852;
	border-bottom: 1px solid #0a4852;
}
.szpm-nav .inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding-left: 24px;
}
.szpm-nav a {
	display: inline-block;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 52px;
	padding: 0 26px;
	transition: all 0.2s;
}
.szpm-nav a:hover {
	background: #0a4852;
	color: #ffdeac;
}
.szpm-nav a:first-child {
	padding-left: 0;
}

/* Banner 幻灯片 - 高度固定为200px */
.banner-container {
	max-width: 1200px;
	margin: 20px auto 0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}
.swiper {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.slides {
	display: flex;
	transition: transform 0.5s ease;
	width: 100%;
}
.slide {
	flex: 0 0 100%;
	width: 100%;
}
.slide img {
	width: 100%;
	height: 200px;           /* 固定高度200px */
	display: block;
	object-fit: cover;       /* 裁剪填充，保持比例 */
	background: #0b5f73;
}
.banner-dots {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 12px;
	z-index: 5;
}
.dot {
	width: 10px;
	height: 10px;
	background: rgba(255,255,255,0.6);
	border-radius: 50%;
	cursor: pointer;
	transition: 0.2s;
}
.dot.active {
	background: #c89d3e;
	width: 24px;
	border-radius: 6px;
}

/* 跑马灯最新公告 */
.latest-ticker {
	max-width: 1200px;
	margin: 18px auto 0;
	background: #ffffff;
	border-radius: 10px;
	border: 1px solid #e2edf2;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.ticker-label {
	background: #c89d3e;
	color: #1f2e36;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 10px;
	font-size: 14px;
	white-space: nowrap;
}
.ticker-wrap {
	flex: 1;
	overflow: hidden;
	position: relative;
}
.ticker-content {
	display: inline-block;
	white-space: nowrap;
	animation: tickerScroll 15s linear infinite;
	font-size: 15px;
}
@keyframes tickerScroll {
	0% { transform: translateX(100%); }
	100% { transform: translateX(-100%); }
}
.ticker-wrap:hover .ticker-content {
	animation-play-state: paused;
}

/* 主体卡片容器 */
.main-wrapper {
	max-width: 1200px;
	margin: 20px auto;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
	overflow: hidden;
	border: 1px solid #e9f0f3;
}

/* 左右强制并排 */
.home-grid {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
}
.sidebar-left {
	width: 300px;
	flex-shrink: 0;
	background: #fefefc;
	border-right: 1px solid #eef3f6;
	padding: 28px 0 32px 0;
}
.main-content {
	flex: 1;
	min-width: 0;
	padding: 28px 20px 40px 20px;
	background: #ffffff;
}
@media screen and (max-width: 1000px) {
	.home-grid {
		flex-wrap: wrap;
	}
	.sidebar-left {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #eef3f6;
	}
	.main-content {
		padding: 28px 20px;
	}
	.szpm-nav a {
		padding: 0 18px;
		font-size: 14px;
	}
	.szpm-nav a:first-child {
		padding-left: 18px;
	}
	/* 移动端幻灯片高度适当缩小 */
	.slide img {
		height: 150px;
	}
}

/* 侧边栏内部样式 */
.side-card {
	background: #ffffff;
	margin: 0 16px 24px 16px;
	border-radius: 10px;
	border: 1px solid #eef2f8;
	overflow: hidden;
}
.side-title {
	background: #f0f6f9;
	border-left: 4px solid #c89d3e;
	padding: 12px 18px;
	font-size: 17px;
	font-weight: 700;
	color: #1e4b56;
}
.side-menu {
	list-style: none;
	padding: 8px 0;
}
.side-menu li {
	border-bottom: 1px dashed #e2edf2;
}
.side-menu li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 500;
	color: #2c5f6b;
}
.side-menu li a:before {
	font-size: 12px;
}
.side-menu li a:hover {
	color: #c89d3e;
	background: #faf5eb;
	padding-left: 24px;
}
.contact-info {
	padding: 12px 18px;
}
.contact-info table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.contact-info td {
	padding: 8px 4px;
	color: #2c4e5a;
}
.contact-info td:first-child {
	font-weight: 600;
	width: 58px;
	color: #0f5c68;
}
.badge-img {
	text-align: center;
	padding: 16px 0;
}
.badge-img img {
	max-width: 160px;
	border-radius: 10px;
}



/* 页脚 */
.szpm-footer {
	background: #0f2c32;
	color: #cfdfe5;
	margin-top: 20px;
	padding: 40px 20px 35px;
}
.szpm-footer-container {
	max-width: 1200px;
	margin: 0 auto;
}
.szpm-footer-nav {
	text-align: center;
	margin-bottom: 28px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}
.szpm-footer-nav a {
	color: #e7f0f2;
	margin: 0 12px;
	font-size: 14px;
	font-weight: 500;
}
.szpm-footer-nav a:hover {
	color: #e2bc7c;
}
.szpm-footer-company {
	text-align: center;
	line-height: 1.8;
	font-size: 14px;
	color: #bdd4dc;
}
.szpm-footer-company a {
	color: #e2bc7c;
}
.szpm-footer-desc {
	text-align: center;
	margin-top: 22px;
	font-size: 13px;
	color: #93b3bf;
}