progressdetail.wxss 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995
  1. /* index/pages/progressdetail/progressdetail.wxss */
  2. .progressdetail {
  3. width: 100%;
  4. min-height: 100vh;
  5. background-color: #fff;
  6. position: relative;
  7. overflow: auto;
  8. padding-bottom: 100rpx;
  9. }
  10. .image-box {
  11. width: 100%;
  12. height: 500rpx;
  13. overflow: hidden;
  14. position: relative;
  15. }
  16. .image-box image {
  17. width: 100%;
  18. }
  19. .vr-box {
  20. width: 160rpx;
  21. height: 130rpx;
  22. position: absolute;
  23. z-index: 9;
  24. top: 45%;
  25. left: 50%;
  26. transform: translate(-50%, -50%);
  27. color: #fff;
  28. font-size: 36rpx;
  29. }
  30. .vr-box>image {
  31. width: 100%;
  32. }
  33. .floorMsg {
  34. width: 100%;
  35. padding: 30rpx 20rpx 20rpx;
  36. margin: 0rpx auto 0rpx;
  37. position: relative;
  38. z-index: 10;
  39. background-color: #fff;
  40. border-radius: 10rpx;
  41. }
  42. .f-data {
  43. width: 100%;
  44. display: flex;
  45. align-items: center;
  46. font-size: 29rpx;
  47. padding: 0rpx 0rpx 10rpx;
  48. }
  49. .f-data>view {
  50. width: 240rpx;
  51. height: 100rpx;
  52. display: flex;
  53. flex-direction: column;
  54. align-items: center;
  55. }
  56. .f-data-1 {
  57. width: 180rpx !important;
  58. height: 100rpx;
  59. display: flex;
  60. flex-direction: column;
  61. align-items: flex-start !important;
  62. justify-content: center;
  63. }
  64. .f-data-1>view {
  65. width: 100rpx;
  66. display: flex;
  67. flex-direction: column;
  68. text-align: center;
  69. }
  70. .f-data-1>view>.f-data-num {
  71. font-size: 34rpx;
  72. color: #333333;
  73. font-weight: 600;
  74. }
  75. .f-data-1>view>.f-data-name {
  76. font-size: 24rpx;
  77. color: #999999;
  78. }
  79. .f-data>view>.f-data-num {
  80. font-size: 34rpx;
  81. color: #333333;
  82. font-weight: 600;
  83. margin-top: 6rpx;
  84. }
  85. .f-data>view>.f-data-name {
  86. font-size: 24rpx;
  87. color: #999999;
  88. }
  89. .f-data-line {
  90. flex: none !important;
  91. width: 2rpx !important;
  92. height: 60rpx !important;
  93. background-color: #f2f2f2;
  94. }
  95. .justify-end {
  96. display: flex;
  97. justify-content: flex-end;
  98. }
  99. .justify-center {
  100. display: flex;
  101. justify-content: center;
  102. }
  103. .color687888 {
  104. color: #687888;
  105. }
  106. .f-title {
  107. display: flex;
  108. justify-content: space-between;
  109. padding: 10rpx 0rpx;
  110. }
  111. .dscText {
  112. font-size: 29rpx;
  113. margin-left: 20rpx;
  114. color: #28A1FF;
  115. }
  116. .f-area {
  117. width: 100%;
  118. display: flex;
  119. flex-wrap: nowrap;
  120. padding: 10rpx 0rpx;
  121. overflow: auto;
  122. }
  123. .f-area>view {
  124. flex: none;
  125. display: inline-block;
  126. padding: 4rpx 15rpx;
  127. background-color: #FFEDED;
  128. color: #C66D59;
  129. border-radius: 4rpx;
  130. margin-right: 10rpx;
  131. }
  132. .f-delivery,
  133. .f-address {
  134. display: flex;
  135. align-items: center;
  136. margin-bottom: 0rpx;
  137. }
  138. .f-delivery-name,
  139. .f-address-name,
  140. .f-dsc-name {
  141. font-size: 28rpx;
  142. line-height: 50rpx;
  143. }
  144. .f-address_ico {
  145. width: 35rpx;
  146. }
  147. .f-delivery-time {
  148. color: #333333;
  149. line-height: 50rpx;
  150. font-size: 29rpx;
  151. }
  152. .flex-sub {
  153. flex: 1;
  154. }
  155. .f-address-dsc {
  156. font-size: 28rpx;
  157. }
  158. .f-dsc {
  159. display: flex;
  160. }
  161. .f-dsc-arrow {
  162. width: 20rpx;
  163. }
  164. .rotate90 {
  165. transform: rotate(90deg);
  166. }
  167. .f-dsc-content {
  168. font-size: 28rpx;
  169. color: #333333;
  170. line-height: 50rpx;
  171. }
  172. .ellipsisOne {
  173. white-space: nowrap;
  174. overflow: hidden;
  175. text-overflow: ellipsis;
  176. }
  177. .line {
  178. width: 100%;
  179. height: 20rpx;
  180. background-color: #F6F6F6;
  181. }
  182. .updateBox {
  183. width: 100%;
  184. height: auto;
  185. overflow: hidden;
  186. padding: 30rpx 20rpx;
  187. background-color: #fff;
  188. display: flex;
  189. align-items: center;
  190. }
  191. .u-img-box {
  192. width: 80rpx;
  193. height: 80rpx;
  194. border-radius: 50%;
  195. overflow: hidden;
  196. }
  197. .u-img-box image {
  198. width: 100%;
  199. height: 100%;
  200. }
  201. .u-company {
  202. overflow: hidden;
  203. box-sizing: border-box;
  204. padding: 0rpx 20rpx;
  205. }
  206. .u-company-name {
  207. font-size: 32rpx;
  208. color: #333333;
  209. }
  210. .u-company-date {
  211. color: #CECECE;
  212. font-size: 28rpx;
  213. }
  214. .u-button {
  215. width: 120rpx;
  216. height: 50rpx;
  217. background-color: #28A1FF;
  218. color: #fff;
  219. font-size: 26rpx;
  220. font-style: normal;
  221. line-height: 50rpx !important;
  222. }
  223. .house-box {
  224. width: 100%;
  225. padding: 30rpx 20rpx;
  226. background-color: #fff;
  227. }
  228. .h-title {
  229. height: 40rpx;
  230. border-left: 8rpx solid #28A1FF;
  231. line-height: 40rpx;
  232. box-sizing: border-box;
  233. padding-left: 10rpx;
  234. color: #333333;
  235. font-weight: 700;
  236. }
  237. .h-content {
  238. width: 100%;
  239. overflow-y: hidden;
  240. overflow-x: auto;
  241. margin-top: 30rpx;
  242. display: flex;
  243. align-items: center;
  244. flex-wrap: nowrap;
  245. }
  246. .h-c-item {
  247. flex: none;
  248. width: 300rpx;
  249. height: 200rpx;
  250. border: 2rpx solid #EFEFEF;
  251. margin-right: 20rpx;
  252. }
  253. .h-c-i-top {
  254. height: 140rpx;
  255. box-sizing: border-box;
  256. padding: 20rpx;
  257. }
  258. .h-c-i-top-name {
  259. font-size: 32rpx;
  260. font-weight: 700;
  261. color: #333333;
  262. }
  263. .h-c-i-top-case {
  264. font-size: 24rpx;
  265. color: #CDCDCD;
  266. margin-top: 10rpx;
  267. }
  268. .h-c-i-bottom {
  269. width: 100%;
  270. height: 60rpx;
  271. border-top: 2rpx solid #EFEFEF;
  272. box-sizing: border-box;
  273. padding: 0px 20rpx;
  274. font-size: 24rpx;
  275. color: #28A1FF;
  276. line-height: 60rpx;
  277. }
  278. .timelineBox {
  279. width: 100%;
  280. height: auto;
  281. overflow: hidden;
  282. padding: 20rpx 20rpx 50rpx;
  283. margin-top: 20rpx;
  284. }
  285. .noneText {
  286. width: 100%;
  287. display: flex;
  288. align-items: center;
  289. justify-content: center;
  290. font-size: 28rpx;
  291. color: #999999;
  292. }
  293. .timeline-item {
  294. width: 100%;
  295. height: auto;
  296. position: relative;
  297. padding: 20rpx 0rpx 20rpx;
  298. border-bottom: 1rpx solid #e0e0e0;
  299. }
  300. .moreClass {
  301. width: 100%;
  302. text-align: center;
  303. line-height: 60rpx;
  304. color: #6C7B8B;
  305. margin-top: -4rpx;
  306. font-size: 28rpx;
  307. }
  308. .rotate180 {
  309. transform: rotate(180deg);
  310. }
  311. .moreClass>image {
  312. width: 25rpx;
  313. position: relative;
  314. top: 5rpx;
  315. }
  316. .timeline-item-date {
  317. width: 100%;
  318. padding: 8rpx 0rpx;
  319. font-size: 20rpx;
  320. border-radius: 4rpx;
  321. display: flex;
  322. justify-content: space-between;
  323. align-items: center;
  324. }
  325. .progressTypeBtn {
  326. display: inline-block;
  327. background-color: #F0F4F7;
  328. color: #9DB6CF;
  329. padding: 5rpx 15rpx;
  330. border-radius: 5rpx;
  331. font-size: 20rpx;
  332. }
  333. .timeline-item-name {
  334. margin: 0rpx;
  335. color: #333333;
  336. font-size: 32rpx;
  337. display: flex;
  338. align-items: center;
  339. }
  340. .timeline-item-name>view {
  341. flex: 1;
  342. box-sizing: border-box;
  343. padding-right: 30rpx;
  344. }
  345. .lpicon {
  346. width: 60rpx;
  347. height: 60rpx;
  348. margin-right: 20rpx;
  349. margin-bottom: 6rpx;
  350. }
  351. .progress_share {
  352. background-color: #fff;
  353. padding: 0rpx !important;
  354. margin: 6rpx 0rpx 0rpx !important;
  355. font-style: normal;
  356. width: 40rpx;
  357. height: 40rpx;
  358. display: flex;
  359. align-items: center;
  360. justify-content: center;
  361. }
  362. .progress_share>image {
  363. width: 30rpx;
  364. }
  365. .color6C7B8B {
  366. color: #6C7B8B;
  367. }
  368. .timeline-item-dsc {
  369. font-size: 26rpx;
  370. padding-top: 10rpx;
  371. }
  372. .ellipsisTwo {
  373. display: -webkit-box;
  374. -webkit-box-orient: vertical;
  375. -webkit-line-clamp: 2;
  376. overflow: hidden;
  377. text-overflow: ellipsis;
  378. }
  379. .t-allContent {
  380. margin-top: 20rpx;
  381. width: 110rpx;
  382. height: 60rpx;
  383. line-height: 60rpx;
  384. font-size: 24rpx;
  385. background-color: #F0F4F7;
  386. color: #249EFB;
  387. }
  388. .timeline-item-img {
  389. padding: 20rpx 0rpx;
  390. }
  391. .vr-img-link {
  392. width: 220rpx;
  393. height: 200rpx;
  394. display: inline-block;
  395. margin-right: 20rpx;
  396. margin-bottom: 30rpx;
  397. position: relative;
  398. background-color: #fff;
  399. border-radius: 10rpx;
  400. overflow: hidden;
  401. }
  402. .mr0 {
  403. margin-right: 0rpx !important;
  404. }
  405. .vr-img-link image {
  406. width: 100%;
  407. height: 100%;
  408. }
  409. .vr-img-text {
  410. position: absolute;
  411. width: 110rpx;
  412. height: 90rpx;
  413. z-index: 9;
  414. top: 50%;
  415. left: 50%;
  416. transform: translate(-50%, -50%);
  417. color: #fff;
  418. font-size: 28rpx;
  419. }
  420. .timeline-item-circle {
  421. width: 20rpx;
  422. height: 20rpx;
  423. border: 5rpx solid #28A1FF;
  424. background-color: #fff;
  425. border-radius: 50%;
  426. position: absolute;
  427. left: -60rpx;
  428. top: 16rpx;
  429. z-index: 9;
  430. }
  431. .timeline-item-line {
  432. width: 2rpx;
  433. height: 100%;
  434. border-left: 2rpx dashed #9C9C9C;
  435. position: absolute;
  436. left: -51.5rpx;
  437. top: 16rpx;
  438. z-index: 8;
  439. }
  440. .listBoxStyle {
  441. width: 100%;
  442. height: auto;
  443. margin: 0rpx auto 60rpx;
  444. border-radius: 10rpx;
  445. background-color: #fff;
  446. }
  447. .communitymsg {
  448. width: 100%;
  449. box-sizing: border-box;
  450. height: auto;
  451. padding: 30rpx 20rpx 20rpx;
  452. display: flex;
  453. justify-content: space-between;
  454. align-items: center;
  455. }
  456. .communitymsg>.c_title {
  457. font-size: 36rpx;
  458. color: #333333;
  459. font-weight: 700;
  460. }
  461. .communitymsg>.c_more {
  462. font-size: 24rpx;
  463. color: #999999;
  464. }
  465. .communitymsg>.c_more>image {
  466. width: 20rpx;
  467. position: relative;
  468. top: 2rpx;
  469. }
  470. .pt0 {
  471. padding-top: 0rpx !important;
  472. }
  473. /* 在施工地 */
  474. .constructbox {
  475. padding-top: 16rpx;
  476. }
  477. .constructSitebox {
  478. display: block;
  479. width: 680rpx;
  480. background-color: #fff;
  481. border-radius: 16rpx;
  482. border: 1px solid #ECECEC;
  483. box-sizing: border-box;
  484. padding: 24rpx 20rpx 28rpx;
  485. margin: 0 auto 20rpx;
  486. box-shadow: 0 2px 8px 0 rgba(56, 72, 85, 0.20);
  487. overflow: hidden;
  488. }
  489. .coverbox {
  490. width: 100%;
  491. height: 180rpx;
  492. overflow: hidden;
  493. }
  494. .coverbox>image {
  495. display: block;
  496. width: 100%;
  497. height: 100%;
  498. }
  499. .constructit {
  500. width: 400rpx;
  501. }
  502. .casecollectbox image {
  503. width: 20rpx;
  504. height: 20rpx;
  505. position: relative;
  506. top: 18rpx;
  507. margin-right: 8rpx;
  508. }
  509. .constructSitebox .casecollectbox image {
  510. top: 11rpx;
  511. }
  512. .constructSitebox .casecollectbox image {
  513. top: 11rpx;
  514. }
  515. .sitestep {
  516. display: block;
  517. border-top: 1px solid #ECECEC;
  518. padding: 24rpx 10rpx;
  519. }
  520. .everysteps {
  521. text-align: center;
  522. position: relative;
  523. }
  524. .everysteps .stepnum {
  525. display: block;
  526. width: 32rpx;
  527. height: 32rpx;
  528. background: #FFFFFF;
  529. border: 2rpx solid #CCCCCC;
  530. /* background: #28A1FF; */
  531. border-radius: 50%;
  532. /* color: #fff; */
  533. margin: 0 auto 12rpx;
  534. position: relative;
  535. z-index: 2;
  536. }
  537. .everysteps::after {
  538. display: block;
  539. content: " ";
  540. width: 125.2rpx;
  541. height: 10rpx;
  542. background: #EEEEEE;
  543. position: absolute;
  544. top: 11rpx;
  545. left: -50%;
  546. z-index: 1;
  547. }
  548. .sitestep .everysteps:first-child::after {
  549. display: none;
  550. }
  551. .laststeps .stepnum {
  552. background-color: #28A1FF;
  553. border-color: #28A1FF;
  554. color: #fff !important;
  555. }
  556. .laststeps::after {
  557. background-color: #28A1FF;
  558. }
  559. .duihaoIcon {
  560. width: 20rpx;
  561. height: 20rpx;
  562. margin-top: 7rpx;
  563. }
  564. .rightbtnbox {
  565. display: block;
  566. position: fixed;
  567. right: 0rpx;
  568. bottom: 200rpx;
  569. z-index: 11;
  570. }
  571. .tcollectbox {
  572. display: block;
  573. width: 98rpx;
  574. height: 98rpx;
  575. background-color: #ffffff;
  576. box-shadow: 0 2rpx 8rpx 0 rgba(56, 72, 85, 0.20);
  577. border: solid 1px #B6CADE;
  578. border-radius: 50%;
  579. position: relative;
  580. right: 28rpx;
  581. overflow: hidden;
  582. }
  583. .colorB6CADE {
  584. color: #B6CADE;
  585. }
  586. .tcollectbox image {
  587. display: block;
  588. width: 27rpx;
  589. height: 27rpx;
  590. margin: 18rpx auto 12rpx;
  591. }
  592. .tsharebox {
  593. background-color: #259cfa;
  594. box-shadow: 0px 2rpx 15rpx 1px rgba(36, 157, 250, 0.48);
  595. border: solid 1px #249dfa;
  596. margin-bottom: 24rpx;
  597. }
  598. .sharenumBox .pricebtnimg {
  599. position: relative;
  600. right: -14rpx;
  601. top: 0;
  602. width: 82rpx;
  603. height: 92rpx;
  604. margin-top: 24rpx;
  605. }
  606. .switchTab {
  607. position: absolute;
  608. max-width: 80%;
  609. height: 50rpx;
  610. background-color: #FFFFFF;
  611. color: #333333;
  612. z-index: 999;
  613. bottom: 120rpx;
  614. left: 50%;
  615. transform: translateX(-50%);
  616. border-radius: 28rpx;
  617. display: flex;
  618. align-items: center;
  619. }
  620. .switchTab>view {
  621. height: 100%;
  622. padding: 0px 24rpx;
  623. display: flex;
  624. justify-content: center;
  625. align-items: center;
  626. font-size: 24rpx;
  627. white-space: nowrap;
  628. }
  629. .activeTab {
  630. background-color: #F63D33;
  631. border-radius: 35rpx;
  632. color: #fff;
  633. }
  634. .houseTypeBox {
  635. width: 100%;
  636. padding-bottom: 40rpx;
  637. }
  638. .houseTypeHeader {
  639. width: 100%;
  640. height: 60rpx;
  641. display: flex;
  642. align-items: center;
  643. box-sizing: border-box;
  644. padding: 0rpx 20rpx;
  645. margin-bottom: 20rpx;
  646. }
  647. .hhRight {
  648. width: 100%;
  649. height: 100%;
  650. white-space: nowrap;
  651. overflow-x: auto;
  652. overflow-y: hidden;
  653. font-size: 29rpx;
  654. color: #222222;
  655. display: flex;
  656. align-items: center;
  657. flex-wrap: nowrap;
  658. }
  659. .hhRight>view {
  660. flex: none;
  661. display: inline-block;
  662. margin-right: 20rpx;
  663. padding: 4rpx 20rpx;
  664. background-color: #F7F8FF;
  665. border-radius: 4rpx;
  666. color: #666666;
  667. border-radius: 20rpx;
  668. }
  669. .hhactive {
  670. color: #E75151 !important;
  671. font-weight: 700;
  672. position: relative;
  673. background-color: #FFEEEF !important;
  674. }
  675. .houseTypeShowBox {
  676. display: flex;
  677. align-items: center;
  678. flex-wrap: nowrap;
  679. overflow-x: auto;
  680. overflow-y: hidden;
  681. box-sizing: border-box;
  682. padding: 10rpx 0rpx;
  683. padding-right: 10rpx;
  684. }
  685. .houseTypeShowBox::-webkit-scrollbar {
  686. display: none;
  687. }
  688. .houseTypeItem {
  689. flex: none;
  690. display: block;
  691. width: 420rpx;
  692. padding: 20rpx;
  693. background-color: #fff;
  694. box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(0, 0, 0, 0.1);
  695. border-radius: 22rpx;
  696. margin: 0rpx 20rpx;
  697. position: relative;
  698. }
  699. .house_image {
  700. width: 100%;
  701. height: 300rpx;
  702. box-sizing: border-box;
  703. padding: 10rpx;
  704. display: flex;
  705. justify-content: center;
  706. align-items: center;
  707. }
  708. .bcE8F3FF {
  709. background-color: #E8F3FF;
  710. }
  711. .house_image>image {
  712. width: 85%;
  713. height: 100%;
  714. }
  715. .vrEyeIcon {
  716. position: absolute;
  717. top: 0rpx;
  718. right: 0rpx;
  719. width: 30rpx !important;
  720. }
  721. .h-dsc111 {
  722. margin-top: 10rpx;
  723. display: flex;
  724. font-size: 28rpx !important;
  725. font-weight: 600;
  726. color: #333333;
  727. }
  728. .h-area111 {
  729. font-size: 28rpx;
  730. line-height: 60rpx;
  731. color: #999999;
  732. }
  733. .h-operate {
  734. margin-top: 10rpx;
  735. width: 100%;
  736. height: 68rpx;
  737. display: flex;
  738. justify-content: space-between;
  739. position: relative;
  740. }
  741. .h-operate>image {
  742. width: 100%;
  743. position: absolute;
  744. top: 0rpx;
  745. left: 0rpx;
  746. z-index: 0rpx;
  747. }
  748. .h-operate>button {
  749. flex: 1;
  750. height: 100%;
  751. font-size: 26rpx;
  752. line-height: 68rpx;
  753. text-align: center;
  754. padding: 0 8rpx;
  755. background-color: transparent;
  756. }
  757. .colorDE2525 {
  758. color: #DE2525;
  759. }
  760. .fw700 {
  761. font-weight: 700;
  762. }
  763. .bg249EFB {
  764. background-color: #249EFB;
  765. }
  766. .bg1BCFA7 {
  767. background-color: #1BCFA7;
  768. }
  769. .caseBoxStyle {
  770. width: 100%;
  771. height: auto;
  772. box-sizing: border-box;
  773. padding-left: 12rpx;
  774. }
  775. /*案例样式*/
  776. .caselistbox {
  777. display: block;
  778. padding: 20rpx 0rpx 30rpx;
  779. padding-left: 15rpx;
  780. }
  781. .everycasebox {
  782. width: 320rpx;
  783. box-shadow: 0 4rpx 20rpx 0 rgba(36, 158, 251, 0.26);
  784. border-radius: 10rpx;
  785. overflow: hidden;
  786. margin-bottom: 20rpx;
  787. }
  788. .caselistbox .everycasebox:nth-of-type(2n-1) {
  789. margin-right: 20rpx;
  790. }
  791. .caselistbox .everycasebox .imgbox {
  792. height: 220rpx;
  793. }
  794. .caselistbox .everycasebox .imgbox image {
  795. display: block;
  796. width: 100%;
  797. height: 100%;
  798. }
  799. .casehousemsgbox {
  800. display: block;
  801. position: absolute;
  802. bottom: 0;
  803. left: 0;
  804. width: 100%;
  805. background-color: rgb(56, 72, 85);
  806. opacity: 0.7;
  807. z-index: 2;
  808. }
  809. .casemsgbox {
  810. padding: 20rpx 10rpx 30rpx;
  811. }
  812. /*案例样式*/
  813. .s-count {
  814. position: absolute;
  815. right: 20rpx;
  816. bottom: 125rpx;
  817. color: #ffffff;
  818. font-size: 24rpx;
  819. background-color: rgba(0, 0, 0, 0.2);
  820. padding: 1rpx 15rpx;
  821. border-radius: 25rpx;
  822. }
  823. .timelineBox-header {
  824. width: 100%;
  825. height: 60rpx;
  826. display: flex;
  827. align-items: center;
  828. flex-wrap: nowrap;
  829. overflow-x: auto;
  830. box-sizing: border-box;
  831. padding: 5rpx 0rpx 5rpx;
  832. margin-bottom: 10rpx;
  833. }
  834. .timelineBox-header::-webkit-scrollbar {
  835. display: none;
  836. }
  837. .timelineBox-header > view {
  838. height: 100%;
  839. white-space: nowrap;
  840. padding: 0rpx 10rpx;
  841. font-size: 28rpx;
  842. color: #333333;
  843. }
  844. .labelTab {
  845. margin-top: 20rpx;
  846. }
  847. .activelabel {
  848. color: #249dfa !important;
  849. position: relative;
  850. font-size: 30rpx;
  851. }
  852. .activelabel::after {
  853. content: " ";
  854. width: 30rpx;
  855. height: 8rpx;
  856. background-color: #249EFB;
  857. position: absolute;
  858. bottom: 0rpx;
  859. left: 50%;
  860. transform: translateX(-50%);
  861. border-radius: 4rpx;
  862. }
  863. .p-type-btn {
  864. height: 60rpx;
  865. line-height: 60rpx;
  866. color: #333333;
  867. font-weight: 700;
  868. font-size: 36rpx !important;
  869. background-color: transparent;
  870. padding: 0rpx !important;
  871. }
  872. .maskWH {
  873. width: 100%;
  874. height: 100vh;
  875. position: fixed;
  876. background-color: rgba(0, 0, 0, 0.5);
  877. z-index: 9999;
  878. top: 0rpx;
  879. left: 0rpx;
  880. display: flex;
  881. justify-content: center;
  882. align-items: center;
  883. }
  884. .maskBox {
  885. width: 90%;
  886. max-height: 1000rpx;
  887. background-color: #fff;
  888. position: relative;
  889. border-radius: 10rpx;
  890. box-sizing: border-box;
  891. padding: 96rpx 0rpx 0rpx;
  892. }
  893. .close_icon {
  894. width: 52rpx;
  895. height: 52rpx;
  896. background-color: #EEEEEE;
  897. display: flex;
  898. align-items: center;
  899. justify-content: center;
  900. border-radius: 50%;
  901. position: absolute;
  902. right: -20rpx;
  903. top: -20rpx;
  904. }
  905. .close_icon image {
  906. width: 40rpx;
  907. }
  908. .m_case_title {
  909. height: 96rpx;
  910. width: 100%;
  911. text-align: center;
  912. line-height: 96rpx;
  913. border-bottom: 1rpx solid #CCCCCC;
  914. color: #333333;
  915. font-weight: bold;
  916. position: absolute;
  917. top: 0rpx;
  918. left: 0rpx;
  919. }
  920. .m_case_content {
  921. width: 100%;
  922. height: 904rpx;
  923. overflow-y: auto;
  924. box-sizing: border-box;
  925. padding-top: 10rpx;
  926. }
  927. .m_case_item {
  928. width: 100%;
  929. height: 80rpx;
  930. line-height: 90rpx;
  931. display: flex;
  932. justify-content: space-between;
  933. box-sizing: border-box;
  934. padding: 0rpx 30rpx;
  935. }
  936. .m_case_type {
  937. color: #249EFB;
  938. }
  939. .m_case_name {
  940. max-width: 65%;
  941. overflow: hidden;
  942. white-space: nowrap;
  943. text-overflow: ellipsis;
  944. }
  945. .swiper-item {
  946. height: auto;
  947. }
  948. .swiper-item>image {
  949. width: 100%;
  950. }
  951. .topNumber {
  952. position: absolute;
  953. top: 0rpx;
  954. left: 50%;
  955. transform: translateX(-50%);
  956. color: #fff;
  957. }
  958. .hh-vrView {
  959. width: 180rpx;
  960. height: 60rpx;
  961. background-color: rgba(0, 0, 0, 0.5);
  962. color: #fff;
  963. border-radius: 30rpx;
  964. font-size: 28rpx;
  965. position: absolute;
  966. bottom: 20rpx;
  967. left: 20rpx;
  968. display: flex;
  969. align-items: center;
  970. justify-content: center;
  971. }
  972. .hh-vrView>image {
  973. width: 40rpx;
  974. }
  975. /* 弹窗 */
  976. .maskBg {
  977. width: 100%;
  978. height: 100vh;
  979. position: fixed;
  980. top: 0rpx;
  981. left: 0rpx;
  982. background-color: rgba(0, 0, 0, 0.4);
  983. z-index: 99999;
  984. display: flex;
  985. justify-content: center;
  986. align-items: center;
  987. }
  988. .dialog {
  989. width: 90%;
  990. height: auto;
  991. padding: 40rpx 0rpx 0rpx;
  992. overflow: hidden;
  993. background-color: #fff;
  994. border-radius: 10rpx;
  995. }
  996. .ddTitle {
  997. width: 100%;
  998. height: 80rpx;
  999. line-height: 60rpx;
  1000. text-align: center;
  1001. color: #000000;
  1002. font-weight: 700;
  1003. font-size: 32rpx;
  1004. border-bottom: 1rpx solid #f2f2f2;
  1005. }
  1006. .ddContent {
  1007. width: 100%;
  1008. min-height: 400rpx;
  1009. max-height: 800rpx;
  1010. box-sizing: border-box;
  1011. overflow-y: auto;
  1012. overflow-x: hidden;
  1013. padding: 20rpx;
  1014. }
  1015. .ddBtn {
  1016. width: 100%;
  1017. height: 108rpx;
  1018. line-height: 108rpx;
  1019. text-align: center;
  1020. color: #576B95;
  1021. font-weight: 700;
  1022. border-top: 2rpx solid #F5F5F5;
  1023. font-size: 32rpx;
  1024. }
  1025. /* end */
  1026. .caseHeader {
  1027. border-bottom: 1rpx solid #f5f5f5;
  1028. }
  1029. .caseSearchItem {
  1030. flex: 1;
  1031. display: flex;
  1032. align-items: center;
  1033. justify-content: center;
  1034. }
  1035. .caseName {
  1036. font-size: 29rpx;
  1037. max-width: 120rpx;
  1038. white-space: nowrap;
  1039. overflow: hidden;
  1040. text-overflow: ellipsis;
  1041. }
  1042. .caseSearchItem>image {
  1043. width: 20rpx;
  1044. margin-left: 10rpx;
  1045. }
  1046. .caseStyleBox {
  1047. font-size: 28rpx;
  1048. position: absolute;
  1049. width: 100%;
  1050. height: auto;
  1051. overflow: hidden;
  1052. padding: 20rpx;
  1053. background-color: #fff;
  1054. top: 100rpx;
  1055. left: -6rpx;
  1056. z-index: 999999;
  1057. box-shadow: 0rpx 8rpx 16rpx 8rpx rgba(36, 158, 251, 0.23);
  1058. color: #333333;
  1059. }
  1060. .caseStyleBox>view {
  1061. display: inline-block;
  1062. padding: 5rpx 10rpx;
  1063. border: 2rpx solid #6C7B8B;
  1064. margin: 0rpx 20rpx 20rpx 0rpx;
  1065. }
  1066. .activeCaseStyle {
  1067. background-color: #249EFB;
  1068. color: #fff;
  1069. border: 2rpx solid #249EFB !important;
  1070. }
  1071. .activeStyle {
  1072. color: #249EFB;
  1073. }
  1074. .maskCaseAndArea {
  1075. position: fixed;
  1076. width: 100%;
  1077. height: 100vh;
  1078. top: 0rpx;
  1079. left: 0rpx;
  1080. z-index: 99999;
  1081. background-color: transparent;
  1082. }
  1083. .searchIconBox {
  1084. width: 100rpx;
  1085. display: flex;
  1086. justify-content: flex-end;
  1087. align-items: center;
  1088. border-left: 4rpx solid #F0F4F7;
  1089. box-sizing: border-box;
  1090. padding-right: 20rpx;
  1091. }
  1092. .caseimg {
  1093. width: 40rpx;
  1094. }
  1095. .searchInput {
  1096. width: 100%;
  1097. height: 90rpx;
  1098. background-color: #fff;
  1099. display: flex;
  1100. align-items: center;
  1101. justify-content: center;
  1102. font-size: 28rpx;
  1103. border-radius: 10rpx;
  1104. }
  1105. .searchInput>textarea {
  1106. pointer-events: initial;
  1107. width: 80%;
  1108. height: 60rpx;
  1109. line-height: 60rpx;
  1110. background-color: #F0F4F7;
  1111. border-radius: 30rpx;
  1112. margin-right: 20rpx;
  1113. box-sizing: border-box;
  1114. padding: 0rpx 20rpx;
  1115. }
  1116. .noneHouseType {
  1117. color: #999999;
  1118. font-size: 32rpx;
  1119. }
  1120. .fullVideo {
  1121. width: 70rpx;
  1122. height: 70rpx;
  1123. background-color: rgba(0, 0, 0, 0.5);
  1124. border-radius: 50%;
  1125. position: absolute;
  1126. top: 70rpx;
  1127. transform: translateY(-50%);
  1128. right: 20rpx;
  1129. display: flex;
  1130. justify-content: center;
  1131. align-items: center;
  1132. z-index: 999;
  1133. }
  1134. .fullVideo>image {
  1135. width: 30rpx;
  1136. height: 30rpx;
  1137. }
  1138. .overflowHidden {
  1139. width: 100%;
  1140. height: 100vh;
  1141. background-color: #F0F4F7;
  1142. position: relative;
  1143. overflow: hidden;
  1144. box-sizing: border-box;
  1145. padding-bottom: 160rpx;
  1146. }
  1147. .devCaseStyle {
  1148. color: #28A1FF;
  1149. font-size: 24rpx;
  1150. height: 60rpx;
  1151. line-height: 60rpx;
  1152. box-sizing: border-box;
  1153. padding: 0rpx;
  1154. border-top: 1rpx solid #EEEEEE;
  1155. margin-top: 20rpx;
  1156. }
  1157. .lineBg {
  1158. width: 100%;
  1159. height: 20rpx;
  1160. background-color: #F6F6F6;
  1161. }
  1162. .interVrStyle {
  1163. position: absolute;
  1164. width: 90rpx !important;
  1165. top: 50%;
  1166. left: 50%;
  1167. transform: translate(-50%, -50%);
  1168. }
  1169. /* */
  1170. .devCaseBox {
  1171. width: 100%;
  1172. height: auto;
  1173. overflow: hidden;
  1174. background-color: #fff;
  1175. box-sizing: border-box;
  1176. padding: 20rpx 20rpx;
  1177. }
  1178. .devCaseItem {
  1179. width: 100%;
  1180. height: auto;
  1181. overflow: hidden;
  1182. padding: 20rpx 0rpx;
  1183. }
  1184. .devCaseBorderBottom {
  1185. border-bottom: 1rpx solid #D3E3EA;
  1186. }
  1187. .leftCase {
  1188. float: left;
  1189. width: 230rpx;
  1190. height: 180rpx;
  1191. border-radius: 10rpx;
  1192. overflow: hidden;
  1193. }
  1194. .leftCase>image {
  1195. width: 100%;
  1196. height: 100%;
  1197. }
  1198. .rightCase {
  1199. width: 425rpx;
  1200. float: left;
  1201. box-sizing: border-box;
  1202. padding-left: 26rpx;
  1203. }
  1204. .r_case_name {
  1205. width: 100%;
  1206. height: 60rpx;
  1207. line-height: 60rpx;
  1208. white-space: nowrap;
  1209. overflow: hidden;
  1210. text-overflow: ellipsis;
  1211. font-size: 32rpx;
  1212. color: #354555;
  1213. font-weight: bold;
  1214. }
  1215. .r_case_type {
  1216. width: 100%;
  1217. height: 65rpx;
  1218. line-height: 65rpx;
  1219. font-size: 28rpx;
  1220. color: #354555;
  1221. }
  1222. .r_case_style {
  1223. width: 100%;
  1224. height: 60rpx;
  1225. line-height: 60rpx;
  1226. color: #354555;
  1227. font-size: 32rpx;
  1228. }
  1229. .dev_case_title {
  1230. width: 100%;
  1231. color: #354555;
  1232. font-size: 36rpx;
  1233. font-weight: 700;
  1234. box-sizing: border-box;
  1235. height: 60rpx;
  1236. line-height: 60rpx;
  1237. }
  1238. .minHeight {
  1239. min-height: 400rpx;
  1240. }
  1241. .collect_box {
  1242. width: 20%;
  1243. display: flex;
  1244. align-items: center;
  1245. justify-content: flex-end;
  1246. color: #999999;
  1247. font-size: 24rpx;
  1248. }
  1249. .collect_box>image {
  1250. width: 20rpx;
  1251. margin-bottom: 4rpx;
  1252. margin-left: 6rpx;
  1253. }
  1254. .f_left {
  1255. width: 80%;
  1256. font-size: 32rpx;
  1257. font-weight: 600;
  1258. color: #333333;
  1259. }
  1260. .gotobox {
  1261. display: inline-block;
  1262. width: 180rpx;
  1263. font-size: 24rpx;
  1264. color: #fff;
  1265. height: 48rpx;
  1266. line-height: 48rpx;
  1267. position: relative;
  1268. top: 10rpx;
  1269. }
  1270. .houseDscStyle {
  1271. font-size: 28rpx;
  1272. padding: 0rpx 0rpx 15rpx 0rpx;
  1273. }
  1274. .houseDscImage {
  1275. width: 100%;
  1276. }
  1277. .houseDscImage>image {
  1278. width: 100%;
  1279. }
  1280. .showImageNumber {
  1281. position: absolute;
  1282. max-width: 150rpx;
  1283. box-sizing: border-box;
  1284. padding: 0rpx 20rpx;
  1285. background-color: rgba(0, 0, 0, 0.3);
  1286. color: #fff;
  1287. font-size: 24rpx;
  1288. z-index: 9;
  1289. bottom: 20rpx;
  1290. right: 50rpx;
  1291. border-radius: 25rpx;
  1292. }
  1293. .shareTips {
  1294. width: 100%;
  1295. height: 55rpx;
  1296. background-color: #FDDAC4;
  1297. color: #F96400;
  1298. position: fixed;
  1299. bottom: 100rpx;
  1300. left: 0rpx;
  1301. line-height: 55rpx;
  1302. text-align: center;
  1303. font-size: 24rpx;
  1304. }
  1305. .cutAndShare {
  1306. width: 100%;
  1307. height: 100rpx;
  1308. position: fixed;
  1309. bottom: 0rpx;
  1310. left: 0rpx;
  1311. background-color: #fff;
  1312. box-shadow: 0rpx -10rpx 10rpx 6rpx rgba(0, 0, 0, 0.1);
  1313. display: flex;
  1314. }
  1315. .shareCutImg {
  1316. width: 40%;
  1317. height: 100%;
  1318. display: flex;
  1319. align-items: center;
  1320. justify-content: center;
  1321. font-size: 32rpx;
  1322. }
  1323. .shareBtn {
  1324. flex: 1;
  1325. height: 100%;
  1326. background-color: #F96400;
  1327. border-radius: 0rpx !important;
  1328. line-height: 100rpx;
  1329. color: #fff;
  1330. font-size: 32rpx;
  1331. }
  1332. .cutMask {
  1333. width: 100%;
  1334. height: 100vh;
  1335. position: fixed;
  1336. top: 0rpx;
  1337. left: 0rpx;
  1338. background-color: rgba(0, 0, 0, 0.5);
  1339. z-index: 999;
  1340. }
  1341. .cutBlock {
  1342. width: 100%;
  1343. height: 70%;
  1344. background-color: #fff;
  1345. position: absolute;
  1346. bottom: 0rpx;
  1347. left: 0rpx;
  1348. box-sizing: border-box;
  1349. padding: 88rpx 0rpx 100rpx;
  1350. }
  1351. .cutTitle {
  1352. width: 100%;
  1353. height: 88rpx;
  1354. background-color: #F96400;
  1355. color: #fff;
  1356. font-size: 32rpx;
  1357. text-align: center;
  1358. line-height: 88rpx;
  1359. position: absolute;
  1360. top: 0rpx;
  1361. left: 0rpx;
  1362. }
  1363. .cutConfirm {
  1364. width: 100%;
  1365. height: 100rpx;
  1366. background-color: #F96400;
  1367. color: #fff;
  1368. position: absolute;
  1369. bottom: 0rpx;
  1370. left: 0rpx;
  1371. text-align: center;
  1372. line-height: 100rpx;
  1373. font-size: 32rpx;
  1374. border-radius: 0rpx;
  1375. }
  1376. .cutContent {
  1377. width: 100%;
  1378. height: 100%;
  1379. overflow: auto;
  1380. }
  1381. .cutShareLabel {
  1382. width: 100%;
  1383. height: 66rpx;
  1384. line-height: 66rpx;
  1385. box-sizing: border-box;
  1386. padding: 0rpx 20rpx;
  1387. }
  1388. .cutImglistBox {
  1389. width: 100%;
  1390. height: auto;
  1391. overflow: hidden;
  1392. box-sizing: border-box;
  1393. padding: 20rpx;
  1394. display: flex;
  1395. flex-wrap: wrap;
  1396. }
  1397. .uploadImg {
  1398. width: 150rpx;
  1399. height: 150rpx;
  1400. border: 2rpx solid #D7DFE4;
  1401. display: flex;
  1402. flex-direction: column;
  1403. justify-content: center;
  1404. align-items: center;
  1405. }
  1406. .uploadImg>image {
  1407. width: 50rpx;
  1408. }
  1409. .u-text {
  1410. font-size: 28rpx;
  1411. color: #B5C6D3;
  1412. }
  1413. .imageItem {
  1414. width: 150rpx;
  1415. height: 150rpx;
  1416. background-color: #ccc;
  1417. margin-right: 10rpx;
  1418. margin-bottom: 10rpx;
  1419. position: relative;
  1420. }
  1421. .imageItem>image {
  1422. width: 100%;
  1423. height: 100%;
  1424. }
  1425. .imgdel {
  1426. width: 60rpx;
  1427. height: 60rpx;
  1428. background-color: rgba(0, 0, 0, 0.5);
  1429. border-radius: 50%;
  1430. display: flex;
  1431. justify-content: center;
  1432. align-items: center;
  1433. position: absolute;
  1434. top: 50%;
  1435. left: 50%;
  1436. transform: translate(-50%, -50%);
  1437. box-shadow: 0rpx 0rpx 10rpx 10rpx rgba(0, 0, 0, 0.05);
  1438. }
  1439. .imgdel>image {
  1440. width: 50rpx;
  1441. }
  1442. .u-textarea-box {
  1443. width: 100%;
  1444. height: 400rpx;
  1445. box-sizing: border-box;
  1446. padding: 20rpx;
  1447. }
  1448. .u-textarea {
  1449. width: 100%;
  1450. background-color: #F0F4F7;
  1451. padding: 10rpx;
  1452. }
  1453. .shareApprovalbtn {
  1454. width: 100%;
  1455. height: 88rpx;
  1456. background-color: #249EFB;
  1457. color: #fff;
  1458. font-size: 30rpx;
  1459. text-align: center;
  1460. line-height: 88rpx;
  1461. position: fixed;
  1462. bottom: 0rpx;
  1463. left: 0rpx;
  1464. z-index: 99;
  1465. }
  1466. .shareMask {
  1467. width: 100%;
  1468. height: 100vh;
  1469. background-color: rgba(0, 0, 0, 0.4);
  1470. position: fixed;
  1471. top: 0rpx;
  1472. left: 0rpx;
  1473. z-index: 999;
  1474. }
  1475. .shareBlock {
  1476. width: 100%;
  1477. height: 75%;
  1478. background-color: #fff;
  1479. position: absolute;
  1480. bottom: 0rpx;
  1481. left: 0rpx;
  1482. box-sizing: border-box;
  1483. padding-top: 88rpx;
  1484. }
  1485. .shareBlockTitle {
  1486. width: 100%;
  1487. height: 88rpx;
  1488. background-color: #249EFB;
  1489. color: #fff;
  1490. font-size: 30rpx;
  1491. text-align: center;
  1492. line-height: 88rpx;
  1493. position: absolute;
  1494. top: 0rpx;
  1495. left: 0rpx;
  1496. }
  1497. .shareBlockContent {
  1498. width: 100%;
  1499. height: 100%;
  1500. overflow: auto;
  1501. box-sizing: border-box;
  1502. padding: 20rpx;
  1503. }
  1504. .shareApprovalItem {
  1505. width: 100%;
  1506. height: auto;
  1507. overflow: hidden;
  1508. display: flex;
  1509. }
  1510. .shareApprovalLeft {
  1511. width: 130rpx;
  1512. }
  1513. .shareApprovalLeft>image {
  1514. width: 96rpx;
  1515. height: 96rpx;
  1516. border-radius: 50%;
  1517. overflow: hidden;
  1518. }
  1519. .shareApprovalRight {
  1520. flex: 1;
  1521. }
  1522. .shareApprovalText {
  1523. width: 100%;
  1524. height: 66rpx;
  1525. line-height: 66rpx;
  1526. }
  1527. .shareApprovalText .satName {
  1528. color: 30rpx;
  1529. color: #333333;
  1530. }
  1531. .shareApprovalText .satTime {
  1532. color: #A8BBCB;
  1533. font-size: 26rpx;
  1534. margin-left: 20rpx;
  1535. }
  1536. .shareApprovalImgBox {
  1537. width: 100%;
  1538. height: auto;
  1539. overflow: hidden;
  1540. display: flex;
  1541. flex-wrap: wrap;
  1542. }
  1543. .shareApprovalImgItem {
  1544. width: 180rpx;
  1545. height: 150rpx;
  1546. background-color: #ccc;
  1547. margin-right: 10rpx;
  1548. margin-bottom: 10rpx;
  1549. }
  1550. .shareApprovalImgItem>image {
  1551. width: 100%;
  1552. height: 100%;
  1553. }
  1554. .shareApprovalMsg {
  1555. width: 100%;
  1556. box-sizing: border-box;
  1557. padding: 5rpx 0rpx 20rpx;
  1558. font-size: 26rpx;
  1559. color: #333333;
  1560. }
  1561. .shareApproValBtnBox {
  1562. width: 100%;
  1563. height: 88rpx;
  1564. display: flex;
  1565. align-items: center;
  1566. justify-content: space-around;
  1567. }
  1568. .aConfirmBtn {
  1569. width: 260rpx;
  1570. height: 88rpx;
  1571. line-height: 88rpx;
  1572. border-radius: 44rpx;
  1573. background-color: #249EFB;
  1574. color: #fff;
  1575. font-size: 30rpx;
  1576. }
  1577. .aRejectBtn {
  1578. width: 260rpx;
  1579. height: 88rpx;
  1580. line-height: 88rpx;
  1581. border-radius: 44rpx;
  1582. background-color: #B5CADD;
  1583. color: #fff;
  1584. font-size: 30rpx;
  1585. }
  1586. .b_img_icon {
  1587. width: 101%;
  1588. height: 100rpx;
  1589. position: absolute;
  1590. bottom: -8rpx;
  1591. left: -4rpx;
  1592. z-index: 999;
  1593. }
  1594. .b_img_icon>image {
  1595. width: 100%;
  1596. position: relative;
  1597. }
  1598. .companyMsg {
  1599. width: 100%;
  1600. height: 92rpx;
  1601. position: absolute;
  1602. bottom: 8rpx;
  1603. left: 0rpx;
  1604. display: flex;
  1605. z-index: 9;
  1606. align-items: flex-end;
  1607. }
  1608. .companyleft {
  1609. width: 42%;
  1610. height: 88rpx;
  1611. display: flex;
  1612. display: flex;
  1613. align-items: center;
  1614. justify-content: center;
  1615. }
  1616. .companyleft>.companylogo {
  1617. width: 50rpx;
  1618. height: 50rpx;
  1619. margin-left: -20rpx;
  1620. border-radius: 50%;
  1621. overflow: hidden;
  1622. position: relative;
  1623. z-index: 9 !important;
  1624. border-radius: 50%;
  1625. border: 2rpx solid #FFE2CB;
  1626. }
  1627. .companylogo>image {
  1628. width: 100%;
  1629. height: 100%;
  1630. }
  1631. .companyleft>view {
  1632. max-width: 190rpx;
  1633. font-size: 32rpx !important;
  1634. color: #FFE2CB;
  1635. font-weight: 700;
  1636. margin-left: 10rpx;
  1637. white-space: nowrap;
  1638. overflow: hidden;
  1639. }
  1640. .companyright {
  1641. width: 58%;
  1642. height: 72rpx;
  1643. display: flex;
  1644. align-items: center;
  1645. justify-content: center;
  1646. font-size: 30rpx;
  1647. color: #231B28;
  1648. box-sizing: border-box;
  1649. padding: 0rpx 30rpx;
  1650. white-space: nowrap;
  1651. overflow: hidden;
  1652. text-overflow: ellipsis;
  1653. }
  1654. .contactFixedBottom {
  1655. width: 100%;
  1656. height: 150rpx;
  1657. background: #FFFFFF;
  1658. box-shadow: 0rpx 0rpx 48rpx 0rpx rgba(0, 0, 0, 0.1);
  1659. border-radius: 45rpx 45rpx 0rpx 0rpx;
  1660. position: fixed;
  1661. bottom: 0rpx;
  1662. left: 0rpx;
  1663. z-index: 9;
  1664. display: flex;
  1665. }
  1666. .userInfo {
  1667. flex: none;
  1668. width: 50%;
  1669. height: 100%;
  1670. display: flex;
  1671. align-items: center;
  1672. box-sizing: border-box;
  1673. padding: 0rpx 20rpx;
  1674. }
  1675. .headerBack {
  1676. position: absolute;
  1677. width: 40rpx;
  1678. left: 20rpx;
  1679. top: 20rpx;
  1680. }
  1681. .mobile {
  1682. width: 150rpx;
  1683. height: 80rpx;
  1684. background-color: #F03947;
  1685. border-radius: 19rpx;
  1686. }
  1687. .wechat {
  1688. width: 150rpx;
  1689. height: 80rpx;
  1690. background-color: #07C160;
  1691. border-radius: 19rpx;
  1692. }
  1693. .wechatIcon {
  1694. width: 40rpx;
  1695. margin-right: 10rpx;
  1696. }
  1697. .phoneIcon {
  1698. width: 35rpx;
  1699. margin-right: 10rpx;
  1700. }
  1701. .contactType {
  1702. flex: none;
  1703. width: 50%;
  1704. height: 100%;
  1705. display: flex;
  1706. align-items: center;
  1707. box-sizing: border-box;
  1708. justify-content: space-around;
  1709. }
  1710. .infoMsg {
  1711. box-sizing: border-box;
  1712. padding-left: 10rpx;
  1713. }
  1714. .userInfoAvatar {
  1715. width: 80rpx;
  1716. height: 80rpx;
  1717. border-radius: 50%;
  1718. overflow: hidden;
  1719. }
  1720. .nameCard {
  1721. width: 30rpx;
  1722. margin-left: 10rpx;
  1723. }
  1724. .borderNone {
  1725. border-bottom: none !important;
  1726. }
  1727. .bgGroup {
  1728. background-color: #f2f2f2 !important;
  1729. }
  1730. .remarkText {
  1731. max-width: 180rpx;
  1732. font-size: 20rpx;
  1733. color: #999999;
  1734. display: flex;
  1735. flex-wrap: nowrap;
  1736. align-items: flex-end;
  1737. margin-left: 10rpx;
  1738. white-space: nowrap;
  1739. overflow: hidden;
  1740. text-overflow: ellipsis;
  1741. }