@charset "utf-8";
body {
  background: #000 url(../img/bg.jpg);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

* {
  position: absolute;
  margin: 0; padding: 0;
}
#text{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: none;
}
.logo{display: block;
	position: fixed;left:90px;top:500px;width:180px;z-index: 2;
}
.logo img{
	width: 180px;
}
.xuanzhuan{
	animation:xuanzhuan 1s infinite;
}
@keyframes xuanzhuan{
	from{transform: rotate(0deg);}
	to{transform: rotate(360deg);}
}