index.less 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. .work {
  2. margin-bottom: 24rpx;
  3. background-color: white;
  4. border-radius: 32rpx;
  5. box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  6. padding-bottom: 30rpx;
  7. .workHead {
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. padding: 20rpx 20rpx 10rpx;
  12. .wH-left {
  13. display: flex;
  14. justify-content: space-between;
  15. align-items: center;
  16. .avatar {
  17. width: 80rpx;
  18. height: 80rpx;
  19. border-radius: 50%;
  20. overflow: hidden;
  21. background-color: rgb(228, 225, 225);
  22. }
  23. .wH-left-user {
  24. margin-left: 18rpx;
  25. .nickname {
  26. max-width: 320rpx;
  27. font-size: 30rpx;
  28. font-weight: bold;
  29. color: #000;
  30. }
  31. .time {
  32. margin-top: 4rpx;
  33. font-size: 26rpx;
  34. color: rgba(0, 0, 0, 0.6);
  35. }
  36. }
  37. }
  38. .wH-right {
  39. display: flex;
  40. align-items: center;
  41. .wH-right-btn {
  42. text-align: center;
  43. margin-right: 30rpx;
  44. .img {
  45. width: 27rpx;
  46. height: 32rpx;
  47. }
  48. .text {
  49. font-size: 26rpx;
  50. color: rgba(0, 0, 0, 0.74);
  51. }
  52. }
  53. .follow {
  54. display: flex;
  55. align-items: center;
  56. justify-content: center;
  57. width: 140rpx;
  58. font-size: 24rpx;
  59. padding: 8rpx 0rpx;
  60. border-radius: 50rpx;
  61. border: 1rpx solid #1BC665;
  62. color: #1BC665;
  63. .character {
  64. width: 22rpx;
  65. height: 22rpx;
  66. margin-right: 6rpx;
  67. }
  68. }
  69. .isFans {
  70. border: 1rpx solid #969696;
  71. color: #969696;
  72. }
  73. .pkNum {
  74. color: #30C866;
  75. font-size: 44rpx;
  76. margin-right: 20rpx;
  77. }
  78. }
  79. }
  80. .workContent {
  81. position: relative;
  82. font-size: 0px;
  83. .videoBox {
  84. position: relative;
  85. width: 100%;
  86. height: 422rpx;
  87. .maskBg {
  88. position: absolute;
  89. top: 0px;
  90. left: 0px;
  91. width: 100%;
  92. height: 100%;
  93. background-color: rgba(0, 0, 0, 0.5);
  94. }
  95. .maskImg {
  96. z-index: 10;
  97. width: 215rpx;
  98. height: 215rpx;
  99. position: absolute;
  100. top: 0px;
  101. right: 0px;
  102. left: 0px;
  103. bottom: 0px;
  104. margin: auto;
  105. }
  106. .play {
  107. position: absolute;
  108. left: 50%;
  109. top: 40%;
  110. width: 90rpx;
  111. height: 90rpx;
  112. transform: translate(-50%);
  113. }
  114. .cover {
  115. width: 100%;
  116. height: 100%;
  117. }
  118. }
  119. .watermark {
  120. position: absolute;
  121. width: 100%;
  122. height: 100%;
  123. left: 0px;
  124. top: 0px;
  125. z-index: 2;
  126. }
  127. .video {
  128. width: 100%;
  129. height: 422rpx;
  130. pointer-events: auto;
  131. }
  132. .audioBox {
  133. position: relative;
  134. height: 208rpx;
  135. overflow: hidden;
  136. display: flex;
  137. align-items: center;
  138. .readingTips {
  139. position: absolute;
  140. right: 14rpx;
  141. bottom: 14rpx;
  142. width: 32rpx;
  143. height: 32rpx;
  144. z-index: 2;
  145. background-color: rgba(0, 0, 0, 0.28);
  146. padding: 12rpx;
  147. border-radius: 50%;
  148. }
  149. .audioBg {
  150. position: absolute;
  151. width: 100%;
  152. height: 100%;
  153. }
  154. .audioPlay {
  155. position: relative;
  156. margin: 20rpx 10rpx 20rpx 120rpx;
  157. width: 220rpx;
  158. height: 174rpx;
  159. display: flex;
  160. align-items: center;
  161. justify-content: center;
  162. .audioPlayBg {
  163. width: 150rpx;
  164. height: 150rpx;
  165. }
  166. .audioPlayZhen {
  167. position: absolute;
  168. right: 30rpx;
  169. top: 16rpx;
  170. width: 32rpx;
  171. height: 40rpx;
  172. }
  173. .cover {
  174. position: absolute;
  175. width: 130rpx;
  176. height: 130rpx;
  177. border-radius: 50%;
  178. }
  179. .circle {
  180. animation: identifier 12s infinite linear;
  181. }
  182. }
  183. .titleBox {
  184. position: relative;
  185. width: 256rpx;
  186. font-size: 30rpx;
  187. line-height: 54rpx;
  188. color: white;
  189. text-align: center;
  190. }
  191. }
  192. }
  193. .workFooter {
  194. display: flex;
  195. justify-content: space-between;
  196. align-items: center;
  197. padding: 20rpx 20rpx 8rpx;
  198. .mangeL-box {
  199. display: flex;
  200. align-items: center;
  201. margin-right: 30rpx;
  202. .icon {
  203. width: 44rpx;
  204. height: 44rpx;
  205. }
  206. .icon-name {
  207. margin-left: 8rpx;
  208. font-size: 28rpx;
  209. }
  210. }
  211. }
  212. .toReading {
  213. width: 166rpx;
  214. margin: 14rpx auto 0rpx;
  215. display: flex;
  216. align-items: center;
  217. justify-content: center;
  218. padding: 12rpx 32rpx;
  219. border-radius: 50rpx;
  220. background-image: linear-gradient(270deg, #33C3FF 0%, #81C7FF 100%, #14C962 100%);
  221. box-shadow: 0 4rpx 10rpx 0 rgba(50, 197, 255, 0.46);
  222. .reading {
  223. width: 24rpx;
  224. height: 32rpx;
  225. }
  226. .reading-text {
  227. color: white;
  228. font-size: 30rpx;
  229. margin-left: 12rpx;
  230. }
  231. }
  232. }