popViewA.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .tui-actionsheet {
  2. width:750rpx;
  3. position: fixed;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. z-index: 9999;
  8. visibility: hidden;
  9. -webkit-transform: translate3d(0, 100%, 0);
  10. transform: translate3d(0, 100%, 0);
  11. -webkit-transform-origin: center;
  12. transform-origin: center;
  13. transition: all 0.3s ease-in-out;
  14. background: #eaeaec;
  15. min-height: 100rpx;
  16. }
  17. .tui-actionsheet-show {
  18. -webkit-transform: translate3d(0, 0, 0);
  19. transform: translate3d(0, 0, 0);
  20. visibility: visible;
  21. }
  22. .tui-tips {
  23. width:750rpx;
  24. padding: 30rpx 60rpx;
  25. box-sizing: border-box;
  26. text-align: center;
  27. background: #fff;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. }
  32. .tui-operate-box {
  33. padding-bottom: 12rpx;
  34. }
  35. .tui-actionsheet-btn {
  36. width:750rpx;
  37. height: 100rpx;
  38. background: #fff;
  39. display: flex;
  40. align-items: center;
  41. justify-content: center;
  42. text-align: center;
  43. font-size: 36rpx;
  44. position: relative;
  45. }
  46. .tui-btn-last {
  47. padding-bottom: env(safe-area-inset-bottom);
  48. }
  49. .tui-actionsheet-divider::before {
  50. content: '';
  51. width:750rpx;
  52. border-top: 1rpx solid #d9d9d9;
  53. position: absolute;
  54. top: 0;
  55. left: 0;
  56. -webkit-transform: scaleY(0.5);
  57. transform: scaleY(0.5);
  58. }
  59. .tui-actionsheet-cancel {
  60. color: #1a1a1a;
  61. padding-bottom: env(safe-area-inset-bottom);
  62. }
  63. .tui-actionsheet-hover {
  64. background: #f7f7f9;
  65. }
  66. .tui-actionsheet-mask {
  67. position: fixed;
  68. top: 0;
  69. left: 0;
  70. right: 0;
  71. bottom: 0;
  72. background: rgba(0, 0, 0, 0.6);
  73. z-index: 9996;
  74. transition: all 0.3s ease-in-out;
  75. opacity: 0;
  76. visibility: hidden;
  77. }
  78. .tui-mask-show {
  79. opacity: 1;
  80. visibility: visible;
  81. }