works.wxss 11 KB

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