video-column.css 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding: 92rpx 24rpx 24rpx;
  6. box-sizing: border-box;
  7. }
  8. .content-box {
  9. width: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. .tab-list {
  14. width: 100%;
  15. display: flex;
  16. background-color: #fff;
  17. border-top: 1px solid #F6F6F6;
  18. box-sizing: border-box;
  19. position: fixed;
  20. top: 0;
  21. left: 0;
  22. z-index: 999;
  23. }
  24. .child {
  25. flex: 1;
  26. height: 72rpx;
  27. line-height: 72rpx;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. color: #202020;
  32. font-size: 32rpx;
  33. position: relative;
  34. }
  35. .border-img {
  36. width: 15rpx;
  37. opacity: 0;
  38. position: absolute !important;
  39. right: 70rpx !important;
  40. bottom: 10rpx !important;
  41. }
  42. .child.active .border-img {
  43. opacity: 1;
  44. }
  45. .child.active {
  46. color: #F2501A;
  47. font-weight: 500;
  48. }
  49. .video-module {
  50. width: 100%;
  51. display: flex;
  52. flex-direction: column;
  53. background-color: #FFFFFF;
  54. border-radius: 16rpx;
  55. overflow: hidden;
  56. }
  57. .video-title {
  58. width: 100%;
  59. display: -webkit-box;
  60. -webkit-line-clamp: 1;
  61. overflow: hidden;
  62. text-overflow: ellipsis;
  63. -webkit-box-orient: vertical;
  64. height: 76rpx;
  65. line-height: 76rpx;
  66. color: #202020;
  67. font-size: 28rpx;
  68. font-weight: bold;
  69. padding: 0 14rpx;
  70. box-sizing: border-box;
  71. }
  72. .list {
  73. width: 100%;
  74. background-color: #FFFFFF;
  75. border-radius: 16rpx;
  76. margin-top: 20rpx;
  77. padding-bottom: 50rpx;
  78. }
  79. .item {
  80. width: 100%;
  81. display: flex;
  82. flex-direction: column;
  83. padding: 28rpx 20rpx 0;
  84. box-sizing: border-box;
  85. margin-bottom: 20rpx;
  86. }
  87. .item:last-child {
  88. margin-bottom: 0;
  89. }
  90. .item-top {
  91. width: 100%;
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. }
  96. .img-box {
  97. display: flex;
  98. align-items: center;
  99. margin-left: 24rpx;
  100. position: relative;
  101. }
  102. .item-top-img {
  103. width: 210rpx;
  104. height: 168rpx;
  105. border-radius: 16rpx;
  106. }
  107. .item-top-sidebar {
  108. flex: 1;
  109. height: 150rpx;
  110. display: flex;
  111. flex-direction: column;
  112. justify-content: space-between;
  113. }
  114. .item-top-name {
  115. width: 100%;
  116. color: #202020;
  117. font-size: 28rpx;
  118. font-weight: bold;
  119. display: -webkit-box;
  120. -webkit-line-clamp: 2;
  121. overflow: hidden;
  122. text-overflow: ellipsis;
  123. -webkit-box-orient: vertical;
  124. }
  125. .item-top-msg {
  126. width: 100%;
  127. color: #A7A7A7;
  128. font-size: 24rpx;
  129. }
  130. .play-img {
  131. width: 48rpx;
  132. height: 48rpx;
  133. position: absolute;
  134. top: 50%;
  135. left: 50%;
  136. transform: translate(-50%, -50%);
  137. z-index: 10;
  138. }
  139. .list-2 {
  140. width: 100%;
  141. display: flex;
  142. flex-wrap: wrap;
  143. justify-content: space-between;
  144. padding: 20rpx 20rpx 0;
  145. box-sizing: border-box;
  146. background-color: #FFFFFF;
  147. border-radius: 16rpx;
  148. margin-top: 20rpx;
  149. }
  150. .item-2 {
  151. width: calc(50% - 10rpx);
  152. display: flex;
  153. flex-direction: column;
  154. margin-bottom: 20rpx;
  155. }
  156. .img-box2 {
  157. width: 100%;
  158. display: flex;
  159. align-items: center;
  160. position: relative;
  161. margin-bottom: 10rpx;
  162. }
  163. .item-img2 {
  164. width: 100%;
  165. height: 252rpx;
  166. border-radius: 12rpx 12rpx 0 0;
  167. }
  168. .item-bottom {
  169. width: 100%;
  170. display: flex;
  171. flex-direction: column;
  172. }
  173. .item-bottom-msg {
  174. width: 100%;
  175. color: #A7A7A7;
  176. font-size: 24rpx;
  177. margin-top: 2rpx;
  178. }
  179. .product-list {
  180. width: 100%;
  181. display: flex;
  182. flex-wrap: wrap;
  183. justify-content: space-between;
  184. }
  185. .product-item {
  186. width: calc(50% - 11rpx);
  187. height: 500rpx;
  188. border-radius: 12rpx;
  189. background-color: #fff;
  190. margin-bottom: 30rpx;
  191. }
  192. .product-item-column2 {
  193. width: 100%;
  194. height: 100%;
  195. border-radius: 12rpx;
  196. display: flex;
  197. flex-direction: column;
  198. }
  199. .product-item-column2-img {
  200. width: 100%;
  201. height: 340rpx;
  202. border-radius: 12rpx 12rpx 0 0;
  203. }
  204. .product-item-column2-bottom {
  205. width: 100%;
  206. height: calc(100% - 340rpx);
  207. display: flex;
  208. flex-direction: column;
  209. justify-content: space-between;
  210. padding: 16rpx;
  211. box-sizing: border-box;
  212. border-radius: 0 0 12rpx 12rpx;
  213. }
  214. .product-item-column-name2 {
  215. width: 100%;
  216. display: -webkit-box;
  217. -webkit-line-clamp: 2;
  218. overflow: hidden;
  219. text-overflow: ellipsis;
  220. -webkit-box-orient: vertical;
  221. color: #202020;
  222. font-weight: bold;
  223. font-size: 26rpx;
  224. }
  225. .product-item-column2-row-between {
  226. width: 100%;
  227. display: flex;
  228. justify-content: space-between;
  229. align-items: center;
  230. }
  231. .product-item-column2-btn {
  232. width: 40rpx;
  233. height: 40rpx;
  234. line-height: 40rpx;
  235. border-radius: initial;
  236. }
  237. .product-item-column2-btn image {
  238. width: 100%;
  239. height: 100%;
  240. }
  241. .product-item-column2-price {
  242. color: #F2501A;
  243. font-size: 28rpx;
  244. }
  245. .product-item-column2-price>text {
  246. color: #919191;
  247. font-size: 24rpx;
  248. margin-left: 6rpx;
  249. text-decoration: line-through;
  250. }