/* 加载页 / 跳转中转页 */
html {
  font-size: 16px;
  background: #000;
  color: #fff;
}
body.loading-body {
  margin: 0 auto;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  /* style.css 有 body{background/max-width !important}，这里必须 !important 才能盖过 */
  background: #000 !important;
  color: #fff !important;
  max-width: none !important;
  min-height: 100vh;
}
.loading-body a,
.loading-body a:link,
.loading-body a:visited,
.loading-body a:hover,
.loading-body a:active {
  text-decoration: none;
  color: inherit;
}
.loadingMain {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.loadingLogo img {
  width: 120px;
  height: auto;
  display: block;
}
.enterBox {
  display: block;
  min-height: 63px;
  /* 上下 20px 对称（保证单行/多行都垂直居中）；左右 24px 内边距 */
  padding: 20px 24px;
  border-radius: 8px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  box-sizing: border-box;
  margin-top: 28px;
  max-width: 86%;
  text-align: center;       /* 文字水平居中 */
  word-break: break-all;    /* 文案太长自动换行（含无空格长链接） */
}
.enterUrl {
  color: #888;
  word-break: break-all;
}
/* 盖过上面 .loading-body a{color:inherit}（否则"即将进入："会继承 body 的白色，在白底上看不见） */
.loading-body a.enterBox {
  color: #1f1f1f;
}
.loadingTip {
  margin-top: 18px;
  color: #9e9e9e;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}
.loadingTip .countdown {
  color: inherit;
}

/* ---------- PC ---------- */
@media screen and (min-width: 768px) {
  .loadingLogo img {
    width: 160px;
  }
  .enterBox {
    max-width: 720px;
    margin-top: 36px;
    font-size: 16px;
  }
  .loadingTip {
    margin-top: 22px;
    font-size: 15px;
  }
}
