index.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .i-as {
  2. position: fixed;
  3. width: 100%;
  4. box-sizing: border-box;
  5. left: 0;
  6. right: 0;
  7. bottom: 0;
  8. background: #fff;
  9. transform: translate3d(0, 100%, 0);
  10. transform-origin: center;
  11. transition: all 0.2s ease-in-out;
  12. z-index: 900;
  13. visibility: hidden;
  14. border-radius: 30rpx 30rpx 0 0;
  15. }
  16. .i-as-mask {
  17. position: fixed;
  18. top: 0;
  19. left: 0;
  20. right: 0;
  21. bottom: 0;
  22. background: rgba(0, 0, 0, 0.7);
  23. z-index: 900;
  24. transition: all 0.2s ease-in-out;
  25. opacity: 0;
  26. visibility: hidden;
  27. }
  28. .i-as-mask-show {
  29. opacity: 1;
  30. visibility: visible;
  31. }
  32. .i-as-show {
  33. transform: translate3d(0, 0, 0);
  34. visibility: visible;
  35. }
  36. .i-modal-content {
  37. position: fixed;
  38. overflow: auto;
  39. top: 0;
  40. right: 0;
  41. bottom: 0;
  42. left: 0;
  43. z-index: 1000;
  44. display: flex;
  45. width: auto;
  46. height: auto;
  47. outline: 0;
  48. -webkit-box-align: center;
  49. align-items: center;
  50. -webkit-box-pack: center;
  51. justify-content: center;
  52. transform: translateZ(2rpx);
  53. opacity: 0;
  54. visibility: hidden;
  55. -webkit-overflow-scrolling: touch;
  56. }
  57. .i-modal-show {
  58. visibility: visible;
  59. opacity: 1;
  60. }
  61. .ipx {
  62. padding-bottom: 40rpx;
  63. }