/* ================ 主题切换过渡效果 ================ */
* {
	/* 为所有使用主题颜色的元素添加平滑过渡 */
	transition: background-color 1.5s ease, 
	             background 1.5s ease, 
	             background-image 1.5s ease,
	             border-color 1.5s ease,
	             box-shadow 1.5s ease;
}

/* 排除不需要过渡的元素 */
input, 
button, 
svg,
.icon,
[play-Progress],
[play-volume-range] {
	transition: background-color 1.5s ease, 
	             background 1.5s ease, 
	             border-color 1.5s ease,
	             box-shadow 1.5s ease;
}

/* 颜色相关的过渡 */
[play-colorFill],
[play-volume-colorFill],
.content-left .progress-colorFill,
.options-soundSlider .progress-colorFill,
.wrapper-contentList .contentList-item.active,
.list-tab > div.active,
[play-lyrics] .lyric.active {
	transition: background 1.5s ease, 
	             background-color 1.5s ease,
	             background-image 1.5s ease,
	             color 1.5s ease,
	             box-shadow 1.5s ease;
}

/* ================ 基础布局 ================ */
#app {
	height: 100vh;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 24px 32px 140px;
	box-sizing: border-box;
}

.app_layout {
	flex: 1;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 32px;
	width: 100%;
	height: 100%;
	min-height: 0;
	overflow: hidden;
}

.layout-left,
.layout-right {
	border-radius: 32px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(255, 255, 255, 0.02);
	box-shadow: 0 25px 60px rgba(26, 8, 0, 0.3);
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	display: flex;
	flex-direction: column;
	position: relative;
}

.layout-right {
	padding: 32px;
	display: flex;
	height: 100%;
	overflow: hidden;
}

.layout-right .main-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	overflow: hidden;
}

