index.module.less 1.4 KB

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