body,
html {
  height: 100%;
  font-family: Chinese Quote, -apple-system, BlinkMacSystemFont, Segoe UI,
    PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica,
    Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}

body {
  background-color: #f5f5f9;
  font-size: 14px;
  line-height: 1.8;
}

#load {
  height: 100%;
  position: fixed;
  width: 100%;
  background-size: cover;
  text-align: center;
  z-index: 10000;
  background: #fff;
}
#load > div {
  height: 100%;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#file_progress {
  width: 100%;
  background-color: grey;
}

#progress_bar {
  width: 1%;
  height: 0.3em;
  background-color: green;
}

.loader {
  /* position: absolute; */
  width: 100%;
  text-align: center;
  /* top: 40%; */
}

.loader_btn {
  /* position: absolute; */
  width: 100%;
  text-align: center;
  /* top: 50%; */
  margin-top: 8vw;
}

.loader_a {
  width: 29.33vw;
  height: 12vw;
  line-height: 12vw;
  display: inline-block;
  /* margin-top: 15px; */
  font-size: 4.53vw;
  color: #333;
  text-decoration: none;
  border: 2px solid rgba(51, 51, 51, 1);
  border-radius: 13.33vw;
  /* padding: 3px 5px; */
  box-sizing: content-box;
}

.dot {
  width: 8px;
  height: 8px;
  background: #0c83cc;
  border-radius: 100%;
  display: inline-block;
  margin-left: 8px;
  animation: slide 1s infinite;
}

.dot:nth-child(1) {
  animation-delay: 0.3s;
}

.dot:nth-child(2) {
  animation-delay: 0.6s;
}

@-moz-keyframes slide {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes slide {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@-o-keyframes slide {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slide {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/*****************ErrorDiv******************/
#errorDiv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2147483647;
  box-sizing: border-box;
  display: none;
  max-height: 100%;
  border: 3px solid #afe5ff;
  background-color: #2b63a7;
  color: #fff;
}

#errorDiv > p {
  padding-left: 7px;
  font-weight: bold;
  margin-top: 2px;
  margin-bottom: 0;
}

#errorDiv > #msg {
  font-size: 10px;
  padding: 10px;
  margin: 5px;
  box-sizing: border-box;
  border: 2px solid #9a9a9a;
  overflow-y: scroll;
}

#errorDiv > .footer {
  text-align: center;
  margin-bottom: 5px;
}

#errorDiv .footer > a {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  padding: 0 15px;
  text-decoration: none;
  font-weight: 700;
}
/********************swLoading**************/
#swLoading {
  position: absolute;
  top: 0;
  height: 0.3em;
  display: none;
  width: 100%;
  z-index: 10000;
}

#swLoading > #loadFilePath {
  display: block;
  text-align: left;
  color: #e6e6e6;
  font-size: 5px;
  height: 0;
  transform: scale(0.6);
  transform-origin: left;
}

#timeout-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}

#timeout-wrapper .timeout-image {
  width: 160px;
  height: 130px;
  margin: 0 auto;
}

#timeout-wrapper .timeout-image img {
  width: 100%;
  height: auto;
}

#timeout-wrapper .prompt {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  opacity: 1;
}

#timeout-wrapper .retry-tips {
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  color: rgba(153, 153, 153, 1);
  margin: 0 0 25px 0;
  opacity: 1;
}

#timeout-wrapper .retryButton {
  display: block;
  width: 90%;
  height: 42px;
  line-height: 42px;
  opacity: 1;
  color: #ffffff;
  font-size: 15px;
  text-align: center;
  border-radius: 5px;
  margin: 0 auto;
}
