/* 微信引导层 */
.wechat-guide-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: none;
}

.wechat-guide-overlay.show {
  display: block;
}

.wechat-guide-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.wechat-guide-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  transform: translate(0%, 0%);
  height: auto;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
  .wechat-guide-arrow {
    width: 70%;
  }
}
