index.module.less 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .popBox {
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. width: 100vw;
  6. height: 100vh;
  7. background: rgba(0, 0, 0, 0.7);
  8. z-index: 3000;
  9. }
  10. .popBody {
  11. width: 290px;
  12. height: 256px;
  13. position: absolute;
  14. left: 50%;
  15. top: 50%;
  16. transform: translate(-50%, -50%);
  17. z-index: 200;
  18. .popBg {
  19. position: absolute;
  20. left: 0;
  21. top: 0;
  22. width: 290px;
  23. height: 256px;
  24. }
  25. .popClose {
  26. position: absolute;
  27. top: 49px;
  28. right: 3px;
  29. width: 24px;
  30. height: 25px;
  31. }
  32. .list {
  33. width: 258px;
  34. margin-top: 120px;
  35. margin-left: 17px;
  36. position: relative;
  37. font-size: 14px;
  38. color: #333333;
  39. line-height: 22px;
  40. padding-bottom: 25px;
  41. span {
  42. color: #FF5A56;
  43. }
  44. }
  45. .btnGroup {
  46. position: relative;
  47. width: 161px;
  48. margin: 0 auto;
  49. display: flex;
  50. flex-direction: column;
  51. justify-content: center;
  52. font-size: 16px;
  53. color: #777;
  54. line-height: 22px;
  55. text-align: center;
  56. img {
  57. width: 100%;
  58. margin-bottom: 9px;
  59. }
  60. }
  61. }