body, html, div, img, span, i, p, a, input, h1, h2, h3 {
  padding: 0;
  margin: 0;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html, body {
  width: 100%;
}

html {
  font-size: 10px;
}

body {
  background-color: #F6F4F5;
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft Yahei", STHeiti, SimSun, sans-serif;
  color: #032824;
}

/* @media (max-width: 980px) { */
@media (min-width: 769px) {
  html {
    font-size: 15px;
  }
}

.toast_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toast_box.show {
  visibility: visible;
  opacity: 1;
}
.toast_content {
  max-width: 20rem;
  background-color: #999;
  background-color: rgba(0, 0, 0, 0.45);
  position: absolute;
  padding: 1rem;
  -moz-border-radius: 1rem;
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
}
.toast_content p {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #fafafa;
}

.page_loading_box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  visibility: visible;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;

}

.page_loading_box.hide {
  opacity: 0;
  visibility: hidden;
}

.page_loading_box .loading_icon {
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url(../img/icon_loading.gif);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}