@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Microsoft YaHei', sans-serif;
}

body {
	background-color: #f5f7fa;
	color: #333;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* 头部样式 */
header {
	background: linear-gradient(135deg, #1a5fb4 0%, #1c71d8 100%);
	color: white;
	padding: 15px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	height:180px;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media(min-width: 768px){
	.logo-container {
		display: flex;
		align-items: center;
	}
}

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right:5px;
}
.logo img{
	width:360px;
}

.title h1 {
	font-size: 26px;
	margin-bottom: 5px;
}

.title p {
	font-size: 14px;
	opacity: 0.9;
}

/* 导航菜单 */
nav {
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-container {
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	position: relative;
}

.nav-menu a {
	display: block;
	padding: 15px 25px;
	color: #444;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
	color: #1a5fb4;
	background-color: #f0f5ff;
}

.nav-menu a.active:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #1a5fb4;
}
		
/* 面包屑导航 */
.breadcrumb {
	padding: 15px 0;
	font-size: 14px;
	color: #666;
}

.breadcrumb a {
	color: #1a5fb4;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.breadcrumb i {
	margin: 0 8px;
}

/* 新闻内容 */
.news-detail {
	background: white;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
	min-height:500px;
}

.news-header {
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 20px;
	margin-bottom: 25px;
	text-align: center;
}

.news-title {
	font-size: 28px;
	color: #1a5fb4;
	line-height: 1.4;
	margin-bottom: 15px;
}

.news-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	color: #666;
	font-size: 14px;
}

.news-meta div {
	display: flex;
	align-items: center;
}

.news-meta i {
	margin-right: 5px;
	color: #1a5fb4;
}

.news-content {
	font-size: 16px;
	line-height: 1.8;
	color: #444;
	padding:0 80px 50px;
}

.news-content p {
	margin-bottom: 20px;
	text-align: justify;
	text-indent: 2em;
}

.news-content img {
	width:80%;
}

.news-content h3 {
	font-size: 20px;
	color: #1a5fb4;
	margin: 25px 0 15px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #eaeaea;
}

.news-content ul, .news-content ol {
	margin: 15px 0;
	padding-left: 30px;
}

.news-content li {
	margin-bottom: 8px;
}

.info-box {
	background-color: #f0f5ff;
	border-left: 4px solid #1a5fb4;
	padding: 15px 20px;
	margin: 20px 0;
	border-radius: 0 4px 4px 0;
}

/* 新闻导航 */
.news-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eaeaea;
}

.news-nav-item {
	color: #666;
	text-decoration: none;
	display: flex;
	align-items: center;
	max-width: 45%;
}

.news-nav-item:hover {
	color: #1a5fb4;
}

.news-nav-item i {
	margin: 0 10px;
}

.news-nav-prev i {
	order: -1;
}

/* 相关新闻 */
.related-news {
	background: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.section-title {
	font-size: 20px;
	color: #1a5fb4;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 2px solid #1a5fb4;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.more-link {
	font-size: 14px;
	color: #666;
	text-decoration: none;
	font-weight: normal;
}

.more-link:hover {
	color: #1a5fb4;
	text-decoration: underline;
}

.news-list {
	list-style: none;
}

.news-item {
	padding: 12px 0;
	border-bottom: 1px dashed #e0e0e0;
}

.news-item:last-child {
	border-bottom: none;
}

.news-item a {
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	color: #444;
	transition: color 0.3s ease;
}

.news-item a:hover {
	color: #1a5fb4;
}

.news-item-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-item-date {
	color: #888;
	font-size: 14px;
	flex-shrink: 0;
	margin-left: 15px;
}
