* {
	margin: 0;
	padding: 0;
}

.content,
.max {
	position: absolute;
	width: 100%;
	height: 100%;
}

.page {
	position: relative;
	width: 100%;
	height: 100%;
	/*overflow: hidden;*/
	/*background: black;*/
	/*background: rgba(255, 165, 0,0.5);*/
}

.ifram {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.con {
	position: absolute;
	width: 100%;
	height: 100%
}

.max {
	position: absolute;
	width: 100%;
	height: 100% z-index: 100;
	/*background: beige;*/
}

.musicBtn {
	width: 9%;
	position: absolute;
	left: 89%;
	top: 1%;
}

.musicrotate {
	animation: run 3s linear infinite;
}

@-webkit-keyframes run {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.up
{
	width: 12%;
    position: absolute;
    bottom: 2%;
    left: 48%;
	animation: upup 1s infinite;
	display: none;
}

@-webkit-keyframes upup {
	from {
		transform: scale(0.5);
		bottom: 1%;
	}
	to {
		transform: scale(1);
		bottom: 2%;
	}
}