			* {
				margin: 0;
				padding: 0;
				box-sizing: border-box;
				font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
				line-height: 1.6;
				color: #333;
			}

			body {
				background-color: #ffffff;
				color: #333;
				line-height: 1.6;
			}
			a {
				text-decoration: none;
				color: #2c3e50;
			}

			.container {
				max-width: 1200px;
				margin: 0 auto;
				padding: 0 15px;
			}

			/* 头部样式 */
			header {
				background-color: #00479d;
				box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
				padding: 15px 0;
				position: sticky;
				top: 0;
				z-index: 100;
			}

			.header-content {
				display: flex;
				justify-content: space-between;
				align-items: center;
				flex-wrap: wrap;
			}

			.logo {
				display: flex;
				align-items: center;
			}

			.logo img {
				height: 50px;
				margin-right: 10px;
			}

			.logo-text {
				font-size: 1.2rem;
				font-weight: bold;
				color: #0066cc;
			}

			/* 导航样式 */
			nav ul {
				display: flex;
				list-style: none;
				flex-wrap: wrap;
				padding: 0;
				margin: 0;
			}

			nav ul li {
				margin-left: 20px;
				position: relative;
				/* 为伪元素定位提供参考 */
				white-space: nowrap;
				/* 防止文本换行 */
			}

			nav ul li a {
				text-decoration: none;
				color: #ffffff;
				font-weight: 500;
				padding: 8px 12px;
				border-radius: 4px;
				transition: all 0.3s ease;
				display: flex;
				/* 改为flex布局 */
				align-items: center;
				width: 100%;
				/* 确保链接宽度自适应 */
			}

			nav ul li a:hover {
				background-color: #0066cc;
				color: white;
			}

			/* 移动菜单切换 */
			.menu-toggle {
				display: none;
				flex-direction: column;
				cursor: pointer;
			}

			.menu-toggle span {
				height: 3px;
				width: 25px;
				background-color: #ffffff;
				margin-bottom: 4px;
				border-radius: 3px;
			}

			/* 移动端适配 - 添加分隔线 */
			@media (max-width: 768px) {
				nav ul {
					flex-direction: column;
					gap: 0;
					/* 确保间隙由分隔线控制 */
				}

				nav ul li {
					margin-left: 0;
					margin-bottom: 0;
					width: 100%;
					border-bottom: 1px solid #e0e0e0;
					/* 分隔线 */
					padding: 10px 0;
				}

				nav ul li:last-child {
					border-bottom: none;
					/* 最后一个项目不显示分隔线 */
					padding-bottom: 0;
				}

				nav ul li a {
					display: block;
					width: 100%;
				}
			}

			/* 桌面端保持原有样式 */
			@media (min-width: 769px) {
				nav ul li {
					margin-left: 20px;
					border-bottom: none;
					/* 桌面端不显示分隔线 */
				}
			}

			/* 主内容区样式 */
			.main-content {
				padding: 30px 0;
			}

			/* 卡片样式 */
			.card {
				background: white;
				border-radius: 8px;
				box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
				margin-bottom: 30px;
				overflow: hidden;
			}

			.card-header {
				background: #168BDC;
				color: white;
				padding: 15px;
				font-size: 1.2rem;
			}

			.card-body {
				padding: 20px;
			}

			/* 新闻列表样式 */
			.news-list {
				list-style: none;
			}

			.news-list li {
				padding: 10px 0;
				border-bottom: 1px solid #eee;
			}

			/* 响应式适配 */
			@media (max-width: 768px) {
				.article-images .image-container {
					width: 100% !important;
					/* 移动端单列布局 */
				}

				.article-images {
					gap: 10px;
					/* 缩小移动端间距 */
				}
			}

			/* 页脚样式 */
			footer {
				background-color: #f8f9fa;
				padding: 20px 0;
				border-top: 1px solid #eaeaea;
				margin-top: 20px;
			}

			.footer-content {
				text-align: center;
				color: #666;
				font-size: 0.9rem;
			}

			.footer-content p {
				margin-bottom: 10px;
			}

			/* 响应式设计 */
			@media (max-width: 992px) {
				.article-title {
					font-size: 1.8rem;
				}
			}

			@media (max-width: 768px) {
				.header-content {
					flex-direction: column;
					align-items: flex-start;
				}

				.menu-toggle {
					display: flex;
					position: absolute;
					top: 20px;
					right: 20px;
				}

				nav {
					width: 100%;
					max-height: 0;
					overflow: hidden;
					transition: max-height 0.3s ease;
				}

				nav.active {
					max-height: 600px;
					/* 移动端菜单高度 */
				}

				nav ul {
					flex-direction: column;
					padding: 10px 0;
				}

				nav ul li {
					margin: 5px 0;
					margin-left: 0;
				}

				.article {
					padding: 20px;
				}

				.article-title {
					font-size: 1.6rem;
				}
			}

			@media (max-width: 576px) {
				.logo-text {
					font-size: 1rem;
				}

				.article-meta {
					flex-direction: column;
				}

				.article-meta span {
					margin-bottom: 10px;
					margin-right: 0;
				}

				.article-title {
					font-size: 1.4rem;
				}
			}
