@charset 'utf-8';
*{
	padding: 0;
	margin: 0;
	border: 0;
	text-decoration: none;
	outline: none;
}
#three3d{
	perspective:1000px;
	perspective-origin:50% 50%;
}
#range{
	position: absolute;
	width: 500px;
	height: 50px;
	bottom: 10%;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.wraper{
	position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 200px;
	height: 200px;
	cursor: pointer;
	transform-origin:center center -100px;
	transform-style: preserve-3d;
}
.square{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	width: 200px;
	height: 200px;
	background-color: blue;
	text-align: center;
	line-height: 200px;
	font-size: 200px;
	color: #fff;
	font-weight: bold;
	opacity: 0.8;
	border:1px #fff solid;
}
#square6{
	transform:translateZ(-200px); 
}
#square2{
	transform-origin: left bottom; 
	transform:rotateX(90deg);
}
#square4{
	transform-origin: left top; 
	transform:rotateX(-90deg);
}
#square3{
	transform-origin: left;
	transform:rotateY(90deg);
}
#square5{
	transform-origin: right;
	transform:rotateY(-90deg);
}
#rotatebtn{
	position: absolute;
	top: 400px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 200px;
	height: 80px;
	font-size: 30px;
	color: #fff;
	background-color: green;
	box-shadow: 5px 5px 10px #000;
	border-radius: 10px;
}