bottomPopup.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /* component/popup.wxss */
  2. .wx-popup {
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. width: 100%;
  7. height: 100vh;
  8. background: rgba(0, 0, 0, 0.5);
  9. z-index: 100000;
  10. }
  11. .popup-wap {
  12. width: 163%;
  13. max-width: 750rpx;
  14. position: relative;
  15. height: 100%;
  16. overflow: hidden;
  17. }
  18. .popup-container {
  19. width: 163%;
  20. max-width: 750rpx;
  21. border: 2rpx solid #ccc;
  22. border-radius: 20rpx;
  23. box-sizing: bordre-box;
  24. overflow: hidden;
  25. /* background: #fff; */
  26. margin-top: 50rpx;
  27. position: absolute;
  28. left: 0;
  29. bottom: 0;
  30. }
  31. .wx-popup-title {
  32. /* background: #eaf4ff; */
  33. border-radius: 20rpx 20rpx 0px 0px;
  34. height: 91rpx;
  35. font-size: 34rpx;
  36. font-weight: 700;
  37. text-align: center;
  38. color: #1a1a1a;
  39. line-height: 91rpx;
  40. position: relative;
  41. }
  42. .cancel {
  43. position: absolute;
  44. right: 30rpx;
  45. top: 0;
  46. color: #808080;
  47. font-size: 28rpx;
  48. }
  49. .wx-popup-con {
  50. text-align: center;
  51. font-size: 27rpx;
  52. width: 80%;
  53. margin: auto auto 40rpx auto;
  54. }
  55. .wx-popup-conone {
  56. display: flex;
  57. flex-flow: column-reverse;
  58. justify-content: center;
  59. align-items: center;
  60. font-size: 32rpx;
  61. font-weight: 400;
  62. text-align: center;
  63. color: #3f454e;
  64. }
  65. .wx-popup-btn {
  66. display: flex;
  67. justify-content: space-around;
  68. align-items: center;
  69. height: 155rpx;
  70. }
  71. .wx-popup-center-btn {
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. height: 155rpx;
  76. border-top: 1px solid #e6e6e6;
  77. }
  78. .wx-popup-center-btn text {
  79. width: 240rpx;
  80. height: 72rpx;
  81. background-color: #ffdc2f;
  82. line-height: 72rpx;
  83. border-radius: 35rpx;
  84. text-align: center;
  85. font-size: 32rpx;
  86. font-weight: 400;
  87. color: #333333;
  88. }
  89. .wx-popup-btn text:first-child {
  90. width: 185rpx;
  91. height: 72rpx;
  92. line-height: 72rpx;
  93. background-color: #c5dbff;
  94. border-radius: 35rpx;
  95. text-align: center;
  96. font-size: 32rpx;
  97. font-weight: 400;
  98. color: #2b58a5;
  99. border: 1rpx solid #2b58a5;
  100. }
  101. .wx-popup-btn text:last-child {
  102. width: 240rpx;
  103. height: 72rpx;
  104. line-height: 72rpx;
  105. border: 1px solid #2b58a5;
  106. border-radius: 37rpx;
  107. text-align: center;
  108. font-size: 32rpx;
  109. font-weight: 400;
  110. background: #2b58a5;
  111. color: #ffffff;
  112. }
  113. .img {
  114. width: 150rpx;
  115. height: 120rpx;
  116. }
  117. .popup-close {
  118. width: 54rpx;
  119. height: 54rpx;
  120. }