.layout-left {
	padding: 24px;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

/* 头部导航栏 - 固定在顶部，不滚动 */
.layout-left .list_header {
	flex-shrink: 0;
	margin-bottom: 20px;
}

/* 歌单列表滚动区域 */
.left-scroll {
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.left-scroll .wrapper-contentList {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	min-height: 0;
}

/* ================ 底部播放控制栏 ================ */
.app_footer {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	width: min(1500px, calc(100% - 64px));
	height: 88px;
	background: rgba(40, 14, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 30px 60px rgba(15, 4, 0, 0.5);
	-webkit-backdrop-filter: blur(28px);
	backdrop-filter: blur(28px);
	border-radius: 24px;
	padding: 0 32px;
	z-index: var(--z-index-3);
}

/* 播放区域容器 */
.app_footer .songs_play {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 32px;
}


/* -------- 播放控制区域 -------- */
.songs_play .play-control {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 24px;
	flex-wrap: nowrap;
	min-width: 0;
}

/* 控制按钮组 */
.play-control .control-items {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.control-items .items-btn {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* 播放按钮通用样式 */
.control-items :is(.btn-prev, .btn-play, .btn-next) {
	width: 48px;
	height: 48px;
	cursor: pointer;
}

/* 播放/暂停状态切换 */
.btn-play.playing .pause,
.btn-play.pause .playing,
.Play-icon.playing .pause,
.Play-icon.pause .playing {
	display: none;
}

/* 按钮悬停效果 */
.control-items .items-btn :is(.btn-prev, .btn-play, .btn-next):hover {
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	box-shadow: 0 10px 20px rgba(7, 17, 35, 0.4);
}

/* 播放按钮特殊尺寸 */
.control-items .btn-play {
	width: 60px;
	height: 60px;
	margin-right: 10px;
}

/* 按钮图标尺寸 */
.control-items :is(.btn-prev, .btn-play, .btn-next) .icon {
	width: 36px;
	height: 36px;
}

.control-items .btn-play .icon {
	width: 48px;
	height: 48px;
}

/* -------- 进度条样式 -------- */
.play-control .control-progress {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	flex-wrap: nowrap;
	min-width: 0;
}

.play-control .control-progress .progress-bar {
	position: relative;
	flex: 1;
	min-width: 0;
	height: 4px;
}

/* 进度条时间显示 */
.control-progress :is(.progress-currentTime, .progress-totalTime) {
	min-width: 42px;
	max-width: 42px;
	font-size: 12px;
	text-align: center;
	flex-shrink: 0;
	white-space: nowrap;
}

/* 进度条滑块样式 */
.control-progress input[type='range'] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	margin: 0;
	padding: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
}

.control-progress input[type='range']::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	height: 4px;
	cursor: pointer;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.control-progress input[type='range']::-moz-range-track {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	height: 4px;
	cursor: pointer;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.control-progress input[type='range']::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	height: 18px;
	width: 18px;
	background: radial-gradient(circle, #fff 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	cursor: pointer;
	margin-top: -7px;
	box-shadow: 0 0 12px var(--aurora-a);
	position: relative;
	z-index: 2;
}

.control-progress input[type='range']::-moz-range-thumb {
	height: 18px;
	width: 18px;
	background: radial-gradient(circle, #fff 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	cursor: pointer;
	box-shadow: 0 0 12px var(--aurora-a);
	position: relative;
	z-index: 2;
}

/* 进度条填充色 */
.control-progress .progress-colorFill {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 193, 120, 0.9));
	border-radius: 999px;
	pointer-events: none;
	box-shadow: 0 0 12px rgba(255, 161, 92, 0.7);
	z-index: 1;
}

/* ================ 播放设置区域 ================ */
.songs_play .play-setting {
	display: flex;
	align-items: center;
	gap: 16px;
}


/* 设置选项容器 */
.songs_play .play-setting .setting-options {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	height: auto;
}

/* 通用设置按钮样式 */
.setting-options :is(.options-circulationMode, .options-sound, .options-soundSlider) {
	position: relative;
	width: 50px;
	cursor: pointer;
	height: 100%;
}

/* 循环模式图标 */
.options-circulationMode .icon {
	width: 18px;
	height: 18px;
	color: var(--white-color) !important;
	stroke: var(--white-color) !important;
	fill: var(--white-color) !important;
}

/* 循环模式图标默认全部隐藏 */
.options-circulationMode .icon {
	display: none !important;
}

/* 循环模式切换状态 - 只显示当前模式的图标 */
/* 列表循环模式 */
.options-circulationMode.listLoop .icon.listLoop {
	display: block !important;
}

.options-circulationMode.listLoop .icon:not(.listLoop) {
	display: none !important;
}

/* 随机播放模式 */
.options-circulationMode.randomLoop .icon.randomLoop {
	display: block !important;
}

.options-circulationMode.randomLoop .icon:not(.randomLoop) {
	display: none !important;
}

/* 单曲循环模式 */
.options-circulationMode.singleLoop .icon.singleLoop {
	display: block !important;
}

.options-circulationMode.singleLoop .icon:not(.singleLoop) {
	display: none !important;
}

/* 默认显示列表循环图标（当只有listLoop类时） */
.options-circulationMode.listLoop:not(.randomLoop):not(.singleLoop) .icon.listLoop {
	display: block !important;
}

/* 声音控制图标默认全部隐藏 */
.options-sound .icon {
	display: none !important;
}

/* 默认显示音量图标（sound状态） */
.options-sound.sound .icon.sound {
	display: block !important;
}

.options-sound.sound .icon:not(.sound) {
	display: none !important;
}

/* 静音状态 */
.options-sound.mute .icon.mute {
	display: block !important;
}

.options-sound.mute .icon:not(.mute) {
	display: none !important;
}

/* 设置选项通用样式 */
.setting-options :is(.options-circulationMode[play-mode], .options-sound[play-volume-icon]) {
	width: 44px;
	border-radius: 14px;
	height: 44px;
	border: 1px solid var(--glass-border);
	background: rgba(255, 255, 255, 0.02);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.setting-options :is([play-mode], [play-volume-icon]):hover {
	background-color: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(6, 12, 28, 0.5);
}

/* 音量滑块样式 */
.setting-options .options-soundSlider {
	width: 70px;
	position: relative;
	height: 26px;
}

.options-soundSlider .progress-colorFill {
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	left: 0px;
	width: 80%;
	height: 6px;
	background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
	border-radius: 999px;
	pointer-events: none;
	box-shadow: 0 0 8px var(--aurora-c);
}

/* 音量滑块轨道 */
.options-soundSlider input[type='range']::-webkit-slider-runnable-track {
	border-radius: 999px;
	height: 8px;
	margin-top: -2px;
	background-color: rgba(255, 255, 255, 0.08);
	cursor: pointer;
}

/* 音量滑块按钮 */
.options-soundSlider input[type='range']::-webkit-slider-thumb {
	margin-top: -5px;
	height: 18px;
	width: 18px;
	background: radial-gradient(circle, #fff 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	cursor: pointer;
	box-shadow: 0 0 10px var(--aurora-c);
}

/* 分隔线 */
.setting-options .separator {
	display: inline-block;
	margin: 15px 0;
	height: 14px;
	width: 1px;
	margin: 0 12px;
	max-width: 1px;
	min-width: 1px;
	vertical-align: middle;
	background-color: var(--color-14);
}

/* ================ 主内容区域 ================ */
.app_main {
	position: relative;
	width: 100%;
	height: calc(100vh - 180px);
	/* 减去头部(80px)和底部(100px)的高度 */
	margin-top: 96px;
	/* 头部导航栏高度 */
	padding-bottom: 32px;
}

.main-wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

/* ================ 头部导航栏样式优化 ================ */
.list_header {
	position: relative;
	width: 100%;
	height: 72px;
	background: rgba(255, 255, 255, 0.015);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 0 16px;
	display: flex;
	align-items: center;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
	flex-shrink: 0;
}

/* 标签栏容器样式 */
.list_header .list-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 100%;
	overflow-x: auto;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE and Edge */
}

/* 隐藏滚动条 */
.list_header .list-tab::-webkit-scrollbar {
	display: none;
}

/* 标签按钮样式 */
.list_header .list-tab>div {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	letter-spacing: 0.5px;
	padding: 8px 20px;
	min-width: 96px;
	height: 36px;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.65);
	transition: all 0.3s ease;
	cursor: pointer;
	white-space: nowrap;
	border: 1px solid transparent;
}

/* 标签悬停效果 */
.list_header .list-tab>div:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white-color);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* 激活状态标签样式 */
.list-tab>div.active {
	color: var(--white-color);
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	font-weight: 600;
	box-shadow: 0 12px 30px var(--aurora-a);
	border-color: rgba(255, 255, 255, 0.2);
	opacity: 0.9;
}

/* 标签动画效果 */
.list-tab>div {
	position: relative;
	overflow: hidden;
}

.list-tab>div::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 999px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.list-tab>div.active::after {
	opacity: 1;
}

/* 平板适配 */
@media (max-width: 1200px) and (min-width: 769px) {
	.app_layout {
		grid-template-columns: 1fr;
	}

	.layout-left {
		order: 1;
	}

	.layout-right {
		order: 2;
	}
}

/* 手机端响应式适配 - 详细规则在 response.css 中 */
@media (max-width: 768px) {
	/* 基础样式保留,详细适配在 response.css */
}

/* ================ 歌词面板相关样式 ================ */
/* 基础面板样式 */
:is(.imgBoard, .song_panel) {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	top: auto;
	transform: none;
	z-index: auto;
	transition: none;
}

/* 图片面板样式 */
.imgBoard {
	display: none;
}

/* 歌词面板样式 */
.song_panel {
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.08));
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* 控制按钮样式 */
#fullscreen-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	z-index: 1000;
	padding: 10px;
}

#close-panel-btn {
	position: absolute;
	top: 80px;
	right: 20px;
	cursor: pointer;
	z-index: 1000;
	padding: 10px;
}

