index.less 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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. pointer-events: auto;
  88. .maskBg {
  89. position: absolute;
  90. top: 0px;
  91. left: 0px;
  92. width: 100%;
  93. height: 100%;
  94. background-color: rgba(0, 0, 0, 0.5);
  95. }
  96. .maskImg {
  97. z-index: 10;
  98. width: 215rpx;
  99. height: 215rpx;
  100. position: absolute;
  101. top: 0px;
  102. right: 0px;
  103. left: 0px;
  104. bottom: 0px;
  105. margin: auto;
  106. }
  107. .play {
  108. position: absolute;
  109. left: 50%;
  110. top: 40%;
  111. width: 90rpx;
  112. height: 90rpx;
  113. transform: translate(-50%);
  114. }
  115. .cover {
  116. width: 100%;
  117. height: 100%;
  118. }
  119. }
  120. .watermark {
  121. position: absolute;
  122. width: 100%;
  123. height: 100%;
  124. left: 0px;
  125. top: 0px;
  126. z-index: 2;
  127. pointer-events: none;
  128. }
  129. .video {
  130. width: 100%;
  131. height: 422rpx;
  132. pointer-events: auto;
  133. }
  134. .audioBox {
  135. position: relative;
  136. height: 208rpx;
  137. overflow: hidden;
  138. display: flex;
  139. align-items: center;
  140. .readingTips {
  141. position: absolute;
  142. right: 14rpx;
  143. bottom: 14rpx;
  144. width: 32rpx;
  145. height: 32rpx;
  146. z-index: 2;
  147. background-color: rgba(0, 0, 0, 0.28);
  148. padding: 12rpx;
  149. border-radius: 50%;
  150. }
  151. .audioBg {
  152. position: absolute;
  153. width: 100%;
  154. height: 100%;
  155. }
  156. .audioPlay {
  157. position: relative;
  158. margin: 20rpx 10rpx 20rpx 120rpx;
  159. width: 220rpx;
  160. height: 174rpx;
  161. display: flex;
  162. align-items: center;
  163. justify-content: center;
  164. .audioPlayBg {
  165. width: 150rpx;
  166. height: 150rpx;
  167. }
  168. .audioPlayZhen {
  169. position: absolute;
  170. right: 30rpx;
  171. top: 16rpx;
  172. width: 32rpx;
  173. height: 40rpx;
  174. }
  175. .cover {
  176. position: absolute;
  177. width: 130rpx;
  178. height: 130rpx;
  179. border-radius: 50%;
  180. }
  181. .circle {
  182. animation: identifier 12s infinite linear;
  183. }
  184. }
  185. .titleBox {
  186. position: relative;
  187. width: 256rpx;
  188. font-size: 30rpx;
  189. line-height: 54rpx;
  190. color: white;
  191. text-align: center;
  192. }
  193. }
  194. }
  195. .workFooter {
  196. display: flex;
  197. justify-content: space-between;
  198. align-items: center;
  199. padding: 20rpx 20rpx 8rpx;
  200. .mangeL-box {
  201. display: flex;
  202. align-items: center;
  203. margin-right: 30rpx;
  204. .icon {
  205. width: 44rpx;
  206. height: 44rpx;
  207. }
  208. .icon-name {
  209. margin-left: 8rpx;
  210. font-size: 28rpx;
  211. }
  212. }
  213. }
  214. .toReading {
  215. width: 166rpx;
  216. margin: 14rpx auto 0rpx;
  217. display: flex;
  218. align-items: center;
  219. justify-content: center;
  220. padding: 12rpx 32rpx;
  221. border-radius: 50rpx;
  222. background-image: linear-gradient(270deg, #33C3FF 0%, #81C7FF 100%, #14C962 100%);
  223. box-shadow: 0 4rpx 10rpx 0 rgba(50, 197, 255, 0.46);
  224. .reading {
  225. width: 24rpx;
  226. height: 32rpx;
  227. }
  228. .reading-text {
  229. color: white;
  230. font-size: 30rpx;
  231. margin-left: 12rpx;
  232. }
  233. }
  234. }