progressdetail.wxss 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260
  1. /* index/pages/progressdetail/progressdetail.wxss */
  2. .progressdetail {
  3. width: 100%;
  4. min-height: 100vh;
  5. background-color: #F0F4F7;
  6. position: relative;
  7. overflow: auto;
  8. padding-bottom: 100rpx;
  9. }
  10. .image-box {
  11. width: 100%;
  12. height: 450rpx;
  13. overflow: hidden;
  14. position: relative;
  15. }
  16. .image-box image {
  17. width: 100%;
  18. }
  19. .vr-box {
  20. width: 120rpx;
  21. height: 65rpx;
  22. position: absolute;
  23. z-index: 9;
  24. top: 40%;
  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: 94%;
  35. padding: 30rpx 20rpx 40rpx;
  36. margin: -90rpx auto 0rpx;
  37. position: relative;
  38. z-index: 10;
  39. background-color: #fff;
  40. border-radius: 10rpx;
  41. box-shadow: 0rpx 4rpx 16rpx 0rpx rgba(36,158,251,0.23);
  42. }
  43. .f-data {
  44. width: 100%;
  45. display: flex;
  46. align-items: center;
  47. font-size: 29rpx;
  48. margin: 11rpx 0rpx 13rpx;
  49. }
  50. .f-data>view {
  51. flex: 1;
  52. }
  53. .justify-end {
  54. display: flex;
  55. justify-content: flex-end;
  56. }
  57. .justify-center {
  58. display: flex;
  59. justify-content: center;
  60. }
  61. .color687888 {
  62. color: #687888;
  63. }
  64. .f-title {
  65. font-size: 36rpx;
  66. color: #222222;
  67. font-weight: 700;
  68. display: flex;
  69. justify-content: space-between;
  70. }
  71. .dscText {
  72. font-size: 29rpx;
  73. margin-left: 20rpx;
  74. color: #28A1FF;
  75. }
  76. .f-area {
  77. font-size: 29rpx;
  78. color: #B5D3E6;
  79. margin-top: 10rpx;
  80. }
  81. .f-delivery,
  82. .f-address {
  83. display: flex;
  84. align-items: center;
  85. margin-bottom: 12rpx;
  86. }
  87. .f-delivery-name,
  88. .f-address-name,
  89. .f-dsc-name {
  90. font-size: 29rpx;
  91. line-height: 50rpx;
  92. }
  93. .f-address_ico {
  94. width: 35rpx;
  95. }
  96. .f-delivery-time {
  97. color: #333333;
  98. line-height: 50rpx;
  99. font-size: 29rpx;
  100. }
  101. .flex-sub {
  102. flex: 1;
  103. }
  104. .f-address-dsc {
  105. font-size: 28rpx;
  106. }
  107. .f-dsc {
  108. display: flex;
  109. }
  110. .f-dsc-arrow {
  111. width: 20rpx;
  112. }
  113. .rotate90 {
  114. transform: rotate(90deg);
  115. }
  116. .f-dsc-content {
  117. font-size: 29rpx;
  118. }
  119. .ellipsisOne {
  120. white-space: nowrap;
  121. overflow: hidden;
  122. text-overflow: ellipsis;
  123. }
  124. .line {
  125. width: 100%;
  126. height: 32rpx;
  127. background-color: #F6F6F6;
  128. }
  129. .updateBox {
  130. width: 100%;
  131. height: auto;
  132. overflow: hidden;
  133. padding: 30rpx 20rpx;
  134. background-color: #fff;
  135. display: flex;
  136. align-items: center;
  137. }
  138. .u-img-box {
  139. width: 80rpx;
  140. height: 80rpx;
  141. border-radius: 50%;
  142. overflow: hidden;
  143. }
  144. .u-img-box image {
  145. width: 100%;
  146. height: 100%;
  147. }
  148. .u-company {
  149. overflow: hidden;
  150. box-sizing: border-box;
  151. padding: 0rpx 20rpx;
  152. }
  153. .u-company-name {
  154. font-size: 32rpx;
  155. color: #333333;
  156. }
  157. .u-company-date {
  158. color: #CECECE;
  159. font-size: 28rpx;
  160. }
  161. .u-button {
  162. width: 120rpx;
  163. height: 50rpx;
  164. background-color: #28A1FF;
  165. color: #fff;
  166. font-size: 26rpx;
  167. font-style: normal;
  168. line-height: 50rpx !important;
  169. }
  170. .house-box {
  171. width: 100%;
  172. padding: 30rpx 20rpx;
  173. background-color: #fff;
  174. }
  175. .h-title {
  176. height: 40rpx;
  177. border-left: 8rpx solid #28A1FF;
  178. line-height: 40rpx;
  179. box-sizing: border-box;
  180. padding-left: 10rpx;
  181. color: #333333;
  182. font-weight: 700;
  183. }
  184. .h-content {
  185. width: 100%;
  186. overflow-y: hidden;
  187. overflow-x: auto;
  188. margin-top: 30rpx;
  189. display: flex;
  190. align-items: center;
  191. flex-wrap: nowrap;
  192. }
  193. .h-c-item {
  194. flex: none;
  195. width: 300rpx;
  196. height: 200rpx;
  197. border: 2rpx solid #EFEFEF;
  198. margin-right: 20rpx;
  199. }
  200. .h-c-i-top {
  201. height: 140rpx;
  202. box-sizing: border-box;
  203. padding: 20rpx;
  204. }
  205. .h-c-i-top-name {
  206. font-size: 32rpx;
  207. font-weight: 700;
  208. color: #333333;
  209. }
  210. .h-c-i-top-case {
  211. font-size: 24rpx;
  212. color: #CDCDCD;
  213. margin-top: 10rpx;
  214. }
  215. .h-c-i-bottom {
  216. width: 100%;
  217. height: 60rpx;
  218. border-top: 2rpx solid #EFEFEF;
  219. box-sizing: border-box;
  220. padding: 0px 20rpx;
  221. font-size: 24rpx;
  222. color: #28A1FF;
  223. line-height: 60rpx;
  224. }
  225. .timelineBox {
  226. width: 100%;
  227. height: auto;
  228. overflow: hidden;
  229. padding: 20rpx 20rpx 50rpx;
  230. margin-top: 20rpx;
  231. }
  232. .noneText {
  233. width: 100%;
  234. display: flex;
  235. align-items: center;
  236. justify-content: center;
  237. font-size: 28rpx;
  238. color: #999999;
  239. }
  240. .timeline-item {
  241. width: 100%;
  242. height: auto;
  243. position: relative;
  244. }
  245. .moreClass {
  246. width: 100%;
  247. text-align: center;
  248. line-height: 60rpx;
  249. color: #6C7B8B;
  250. margin-top: -4rpx;
  251. font-size: 28rpx;
  252. }
  253. .rotate180 {
  254. transform: rotate(180deg);
  255. }
  256. .moreClass > image {
  257. width: 25rpx;
  258. position: relative;
  259. top: 5rpx;
  260. }
  261. .timeline-item-date {
  262. width: 100%;
  263. padding: 8rpx 0rpx;
  264. font-size: 20rpx;
  265. border-radius: 4rpx;
  266. display: flex;
  267. justify-content: space-between;
  268. align-items: center;
  269. }
  270. .progressTypeBtn {
  271. display: inline-block;
  272. background-color: #F0F4F7;
  273. color: #9DB6CF;
  274. padding: 5rpx 15rpx;
  275. border-radius: 5rpx;
  276. font-size: 20rpx;
  277. }
  278. .timeline-item-name {
  279. margin: 0rpx;
  280. color: #333333;
  281. font-size: 32rpx;
  282. display: flex;
  283. align-items: flex-start;
  284. }
  285. .timeline-item-name > view {
  286. flex:1;
  287. box-sizing: border-box;
  288. padding-right: 30rpx;
  289. }
  290. .progress_share {
  291. background-color: #fff;
  292. padding: 0rpx !important;
  293. margin: 6rpx 0rpx 0rpx !important;
  294. font-style: normal;
  295. width: 40rpx;
  296. height: 40rpx;
  297. display: flex;
  298. align-items: center;
  299. justify-content: center;
  300. }
  301. .progress_share > image {
  302. width: 30rpx;
  303. }
  304. .color6C7B8B {
  305. color: #6C7B8B;
  306. }
  307. .timeline-item-dsc {
  308. font-size: 24rpx;
  309. }
  310. .ellipsisTwo {
  311. display: -webkit-box;
  312. -webkit-box-orient: vertical;
  313. -webkit-line-clamp: 2;
  314. overflow: hidden;
  315. text-overflow: ellipsis;
  316. }
  317. .t-allContent {
  318. margin-top: 20rpx;
  319. width: 110rpx;
  320. height: 60rpx;
  321. line-height: 60rpx;
  322. font-size: 24rpx;
  323. background-color: #F0F4F7;
  324. color: #249EFB;
  325. }
  326. .timeline-item-img {
  327. padding: 20rpx 0rpx;
  328. }
  329. .vr-img-link {
  330. width: 150rpx;
  331. height: 150rpx;
  332. display: inline-block;
  333. margin-right: 30rpx;
  334. margin-bottom: 30rpx;
  335. position: relative;
  336. background-color: #fff;
  337. }
  338. .vr-img-link image {
  339. width: 100%;
  340. height: 100%;
  341. }
  342. .vr-img-text {
  343. position: absolute;
  344. width: 100rpx;
  345. height: 60rpx;
  346. z-index: 9;
  347. top: 50%;
  348. left: 50%;
  349. transform: translate(-50%,-50%);
  350. color: #fff;
  351. font-size: 28rpx;
  352. }
  353. .timeline-item-circle {
  354. width: 20rpx;
  355. height: 20rpx;
  356. border: 5rpx solid #28A1FF;
  357. background-color: #fff;
  358. border-radius: 50%;
  359. position: absolute;
  360. left: -60rpx;
  361. top: 16rpx;
  362. z-index: 9;
  363. }
  364. .timeline-item-line {
  365. width: 2rpx;
  366. height: 100%;
  367. border-left: 2rpx dashed #9C9C9C;
  368. position: absolute;
  369. left: -51.5rpx;
  370. top: 16rpx;
  371. z-index: 8;
  372. }
  373. .listBoxStyle {
  374. width: 94%;
  375. height: auto;
  376. margin: 0rpx auto 60rpx;
  377. border-radius: 10rpx;
  378. background-color: #fff;
  379. }
  380. .communitymsg {
  381. width: 100%;
  382. margin: 20rpx auto 0rpx;
  383. white-space: nowrap;
  384. overflow-x: auto;
  385. overflow-y: hidden;
  386. background-color: #fff;
  387. padding: 20rpx 0 0 20rpx;
  388. display: flex;
  389. align-items: center;
  390. border-bottom: 2rpx solid #D4E4ED;
  391. }
  392. .pt0 {
  393. padding-top: 0rpx !important;
  394. }
  395. .communitymsg view {
  396. display: inline-block;
  397. margin-right: 40rpx;
  398. padding-bottom: 20rpx;
  399. color: #667687;
  400. font-size: 29rpx;
  401. }
  402. .communitymsg view.nowtitle {
  403. position: relative;
  404. font-weight: 700;
  405. color: #222222;
  406. font-size: 32rpx;
  407. }
  408. .communitymsg view.nowtitle::after {
  409. content: " ";
  410. display: block;
  411. width: 24rpx;
  412. height: 10rpx;
  413. border-radius: 5rpx;
  414. position: absolute;
  415. bottom: 4rpx;
  416. left: 50%;
  417. background-color: #222222;
  418. transform: translateX(-50%);
  419. }
  420. /* 在施工地 */
  421. .constructbox {
  422. padding-top: 16rpx;
  423. }
  424. .constructSitebox {
  425. display: block;
  426. width: 680rpx;
  427. background-color: #fff;
  428. border-radius: 16rpx;
  429. border: 1px solid #ECECEC;
  430. box-sizing: border-box;
  431. padding: 24rpx 20rpx 28rpx;
  432. margin: 0 auto 20rpx;
  433. box-shadow: 0 2px 8px 0 rgba(56, 72, 85, 0.20);
  434. overflow: hidden;
  435. }
  436. .coverbox {
  437. width: 100%;
  438. height: 180rpx;
  439. overflow: hidden;
  440. }
  441. .coverbox > image {
  442. display: block;
  443. width: 100%;
  444. height: 100%;
  445. }
  446. .constructit {
  447. width: 400rpx;
  448. }
  449. .casecollectbox image {
  450. width: 20rpx;
  451. height: 20rpx;
  452. position: relative;
  453. top: 18rpx;
  454. margin-right: 8rpx;
  455. }
  456. .constructSitebox .casecollectbox image {
  457. top: 11rpx;
  458. }
  459. .constructSitebox .casecollectbox image {
  460. top: 11rpx;
  461. }
  462. .sitestep {
  463. display: block;
  464. border-top: 1px solid #ECECEC;
  465. padding: 24rpx 10rpx;
  466. }
  467. .everysteps {
  468. text-align: center;
  469. position: relative;
  470. }
  471. .everysteps .stepnum {
  472. display: block;
  473. width: 32rpx;
  474. height: 32rpx;
  475. background: #FFFFFF;
  476. border: 2rpx solid #CCCCCC;
  477. /* background: #28A1FF; */
  478. border-radius: 50%;
  479. /* color: #fff; */
  480. margin: 0 auto 12rpx;
  481. position: relative;
  482. z-index: 2;
  483. }
  484. .everysteps::after {
  485. display: block;
  486. content: " ";
  487. width: 125.2rpx;
  488. height: 10rpx;
  489. background: #EEEEEE;
  490. position: absolute;
  491. top: 11rpx;
  492. left: -50%;
  493. z-index: 1;
  494. }
  495. .sitestep .everysteps:first-child::after {
  496. display: none;
  497. }
  498. .laststeps .stepnum {
  499. background-color: #28A1FF;
  500. border-color: #28A1FF;
  501. color: #fff !important;
  502. }
  503. .laststeps::after {
  504. background-color: #28A1FF;
  505. }
  506. .duihaoIcon {
  507. width: 20rpx;
  508. height: 20rpx;
  509. margin-top: 7rpx;
  510. }
  511. .rightbtnbox {
  512. display: block;
  513. position: fixed;
  514. right: 0rpx;
  515. bottom: 200rpx;
  516. z-index: 11;
  517. }
  518. .tcollectbox {
  519. display: block;
  520. width: 98rpx;
  521. height: 98rpx;
  522. background-color: #ffffff;
  523. box-shadow: 0 2rpx 8rpx 0 rgba(56, 72, 85, 0.20);
  524. border: solid 1px #B6CADE;
  525. border-radius: 50%;
  526. position: relative;
  527. right: 28rpx;
  528. overflow: hidden;
  529. }
  530. .colorB6CADE {
  531. color: #B6CADE;
  532. }
  533. .tcollectbox image {
  534. display: block;
  535. width: 27rpx;
  536. height: 27rpx;
  537. margin: 18rpx auto 12rpx;
  538. }
  539. .tsharebox {
  540. background-color: #259cfa;
  541. box-shadow: 0px 2rpx 15rpx 1px rgba(36, 157, 250, 0.48);
  542. border: solid 1px #249dfa;
  543. margin-bottom: 24rpx;
  544. }
  545. .sharenumBox .pricebtnimg {
  546. position: relative;
  547. right: -14rpx;
  548. top: 0;
  549. width: 82rpx;
  550. height: 92rpx;
  551. margin-top: 24rpx;
  552. }
  553. .switchTab {
  554. position: absolute;
  555. max-width: 80%;
  556. height: 56rpx;
  557. background-color: rgba(255, 255, 255, 0.6);
  558. color: #333333;
  559. z-index: 999;
  560. bottom: 110rpx;
  561. left: 50%;
  562. transform: translateX(-50%);
  563. border-radius: 28rpx;
  564. display: flex;
  565. align-items: center;
  566. }
  567. .switchTab>view {
  568. width: 130rpx;
  569. height: 100%;
  570. display: flex;
  571. justify-content: center;
  572. align-items: center;
  573. font-size: 24rpx;
  574. }
  575. .activeTab {
  576. background-color: #249EFB;
  577. border-radius: 35rpx;
  578. color: #fff;
  579. }
  580. .houseTypeBox {
  581. width: 100%;
  582. padding-bottom: 20rpx;
  583. }
  584. .houseTypeHeader {
  585. width: 100%;
  586. height: 80rpx;
  587. display: flex;
  588. align-items: center;
  589. box-sizing: border-box;
  590. padding: 0rpx 20rpx;
  591. margin-top: 10rpx;
  592. }
  593. .hhRight {
  594. display: inline-block;
  595. width: 100%;
  596. white-space: nowrap;
  597. overflow-x: auto;
  598. overflow-y: hidden;
  599. font-size: 29rpx;
  600. color: #222222;
  601. }
  602. .hhRight>view {
  603. display: inline-block;
  604. margin-right: 20rpx;
  605. }
  606. .hhactive {
  607. color: #249EFB;
  608. font-weight: 700;
  609. position: relative;
  610. }
  611. .houseTypeShowBox {
  612. display: flex;
  613. align-items: center;
  614. flex-wrap: nowrap;
  615. overflow-x: auto;
  616. overflow-y: hidden;
  617. box-sizing: border-box;
  618. }
  619. .houseTypeItem {
  620. flex: none;
  621. display: block;
  622. width: 420rpx;
  623. padding: 20rpx;
  624. }
  625. .house_image {
  626. width: 100%;
  627. height: 300rpx;
  628. border: 2rpx solid #D3E4ED;
  629. box-sizing: border-box;
  630. padding: 10rpx;
  631. display: flex;
  632. justify-content: center;
  633. align-items: center;
  634. }
  635. .bcE8F3FF {
  636. background-color: #E8F3FF;
  637. }
  638. .house_image>image {
  639. width: 100%;
  640. height: 100%;
  641. }
  642. .h-dsc111 {
  643. margin-top: 10rpx;
  644. display: flex;
  645. justify-content: space-between;
  646. font-size: 29rpx;
  647. }
  648. .h-area111 {
  649. font-size: 29rpx;
  650. line-height: 60rpx;
  651. }
  652. .h-operate {
  653. margin-top: 10rpx;
  654. width: 100%;
  655. display: flex;
  656. justify-content: space-between;
  657. }
  658. .h-operate>button {
  659. width: 140rpx;
  660. height: 60rpx;
  661. font-size: 29rpx;
  662. line-height: 60rpx;
  663. text-align: center;
  664. color: #fff;
  665. }
  666. .fw700 {
  667. font-weight: 700;
  668. }
  669. .bg249EFB {
  670. background-color: #249EFB;
  671. }
  672. .bg1BCFA7 {
  673. background-color: #1BCFA7;
  674. }
  675. .caseBoxStyle {
  676. width: 100%;
  677. height: auto;
  678. box-sizing: border-box;
  679. padding-left: 12rpx;
  680. }
  681. /*案例样式*/
  682. .caselistbox {
  683. display: block;
  684. padding: 20rpx 0rpx 30rpx;
  685. padding-left: 15rpx;
  686. }
  687. .everycasebox {
  688. width: 320rpx;
  689. box-shadow: 0 4rpx 20rpx 0 rgba(36, 158, 251, 0.26);
  690. border-radius: 10rpx;
  691. overflow: hidden;
  692. margin-bottom: 20rpx;
  693. }
  694. .caselistbox .everycasebox:nth-of-type(2n-1) {
  695. margin-right: 20rpx;
  696. }
  697. .caselistbox .everycasebox .imgbox {
  698. height: 220rpx;
  699. }
  700. .caselistbox .everycasebox .imgbox image {
  701. display: block;
  702. width: 100%;
  703. height: 100%;
  704. }
  705. .casehousemsgbox {
  706. display: block;
  707. position: absolute;
  708. bottom: 0;
  709. left: 0;
  710. width: 100%;
  711. background-color: rgb(56, 72, 85);
  712. opacity: 0.7;
  713. z-index: 2;
  714. }
  715. .casemsgbox {
  716. padding: 20rpx 10rpx 30rpx;
  717. }
  718. /*案例样式*/
  719. .s-count {
  720. position: absolute;
  721. right: 20rpx;
  722. bottom: 112rpx;
  723. color: #ffffff;
  724. font-size: 29rpx;
  725. background-color: rgba(0,0,0,0.5);
  726. padding: 1rpx 15rpx;
  727. border-radius: 25rpx;
  728. }
  729. .timelineBox-header {
  730. display: flex;
  731. align-items: center;
  732. justify-content: space-between;
  733. align-items: center;
  734. padding: 0rpx 0rpx 20rpx;
  735. }
  736. .p-type-btn {
  737. width: 150rpx;
  738. height: 60rpx;
  739. line-height: 60rpx;
  740. color: #333333;
  741. font-weight: 700;
  742. font-size: 36rpx;
  743. background-color: transparent;
  744. }
  745. .maskWH {
  746. width: 100%;
  747. height: 100vh;
  748. position: fixed;
  749. background-color: rgba(0,0,0,0.5);
  750. z-index: 9999;
  751. top: 0rpx;
  752. left: 0rpx;
  753. display: flex;
  754. justify-content: center;
  755. align-items: center;
  756. }
  757. .maskBox {
  758. width: 90%;
  759. max-height: 1000rpx;
  760. background-color: #fff;
  761. position: relative;
  762. border-radius: 10rpx;
  763. box-sizing: border-box;
  764. padding: 96rpx 0rpx 0rpx;
  765. }
  766. .close_icon {
  767. width: 52rpx;
  768. height: 52rpx;
  769. background-color: #EEEEEE;
  770. display: flex;
  771. align-items: center;
  772. justify-content: center;
  773. border-radius: 50%;
  774. position: absolute;
  775. right: -20rpx;
  776. top: -20rpx;
  777. }
  778. .close_icon image {
  779. width: 40rpx;
  780. }
  781. .m_case_title {
  782. height: 96rpx;
  783. width: 100%;
  784. text-align: center;
  785. line-height: 96rpx;
  786. border-bottom: 1rpx solid #CCCCCC;
  787. color: #333333;
  788. font-weight: bold;
  789. position: absolute;
  790. top: 0rpx;
  791. left: 0rpx;
  792. }
  793. .m_case_content {
  794. width: 100%;
  795. height: 904rpx;
  796. overflow-y: auto;
  797. box-sizing: border-box;
  798. padding-top: 10rpx;
  799. }
  800. .m_case_item {
  801. width: 100%;
  802. height: 80rpx;
  803. line-height: 90rpx;
  804. display: flex;
  805. justify-content: space-between;
  806. box-sizing: border-box;
  807. padding: 0rpx 30rpx;
  808. }
  809. .m_case_type {
  810. color: #249EFB;
  811. }
  812. .m_case_name {
  813. max-width: 65%;
  814. overflow: hidden;
  815. white-space: nowrap;
  816. text-overflow: ellipsis;
  817. }
  818. .swiper-item {
  819. height: auto;
  820. }
  821. .swiper-item>image {
  822. width: 100%;
  823. }
  824. .topNumber {
  825. position: absolute;
  826. top: 0rpx;
  827. left: 50%;
  828. transform: translateX(-50%);
  829. color: #fff;
  830. }
  831. .hh-vrView {
  832. width: 180rpx;
  833. height: 60rpx;
  834. background-color: rgba(0,0,0,0.5);
  835. color: #fff;
  836. border-radius: 30rpx;
  837. font-size: 28rpx;
  838. position: absolute;
  839. bottom: 20rpx;
  840. left: 20rpx;
  841. display: flex;
  842. align-items: center;
  843. justify-content: center;
  844. }
  845. .hh-vrView > image {
  846. width: 40rpx;
  847. }
  848. /* 弹窗 */
  849. .maskBg {
  850. width: 100%;
  851. height: 100vh;
  852. position: fixed;
  853. top: 0rpx;
  854. left: 0rpx;
  855. background-color: rgba(0,0,0,0.4);
  856. z-index: 99999;
  857. display: flex;
  858. justify-content: center;
  859. align-items: center;
  860. }
  861. .dialog {
  862. width: 90%;
  863. height: auto;
  864. padding: 40rpx 0rpx 0rpx;
  865. overflow: hidden;
  866. background-color: #fff;
  867. border-radius: 10rpx;
  868. }
  869. .ddTitle {
  870. width: 100%;
  871. height: 80rpx;
  872. line-height: 60rpx;
  873. text-align: center;
  874. color: #000000;
  875. font-weight: 700;
  876. font-size: 32rpx;
  877. border-bottom: 1rpx solid #f2f2f2;
  878. }
  879. .ddContent {
  880. width: 100%;
  881. min-height: 400rpx;
  882. max-height: 800rpx;
  883. box-sizing: border-box;
  884. overflow-y: auto;
  885. overflow-x: hidden;
  886. padding: 20rpx;
  887. }
  888. .ddBtn {
  889. width: 100%;
  890. height: 108rpx;
  891. line-height: 108rpx;
  892. text-align: center;
  893. color: #576B95;
  894. font-weight: 700;
  895. border-top: 2rpx solid #F5F5F5;
  896. font-size: 32rpx;
  897. }
  898. /* end */
  899. .caseHeader {
  900. border-bottom: 1rpx solid #f5f5f5;
  901. }
  902. .caseSearchItem {
  903. flex:1;
  904. display: flex;
  905. align-items: center;
  906. justify-content: center;
  907. }
  908. .caseName {
  909. font-size: 29rpx;
  910. max-width: 120rpx;
  911. white-space: nowrap;
  912. overflow: hidden;
  913. text-overflow: ellipsis;
  914. }
  915. .caseSearchItem > image {
  916. width: 20rpx;
  917. margin-left: 10rpx;
  918. }
  919. .caseStyleBox {
  920. font-size: 28rpx;
  921. position: absolute;
  922. width: 100%;
  923. height: auto;
  924. overflow: hidden;
  925. padding: 20rpx;
  926. background-color: #fff;
  927. top: 100rpx;
  928. left: -6rpx;
  929. z-index: 999999;
  930. box-shadow: 0rpx 8rpx 16rpx 8rpx rgba(36,158,251,0.23);
  931. color: #333333;
  932. }
  933. .caseStyleBox > view {
  934. display: inline-block;
  935. padding: 5rpx 10rpx;
  936. border: 2rpx solid #6C7B8B;
  937. margin: 0rpx 20rpx 20rpx 0rpx;
  938. }
  939. .activeCaseStyle {
  940. background-color: #249EFB;
  941. color: #fff;
  942. border: 2rpx solid #249EFB !important;
  943. }
  944. .activeStyle {
  945. color: #249EFB;
  946. }
  947. .maskCaseAndArea {
  948. position: fixed;
  949. width: 100%;
  950. height: 100vh;
  951. top: 0rpx;
  952. left: 0rpx;
  953. z-index: 99999;
  954. background-color: transparent;
  955. }
  956. .searchIconBox {
  957. width: 100rpx;
  958. display: flex;
  959. justify-content: flex-end;
  960. align-items: center;
  961. border-left: 4rpx solid #F0F4F7;
  962. box-sizing: border-box;
  963. padding-right: 20rpx;
  964. }
  965. .caseimg {
  966. width: 40rpx;
  967. }
  968. .searchInput {
  969. width: 100%;
  970. height: 90rpx;
  971. background-color: #fff;
  972. display: flex;
  973. align-items: center;
  974. justify-content: center;
  975. font-size: 28rpx;
  976. border-radius: 10rpx;
  977. }
  978. .searchInput > textarea {
  979. pointer-events: initial;
  980. width: 80%;
  981. height: 60rpx;
  982. line-height: 60rpx;
  983. background-color: #F0F4F7;
  984. border-radius: 30rpx;
  985. margin-right: 20rpx;
  986. box-sizing: border-box;
  987. padding: 0rpx 20rpx;
  988. }
  989. .noneHouseType {
  990. color: #999999;
  991. font-size: 32rpx;
  992. }
  993. .fullVideo {
  994. width: 70rpx;
  995. height: 70rpx;
  996. background-color: rgba(0,0,0,0.5);
  997. border-radius: 50%;
  998. position: absolute;
  999. top: 70rpx;
  1000. transform: translateY(-50%);
  1001. right: 20rpx;
  1002. display: flex;
  1003. justify-content: center;
  1004. align-items: center;
  1005. z-index: 999;
  1006. }
  1007. .fullVideo > image {
  1008. width: 30rpx;
  1009. height: 30rpx;
  1010. }
  1011. .overflowHidden {
  1012. width: 100%;
  1013. height: 100vh;
  1014. background-color: #F0F4F7;
  1015. position: relative;
  1016. overflow: hidden;
  1017. box-sizing: border-box;
  1018. padding-bottom: 160rpx;
  1019. }
  1020. .devCaseStyle {
  1021. color: #28A1FF;
  1022. font-size: 24rpx;
  1023. height: 60rpx;
  1024. line-height: 60rpx;
  1025. box-sizing: border-box;
  1026. padding: 0rpx;
  1027. border-top: 1rpx solid #EEEEEE;
  1028. margin-top: 20rpx;
  1029. }
  1030. .lineBg {
  1031. width: 100%;
  1032. height: 40rpx;
  1033. background-color: #F0F4F7;
  1034. }
  1035. .interVrStyle {
  1036. position: absolute;
  1037. width: 90rpx !important;
  1038. top: 50%;
  1039. left: 50%;
  1040. transform: translate(-50%,-50%);
  1041. }
  1042. /* */
  1043. .devCaseBox {
  1044. width: 100%;
  1045. height: auto;
  1046. overflow: hidden;
  1047. background-color: #fff;
  1048. box-sizing: border-box;
  1049. padding: 20rpx 20rpx;
  1050. }
  1051. .devCaseItem {
  1052. width: 100%;
  1053. height: auto;
  1054. overflow: hidden;
  1055. padding: 20rpx 0rpx;
  1056. }
  1057. .devCaseBorderBottom {
  1058. border-bottom: 1rpx solid #D3E3EA;
  1059. }
  1060. .leftCase {
  1061. float: left;
  1062. width: 230rpx;
  1063. height: 180rpx;
  1064. border-radius: 10rpx;
  1065. overflow: hidden;
  1066. }
  1067. .leftCase > image {
  1068. width: 100%;
  1069. height: 100%;
  1070. }
  1071. .rightCase {
  1072. width: 425rpx;
  1073. float: left;
  1074. box-sizing: border-box;
  1075. padding-left: 26rpx;
  1076. }
  1077. .r_case_name {
  1078. width: 100%;
  1079. height: 60rpx;
  1080. line-height: 60rpx;
  1081. white-space: nowrap;
  1082. overflow: hidden;
  1083. text-overflow: ellipsis;
  1084. font-size: 32rpx;
  1085. color: #354555;
  1086. font-weight: bold;
  1087. }
  1088. .r_case_type {
  1089. width: 100%;
  1090. height: 65rpx;
  1091. line-height: 65rpx;
  1092. font-size: 28rpx;
  1093. color: #354555;
  1094. }
  1095. .r_case_style {
  1096. width: 100%;
  1097. height: 60rpx;
  1098. line-height: 60rpx;
  1099. color: #354555;
  1100. font-size: 32rpx;
  1101. }
  1102. .dev_case_title {
  1103. width: 100%;
  1104. color: #354555;
  1105. font-size: 36rpx;
  1106. font-weight: 700;
  1107. box-sizing: border-box;
  1108. height: 60rpx;
  1109. line-height: 60rpx;
  1110. }
  1111. .minHeight {
  1112. min-height: 400rpx;
  1113. }
  1114. .collect_box {
  1115. width: 27rpx;
  1116. height: 27rpx;
  1117. }
  1118. .collect_box > image {
  1119. width: 100%;
  1120. height: 100%;
  1121. }
  1122. .f_left {
  1123. width: 90%;
  1124. }
  1125. .houseDscStyle {
  1126. font-size: 28rpx;
  1127. padding: 0rpx 0rpx 15rpx 0rpx;
  1128. }
  1129. .houseDscImage {
  1130. width: 100%;
  1131. }
  1132. .houseDscImage > image {
  1133. width: 100%;
  1134. }
  1135. .showImageNumber {
  1136. position: absolute;
  1137. max-width: 150rpx;
  1138. box-sizing: border-box;
  1139. padding: 0rpx 25rpx;
  1140. background-color: rgba(0,0,0,0.5);
  1141. color: #fff;
  1142. font-size: 28rpx;
  1143. z-index: 9;
  1144. bottom: 25rpx;
  1145. right: 20rpx;
  1146. border-radius: 25rpx;
  1147. }