index.less 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. .swiper_container {
  2. width: 100%;
  3. height: 100%;
  4. // padding-top: 20rpx;
  5. background: #eee;
  6. .video-swiper {
  7. width: 100%;
  8. height: 100%;
  9. display: block;
  10. background: #ffffff;
  11. // margin-top: 64rpx;
  12. }
  13. .swiper_item {
  14. width: 100%;
  15. // height: 100%;
  16. background: #ffffff;
  17. margin-bottom: 20rpx;
  18. padding-bottom: 20rpx;
  19. overflow: hidden;
  20. &.no_swiper {
  21. max-height: 879rpx;
  22. min-height: 640rpx;
  23. }
  24. .head_box {
  25. width: 100%;
  26. height: 120rpx;
  27. display: flex;
  28. justify-content: space-between;
  29. padding-left: 20rpx;
  30. box-sizing: border-box;
  31. padding-right: 20rpx;
  32. position: relative;
  33. .tag_icon {
  34. width: 66rpx;
  35. height: 34rpx;
  36. position: absolute;
  37. right: 0;
  38. top: 0;
  39. }
  40. .user_box {
  41. width: 378rpx;
  42. height: 100%;
  43. display: flex;
  44. align-items: center;
  45. position: relative;
  46. .avatar {
  47. width: 80rpx;
  48. height: 80rpx;
  49. border: 2rpx solid green;
  50. border-radius: 50%;
  51. }
  52. .avatar_fans {
  53. width: 34rpx;
  54. height: 34rpx;
  55. position: absolute;
  56. bottom: 5rpx;
  57. left: 26rpx;
  58. }
  59. .user_right {
  60. margin-left: 16rpx;
  61. display: flex;
  62. align-items: center;
  63. .nickname {
  64. font-size: 30rpx;
  65. color: rgba(0, 0, 0, 0.80);
  66. font-weight: bold;
  67. }
  68. .efun_tag {
  69. width: 68rpx;
  70. height: 30rpx;
  71. margin-left: 4rpx;
  72. }
  73. }
  74. }
  75. .time {
  76. display: flex;
  77. align-items: center;
  78. font-size: 30rpx;
  79. color: rgba(0, 0, 0, 0.80);
  80. }
  81. .my_btn {
  82. display: flex;
  83. align-items: center;
  84. .delete {
  85. display: flex;
  86. flex-direction: column;
  87. align-items: center;
  88. margin-right: 45rpx;
  89. .delete_image {
  90. width: 25rpx;
  91. height: 33rpx;
  92. margin-bottom: 2rpx;
  93. }
  94. .delete_text {
  95. font-size: 26rpx;
  96. color: rgba(0, 0, 0, 0.80);
  97. }
  98. }
  99. .hide {
  100. display: flex;
  101. flex-direction: column;
  102. align-items: center;
  103. margin-right: 23rpx;
  104. padding-top: 3rpx;
  105. box-sizing: border-box;
  106. .hide_image {
  107. width: 32rpx;
  108. height: 33rpx;
  109. margin-bottom: 2rpx;
  110. }
  111. .hide_text {
  112. font-size: 26rpx;
  113. color: rgba(0, 0, 0, 0.80);
  114. }
  115. }
  116. }
  117. }
  118. .video_item {
  119. width: 100%;
  120. height: 422rpx;
  121. }
  122. .video_place {
  123. width: 100%;
  124. height: 430rpx;
  125. background: rgba(0, 0, 0, .3);
  126. display: flex;
  127. align-items: center;
  128. justify-content: center;
  129. position: relative;
  130. .play_btn {
  131. width: 100rpx;
  132. height: 100rpx;
  133. position: absolute;
  134. top: 170rpx;
  135. left: 0;
  136. right: 0;
  137. margin: 0 auto;
  138. }
  139. .place_img {
  140. width: 100%;
  141. height: 100%;
  142. }
  143. }
  144. .video_item_dialog {
  145. width: 100%;
  146. height: 422rpx;
  147. background: rgba(0, 0, 0, .3);
  148. display: flex;
  149. align-items: center;
  150. justify-content: center;
  151. position: absolute;
  152. z-index: 1;
  153. .video_item_dialog_img {
  154. width: 215rpx;
  155. height: 215rpx;
  156. }
  157. }
  158. .video_title {
  159. width: 100%;
  160. height: 58rpx;
  161. font-size: 34rpx;
  162. color: #373737;
  163. display: flex;
  164. align-items: center;
  165. padding-left: 27rpx;
  166. font-weight: bold;
  167. }
  168. .foot_box {
  169. width: 100%;
  170. height: 65rpx;
  171. margin-top: 43rpx;
  172. display: flex;
  173. justify-content: space-between;
  174. padding-left: 20rpx;
  175. .foot_left,
  176. .foot_right {
  177. display: flex;
  178. align-items: center;
  179. }
  180. .video_btn {
  181. margin-right: 42rpx;
  182. font-size: 28rpx;
  183. color: rgba(0, 0, 0, 0.80);
  184. display: flex;
  185. flex-direction: row;
  186. align-items: center;
  187. .collect_btn_icon {
  188. width: 48rpx;
  189. height: 46rpx;
  190. margin-right: 7rpx;
  191. }
  192. .share_btn_icon {
  193. width: 46rpx;
  194. height: 46rpx;
  195. margin-right: 8rpx;
  196. }
  197. .flower_btn_icon {
  198. width: 46rpx;
  199. height: 46rpx;
  200. margin-right: 10rpx;
  201. border-radius: none;
  202. }
  203. .comment_btn_icon {
  204. width: 49rpx;
  205. height: 47rpx;
  206. margin-right: 9rpx;
  207. border-radius: 0;
  208. }
  209. }
  210. }
  211. .btn_wrapper {
  212. width: 100%;
  213. height: 111rpx;
  214. display: flex;
  215. align-items: center;
  216. justify-content: center;
  217. margin-top: 45rpx;
  218. margin-bottom: 10rpx;
  219. padding-bottom: 20rpx;
  220. box-sizing: border-box;
  221. .reading_btn {
  222. width: 271rpx;
  223. height: 80rpx;
  224. background: #3FACFF;
  225. border-radius: 100rpx;
  226. display: flex;
  227. align-items: center;
  228. justify-content: center;
  229. image {
  230. width: 39rpx;
  231. height: 50rpx;
  232. margin-right: 20rpx;
  233. }
  234. text {
  235. color: #fff;
  236. font-size: 30rpx;
  237. }
  238. }
  239. }
  240. }
  241. }