/* 全局loading */

.loader-total1 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
}

.loader-total1 .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -45px;
  margin-top: -200px;
}

.loader-total1 .loading_text {
  display: block;
  opacity: 0.9;
  font-size: 14px;
  color: @gray-P1;
  letter-spacing: 0;
  text-align: center;
  margin-left: 11px;
}

.loader-total1 .sk-fading-circle {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.loader-total1 .sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.loader-total1 .sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #ffe82d;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay1 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay1 1.2s infinite ease-in-out both;
}

.loader-total1 .sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.loader-total1 .sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.loader-total1 .sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.loader-total1 .sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.loader-total1 .sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.loader-total1 .sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.loader-total1 .sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.loader-total1 .sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.loader-total1 .sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.loader-total1 .sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.loader-total1 .sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.loader-total1 .sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.loader-total1 .sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.loader-total1 .sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.loader-total1 .sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.loader-total1 .sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.loader-total1 .sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.loader-total1 .sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.loader-total1 .sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.loader-total1 .sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.loader-total1 .sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.loader-total1 .sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay1 {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

@keyframes sk-circleFadeDelay1 {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

/* 不支持的ie弹窗样式 */
.ietip {
  width: 460px;
  height: 360px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -230px;
  margin-top: -180px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding-top: 68px;
  display: none;
  z-index: 100000;
}

.iemask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.7;
  z-index: 9000;
  display: none;
}
.ietip .main {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ietip .title {
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

.ietip .des {
  margin-top: 18px;
  font-size: 12px;
  color: #000;
}

.ietip .clearboth {
  clear: both;
}

.ietip .close1 {
  position: absolute;
  width: 39px;
  height: 39px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.ietip .link {
  margin-right: -20px;
  margin-top: 30px;
  text-align: center;
  padding-left: 50px;
}

.ietip .link a {
  float: left;
  width: 60px;
  margin-right: 20px;
}

.ietip .link a img {
  display: block;
  width: 44px;
  height: 42px;
  margin-left: auto;
  margin-right: auto;
}

.ietip .link a p {
  text-align: center;
  color: @gray-P1;
  font-size: 12px;
  margin-top: 9px;
}

.ietip .continu {
  color: @gray-P1;
  font-size: 12px;
  margin-top: 30px;
  display: inline-block;
}

.ietip .continu:hover {
  color: #000;
}

#launcher {
  right: -6px !important;
  bottom: 30px !important;
  margin: 6px 20px !important;
}

@media screen and (max-width: 1020px) {
  .weex-index-wrap {
    #launcher {
      bottom: 70px !important;
    }
  }
  .download-wrap-new {
    #launcher {
      bottom: 70px !important;
    }
  }
}