/* 按钮悬停效果 */
#fullscreen-btn:hover,
#close-panel-btn:hover {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
}

[close-panel-btn] {
	cursor: pointer;
	z-index: 1000;
}

/* 面板激活状态 */
.app_main :is(.imgBoard, .song_panel).active {
	transform: translateY(0);
	transition: transform .3s;
}


/* 面板内容区域 */
.song_panel .panel-content {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 24px 60px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	overflow: hidden;
	min-height: 0;
}

/* 左侧内容区域 */
.panel-content .content-left {
	width: 100%;
	max-width: 600px;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	flex-shrink: 0;
}

/* 歌曲信息区域 */
.panel-content .left-songInfo {
	width: 100%;
	flex-direction: column;
}

/* 歌曲封面图片 */
.songInfo-img {
	width: 120px;
	height: 120px;
	margin-bottom: 4px;
}

/* 封面图片动画效果 */
.songInfo-img .img {
	transform: scale(0.9);
	animation: pauseScale .5s ease-in-out forwards;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.songInfo-img .img.active {
	transform: scale(1);
	animation: playScale .5s ease-in-out forwards, rotate 20s linear infinite;
}

/* 封面图片样式 */
.left-songInfo .img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
	/* 添加持续旋转动画 */
	animation: rotate 20s linear infinite;
}

