/* 搜索功能 */
.search_box {
	display: flex;
	align-items: center;
	max-width: 480px;
	border-radius: 24px;
	background: #f5f5f5;
	overflow: hidden;
	flex: 0 0 auto;
}
.search_input {
	flex: 1;
	height: 48px;
	padding: 0 24px;
	font-size: 16px;
	border: none;
	background: transparent;
	outline: none;
}
.search_input::placeholder {
	color: var(--muted);
}
.search_btn {
	height: 48px;
	padding: 0 36px;
	font-size: 18px;
	font-weight: 600;
	color: white;
	background: var(--accent);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 0 24px 24px 0;
}
.search_btn:hover {
	background: var(--accent-hover);
}

/* 分页 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 30px;
	flex-wrap: wrap;
	list-style: none;
	padding-bottom: 30px;
}
.pagination li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 16px;
	font-size: 14px;
	color: #333;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	transition: all 0.2s ease;
	text-decoration: none;
}
.pagination a:hover {
	color: var(--primary);
	border-color: var(--primary);
}
.pagination li.active span,
.pagination .active a {
	color: white;
	background: var(--primary);
	border-color: var(--primary);
}
.pagination .disabled span {
	color: #999;
	cursor: not-allowed;
	background: #f5f5f5;
}
.pagination .prev,
.pagination .next {
	padding: 0 20px;
}

/* 响应式 */
@media (max-width: 640px) {
	.breadcrumb_row {
		flex-wrap: wrap;
	}
	.search_box {
		width: 100%;
		max-width: 100%;
	}
	.search_input {
		height: 48px;
		padding: 0 16px;
		font-size: 14px;
	}
	.search_btn {
		height: 48px;
		padding: 0 24px;
		font-size: 16px;
	}
	.pagination a,
	.pagination span {
		min-width: 36px;
		height: 36px;
		padding: 0 10px;
		font-size: 13px;
	}
}
