/* Top Banner */
.top-banner {
	background: linear-gradient(135deg, #ce2029 0%, #a81a24 100%);
	padding: 12px 0;
	text-align: center;
	border-bottom: 2px solid #8b1414;
}
.top-banner .banner-content {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.top-banner .banner-text {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 3px;
}

/* Hero Section */
.hero-section {
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
}
.hero-main {
	flex: 1;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.hero-banner {
	position: relative;
	height: 380px;
	overflow: hidden;
}
.banner-item {
	position: relative;
	height: 100%;
}
.banner-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 25px 30px;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
}
.banner-tag {
	display: inline-block;
	background: #ce2029;
	color: #fff;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 3px;
	margin-bottom: 10px;
}
.banner-overlay h2 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
}
.hero-sidebar {
	width: 320px;
	flex-shrink: 0;
}
.news-list-box {
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.news-list-box h3 {
	color: #333;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	padding-bottom: 12px;
	border-bottom: 2px solid #005eb8;
	position: relative;
}
.news-list-box h3 i {
	color: #005eb8;
	margin-right: 8px;
}
.news-list-box ul li {
	position: relative;
	padding: 10px 0;
	border-bottom: 1px dashed #eee;
	transition: all 0.3s ease;
}
.news-list-box ul li:last-child {
	border-bottom: none;
}
.news-list-box ul li:hover {
	background: #f8fafc;
	padding-left: 8px;
}
.news-list-box ul li a {
	display: block;
	color: #333;
	font-size: 14px;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-list-box ul li:hover a {
	color: #ce2029;
}
.news-num {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: #f0f0f0;
	color: #999;
	text-align: center;
	line-height: 22px;
	font-size: 12px;
	border-radius: 3px;
	margin-right: 10px;
}
.news-list-box ul li:nth-child(1) .news-num,
.news-list-box ul li:nth-child(2) .news-num,
.news-list-box ul li:nth-child(3) .news-num {
	background: #ce2029;
	color: #fff;
}

/* Hot News */
.hot-news {
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 25px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.section-header {
	margin-bottom: 20px;
}
.section-header h3 {
	color: #333;
	font-size: 20px;
	font-weight: 600;
	position: relative;
	padding-left: 20px;
}
.section-header h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 20px;
	background: #ce2029;
	border-radius: 2px;
}
.section-header h3 i {
	color: #ce2029;
	margin-right: 8px;
}
.hot-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
}
.hot-item {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}
.hot-img {
	position: relative;
	height: 120px;
	overflow: hidden;
}
.hot-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.hot-item:hover .hot-img img {
	transform: scale(1.08);
}
.hot-item h4 {
	padding: 10px;
	font-size: 13px;
	line-height: 1.5;
}
.hot-item h4 a {
	color: #333;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.hot-item:hover h4 a {
	color: #ce2029;
}

/* Category Section */
.category-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 25px;
}
.category-box {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.cat-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #f8fafc;
	border-bottom: 1px solid #eee;
}
.cat-header h3 {
	color: #333;
	font-size: 16px;
	font-weight: 600;
}
.cat-header h3 i {
	color: #005eb8;
	margin-right: 6px;
}
.cat-header .more {
	color: #999;
	font-size: 13px;
}
.cat-header .more:hover {
	color: #ce2029;
}
.cat-content {
	padding: 15px;
}
.cat-item {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px dashed #eee;
	transition: all 0.3s ease;
}
.cat-item:last-child {
	border-bottom: none;
}
.cat-item:hover {
	background: #f8fafc;
	padding-left: 8px;
}
.cat-img {
	width: 100px;
	height: 70px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 4px;
}
.cat-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cat-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cat-info h4 {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 6px;
}
.cat-info h4 a {
	color: #333;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.cat-info h4 a:hover {
	color: #ce2029;
}
.cat-info p {
	font-size: 12px;
	color: #999;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Featured Section */
.featured-section {
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 25px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.featured-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}
.featured-column h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #005eb8;
}
.featured-column h4 a {
	color: #333;
}
.featured-column h4 a:hover {
	color: #005eb8;
}
.featured-item {
	display: flex;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px dashed #eee;
	transition: all 0.3s ease;
}
.featured-item:last-child {
	border-bottom: none;
}
.featured-item:hover {
	background: #f8fafc;
	padding-left: 8px;
}
.featured-item img {
	width: 80px;
	height: 55px;
	object-fit: cover;
	border-radius: 4px;
}
.featured-item span {
	flex: 1;
	color: #333;
	font-size: 13px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.featured-item:hover span {
	color: #ce2029;
}

/* Rank Section */
.rank-section {
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 25px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.rank-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.rank-box {
	background: #fafafa;
	border-radius: 6px;
	padding: 15px;
}
.rank-box h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}
.rank-box ul li {
	display: flex;
	align-items: center;
	padding: 9px 0;
	border-bottom: 1px dashed #ddd;
	transition: all 0.3s ease;
}
.rank-box ul li:last-child {
	border-bottom: none;
}
.rank-box ul li:hover {
	background: #fff;
	padding-left: 8px;
}
.rank-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #e0e0e0;
	color: #666;
	font-size: 12px;
	font-weight: 600;
	border-radius: 50%;
	margin-right: 12px;
	flex-shrink: 0;
}
.rank-num.rank-top {
	background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
	color: #8b6914;
}
.rank-box ul li a {
	flex: 1;
	color: #333;
	font-size: 13px;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.rank-box ul li:hover a {
	color: #ce2029;
}

/* Flink Section */
.flink-section {
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 25px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.flink-content {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.flink-content a {
	display: inline-block;
	padding: 8px 20px;
	background: #f5f5f5;
	color: #666;
	font-size: 13px;
	border-radius: 20px;
	transition: all 0.3s ease;
}
.flink-content a:hover {
	background: #005eb8;
	color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-section {
		flex-direction: column;
	}
	.hero-sidebar {
		width: 100%;
	}
	.hot-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.category-section {
		grid-template-columns: repeat(2, 1fr);
	}
	.featured-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.top-banner .banner-text {
		font-size: 14px;
		letter-spacing: 2px;
	}
	.hero-banner {
		height: 250px;
	}
	.banner-overlay h2 {
		font-size: 18px;
	}
	.hot-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.category-section {
		grid-template-columns: 1fr;
	}
	.featured-grid {
		grid-template-columns: 1fr;
	}
	.rank-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hot-grid {
		grid-template-columns: 1fr;
	}
	.cat-item {
		flex-direction: column;
	}
	.cat-img {
		width: 100%;
		height: 150px;
	}
}