/* 旋转动画 */
@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* ================ 歌曲信息详细样式 ================ */
/* 歌曲信息项 */
.songInfo-item {
	justify-content: center;
	margin-bottom: 0;
	width: 100%;
}


/* 更多操作图标 */
.moreActions-icon .icon {
	width: 14px;
	height: 14px;
}

/* 歌曲信息文字样式 */
.panel-content .songInfo-item {
	color: var(--text-color);
}

.songInfo-item .song-name {
	height: 28px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.songInfo-item .name {
	line-height: 25px;
	display: inline-block;
	white-space: nowrap;
	/* 移除省略号效果，显示完整文本 */
	overflow: visible !important;
	text-overflow: clip !important;
	/* 默认不应用动画，通过JavaScript动态添加 */
}

/* 覆盖 text-ol 类的省略号样式 */
.songInfo-item .song-name .name.text-ol {
	overflow: visible !important;
	text-overflow: clip !important;
}

/* 跑马灯效果 - 当文本溢出时应用 */
.songInfo-item .song-name.marquee {
	justify-content: flex-start;
}

.songInfo-item .song-name.marquee .name {
	animation: marquee 15s linear infinite;
	padding-right: 30px;
	/* 创建无缝循环效果 */
	display: inline-block;
}

/* 跑马灯动画 - 从右到左滚动，无缝循环 */
@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-100% - 30px));
	}
}

/* 鼠标悬停时暂停动画 */
.songInfo-item .song-name.marquee:hover .name {
	animation-play-state: paused;
}

.songInfo-item .song-author {
	margin-top: 4px;
	height: 24px;
	opacity: .75;
	cursor: pointer;
}

