uni-popup.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. .uni-mask {
  2. position: fixed;
  3. z-index: 998;
  4. top: 0;
  5. right: 0;
  6. bottom: 0;
  7. left: 0;
  8. background-color: rgba(0, 0, 0, 0.3);
  9. }
  10. .uni-popup {
  11. position: fixed;
  12. z-index: 999;
  13. background-color: #ffffff;
  14. }
  15. .uni-popup-middle {
  16. display: -webkit-box;
  17. display: -webkit-flex;
  18. display: flex;
  19. -webkit-box-orient: vertical;
  20. -webkit-box-direction: normal;
  21. -webkit-flex-direction: column;
  22. flex-direction: column;
  23. -webkit-box-align: center;
  24. -webkit-align-items: center;
  25. align-items: center;
  26. -webkit-box-pack: center;
  27. -webkit-justify-content: center;
  28. justify-content: center;
  29. top: 50%;
  30. left: 50%;
  31. -webkit-transform: translate(-50%, -50%);
  32. transform: translate(-50%, -50%);
  33. }
  34. .uni-popup-middle.uni-popup-insert {
  35. min-width: 380rpx;
  36. min-height: 380rpx;
  37. max-width: 100%;
  38. max-height: 80%;
  39. -webkit-transform: translate(-50%, -65%);
  40. transform: translate(-50%, -65%);
  41. background: none;
  42. box-shadow: none;
  43. }
  44. .uni-popup-middle.uni-popup-fixed {
  45. border-radius: 10rpx;
  46. padding: 30rpx;
  47. }
  48. .uni-close-bottom,
  49. .uni-close-right {
  50. position: absolute;
  51. bottom: -180rpx;
  52. text-align: center;
  53. border-radius: 50%;
  54. color: #f5f5f5;
  55. font-size: 60rpx;
  56. font-weight: bold;
  57. opacity: 0.8;
  58. z-index: -1;
  59. }
  60. .uni-close-bottom {
  61. margin: auto;
  62. left: 0;
  63. right: 0;
  64. }
  65. .uni-close-right {
  66. right: -60rpx;
  67. top: -80rpx;
  68. }
  69. .uni-close-bottom:after {
  70. content: '';
  71. position: absolute;
  72. width: 0px;
  73. border: 1px #f5f5f5 solid;
  74. top: -200rpx;
  75. bottom: 56rpx;
  76. left: 50%;
  77. -webkit-transform: translate(-50%, -0%);
  78. transform: translate(-50%, -0%);
  79. opacity: 0.8;
  80. }
  81. .uni-popup-top,
  82. .uni-popup-bottom {
  83. display: -webkit-box;
  84. display: -webkit-flex;
  85. display: flex;
  86. -webkit-box-align: center;
  87. -webkit-align-items: center;
  88. align-items: center;
  89. -webkit-box-pack: center;
  90. -webkit-justify-content: center;
  91. justify-content: center;
  92. }
  93. .uni-popup-top {
  94. top: 0;
  95. left: 0;
  96. width: 100%;
  97. height: 100rpx;
  98. line-height: 100rpx;
  99. text-align: center;
  100. }
  101. .uni-popup-bottom {
  102. left: 0;
  103. bottom: 0;
  104. width: 100%;
  105. min-height: 100rpx;
  106. line-height: 100rpx;
  107. text-align: center;
  108. }