/* 全局弹窗 start */
#popup-window {
  margin: 0 auto;

  width: 100%;
  max-width: 100%;
  min-width: 100%;

  height: 100%;
  /* max-width: var(--default-screen-max-width); */
  /* min-width: var(--default-screen-min-width); */

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: var(--van-tabbar-z-index);
  background: transparent;
  /* pointer-events: none; */
}

#popup-window .van-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--van-overlay-z-index);
  width: 100%;
  height: 100%;
  background: #0000008f;
  /* pointer-events: none; */
}

#van-popup-window {
  z-index: 2013;
  width: 100%;
  height: 100%;
  top: 50%;

  overflow: hidden;
  border: 0;
  background-color: transparent;
  background: transparent;

  max-width: 100vw;
  /* box-shadow: 0.6rem 0.6rem 0.6rem #000000; */
}

#van-popup-window .content {
  width: 100%;
  height: 100%;
  display: flex;
}

#van-popup-window .content > iframe {
  width: 100%;
  height: 100%;
  display: flex;
  border: 0;
}

/* 全局弹窗 end */
