:root {
	--mvList-primary-bg: #e6f3ff;
	--mvList-card-bg: #ffffff;
	--mvList-card-shadow: rgba(0, 123, 255, 0.1);
	--mvList-text-primary: #333333;
	--mvList-text-secondary: #666666;
	--mvList-accent: #007bff;
	--mvList-border-radius: 15px;
}

#page_mvList{
	margin: 0;
	padding: 0 0 66px 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
	background: var(--mvList-primary-bg);
	color: var(--mvList-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.mvList_container {
	width: 100%;
	min-height: 100vh;
	padding: 20px;
	position: relative;
}

.mvList_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.mvList_card {
	background: var(--mvList-card-bg);
	border-radius: var(--mvList-border-radius);
	padding: 25px;
	box-shadow: 0 8px 25px var(--mvList-card-shadow);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
}

.mvList_card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s ease;
}

.mvList_card:hover::before {
	left: 100%;
}

.mvList_card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
	border-color: var(--mvList-accent);
}

.mvList_card_icon {
	font-size: 3rem;
	color: var(--mvList-accent);
	margin-bottom: 15px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.mvList_card_title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 8px;
	text-align: center;
	color: var(--mvList-text-primary);
	word-wrap: break-word;
	position: relative;
	z-index: 1;
}

.mvList_card_path {
	font-size: 0.9rem;
	color: var(--mvList-text-secondary);
	text-align: center;
	opacity: 0.7;
	position: relative;
	z-index: 1;
}

.mvList_modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.mvList_modal_content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--mvList-card-bg);
	border-radius: var(--mvList-border-radius);
	padding: 30px;
	width: 90%;
	max-width: 500px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: mvList_modalSlideIn 0.3s ease;
}

.mvList_modal_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.mvList_modal_title {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--mvList-text-primary);
	flex: 1;
	margin-right: 10px;
}

.mvList_close_btn {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--mvList-text-secondary);
	transition: color 0.3s ease;
}

.mvList_close_btn:hover {
	color: var(--mvList-accent);
}

.mvList_player {
	text-align: center;
}

.mvList_player audio,
.mvList_player video {
	width: 100%;
	border-radius: 10px;
	outline: none;
}

.mvList_player video {
	max-height: 300px;
}

.mvList_floating_particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
}

.mvList_particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--mvList-accent);
	border-radius: 50%;
	opacity: 0.3;
	animation: mvList_floatParticle 6s linear infinite;
}

/* 手机端特效动画 */
@keyframes mvList_titlePulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

@keyframes mvList_modalSlideIn {
	from {
		opacity: 0;
		transform: translate(-50%, -60%);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

@keyframes mvList_floatParticle {
	0% {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}
	10% {
		opacity: 0.3;
	}
	90% {
		opacity: 0.3;
	}
	100% {
		transform: translateY(-100px) rotate(360deg);
		opacity: 0;
	}
}

/* 响应式设计 */
@media (max-width: 768px) {
	.mvList_container {
		padding: 15px;
	}
	
	.mvList_title {
		font-size: 2rem;
	}
	
	.mvList_grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 15px;
	}
	
	.mvList_card {
		padding: 20px;
	}
	
	.mvList_modal_content {
		width: 95%;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.mvList_title {
		font-size: 1.8rem;
	}
	
	.mvList_grid {
		grid-template-columns: 1fr;
	}
	
	.mvList_card_icon {
		font-size: 2.5rem;
	}
}