body, html, img, h1, p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  font-family: Helvetica, 'Avenir', Arial, sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}
.app-loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background-color: #f66d1d; */
  background-color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transition: all 1s ease-in-out;
  z-index: 2;
}
.app-loading.is-hide {
  display: none;
}
.app-loading p {
  line-height: 1;
  color: #666;
  opacity: .6;
  font-size: 12px;
  margin-bottom: 10px;
}
.app-loading.hide {
  opacity: 0;
}
.app-loading__container {
  line-height: 1;
  font-size: 0;
}
.app-loading__logo {
  margin-bottom: 10px;
  height: 50px;
}
.app-loading__logo img {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  line-height: 1;
  margin: 0;
}
.app-loading__title {
  line-height: 1;
  color: #222;
  font-size: 28px;
  height: 28px;
  font-weight: normal;
  margin: 0;
  margin-bottom: 10px;
}
.app-loading__svg {
  line-height: 1;
  width: 40px;
  height: 40px;
  animation: loading 500ms linear infinite;
  color: #f66d1d;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

.app-error {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #f1f1f1;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transition: all 1s ease-in-out;
  z-index: 2;
}
.app-error.is-show {
  display: flex;
}
.app-error__logo {
  font-size: 0;
  margin-bottom: 20px;
  line-height: 1;
}
.app-error__logo img {
  line-height: 1;
}
.app-error__desc {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1;
}
.app-error__button {
  font-size: 16px;
  color: #fff;
  background-color: #45b5fd;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 3px;
}

