

.main-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.main-bg img {
  width: 100%;
}


#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: 100% !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: 18px !important;
    margin-top: 5px !important;
  }
  #progressimg {
    width: 60px!important;
    top: -33px!important;
  }

  #idloading {
    display: block !important;
    width: 100%;
    text-align: center;
    left: 0;
    margin-top: 6px;
    position: fixed;
    color: #080441;
    font-weight: bold;
    font-size: 12px;
  }
}

/* 横屏 */
@media (orientation: landscape) {

  #splash1 {
    background-size: 50% !important;
    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: #080441;
    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; */
  background-image: url(../image/p.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


#loadingdiv{
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #09033F;
}
/* 
.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;
  }
}