/* 全局样式 */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 页面头部 */
.info-page-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 20px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-page-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}

.info-nav-left ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 30px;
}

.nav-item {
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	padding: 8px 15px;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
	background: rgba(255,255,255,0.2);
}

.search-box {
	display: flex;
	align-items: center;
	background: rgba(255,255,255,0.2);
	border-radius: 25px;
	padding: 5px;
}

.search-input {
	background: transparent;
	border: none;
	color: white;
	padding: 8px 15px;
	font-size: 14px;
	outline: none;
	width: 200px;
}

.search-input::placeholder {
	color: rgba(255,255,255,0.7);
}

.search-btn {
	background: white;
	color: #667eea;
	border: none;
	border-radius: 20px;
	padding: 8px 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-btn:hover {
	background: #f0f0f0;
}

/* 搜索结果样式 */
.search-results {
	margin-top: 30px;
}

.search-results h2 {
	color: #333;
	margin-bottom: 20px;
	font-size: 24px;
}

.search-empty {
	text-align: center;
	padding: 60px 0;
	color: #999;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.search-empty p {
	font-size: 16px;
	margin-bottom: 20px;
}

.search-empty button {
	background: #667eea;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-empty button:hover {
	background: #5a6fd8;
}

/* 横幅 */
.info-banner {
	text-align: center;
	padding: 40px 0;
}

.info-main-title {
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 10px 0;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.info-main-subtitle {
	font-size: 18px;
	margin: 0;
	opacity: 0.9;
}

/* 分类导航 */
.info-category-nav {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	padding: 15px 0;
}

.category-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.category-item {
	color: white;
	text-decoration: none;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.category-item:hover,
.category-item.active {
	background: rgba(255,255,255,0.2);
}

/* 主要内容区域 */
.info-main-content {
	padding: 40px 0;
	background: #f5f7fa;
}

.info-content-layout {
	display: flex;
	gap: 30px;
}

.info-left-panel {
	flex: 3;
}

.info-right-panel {
	width: 300px;
}

/* 头条新闻 */
.info-featured-news {
	display: flex;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	margin-bottom: 30px;
	transition: transform 0.3s ease;
}

.info-featured-news:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.featured-content {
	flex: 2;
	padding: 30px;
}

.featured-title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 15px 0;
}

.featured-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.featured-title a:hover {
	color: #667eea;
}

.featured-meta {
	color: #999;
	font-size: 14px;
	margin-bottom: 20px;
}

.featured-summary {
	color: #666;
	line-height: 1.8;
	margin-bottom: 25px;
	font-size: 16px;
}

.featured-read-more {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.featured-read-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.featured-image {
	flex: 1;
	min-height: 250px;
	overflow: hidden;
}

.featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.info-featured-news:hover .featured-image img {
	transform: scale(1.05);
}

/* 新闻列表 */
.info-news-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.news-item {
	display: flex;
	background: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	justify-content: space-between;
}

.news-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.news-content {
	width: 620px;
}

.news-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.news-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-title a:hover {
	color: #667eea;
}

.news-meta {
	color: #999;
	font-size: 13px;
	margin-bottom: 10px;
}

.news-summary {
	color: #666;
	line-height: 1.6;
	font-size: 14px;
	margin: 0;
}

.news-image {
	width: 180px;
	height: 120px;
	border-radius: 6px;
	overflow: hidden;
	flex-shrink: 0;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 侧边栏 */
.sidebar-ad,
.sidebar-hot-news,
.sidebar-recommend {
	background: white;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.sidebar-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0 0 20px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #667eea;
}

/* 广告样式 */
.ad-banner {
	overflow: hidden;
}

.ad-banner img {
	width: 100%;
	height: auto;
	display: block;
}

/* 热点资讯 */
.hot-news-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hot-news-list li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
}

.hot-news-list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.hot-news-rank {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #667eea;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	margin-right: 12px;
	flex-shrink: 0;
}

.hot-news-title {
	color: #333;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.5;
	flex: 1;
	transition: color 0.3s ease;
}

.hot-news-title:hover {
	color: #667eea;
}

/* 推荐阅读 */
.recommend-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.recommend-list li {
	margin-bottom: 12px;
}

.recommend-list a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.recommend-list a:hover {
	color: #667eea;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.info-content-layout {
		flex-direction: column;
	}
	
	.info-featured-news {
		flex-direction: column;
	}
	
	.featured-image {
		min-height: 200px;
	}
}

@media (max-width: 768px) {
	.info-main-title {
		font-size: 36px;
	}
	
	.info-page-nav {
		flex-direction: column;
		gap: 15px;
	}
	
	.info-nav-left ul {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.search-input {
		width: 150px;
	}
	
	.news-item {
		flex-direction: column;
	}
	
	.news-content {
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	.news-image {
		width: 100%;
		height: 150px;
	}
	
	.category-list {
		justify-content: center;
	}
}

/* 分页样式 */
.laypage-main {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	padding: 20px;
}

.laypage-main span{
	padding: 8px 16px;
	border: none;
	border-radius: 20px;
	margin: 0 5px;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	cursor: default;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.laypage-main a{
	padding: 8px 16px;
	border: 1px solid #ddd;
	border-radius: 20px;
	margin: 0 5px;
	font-size: 14px;
	line-height: 24px;
	color: #667eea;
	text-decoration: none;
	transition: all 0.3s ease;
	background: white;
}

.laypage-main a:hover{
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-color: #667eea;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
	transform: translateY(-2px);
}

.laypage-main .laypage-prev,
.laypage-main .laypage-next {
	font-weight: 500;
}

.laypage-main .laypage-omit {
	border: none;
	background: transparent;
	color: #999;
	padding: 0 5px;
}