index.wxss 396 B

123456789101112131415161718192021222324252627
  1. .wux-backdrop {
  2. background: rgba(0,0,0,.4)
  3. }
  4. .wux-backdrop,
  5. .wux-backdrop--transparent {
  6. position: fixed;
  7. z-index: 1000;
  8. top: 0;
  9. right: 0;
  10. left: 0;
  11. bottom: 0
  12. }
  13. .wux-backdrop--transparent {
  14. background: 0 0
  15. }
  16. .wux-backdrop__bd {
  17. z-index: 1
  18. }
  19. .wux-backdrop__aria-btn {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. z-index: 0;
  24. width: 100%;
  25. height: 100%;
  26. pointer-events: none
  27. }