index.module.less 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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: 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: 10;
  60. .img {
  61. position: absolute;
  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. }
  91. @keyframes myscale {
  92. 0% {
  93. transform: scale(0.9);
  94. }
  95. 50% {
  96. transform: scale(1);
  97. }
  98. 100% {
  99. transform: scale(0.9);
  100. }
  101. }