@charset "utf-8";

body {
	background-color: #000;
}

/* CSS Document */
/*清除浏览器默认样式*/
* {
	margin: 0;
	padding: 0;
}

/*整体控制音乐播放界面*/
#box-video {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
}

/*插入视频*/
#v1 {
	position: absolute;
	width: 100vw;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}

/*唱片部分*/
.cd {
	width: 422px;
	height: 422px;
	position: absolute;
	top: 25%;
	left: 10%;
	z-index: 2;
	border-radius: 50%;
	border: 10px solid #FFF;
	box-shadow: 5px 5px 15px #000;
	background: url(../images/icon.avif) no-repeat;
	background-size: 200%;
	animation: dh1 20s linear infinite;
}

@keyframes dh1 {
	0% {
		transform: rotateZ(0deg);
	}

	100% {
		transform: rotateZ(360deg);

	}
}

.center {
	width: 100px;
	height: 100px;
	background-color: #000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -50px;
	margin-top: -50px;
	z-index: 3;
	border: 5px solid #FFF;
	background-image: url(../images/yinfu.gif);
	background-position: center center;
	background-repeat: no-repeat;
	animation: dh1 20s linear infinite reverse;
}

/*歌词部分*/
.song {
	position: absolute;
	top: 25%;
	left: 50%;
}

@font-face {
	font-family: MD;
	src: url(../font/MD.ttf);
}

h2 {
	font-family: MD;
	font-size: 110px;
	color: #913805;
}

p {
	width: 556px;
	height: 300px;
	font-family: "微软雅黑";
	padding-left: 30px;
	line-height: 30px;
	background: url(../images/bg.png) repeat-x;
	box-sizing: border-box;
	overflow: hidden;
	overflow-y: auto;
}

#v2 {
	width: 556px;
	position: relative;
	bottom: 50px;
}