.weui-dialog__root {
  position: relative;
  z-index: 1000;
}
.weui-dialog__title:focus {
  outline: none;
}
.weui-animate-fade-in {
  animation: weuiFadeIn ease 0.3s forwards;
}
@keyframes weuiFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.weui-animate-fade-out {
  animation: weuiFadeOut ease 0.3s forwards;
}
@keyframes weuiFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}


