.Page-left{width: 282px;}
.Page-left .title{line-height: 89px; width: 282px;height: 89px;background-image: url('../image/menu-bg.svg');background-size: 100%;}
.Page-left .list{
	background: linear-gradient(180deg, rgba(20, 105, 160, 0.22) 0%, rgba(8, 122, 244, 0.29) 100%);
	box-sizing: border-box;padding: 20px 0;
	border: 1.81px solid;margin-top: 20px;
	display: flex;align-items: center;flex-direction: column;justify-content: center;
	border-image: linear-gradient(180deg, rgba(8, 169, 244, 0.41) 0%, rgba(8, 169, 244, 0.58) 100%) 1.81;
}
.Page-left .list li a{display: block; width: 254px; height: 55px;background-image: url('../image/nav-bg.svg');text-align: center;line-height: 55px;margin: 5px 0;}
.Page-left .list li a.active{background-image: url('../image/nav-bg-active.svg');}

.Page-right{
	width: calc(100% - 282px - 20px);
	margin-left: 20px;
	padding: 20px 30px;
	height: 65vh;
	background: rgba(1, 8, 24, 0.3);
	box-sizing: border-box;
	border: 2px solid rgba(75, 156, 255, 0.5);
	backdrop-filter: blur(20px);
	box-shadow: inset 0px 0px 40px 0px rgba(0, 155, 255, 0.6);
	
}
.Page-right .pagesBread{justify-content: space-between;}
.Page-right .pagesBread ul{align-items: center;}
.Page-right .pagesBread>a{background: rgba(10, 26, 52, 0.6);border-radius: 64px;
border: 1.28px solid rgba(21, 151, 243, 0.7049);padding: 10px 24px; display: flex; align-items: center;
box-shadow: inset 0px 0px 6.41px 0.86px #1597F3;gap: 10px}
.Page-right .content .title{border-bottom: 1px #2673C1 solid;margin-bottom: 20px;padding-bottom: 20px;}
.Page-right .content .box{height: 40vh; overflow-y: scroll;}

.Por-list{overflow-y: scroll;height: 52vh;}
.Por-list .item{width:calc(100% / 4 - 20px);margin-top: 20px;}
.Por-list .item:not(:nth-child(4n-3)){margin-left: 20px;}
.Por-list .item .top{
	background: linear-gradient(180deg, rgba(20, 105, 160, 0.22) 0%, rgba(8, 122, 244, 0.29) 100%);
	box-sizing: border-box;padding: 10px;
	border: 1.67px solid;
	border-image: linear-gradient(180deg, rgba(8, 169, 244, 0.41) 0%, rgba(8, 169, 244, 0.58) 100%) 1.67;
}
.Por-list .item .top .img{overflow: hidden;}
.Por-list .item .top img{transition: all .4s ease;}
.Por-list .item:hover img{transform: scale(1.1);}
.Por-list .item p{
	background: linear-gradient(180deg, rgba(20, 105, 160, 0.22) 0%, rgba(8, 122, 244, 0.29) 100%);
	box-sizing: border-box;
	border: 1.67px solid;
	border-image: linear-gradient(180deg, rgba(8, 169, 244, 0.41) 0%, rgba(8, 169, 244, 0.58) 100%) 1.67;
}


/* 播放容器 */
.audio-container {width: 90%;margin: auto;}
.audio-card {
	background: linear-gradient(180deg, #032239 0%, rgba(3, 34, 57, 0) 100%);
	box-sizing: border-box;
	border: 1px solid rgba(6, 146, 252, 0.502);
	backdrop-filter: blur(10px);
	box-shadow: inset 0px 0px 10px 0px rgba(6, 146, 252, 0.8);
	border-radius: 8px;box-shadow: var(--shadow-sm);padding: 24px;}
.audio-title {
	font-size: 24px;font-weight: bold;
	color: var(--cyan-color);
	text-align: center;margin-bottom: 24px;line-height: 1.3;}

@media (min-width: 768px) {
	.audio-title {
		font-size: 32px;
	}
}
/* 播放控制区域 */
.audio-controls {display: flex;align-items: center;gap: 16px;}
/* 播放/暂停按钮 */
.play-pause-btn {
	width: 48px;height: 48px;border-radius: 50%;
	background: linear-gradient(180deg, #032239 0%, #035189 100%);
	box-sizing: border-box;
	border: 1px solid rgba(6, 146, 252, 0.502);
	backdrop-filter: blur(10px);
	box-shadow: inset 0px 0px 10px 0px rgba(6, 146, 252, 0.8);
	color: white;border: none;
	cursor: pointer;display: flex;align-items: center;
	justify-content: center;transition: var(--transition);flex-shrink: 0;
}
.play-pause-btn:hover {background-color: #1597F3;}
.play-pause-btn i {font-size: 20px;}
/* 进度条区域 */
.progress-area {flex: 1;}
/* 自定义滑块样式 */
.custom-slider {
	-webkit-appearance: none;
	width: 100%;height: 4px;border-radius: 2px;
	background: rgba(0, 155, 255, 0.6);outline: none;cursor: pointer;
}
.custom-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #1597F3;
	cursor: pointer;
}
.custom-slider::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #1597F3;
	cursor: pointer;
	border: none;
}
/* 时间显示 */
.time-display {
	display: flex;
	justify-content: space-between;
	color: var(--main-color);
	font-size: 12px;
	margin-top: 4px;
}
/* 音量控制区域 */
.volume-controls {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}
.volume-icon {
	color: var(--color-gray-dark);
	font-size: 16px;
}
.volume-slider {
	width: 64px;
}
