works.wxss 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455
  1. .videoSection {
  2. width: 750rpx;
  3. height: 428rpx;
  4. }
  5. .readAuthorSection {
  6. width: 100%;
  7. height: 152rpx;
  8. display: flex;
  9. /* justify-items: center; */
  10. align-items: center;
  11. border-bottom: solid 2rpx #f0f1f5;
  12. }
  13. .readAuthorSection .avatar {
  14. width: 108rpx;
  15. height: 108rpx;
  16. border-radius: 50%;
  17. margin-left: 22rpx;
  18. }
  19. .readAuthorSection .nickName {
  20. margin-left: 20rpx;
  21. width: 160rpx;
  22. height: 46rpx;
  23. font-size: 32rpx;
  24. color: #101010;
  25. }
  26. .readAuthorSection .like {
  27. display: flex;
  28. align-items: center;
  29. justify-content: center;
  30. margin-left: 90rpx;
  31. width: 160rpx;
  32. height: 60rpx;
  33. border: 2rpx solid rgba(255, 152, 0, 1);
  34. font-size: 28rpx;
  35. border-radius: 30rpx;
  36. text-align: center;
  37. /* line-height: 60rpx; */
  38. color: #ff9800;
  39. }
  40. .readAuthorSection .like image {
  41. width: 36rpx;
  42. height: 36rpx;
  43. margin-right: 15rpx;
  44. }
  45. .readAuthorSection .follow {
  46. margin-left: 12rpx;
  47. width: 160rpx;
  48. height: 60rpx;
  49. border: 2rpx solid #259b24;
  50. font-size: 28rpx;
  51. border-radius: 30rpx;
  52. text-align: center;
  53. line-height: 60rpx;
  54. color: #539bee;
  55. }
  56. .userSection {
  57. width: 100%;
  58. height: 166rpx;
  59. border-bottom: solid 2rpx #f0f1f5;
  60. }
  61. .userSection .peopleNum {
  62. display: flex;
  63. align-items: center;
  64. margin: 10rpx 0 0 24rpx;
  65. }
  66. .peopleNum .peoplesIcon {
  67. width: 28rpx;
  68. height: 28rpx;
  69. margin-right: 10rpx;
  70. }
  71. .peopleNum .title {
  72. font-size: 24rpx;
  73. color: #5d5d5d;
  74. height: 24rpx;
  75. line-height: 24rpx;
  76. }
  77. .userSection .scrollWrapper {
  78. display: flex;
  79. margin-top: 16rpx;
  80. }
  81. ::-webkit-scrollbar {
  82. width: 0;
  83. height: 0;
  84. color: transparent;
  85. }
  86. .userSection .avatarRow {
  87. display: flex;
  88. align-items: center;
  89. }
  90. .userSection .avatarRow .userItem {
  91. display: felx;
  92. justify-items: center;
  93. width: 100rpx;
  94. height: 100rpx;
  95. margin-left: 18rpx;
  96. }
  97. .avatarRow .userItem image {
  98. width: 96rpx;
  99. height: 96rpx;
  100. border-radius: 50%;
  101. }
  102. .commentSection {
  103. width: 100%;
  104. height: 180rpx;
  105. }
  106. .commentSection .title {
  107. height: 44rpx;
  108. font-size: 32rpx;
  109. line-height: 44rpx;
  110. margin-left: 20rpx;
  111. margin-bottom: 10rpx;
  112. }
  113. .commentSection .commentInput {
  114. width: 720rpx;
  115. height: 60rpx;
  116. margin: 0 auto;
  117. background: #f0f1f5;
  118. color: #545454;
  119. font-size: 28rpx;
  120. line-height: 60rpx;
  121. text-indent: 20rpx;
  122. }
  123. .commentArea {
  124. width: 100%;
  125. margin-bottom: 160rpx;
  126. }
  127. .commentArea .commentItem {
  128. width: 704rpx;
  129. height: 240rpx;
  130. border-bottom: solid 2rpx #f0f1f5;
  131. margin: 0 auto 20rpx;
  132. display: flex;
  133. position: relative;
  134. }
  135. .commentItem .commentCore {
  136. margin-left: 14rpx;
  137. width: 600rpx;
  138. height: 100%;
  139. display: flex;
  140. flex-direction: column;
  141. }
  142. .commentItem .avatar {
  143. border-radius: 50%;
  144. width: 96rpx;
  145. height: 96rpx;
  146. margin-top: 18rpx;
  147. }
  148. .commentItem .nickName {
  149. margin-top: 18rpx;
  150. height: 44rpx;
  151. font-size: 32rpx;
  152. color: #000;
  153. font-family: PingFangSC-Regular;
  154. }
  155. .commentItem .time {
  156. width: 200rpx;
  157. height: 44rpx;
  158. font-size: 32rpx;
  159. color: #686868;
  160. }
  161. .commentItem .gut {
  162. margin-top: 12rpx;
  163. width: 420rpx;
  164. height: 44rpx;
  165. font-size: 32rpx;
  166. color: #000;
  167. overflow: hidden;
  168. text-overflow: ellipsis;
  169. white-space: nowrap;
  170. }
  171. .commentItem .commentAll {
  172. margin-top: 10rpx;
  173. width: 263rpx;
  174. height: 50rpx;
  175. background: #f0f1f5;
  176. font-size: 32rpx;
  177. color: #61ca54;
  178. text-indent: 20rpx;
  179. border-radius: 12rpx;
  180. }
  181. .commentItem .btnWrapper {
  182. position: absolute;
  183. top: 10rpx;
  184. right: 10rpx;
  185. display: flex;
  186. align-items: center;
  187. }
  188. .btnWrapper .commentBtn {
  189. width: 32rpx;
  190. height: 30rpx;
  191. margin-left: 8rpx;
  192. }
  193. .btnWrapper .commentText,
  194. .likeText {
  195. width: 58rpx;
  196. height: 40rpx;
  197. color: #545454;
  198. font-size: 28rpx;
  199. line-height: 40rpx;
  200. margin-left: 8rpx;
  201. }
  202. .btnWrapper .likeBtn {
  203. width: 32rpx;
  204. height: 28rpx;
  205. margin-left: 8rpx;
  206. }
  207. /**底部按钮区域**/
  208. .footSection {
  209. width: 750rpx;
  210. height: 192rpx;
  211. position: fixed;
  212. bottom: 0;
  213. display: flex;
  214. flex-direction: row;
  215. justify-content: space-between;
  216. align-items: center;
  217. }
  218. .blackbord {
  219. width: 100%;
  220. height: 192rpx;
  221. display: block;
  222. position: absolute;
  223. top: 0;
  224. left: 0;
  225. z-index: -1;
  226. }
  227. .readingBtn {
  228. width: 148rpx;
  229. height: 148rpx;
  230. border-radius: 50%;
  231. display: flex;
  232. align-items: center;
  233. }
  234. .footerBtn {
  235. display: flex;
  236. flex-direction: column;
  237. margin-top: 60rpx;
  238. }
  239. .collectBtn {
  240. margin-left: 80rpx
  241. }
  242. /* .shareBtn button {
  243. display: flex;
  244. flex-direction: column;
  245. outline: none;
  246. border: 0;
  247. padding: 0;
  248. margin: 0;
  249. border-radius: 0;
  250. background: #f7f7f7;
  251. }
  252. button::after {
  253. width: 0;
  254. height: 0;
  255. top: 0;
  256. left: 0
  257. } */
  258. .shareBtn {
  259. margin-right: 80rpx;
  260. padding: 0;
  261. /* background: #fff; */
  262. }
  263. .footerBtn image {
  264. width: 50rpx;
  265. height: 48rpx;
  266. display: block;
  267. margin: 0 auto 18rpx;
  268. }
  269. .footerBtn text {
  270. width: 112rpx;
  271. height: 40rpx;
  272. line-height: 40rpx;
  273. font-size: 28rpx;
  274. color: #414141;
  275. text-align: center;
  276. }
  277. .footSection .microphone {
  278. display: block;
  279. margin: -6rpx auto 0;
  280. width: 108rpx;
  281. height: 106rpx;
  282. }
  283. .footSection .readingBtn text {
  284. margin-top: -10rpx;
  285. }
  286. /* 弹框 */
  287. .modalWrapper {
  288. width: 100%;
  289. height: 100%;
  290. position: fixed;
  291. top: 0;
  292. left: 0;
  293. background: rgba(0, 0, 0, .2);
  294. z-index: 2;
  295. }
  296. .modalWrapper .rewardContent {
  297. width: 670rpx;
  298. height: 926rpx;
  299. position: relative;
  300. margin: 50rpx auto 0;
  301. }
  302. .rewardContent .rewardWrapper {
  303. width: 100%;
  304. height: 100%;
  305. position: absolute;
  306. top: 0;
  307. left: 0;
  308. }
  309. .rewardAvatar {
  310. width: 172rpx;
  311. height: 172rpx;
  312. position: absolute;
  313. z-index: 999;
  314. border-radius: 50%;
  315. top: 104rpx;
  316. left: 260rpx;
  317. }
  318. .rewardNickName {
  319. width: 100%;
  320. margin: 0 auto;
  321. font-size: 36rpx;
  322. color: #fff;
  323. text-align: center;
  324. position: absolute;
  325. top: 328rpx;
  326. }
  327. .moneyArea {
  328. width: 84%;
  329. height: 100rpx;
  330. display: flex;
  331. flex-direction: row;
  332. justify-content: space-between;
  333. align-items: center;
  334. font-size: 36rpx;
  335. color: #fa8133;
  336. margin: 0 65rpx;
  337. position: absolute;
  338. top: 550rpx;
  339. }
  340. .money {
  341. width: 150rpx;
  342. height: 90rpx;
  343. border: 2rpx solid #ff9600;
  344. border-radius: 12rpx;
  345. text-align: center;
  346. line-height: 90rpx;
  347. }
  348. .moneyNormal {
  349. border: 2rpx solid #ff9600;
  350. background: ff9600;
  351. }
  352. .moneySelect {
  353. background: #fa8133;
  354. color: #fff;
  355. border: 0;
  356. }
  357. .rewardBtn {
  358. width: 464rpx;
  359. height: 80rpx;
  360. display: block;
  361. border-radius: 80rpx;
  362. background: linear-gradient(180deg, #FEC953, #FCA40F);
  363. background: -webkit-linear-gradient(180deg, #FEC953, #FCA40F);
  364. background: -o-linear-gradient(180deg, #FEC953, #FCA40F);
  365. background: -moz-linear-gradient(180deg, #FEC953, #FCA40F);
  366. box-shadow: 0 6rpx 18rpx 0 rgba(0, 0, 0, 0.5);
  367. background: #FCA40F;
  368. font-size: 40rpx;
  369. color: #fff;
  370. line-height: 80rpx;
  371. text-align: center;
  372. position: absolute;
  373. z-index: 9999;
  374. top: 718rpx;
  375. left: 115rpx;
  376. }
  377. .quitBtn {
  378. width: 68rpx;
  379. height: 68rpx;
  380. position: absolute;
  381. left: 345rpx;
  382. bottom: 110rpx;
  383. }
  384. .replySection {
  385. width: 100%;
  386. height: 300rpx;
  387. position: fixed;
  388. bottom: 0;
  389. background: #eee;
  390. }
  391. .replySection input {
  392. width: 100%;
  393. height: 300rpx;
  394. text-indent: 4rpx;
  395. }