index.less 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. }
  22. .wH-left-user {
  23. margin-left: 18rpx;
  24. .nickname {
  25. max-width: 320rpx;
  26. font-size: 30rpx;
  27. font-weight: bold;
  28. color: #000;
  29. }
  30. .time {
  31. margin-top: 4rpx;
  32. font-size: 26rpx;
  33. color: rgba(0, 0, 0, 0.6);
  34. }
  35. }
  36. }
  37. .wH-right {
  38. display: flex;
  39. align-items: center;
  40. .wH-right-btn {
  41. text-align: center;
  42. margin-right: 30rpx;
  43. .img {
  44. width: 27rpx;
  45. height: 32rpx;
  46. }
  47. .text {
  48. font-size: 26rpx;
  49. color: rgba(0, 0, 0, 0.74);
  50. }
  51. }
  52. .follow {
  53. display: flex;
  54. align-items: center;
  55. justify-content: center;
  56. width: 140rpx;
  57. font-size: 24rpx;
  58. padding: 6rpx 0rpx;
  59. border-radius: 50rpx;
  60. border: 1rpx solid #1BC665;
  61. color: #1BC665;
  62. .character {
  63. width: 22rpx;
  64. height: 22rpx;
  65. margin-right: 6rpx;
  66. }
  67. }
  68. .isFans {
  69. border: 1rpx solid #969696;
  70. color: #969696;
  71. }
  72. }
  73. }
  74. .workContent {
  75. font-size: 0px;
  76. .videoBox {
  77. position: relative;
  78. width: 100%;
  79. height: 422rpx;
  80. .maskBg {
  81. position: absolute;
  82. top: 0px;
  83. left: 0px;
  84. width: 100%;
  85. height: 100%;
  86. background-color: rgba(0, 0, 0, 0.5);
  87. }
  88. .maskImg {
  89. z-index: 10;
  90. width: 215rpx;
  91. height: 215rpx;
  92. position: absolute;
  93. top: 0px;
  94. right: 0px;
  95. left: 0px;
  96. bottom: 0px;
  97. margin: auto;
  98. }
  99. .play {
  100. position: absolute;
  101. left: 50%;
  102. top: 40%;
  103. width: 90rpx;
  104. height: 90rpx;
  105. transform: translate(-50%);
  106. }
  107. .cover {
  108. width: 100%;
  109. height: 100%;
  110. }
  111. }
  112. .video {
  113. width: 100%;
  114. height: 422rpx;
  115. }
  116. }
  117. .workFooter {
  118. margin-top: 15rpx;
  119. display: flex;
  120. justify-content: space-between;
  121. align-items: center;
  122. padding: 14rpx 20rpx 30rpx;
  123. .mangeL-box {
  124. display: flex;
  125. align-items: center;
  126. margin-right: 30rpx;
  127. .icon {
  128. width: 44rpx;
  129. height: 44rpx;
  130. }
  131. .icon-name {
  132. margin-left: 8rpx;
  133. font-size: 28rpx;
  134. }
  135. }
  136. }
  137. .toReading {
  138. width: 166rpx;
  139. margin: 0 auto;
  140. display: flex;
  141. align-items: center;
  142. justify-content: center;
  143. padding: 12rpx 32rpx;
  144. border-radius: 50rpx;
  145. background-image: linear-gradient(270deg, #33C3FF 0%, #81C7FF 100%, #14C962 100%);
  146. box-shadow: 0 4rpx 10rpx 0 rgba(50, 197, 255, 0.46);
  147. .reading {
  148. width: 24rpx;
  149. height: 32rpx;
  150. }
  151. .reading-text {
  152. color: white;
  153. font-size: 30rpx;
  154. margin-left: 12rpx;
  155. }
  156. }
  157. }