body{margin:0;padding:0;background:#ffe;font-size:14px;font-family:'微软雅黑','宋体',sans-serif;color:#231F20;overflow:auto}
a {color:#000;font-size:14px;}
#main{width:100%;}
#wrap{position:relative;margin:0 auto;width:1100px;height:680px;margin-top:10px;}
#text{width:400px;height:425px;left:60px;top:80px;position:absolute;}
#code{display:none;font-size:16px;}
#clock-box {position:absolute;left:60px;top:550px;font-size:28px;display:none;}
#clock-box a {font-size:28px;text-decoration:none;}
#clock{margin-left:48px;}
#clock .digit {font-size:64px;}
#canvas{margin:0 auto;width:1100px;height:680px;}
#error{margin:0 auto;text-align:center;margin-top:60px;display:none;}
.hand{cursor:pointer;}
.say{margin-left:5px;}
.space{margin-right:150px;}

@keyframes zhuandong{
      0%{
        transform:rotatex(-20deg) rotatey(0deg);
      }
      100%{
        transform:rotatex(-20deg) rotatey(360deg);
      }
    }
    #stage{
      width:100%;
      height:80%;
      margin:10px auto;
      border:none;
      perspective:1200px;
	  position:absolute;
	  top:center;
	  left:center;
	  z-index:-1;

      
    }
    #parent{
      width:100%;
      height:80%;


      transform-style:preserve-3d;
      position:relative;
      animation:zhuandong 12s linear infinite;
      animation-fill-mode:both;
      animation-play-state:running;
    }


    #parent div{
      width:200px;
      height:200px;
      position:absolute;
      top:150px;
      left:350px;
      border:1px solid pink;
    }

     #d1{
      transform:translatez(300px);
     }

     #d2{
      transform:rotatey(60deg) translatez(300px);
     }

     #d3{
      transform:rotatey(120deg) translatez(300px);
     }

     #d4{
      transform:rotatey(180deg) translatez(300px);
     }

     #d5{
      transform:rotatey(240deg) translatez(300px);
     }

     #d6{
      transform:rotatey(300deg) translatez(300px);
     }