works.wxss 7.8 KB

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