/* 更多操作按钮 */
.panel-content .moreActions-icon {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

/* ================ 播放控制区域 ================ */
.panel-content .left-playControl {
	margin-top: 0;
	width: 100%;
}

/* 进度条区域 */
.panel-content .playControl-progressBar {
	margin: 12px 0;
	width: 100%;
	color: var(--text-color);
}

/* 时间显示 */
.currentTime,
.totalTime {
	width: 48px;
	font-size: 14px;
	font-weight: 500;
}

/* 进度条容器 */
.progressBar {
	flex: 1;
	position: relative;
	margin-right: 16px;
}

/* 进度条样式 */
.progressBar input[type='range']::-webkit-slider-runnable-track {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	height: 7px;
	cursor: pointer;
}

.progressBar input[type='range']::-webkit-slider-thumb {
	height: 18px;
	width: 18px;
	margin-top: -6px;
	background: radial-gradient(circle, #fff 0%, var(--primary-color) 60%, var(--secondary-color) 100%);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	cursor: pointer;
	box-shadow: 0 0 12px var(--aurora-a);
}

/* 进度条填充色 */
.content-left .progress-colorFill {
	position: absolute;
	content: "";
	top: 10px;
	left: 0px;
	width: 0;
	height: 8px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	border-radius: 4px;
	pointer-events: none;
	box-shadow: 0 0 12px var(--aurora-c);
}

/* 播放控制按钮组 */
.left-playControl :is(.function-prevSong, .function-Play, .function-nextSong) {
	width: 48px;
	height: 48px;
	margin-right: 12px;
}

.left-playControl .function-Play {
	width: 60px;
	height: 60px;
}

/* 控制按钮图标 */
.left-playControl :is(.function-prevSong, .function-Play, .function-nextSong) .icon {
	width: 36px;
	height: 36px;
}

.left-playControl .function-Play .icon {
	width: 48px;
	height: 48px;
}

/* 控制按钮交互区域 */
.left-playControl :is(.playSetting-icon, .prevSong-icon,
	.Play-icon, .nextSong-icon, .displayChange-icon) {
	width: inherit;
	height: inherit;
	cursor: pointer;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 控制按钮悬停效果 */
.left-playControl :is(.playSetting-icon, .prevSong-icon,
	.Play-icon, .nextSong-icon, .displayChange-icon):hover {
	background-color: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* ================ 歌词显示区域 ================ */
/* 歌词面板基础布局 */
.panel-content .content-lyrics {
	min-height: 0;
	position: relative;
	height: 100%;
}

/* 歌词包装容器 */
.panel-content .right-wrap {
	width: 100%;
	max-width: 600px;
	height: 100%;
	position: relative;
	overflow: hidden;
	/* 遮罩渐变效果 */
	-webkit-mask: linear-gradient(0deg,
			transparent,
			hsla(0, 0%, 100%, .6) 10%,
			#fff 15%,
			#fff 85%,
			hsla(0, 0%, 100%, .6) 90%,
			transparent);
	mask: linear-gradient(0deg,
			transparent,
			hsla(0, 0%, 100%, .6) 10%,
			#fff 15%,
			#fff 85%,
			hsla(0, 0%, 100%, .6) 90%,
			transparent);
}

/* 隐藏滚动条 */
.panel-content .right-wrap::-webkit-scrollbar-thumb {
	display: none;
}

/* 歌词容器 */
.wrap-lyrics {
	position: absolute;
	width: 100%;
	padding: 0;
	height: auto;
	transition: transform 0.3s ease-out;
	font-size: 14px;
	line-height: 1.5;
	padding: 0;
}

/* 歌词行样式 */
.wrap-lyrics .lyric {
	cursor: pointer;
	padding: 1px 0;
	height: auto;
	line-height: 1.4;
	display: block;
	text-align: left;
	color: rgba(255, 255, 255, 0.7);
	border-radius: 0;
	opacity: 0.6;
	transition: all 0.3s ease;
	border: none;
	background: transparent;
	min-height: 1.4em;
}

.wrap-lyrics .lyric span {
	display: block;
	width: 100%;
	text-align: left;
	line-height: 1.4;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* 歌词行悬停效果 */
.wrap-lyrics .lyric:hover {
	opacity: 0.9;
}

/* 当前播放歌词样式 */
.wrap-lyrics .lyric.active {
	opacity: 1;
	color: var(--white-color);
	font-weight: 600;
	transform: none;
	background: transparent;
	border: none;
	box-shadow: none;
}

/* 填充行样式 */
.wrap-lyrics .lyric.padding {
	visibility: hidden;
	pointer-events: none;
}

/* ================ 歌曲列表样式 ================ */
/* 列表容器 */
.wrapper-contentList {
	width: 100%;
	height: 100%;
	padding: 12px 16px;
	overflow-y: auto;
	overflow-x: hidden;
	background: transparent;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
	transform: translateZ(0);
	will-change: transform;
	-webkit-overflow-scrolling: touch;
	min-height: 0;
}

/* 自定义滚动条样式 */
.wrapper-contentList::-webkit-scrollbar {
	width: 8px;
	/* 滚动条宽度 */
}

.wrapper-contentList::-webkit-scrollbar-track {
	background: transparent;
	/* 轨道背景透明 */
	border-radius: 4px;
}

.wrapper-contentList::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.1);
	/* 滑块颜色 */
	border-radius: 4px;
	transition: background 0.2s ease;
	/* 添加过渡效果 */
}

.wrapper-contentList::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.2);
	/* 悬停时的颜色 */
}

/* 列表项样式 */
.wrapper-contentList .contentList-item {
	justify-content: flex-start;
	padding: 0 18px;
	height: 58px;
	border-radius: 14px;
	color: var(--text-color);
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.01);
	transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

/* 列表项悬停效果 */
.wrapper-contentList .contentList-item:not(.active):hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(20, 10, 0, 0.35);
}

