index.less 4.5 KB

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