index.module.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .startBtn {
  2. position: fixed;
  3. left: 50%;
  4. top: 50%;
  5. margin-left: -70px;
  6. margin-top: -70px;
  7. width: 140px;
  8. height: 140px;
  9. z-index: 11;
  10. cursor: pointer;
  11. & > img {
  12. display: block;
  13. width: 100%;
  14. height: 100%;
  15. }
  16. }
  17. .endBtn{
  18. position: fixed;
  19. left: 50%;
  20. width: 120px;
  21. height: 40px;
  22. margin-left: -70px;
  23. z-index: 11;
  24. cursor: pointer;
  25. & > img {
  26. display: block;
  27. width: 100%;
  28. height: 100%;
  29. }
  30. &.bottom{
  31. bottom: 16px;
  32. }
  33. &.top{
  34. left: 2rem;
  35. bottom: 0.85333rem;
  36. }
  37. }
  38. .pcEndBtn {
  39. width: 36px;
  40. height: 36px;
  41. left: 46px;
  42. bottom: 12px !important;
  43. margin-left: initial;
  44. }
  45. .noteState {
  46. position: fixed;
  47. bottom: 0;
  48. right: 10PX;
  49. width: 100Px;
  50. height: 30Px;
  51. background-color: rgba(0, 0, 0, 0.5);
  52. z-index: 1000;
  53. border-radius: 4Px;
  54. display: flex;
  55. align-items: center;
  56. justify-content: space-evenly;
  57. color: #fff;
  58. .dot {
  59. width: 13Px;
  60. height: 10Px;
  61. border-radius: 50%;
  62. transform: rotate(-20deg);
  63. }
  64. }
  65. .operatingBtn{
  66. position: fixed;
  67. right: 30px;
  68. bottom: 0;
  69. height: var(--header-height);
  70. z-index: 99;
  71. display: flex;
  72. align-items: center;
  73. .iconBtn{
  74. width: 50px;
  75. height: 50px;
  76. cursor: pointer;
  77. & + .iconBtn{
  78. margin-left: 20px;
  79. }
  80. }
  81. &.operatingLeft {
  82. left: 30px !important;
  83. }
  84. }
  85. .beginMask{
  86. position: fixed;
  87. top: 0;
  88. left: 0;
  89. width: 100vw;
  90. height: 100vh;
  91. z-index: 10000;
  92. }