modal.wxss 302 B

123456789101112131415161718192021222324
  1. .modal {
  2. width: 100%;
  3. height: 100%;
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. }
  11. .mask {
  12. position: fixed;
  13. top: 0;
  14. left: 0;
  15. width: 100%;
  16. height: 100%;
  17. background: #000;
  18. opacity: 0.3;
  19. }
  20. .content {
  21. position: absolute;
  22. }