index.less 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803
  1. /* nova-werun/components/circle-card/index.wxss */
  2. .trends-one{
  3. width: 100%;
  4. margin-bottom: 20rpx;
  5. border-bottom: grey solid 1px;
  6. padding-left: 30rpx;
  7. padding-right: 20rpx;
  8. padding-bottom: 20rpx;
  9. .namebax{
  10. width: 100%;
  11. height: 100rpx;
  12. display: flex;
  13. align-items: center;
  14. image{
  15. width: 80rpx;
  16. height: 80rpx;
  17. border-radius: 50%;
  18. }
  19. .name{
  20. margin-left: 10rpx;
  21. font-size: 34rpx;
  22. font-weight: 600;
  23. }
  24. }
  25. .text{
  26. width: 92%;
  27. padding-left: 90rpx;
  28. font-size: 34rpx;
  29. }
  30. .picture{
  31. width: 92%;
  32. padding-left: 90rpx;
  33. display: flex;
  34. flex-wrap: wrap;
  35. margin-top: 30rpx;
  36. .image{
  37. width: 175rpx;
  38. height: 175rpx;
  39. margin-right: 10rpx;
  40. margin-bottom: 10rpx;
  41. }
  42. .image:nth-child(3n) {
  43. margin-right: 0; /* 每行的最后一张图片不需要右边距 */
  44. }
  45. }
  46. .picture5 {
  47. width: 92%;
  48. padding-left: 90rpx;
  49. display: flex;
  50. flex-wrap: wrap;
  51. margin-top: 30rpx;
  52. .image {
  53. width: 175rpx;
  54. height: 175rpx;
  55. }
  56. .image-wrapper {
  57. margin-right: 10rpx;
  58. position: relative;
  59. }
  60. .image-wrapper:nth-of-type(3n) {
  61. margin-right: 0; /* 每行的最后一张图片不需要右边距 */
  62. }
  63. .more-images {
  64. position: absolute;
  65. bottom: 10rpx;
  66. right: 0rpx;
  67. background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
  68. color: white;
  69. font-size: 26px;
  70. width: 175rpx;
  71. height: 175rpx;
  72. display: flex;
  73. align-items: center;
  74. justify-content: center;
  75. }
  76. }
  77. .picture2{
  78. width: 92%;
  79. padding-left: 90rpx;
  80. display: flex;
  81. flex-wrap: wrap;
  82. margin-top: 30rpx;
  83. .image{
  84. width: 240rpx;
  85. height: 240rpx;
  86. margin-right: 10rpx;
  87. margin-bottom: 10rpx;
  88. }
  89. }
  90. .picture4{
  91. width: 92%;
  92. padding-left: 90rpx;
  93. display: flex;
  94. flex-wrap: wrap;
  95. margin-top: 30rpx;
  96. .image{
  97. width: 230rpx;
  98. height: 230rpx;
  99. margin-right: 10rpx;
  100. margin-bottom: 10rpx;
  101. object-fit: cover;
  102. }
  103. .image:nth-child(2n) {
  104. margin-right: 0; /* 每行的最后一张图片不需要右边距 */
  105. }
  106. }
  107. .picture3{
  108. width: 92%;
  109. padding-left: 90rpx;
  110. display: flex;
  111. flex-wrap: wrap;
  112. margin-top: 30rpx;
  113. .image{
  114. margin-right: 10rpx;
  115. margin-bottom: 10rpx;
  116. }
  117. .image-portrait {
  118. width: 332rpx; /* 竖屏图片的宽度 */
  119. height: 425rpx;
  120. }
  121. .image-landscape {
  122. width: 442rpx; /* 横屏图片的宽度 */
  123. height: 300rpx;
  124. }
  125. }
  126. .timebox{
  127. width: 100%;
  128. height: 80rpx;
  129. padding-left: 90rpx;
  130. margin-bottom: 20rpx;
  131. display: flex;
  132. align-items: center;
  133. position: relative;
  134. .time-box{
  135. width: 85%;
  136. height: 100%;
  137. display: flex;
  138. align-items: center;
  139. .time{
  140. font-size: 30rpx;
  141. margin-right: 20rpx;
  142. }
  143. }
  144. .functionbox{
  145. width: 280rpx;
  146. height: 80rpx;
  147. background-color: black;
  148. display: flex;
  149. align-items: center;
  150. justify-content: center;
  151. position: absolute;
  152. right: 99rpx;
  153. border-radius: 10rpx;
  154. .function{
  155. width: 100%;
  156. display: flex;
  157. color: white;
  158. justify-content: center;
  159. .function1{
  160. width: 48%;
  161. display: flex;
  162. justify-content: center;
  163. color: white;
  164. .text2{
  165. display: flex;
  166. justify-content: center;
  167. align-items: center;
  168. font-size: 28rpx;
  169. margin-left: 12rpx;
  170. }
  171. }
  172. }
  173. }
  174. .point{
  175. display: flex;
  176. align-items: center;
  177. justify-content: center;
  178. width: 70rpx;
  179. height: 40rpx;
  180. border-radius: 10rpx;
  181. background-color: #efefef;
  182. color: #506692;
  183. font-size: 50rpx;
  184. margin-left: auto;
  185. }
  186. }
  187. .chinkinbox{
  188. padding-top: 10rpx;
  189. padding-bottom: 10rpx;
  190. margin-left: 90rpx;
  191. display: flex;
  192. background-color: #efefef;
  193. align-items: center;
  194. padding-left: 18rpx;
  195. flex-wrap: wrap;
  196. .chickname{
  197. font-size: 30rpx;
  198. margin-left: 8rpx;
  199. }
  200. }
  201. .sending{
  202. background-color: #efefef;
  203. display: flex;
  204. padding-top: 20rpx;
  205. padding-left: 20rpx;
  206. width: 100%;
  207. height: 80rpx;
  208. position: relative;
  209. .textarea{
  210. background-color: white;
  211. width: 600rpx;
  212. border-radius: 15rpx;
  213. padding-left: 12rpx;
  214. }
  215. .button{
  216. position: absolute; /* 设置为绝对定位 */
  217. bottom: 18rpx; /* 距离底部10rpx */
  218. right: 10rpx; /* 距离右侧10rpx */
  219. width: 100rpx;
  220. height: 50rpx;
  221. display: flex;
  222. align-items: center;
  223. justify-content: center;
  224. font-size: 28rpx;
  225. background-color: #29b129;
  226. margin-left: 10rpx;
  227. border-radius: 15rpx;
  228. color: white;
  229. }
  230. .button2{
  231. position: absolute; /* 设置为绝对定位 */
  232. bottom: 18rpx; /* 距离底部10rpx */
  233. right: 10rpx; /* 距离右侧10rpx */
  234. width: 100rpx;
  235. height: 50rpx;
  236. display: flex;
  237. align-items: center;
  238. justify-content: center;
  239. font-size: 28rpx;
  240. background-color: white;
  241. margin-left: 10rpx;
  242. border-radius: 15rpx;
  243. color: gray;
  244. border: gray solid 1px;
  245. }
  246. }
  247. .commentbox{
  248. padding-top: 10rpx;
  249. padding-bottom: 10rpx;
  250. margin-left: 90rpx;
  251. display: flex;
  252. flex-direction: column;
  253. background-color: #efefef;
  254. align-items: center;
  255. padding-left: 18rpx;
  256. flex-wrap: wrap;
  257. border-top: gray solid 0.1px;
  258. font-size: 30rpx;
  259. padding-right: 10rpx;
  260. .comment{
  261. width: 100%;
  262. padding-top: 10rpx;
  263. padding-bottom: 10rpx;
  264. flex-wrap: wrap;
  265. flex: 1; /* 允许内容占用剩余空间 */
  266. white-space: normal; /* 允许内容换行 */
  267. overflow-wrap: break-word; /* 处理长单词的换行 */
  268. position: relative;
  269. .delete{
  270. width: 100rpx;
  271. height: 50rpx;
  272. display: flex;
  273. justify-content: center;
  274. align-items: center;
  275. background-color: white;
  276. position: absolute;
  277. top: -40rpx;
  278. left: 50%;
  279. z-index: 99;
  280. }
  281. }
  282. .comment2{
  283. background-color: #bfbebe;
  284. width: 100%;
  285. padding-top: 10rpx;
  286. padding-bottom: 10rpx;
  287. flex-wrap: wrap;
  288. flex: 1; /* 允许内容占用剩余空间 */
  289. white-space: normal; /* 允许内容换行 */
  290. overflow-wrap: break-word; /* 处理长单词的换行 */
  291. position: relative;
  292. .delete{
  293. width: 100rpx;
  294. height: 50rpx;
  295. display: flex;
  296. justify-content: center;
  297. align-items: center;
  298. background-color: white;
  299. position: absolute;
  300. top: -40rpx;
  301. left: 50%;
  302. z-index: 99;
  303. }
  304. }
  305. }
  306. .commentbox2{
  307. padding-top: 10rpx;
  308. padding-bottom: 10rpx;
  309. margin-left: 90rpx;
  310. display: flex;
  311. flex-direction: column;
  312. background-color: #efefef;
  313. align-items: center;
  314. padding-left: 18rpx;
  315. flex-wrap: wrap;
  316. font-size: 30rpx;
  317. padding-right: 10rpx;
  318. .comment{
  319. width: 100%;
  320. padding-top: 10rpx;
  321. padding-bottom: 10rpx;
  322. flex-wrap: wrap;
  323. flex: 1; /* 允许内容占用剩余空间 */
  324. white-space: normal; /* 允许内容换行 */
  325. overflow-wrap: break-word; /* 处理长单词的换行 */
  326. position: relative;
  327. .delete{
  328. width: 100rpx;
  329. height: 50rpx;
  330. display: flex;
  331. justify-content: center;
  332. align-items: center;
  333. background-color: white;
  334. position: absolute;
  335. top: -40rpx;
  336. left: 50%;
  337. z-index: 99;
  338. }
  339. }
  340. .comment2{
  341. background-color: #bfbebe;
  342. width: 100%;
  343. padding-top: 10rpx;
  344. padding-bottom: 10rpx;
  345. flex-wrap: wrap;
  346. flex: 1; /* 允许内容占用剩余空间 */
  347. white-space: normal; /* 允许内容换行 */
  348. overflow-wrap: break-word; /* 处理长单词的换行 */
  349. position: relative;
  350. .delete{
  351. width: 100rpx;
  352. height: 50rpx;
  353. display: flex;
  354. justify-content: center;
  355. align-items: center;
  356. background-color: white;
  357. position: absolute;
  358. top: -40rpx;
  359. left: 50%;
  360. z-index: 99;
  361. }
  362. }
  363. }
  364. }
  365. .trends-two{
  366. width: 685rpx;
  367. margin-bottom: 20rpx;
  368. padding-left: 15rpx;
  369. padding-right: 15rpx;
  370. padding-bottom: 20rpx;
  371. padding-top: 20rpx;
  372. color: #333333;
  373. border-radius: 15rpx;
  374. background-color: white;
  375. font-family: MicrosoftYaHei;
  376. .namebax{
  377. width: 100%;
  378. height: 105rpx;
  379. display: flex;
  380. align-items: center;
  381. image{
  382. width: 105rpx;
  383. height: 105rpx;
  384. border-radius: 50%;
  385. }
  386. .name{
  387. margin-left: 10rpx;
  388. font-family: MicrosoftYaHei;
  389. font-size: 28rpx;
  390. color: #333333;
  391. }
  392. .guanzhu{
  393. width: 85rpx;
  394. height: 35rpx;
  395. margin-left: auto;
  396. display: flex;
  397. align-items:center ;
  398. justify-content: center;
  399. font-family: MicrosoftYaHei;
  400. font-size: 20rpx;
  401. color: #3C3C3C;
  402. border: solid 2rpx #3C3C3C;
  403. border-radius: 40rpx;
  404. }
  405. }
  406. .text{
  407. width: 100%;
  408. font-size: 26rpx;
  409. margin-top: 30rpx;
  410. .contentbox{
  411. width: 100%;
  412. overflow: hidden;
  413. display: -webkit-box;
  414. -webkit-box-orient: vertical;
  415. -webkit-line-clamp: 4;
  416. text-overflow: ellipsis;
  417. }
  418. .quanwen{
  419. font-size: 26rpx;
  420. color: #CDCDD2;
  421. margin-top: 20rpx;
  422. }
  423. }
  424. .full-content{
  425. width: 100%;
  426. font-size: 26rpx;
  427. margin-top: 30rpx;
  428. .quanwen{
  429. font-size: 26rpx;
  430. color: #CDCDD2;
  431. margin-top: 20rpx;
  432. }
  433. }
  434. .picture{
  435. width: 100%;
  436. display: flex;
  437. flex-wrap: wrap;
  438. margin-top: 30rpx;
  439. justify-content: space-between;
  440. .image{
  441. width: 210rpx;
  442. height: 210rpx;
  443. // margin-right: 10rpx;
  444. // margin-bottom: 10rpx;
  445. border-radius: 15rpx;
  446. }
  447. }
  448. .picture5 {
  449. width: 100%;
  450. display: flex;
  451. flex-wrap: wrap;
  452. margin-top: 30rpx;
  453. justify-content: center;
  454. .image {
  455. width: 200rpx;
  456. height: 200rpx;
  457. border-radius: 15rpx;
  458. }
  459. .image-wrapper {
  460. margin-right: 10rpx;
  461. position: relative;
  462. }
  463. .image-wrapper:nth-of-type(3n) {
  464. margin-right: 0; /* 每行的最后一张图片不需要右边距 */
  465. }
  466. .more-images {
  467. position: absolute;
  468. bottom: 10rpx;
  469. right: 0rpx;
  470. background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
  471. color: white;
  472. font-size: 26px;
  473. width: 200rpx;
  474. height: 200rpx;
  475. display: flex;
  476. align-items: center;
  477. justify-content: center;
  478. }
  479. }
  480. .picture2{
  481. width: 100%;
  482. display: flex;
  483. flex-wrap: wrap;
  484. justify-content: center;
  485. margin-top: 30rpx;
  486. .image{
  487. width: 240rpx;
  488. height: 240rpx;
  489. margin-right: 20rpx;
  490. margin-bottom: 10rpx;
  491. border-radius: 15rpx;
  492. }
  493. }
  494. .picture4{
  495. width: 100%;
  496. display: flex;
  497. flex-wrap: wrap;
  498. margin-top: 30rpx;
  499. justify-content: center;
  500. .image{
  501. width: 230rpx;
  502. height: 230rpx;
  503. margin-right: 20rpx;
  504. margin-bottom: 20rpx;
  505. object-fit: cover;
  506. border-radius: 15rpx;
  507. }
  508. .image:nth-child(2n) {
  509. margin-right: 0; /* 每行的最后一张图片不需要右边距 */
  510. }
  511. }
  512. .picture3{
  513. width: 100%;
  514. display: flex;
  515. justify-content: center;
  516. flex-wrap: wrap;
  517. margin-top: 30rpx;
  518. .image{
  519. margin-right: 10rpx;
  520. margin-bottom: 10rpx;
  521. }
  522. .image-portrait {
  523. width: 332rpx; /* 竖屏图片的宽度 */
  524. height: 425rpx;
  525. border-radius: 15rpx;
  526. }
  527. .image-landscape {
  528. width: 442rpx; /* 横屏图片的宽度 */
  529. height: 300rpx;
  530. border-radius: 15rpx;
  531. }
  532. }
  533. // 地址
  534. .addbox{
  535. width: 100%;
  536. height: 30rpx;
  537. display: flex;
  538. align-items: center;
  539. margin-top: 25rpx;
  540. .add-tex{
  541. font-size: 20rpx;
  542. display: flex;
  543. justify-content: center;
  544. align-items: center;
  545. }
  546. }
  547. .timebox{
  548. width: 100%;
  549. // padding-left: 90rpx;
  550. display: flex;
  551. align-items: center;
  552. position: relative;
  553. margin-top: 10rpx;
  554. .dianzan{
  555. width: 80rpx;
  556. height: 50rpx;
  557. font-size: 24rpx;
  558. display: flex;
  559. align-items: center;
  560. }
  561. .time-box{
  562. width: 100%;
  563. height: 100%;
  564. display: flex;
  565. align-items: center;
  566. .time{
  567. font-size: 30rpx;
  568. margin-right: 20rpx;
  569. }
  570. .pinlunbox{
  571. height: 100%;
  572. display: flex;
  573. align-items: center;
  574. margin-left: auto;
  575. font-size: 24rpx;
  576. }
  577. }
  578. .functionbox{
  579. width: 280rpx;
  580. height: 80rpx;
  581. background-color: black;
  582. display: flex;
  583. align-items: center;
  584. justify-content: center;
  585. position: absolute;
  586. right: 99rpx;
  587. border-radius: 10rpx;
  588. .function{
  589. width: 100%;
  590. display: flex;
  591. color: white;
  592. justify-content: center;
  593. .function1{
  594. width: 48%;
  595. display: flex;
  596. justify-content: center;
  597. color: white;
  598. .text2{
  599. display: flex;
  600. justify-content: center;
  601. align-items: center;
  602. font-size: 28rpx;
  603. margin-left: 12rpx;
  604. }
  605. }
  606. }
  607. }
  608. .point{
  609. display: flex;
  610. align-items: center;
  611. justify-content: center;
  612. width: 70rpx;
  613. height: 40rpx;
  614. border-radius: 10rpx;
  615. background-color: #efefef;
  616. color: #506692;
  617. font-size: 50rpx;
  618. margin-left: auto;
  619. }
  620. }
  621. .chinkinbox{
  622. padding-top: 10rpx;
  623. padding-bottom: 10rpx;
  624. margin-left: 90rpx;
  625. display: flex;
  626. background-color: #efefef;
  627. align-items: center;
  628. padding-left: 18rpx;
  629. flex-wrap: wrap;
  630. .chickname{
  631. font-size: 30rpx;
  632. margin-left: 8rpx;
  633. }
  634. }
  635. .sending{
  636. background-color: #efefef;
  637. display: flex;
  638. padding-top: 20rpx;
  639. padding-left: 20rpx;
  640. width: 100%;
  641. height: 80rpx;
  642. position: relative;
  643. .textarea{
  644. background-color: white;
  645. width: 600rpx;
  646. border-radius: 15rpx;
  647. padding-left: 12rpx;
  648. }
  649. .button{
  650. position: absolute; /* 设置为绝对定位 */
  651. bottom: 18rpx; /* 距离底部10rpx */
  652. right: 10rpx; /* 距离右侧10rpx */
  653. width: 100rpx;
  654. height: 50rpx;
  655. display: flex;
  656. align-items: center;
  657. justify-content: center;
  658. font-size: 28rpx;
  659. background-color: #29b129;
  660. margin-left: 10rpx;
  661. border-radius: 15rpx;
  662. color: white;
  663. }
  664. .button2{
  665. position: absolute; /* 设置为绝对定位 */
  666. bottom: 18rpx; /* 距离底部10rpx */
  667. right: 10rpx; /* 距离右侧10rpx */
  668. width: 100rpx;
  669. height: 50rpx;
  670. display: flex;
  671. align-items: center;
  672. justify-content: center;
  673. font-size: 28rpx;
  674. background-color: white;
  675. margin-left: 10rpx;
  676. border-radius: 15rpx;
  677. color: gray;
  678. border: gray solid 1px;
  679. }
  680. }
  681. .commentbox{
  682. display: flex;
  683. flex-direction: column;
  684. align-items: center;
  685. flex-wrap: wrap;
  686. font-size: 26rpx;
  687. padding-right: 10rpx;
  688. .comment{
  689. width: 100%;
  690. flex-wrap: wrap;
  691. flex: 1; /* 允许内容占用剩余空间 */
  692. white-space: normal; /* 允许内容换行 */
  693. overflow-wrap: break-word; /* 处理长单词的换行 */
  694. position: relative;
  695. .delete{
  696. width: 100rpx;
  697. height: 50rpx;
  698. display: flex;
  699. justify-content: center;
  700. align-items: center;
  701. background-color: white;
  702. position: absolute;
  703. top: -40rpx;
  704. left: 50%;
  705. z-index: 99;
  706. }
  707. }
  708. .comment2{
  709. background-color: #bfbebe;
  710. width: 100%;
  711. padding-top: 10rpx;
  712. padding-bottom: 10rpx;
  713. flex-wrap: wrap;
  714. flex: 1; /* 允许内容占用剩余空间 */
  715. white-space: normal; /* 允许内容换行 */
  716. overflow-wrap: break-word; /* 处理长单词的换行 */
  717. position: relative;
  718. .delete{
  719. width: 100rpx;
  720. height: 50rpx;
  721. display: flex;
  722. justify-content: center;
  723. align-items: center;
  724. background-color: white;
  725. position: absolute;
  726. top: -40rpx;
  727. left: 50%;
  728. z-index: 99;
  729. }
  730. }
  731. }
  732. .commentbox2{
  733. display: flex;
  734. flex-direction: column;
  735. align-items: center;
  736. flex-wrap: wrap;
  737. font-size: 26rpx;
  738. padding-right: 10rpx;
  739. .comment{
  740. width: 100%;
  741. flex-wrap: wrap;
  742. flex: 1; /* 允许内容占用剩余空间 */
  743. white-space: normal; /* 允许内容换行 */
  744. overflow-wrap: break-word; /* 处理长单词的换行 */
  745. position: relative;
  746. .delete{
  747. width: 100rpx;
  748. height: 50rpx;
  749. display: flex;
  750. justify-content: center;
  751. align-items: center;
  752. background-color: white;
  753. position: absolute;
  754. top: -40rpx;
  755. left: 50%;
  756. z-index: 99;
  757. }
  758. }
  759. .comment2{
  760. background-color: #bfbebe;
  761. width: 100%;
  762. padding-top: 10rpx;
  763. padding-bottom: 10rpx;
  764. flex-wrap: wrap;
  765. flex: 1; /* 允许内容占用剩余空间 */
  766. white-space: normal; /* 允许内容换行 */
  767. overflow-wrap: break-word; /* 处理长单词的换行 */
  768. position: relative;
  769. .delete{
  770. width: 100rpx;
  771. height: 50rpx;
  772. display: flex;
  773. justify-content: center;
  774. align-items: center;
  775. background-color: white;
  776. position: absolute;
  777. top: -40rpx;
  778. left: 50%;
  779. z-index: 99;
  780. }
  781. }
  782. }
  783. }