/* 微信 / QQ 内置浏览器引导 */
html.qq-wechat-block,
html.qq-wechat-block body {
  overflow: hidden;
  height: 100%;
}

html.qq-wechat-block body > *:not(#qqWechatGuide) {
  display: none !important;
}

#qqWechatGuide {
  display: none;
  min-height: 100vh;
  box-sizing: border-box;
  background: #fff;
  color: #333;
  font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

html.qq-wechat-block #qqWechatGuide {
  display: block;
}

.qq-guide-top {
  padding: 24px 20px 120px;
  color: #fff;
  line-height: 1.8;
  font-size: 15px;
  background: url(//gw.alicdn.com/tfs/TB1eSZaNFXXXXb.XXXXXXXXXXXX-750-234.png) center top / contain no-repeat,
    linear-gradient(180deg, #1a5f4a 0%, #0d856c 100%);
  min-height: 200px;
}

.qq-guide-top p {
  margin: 0 0 8px;
}

.qq-guide-top .icon-tip {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin: 0 4px;
}

.qq-guide-content {
  padding: 24px 20px 16px;
  text-align: center;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  color: #082a0b;
}

.qq-guide-content p {
  margin: 0 0 12px;
}

.qq-guide-copy {
  display: block;
  width: min(290px, 90vw);
  margin: 20px auto 0;
  padding: 12px 24px;
  border: 1px solid #0d856c;
  border-radius: 24px;
  background: #fff;
  color: #0d856c;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.qq-guide-copy:active {
  background: #e7f7df;
}

.qq-guide-tip {
  margin: 16px auto 0;
  max-width: 320px;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
}

.qq-guide-toast {
  position: fixed;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(13, 133, 108, 0.95);
  color: #fff;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 99999;
}

.qq-guide-toast.is-show {
  opacity: 1;
}
