html,
body,
#app {
  height: 100%;
  margin: 0;
  padding: 0;
}

.jbs-home {
  /* background-color: #303133; */
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.jbs-home__main {
  user-select: none;
  width: 100%;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.jbs-home__footer {
  width: 100%;
  flex-grow: 0;
  text-align: center;
  padding: 1em 0;
}

.jbs-home__footer > a {
  font-size: 12px;
  color: #ABABAB;
  text-decoration: none;
}

.jbs-home__loading {
  height: 32px;
  width: 32px;
  margin-bottom: 20px;
}

.jbs-home__title {
  /* color: #FFF; */
  font-size: 14px;
  margin-bottom: 10px;
  color: #303133;
  display: none;
}

.jbs-home__sub-title {
  /* color: #ABABAB; */
  font-size: 12px;
  color: #303133;
  display: none;
}

.jbs-home__loading {
  height: 32px;
  width: 32px;
  margin-bottom: 20px;
  color: #303133;
  animation: loadingAll 1.5s linear infinite;

}
@keyframes loadingAll{
  0%{-webkit-transform:rotate(0deg);}
  25%{-webkit-transform:rotate(90deg);}
  50%{-webkit-transform:rotate(180deg);}
  75%{-webkit-transform:rotate(270deg);}
  100%{-webkit-transform:rotate(360deg);}
}

.jbs-home__loading_gif{
  display:block;
  width: 300px;
  height: 240px;
  /* position: absolute; */
  /* top: 100px; */
}
