index.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. .worksBox {
  2. .work {
  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. .cover {
  58. width: 100%;
  59. height: 100%;
  60. }
  61. .play {
  62. position: absolute;
  63. left: 50%;
  64. top: 40%;
  65. width: 90rpx;
  66. height: 90rpx;
  67. transform: translate(-50%);
  68. }
  69. }
  70. .video {
  71. width: 100%;
  72. height: 422rpx;
  73. }
  74. }
  75. .workFooter {
  76. .title {
  77. padding: 14rpx 20rpx;
  78. font-size: 32rpx;
  79. font-weight: bold;
  80. }
  81. .mange {
  82. display: flex;
  83. justify-content: space-between;
  84. align-items: center;
  85. padding: 14rpx 20rpx 30rpx;
  86. .mangeL {
  87. display: flex;
  88. align-items: center;
  89. .mangeL-box {
  90. display: flex;
  91. align-items: center;
  92. margin-right: 30rpx;
  93. .icon {
  94. width: 44rpx;
  95. height: 44rpx;
  96. }
  97. .icon-name {
  98. font-weight: bold;
  99. margin-left: 10rpx;
  100. font-size: 28rpx;
  101. }
  102. }
  103. }
  104. }
  105. }
  106. }
  107. }