index.module.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. .Tab4Info {
  2. position: absolute;
  3. z-index: 100;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. background-size: 100% 100%;
  9. :global {
  10. .t4ItoBack {
  11. cursor: pointer;
  12. position: absolute;
  13. z-index: 10;
  14. top: 30px;
  15. left: 36px;
  16. }
  17. // 顶部名字
  18. .topName {
  19. position: absolute;
  20. z-index: 10;
  21. left: 50%;
  22. transform: translateX(-50%);
  23. top: 40px;
  24. font-weight: 700;
  25. font-size: 24px;
  26. color: var(--themeColor);
  27. letter-spacing: 4px;
  28. }
  29. // 顶部按钮
  30. .R_typeCutBox {
  31. position: absolute;
  32. z-index: 10;
  33. left: 50%;
  34. transform: translateX(-50%);
  35. top: 86px;
  36. height: 36px;
  37. display: flex;
  38. .R_typeCutRow {
  39. margin: 0 10px;
  40. cursor: pointer;
  41. color: var(--themeColor);
  42. line-height: 36px;
  43. text-align: center;
  44. height: 36px;
  45. padding: 0 30px;
  46. border-radius: 0 10px 0 10px;
  47. border: 1px solid var(--themeColor);
  48. }
  49. .R_typeCutRowAc {
  50. background-color: var(--themeColor);
  51. color: #4A403D;
  52. }
  53. }
  54. // 主体模型
  55. .t4IifrBox {
  56. position: absolute;
  57. top: 0;
  58. left: 0;
  59. width: 100%;
  60. height: 100%;
  61. iframe {
  62. width: 100%;
  63. height: 100%;
  64. }
  65. }
  66. // 其他附件
  67. .t4IFileBox {
  68. width: 1252px;
  69. height: calc(100% - 230px);
  70. position: absolute;
  71. left: 50%;
  72. top: 140px;
  73. transform: translateX(-50%);
  74. z-index: 10;
  75. .R1_row {
  76. width: 100%;
  77. height: 100%;
  78. text-align: center;
  79. position: absolute;
  80. top: 0;
  81. left: 0;
  82. opacity: 0;
  83. pointer-events: none;
  84. video {
  85. max-width: 100%;
  86. max-height: 100%;
  87. }
  88. }
  89. .R1_rowAc {
  90. opacity: 1;
  91. pointer-events: auto;
  92. }
  93. .showIndBox {
  94. position: absolute;
  95. z-index: 10;
  96. bottom: 10px;
  97. left: 50%;
  98. transform: translateX(-50%);
  99. font-size: 16px;
  100. color: #4A403D;
  101. background-color: var(--themeColor);
  102. padding: 5px 10px;
  103. border-radius: 20px;
  104. }
  105. }
  106. // 左右按钮
  107. .R_left {
  108. cursor: pointer;
  109. position: absolute;
  110. top: 50%;
  111. width: 50px;
  112. height: 50px;
  113. left: 30px;
  114. z-index: 12;
  115. transform: translateY(-50%);
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. }
  120. .R_right {
  121. cursor: pointer;
  122. position: absolute;
  123. top: 50%;
  124. width: 50px;
  125. height: 50px;
  126. right: 30px;
  127. z-index: 12;
  128. transform: translateY(-50%);
  129. display: flex;
  130. justify-content: center;
  131. align-items: center;
  132. }
  133. .R_arrowNo {
  134. opacity: .5;
  135. pointer-events: none;
  136. }
  137. // 底部文字集合
  138. .t4ITxts {
  139. position: absolute;
  140. padding: 0 10px;
  141. text-align: center;
  142. z-index: 10;
  143. bottom: 5px;
  144. left: 0;
  145. width: 100%;
  146. height: 80px;
  147. }
  148. }
  149. }