works.wxss 8.7 KB

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