/*定义一个动画*/
			@keyframes lizi{
				from{transform: rotateX(-10deg) rotateY(0deg);
				}
				to{
					transform: rotateX(-10deg) rotateY(360deg);
				}
			}
			body{
				background-color: aqua;
			}
          #box2{
          	border: 0px solid white;
          	height: 400px;
          	width: 400px;
			position: fixed;
          	left: calc(50% - 200px);
          	top: calc(50% - 200px);
          	transform-style: preserve-3d;
          	transform: rotateX(10deg) rotateY(10deg);
          	animation-name: lizi;
          	animation-duration: 20s;
          	animation-iteration-count: infinite;
          	animation-timing-function: linear;
          }
		  #box2>img{
		  	width: 100%;
		  	height: 100%;
		  	position: absolute;
		  	left: 0px;
		  	top: 0px;
		  	box-shadow: 2px 0px 0px 1px aliceblue;
		  }
		  #box2>img:nth-child(1){
		  	transform:translateZ(200px);
		  }
		  #box2>img:nth-child(2){
		  	transform: rotateY(180deg) translateZ(200px);
		  }
		  #box2>img:nth-child(3){
		  	transform:rotateY(90deg) translateZ(200px);
		  }
		  #box2>img:nth-child(4){
		  	transform: rotateY(270deg) translateZ(200px);
		  }
		  #box2>img:nth-child(5){
		  	transform:rotateX(90deg) translateZ(200px);
		  }
		  #box2>img:nth-child(6){
		  	transform: rotateX(270deg) translateZ(200px);
		  }
		  /*前六张设置透明度*/
		  #box2>img:nth-child(-n+6)
		  {
			  opacity: 0.4;
		  }
		  #box2>img:nth-child(7){
		  	transform:scale3d(0.5 ,0.5 ,0.5) translateZ(200px);
		  }
		  #box2>img:nth-child(8){
		  	transform: scale3d(0.5, 0.5, 0.5) rotateY(180deg) translateZ(200px);
		  }
		  #box2>img:nth-child(9){
		  	transform:scale3d(0.5, 0.5 ,0.5)  rotateY(90deg) translateZ(200px);
		  }
		  #box2>img:nth-child(10){
		  	transform: scale3d(0.5 ,0.5, 0.5) rotateY(270deg) translateZ(200px);
		  }
		  #box2>img:nth-child(11){
		  	transform:scale3d(0.5 ,0.5, 0.5)rotateX(90deg) translateZ(200px);
		  }
		  #box2>img:nth-child(12){
		  	transform: scale3d(0.5 ,0.5 ,0.5) rotateX(270deg)translateZ(200px);
		  }