/* 全局提示信息 */
#global-message {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 14px;
  list-style: none;
  position: fixed;
  top: 240px;
  left: 0;
  z-index: 9999;
  width: 100%;
  text-align: center;
}
#global-message .container {
  max-width: 300px;
  text-align: center;
  margin: auto;
  padding: 10px 16px;
  display: table;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  box-shadow: 0 3px 6px -4px rgb(0 0 0 / 12%), 0 6px 16px 0 rgb(0 0 0 / 8%), 0 9px 28px 8px rgb(0 0 0 / 5%);
}
#global-message .container .tipImg {
  width: 20px;
  height: 20px;
  display: table-cell;
  vertical-align: middle;
  margin-right: 6px;
}
#global-message .container .message {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  vertical-align: middle;
  display: table-cell;
  text-align: left;
}

#splash {
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 9999;
  text-align: center;
  color: #888;
  line-height: 1.6;
  display: flex;
  justify-content: center;
}
#splash .splash-container {
  align-self: center;
}
#splash .splash-container img {
  width: 80px;
  height: auto;
}
#splash p {
  margin: 10px auto;
  font-family: '微软雅黑';
}
#splash img {
  width: auto;
  height: auto;
}
#splash .title {
  font-size: 20px;
}
#splash #indexTips {
  font-size: 14px;
}

.sk-wave {
  margin: 16px auto;
  width: 56px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.sk-wave .sk-rect {
  background-color: #ef313b;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
  animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-wave .sk-rect + .sk-rect {
  margin-left: 2px;
}
.sk-wave .sk-rect1 {
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.sk-wave .sk-rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-wave .sk-rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-wave .sk-rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-wave .sk-rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes sk-waveStretchDelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

body {
  /* IOS禁止微信调整字体大小 */
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}
