index.module.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .popBox {
  2. position: relative;
  3. width: 305px;
  4. background: rgba(255,255,255,0.31);
  5. border-radius: 12px;
  6. border: 1px solid rgba(255,252,252,0.53);
  7. z-index: 9;
  8. .boxBg {
  9. position: absolute;
  10. width: 648px;
  11. height: 274px;
  12. left: 50%;
  13. top: 50%;
  14. transform: translate(-50%,-50%);
  15. z-index: -1;
  16. }
  17. .boxTitle {
  18. position: absolute;
  19. left: 50%;
  20. top: -6px;
  21. transform: translateX(-50%);
  22. width: 151px;
  23. height: 32px;
  24. }
  25. .boxContent {
  26. margin: 9px;
  27. background: linear-gradient( 224deg, #ECF5FF 0%, #D5E8FF 100%);
  28. border-radius: 12px;
  29. display: inline-block;
  30. >p {
  31. margin: 36px 20px 12px;
  32. color: #334A64;
  33. font-size: 15px;
  34. line-height: 26px;
  35. font-weight: 400;
  36. text-align: center;
  37. }
  38. .boxBtn {
  39. margin-bottom: 20px;
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. >img {
  44. width: 116px;
  45. height: 35px;
  46. cursor: pointer;
  47. &:first-child {
  48. margin-right: 12px;
  49. }
  50. }
  51. }
  52. }
  53. }