index.less 3.8 KB

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