replay.wxss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. page {
  2. width: 100%;
  3. height: 100%;
  4. overflow-y: hidden;
  5. }
  6. .main {
  7. display: block;
  8. position: relative;
  9. height: 100%;
  10. z-index: 0;
  11. }
  12. .main::after {
  13. content: ' ';
  14. display: block;
  15. position: absolute;
  16. bottom: 0;
  17. left: 0;
  18. right: 0;
  19. height: 30%;
  20. z-index: 1;
  21. background-image: linear-gradient(to top, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.16) 40%, rgba(0, 0, 0, 0) 100%);
  22. }
  23. .main::before {
  24. content: ' ';
  25. display: block;
  26. position: absolute;
  27. top: 0;
  28. left: 0;
  29. right: 0;
  30. height: 20%;
  31. z-index: 1;
  32. background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 40%, rgba(0, 0, 0, 0.24) 100%);
  33. }
  34. .main video {
  35. width: 750rpx;
  36. height: 100%;
  37. }
  38. .live-page {
  39. position: absolute;
  40. top: 0;
  41. left: 0;
  42. right: 0;
  43. z-index: 20;
  44. padding-bottom: 24px;
  45. box-sizing: border-box;
  46. width: 100%;
  47. height: 100%;
  48. }
  49. .operation {
  50. position: fixed;
  51. right: 17px;
  52. bottom: 24px;
  53. z-index: 10;
  54. }
  55. .operation .item {
  56. width: 42px;
  57. height: 42px;
  58. background: #8385F3;
  59. border-radius: 50%;
  60. margin-bottom: 23px;
  61. overflow: hidden;
  62. }
  63. .operation button.item {
  64. background: transparent;
  65. }
  66. .operation .item .iconfont {
  67. font-size: 24px;
  68. color: #fff;
  69. }
  70. .operation .item.operation--mode-filter-black {
  71. background: rgba(0, 0, 0, 0.25);
  72. backdrop-filter: blur(20px);
  73. border-radius: 50%;
  74. overflow: hidden;
  75. }
  76. .operation button.item {
  77. line-height: initial;
  78. padding: 0;
  79. }
  80. .operation button.item::after {
  81. content: none;
  82. }
  83. .store {
  84. padding: 0 16px;
  85. position: absolute;
  86. z-index: 2;
  87. left: 0;
  88. right: 0;
  89. bottom: 30px;
  90. }
  91. .store-list {
  92. border-radius: 16px;
  93. overflow: hidden;
  94. position: relative;
  95. bottom: -999px;
  96. }
  97. .store-list.fadeIn {
  98. bottom: 0;
  99. animation: fadeInStoreList 0.2s 1 forwards;
  100. }
  101. .store__mask {
  102. position: fixed;
  103. top: 0;
  104. left: 0;
  105. right: 0;
  106. height: 100%;
  107. z-index: 1;
  108. }
  109. .mode-filter-black {
  110. background-color: rgba(0, 0, 0, 0.25);
  111. backdrop-filter: blur(20px);
  112. border-radius: inherit;
  113. }
  114. .store-list__inner {
  115. position: relative;
  116. z-index: 5002;
  117. padding: 16px 12px;
  118. box-sizing: border-box;
  119. }
  120. .store-list__header {
  121. position: relative;
  122. display: flex;
  123. justify-content: flex-start;
  124. align-items: center;
  125. padding: 0 4px;
  126. font-weight: 500;
  127. }
  128. .store-list__title {
  129. font-size: 15px;
  130. color: #ffffff;
  131. text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.1);
  132. }
  133. .store-list__body {
  134. margin-top: 4px;
  135. overflow: hidden;
  136. padding: 2px 5px 0 0;
  137. box-sizing: border-box;
  138. flex: 1;
  139. display: flex;
  140. flex-direction: column;
  141. justify-content: space-between;
  142. }
  143. .store-list__page__inner {
  144. position: relative;
  145. width: calc(100% + 20px);
  146. box-sizing: border-box;
  147. -webkit-mask-image: -webkit-gradient(linear, left bottom, left 96%, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 04)));
  148. }
  149. .store-list__item {
  150. margin-bottom: 12px;
  151. background: #ffffff;
  152. border-radius: 8px;
  153. }
  154. .store-list__item:last-child {
  155. margin-bottom: 0;
  156. }
  157. .store-list__item__inner {
  158. display: flex;
  159. justify-content: flex-start;
  160. align-items: stretch;
  161. padding: 8px;
  162. }
  163. .store-list__item__header {
  164. position: relative;
  165. margin-right: 9px;
  166. font-size: 0;
  167. }
  168. .store-list__item__avatar {
  169. width: 64px;
  170. height: 64px;
  171. border-radius: 2px;
  172. box-sizing: border-box;
  173. }
  174. .store-list__item__index {
  175. position: absolute;
  176. top: 0;
  177. left: 0;
  178. background: rgba(0, 0, 0, 0.5);
  179. border-radius: 2px 0px 8px 0px;
  180. text-align: center;
  181. padding: 0 2px;
  182. min-width: 14px;
  183. line-height: 12px;
  184. font-size: 10px;
  185. color: #ffffff;
  186. text-align: center;
  187. }
  188. .store-list__item__page {
  189. height: initial;
  190. }
  191. .store-list__item__title {
  192. font-size: 15px;
  193. color: rgba(0, 0, 0, 0.7);
  194. overflow: hidden;
  195. text-overflow: ellipsis;
  196. display: -webkit-box;
  197. -webkit-line-clamp: 2;
  198. -webkit-box-orient: vertical;
  199. word-break: break-all;
  200. line-height: 19.6px;
  201. margin-bottom: 5px;
  202. }
  203. .store-list__item__price {
  204. opacity: 0.9;
  205. font-size: 14px;
  206. color: #fa9d3b;
  207. }
  208. .store-list__item__price-before {
  209. color: #B2B2B2;
  210. text-decoration: line-through;
  211. }
  212. .store-list__empty {
  213. text-align: center;
  214. height: 287px;
  215. line-height: 140px;
  216. color: #fff;
  217. font-size: 14px;
  218. }
  219. .nav-btn {
  220. position: relative;
  221. top: 0;
  222. left: 0;
  223. display: flex;
  224. justify-content: center;
  225. align-items: center;
  226. width: 31px;
  227. height: 31px;
  228. line-height: 31px;
  229. padding: 0;
  230. min-width: 31px;
  231. max-width: 31px;
  232. text-align: center;
  233. border-radius: 50%;
  234. min-height: initial;
  235. box-sizing: border-box;
  236. background: rgba(0,0,0,0.25);
  237. border: 1px solid rgba(255,255,255,0.05);
  238. color: #fff;
  239. backdrop-filter: blur(20px);
  240. }
  241. .nav-btn .img {
  242. width: 20px;
  243. height: 20px;
  244. vertical-align: top;
  245. }
  246. .store-list__body__inner {
  247. overflow-y: auto;
  248. }