index.module.less 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .wxPopupDialog {
  2. // position: relative;
  3. overflow: initial;
  4. margin: 0 40px;
  5. width: calc(100% - 75px) !important;
  6. // margin-top: -160px;
  7. border-radius: 20px !important;
  8. &::before {
  9. position: absolute;
  10. content: ' ';
  11. top: -38px;
  12. left: 50%;
  13. margin-left: -34px;
  14. display: inline-block;
  15. background: url('../activation-register/images/message-top.png') no-repeat top center;
  16. background-size: contain;
  17. width: 78px;
  18. height: 76px;
  19. }
  20. }
  21. .popupContainer {
  22. background: url('../activation-register/images/message-bg2.png') no-repeat top center;
  23. background-size: contain;
  24. border-radius: 20px;
  25. overflow: hidden;
  26. padding-bottom: 20px;
  27. text-align: center;
  28. .title1 {
  29. padding-top: 53px;
  30. text-align: center;
  31. font-size: 18px;
  32. font-weight: 500;
  33. color: #000000;
  34. }
  35. .popupTips {
  36. font-size: 15px;
  37. color: #666666;
  38. line-height: 21px;
  39. padding: 16px 20px 20px;
  40. word-break: break-all;
  41. }
  42. .btnGroup {
  43. display: flex;
  44. align-items: center;
  45. margin: 0 13px
  46. }
  47. .button {
  48. // padding: 0 44px;
  49. height: 40px;
  50. font-size: 16px;
  51. color: #333333;
  52. border-color: #AAAAAA;
  53. margin: 0 7px;
  54. flex: 1;
  55. }
  56. .confirmBtn {
  57. background: linear-gradient(305deg, #40C8FF 0%, #3192FF 100%);
  58. color: #FFFFFF;
  59. border: none;
  60. }
  61. .iconClose {
  62. position: absolute;
  63. top: 16px;
  64. right: 16px;
  65. display: inline-block;
  66. background: url('../../common/images/message-close.png') no-repeat top center;
  67. background-size: cover;
  68. width: 18px;
  69. height: 18px;
  70. }
  71. }