index.module.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. .RightFile {
  2. width: 100%;
  3. height: 100%;
  4. position: relative;
  5. border-radius: 10px;
  6. :global {
  7. .R_audioBox {
  8. position: absolute;
  9. top: 0;
  10. left: 0;
  11. width: 100%;
  12. height: 100%;
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. #myAudio {
  17. width: 400px;
  18. }
  19. }
  20. .R_audioIcon {
  21. border-radius: 50%;
  22. width: 40px;
  23. height: 40px;
  24. border: 1px solid var(--themeColor);
  25. cursor: pointer;
  26. position: absolute;
  27. right: 8px;
  28. top: -5px;
  29. z-index: 98;
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. &>img {
  34. width: 30px;
  35. height: 30px;
  36. }
  37. }
  38. .R1_row {
  39. background-color: #211c19;
  40. border-radius: 10px;
  41. overflow: hidden;
  42. position: absolute;
  43. bottom: 0px;
  44. left: 0;
  45. width: 100%;
  46. height: 100%;
  47. height: calc(100% - 50px);
  48. z-index: 3;
  49. opacity: 0;
  50. pointer-events: none;
  51. transition: all .3s;
  52. iframe {
  53. width: 100%;
  54. height: 100%;
  55. }
  56. video {
  57. width: 100%;
  58. height: 100%;
  59. max-width: 100%;
  60. max-height: 100%;
  61. }
  62. }
  63. .R1_rowAc {
  64. opacity: 1;
  65. pointer-events: auto;
  66. }
  67. .R1_IrBox {
  68. z-index: 99;
  69. }
  70. .R_left {
  71. cursor: pointer;
  72. position: absolute;
  73. top: 50%;
  74. width: 40px;
  75. height: 40px;
  76. left: -40px;
  77. z-index: 12;
  78. transform: translateY(-50%);
  79. display: flex;
  80. justify-content: center;
  81. align-items: center;
  82. }
  83. .R_right {
  84. cursor: pointer;
  85. position: absolute;
  86. top: 50%;
  87. width: 40px;
  88. height: 40px;
  89. right: -40px;
  90. z-index: 12;
  91. transform: translateY(-50%);
  92. display: flex;
  93. justify-content: center;
  94. align-items: center;
  95. }
  96. .R_arrowNo {
  97. opacity: .5;
  98. pointer-events: none;
  99. }
  100. // 中间的类型切换
  101. .R_typeCutBox {
  102. position: absolute;
  103. z-index: 98;
  104. top: -5px;
  105. left: 0;
  106. height: 40px;
  107. display: flex;
  108. .R_typeCutRow {
  109. margin: 0 10px;
  110. cursor: pointer;
  111. color: var(--themeColor);
  112. line-height: 40px;
  113. text-align: center;
  114. height: 40px;
  115. padding: 0 30px;
  116. border-radius:0 10px 0 10px;
  117. border: 1px solid var(--themeColor);
  118. }
  119. .R_typeCutRowAc {
  120. background-color: var(--themeColor);
  121. color: #4A403D;
  122. }
  123. }
  124. .showIndBox {
  125. position: absolute;
  126. height: 40px;
  127. line-height: 40px;
  128. left: 50%;
  129. bottom: -40px;
  130. transform: translateX(-50%);
  131. z-index: 99;
  132. color: #EBDFBF;
  133. font-size: 20px;
  134. }
  135. }
  136. }