index.module.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. .button {
  40. padding: 0 44px;
  41. height: 40px;
  42. font-size: 16px;
  43. color: #333333;
  44. border-color: #AAAAAA;
  45. margin: 0 7px;
  46. }
  47. .confirmBtn {
  48. background: linear-gradient(305deg, #40C8FF 0%, #3192FF 100%);
  49. color: #FFFFFF;
  50. border: none;
  51. }
  52. }