@charset "utf-8";
.stars-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat:no-repeat;
  background-size:cover;
  background-position: 100% 100%;
  overflow: hidden;
  z-index:-999;
}
.PlayEy {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 353px;
	height: 353px;
}

.Btn {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 95px;
	height: 95px;
	background-color: yellow;
	background: url(../img/btn-bg.png) no-repeat 50%/100% 100%;
	animation: Btn-bg 3s linear infinite;
}

.Play {
	position: absolute;
	width: 25px;
	height: 28px;
	background: red;
	background: url(../img/pause.png) no-repeat 50%/100% 100%;
	transition: .5s;
}

.btns-bg {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px auto;
	width: 353px;
	height: 353px;
}
.songtext{
  line-height:25px;
  height:25px;	
}
.songtext1{
  line-height:25px;
  height:25px;
  font-family:"Microsoft Yahei";
  background: linear-gradient(to right, #999999, #999999);
  -webkit-background-clip: text;
  color: transparent;  
}
.songtext .songname{
  font-size:1.1rem;
  font-weight: bold;
  font-family:"Microsoft Yahei";
  background: linear-gradient(to right, #ffffff, #cccccc);
  -webkit-background-clip: text;
  color: transparent;
}
@keyframes Btn-bg {
	from {}
	to {
		transform: rotate(360deg);
	}
}