index.module.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. .A5wenwu {
  2. width: 100%;
  3. height: 100%;
  4. position: relative;
  5. :global {
  6. .gesture {
  7. width: 140px;
  8. height: 70px;
  9. position: absolute;
  10. z-index: 1;
  11. top: 50%;
  12. left: 46%;
  13. transform: translate(120%, -50%);
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. flex-direction: column;
  18. &.state1 {
  19. &>img {
  20. animation: gestureState1 2s linear;
  21. }
  22. }
  23. &>img {
  24. transform: translateX(0);
  25. width: 100%;
  26. object-fit: contain;
  27. }
  28. .txt {
  29. width: 100%;
  30. height: 17px;
  31. text-align: center;
  32. line-height: 15px;
  33. font-size: 16px;
  34. font-weight: lighter;
  35. color: #fff;
  36. }
  37. }
  38. .A5_tabBar {
  39. width: 50px;
  40. height: 200px;
  41. display: flex;
  42. align-items: center;
  43. flex-direction: column;
  44. position: absolute;
  45. z-index: 1;
  46. top: 46%;
  47. left: 5%;
  48. gap: 20px;
  49. transform: translateY(-50%);
  50. .tab {
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. flex-direction: column;
  55. width: 60px;
  56. height: 60px;
  57. margin: 7px 0;
  58. cursor: pointer;
  59. &>img {
  60. width: 100%;
  61. object-fit: contain;
  62. }
  63. .txt {
  64. width: 100%;
  65. height: 17px;
  66. text-align: center;
  67. line-height: 15px;
  68. letter-spacing: 1px;
  69. font-weight: 500;
  70. color: #fbebbd;
  71. margin-top: 4px;
  72. font-size: 14px;
  73. }
  74. }
  75. }
  76. .A5_tabBarR {
  77. width: 50px;
  78. height: 200px;
  79. display: flex;
  80. align-items: center;
  81. flex-direction: column;
  82. position: absolute;
  83. z-index: 1;
  84. top: 46%;
  85. right: 5%;
  86. transform: translateY(-50%);
  87. .tab {
  88. display: flex;
  89. align-items: center;
  90. justify-content: center;
  91. flex-direction: column;
  92. cursor: pointer;
  93. width: 45px;
  94. height: 65px;
  95. margin: 8px 0;
  96. &>img {
  97. width: 100%;
  98. object-fit: contain;
  99. }
  100. .txt {
  101. width: 100%;
  102. height: 17px;
  103. text-align: center;
  104. line-height: 15px;
  105. letter-spacing: 1px;
  106. font-size: 14px;
  107. font-weight: 500;
  108. color: #fbebbd;
  109. }
  110. }
  111. }
  112. }
  113. }
  114. .tapianModal,
  115. .lineModal {
  116. width: 100%;
  117. height: 100%;
  118. position: fixed;
  119. z-index: 3;
  120. top: 0;
  121. left: 0;
  122. background-color: rgba(0, 0, 0, 0.8);
  123. display: flex;
  124. align-items: center;
  125. justify-content: center;
  126. :global {
  127. .TContainner {
  128. position: relative;
  129. width: 100%;
  130. height: 100%;
  131. display: flex;
  132. align-items: center;
  133. justify-content: center;
  134. .TLeft {
  135. position: absolute;
  136. left: 2%;
  137. width: 20%;
  138. height: 100%;
  139. display: flex;
  140. flex-direction: column;
  141. align-items: center;
  142. justify-content: center;
  143. gap: 40px;
  144. .Tbtn1,
  145. .Tbtn2 {
  146. transition: all 0.3s ease-in-out;
  147. width: 70px;
  148. height: 70px;
  149. display: flex;
  150. align-items: center;
  151. justify-content: center;
  152. font-size: 17px;
  153. cursor: pointer;
  154. background: url('../../assets/img/btn_tab.png') no-repeat;
  155. background-size: 100% 100%;
  156. color: rgba(255, 233, 182, 1);
  157. }
  158. .TActive {
  159. color: rgba(124, 75, 54, 1);
  160. background: url('../../assets/img/btn_tabAc.png') no-repeat;
  161. background-size: 100% 100%;
  162. }
  163. }
  164. }
  165. }
  166. }
  167. // ---------英文版
  168. .A5wenwuEn {
  169. :global {
  170. .A5_tabBar .tab .txt{
  171. width: auto;
  172. }
  173. .A5_tabBarR .tab .txt{
  174. width: auto;
  175. }
  176. }
  177. }