index.module.less 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. @img: './images';
  2. .guidePopup {
  3. z-index: 5000 !important;
  4. top: 0;
  5. right: 0;
  6. left: 0;
  7. bottom: 0;
  8. transform: none;
  9. width: 100vw;
  10. height: 100vh;
  11. max-width: 100vw;
  12. margin: 0;
  13. overflow: hidden;
  14. }
  15. .tipsContainer {
  16. position: relative;
  17. width: 100vw;
  18. height: 100vh;
  19. overflow: hidden;
  20. }
  21. .backBtn {
  22. position: absolute;
  23. right: 20Px;
  24. top: 20Px;
  25. font-size: 14px;
  26. line-height: 24Px;
  27. padding: 0 14Px;
  28. border-radius: 17px;
  29. border: 1px solid #ffffff;
  30. color: #fff;
  31. text-align: center;
  32. z-index: 2001;
  33. cursor: pointer;
  34. &:active {
  35. opacity: 0.8;
  36. }
  37. }
  38. .backBtn.right {
  39. width: 60px;
  40. line-height: 24px;
  41. padding: 0 14px;
  42. right: 14px;
  43. top: 21px;
  44. left: auto;
  45. }
  46. .content {
  47. position: relative;
  48. width: 100%;
  49. height: 100%;
  50. }
  51. .box {
  52. position: fixed;
  53. box-shadow: rgba(33, 33, 33, 0.7) 0px 0px 0px 5000px;
  54. // transition: all 0.25s;
  55. // transform: scale(1.2);
  56. border-radius: 8px;
  57. z-index: 100;
  58. position: relative;
  59. border: 3Px solid #55C9F7;
  60. }
  61. .item {
  62. position: absolute;
  63. z-index: 10;
  64. .img {
  65. position: relative;
  66. width: 100%;
  67. }
  68. .iconHead {
  69. position: absolute;
  70. left: 45px;
  71. width: 18px;
  72. height: 52px;
  73. &.head2 {
  74. left: 0.2rem;
  75. top: 0.9rem;
  76. }
  77. }
  78. .btns {
  79. position: absolute;
  80. display: flex;
  81. padding: 0 12px;
  82. .btn {
  83. background: url('./images/numbrBtn.png');
  84. background-size: 144px 49px;
  85. width: 144px;
  86. height: 49px;
  87. line-height: 49px;
  88. font-size: 18px;
  89. padding: 0;
  90. cursor: pointer;
  91. text-align: center;
  92. color: #fff;
  93. &:hover {
  94. opacity: .8;
  95. }
  96. }
  97. .endBtn {
  98. width: 124px;
  99. height: 49px;
  100. margin-right: 20px;
  101. background: url('./images/endBtn.png');
  102. background-size: 124px 49px;
  103. line-height: 49px;
  104. font-size: 18px;
  105. padding: 0;
  106. cursor: pointer;
  107. text-align: center;
  108. color: #fff;
  109. &:hover {
  110. opacity: .8;
  111. }
  112. }
  113. .nextBtn {
  114. width: 124px;
  115. height: 49px;
  116. background: url('./images/nextBtn.png') no-repeat;
  117. background-size: 124px 49px;
  118. line-height: 49px;
  119. font-size: 18px;
  120. padding: 0;
  121. cursor: pointer;
  122. text-align: center;
  123. color: #fff;
  124. &:hover {
  125. opacity: .8;
  126. }
  127. }
  128. }
  129. }
  130. @keyframes myscale {
  131. 0% {
  132. transform: scale(0.9);
  133. }
  134. 50% {
  135. transform: scale(1);
  136. }
  137. 100% {
  138. transform: scale(0.9);
  139. }
  140. }
  141. :global {
  142. .n-modal-mask-guide {
  143. z-index: 2000;
  144. background-color: transparent !important;
  145. }
  146. }