:root {
	--text-primary: #1f2937;
	--border-color: #e5e7eb;
	--radius-sm: 4px;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
/* 分页信息样式 */
#pageinfo {
	clear: both;
	padding: 16px 0;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: flex-end;
}

#pageinfo .p_total,
#pageinfo .p_pages {
	line-height: 36px;
	font-size: 13px;
	color: #6b7280;
	white-space: nowrap;
}

#pageinfo .p_total {
	margin-right: 0;
}

#pageinfo .p_pages {
	margin: 0;
}

#pageinfo .p_pages_select {
	margin: 0;
}

#pageinfo .pageNo {
	display: flex;
	flex-direction: row;
	border: 1px solid var(--border-color);
	height: 36px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

#pageinfo .pageNo li {
	list-style: none;
	border-right: 1px solid var(--border-color);
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

#pageinfo .pageNo li:last-child {
	border-right: none;
}

#pageinfo .pageNo li:hover {
	background-color: #f3f4f6;
	cursor: pointer;
}

#pageinfo .p_num {
	background: transparent;
	display: block;
	padding: 8px 12px;
	color: var(--text-primary);
	text-decoration: none;
}

#pageinfo .pageNo li.p_curpage {
	color: #374151;
	background: #dbeafe;
	border: 1px solid #bfdbfe;
}

#pageinfo a {
	text-decoration: none;
	color: #374151;
}

#pageinfo kbd {
	font-size: 13px;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 4px;
}

#pageinfo kbd input {
	background: #ffffff;
	color: #374151;
	vertical-align: middle;
	border: 1px solid #d1d5db;
	padding: 0 4px;
	width: 40px;
	text-align: center;
	height: 32px;
	border-radius: var(--radius-sm);
}

#pageinfo img {
	cursor: pointer;
	vertical-align: top;
	height: 30px;
	width: 30px;
	padding: 3px;
	transition: all 0.2s ease;
}

#pageinfo img:hover {
	transform: scale(1.1);
}

#pageinfo .p_pages_select {
	background: #ffffff;
	height: 36px;
	line-height: 34px;
	border: 1px solid #d1d5db;
	border-radius: var(--radius-sm);
	padding: 0 8px;
	color: #374151;
}
@media (max-width: 768px) {
	#pageinfo {
		justify-content: center;
		gap: 8px;
	}

	#pageinfo .p_total,
	#pageinfo .p_pages {
		font-size: 12px;
	}

	#pageinfo .pageNo {
		order: -1;
		width: 100%;
		margin-bottom: 8px;
	}

	#pageinfo .p_pages_select {
		font-size: 12px;
	}
}