:root {
	--aiUsers_primary-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--aiUsers_card-bg: rgba(255, 255, 255, 0.95);
	--aiUsers_shadow: rgba(102, 126, 234, 0.15);
	--aiUsers_text-primary: #2d3748;
	--aiUsers_text-secondary: #4a5568;
	--aiUsers_accent: #667eea;
	--aiUsers_hover-shadow: rgba(102, 126, 234, 0.25);
	--aiUsers_gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--aiUsers_stat-bg: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
	--aiUsers_stat-hover: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}


#page_aiUsers{
	margin: 0;
	padding: 0 0 66px 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--aiUsers_primary-bg);
	background-attachment: fixed;
	min-height: 100vh;
	overflow-x: hidden;
}

.aiUsers_container {
	max-width: 1200px;
	margin: 30px auto 0 auto;
	width: 100%;
}

.aiUsers_grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	padding: 0 5px;
}

.aiUsers_card {
	background: var(--aiUsers_card-bg);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 8px 32px var(--aiUsers_shadow);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
	animation: aiUsers_fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.aiUsers_card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.aiUsers_card:hover::before {
	left: 100%;
}

.aiUsers_card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 20px 60px var(--aiUsers_hover-shadow);
	border-color: rgba(255, 255, 255, 0.5);
}

.aiUsers_card-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.aiUsers_avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--aiUsers_accent);
	margin-right: 15px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.aiUsers_card:hover .aiUsers_avatar {
	transform: rotate(360deg) scale(1.1);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.aiUsers_user-info {
	flex: 1;
}

.aiUsers_username {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--aiUsers_text-primary);
	margin-bottom: 5px;
}

.aiUsers_last-chat {
	color: var(--aiUsers_text-secondary);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
}

.aiUsers_last-chat i {
	margin-right: 5px;
	color: var(--aiUsers_accent);
}

.aiUsers_stats {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}

.aiUsers_stat {
	text-align: center;
	flex: 1;
	padding: 15px 10px;
	background: var(--aiUsers_stat-bg);
	border-radius: 15px;
	margin: 0 5px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.aiUsers_stat:hover {
	background: var(--aiUsers_stat-hover);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.aiUsers_stat-value {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--aiUsers_accent);
	margin-bottom: 5px;
	transition: color 0.3s ease;
}

.aiUsers_stat:hover .aiUsers_stat-value {
	color: white;
}

.aiUsers_stat-label {
	font-size: 0.8rem;
	color: var(--aiUsers_text-secondary);
	font-weight: 500;
	transition: color 0.3s ease;
}

.aiUsers_stat:hover .aiUsers_stat-label {
	color: rgba(255, 255, 255, 0.9);
}

.aiUsers_stat i {
	font-size: 1.2rem;
	margin-bottom: 5px;
	color: var(--aiUsers_accent);
	transition: color 0.3s ease;
}

.aiUsers_stat:hover i {
	color: white;
}

@keyframes aiUsers_fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes aiUsers_fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes aiUsers_pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.aiUsers_loading {
	text-align: center;
	padding: 50px;
	color: rgba(255, 255, 255, 0.8);
}

.aiUsers_loading i {
	font-size: 2rem;
	animation: aiUsers_pulse 1.5s infinite;
	color: rgba(255, 255, 255, 0.8);
}

/* 手机端特效优化 */
@media (max-width: 768px) {
	.aiUsers_grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	
	.aiUsers_title {
		font-size: 2rem;
	}
	
	.aiUsers_card {
		padding: 18px;
		margin: 0;
	}
	
	.aiUsers_card:active {
		transform: translateY(-4px) scale(0.98);
	}
	
	.aiUsers_avatar {
		width: 45px;
		height: 45px;
		margin-right: 12px;
	}
	
	.aiUsers_username {
		font-size: 1.1rem;
		margin-bottom: 3px;
	}
	
	.aiUsers_last-chat {
		font-size: 0.8rem;
	}
	
	.aiUsers_stats {
		flex-direction: row;
		gap: 8px;
		margin-top: 12px;
	}
	
	.aiUsers_stat {
		margin: 0;
		padding: 10px 8px;
	}
	
	.aiUsers_stat-value {
		font-size: 1.1rem;
		margin-bottom: 2px;
	}
	
	.aiUsers_stat-label {
		font-size: 0.7rem;
	}
	
	.aiUsers_stat i {
		font-size: 1rem;
		margin-bottom: 3px;
	}
}

/* 触摸设备优化 */
@media (hover: none) {
	.aiUsers_card:hover {
		transform: none;
		box-shadow: 0 10px 30px var(--aiUsers_shadow);
	}
	
	.aiUsers_card:active {
		transform: translateY(-4px) scale(0.98);
		box-shadow: 0 15px 35px var(--aiUsers_hover-shadow);
	}
}