index.wxss 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. @keyframes numberMove {
  2. from {
  3. bottom: 20rpx;
  4. opacity: 1;
  5. }
  6. to {
  7. bottom: 200rpx;
  8. font-size: 50rpx;
  9. opacity: 0;
  10. }
  11. }
  12. .swiper_container {
  13. width: 100%;
  14. height: 100%;
  15. background: #eee;
  16. }
  17. .swiper_container .video-swiper {
  18. width: 100%;
  19. height: 100%;
  20. display: block;
  21. background: #ffffff;
  22. }
  23. .swiper_container .swiper_item {
  24. width: 100%;
  25. background: #ffffff;
  26. margin-bottom: 20rpx;
  27. padding-bottom: 20rpx;
  28. overflow: hidden;
  29. position: relative;
  30. }
  31. .swiper_container .swiper_item.no_swiper {
  32. max-height: 879rpx;
  33. min-height: 640rpx;
  34. }
  35. .swiper_container .swiper_item .head_box {
  36. width: 100%;
  37. height: 120rpx;
  38. display: flex;
  39. justify-content: space-between;
  40. padding-left: 20rpx;
  41. box-sizing: border-box;
  42. padding-right: 20rpx;
  43. position: relative;
  44. }
  45. .swiper_container .swiper_item .head_box .tag_icon {
  46. width: 66rpx;
  47. height: 34rpx;
  48. position: absolute;
  49. right: 0;
  50. top: 0;
  51. }
  52. .swiper_container .swiper_item .head_box .user_box {
  53. width: 378rpx;
  54. height: 100%;
  55. display: flex;
  56. align-items: center;
  57. position: relative;
  58. }
  59. .swiper_container .swiper_item .head_box .user_box .avatar {
  60. width: 80rpx;
  61. height: 80rpx;
  62. border: 2rpx solid green;
  63. border-radius: 50%;
  64. }
  65. .swiper_container .swiper_item .head_box .user_box .avatar_fans {
  66. width: 34rpx;
  67. height: 34rpx;
  68. position: absolute;
  69. bottom: 5rpx;
  70. left: 26rpx;
  71. }
  72. .swiper_container .swiper_item .head_box .user_box .user_right {
  73. margin-left: 16rpx;
  74. display: flex;
  75. align-items: center;
  76. }
  77. .swiper_container .swiper_item .head_box .user_box .user_right .nickname {
  78. font-size: 30rpx;
  79. color: rgba(0, 0, 0, 0.8);
  80. font-weight: bold;
  81. }
  82. .swiper_container .swiper_item .head_box .user_box .user_right .efun_tag {
  83. width: 68rpx;
  84. height: 30rpx;
  85. margin-left: 4rpx;
  86. }
  87. .swiper_container .swiper_item .head_box .time {
  88. display: flex;
  89. align-items: center;
  90. font-size: 30rpx;
  91. color: rgba(0, 0, 0, 0.8);
  92. }
  93. .swiper_container .swiper_item .head_box .my_btn {
  94. display: flex;
  95. align-items: center;
  96. }
  97. .swiper_container .swiper_item .head_box .my_btn .delete {
  98. display: flex;
  99. flex-direction: column;
  100. align-items: center;
  101. margin-right: 45rpx;
  102. }
  103. .swiper_container .swiper_item .head_box .my_btn .delete .download_image {
  104. width: 29rpx;
  105. height: 32rpx;
  106. margin-bottom: 2rpx;
  107. }
  108. .swiper_container .swiper_item .head_box .my_btn .delete .delete_image {
  109. width: 25rpx;
  110. height: 32rpx;
  111. margin-bottom: 2rpx;
  112. }
  113. .swiper_container .swiper_item .head_box .my_btn .delete .delete_text {
  114. font-size: 26rpx;
  115. color: rgba(0, 0, 0, 0.8);
  116. }
  117. .swiper_container .swiper_item .head_box .my_btn .hide {
  118. display: flex;
  119. flex-direction: column;
  120. align-items: center;
  121. margin-right: 23rpx;
  122. box-sizing: border-box;
  123. }
  124. .swiper_container .swiper_item .head_box .my_btn .hide .hide_image {
  125. width: 32rpx;
  126. height: 33rpx;
  127. margin-bottom: 1rpx;
  128. }
  129. .swiper_container .swiper_item .head_box .my_btn .hide .hide_text {
  130. font-size: 26rpx;
  131. color: rgba(0, 0, 0, 0.8);
  132. }
  133. .swiper_container .swiper_item .video_item {
  134. width: 100%;
  135. height: 422rpx;
  136. }
  137. .swiper_container .swiper_item .video_place {
  138. width: 100%;
  139. height: 430rpx;
  140. background: rgba(0, 0, 0, 0.3);
  141. display: flex;
  142. align-items: center;
  143. justify-content: center;
  144. position: relative;
  145. }
  146. .swiper_container .swiper_item .video_place .play_btn {
  147. width: 100rpx;
  148. height: 100rpx;
  149. position: absolute;
  150. top: 170rpx;
  151. left: 0;
  152. right: 0;
  153. margin: 0 auto;
  154. }
  155. .swiper_container .swiper_item .video_place .activity_tigs {
  156. position: absolute;
  157. bottom: 0;
  158. left: 0;
  159. width: 100%;
  160. height: 49rpx;
  161. }
  162. .swiper_container .swiper_item .video_place .place_img {
  163. width: 100%;
  164. height: 100%;
  165. }
  166. .swiper_container .swiper_item .video_item_dialog {
  167. width: 100%;
  168. height: 422rpx;
  169. background: rgba(0, 0, 0, 0.3);
  170. display: flex;
  171. align-items: center;
  172. justify-content: center;
  173. position: absolute;
  174. z-index: 1;
  175. }
  176. .swiper_container .swiper_item .video_item_dialog .video_item_dialog_img {
  177. width: 215rpx;
  178. height: 215rpx;
  179. }
  180. .swiper_container .swiper_item .video_title {
  181. width: 100%;
  182. height: 58rpx;
  183. font-size: 34rpx;
  184. color: #373737;
  185. display: flex;
  186. align-items: center;
  187. padding-left: 27rpx;
  188. font-weight: bold;
  189. }
  190. .swiper_container .swiper_item .foot_box {
  191. width: 100%;
  192. height: 65rpx;
  193. margin-top: 43rpx;
  194. display: flex;
  195. justify-content: space-between;
  196. padding-left: 20rpx;
  197. }
  198. .swiper_container .swiper_item .foot_box .foot_left,
  199. .swiper_container .swiper_item .foot_box .foot_right {
  200. display: flex;
  201. align-items: center;
  202. position: relative;
  203. }
  204. .swiper_container .swiper_item .foot_box .video_btn {
  205. margin-right: 42rpx;
  206. font-size: 28rpx;
  207. color: rgba(0, 0, 0, 0.8);
  208. display: flex;
  209. flex-direction: row;
  210. align-items: center;
  211. }
  212. .swiper_container .swiper_item .foot_box .video_btn .animation-flower {
  213. width: 90rpx;
  214. height: 40rpx;
  215. position: absolute;
  216. left: 17rpx;
  217. bottom: 24rpx;
  218. opacity: 0;
  219. display: flex;
  220. align-items: center;
  221. flex-direction: row;
  222. justify-content: center;
  223. }
  224. .swiper_container .swiper_item .foot_box .video_btn .animation-flower .animation-flower-icon {
  225. width: 32rpx;
  226. height: 38rpx;
  227. display: block;
  228. margin-right: 8rpx;
  229. }
  230. .swiper_container .swiper_item .foot_box .video_btn .animation-flower text {
  231. margin-top: -15rpx;
  232. display: block;
  233. font-size: 26rpx;
  234. font-weight: 800;
  235. color: #fc3b3b;
  236. }
  237. .swiper_container .swiper_item .foot_box .video_btn .add-one-come-out {
  238. animation: numberMove 1.2s ease;
  239. -webkit-animation: numberMove 1.2s ease;
  240. }
  241. .swiper_container .swiper_item .foot_box .video_btn.share_btn {
  242. outline: none;
  243. padding: 0;
  244. margin: 0;
  245. background: #fff;
  246. }
  247. .swiper_container .swiper_item .foot_box .video_btn .collect_btn_icon {
  248. width: 48rpx;
  249. height: 46rpx;
  250. margin-right: 7rpx;
  251. }
  252. .swiper_container .swiper_item .foot_box .video_btn .share_btn_icon {
  253. width: 46rpx;
  254. height: 46rpx;
  255. margin-right: 8rpx;
  256. outline: none;
  257. padding: 0;
  258. margin: 0;
  259. border-radius: 0;
  260. background: #fff;
  261. }
  262. .swiper_container .swiper_item .foot_box .video_btn .flower_btn_icon {
  263. width: 46rpx;
  264. height: 46rpx;
  265. margin-right: 10rpx;
  266. border-radius: none;
  267. }
  268. .swiper_container .swiper_item .foot_box .video_btn .comment_btn_icon {
  269. width: 49rpx;
  270. height: 47rpx;
  271. margin-right: 9rpx;
  272. border-radius: 0;
  273. }
  274. .swiper_container .swiper_item .btn_wrapper {
  275. width: 100%;
  276. height: 111rpx;
  277. display: flex;
  278. align-items: center;
  279. justify-content: center;
  280. margin-top: 45rpx;
  281. margin-bottom: 10rpx;
  282. padding-bottom: 20rpx;
  283. box-sizing: border-box;
  284. }
  285. .swiper_container .swiper_item .btn_wrapper .reading_btn {
  286. width: 271rpx;
  287. height: 80rpx;
  288. background: #3FACFF;
  289. border-radius: 100rpx;
  290. display: flex;
  291. align-items: center;
  292. justify-content: center;
  293. }
  294. .swiper_container .swiper_item .btn_wrapper .reading_btn image {
  295. width: 39rpx;
  296. height: 50rpx;
  297. margin-right: 20rpx;
  298. }
  299. .swiper_container .swiper_item .btn_wrapper .reading_btn text {
  300. color: #fff;
  301. font-size: 30rpx;
  302. }
  303. .swiper_container .no_work {
  304. width: 100%;
  305. height: 120rpx;
  306. display: flex;
  307. align-items: center;
  308. justify-content: center;
  309. }
  310. .swiper_container .no_work .no_work_text {
  311. color: #373737;
  312. font-size: 30rpx;
  313. }