index.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .ant-actionsheet {
  2. padding-left: 12px;
  3. padding-right: 12px;
  4. padding-bottom: constant(safe-area-inset-bottom);
  5. padding-bottom: env(safe-area-inset-bottom);
  6. }
  7. .ant-actionsheet-title-wrap {
  8. text-align: center;
  9. position: relative;
  10. margin: 0 -12px;
  11. }
  12. .ant-actionsheet-title-content {
  13. display: inline-block;
  14. text-align: left;
  15. padding: 18px 15px;
  16. font-size: 15px;
  17. color: #999999;
  18. }
  19. .ant-actionsheet-title-content::after {
  20. content: '';
  21. position: absolute;
  22. background-color: #eeeeee;
  23. display: block;
  24. top: auto;
  25. right: 0;
  26. bottom: 0;
  27. left: 0;
  28. height: 1px;
  29. transform: scaleY(0.5);
  30. }
  31. .ant-actionsheet-list {
  32. margin: 0 -12px;
  33. }
  34. .ant-actionsheet-list-item {
  35. color: #333333;
  36. padding: 16px 15px;
  37. text-align: center;
  38. position: relative;
  39. font-size: 18px;
  40. }
  41. .ant-actionsheet-list-item::after {
  42. content: '';
  43. position: absolute;
  44. background-color: #eeeeee;
  45. display: block;
  46. top: auto;
  47. right: 0;
  48. bottom: 0;
  49. left: 0;
  50. height: 1px;
  51. transform: scaleY(0.5);
  52. }
  53. .ant-actionsheet-list-item-title-danger {
  54. color: #ff3141;
  55. font-weight: bold;
  56. }
  57. .ant-actionsheet-list-item-description {
  58. color: #999999;
  59. font-size: 14px;
  60. line-height: 20px;
  61. margin-top: 4px;
  62. }
  63. .ant-actionsheet-list-item-active {
  64. background-color: #eeeeee;
  65. }
  66. .ant-actionsheet-list-item:last-child.ant-actionsheet-list-item:last-child:after {
  67. display: none;
  68. }
  69. .ant-actionsheet-list-item-disabled .ant-actionsheet-list-item-icon,
  70. .ant-actionsheet-list-item-disabled .ant-actionsheet-list-item-content {
  71. opacity: 0.4;
  72. }
  73. .ant-actionsheet-cancel-gap {
  74. height: 8px;
  75. background: #f5f5f5;
  76. margin: 0 -12px;
  77. }
  78. .ant-actionsheet-cancel {
  79. color: #333333;
  80. padding: 16px 15px;
  81. font-size: 18px;
  82. text-align: center;
  83. margin: 0 -12px;
  84. }
  85. .ant-actionsheet-cancel:active {
  86. background-color: #eeeeee;
  87. }
  88. .ant-actionsheet-icon .ant-actionsheet-title-wrap {
  89. text-align: left;
  90. }
  91. .ant-actionsheet-icon .ant-actionsheet-list-item {
  92. display: flex;
  93. align-items: center;
  94. }
  95. .ant-actionsheet-icon .ant-actionsheet-list-item-icon {
  96. height: 24px;
  97. flex: 0 0 24px;
  98. margin-right: 12px;
  99. background-size: contain;
  100. background-position: center center;
  101. background-repeat: no-repeat;
  102. }
  103. .ant-actionsheet-icon .ant-actionsheet-list-item-content {
  104. text-align: left;
  105. }