works.wxss 10 KB

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