dialog.wxss 422 B

12345678910111213141516171819202122232425
  1. .mask{
  2. width: 100%;
  3. height: 100%;
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. background: #000;
  8. z-index: 9000;
  9. opacity: 0.7;
  10. }
  11. .modalDlg{
  12. width: 580rpx;
  13. height: 620rpx;
  14. position: fixed;
  15. top: 50%;
  16. left: 0;
  17. z-index: 9999;
  18. margin: -370rpx 85rpx;
  19. background-color: #fff;
  20. border-radius: 36rpx;
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. }