class.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. .videoSection {
  2. width: 750rpx;
  3. height: 428rpx;
  4. }
  5. .classPage {
  6. background: #e8e8e8;
  7. }
  8. /**底部按钮区域**/
  9. .footSection {
  10. width: 750rpx;
  11. height: 192rpx;
  12. position: fixed;
  13. bottom: 0;
  14. display: flex;
  15. flex-direction: row;
  16. justify-content: space-between;
  17. align-items: center;
  18. }
  19. .blackbord {
  20. width: 100%;
  21. height: 192rpx;
  22. display: block;
  23. position: absolute;
  24. top: 0;
  25. left: 0;
  26. z-index: -1;
  27. }
  28. .readingBtn {
  29. width: 148rpx;
  30. height: 148rpx;
  31. border-radius: 50%;
  32. display: flex;
  33. align-items: center;
  34. }
  35. .footerBtn {
  36. display: flex;
  37. flex-direction: column;
  38. margin-top: 60rpx;
  39. }
  40. .collectBtn {
  41. margin-left: 80rpx
  42. }
  43. .shareBtn button {
  44. display: flex;
  45. flex-direction: column;
  46. outline: none;
  47. border: 0;
  48. padding: 0;
  49. margin: 0;
  50. border-radius: 0;
  51. /* line-height: 0; */
  52. background: #f7f7f7;
  53. }
  54. button::after {
  55. width: 0;
  56. height: 0;
  57. top: 0;
  58. left: 0
  59. }
  60. .shareBtn {
  61. margin-right: 80rpx;
  62. padding: 0;
  63. /* background: #fff; */
  64. }
  65. .footerBtn image {
  66. width: 50rpx;
  67. height: 48rpx;
  68. display: block;
  69. margin: 0 auto 18rpx;
  70. }
  71. .footerBtn text {
  72. width: 112rpx;
  73. height: 40rpx;
  74. line-height:40rpx;
  75. font-size: 28rpx;
  76. color: #414141;
  77. text-align: center;
  78. }
  79. .footSection .microphone {
  80. display: block;
  81. margin: -6rpx auto 0;
  82. width: 108rpx;
  83. height: 106rpx;
  84. }
  85. .footSection .readingBtn text {
  86. margin-top: -10rpx;
  87. }
  88. .readWorksSection {
  89. width: 100%;
  90. height: 100%;
  91. background: #e8e8e8;
  92. margin-bottom: 150rpx;
  93. min-height: 710rpx;
  94. }
  95. .readWorksSection .peopleNum {
  96. display: flex;
  97. align-items: center;
  98. margin: 10rpx 0 10rpx 24rpx;
  99. }
  100. .peopleNum .peoplesIcon {
  101. width: 28rpx;
  102. height: 28rpx;
  103. margin-right: 10rpx;
  104. }
  105. .peopleNum .title {
  106. font-size: 24rpx;
  107. color: #5d5d5d;
  108. height: 24rpx;
  109. line-height: 24rpx;
  110. }
  111. .readWorksSection .workCard {
  112. width: 716rpx;
  113. height: 132rpx;
  114. /* height: 700rpx; */
  115. display: flex;
  116. align-items: center;
  117. flex-direction: row;
  118. background: #fff;
  119. margin: 0 auto 12rpx;
  120. border-radius: 12rpx;
  121. }
  122. .workCard .avatar {
  123. width: 96rpx;
  124. height: 96rpx;
  125. border-radius: 50%;
  126. margin-left: 20rpx;
  127. }
  128. .workCard .name {
  129. display: flex;
  130. flex-direction: column;
  131. margin-left: 12rpx;
  132. }
  133. .workCard .nickName {
  134. width: 200rpx;
  135. height: 44rpx;
  136. color: #000;
  137. font-size: 32rpx;
  138. }
  139. .workCard .time {
  140. width: 200rpx;
  141. height: 44rpx;
  142. color: #686868;
  143. font-size: 32rpx;
  144. }
  145. .readWorksSection .likes {
  146. display: flex;
  147. flex-direction: column;
  148. margin-left: 270rpx;
  149. width: 104rpx;
  150. overflow: hidden;
  151. text-align: center;
  152. }
  153. .likes .likeTag {
  154. margin: 0 auto;
  155. width: 32rpx;
  156. height: 28rpx;
  157. }
  158. .likes .likeNum {
  159. color: #686868;
  160. font-size: 32rpx;
  161. }