.QPlayer {
	position: relative;
}

.QPlayer .pContent {
	top: 10px;
	left: 0;
	right: 0;
	position: absolute;
	bottom: 0;
	z-index: 9;
}

#pContent .stretchBtn {
	display: none;
}

#QPlayer {
	max-width: 260px;
	position: absolute;
	top: 0;
	right: 0;
	-moz-box-shadow: 5px 10px 20px 1px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 5px 10px 20px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 5px 10px 20px 1px rgba(0, 0, 0, 0.2);
	transition: transform .5s ease;
	-webkit-animation-duration: 2.0s;
	animation-duration: 2.0s;
	z-index: 99;
}

#player {
	width: 250px;
	height: 60px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}

#player .cover {
	width: 60px;
	height: 60px;
	border: 0px solid #333;
	overflow: hidden;
	-moz-box-shadow: 0 2px 2px var(--BW0);
	-webkit-box-shadow: 0 2px 2px var(--BW0);
	-o-box-shadow: 0 2px 2px var(--BW0);
	box-shadow: 0 2px 2px rgba(17, 17, 17, 0);
	background-color: var(--BW3);
	display: none;
}

#player .cover img {
	height: 100%;
	border-radius: 99%;
	cursor: pointer;
}

.audioPlayer {
	height: 100%;
	position: relative;
	z-index: 2;
}

.frequencySpectrum {
	padding: 0 20px;
}

.frequencySpectrum ul li {
	background: var(--a_1);
	background: linear-gradient(0deg, var(--a_1) 5%, var(--a_1) 100%);
	margin-left: 3px;
	display: inline-block;
	width: 3px;
	height: 10px;
}

.play_FS .frequencySpectrum ul li {
	height: 30px;
}

.play_FS .fs1 {
	-webkit-animation: .8s .1s living linear infinite backwards normal;
	animation: .8s .1s living linear infinite backwards normal;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.play_FS .fs2 {
	-webkit-animation: .8s .3s living linear infinite backwards normal;
	animation: .8s .3s living linear infinite backwards normal;
	-webkit-animation-delay: -1.3s;
	animation-delay: -1.3s;
}

.play_FS .fs3 {
	-webkit-animation: .8s .6s living linear infinite backwards normal;
	animation: .8s .6s living linear infinite backwards normal;
	-webkit-animation-delay: -1.6s;
	animation-delay: -1.6s;
}

.controls {
	position: relative;
}

.controls>div {
	padding: 0 10px;
	cursor: pointer;
}

.controls>div i {
	font-size: 20px;
	color: var(--BW5);
}

#player .ctrl {
	max-width: calc(100% - 60px);
	padding: 5px 10px;
	position: relative;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	z-index: 1;
}

#player .ctrl .musicTag {
	cursor: ew-resize;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

#player .ctrl .musicTag p {
	line-height: 1.0;
	font-size: 16px;
	font-weight: 700;
	color: var(--BW4);
}

#player .ctrl .musicTag p span {
	line-height: 1.0;
	font-size: 14px;
	font-weight: 500;
	color: var(--BW3);
}

.liebiao {
	padding: 5px;
	cursor: pointer;
	display: none;
}

.liebiao i {
	font-size: 18px;
	color: var(--BW5);
}

#player .ctrl .progress {
	margin: 5px 0 0;
}

#player .ctrl .progress .timer p {
	line-height: 1.0;
	font-size: 12px;
	color: var(--BW5);
}

.playlist article {
	counter-reset: zone-counter;
}

#playlist {
	width: 240px;
	max-height: 0;
	margin: 0;
	padding: 0;
	position: relative;
	overflow-y: scroll;
	background: #FFF;
}

#playlist li {
	font-size: 12px;
	padding: 10px;
	cursor: pointer;
}

#playlist li:before {
	content: counter(zone-counter);
	counter-increment: zone-counter;
	font-size: 14px;
	color: var(--BW3);
	text-align: center;
	position: relative;
}

#playlist li:hover {
	color: var(--BW2);
	border-left: 3px solid var(--a_1);
}

#playlist li.playing {
	color: var(--BW1);
	border-left: 3px solid var(--a_1);
}


#playlist li p {
	padding: 0 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--BW3);
}

#playlist li span {
	font-size: 14px;
	color: var(--BW3);
}

#playlist li.playing p {
	font-size: 14px;
	font-weight: 700;
	color: var(--BW1);
}

#playlist li:hover {
	color: var(--BW2);
	border-left: 3px solid var(--a_1);
}

#playlist li:hover p {
	color: var(--BW2);
}

#pContent .ssBtn {
	position: relative;
}

#pContent .stretchBtn {
	width: 30px;
	height: 30px;
	top: -10px;
	right: -10px;
	cursor: pointer;
	position: absolute;
	background-color: #fff;
	-moz-box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.2);
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	transform: rotate(0);
	z-index: 9;
}

#pContent .stretchBtn i {
	font-size: 18px;
	font-weight: 700;
	color: var(--BW0);
}

#pContent .stretchBtn.on {
	transform: rotate(180deg);
}

@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(360deg)
	}
}

@-moz-keyframes rotate {
	from {
		-moz-transform: rotate(0deg)
	}

	to {
		-moz-transform: rotate(360deg)
	}
}

@-ms-keyframes rotate {
	from {
		-ms-transform: rotate(0deg)
	}

	to {
		-ms-transform: rotate(360deg)
	}
}

@-o-keyframes rotate {
	from {
		-o-transform: rotate(0deg)
	}

	to {
		-o-transform: rotate(360deg)
	}
}

/* 设置滚动条的样式 */
#QPlayer::-webkit-scrollbar {
	width: 3px !important;
}

/* 滚动槽 */
#QPlayer::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
	border-radius: 10px !important;
}

/* 滚动条滑块 */
#QPlayer::-webkit-scrollbar-thumb {
	border-radius: 10px !important;
	background: rgba(0, 0, 0, 0.1) !important;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5) !important;
}

#QPlayer ::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255, 0, 0, 0.4) !important;
}

.marquee {
	overflow: hidden;
}

.qplayer-notification {
	margin: 10px;
	top: 20px;
	right: 30px;
	position: fixed;
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	-o-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
	z-index: 999999;
}


.qplayer-notification-icon {
	width: 50px;
	height: 50px;
	position: absolute;
	float: left;
	text-align: center;
	vertical-align: bottom;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	background-color: var(--a_1);
}



.qplayer-notification .messageBox {
	padding-left: 14px;
	padding-right: 60px;
	height: 50px;
	vertical-align: middle;
	display: table;
	background-color: #fff;
	left: 50px;
	top: 0;
	position: relative;
}


.qplayer-notification .message {
	display: table-cell;
	vertical-align: middle;
	white-space: nowrap;
	color: var(--BW1);
	font-size: 16px;
	font-weight: bold;
}


.qplayer-notification .close {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 20px;
	color: var(--BW2);
	padding: 10px;
	text-decoration: none;
	display: none;
}