index.module.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .wxPopupDialog {
  2. // position: relative;
  3. overflow: initial;
  4. // margin-top: -160px;
  5. &::before {
  6. position: absolute;
  7. content: ' ';
  8. top: -23px;
  9. left: 50%;
  10. margin-left: -50px;
  11. display: inline-block;
  12. background: url('../images/bell.png') no-repeat top center;
  13. background-size: contain;
  14. width: 100px;
  15. height: 60px;
  16. }
  17. &.dialogError {
  18. &::before {
  19. background: url('../images/error-icon.png') no-repeat top center;
  20. background-size: contain;
  21. }
  22. }
  23. }
  24. .popupContainer {
  25. background: url('../images/message-top-bg.png') no-repeat top center;
  26. background-size: contain;
  27. border-radius: 20px;
  28. overflow: hidden;
  29. padding-bottom: 20px;
  30. .title1 {
  31. padding-top: 57px;
  32. text-align: center;
  33. font-size: 18px;
  34. font-weight: 600;
  35. color: #000000;
  36. span {
  37. position: relative;
  38. z-index: 1;
  39. &::after {
  40. content: '';
  41. position: absolute;
  42. left: 0;
  43. bottom: 1px;
  44. z-index: -1;
  45. width: 100%;
  46. height: 8px;
  47. background: linear-gradient(to right, rgba(45, 199, 170, 1), rgba(91, 236, 255, 0.20));
  48. opacity: 0.68;
  49. }
  50. }
  51. }
  52. .popupTips {
  53. position: relative;
  54. font-size: 15px;
  55. color: #777777;
  56. line-height: 21px;
  57. padding-bottom: 16px;
  58. padding-top: 16px;
  59. // &::before {
  60. // content: '';
  61. // position: absolute;
  62. // left: 0;
  63. // bottom: 0;
  64. // height: 54px;
  65. // width: 100%;
  66. // background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  67. // }
  68. .container {
  69. max-height: 300px;
  70. overflow-x: hidden;
  71. overflow-y: auto;
  72. padding: 0 20px 0;
  73. }
  74. .cTitle {
  75. font-weight: 600;
  76. font-size: 15px;
  77. color: #131415;
  78. line-height: 23px;
  79. }
  80. .cContent {
  81. font-size: 14px;
  82. color: #777777;
  83. line-height: 24px;
  84. padding-bottom: 14px;
  85. &.cContentBottom {
  86. padding-bottom: 0;
  87. }
  88. span {
  89. color: #14BC9C;
  90. cursor: pointer;
  91. font-weight: 500;
  92. }
  93. }
  94. }
  95. .button {
  96. padding: 0 32px;
  97. width: calc(100% - 70px);
  98. margin: 0 auto;
  99. height: 40px;
  100. font-weight: 600;
  101. font-size: 16px;
  102. color: #FFFFFF;
  103. line-height: 22px;
  104. }
  105. }