partDetail.wxss 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158
  1. @import "../../../../wxParse/wxParse.wxss";
  2. @import "../../../../pages/volunteer/detail.wxss";
  3. page {
  4. padding-bottom: 150rpx;
  5. box-sizing: border-box;
  6. }
  7. .partcontent {
  8. position: relative;
  9. background: #f5f5f5;
  10. display: flex;
  11. flex-direction: column;
  12. padding-bottom: 100rpx;
  13. }
  14. .partime-container {
  15. /* padding:250rpx 0 0 0; */
  16. box-sizing: border-box;
  17. display: flex;
  18. flex-direction: column;
  19. }
  20. .partbg {
  21. /* position: absolute;
  22. left:0;
  23. top:0; */
  24. width: 750rpx;
  25. height: 347rpx;
  26. }
  27. .btn {
  28. width: 300rpx;
  29. height: 85rpx;
  30. border-radius: 43rpx;
  31. color: #ffffff;
  32. text-align: center;
  33. padding-top: 2rpx;
  34. }
  35. .text-bao {
  36. font-size: 30rpx;
  37. font-family: FZZhunYuan-M02S;
  38. font-weight: 400;
  39. color: #1a1a1a;
  40. margin-top: 11rpx;
  41. }
  42. .text-b {
  43. opacity: 0.78;
  44. font-size: 24rpx;
  45. font-family: FZZhunYuan-M02S;
  46. font-weight: 400;
  47. color: #4c441e;
  48. /* margin-top: 4rpx; */
  49. }
  50. .btn-box {
  51. display: flex;
  52. justify-content: space-between;
  53. flex: 1;
  54. }
  55. .see-code {
  56. width: 197rpx;
  57. height: 85rpx;
  58. background: #88bb26;
  59. border: 1px solid #88bb26;
  60. border-radius: 44rpx;
  61. font-size: 30rpx;
  62. font-family: FZZhunYuan-M02S;
  63. font-weight: 400;
  64. text-align: center;
  65. color: #ffffff;
  66. line-height: 85rpx;
  67. }
  68. .partimewrap {
  69. display: flex;
  70. flex-direction: column;
  71. }
  72. .partime-detail {
  73. width: 100%;
  74. display: flex;
  75. justify-content: space-between;
  76. padding-bottom: 22rpx;
  77. box-sizing: border-box;
  78. /* border-bottom: 1px solid #E6E6E6; */
  79. }
  80. .partime-address {
  81. display: flex;
  82. flex-direction: column;
  83. padding: 33rpx 0 0;
  84. box-sizing: border-box;
  85. }
  86. .partime-label {
  87. font-size: 24rpx;
  88. font-family: PingFang SC, PingFang SC-Regular;
  89. font-weight: 400;
  90. text-align: left;
  91. color: #666666;
  92. line-height: 33rpx;
  93. letter-spacing: 0rpx;
  94. margin-top: 9rpx;
  95. }
  96. .partime-label-a {
  97. display: flex;
  98. flex-direction: row;
  99. align-items: center;
  100. }
  101. .partime-percentwo {
  102. width: 100%;
  103. display: flex;
  104. flex-direction: row;
  105. justify-content: space-between;
  106. }
  107. .mask {
  108. width: 100%;
  109. height: 100%;
  110. position: fixed;
  111. background-color: rgba(0, 0, 0, 0.64);
  112. z-index: 9999;
  113. top: 0;
  114. left: 0;
  115. overflow: hidden;
  116. transition: all 0.5s;
  117. }
  118. .partime-detail-member {
  119. margin-left: 32rpx;
  120. margin-top: 20rpx;
  121. width: 700rpx;
  122. display: flex;
  123. justify-content: space-between;
  124. background: #fff;
  125. }
  126. .detaileft {
  127. width: 100%;
  128. /* margin: 10rpx auto; */
  129. position: relative;
  130. z-index: 2;
  131. min-height: 250rpx;
  132. }
  133. .isvip-shadowbg {
  134. filter: blur(8rpx) opacity(80%);
  135. z-index: -1;
  136. }
  137. .isvip-shadowbg-fix {
  138. height: 400rpx;
  139. }
  140. .isvip-shadow {
  141. margin-top: 20rpx;
  142. position: absolute;
  143. left: 0;
  144. top: 0;
  145. width: 100%;
  146. height: 100%;
  147. font-size: 28rpx;
  148. display: flex;
  149. flex-direction: column;
  150. z-index: 30;
  151. /* text-decoration:underline; */
  152. }
  153. .isvip-shadow .tet {
  154. color: #9ddb52;
  155. font-weight: bold;
  156. z-index: 200;
  157. }
  158. .isvip-shadowbt {
  159. position: absolute;
  160. left: 0;
  161. top: 0;
  162. width: 100%;
  163. height: 100%;
  164. z-index: -1;
  165. }
  166. .joinbtn {
  167. margin-top: 40rpx;
  168. width: 169rpx;
  169. height: 54rpx;
  170. opacity: 1;
  171. background: #9ddb52;
  172. border-radius: 27rpx;
  173. opacity: 1;
  174. font-size: 24rpx;
  175. font-family: PingFang SC, PingFang SC-Regular;
  176. font-weight: 400;
  177. text-align: left;
  178. color: #ffffff;
  179. line-height: 54rpx;
  180. text-align: center;
  181. }
  182. .zindex {
  183. z-index: 9999;
  184. }
  185. .partime-percent {
  186. width: 100%;
  187. display: flex;
  188. flex-direction: row;
  189. /* justify-content: space-between; */
  190. }
  191. .partime-percent text {
  192. color: #1a1a1a;
  193. font-size: 32rpx;
  194. font-family: "FZZhunYuan-M02S";
  195. font-weight: 400;
  196. }
  197. .partime-percent text:nth-child(2n) {
  198. /* color:#666666;
  199. font-size: 32rpx;
  200. font-family: FZZhunYuan-M02S;
  201. font-weight: 400; */
  202. color: #666666;
  203. margin-left: 20rpx;
  204. }
  205. .partime-right {
  206. width: 50%;
  207. }
  208. .icon-address {
  209. font-size: 36rpx;
  210. position: absolute;
  211. top: 0rpx;
  212. left: 0;
  213. color: #999999 !important;
  214. }
  215. .address-w {
  216. text-indent: 40rpx;
  217. }
  218. .mainbg {
  219. /* width: 358rpx; */
  220. background: #2b58a5;
  221. }
  222. .mainbg .text-bao {
  223. color: #ffffff !important;
  224. }
  225. .mainbg .text-b {
  226. opacity: 0.78;
  227. color: #ffffff;
  228. }
  229. .greybg {
  230. width: 358rpx;
  231. }
  232. .big-box {
  233. position: relative;
  234. }
  235. .big-box .dim {
  236. position: absolute;
  237. top: 100rpx;
  238. left: 50%;
  239. text-align: center;
  240. transform: translateX(-50%);
  241. z-index: 10;
  242. }
  243. .big-box .showDim {
  244. display: none;
  245. }
  246. .big-box .dim image {
  247. width: 148rpx;
  248. height: 148rpx;
  249. }
  250. .big-box .dim .tip {
  251. text-align: center;
  252. font-size: 30rpx;
  253. font-family: FZZhunYuan-M02S, FZZhunYuan-M02S-Regular;
  254. font-weight: 400;
  255. text-align: left;
  256. color: #f0ce2c;
  257. }
  258. .vipBg {
  259. opacity: 0.65;
  260. }
  261. .vipBg::before {
  262. display: block;
  263. content: "";
  264. position: absolute;
  265. width: 100%;
  266. height: 100%;
  267. /* opacity: 0.95; */
  268. background: #182339;
  269. /* background-color: #fff; */
  270. z-index: 9;
  271. }
  272. .partime-bg {
  273. width: 690rpx;
  274. background: #ffffff;
  275. border-radius: 20rpx;
  276. overflow: hidden;
  277. margin-bottom: 25rpx;
  278. padding: 43rpx 30rpx 36rpx 30rpx;
  279. box-sizing: border-box;
  280. display: flex;
  281. flex-direction: column;
  282. margin-left: 30rpx;
  283. }
  284. .partime-detail .partime-detail-title {
  285. font-size: 34rpx;
  286. font-weight: 700;
  287. font-family: PingFang-SC-Bold;
  288. color: #292929;
  289. letter-spacing: 2rpx;
  290. position: relative;
  291. padding-left: 20rpx;
  292. box-sizing: border-box;
  293. }
  294. .partime-detail-member .partime-detail-title {
  295. font-size: 34rpx;
  296. font-weight: 700;
  297. font-family: PingFang-SC-Bold;
  298. color: #292929;
  299. letter-spacing: 2rpx;
  300. position: relative;
  301. padding-left: 20rpx;
  302. box-sizing: border-box;
  303. }
  304. .partime-detail-top {
  305. padding-top: 13rpx;
  306. width: 85%;
  307. }
  308. .partime-detail-container {
  309. position: relative;
  310. /* width: 84%; */
  311. /* padding: 15rpx 0; */
  312. }
  313. .partime-txt {
  314. /* padding-left:30rpx; */
  315. display: flex;
  316. flex-direction: row;
  317. align-items: center;
  318. margin-top: 13rpx;
  319. }
  320. .part-item {
  321. padding: 3rpx 9rpx;
  322. box-sizing: border-box;
  323. opacity: 1;
  324. font-size: 20rpx;
  325. font-family: PingFang-SC-Regular;
  326. color: #767676;
  327. display: flex;
  328. border: 1px solid #767676;
  329. border-radius: 3rpx;
  330. margin-right: 15rpx;
  331. }
  332. .partime-border-left {
  333. height: 20rpx;
  334. display: inline-block;
  335. border: 1px solid #ccc;
  336. margin-left: 10rpx;
  337. vertical-align: middle;
  338. }
  339. .partime-border {
  340. padding-left: 10rpx;
  341. }
  342. /* .partime-listcolor{
  343. margin-bottom: 120rpx;
  344. } */
  345. .partime-price {
  346. color: #ec2e26;
  347. font-weight: 700;
  348. font-family: PingFang-SC-Bold;
  349. font-size: 45rpx;
  350. }
  351. .fixed {
  352. width: 100%;
  353. height: 100rpx;
  354. background: #fff;
  355. display: flex;
  356. /* position: fixed; */
  357. bottom: 0;
  358. left: 0;
  359. margin-top: 45rpx;
  360. }
  361. .partime-hour {
  362. color: #ec2e26;
  363. font-size: 24rpx;
  364. font-weight: 700;
  365. white-space: nowrap;
  366. font-family: PingFang-SC-Regular;
  367. }
  368. .partime-data {
  369. font-size: 20rpx;
  370. color: #626262;
  371. }
  372. .partime-all {
  373. margin-top: 20rpx;
  374. /* height: 200rpx; */
  375. }
  376. .partime-title {
  377. padding-left: 30rpx;
  378. padding-top: 18rpx;
  379. font-size: 30rpx;
  380. font-family: PingFang-SC-Regular;
  381. color: #7b7b7b;
  382. display: block;
  383. line-height: 46rpx;
  384. }
  385. .partime-box {
  386. display: flex;
  387. flex-direction: column;
  388. margin-left: auto;
  389. justify-content: center;
  390. align-items: center;
  391. }
  392. .partime-flud-container {
  393. /* padding-left: 30rpx;
  394. padding-top: 20rpx; */
  395. }
  396. .part-right {
  397. margin-right: 19rpx;
  398. }
  399. .partime-train {
  400. margin-right: -92rpx;
  401. }
  402. .imgurl {
  403. width: 30rpx;
  404. height: 40rpx;
  405. vertical-align: middle;
  406. padding-right: 13rpx;
  407. }
  408. .partime-url {
  409. padding-left: 30rpx;
  410. padding-top: 18rpx;
  411. font-size: 25rpx;
  412. font-family: PingFang-SC-Regular;
  413. color: #7b7b7b;
  414. padding-bottom: 20rpx;
  415. }
  416. /* .partime-num{
  417. padding-left: 10rpx;
  418. }
  419. .partime-left {
  420. padding-left: 80rpx;
  421. }
  422. .partime-leftone {
  423. padding-left: 101rpx;
  424. }
  425. .partime-leftwo {
  426. padding-left: 71rpx;
  427. } */
  428. .partime-main {
  429. /* line-height: 63rpx; */
  430. display: flex;
  431. margin-top: 26rpx;
  432. font-family: "FZZhunYuan-M02S";
  433. font-weight: 400;
  434. }
  435. .partime-left {
  436. margin-left: 20rpx;
  437. }
  438. .partime-main text {
  439. font-size: 28rpx;
  440. font-family: "FZZhunYuan-M02S";
  441. font-weight: 400;
  442. color: #1a1a1a;
  443. }
  444. .partime-con {
  445. line-height: 63rpx;
  446. display: flex;
  447. }
  448. .partime-con text {
  449. font-size: 28rpx;
  450. }
  451. .partime-list {
  452. display: flex;
  453. /* margin-top: 20rpx;
  454. margin-left: 16rpx; */
  455. }
  456. .imglist {
  457. flex: 1;
  458. }
  459. .list-label {
  460. color: #666666;
  461. font-family: "FZZhunYuan-M02S";
  462. font-weight: 400;
  463. }
  464. .imgnode {
  465. flex: 1;
  466. margin-top: 34rpx;
  467. }
  468. .partime-text {
  469. display: flex;
  470. }
  471. .partime-text-flud {
  472. margin-left: 16rpx;
  473. /* flex: 1; */
  474. font-size: 30rpx;
  475. font-weight: 700;
  476. }
  477. .partime-text-config {
  478. margin-left: 16rpx;
  479. font-size: 30rpx;
  480. font-weight: 700;
  481. padding-left: 67rpx;
  482. }
  483. .partime-text-three {
  484. margin-left: 16rpx;
  485. font-size: 30rpx;
  486. font-weight: 700;
  487. padding-left: 69rpx;
  488. }
  489. .partime-text-four {
  490. margin-left: 16rpx;
  491. font-size: 30rpx;
  492. font-weight: 700;
  493. padding-left: 67rpx;
  494. }
  495. .partime-text-fludone {
  496. margin-left: 16rpx;
  497. margin-top: 12rpx;
  498. /* flex: 1; */
  499. font-size: 25rpx;
  500. color: #626262;
  501. font-family: PingFang-SC-Regular;
  502. }
  503. .partime-text-fludtwo {
  504. margin-left: 16rpx;
  505. margin-top: 12rpx;
  506. /* flex: 1; */
  507. font-size: 25rpx;
  508. color: #626262;
  509. font-family: PingFang-SC-Regular;
  510. padding-left: 41rpx;
  511. }
  512. .partime-text-fludthree {
  513. margin-left: 16rpx;
  514. margin-top: 12rpx;
  515. /* flex: 1; */
  516. font-size: 25rpx;
  517. color: #626262;
  518. font-family: PingFang-SC-Regular;
  519. padding-left: 41rpx;
  520. }
  521. .partime-text-fludfour {
  522. margin-left: 16rpx;
  523. margin-top: 12rpx;
  524. /* flex: 1; */
  525. font-size: 25rpx;
  526. color: #626262;
  527. font-family: PingFang-SC-Regular;
  528. padding-left: 45rpx;
  529. }
  530. .partime-info {
  531. padding-left: 30rpx;
  532. padding-top: 18rpx;
  533. padding-bottom: 18rpx;
  534. margin-top: 20rpx;
  535. font-size: 25rpx;
  536. font-family: PingFang-SC-Regular;
  537. /* color: #7b7b7b; */
  538. background: #fdfbd2;
  539. color: black;
  540. opacity: 0.6;
  541. border-radius: 10rpx;
  542. border: 1px solid #f8ea04;
  543. width: 92%;
  544. margin-left: 10rpx;
  545. }
  546. .partime-bg-container {
  547. /* padding-bottom: 23rpx; */
  548. }
  549. .member {
  550. height: 100%;
  551. }
  552. .hot-title {
  553. display: flex;
  554. justify-content: space-between;
  555. align-items: center;
  556. height: 36rpx;
  557. font-size: 32rpx;
  558. font-family: "FZCuYuan-M03";
  559. font-weight: 400;
  560. color: #333333;
  561. position: relative;
  562. }
  563. .hot-title .line {
  564. position: absolute;
  565. width: 6rpx;
  566. height: 36rpx;
  567. background: #ffdd36;
  568. border-radius: 3rpx;
  569. top: 0;
  570. left: 0;
  571. opacity: 0.5;
  572. }
  573. /* .partime-detail-info {
  574. font-size: 30rpx;
  575. font-family: PingFang-SC-Regular;
  576. color: #292929;
  577. display: block;
  578. line-height: 50rpx;
  579. } */
  580. .imginfo {
  581. width: 43rpx;
  582. height: 34rpx;
  583. vertical-align: middle;
  584. padding-right: 13rpx;
  585. }
  586. .information {
  587. display: inline-block;
  588. width: 8%;
  589. vertical-align: top;
  590. padding-top: 16rpx;
  591. }
  592. .information-txt {
  593. display: inline-block;
  594. width: 80%;
  595. color: #fcc133;
  596. }
  597. .hk-leftt::after {
  598. content: "";
  599. position: absolute;
  600. width: 8rpx;
  601. height: 34rpx;
  602. line-height: 34rpx;
  603. left: 0rpx;
  604. bottom: 6rpx;
  605. background: #9ddb52;
  606. z-index: 999;
  607. }
  608. .hk-leftt {
  609. position: relative;
  610. }
  611. .activity-title image {
  612. height: 38rpx;
  613. width: 84rpx;
  614. margin-right: 10rpx;
  615. }
  616. .activity-c {
  617. display: flex;
  618. flex-direction: column;
  619. width: 690rpx;
  620. margin: -90rpx auto 0 auto;
  621. padding-bottom: 100rpx;
  622. box-sizing: border-box;
  623. }
  624. .acitemwrap {
  625. background: white;
  626. margin-bottom: 20rpx;
  627. padding: 34rpx 30rpx 23rpx 30rpx;
  628. }
  629. .apwrap {
  630. position: relative;
  631. z-index: 22;
  632. width: 100%;
  633. height: 99rpx;
  634. margin-left: -22rpx;
  635. }
  636. .activeity-price-c {
  637. color: white;
  638. background: #9ddb52;
  639. width: 690rpx;
  640. position: absolute;
  641. padding: 0 30rpx;
  642. box-sizing: border-box;
  643. left: 0;
  644. top: 0;
  645. display: flex;
  646. align-items: center;
  647. z-index: 23;
  648. height: 99rpx;
  649. border-radius: 20rpx 20rpx 0px 0px;
  650. }
  651. .activeity-price-c label {
  652. font-size: 26rpx;
  653. }
  654. .activeity-price-c .num {
  655. margin-top: -10rpx;
  656. font-size: 44rpx;
  657. font-weight: 700;
  658. }
  659. .activeity-price-c .company {
  660. font-size: 26rpx;
  661. }
  662. .activeity-price-d {
  663. position: absolute;
  664. right: -45rpx;
  665. top: 0;
  666. z-index: 24;
  667. background: #fcc26e;
  668. border-bottom: 99rpx solid #fcc26e;
  669. border-left: 30px solid #9ddb52;
  670. height: 0;
  671. display: flex;
  672. justify-content: center;
  673. align-items: center;
  674. width: 171rpx;
  675. border-radius: 0 20rpx 0rpx 0rpx;
  676. }
  677. .activeity-price-d text {
  678. font-size: 30rpx;
  679. font-weight: 700;
  680. margin-top: 99rpx;
  681. color: white;
  682. }
  683. .price {
  684. display: flex;
  685. flex-direction: row;
  686. align-items: center;
  687. flex-shrink: 0;
  688. }
  689. .price .p2 {
  690. font-size: 36rpx;
  691. font-weight: bold;
  692. color: #ec2e26;
  693. line-height: 45rpx;
  694. }
  695. .price .p1 {
  696. font-size: 22rpx;
  697. color: #ec2e26;
  698. line-height: 52rpx;
  699. }
  700. .acitemwrap .content .title-price .title {
  701. text-overflow: ellipsis;
  702. display: -webkit-box;
  703. -webkit-line-clamp: 2;
  704. -webkit-box-orient: vertical;
  705. overflow: hidden;
  706. font-size: 36rpx;
  707. font-family: "FZCuYuan-M03";
  708. font-weight: 400;
  709. color: #1a1a1a;
  710. width: 520rpx;
  711. flex-shrink: 0;
  712. }
  713. .hot-title .title {
  714. display: inline-block !important;
  715. position: relative;
  716. }
  717. .hot-title .title::after {
  718. display: block;
  719. content: "";
  720. position: absolute;
  721. top: -3%;
  722. right: -3%;
  723. width: 30rpx;
  724. height: 30rpx;
  725. background-color: #005eff42;
  726. border-radius: 50%;
  727. z-index: 1;
  728. }
  729. .acitemwrap .content .label2 {
  730. font-size: 26rpx;
  731. font-weight: 400;
  732. color: #767676;
  733. margin-right: 10rpx;
  734. display: inline-block;
  735. }
  736. .acitemwrap .content .split {
  737. width: 100%;
  738. border-top: 1px solid #e6e6e6;
  739. margin: 30rpx 0;
  740. }
  741. .list {
  742. font-size: 28rpx;
  743. font-weight: 400;
  744. color: #666666;
  745. line-height: 33rpx;
  746. margin-top: 10rpx;
  747. position: relative;
  748. font-family: "FZZhunYuan-M02S";
  749. font-weight: 400;
  750. }
  751. .code-tip {
  752. font-size: 28rpx;
  753. font-family: PingFang SC, PingFang SC-Regular;
  754. font-weight: 400;
  755. text-align: center;
  756. color: #666666;
  757. }
  758. .code-img {
  759. width: 358rpx;
  760. height: 358rpx;
  761. margin-top: 22rpx;
  762. }
  763. .selt-btn {
  764. display: flex;
  765. justify-content: center;
  766. padding-bottom: 65rpx;
  767. }
  768. .i-know {
  769. width: 319rpx;
  770. height: 80rpx;
  771. background: #2b58a5;
  772. border-radius: 40rpx;
  773. text-align: center;
  774. line-height: 80rpx;
  775. color: #ffffff;
  776. font-size: 32rpx;
  777. }
  778. .content-info {
  779. padding-top: 8rpx;
  780. display: flex;
  781. /* align-items: center; */
  782. justify-content: space-between;
  783. }
  784. .info-typeName {
  785. font-size: 24rpx;
  786. font-family: PingFang SC, PingFang SC-Regular;
  787. font-weight: 400;
  788. text-align: left;
  789. color: #ec931a;
  790. }
  791. .info-list-item {
  792. margin-top: 20rpx;
  793. display: flex;
  794. align-items: center;
  795. }
  796. .info-list-item view {
  797. margin-right: 14rpx;
  798. min-width: 120rpx;
  799. height: 46rpx;
  800. line-height: 46rpx;
  801. background: #f0f1f5;
  802. border-radius: 10rpx;
  803. text-align: center;
  804. padding: 0 10rpx;
  805. font-size: 22rpx;
  806. font-family: PingFang SC, PingFang SC-Regular;
  807. font-weight: 400;
  808. color: #5f5e66;
  809. }
  810. .work-day-type {
  811. display: flex;
  812. justify-content: space-between;
  813. align-items: center;
  814. height: 55rpx;
  815. margin-top: 12rpx;
  816. }
  817. .sub-btn {
  818. flex-shrink: 0;
  819. background: #e6e6e6;
  820. border-radius: 28rpx;
  821. height: 55rpx;
  822. line-height: 55rpx;
  823. color: #0a0a0a;
  824. font-size: 28rpx;
  825. width: 150rpx;
  826. text-align: center;
  827. }
  828. .sub-btn.green {
  829. background: #2b58a5;
  830. color: #ffffff;
  831. }
  832. .list-address-box {
  833. display: flex;
  834. justify-content: space-between;
  835. align-items: flex-end;
  836. }
  837. .righticon {
  838. font-size: 38rpx;
  839. }
  840. .title-price {
  841. display: flex;
  842. justify-content: space-between;
  843. align-items: center;
  844. }
  845. .comment {
  846. padding: 11rpx 0 41rpx 0;
  847. }
  848. .comment .card {
  849. margin-top: 30rpx;
  850. }
  851. .comment .card .head {
  852. display: inline-block;
  853. vertical-align: middle;
  854. width: 87rpx;
  855. height: 87rpx;
  856. border-radius: 50%;
  857. background: #f6f6f6;
  858. margin-right: 18rpx;
  859. }
  860. .comment .card .star-box {
  861. display: inline-block;
  862. vertical-align: middle;
  863. width: 350rpx;
  864. }
  865. .comment .card .star-box .name {
  866. text-overflow: ellipsis;
  867. white-space: nowrap;
  868. overflow: hidden;
  869. font-size: 32rpx;
  870. font-weight: 400;
  871. color: #1a1a1a;
  872. }
  873. .comment .card .star-box .iconfont-c3 {
  874. margin-right: 12rpx;
  875. color: #b3b3b3;
  876. }
  877. .comment .card .star-box .iconfont-c3.yellow {
  878. color: #fed100;
  879. }
  880. .comment .card .time {
  881. width: 160rpx;
  882. text-align: right;
  883. display: inline-block;
  884. vertical-align: top;
  885. font-size: 28rpx;
  886. font-weight: 500;
  887. color: #999999;
  888. }
  889. .comment .card .desc {
  890. margin-top: 25rpx;
  891. font-size: 28rpx;
  892. font-weight: 400;
  893. color: #999999;
  894. line-height: 34rpx;
  895. }
  896. .comment .card .img-box {
  897. white-space: nowrap;
  898. overflow: auto;
  899. }
  900. .comment .card .img {
  901. width: 155rpx;
  902. height: 155rpx;
  903. background: #f6f6f6;
  904. margin: 18rpx 10rpx 0 0;
  905. }
  906. .comment .card .split {
  907. margin-top: 32rpx;
  908. border-top: 1px solid #e6e6e6;
  909. }
  910. .left-t-r i {
  911. font-size: 50rpx;
  912. }
  913. .left-t-r i.isyn {
  914. font-size: 50rpx;
  915. color: #ff9800;
  916. }
  917. .work-box {
  918. width: 690rpx;
  919. background: #ffffff;
  920. border-radius: 16rpx;
  921. /* margin-top: 23rpx; */
  922. margin-bottom: 20rpx;
  923. margin-left: 30rpx;
  924. }
  925. .work-top {
  926. padding: 41rpx 30rpx 26rpx 30rpx;
  927. box-sizing: border-box;
  928. }
  929. .work-img-box {
  930. display: flex;
  931. margin-top: 31rpx;
  932. }
  933. .work-bao {
  934. margin-left: 43rpx;
  935. width: 45rpx;
  936. height: 46rpx;
  937. }
  938. .work-dot {
  939. width: 71rpx;
  940. height: 11rpx;
  941. margin-left: 29rpx;
  942. align-self: center;
  943. }
  944. .work-lian {
  945. width: 44rpx;
  946. height: 42rpx;
  947. margin-left: 29rpx;
  948. }
  949. .work-kai {
  950. width: 49rpx;
  951. height: 44rpx;
  952. margin-left: 24rpx;
  953. }
  954. .work-dot3 {
  955. width: 71rpx;
  956. height: 11rpx;
  957. margin-left: 28rpx;
  958. align-self: center;
  959. }
  960. .work-wan {
  961. width: 53rpx;
  962. height: 36rpx;
  963. margin-left: 15rpx;
  964. }
  965. .word-box {
  966. display: flex;
  967. margin-top: 20rpx;
  968. }
  969. .word-box .item {
  970. font-size: 28rpx;
  971. font-family: FZZhunYuan-M02S;
  972. font-weight: 400;
  973. color: #000000;
  974. text-align: center;
  975. width: 132rpx;
  976. }
  977. .word-box .item .title-2 {
  978. font-size: 22rpx;
  979. color: #666666;
  980. margin-top: 17rpx;
  981. }
  982. .word-box .item .title-3 {
  983. font-size: 22rpx;
  984. color: #666666;
  985. margin-top: 10rpx;
  986. }
  987. .warning-box {
  988. width: 690rpx;
  989. height: 101rpx;
  990. background: #d8e0ee;
  991. border-radius: 0px 0px 16rpx 16rpx;
  992. display: flex;
  993. justify-content: space-between;
  994. align-items: center;
  995. padding: 0 30rpx;
  996. box-sizing: border-box;
  997. font-size: 24rpx;
  998. font-family: FZZhunYuan-M02S;
  999. font-weight: 400;
  1000. color: #1a56a6;
  1001. }
  1002. .warning-img {
  1003. width: 39rpx;
  1004. height: 39rpx;
  1005. }
  1006. .per-box {
  1007. width: 690rpx;
  1008. margin-left: 30rpx;
  1009. padding: 30rpx;
  1010. box-sizing: border-box;
  1011. background-color: white;
  1012. margin-bottom: 20rpx;
  1013. border-radius: 20rpx;
  1014. }
  1015. .people {
  1016. }
  1017. .more {
  1018. height: 90rpx;
  1019. display: flex;
  1020. align-items: center;
  1021. margin-top: 33rpx;
  1022. }
  1023. .more .more-word {
  1024. font-size: 24rpx;
  1025. font-family: PingFang SC, PingFang SC-Regular;
  1026. font-weight: 400;
  1027. color: #666666;
  1028. }
  1029. .more .down {
  1030. transform: rotate(-90deg);
  1031. }
  1032. .total-img {
  1033. display: flex;
  1034. flex-wrap: wrap;
  1035. }
  1036. .total-img .imgk {
  1037. width: 90rpx;
  1038. height: 90rpx;
  1039. border-radius: 50%;
  1040. margin-left: 30rpx;
  1041. margin-top: 32rpx;
  1042. }
  1043. .total-img .imgk:first-child {
  1044. margin-left: 0;
  1045. }
  1046. .total-img .imgk:nth-child(6n + 1) {
  1047. margin-left: 0;
  1048. }
  1049. .total-img .up {
  1050. display: flex;
  1051. align-items: center;
  1052. margin-left: 30rpx;
  1053. }
  1054. .up-word {
  1055. font-size: 24rpx;
  1056. font-family: PingFang SC, PingFang SC-Regular;
  1057. font-weight: 400;
  1058. color: #666666;
  1059. }
  1060. .upicon {
  1061. transform: rotate(90deg);
  1062. margin-bottom: 12rpx;
  1063. }
  1064. .people-content {
  1065. display: flex;
  1066. justify-content: space-between;
  1067. }
  1068. .imgs {
  1069. position: relative;
  1070. margin-top: 33rpx;
  1071. height: 90rpx;
  1072. }
  1073. .img {
  1074. width: 90rpx;
  1075. height: 90rpx;
  1076. border-radius: 50%;
  1077. position: absolute;
  1078. top: 0;
  1079. }
  1080. .dot {
  1081. position: absolute;
  1082. top: 0;
  1083. width: 90rpx;
  1084. height: 90rpx;
  1085. border-radius: 50%;
  1086. border: 1px dashed #999999;
  1087. text-align: center;
  1088. color: #999999;
  1089. box-sizing: border-box;
  1090. font-size: 28rpx;
  1091. line-height: 75rpx;
  1092. }