.wechat-tip-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 16, 10, 0.78);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 16px 18px 0;
  color: #FFF;
  font-family: var(--font-sans, "PingFang SC", system-ui, sans-serif);
  animation: wechat-tip-fade-in 0.22s ease-out;
}

.wechat-tip-overlay.is-hiding {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

@keyframes wechat-tip-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wechat-tip-arrow {
  width: 80px;
  height: 100px;
  margin-right: 8px;
}

.wechat-tip-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wechat-tip-text {
  text-align: right;
  margin-top: 4px;
  margin-right: 4px;
  line-height: 1.5;
}

.wechat-tip-title {
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
}

.wechat-tip-dots {
  display: inline-block;
  padding: 0 6px;
  margin: 0 2px;
  border: 1px solid #FFD66B;
  border-radius: 6px;
  color: #FFD66B;
  font-weight: 700;
  letter-spacing: 1px;
}

.wechat-tip-sub {
  font-size: 15px;
  color: #FFD66B;
  margin-top: 6px;
}

.wechat-tip-close {
  align-self: center;
  margin-top: auto;
  margin-bottom: 12vh;
  padding: 10px 28px;
  background: transparent;
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.wechat-tip-close:active {
  background: rgba(255, 255, 255, 0.12);
}
