@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;
}

/* 页面标题 */
.page-title {
	font-size: 24px;
	color: #1a5fb4;
	padding-bottom: 15px;
	padding-left:15px;
	margin-bottom: 20px;
	border-bottom: 2px solid #e0e0e0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* 筛选和搜索 */
.filter-section {
	background: white;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

.filter-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.filter-group label {
	font-weight: 500;
	color: #555;
}

.filter-group select, .search-box input {
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: white;
}

.search-box {
	display: flex;
	margin-left: auto;
}

.search-box input {
	width: 250px;
	border-right: none;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.search-btn {
	background: #1a5fb4;
	color: white;
	border: none;
	border-radius: 0 4px 4px 0;
	padding: 0 15px;
	cursor: pointer;
}

/* 通知列表 */
.news-list {
	background: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
	min-height:500px;
}
.news-title{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-item {
	padding: 20px;
	border-bottom: 1px solid #eaeaea;
	transition: background 0.3s ease;
}

.news-item i{
	font-size:12px;
	margin-right:8px;
}

.news-item:hover {
	background: #f9f9f9;
}

.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 h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #1a5fb4;
	display: flex;
	align-items: center;
}

.news-item h3 i {
	margin-right: 10px;
	color: #ff7b00;
}

.news-item p {
	color: #666;
	margin-bottom: 10px;
	line-height: 1.6;
}

.news-meta {
	display: flex;
	justify-content: space-between;
	color: #888;
	font-size: 14px;
}

.news-date {
	color: #888;
	font-size: 14px;
	flex-shrink: 0;
	margin-left: 15px;
}

/* 分页 */
.pagination {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.pagination a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #555;
	text-decoration: none;
	transition: all 0.3s ease;
}

.pagination a:hover, .pagination a.active {
	background: #1a5fb4;
	color: white;
	border-color: #1a5fb4;
}


.current{
	background: #1a5fb4;
	color: white;
	border-color: #1a5fb4;
}