/* 当前播放项样式 */
.wrapper-contentList .contentList-item.active {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--white-color);
	border-color: transparent;
	box-shadow: 0 10px 18px var(--aurora-a);
	opacity: 0.85;
}

/* 列表项图片 */
.wrapper-contentList .item-img {
	width: 52px;
	padding: 0 6px;
	margin-left: 28px;
}

.wrapper-contentList .item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-color: transparent;
	/* 加载前的背景色 */
	transition: opacity 0.3s ease, transform 0.3s ease;
	will-change: opacity;
	/* 提示浏览器将要改变的属性 */
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* 列表项内容布局 */
.wrapper-contentList .item-title {
	flex: 2;
	padding: 0 6px;
	color: var(--text-color);
	font-weight: 600;
}

.wrapper-contentList .item-author {
	flex: 1;
	padding: 0 3px;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.65);
}

.wrapper-contentList .item-album {
	flex: 1;
	padding: 0 3px;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.55);
}

.wrapper-contentList .item-totalTime {
	width: 50px;
	padding: 0 3px;
	margin-right: 28px;
	justify-content: start;
	color: rgba(255, 255, 255, 0.7);
}

/* ================ 悬浮窗样式优化 ================ */
.hover-window {
	position: fixed;
	/* 改为 fixed 定位，避免滚动影响 */
	display: none;
	background: linear-gradient(145deg, rgba(21, 27, 58, 0.9), rgba(12, 14, 30, 0.92));
	color: var(--text-color);
	padding: 18px 26px 20px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	z-index: 1000;
	max-width: 360px;
	/* 限制最大宽度 */
	pointer-events: none;
	/* 防止悬浮窗影响鼠标事件 */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
	/* 添加平滑过渡 */
	box-shadow:
		0 25px 60px rgba(7, 4, 24, 0.65),
		0 0 0 1px rgba(255, 255, 255, 0.04);
	-webkit-backdrop-filter: blur(26px);
	backdrop-filter: blur(26px);
	transform: translateY(6px) scale(0.98);
	overflow: hidden;
}

.hover-window::after {
	content: '';
	position: absolute;
	inset: 1px;
	border-radius: 20px;
	background: radial-gradient(circle at 20% 20%, rgba(255, 196, 140, 0.18), transparent 50%),
		radial-gradient(circle at 80% 0%, rgba(119, 196, 255, 0.2), transparent 52%);
	opacity: 0.7;
	pointer-events: none;
}

/* 悬浮窗显示状态 */
.hover-window.visible {
	display: block;
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.hover-content {
	font-size: 14px;
	line-height: 1.6;
	font-weight: normal;
	word-break: break-word;
	white-space: pre-wrap;
	position: relative;
	z-index: 1;
}

/* ================ 右侧歌词区域 ================ */
.content-right {
	flex: 1;
	width: 100%;
	max-width: 600px;
	height: 100%;
	position: relative;
	border-radius: 24px;
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	overflow: hidden;
}

.right-wrap {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

/* 歌词容器 */
[play-lyrics] {
	width: 100%;
	position: absolute;
	left: 0;
	transition: transform 0.3s ease-out;
}

/* 歌词行样式 */
[play-lyrics] .lyric {
	padding: 18px 0;
	text-align: center;
	transition: all 0.3s;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
}

/* 当前播放歌词样式 */
[play-lyrics] .lyric.active {
	color: var(--theme-color);
	font-weight: bold;
	font-size: 18px;
}

/* 音量控制样式 */
.options-soundSlider input[type="range"] {
	height: 4px;
	border-radius: var(--border-radius);
}

/* 响应式设计优化 - 手机端详细规则在 response.css 中 */

:root {
	--transition: all 0.3s ease;
}

.btn-play:hover,
.btn-prev:hover,
.btn-next:hover {
	background: rgba(0, 0, 0, 0.05);
	transform: scale(1.1);
	transition: var(--transition);
}