/* 基础样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* 自定义CSS变量 */
:root {
	--primary-color: #1e40af;
	--secondary-color: #3b82f6;
	--accent-color: #60a5fa;
	--dark-color: #1f2937;
	--light-color: #f3f4f6;
	--success-color: #10b981;
	--warning-color: #f59e0b;
	--error-color: #ef4444;
	--text-primary: #111827;
	--text-secondary: #6b7280;
	--border-color: #e5e7eb;
}

/* 分页容器 */
.pages {
	margin: 20px 0;
	text-align: center;
}

/* 分页列表 */
.pagination {
	display: inline-flex;
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	background: #fff;
}

/* 分页项 */
.pagination li {
	margin: 0;
}

/* 分页链接 */
.pagination li a {
	display: block;
	padding: 10px 16px;
	text-decoration: none;
	color: #333;
	border: 1px solid #e0e0e0;
	border-right: none;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
}

/* 移除最后一个分页项的右边框 */
.pagination li:last-child a {
	border-right: 1px solid #e0e0e0;
}

/* 当前页样式 */
.pagination li.active a {
	background: #1e40af;
	color: #fff;
	border-color: #e0e0e0;
}

/* 悬停效果 */
.pagination li a:hover {
	background: #f0f0f0;
	color: #1e40af;
}

/* 下一页按钮特殊样式 */
.pagination li a[data-ci-pagination-page="2"]:last-child {
	background: #f8f9fa;
	font-weight: bold;
}