index.less 3.9 KB

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