@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  border: none;
}

.list-body {
  display: none;
}

.head-cale {
  display: none;
}

#progressBar-layout {
  position: relative;
  top: 120px;
  margin: 0 auto;
  border-radius: 8px;
  background-image: url("../../img/bgi.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 1100px;
  height: 225px;
  box-shadow: 0 8px 20px 0 rgba(15, 41, 77, 0.12);
}
#progressBar-layout #progressBar {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 97%;
  height: 10px;
  background-color: #fff;
  border-radius: 5px;
}
#progressBar-layout #progressBar #progress {
  position: absolute;
  width: 0%;
  height: 10px;
  background-color: #00c07b;
  border-radius: 5px;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #00c07b, #00c07b), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0px, rgba(255, 255, 255, 0.3) 5px, transparent 5px, transparent 10px);
  background-blend-mode: overlay;
}
#progressBar-layout #progressBar #progress::before {
  content: attr(data-before);
  position: absolute;
  top: 30%;
  right: 50px;
  transform: translateY(-50%);
  font-size: 12px;
}
#progressBar-layout #progressBar #progress::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-image: url("../../img/飞机图标.png");
  background-size: contain;
  background-repeat: no-repeat;
}

#resultTimeout {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 9999;
}
#resultTimeout #resultTimeoutlayout {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #fff;
}
#resultTimeout #resultTimeoutlayout #resultTimeoutTitle {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
#resultTimeout #resultTimeoutlayout #resultTimeoutContent {
  margin: 10px 0;
  color: #666;
  text-indent: 2em;
}
#resultTimeout #resultTimeoutlayout #resultTimeoutButton {
  align-self: flex-end;
  margin: 10px 0;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  background-color: #2182FC;
}/*# sourceMappingURL=index.css.map */