.main-content {
	flex: 1;
    background: white;
    border-radius: 15px;
    padding: 12px 2rem !important;
    margin: 20px;
}
/* 3列网格布局 */
.article-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 3列布局 */
	gap: 25px; /* 列间距 */
	margin-bottom: 40px;
}

/* 单个文章卡片 */
.article-card {
	background: white;
	border-radius: 8px;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	overflow: hidden;
	transition: transform 0.3s ease;
}
.article-card:hover {
	transform: translateY(-5px);
}
.article-title a{
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}

/* 图片区域样式 */
.image-container {
	position: relative;
	height: 200px;
	overflow: hidden;
}
.image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.article-card:hover img {
	transform: scale(1.05);
}

/* 图片黑色半透明遮罩 */
.image-container::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	background: linear-gradient(
		to top, 
		rgba(0,0,0,0.8) 20%, 
		rgba(0,0,0,0.4) 60%, 
		transparent
	);
	z-index: 1;
}

/* 左上角标签 */
.article-tag {
	position: absolute;
	width: 100%;
	color: white;
	padding: 6px 15px;
	border-radius: 0px;
	font-size: 14px;
	z-index: 2;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.4) 60%, transparent);
}

/* 图片底部标题 */
.article-title {
    position: absolute;
    bottom: -16px;
    padding: 15px 20px;
    z-index: 2;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 文字描述区域 */
.article-desc {
	padding: 15px 20px;
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; /* 显示3行文字 */
	margin: 0 !important;
}

/* 底部信息栏 */
.article-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-top: 1px solid #eee;
	position: relative;
	margin:0;
	background: none;
	border-radius: 0;
	box-shadow: unset;
	overflow: hidden;
	color: #999;
}
.read-count {
	color: #999;
	font-size: 13px;
}
.read-more {
	color: #2e86de;
	/*text-decoration: none;
    font-weight: 500;
    background: #5a67d8;
    padding: 0 10px;
    color: #fff;
    font-size: 14px;*/
}
.read-more:hover {
	text-decoration: underline;
}

/* 分页样式 */
.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 30px 0;
}
.page-item {
	display: block;
	padding: 8px 16px;
	border-radius: 6px;
	background: #f5f5f5;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
}
.page-item:hover,
.page-item.active {
	background: #2e86de;
	color: white;
}

/* 手机适配 */
@media (max-width: 768px) {
	.main-content {
		width: 100%;
        padding: 10px !important;
        margin: 0;
	}
	.article-grid {
		grid-template-columns: repeat(1, 1fr); /* 手机端显示2列 */
	}
	.image-container {
		height: 180px;
	}
}
/* 基础样式 */
.novel-left {
	width: 250px; */
	min-height: 60vh;
	width: 280px;
	background: #fff;
	padding: 2rem 1rem;
	float: left;
	top: 0px;
	position: sticky;
	border-right: 2px solid #a3bffa;
}
.menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* 一级菜单样式 */
.menu-item1 > a {
	display: flex;
	align-items: center;
	padding: 15px 25px;
	color: #4a5568;
	text-decoration: none;
	font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
	font-size: 16px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.menu-item1 > a:hover {
	background: rgba(165, 180, 252, 0.15);
	transform: translateX(8px);
}

.menu-item1 > a::after {
	content: '❯';
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
    color: #93a2ff;
}

/* 二级菜单样式 */
.submenu1 {
	list-style: none;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background: rgba(255,255,255,0.1);
}

.submenu1.active {
	max-height: 300px;
}

.submenu1 a {
	display: block;
	padding: 12px 45px;
	color: #66738a;
	text-decoration: none;
	font-size: 14px;
	position: relative;
	transition: all 0.2s;
}

.submenu1 a::before {
	content: '';
	position: absolute;
	left: 30px;
	top: 50%;
	width: 6px;
	height: 6px;
	background: #a3bffa;
	border-radius: 50%;
	transform: translateY(-50%);
}

.submenu1 a:hover,
.submenu1 a.active {
	color: #5a67d8;
	background: rgba(165, 180, 252, 0.1);
	padding-left: 50px;
}

.submenu1 a.active::before {
	background: #667eea;
}
.menu-list .active{color:#000;}
/* 一级菜单激活态 */
.menu-item1.active > a {
    color: #5a67d8;
    font-weight: bold;
}

/* 二级菜单激活态 */
.submenu1.active {
    display: block;
}

.submenu1 li.active a {
    color: #5a67d8;
    position: relative;
}

.submenu1 li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #5a67d8;
}
/* 响应式设计 */
@media (max-width: 768px) {
	.novel-left {
		width: 100%;
		height: auto;
		position: relative;
	}
	
	.menu-item1 > a {
		padding: 12px 20px;
	}
	
	.submenu1 a {

	}
	
	.submenu1 a:hover {
		padding-left: 40px;
	}
}
