style.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. .btns {
  2. display: flex;
  3. .unit,
  4. .start {
  5. height: 38px;
  6. }
  7. .unit {
  8. flex: none;
  9. margin-left: 10px;
  10. }
  11. .start {
  12. flex: 1;
  13. }
  14. }
  15. .tree {
  16. margin-top: 20px;
  17. padding-bottom: 100px;
  18. }
  19. .header-btns {
  20. margin: 0 -20px;
  21. padding: 0 20px 20px;
  22. border-bottom: 1px solid rgba(255,255,255,0.1600);;
  23. }
  24. .sign {
  25. padding: 20px 0;
  26. border-top: 1px solid rgba(255,255,255,0.1600);
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. margin-bottom: 0 !important;
  31. &:last-child {
  32. border-bottom: 1px solid rgba(255,255,255,0.1600);
  33. }
  34. }
  35. .content {
  36. display: flex;
  37. align-items: center;
  38. .cover {
  39. display: flex;
  40. position: relative;
  41. width: 48px;
  42. height: 48px;
  43. align-items: center;
  44. justify-content: center;
  45. color: #fff;
  46. font-size: 16px;
  47. margin-right: 10px;
  48. flex: none;
  49. img,
  50. &::before {
  51. position: absolute;
  52. left: 0;
  53. top: 0;
  54. bottom: 0;
  55. right: 0;
  56. }
  57. &::before{
  58. content: '';
  59. z-index: 2;
  60. background: rgba(0,0,0,0.5);
  61. }
  62. img {
  63. position: absolute;
  64. z-index: 1;
  65. left: 0;
  66. top: 0;
  67. width: 100%;
  68. height: 100%;
  69. }
  70. .preview {
  71. position: relative;
  72. z-index: 3;
  73. }
  74. }
  75. .title {
  76. p {
  77. font-size: 14px;
  78. }
  79. span {
  80. font-size: 12px;
  81. color: rgba(255,255,255,0.4000);
  82. }
  83. }
  84. }
  85. .action {
  86. color: #fff;
  87. font-size: 14px;
  88. flex: none;
  89. margin-left: 10px;
  90. }
  91. .countdown {
  92. font-size: 14px;
  93. color: rgba(255,255,255,0.6);
  94. background-color: var(--editor-toolbox-back);
  95. position: absolute;
  96. z-index: 99;
  97. left: 50%;
  98. top: 50%;
  99. transform: translate(-50%, -50%);
  100. padding: 30px 60px;
  101. pointer-events: none;
  102. p:not(:last-child) {
  103. margin-bottom: 15px;
  104. }
  105. .title {
  106. color: #fff;
  107. span {
  108. font-size: 32px;
  109. font-weight: bold;
  110. color: #00C8AF;
  111. margin-right: 14px;
  112. }
  113. }
  114. }
  115. .shot-ctrl {
  116. z-index: 2;
  117. .btn {
  118. flex: none;
  119. width: 160px;
  120. &:not(:last-child) {
  121. margin-right: 20px;
  122. }
  123. }
  124. .other {
  125. position: absolute;
  126. bottom: calc(100% + 120px);
  127. left: 50%;
  128. transform: translateX(-50%) ;
  129. .icon {
  130. margin: 20px;
  131. display: inline-block;
  132. width: 64px;
  133. height: 64px;
  134. border-radius: 50%;
  135. background-color: var(--editor-toolbox-back);
  136. color: rgba(255,255,255,0.6);
  137. font-size: 34px;
  138. text-align: center;
  139. display: flex;
  140. align-items: center;
  141. justify-content: center;
  142. }
  143. }
  144. }
  145. .video-list {
  146. position: absolute;
  147. bottom: 100%;
  148. left: 0;
  149. width: 100%;
  150. height: 120px;
  151. overflow-x: auto;
  152. background-color: var(--editor-toolbox-back);
  153. .layout {
  154. display: flex;
  155. align-items: center;
  156. height: 100%;
  157. justify-content: space-around;
  158. }
  159. .cover {
  160. height: 80px;
  161. position: relative;
  162. &::before {
  163. position: absolute;
  164. left: 0;
  165. top: 0;
  166. bottom: 0;
  167. right: 0;
  168. content: '';
  169. z-index: 2;
  170. background: rgba(0,0,0,0.5);
  171. }
  172. .preview {
  173. position: absolute;
  174. z-index: 3;
  175. left: 50%;
  176. top: 50%;
  177. transform: translate(-50%, -50%);
  178. font-size: 22px;
  179. }
  180. }
  181. }