works.wxss 9.5 KB

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