index.module.less 994 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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: -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: 57px;
  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: 16px;
  24. text-align: center;
  25. .title1 {
  26. padding-top: 57px;
  27. text-align: center;
  28. font-size: 18px;
  29. font-weight: 500;
  30. color: #3b2300;
  31. }
  32. .popupTips {
  33. padding: 16px 20px;
  34. text-align: center;
  35. font-size: 15px;
  36. color: #777777;
  37. line-height: 21px;
  38. }
  39. .button {
  40. padding: 0 32px;
  41. height: 30px;
  42. font-size: 16px;
  43. font-size: 14px;
  44. color: #777;
  45. border-color: #E7E7E7;
  46. }
  47. }