@keyframes box-ani {
				from {
					transform: rotateY(0deg);
				}

				to {
					transform: rotateY(360deg);
				}
			}

			body {
				background-color: black;
			}

			#box {
				width: 250px;
				height: 250px;
				border: 2px solid white;
				/* 固定定位，以浏览器为标准 */
				position: fixed;
				left: calc(50% - 125px);
				top: calc(50% - 125px);
				transform: rotateX(10deg) rotateY(10deg);
				/*  调用动画 */
				animation-name: box-ani;
				animation-duration: 5s;
				animation-iteration-count: infinite;
				animation-timing-function: linear;
				background-color: pink;
				/* 设置动画默认暂停 */
				animation-play-state: paused;
			}

			#bgm {
				width: 70%;
				/* 左右居中方式 */
				display: block;
				/* margin外边距，自动适应左右两边的距离 */
				margin: auto;
			}

			#lrc-box {
				/* 文字颜色 */
				color: white;
				border: 2px solid white;
				/* 以浏览器为标准定位 */
				position: fixed;
				bottom: 0px;
				width: 100%;
				/* 文字大小 */
				font-size: 48px;
				/* 文字居中 */
				text-align: center;
			}