* {
  box-sizing: border-box;
}

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

.bg {
  background: url("./images/h5/bg.png") center / 100% 100% no-repeat;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -1;
}

.content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: fixed;
}

.logo {
  width: 4.9rem;
  height: 1.82rem;
  content: url(./images/h5/logo.svg);
}

.loading_bar {
  width: 7.03rem;
  height: 0.47rem;
  content: url(./images/loading_bar.gif);
}

@media only screen and (min-width: 992px) {
  .bg {
    background: url("./images/web/bg.png") center / 100% 100% no-repeat;
  }

  .content {
    padding: 30px;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .logo {
    width: 325px;
    height: 122px;
    content: url(./images/web/logo.svg);
  }

  .loading_bar {
    width: 629px;
    height: 43px;
  }
}
