* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body,
h1,
h3 {
  margin: 0;
}
html,
body,
.boot-dpweb-wrapper {
  height: 100%;
}
.boot-dpweb-wrapper {
  margin: 0 auto;
  min-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #111c60;
  background: url("../images/loading_bg.jpg") no-repeat;
  background-size: 100% 100%;
  font-family: "Microsoft YaHei";
}
.boot-dpweb-wrapper h3 {
  position: relative;
  font-size: 26px;
  font-weight: normal;
}
.boot-dpweb-wrapper h3 strong {
  font-size: 0;
  width: 435px;
  height: 77px;
  margin: 0 auto;
  display: block;
  background: url("../images/loading_text.png") no-repeat;
  background-size: 100% 100%;
}
@keyframes load {
  0% {
    height: 8px;
  }

  50% {
    height: 48px;
  }

  100% {
    height: 8px;
  }
}
.boot-dpweb-wrapper h3 em {
  position: absolute;
  left: -130px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  height: 48px;
  margin-top: -24px;
}
.boot-dpweb-wrapper h3 em:last-child {
  right: -130px;
  left: auto;
  flex-direction: row-reverse;
}
.boot-dpweb-wrapper h3 em i {
  width: 8px;
  background-color: #111C60;
  border-radius: 8px;
}
.boot-dpweb-wrapper h3 em i.dpweb-hg1 {
  animation: load 1.5s 0s infinite linear;
}
.boot-dpweb-wrapper h3 em i.dpweb-hg2 {
  animation: load 1.5s 0.2s infinite linear;
}
.boot-dpweb-wrapper h3 em i.dpweb-hg3 {
  animation: load 1.5s 0.4s infinite linear;
}
.boot-dpweb-wrapper h3 em i.dpweb-hg4 {
  animation: load 1.5s 0.6s infinite linear;
}
.boot-dpweb-wrapper h3 em i.dpweb-hg5 {
  animation: load 1.5s 0.8s infinite linear;
}


@keyframes rotateloading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.base-loading {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(#fff, .8);
  display: flex;
  align-items: center;
  justify-content: center;
}  

.base-loading .loading-content {
  position: relative;
  width: 200px;
  height: 200px;
}

.loading-inner {
  position: absolute;
  width: 144px;
  height: 144px;
  top: 28px;
  left: 28px;
  border-radius: 50%;
  border: 16px solid #000;
  border-color: #0ca6fe transparent #0ca6fe transparent;
  animation: rotateloading 1s linear infinite;
}

.loading-dot {
  width: 100%;
  height: 100%;
  transform: rotateloading(45deg);
}

.loading-dot ::before,
.loading-dot ::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: -16px;
  left: 48px;
  background: #0ca6fe;
  border-radius: 50%;
  box-shadow: 0 128px 0 0 #0ca6fe;
}

.loading-dot ::after {
  top: 48px;
  left: -16px;
  box-shadow: 128px 0 0 0 #0ca6fe;
}