modal.wxss 485 B

1234567891011121314151617181920212223242526272829303132333435
  1. .plv-mp-modal-wrap {
  2. position: relative;
  3. display: none;
  4. width: 100%;
  5. height: 100%;
  6. }
  7. .plv-mp-modal-box {
  8. position: absolute;
  9. width: 240rpx;
  10. height: 256rpx;
  11. top: 0;
  12. left: 0;
  13. bottom: 0;
  14. right: 0;
  15. margin: auto;
  16. text-align: center;
  17. background-color: #fff;
  18. border-radius: 16rpx;
  19. }
  20. .plv-mp-modal__img {
  21. width: 120rpx;
  22. height: 120rpx;
  23. padding-top: 40rpx;
  24. }
  25. .plv-mp-modal__text {
  26. padding: 20rpx 0 34rpx 0;
  27. color: #000;
  28. }
  29. .show {
  30. display: block;
  31. }