index.module.less 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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: 70px;
  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: 21px;
  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. .item {
  57. position: absolute;
  58. // width: 200px;
  59. z-index: 2000;
  60. .img {
  61. position: relative;
  62. width: 100%;
  63. }
  64. .iconHead {
  65. position: absolute;
  66. left: 45px;
  67. width: 18px;
  68. height: 52px;
  69. &.head2 {
  70. left: 0.2rem;
  71. top: 0.9rem;
  72. }
  73. }
  74. .btns {
  75. position: absolute;
  76. display: flex;
  77. // width: 100%;
  78. // padding: 0 12px;
  79. .btn {
  80. width: 73px;
  81. height: 23px;
  82. line-height: 13px;
  83. font-size: 9px;
  84. padding: 0;
  85. }
  86. .endBtn {
  87. margin-left: 5px;
  88. }
  89. }
  90. .studentbtn {
  91. background: url('./images/studentBtn.png');
  92. width:89px;
  93. height: 28px;
  94. background-size: 89px 28px;
  95. line-height: 28px;
  96. font-size: 9px;
  97. padding: 0;
  98. text-align:center;
  99. color:#fff;
  100. }
  101. .teacherBtn {
  102. background: url('./images/numbrBtn.png');
  103. background-size: 72px 25px;
  104. width: 72px;
  105. height: 25px;
  106. line-height: 25px;
  107. font-size: 9px;
  108. padding: 0;
  109. cursor: pointer;
  110. text-align: center;
  111. color: #fff;
  112. border:none;
  113. &:hover {
  114. opacity: .8;
  115. }
  116. }
  117. }
  118. .endBtn {
  119. width: 60px;
  120. height: 25px;
  121. background: url('./images/endBtn.png');
  122. background-size: 60px 25px;
  123. line-height: 25px;
  124. font-size: 9px;
  125. padding: 0;
  126. cursor: pointer;
  127. text-align: center;
  128. color: #fff;
  129. margin-right: 10px;
  130. &:hover {
  131. opacity: .8;
  132. }
  133. }
  134. .nextBtn {
  135. width: 72px;
  136. height: 25px;
  137. background: url('./images/nextBtn.png') no-repeat;
  138. background-size: 72px 25px;
  139. line-height: 25px;
  140. font-size: 9px;
  141. padding: 0;
  142. cursor: pointer;
  143. text-align: center;
  144. color: #fff;
  145. &:hover {
  146. opacity: .8;
  147. }
  148. }
  149. .studentNext {
  150. width: 74px;
  151. height: 25px;
  152. background: url('./images/studentBtn.png') no-repeat;
  153. background-size: 74px 25px;
  154. line-height: 25px;
  155. font-size: 9px;
  156. padding: 0;
  157. margin-right:10px;
  158. cursor: pointer;
  159. text-align: center;
  160. color: #fff;
  161. &:hover {
  162. opacity: .8;
  163. }
  164. }
  165. @keyframes myscale {
  166. 0% {
  167. transform: scale(0.9);
  168. }
  169. 50% {
  170. transform: scale(1);
  171. }
  172. 100% {
  173. transform: scale(0.9);
  174. }
  175. }