index.module.less 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. .guidePopup {
  2. z-index: 5000 !important;
  3. top: 0;
  4. right: 0;
  5. left: 0;
  6. bottom: 0;
  7. transform: none;
  8. width: 100vw;
  9. height: 100vh;
  10. max-width: 100vw;
  11. margin: 0;
  12. overflow: hidden;
  13. }
  14. .tipsContainer {
  15. position: relative;
  16. width: 100vw;
  17. height: 100vh;
  18. overflow: hidden;
  19. }
  20. .backBtn {
  21. position: absolute;
  22. left: 47px;
  23. top: 21px;
  24. font-size: 14px;
  25. line-height: 24px;
  26. padding: 0 14px;
  27. border-radius: 17px;
  28. border: 1px solid #ffffff;
  29. color: #fff;
  30. text-align: center;
  31. z-index: 1;
  32. &:active {
  33. opacity: 0.8;
  34. }
  35. }
  36. .backBtn.right {
  37. width: 60px;
  38. line-height: 24px;
  39. padding: 0 14px;
  40. right: 14px;
  41. top: 41px;
  42. left: auto;
  43. }
  44. .content {
  45. position: relative;
  46. width: 100%;
  47. height: 100%;
  48. }
  49. .box {
  50. position: fixed;
  51. box-shadow: rgba(33, 33, 33, 0.8) 0px 0px 0px 5000px;
  52. // transition: all 0.25s;
  53. transform: scale(1.2);
  54. border-radius: 8px;
  55. }
  56. .noscalc {
  57. transform: none !important;
  58. }
  59. .item {
  60. position: absolute;
  61. width: 200px;
  62. z-index: 10;
  63. .img {
  64. position: absolute;
  65. width: 100%;
  66. }
  67. .iconHead {
  68. position: absolute;
  69. left: 45px;
  70. width: 18px;
  71. height: 52px;
  72. &.head2 {
  73. left: 0.2rem;
  74. top: 0.9rem;
  75. }
  76. }
  77. .btns {
  78. position: absolute;
  79. display: flex;
  80. width: 100%;
  81. padding: 0 12px;
  82. .btn {
  83. background-image: url(./images/guideNext.png);
  84. background-size: 77px 23px;
  85. width: 77px;
  86. height: 23px;
  87. line-height: 13px;
  88. font-size: 9px;
  89. padding: 0;
  90. }
  91. .endBtn {
  92. margin-left: 5px;
  93. }
  94. }
  95. }
  96. @keyframes myscale {
  97. 0% {
  98. transform: scale(0.9);
  99. }
  100. 50% {
  101. transform: scale(1);
  102. }
  103. 100% {
  104. transform: scale(0.9);
  105. }
  106. }
  107. .sacleBtn {
  108. transform: scale(1.2);
  109. }
  110. .sacleBtn.endBtn {
  111. margin-left: 0.633rem !important;
  112. }