actionsheet.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .tui-actionsheet {
  2. width: 100%;
  3. position: fixed;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. z-index: 9999;
  8. visibility: hidden;
  9. transform: translate3d(0, 100%, 0);
  10. transform-origin: center;
  11. transition: all 0.3s ease-in-out;
  12. background: #eaeaec;
  13. min-height: 100rpx;
  14. }
  15. .tui-actionsheet-show {
  16. transform: translate3d(0, 0, 0);
  17. visibility: visible;
  18. }
  19. .tui-tips {
  20. width: 100%;
  21. /* font-size: 26rpx; */
  22. padding: 30rpx 60rpx;
  23. box-sizing: border-box;
  24. text-align: center;
  25. background: #fff;
  26. display: flex;
  27. align-items: center;
  28. justify-content: center;
  29. }
  30. .tui-operate-box {
  31. padding-bottom: 12rpx;
  32. }
  33. .tui-actionsheet-btn {
  34. width: 100%;
  35. height: 100rpx;
  36. background: #fff;
  37. /* box-sizing: border-box;
  38. padding: 0 30rpx; */
  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: 100%;
  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. }