@layer utilities {
	.content-auto {
		content-visibility: auto;
	}

	.text-shadow {
		text-shadow: 0 2px 4px rgba(0,0,0,0.1);
	}

	.card-hover {
		transition: all
            0.3s ease;
	}

	.card-hover:hover {
		transform: translateY(-5px);
		box-shadow: 0 12px 20px rgba(0,0,0,0.08);
	}

	.news-tag {
		position: absolute;
		top: 16px;
		left: 16px;
		background-color: #165DFF;
		color: white;
		padding: 3px 10px;
		border-radius: 20px;
		font-size: 0.75rem;
		font-weight: 500;
	}

	.news-date {
		position: absolute;
		bottom: 16px;
		left: 16px;
		background-color: rgba(255,255,255,0.9);
		color: #1D2939;
		padding: 4px 10px;
		border-radius: 4px;
		font-size: 0.8rem;
		font-weight: 500;
	}
}

.epages {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 24px 0;
	font-family: 'Segoe UI', Roboto, 'Helvetica
            Neue', Arial, sans-serif;
}

.epages a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 8px;
	background-color: #ffffff;
	color: #4b5563;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	box-shadow: 0
            1px 3px rgba(0, 0, 0, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0,
            0.2, 1);
	position: relative;
	overflow: hidden;
} /* 微妙的背景光效 */.epages
            a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,
            255, 255, 0.2), transparent);
	transition: all 0.6s ease;
}

.epages a:hover::before {
	left: 100%;
} /* 悬停效果 */.epages a:hover:not(.active):not(.disabled) {
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0,
            0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	color: #165dff;
} /* 当前页样式 */
.epages a.active {
	background-color: #165dff;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
	transform: translateY(0);
} /* 首页/尾页等文本链接特殊样式
            */.epages a:first-child, .epages a:last-child, .epages a:nth-child(2),
            .epages a:nth-last-child(2) {
	font-size: 14px;
	padding: 0 16px;
} /* 禁用状态
            */.epages a.disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
	background-color: #f3f4f6;
	color: #9ca3af;
} /* 点击反馈 */.epages a:active:not(.active):not(.disabled) {
	transform: translateY(0);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
            /* 响应式调整 */@media (max-width: 640px) {
	.epages {
		gap: 4px;
		flex-wrap: wrap;
		padding: 16px 8px;
	}

	.epages a {
		min-width: 36px;
		height: 36px;
		font-size: 14px;
		padding: 0 10px;
	} /* 隐藏中间页码，保持简洁 */	.epages a:nth-child(n+6):nth-last-child(n+6) {
		display: none;
	} /* 添加省略号表示隐藏的页码 */	.epages a:nth-child(5):after {
		content: '...';
		margin-left: 28px;
		position: absolute;
		color: #9ca3af;
	}
}
/*新增加的css*/
.pagination-container {
  padding: 20px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination {
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}
.pagination a,
.pagination span {
  min-width: 38px;
  height: 38px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .current {
  background-color: rgb(255 121 8);
  color: white;
  border-color: rgb(255 121 8);
}
.pagination .disabled {
  color: #aaa;
  border-color: #eee;
}