* {
  margin: 0;
  padding: 0;
}

/* 首页加载时的动画 */
@keyframes scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.spinner {
  width: 100px;
  height: 100px;
  background-color: #0079bf;
  border-radius: 100%;
  -webkit-animation: scaleout 2s infinite ease-in-out;
  animation: scaleout 2s infinite ease-in-out;
}

.reload_btn {
  border-radius: 5px;
  padding: 5px 15px;
  margin-top: 15px;
  font-size: 12px;
  border: 0px none;
  color: #fff;
  cursor: pointer;
  background: #409eff;
  display: inline-block;
}

.loading_wrap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #303643;
}

.loading_text {
  margin-top: 30px;
  color: #999;
  font-size: 12px;
}

#ifShowChrome {
  text-align: center;
  padding: 15px;
  font-size: 12px; 
  background: #ff821e;
  color: #fff;
  margin-top:30px;
  border-radius:8px;
}
