index.less 3.2 KB

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