/* 页面标题优化 */
.page-title {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	border-radius: var(--radius-2xl);
	padding: 20px 30px;
	box-shadow: var(--shadow-md);
	backdrop-filter: blur(10px);
}

.breadcrumb-item a {
	position: relative;
	transition: all var(--transition-base);
}

.breadcrumb-item a:hover {
	color: var(--primary-color) !important;
}

.breadcrumb-item a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-gradient);
	transition: width var(--transition-base);
}

.breadcrumb-item a:hover::after {
	width: 100%;
}

/* 列表卡片优化 */
.card.card-flush {
	border-radius: var(--radius-2xl);
	box-shadow: var(--shadow-xl);
	transition: all var(--transition-base);
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.card.card-flush:hover {
	box-shadow: var(--shadow-2xl);
	transform: translateY(-4px);
}

.card-header {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
	border-bottom: 2px solid rgba(102, 126, 234, 0.15);
}

.card-title {
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
	font-size: 1.5rem;
}

/* 列表项优化 */
.list-item {
	padding: 20px;
	margin-bottom: 16px;
	border-radius: var(--radius-xl);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(249, 250, 251, 0.5) 100%);
	border: 1px solid rgba(102, 126, 234, 0.1);
	transition: all var(--transition-base);
	position: relative;
	overflow: hidden;
}

.list-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--primary-gradient);
	opacity: 0;
	transition: opacity var(--transition-base);
}

.list-item:hover {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
	transform: translateX(8px);
	box-shadow: var(--shadow-lg);
}

.list-item:hover::before {
	opacity: 1;
}

.list-item-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gray-800);
	transition: all var(--transition-base);
	margin-bottom: 8px;
}

.list-item:hover .list-item-title {
	color: var(--primary-color);
}

.list-item-meta {
	display: flex;
	gap: 16px;
	font-size: 0.875rem;
	color: var(--gray-500);
}

.list-item-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.list-item-meta i {
	color: var(--primary-color);
}

/* 分页优化 */
.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
}

.pagination a,
.pagination span {
	padding: 10px 16px;
	border-radius: var(--radius-lg);
	background: white;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-base);
	font-weight: 500;
}

.pagination a:hover {
	background: var(--primary-gradient);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.pagination .active {
	background: var(--primary-gradient);
	color: white;
	box-shadow: var(--shadow-lg);
}

/* 响应式优化 */
@media (max-width: 768px) {
	.page-title {
		padding: 15px 20px;
	}

	.list-item {
		padding: 15px;
	}

	.list-item-title {
		font-size: 1rem;
	}
}