page .anyui-popup-content {
  position: fixed;
}

page .anyui-popup-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
}

page .anyui-popup-left {
  top: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}

page .anyui-popup-right {
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
}

page .anyui-popup-top {
  top: 0;
  left: 0;
  width: 100vw;
  transform: translateY(-100%);
}

page .anyui-popup-bottom {
  bottom: 0;
  left: 0;
  width: 100vw;
  transform: translateY(100%);
}

page .anyui-popup-show .anyui-popup-content {
  transform: none;
}

page .anyui-popup-show .anyui-popup-mask {
  opacity: 1;
  visibility: visible;
}

page .anyui-popup.anyui-animation .anyui-popup-content {
  transition: all 200ms linear;
}

page .anyui-popup.anyui-animation .anyui-popup-mask {
  transition: all 200ms linear;
}