index.module.less 1015 B

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: 286px;
  12. height: 238px;
  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: 286px;
  23. height: 238px;
  24. }
  25. .popClose {
  26. position: absolute;
  27. top: 49px;
  28. right: 3px;
  29. width: 24px;
  30. height: 24px;
  31. }
  32. .popTitle {
  33. position: absolute;
  34. top: 70px;
  35. left: 30px;
  36. width: 79.5px;
  37. height: 29.5px;
  38. }
  39. .list {
  40. width: 238px;
  41. margin-top: 120px;
  42. margin-left: 30px;
  43. position: relative;
  44. font-size: 14px;
  45. color: #333333;
  46. line-height: 22px;
  47. padding-bottom: 9px;
  48. }
  49. .btnGroup {
  50. position: relative;
  51. width: 238px;
  52. margin: 0 auto;
  53. padding: 0 4px;
  54. display: flex;
  55. justify-content: space-between;
  56. img {
  57. max-width: 111px;
  58. height: 39px;
  59. }
  60. }
  61. }