
@keyframes yunanimation {
  0% {
    left: 0%;
    top: 0%;
  }

  50% {
    left: 60%;
    top: 0%;
  }

  100% {
    left: -60%;
    top: 0%;
  }
}

@keyframes yunanimation2 {
  0% {
    left: 30%;
    top: 0px;
  }

  50% {
    left: -80%;
    top: 0px;
  }

  100% {
    left: 80%;
    top: 0px;
  }
}

.main-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.main-bg img {
  width: 100%;
}

#yun {
  width: 100%;
  position: absolute;
}

#yun .yun1 {
  position: relative;
  animation-name: yunanimation;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

#yun .yun2 {
  position: relative;
  animation-name: yunanimation2;
  animation-duration: 40s;
  animation-iteration-count: infinite;
}


#splash1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/logo.png) no-repeat center;
  background-size: 45%;
}


/* 竖屏 */
@media (orientation: portrait) {

  #splash1 {
    background-size: 90% !important;
    background-position-y: 30% !important;
  }

  .progress-bar1 {
    height: 27px !important;
    padding-left: 3px !important;
    left: 15.5% !important;
    width: 65% !important;
  }

  .progress-bar1 span {
    height: 17px !important;
    margin-top: 5px !important;
  }
  #progressimg {
    width: 60px!important;
    top: -43px!important;
  }

  #idloading {
    display: block !important;
    width: 100%;
    text-align: center;
    left: 0;
    margin-top: 6px;
    position: fixed;
    color: white;
    font-weight: bold;
    font-size: 12px;
  }
}

/* 横屏 */
@media (orientation: landscape) {

  #splash1 {
    background-position-y: 30% !important;
  }

  .progress-bar1 {
    height: 35px !important;
    padding-left: 6px !important;
  }

  .progress-bar1 span {
    height: 19px !important;
    margin-top: 8px !important;
  }

  #idloading {
    display: block !important;
    width: 100%;
    text-align: center;
    left: 0;
    margin-top: 8px;
    position: fixed;
    color: white;
    font-weight: bold;
  }
}

#idloading {
  display: none;
}


#progressimg {
  position: relative;

  left: -50%;
  top: -65px;

  transition: left 5s ease-out;

  /* height: 15px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 5px;
  padding-right: 5px; */
}

.progress-bar1 {
  position: absolute;
  left: 27.5%;
  top: 80%;
  height: 15px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 5px;
  padding-right: 5px;
  width: 45%;
  /* border-radius: 7px; */
  /* box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;  */
  background-image: url('../image/progress.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.progress-bar1 span {
  display: block;
  height: 9px;
  margin-top: 3px;
  /* margin-left: 2px; */

  border-radius: 8px;
  transition: width 5s ease-out;
  background-color: #3dc5de;
}


#loadingdiv{
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #A6F4FF;
}

.stripes1 span {
  background-size: 30px 30px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
      transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
      transparent 75%, transparent);

  animation: animate-stripes 1s linear infinite;
}

@keyframes animate-stripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 0;
  }
}