tui-bottom-popup.wxss 864 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .tui-bottom-popup.data-v-3fb08834 {
  2. width: 100%;
  3. position: fixed;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. opacity: 0;
  8. -webkit-transform: translate3d(0, 100%, 0);
  9. transform: translate3d(0, 100%, 0);
  10. -webkit-transform-origin: center;
  11. transform-origin: center;
  12. transition: all 0.3s ease-in-out;
  13. min-height: 20rpx;
  14. padding-bottom: env(safe-area-inset-bottom);
  15. }
  16. .tui-popup-radius.data-v-3fb08834 {
  17. border-top-left-radius: 24rpx;
  18. border-top-right-radius: 24rpx;
  19. overflow: hidden;
  20. }
  21. .tui-popup-show.data-v-3fb08834 {
  22. opacity: 1;
  23. /* transform: translate3d(0, 0, 0); */
  24. }
  25. .tui-popup-mask.data-v-3fb08834 {
  26. position: fixed;
  27. top: 0;
  28. left: 0;
  29. right: 0;
  30. bottom: 0;
  31. background-color: rgba(0, 0, 0, 0.6);
  32. transition: all 0.3s ease-in-out;
  33. opacity: 0;
  34. visibility: hidden;
  35. }
  36. .tui-mask-show.data-v-3fb08834 {
  37. opacity: 1;
  38. visibility: visible;
  39. }