index.less 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789
  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: 50rpx;
  410. .contentbox{
  411. width: 100%;
  412. max-height: 200rpx;
  413. }
  414. .quanwen{
  415. font-size: 26rpx;
  416. color: #CDCDD2;
  417. margin-top: 20rpx;
  418. }
  419. }
  420. .picture{
  421. width: 100%;
  422. display: flex;
  423. flex-wrap: wrap;
  424. margin-top: 30rpx;
  425. justify-content: space-between;
  426. .image{
  427. width: 210rpx;
  428. height: 210rpx;
  429. // margin-right: 10rpx;
  430. // margin-bottom: 10rpx;
  431. border-radius: 15rpx;
  432. }
  433. }
  434. .picture5 {
  435. width: 100%;
  436. display: flex;
  437. flex-wrap: wrap;
  438. margin-top: 30rpx;
  439. justify-content: center;
  440. .image {
  441. width: 200rpx;
  442. height: 200rpx;
  443. border-radius: 15rpx;
  444. }
  445. .image-wrapper {
  446. margin-right: 10rpx;
  447. position: relative;
  448. }
  449. .image-wrapper:nth-of-type(3n) {
  450. margin-right: 0; /* 每行的最后一张图片不需要右边距 */
  451. }
  452. .more-images {
  453. position: absolute;
  454. bottom: 10rpx;
  455. right: 0rpx;
  456. background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
  457. color: white;
  458. font-size: 26px;
  459. width: 200rpx;
  460. height: 200rpx;
  461. display: flex;
  462. align-items: center;
  463. justify-content: center;
  464. }
  465. }
  466. .picture2{
  467. width: 100%;
  468. display: flex;
  469. flex-wrap: wrap;
  470. justify-content: center;
  471. margin-top: 30rpx;
  472. .image{
  473. width: 240rpx;
  474. height: 240rpx;
  475. margin-right: 20rpx;
  476. margin-bottom: 10rpx;
  477. border-radius: 15rpx;
  478. }
  479. }
  480. .picture4{
  481. width: 100%;
  482. display: flex;
  483. flex-wrap: wrap;
  484. margin-top: 30rpx;
  485. justify-content: center;
  486. .image{
  487. width: 230rpx;
  488. height: 230rpx;
  489. margin-right: 20rpx;
  490. margin-bottom: 20rpx;
  491. object-fit: cover;
  492. border-radius: 15rpx;
  493. }
  494. .image:nth-child(2n) {
  495. margin-right: 0; /* 每行的最后一张图片不需要右边距 */
  496. }
  497. }
  498. .picture3{
  499. width: 100%;
  500. display: flex;
  501. justify-content: center;
  502. flex-wrap: wrap;
  503. margin-top: 30rpx;
  504. .image{
  505. margin-right: 10rpx;
  506. margin-bottom: 10rpx;
  507. }
  508. .image-portrait {
  509. width: 332rpx; /* 竖屏图片的宽度 */
  510. height: 425rpx;
  511. border-radius: 15rpx;
  512. }
  513. .image-landscape {
  514. width: 442rpx; /* 横屏图片的宽度 */
  515. height: 300rpx;
  516. border-radius: 15rpx;
  517. }
  518. }
  519. // 地址
  520. .addbox{
  521. width: 100%;
  522. height: 30rpx;
  523. display: flex;
  524. align-items: center;
  525. margin-top: 25rpx;
  526. .add-tex{
  527. font-size: 20rpx;
  528. display: flex;
  529. justify-content: center;
  530. align-items: center;
  531. }
  532. }
  533. .timebox{
  534. width: 100%;
  535. // padding-left: 90rpx;
  536. display: flex;
  537. align-items: center;
  538. position: relative;
  539. margin-top: 10rpx;
  540. .dianzan{
  541. width: 80rpx;
  542. height: 50rpx;
  543. font-size: 24rpx;
  544. display: flex;
  545. align-items: center;
  546. }
  547. .time-box{
  548. width: 100%;
  549. height: 100%;
  550. display: flex;
  551. align-items: center;
  552. .time{
  553. font-size: 30rpx;
  554. margin-right: 20rpx;
  555. }
  556. .pinlunbox{
  557. height: 100%;
  558. display: flex;
  559. align-items: center;
  560. margin-left: auto;
  561. font-size: 24rpx;
  562. }
  563. }
  564. .functionbox{
  565. width: 280rpx;
  566. height: 80rpx;
  567. background-color: black;
  568. display: flex;
  569. align-items: center;
  570. justify-content: center;
  571. position: absolute;
  572. right: 99rpx;
  573. border-radius: 10rpx;
  574. .function{
  575. width: 100%;
  576. display: flex;
  577. color: white;
  578. justify-content: center;
  579. .function1{
  580. width: 48%;
  581. display: flex;
  582. justify-content: center;
  583. color: white;
  584. .text2{
  585. display: flex;
  586. justify-content: center;
  587. align-items: center;
  588. font-size: 28rpx;
  589. margin-left: 12rpx;
  590. }
  591. }
  592. }
  593. }
  594. .point{
  595. display: flex;
  596. align-items: center;
  597. justify-content: center;
  598. width: 70rpx;
  599. height: 40rpx;
  600. border-radius: 10rpx;
  601. background-color: #efefef;
  602. color: #506692;
  603. font-size: 50rpx;
  604. margin-left: auto;
  605. }
  606. }
  607. .chinkinbox{
  608. padding-top: 10rpx;
  609. padding-bottom: 10rpx;
  610. margin-left: 90rpx;
  611. display: flex;
  612. background-color: #efefef;
  613. align-items: center;
  614. padding-left: 18rpx;
  615. flex-wrap: wrap;
  616. .chickname{
  617. font-size: 30rpx;
  618. margin-left: 8rpx;
  619. }
  620. }
  621. .sending{
  622. background-color: #efefef;
  623. display: flex;
  624. padding-top: 20rpx;
  625. padding-left: 20rpx;
  626. width: 100%;
  627. height: 80rpx;
  628. position: relative;
  629. .textarea{
  630. background-color: white;
  631. width: 600rpx;
  632. border-radius: 15rpx;
  633. padding-left: 12rpx;
  634. }
  635. .button{
  636. position: absolute; /* 设置为绝对定位 */
  637. bottom: 18rpx; /* 距离底部10rpx */
  638. right: 10rpx; /* 距离右侧10rpx */
  639. width: 100rpx;
  640. height: 50rpx;
  641. display: flex;
  642. align-items: center;
  643. justify-content: center;
  644. font-size: 28rpx;
  645. background-color: #29b129;
  646. margin-left: 10rpx;
  647. border-radius: 15rpx;
  648. color: white;
  649. }
  650. .button2{
  651. position: absolute; /* 设置为绝对定位 */
  652. bottom: 18rpx; /* 距离底部10rpx */
  653. right: 10rpx; /* 距离右侧10rpx */
  654. width: 100rpx;
  655. height: 50rpx;
  656. display: flex;
  657. align-items: center;
  658. justify-content: center;
  659. font-size: 28rpx;
  660. background-color: white;
  661. margin-left: 10rpx;
  662. border-radius: 15rpx;
  663. color: gray;
  664. border: gray solid 1px;
  665. }
  666. }
  667. .commentbox{
  668. display: flex;
  669. flex-direction: column;
  670. align-items: center;
  671. flex-wrap: wrap;
  672. font-size: 26rpx;
  673. padding-right: 10rpx;
  674. .comment{
  675. width: 100%;
  676. flex-wrap: wrap;
  677. flex: 1; /* 允许内容占用剩余空间 */
  678. white-space: normal; /* 允许内容换行 */
  679. overflow-wrap: break-word; /* 处理长单词的换行 */
  680. position: relative;
  681. .delete{
  682. width: 100rpx;
  683. height: 50rpx;
  684. display: flex;
  685. justify-content: center;
  686. align-items: center;
  687. background-color: white;
  688. position: absolute;
  689. top: -40rpx;
  690. left: 50%;
  691. z-index: 99;
  692. }
  693. }
  694. .comment2{
  695. background-color: #bfbebe;
  696. width: 100%;
  697. padding-top: 10rpx;
  698. padding-bottom: 10rpx;
  699. flex-wrap: wrap;
  700. flex: 1; /* 允许内容占用剩余空间 */
  701. white-space: normal; /* 允许内容换行 */
  702. overflow-wrap: break-word; /* 处理长单词的换行 */
  703. position: relative;
  704. .delete{
  705. width: 100rpx;
  706. height: 50rpx;
  707. display: flex;
  708. justify-content: center;
  709. align-items: center;
  710. background-color: white;
  711. position: absolute;
  712. top: -40rpx;
  713. left: 50%;
  714. z-index: 99;
  715. }
  716. }
  717. }
  718. .commentbox2{
  719. display: flex;
  720. flex-direction: column;
  721. align-items: center;
  722. flex-wrap: wrap;
  723. font-size: 26rpx;
  724. padding-right: 10rpx;
  725. .comment{
  726. width: 100%;
  727. flex-wrap: wrap;
  728. flex: 1; /* 允许内容占用剩余空间 */
  729. white-space: normal; /* 允许内容换行 */
  730. overflow-wrap: break-word; /* 处理长单词的换行 */
  731. position: relative;
  732. .delete{
  733. width: 100rpx;
  734. height: 50rpx;
  735. display: flex;
  736. justify-content: center;
  737. align-items: center;
  738. background-color: white;
  739. position: absolute;
  740. top: -40rpx;
  741. left: 50%;
  742. z-index: 99;
  743. }
  744. }
  745. .comment2{
  746. background-color: #bfbebe;
  747. width: 100%;
  748. padding-top: 10rpx;
  749. padding-bottom: 10rpx;
  750. flex-wrap: wrap;
  751. flex: 1; /* 允许内容占用剩余空间 */
  752. white-space: normal; /* 允许内容换行 */
  753. overflow-wrap: break-word; /* 处理长单词的换行 */
  754. position: relative;
  755. .delete{
  756. width: 100rpx;
  757. height: 50rpx;
  758. display: flex;
  759. justify-content: center;
  760. align-items: center;
  761. background-color: white;
  762. position: absolute;
  763. top: -40rpx;
  764. left: 50%;
  765. z-index: 99;
  766. }
  767. }
  768. }
  769. }