
/* 首屏loading */
.app-loading {
  position: absolute;
  top: 0;
  z-index: 99;
  font-size: 12px;
}

.app-loading .text-center {
  text-align: center;
}

.logo-wrap {
  margin: 0 auto;
  margin-top: 195px;
  .tit {
      margin-top: 40px;
      font-size: 16px;
  }
  .copy {
      padding: 20px 0;
      width: 100vw;
      font-size: 12px;
  }
}

.loader{
  position:relative;
  margin: 0 auto;
  margin-top: 30px;
  width: 56px;
}
.loader span{
  display:block;
  bottom:0px;
  width: 9px;
  height: 5px;
  background:.9b59b6;
  position:absolute;
  animation: loader 1.5s  infinite ease-in-out;
}  
.loader span:nth-child(2){
  left:11px;
  animation-delay: .2s;  
}
.loader span:nth-child(3){
  left:22px;
  animation-delay: .4s;
}
.loader span:nth-child(4){
  left:33px;
  animation-delay: .6s;
}
.loader span:nth-child(5){
  left:44px;
  animation-delay: .8s;
}
@keyframes loader {
  0% {height:5px;transform:translateY(0px);background:#8e7344;}
  25% {height:30px;transform:translateY(10px);background:#e1b975;}
  50% {height:5px;transform:translateY(0px);background:#8e7344;}
  100% {height:5px;transform:translateY(0px);background:#8e7344;}
}

/* 高亮光弧 */
.floor-wrap {
  position: relative;
  margin: 0 auto;
  width: 130PX;
}
.floor-wrap img {
  width: 100%;
}
.floor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.floor span{
  position: absolute;
  width: 100px;
  height: 100%;
  top: 0;
  left: 150%;
  overflow: hidden;
  background: -webkit-gradient(linear,left top,right top,color-stop(0%,rgba(255,255,255,0)),color-stop(50%,rgba(255,255,255,.2)),color-stop(100%,rgba(255,255,255,0)));
  background: -webkit-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
  -webkit-transform: skewX(-25deg);
  -moz-transform: skewX(-25deg);
  animation: floor 3s linear infinite;
}
.floor span:nth-child(2){
  animation-delay: 1s
}
.floor span:nth-child(3){
  animation-delay: 2s
}
@-webkit-keyframes floor{
  0% {
      left: 150%
  }
  100% {
      left: -80px
  }
}
@keyframes floor{
  0% {
      left: 150%
  }
  100% {
      left: -100px;
  }
}
/* 高亮光弧 end */
.sub-tit {
margin-top: 13px;
letter-spacing: 2px;
font-size: 12px;
}

/* 首屏loading end */

.fixed-footer{
	position: fixed;
	bottom: 0;
  left: 0;
  width: 100%;
}
.fixed-footer a {
  color: #333;
  text-decoration: none;
}

.app-home {
  width: 100%;
  min-height: 100vh;
  text-align: center;
  background-color: #fff;
}