buildinglist.wxss 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671
  1. /* index/pages/buildinglist/buildinglist.wxss */
  2. page {
  3. display: block;
  4. width: 100%;
  5. height: 100%;
  6. overflow: auto;
  7. background: #fff;
  8. box-sizing: border-box;
  9. }
  10. .headerFixed {
  11. width: 100%;
  12. height: auto;
  13. overflow: hidden;
  14. padding: 10rpx 0rpx 0rpx;
  15. position: sticky;
  16. top: 0rpx;
  17. left: 0rpx;
  18. background-color: #fff;
  19. z-index: 9;
  20. }
  21. .filterTab {
  22. width: 100%;
  23. height: 70rpx;
  24. display: flex;
  25. box-sizing: border-box;
  26. padding: 0px 0rpx;
  27. }
  28. .filterleft {
  29. width: 80%;
  30. display: flex;
  31. align-items: center;
  32. }
  33. .filterleft>view {
  34. display: inline-block;
  35. padding: 0rpx 20rpx;
  36. height: 100%;
  37. line-height: 70rpx;
  38. font-size: 30rpx;
  39. font-weight: 700;
  40. }
  41. .activeItem {
  42. position: relative;
  43. }
  44. .activeItem::after {
  45. content: " ";
  46. width: 35rpx;
  47. height: 10rpx;
  48. background-color: #35D7FF;
  49. position: absolute;
  50. bottom: 0px;
  51. left: 50%;
  52. transform: translateX(-50%);
  53. border-radius: 5rpx;
  54. }
  55. .filterright {
  56. width: 20%;
  57. display: flex;
  58. align-items: center;
  59. justify-content: flex-end;
  60. }
  61. .filterinput {
  62. width: 100%;
  63. height: 80rpx;
  64. margin: 10rpx auto 10rpx;
  65. border: 2rpx solid #f2f2f2;
  66. border-radius: 40rpx;
  67. display: flex;
  68. align-items: center;
  69. box-sizing: border-box;
  70. padding: 0rpx 30rpx;
  71. }
  72. .filterinput>input {
  73. flex: 1;
  74. height: 100%;
  75. }
  76. .filterinput>view {
  77. width: 80rpx;
  78. text-align: right;
  79. border-left: 2rpx solid #f2f2f2;
  80. }
  81. .caseimg {
  82. top: 13rpx;
  83. width: 40rpx;
  84. height: 40rpx;
  85. }
  86. .secondtitbox {
  87. display: block;
  88. width: 100%;
  89. background-color: #FFFFFF;
  90. height: 66rpx;
  91. line-height: 66rpx;
  92. position: fixed;
  93. top: 0rpx;
  94. left: 0;
  95. z-index: 98;
  96. padding: 5rpx 0;
  97. box-shadow: 0px 4rpx 7rpx 0px rgba(62, 85, 255, 0.06);
  98. }
  99. .orderbtn {
  100. width: 590rpx;
  101. }
  102. .orderbtn .constructit {
  103. display: block;
  104. width: 240rpx;
  105. height: 56rpx;
  106. line-height: 56rpx;
  107. text-align: center;
  108. margin-right: 24rpx;
  109. }
  110. .orderbtn view.nowordertit {
  111. color: #249EFB;
  112. }
  113. .progress {
  114. width: 100%;
  115. }
  116. .progress view {
  117. display: block;
  118. width: 46%;
  119. height: 56rpx;
  120. line-height: 56rpx;
  121. text-align: center;
  122. margin-right: 24rpx;
  123. }
  124. .progress view.nowordertit {
  125. color: #249EFB;
  126. }
  127. .flex-row {
  128. width: 100%;
  129. display: flex;
  130. }
  131. .flex-row view {
  132. flex: 1;
  133. display: flex;
  134. justify-content: center;
  135. align-items: center;
  136. }
  137. .flex-row view.nowordertit {
  138. color: #249EFB;
  139. }
  140. .searchbtn {
  141. display: block;
  142. width: 160rpx;
  143. height: 56rpx;
  144. line-height: 56rpx;
  145. padding-left: 24rpx;
  146. }
  147. .searchbtn text {
  148. display: block;
  149. position: absolute;
  150. top: 12rpx;
  151. width: 1px;
  152. left: 0;
  153. height: 32rpx;
  154. background-color: #d4d4d4;
  155. }
  156. .searchbtn image {
  157. display: block;
  158. position: relative;
  159. top: 18rpx;
  160. width: 28rpx;
  161. height: 28rpx;
  162. margin-left: 8rpx;
  163. }
  164. .searchbtn text.caseline {
  165. top: 17rpx;
  166. }
  167. .searchbtn image.caseimg {
  168. top: 13rpx;
  169. width: 40rpx;
  170. height: 40rpx;
  171. }
  172. /* 已登录 */
  173. .companybox {
  174. padding-top: 90rpx;
  175. display: block;
  176. width: 100%;
  177. /* padding-bottom: 98rpx; */
  178. background: #fff;
  179. /* padding-bottom: calc(46px + constant(safe-area-inset-bottom)) !important; ios < 11.2 */
  180. /* padding-bottom: calc(46px + env(safe-area-inset-bottom)) !important; ios >= 11.2 */
  181. }
  182. .titbox {
  183. width: 100%;
  184. top: 0;
  185. left: 0;
  186. background-color: #1598fc;
  187. height: 104rpx;
  188. padding: 0 32rpx 16rpx;
  189. box-sizing: content-box;
  190. z-index: 98;
  191. }
  192. .everytoptit {
  193. margin-right: 72rpx;
  194. line-height: 104rpx;
  195. color: rgba(255, 255, 255, 0.7);
  196. }
  197. .titbox .everytoptit:last-child {
  198. margin-right: 0;
  199. }
  200. .everytoptit .newimg {
  201. display: block;
  202. width: 40rpx;
  203. height: 16rpx;
  204. top: 36rpx;
  205. right: -40rpx;
  206. }
  207. .noweverytoptit {
  208. font-size: 36rpx;
  209. color: #FFFFFF;
  210. }
  211. view.mattertitbox {
  212. display: block;
  213. width: 100%;
  214. background-color: #1598fc;
  215. padding-top: 20rpx;
  216. position: fixed !important;
  217. top: 0;
  218. left: 0;
  219. z-index: 97;
  220. }
  221. /* 素材库 */
  222. .matterbox {
  223. display: block;
  224. width: 100%;
  225. position: relative;
  226. z-index: 2;
  227. border-radius: 16rpx 16rpx 0 0;
  228. /* background: #fff; */
  229. padding: 0 20rpx 140rpx;
  230. z-index: 8;
  231. }
  232. .mattertitbox {
  233. border-bottom: 2rpx solid #F0F4F7;
  234. }
  235. .everymattertit {
  236. display: inline-block;
  237. padding-bottom: 24rpx;
  238. color: #B5DEFF;
  239. }
  240. .nowmattertit {
  241. position: relative;
  242. color: #ffffff;
  243. }
  244. .nowmattertit::after {
  245. content: " ";
  246. display: block;
  247. width: 48rpx;
  248. height: 6rpx;
  249. background: #fff;
  250. position: absolute;
  251. bottom: 10rpx;
  252. left: 50%;
  253. margin-left: -24rpx;
  254. }
  255. .mattertitbox text {
  256. display: block;
  257. float: right;
  258. width: 1px;
  259. background-color: #ffffff;
  260. height: 28rpx;
  261. position: relative;
  262. top: 12rpx;
  263. }
  264. .leftmattertitbox {
  265. width: 100%;
  266. overflow-x: auto;
  267. white-space: nowrap;
  268. }
  269. .rightfiltratebox {
  270. display: block;
  271. color: #ffffff;
  272. background-color: #1598fc;
  273. position: fixed;
  274. bottom: 200rpx;
  275. right: 40rpx;
  276. width: 60rpx;
  277. height: 48rpx;
  278. border-radius: 4rpx;
  279. z-index: 80;
  280. }
  281. /* 装修案例 */
  282. .caselistbox {
  283. padding-bottom: 100rpx;
  284. }
  285. .leftcasebox {
  286. margin-right: 20rpx;
  287. }
  288. .leftcasebox,
  289. .rightcasebox {
  290. width: 345rpx;
  291. overflow: initial;
  292. }
  293. .everycasebox {
  294. width: 100%;
  295. /* border-bottom: 1px dashed #ccc; */
  296. margin-bottom: 20rpx;
  297. background: #fff;
  298. }
  299. .caselistbox .everycasebox .imgbox image {
  300. display: block;
  301. width: 100%;
  302. height: auto;
  303. min-height: 120rpx;
  304. }
  305. .casesharenum {
  306. position: absolute;
  307. right: 0;
  308. top: 12rpx;
  309. height: 40rpx;
  310. border-radius: 24rpx 0 0 24rpx;
  311. opacity: 0.7;
  312. background: #384855;
  313. color: #B6CADE;
  314. padding-left: 14rpx;
  315. padding-right: 8rpx;
  316. }
  317. .caselistbox .everycasebox .imgbox .casesharenum image {
  318. display: block;
  319. width: 22rpx;
  320. height: 18rpx;
  321. margin-right: 4rpx;
  322. position: relative;
  323. top: 11rpx;
  324. min-height: auto;
  325. }
  326. .caselistbox .everycasebox .imgbox .casesharenum view {
  327. line-height: 40rpx;
  328. }
  329. .casehousemsgbox {
  330. display: block;
  331. position: absolute;
  332. bottom: 0;
  333. left: 0;
  334. width: 100%;
  335. background-color: rgb(56, 72, 85);
  336. opacity: 0.7;
  337. z-index: 2;
  338. }
  339. .casemsgbox {
  340. padding: 20rpx 10rpx 8rpx;
  341. background-color: #fff;
  342. }
  343. .designerbox {
  344. margin-top: 16rpx;
  345. /* margin-bottom: 16rpx; */
  346. }
  347. .designerbox image {
  348. display: block;
  349. width: 40rpx;
  350. height: 40rpx;
  351. margin-right: 10rpx;
  352. border-radius: 20rpx;
  353. }
  354. .casecollectbox image {
  355. width: 20rpx;
  356. height: 20rpx;
  357. position: relative;
  358. top: 18rpx;
  359. margin-right: 8rpx;
  360. }
  361. .casemsgtit {
  362. margin-bottom: 8rpx;
  363. }
  364. /* 发朋友圈 */
  365. .sharefriendcircle {
  366. padding: 36rpx 0 0;
  367. }
  368. .everyfriendcircle {
  369. display: block;
  370. width: 100%;
  371. background: #FFFFFF;
  372. box-shadow: 0 4rpx 20rpx 0 rgba(36, 158, 251, 0.26);
  373. border-radius: 10rpx;
  374. padding: 20rpx 20rpx 34rpx 20rpx;
  375. margin-bottom: 40rpx;
  376. }
  377. .friendbox image {
  378. display: block;
  379. width: 24rpx;
  380. height: 20rpx;
  381. margin-right: 8rpx;
  382. position: relative;
  383. top: 7rpx;
  384. }
  385. .iamgeBox {
  386. overflow: hidden;
  387. width: 638rpx;
  388. margin-top: 18rpx;
  389. }
  390. .iamgeBox image {
  391. float: left;
  392. width: 210rpx;
  393. height: 154rpx;
  394. margin-right: 4rpx;
  395. margin-bottom: 4rpx;
  396. max-height: 340rpx !important;
  397. }
  398. .iamgeBox image:nth-of-type(3n) {
  399. margin-right: 0;
  400. }
  401. view.oneImg image {
  402. display: block;
  403. width: 468rpx;
  404. }
  405. view.fourImg image:nth-of-type(2n) {
  406. margin-right: 50rpx;
  407. }
  408. .friendmsg {
  409. margin-top: 32rpx;
  410. }
  411. .friendcopytext image {
  412. display: block;
  413. width: 22rpx;
  414. height: 22rpx;
  415. margin-right: 10rpx;
  416. position: relative;
  417. top: 6rpx;
  418. }
  419. .friendsave image {
  420. display: block;
  421. width: 24rpx;
  422. height: 24rpx;
  423. margin-right: 10rpx;
  424. position: relative;
  425. top: 5rpx;
  426. }
  427. .savebox text {
  428. float: left;
  429. display: block;
  430. width: 1px;
  431. height: 34rpx;
  432. background-color: #249efb;
  433. margin: 0 16rpx;
  434. }
  435. /* 营销楼盘 */
  436. .publicpraisebox {
  437. padding: 0 0 100rpx;
  438. }
  439. .progress-box-item {
  440. width: 100%;
  441. background-color: #fff;
  442. padding: 40rpx 0rpx;
  443. display: flex;
  444. overflow: hidden;
  445. border-radius: 8rpx;
  446. border-bottom: 2rpx solid #f2f2f2;
  447. }
  448. .progress-left {
  449. width: 260rpx;
  450. height: 200rpx;
  451. position: relative;
  452. border-radius: 15rpx;
  453. overflow: hidden;
  454. }
  455. .progress-left-text {
  456. position: absolute;
  457. width: 100%;
  458. height: 40rpx;
  459. background-color: rgba(0, 0, 0, 0.4);
  460. z-index: 2;
  461. bottom: 0rpx;
  462. color: #fff;
  463. font-size: 24rpx;
  464. text-align: center;
  465. line-height: 40rpx;
  466. }
  467. .progress-left-img {
  468. width: 100%;
  469. height: 100%;
  470. }
  471. .progress-right {
  472. flex: 1;
  473. display: inline-block;
  474. padding-left: 20rpx;
  475. overflow: hidden;
  476. }
  477. .progress-right-title,
  478. .progress-right-address {
  479. white-space: nowrap;
  480. overflow: hidden;
  481. text-overflow: ellipsis;
  482. }
  483. .mtb10 {
  484. margin: 10rpx 0rpx;
  485. }
  486. .progress-right-area {
  487. width: 100%;
  488. overflow-x: auto;
  489. white-space: nowrap;
  490. padding: 4rpx 0rpx;
  491. }
  492. .progress-right-area>view {
  493. font-style: normal;
  494. display: inline-block;
  495. padding: 2rpx 10rpx 0rpx;
  496. background-color: #FFEDED;
  497. margin-right: 10rpx;
  498. color: #C66D59;
  499. border-radius: 4rpx;
  500. }
  501. .flex {
  502. display: flex;
  503. }
  504. .flex-sub {
  505. flex: 1;
  506. }
  507. .align-center {
  508. align-items: center;
  509. }
  510. .justify-between {
  511. justify-content: space-between;
  512. }
  513. .justify-end {
  514. justify-content: flex-end;
  515. }
  516. .p-r-img1 {
  517. width: 40rpx;
  518. height: 40rpx;
  519. background-color: #EEF4FF;
  520. border-radius: 50%;
  521. display: flex;
  522. justify-content: center;
  523. align-items: center;
  524. }
  525. .p-r-img1 image {
  526. width: 20rpx;
  527. height: 20rpx;
  528. }
  529. .fontw700 {
  530. font-weight: 700;
  531. }
  532. .font32 {
  533. font-size: 32rpx;
  534. }
  535. .font28 {
  536. font-size: 28rpx;
  537. }
  538. .font24 {
  539. font-size: 24rpx;
  540. }
  541. .font20 {
  542. font-size: 20rpx;
  543. }
  544. .font22 {
  545. font-size: 22rpx;
  546. }
  547. .colorCECECE {
  548. color: #CECECE;
  549. }
  550. .color424242 {
  551. color: #424242;
  552. }
  553. .color45ADFF {
  554. color: #45ADFF;
  555. }
  556. .color989898 {
  557. color: #989898;
  558. }
  559. .mt10 {
  560. margin-top: 10rpx;
  561. }
  562. .ml20 {
  563. margin-left: 20rpx;
  564. }
  565. .ml10 {
  566. margin-left: 10rpx;
  567. }
  568. .p-r-share {
  569. width: 20rpx;
  570. height: 20rpx;
  571. }
  572. .p-r-sc {
  573. width: 24rpx;
  574. height: 24rpx;
  575. }
  576. .leftpublicpraisebox,
  577. .rightpublicpraisebox {
  578. display: block;
  579. width: 345rpx;
  580. }
  581. .leftpublicpraisebox {
  582. margin-right: 20rpx;
  583. }
  584. .everypublicpraisebox {
  585. display: block;
  586. background: #FFFFFF;
  587. box-shadow: 0 2px 8px 0 rgba(56, 72, 85, 0.20);
  588. border-radius: 10rpx;
  589. overflow: hidden;
  590. margin-bottom: 20rpx;
  591. }
  592. .publicimg {
  593. display: block;
  594. width: 100%;
  595. height: auto;
  596. min-height: 100rpx;
  597. }
  598. .publicsharebox {
  599. display: block;
  600. position: absolute;
  601. left: 0;
  602. z-index: 2;
  603. bottom: 10rpx;
  604. border-radius: 0 24rpx 24rpx 0;
  605. opacity: 0.7;
  606. background: #384855;
  607. color: #B6CADE;
  608. height: 48rpx;
  609. padding: 0 24rpx 0 14rpx;
  610. }
  611. .publicsharebox image {
  612. display: block;
  613. width: 22rpx;
  614. height: 18rpx;
  615. margin-right: 6rpx;
  616. position: relative;
  617. top: 14rpx;
  618. }
  619. .publicsharebox view {
  620. line-height: 48rpx;
  621. }
  622. .publicpraisemsgbox {
  623. padding: 16rpx 16rpx 8rpx;
  624. }
  625. .allshare {
  626. color: #fff;
  627. border-radius: unset;
  628. line-height: 98rpx;
  629. background: #249EFB;
  630. }
  631. .footer {
  632. position: fixed;
  633. width: 100%;
  634. height: 98rpx;
  635. background: #249EFB;
  636. z-index: 10;
  637. left: 0;
  638. bottom: 0;
  639. color: #fff;
  640. }
  641. .allshare image {
  642. display: block;
  643. width: 46rpx;
  644. height: 40rpx;
  645. margin-right: 8rpx;
  646. }
  647. .caselayerbox {
  648. display: block;
  649. width: 100%;
  650. height: 100%;
  651. background: transparent;
  652. position: fixed;
  653. z-index: 99;
  654. left: 0;
  655. bottom: 0;
  656. }
  657. .caselayer {
  658. display: block;
  659. width: 100%;
  660. max-height: 60%;
  661. position: absolute;
  662. top: 150rpx;
  663. left: 0;
  664. background-color: #FFFFFF;
  665. box-shadow: 0 -4rpx 20rpx 0 rgba(36, 158, 251, 0.23);
  666. border-radius: 10rpx 10rpx 0 0;
  667. overflow: hidden;
  668. padding-top: 70rpx;
  669. padding-bottom: calc(constant(safe-area-inset-bottom)) !important;
  670. /* ios < 11.2*/
  671. padding-bottom: calc(env(safe-area-inset-bottom)) !important;
  672. /* ios >= 11.2*/
  673. }
  674. .casefiltratetit {
  675. position: absolute;
  676. top: 0;
  677. left: 0;
  678. background: #F0F4F7;
  679. width: 100%;
  680. height: 70rpx;
  681. line-height: 70rpx;
  682. }
  683. .casefiltratetit image {
  684. display: block;
  685. width: 30rpx;
  686. height: 28rpx;
  687. position: absolute;
  688. top: 22rpx;
  689. right: 40rpx;
  690. }
  691. .casetypefiltrate {
  692. display: block;
  693. width: 100%;
  694. padding: 0 20rpx;
  695. height: 100%;
  696. box-sizing: border-box;
  697. overflow: hidden;
  698. }
  699. .plotfiltrate {
  700. display: block;
  701. width: 100%;
  702. height: 100%;
  703. overflow: hidden;
  704. }
  705. .casetypefiltratebox {
  706. display: block;
  707. height: 88rpx;
  708. border-bottom: 1px solid #D4E4ED;
  709. }
  710. .mpbox {
  711. display: block;
  712. width: 100%;
  713. height: 300px;
  714. overflow: hidden;
  715. }
  716. .communitybox1 {
  717. display: block;
  718. width: 100%;
  719. height: calc(100vh-166rpx);
  720. overflow: hidden;
  721. }
  722. .namebox {
  723. max-width: 80rpx;
  724. }
  725. .casetypefiltratebox image {
  726. display: block;
  727. width: 12rpx;
  728. height: 8rpx;
  729. margin-left: 6rpx;
  730. position: relative;
  731. top: 40rpx;
  732. }
  733. .casetypefiltratebox .clickimg {
  734. display: none;
  735. }
  736. .nowfiltrate .unclickimg {
  737. display: none;
  738. }
  739. .nowfiltrate .clickimg {
  740. display: block;
  741. }
  742. .nowfiltrate {
  743. color: #249EFB;
  744. position: relative;
  745. height: 88rpx;
  746. }
  747. .nowfiltrate::before {
  748. display: block;
  749. content: " ";
  750. width: 82rpx;
  751. height: 6rpx;
  752. background-color: #249EFB;
  753. position: absolute;
  754. bottom: 0;
  755. left: 50%;
  756. margin-left: -41rpx;
  757. }
  758. .stylefiltrate {
  759. display: block;
  760. padding: 40rpx 20rpx 32rpx;
  761. }
  762. .stylefiltrate button {
  763. display: block;
  764. height: 48rpx;
  765. line-height: 48rpx;
  766. background: #F0F4F7;
  767. border-radius: 24rpx;
  768. float: left;
  769. padding: 0 24rpx;
  770. margin-left: 20rpx;
  771. margin-bottom: 40rpx;
  772. font-size: 24rpx;
  773. }
  774. .stylefiltrate button.nowbtn {
  775. background: #71C4FF;
  776. border: 2rpx solid #249EFB;
  777. box-sizing: border-box;
  778. color: #fff;
  779. line-height: 44rpx;
  780. }
  781. .areafiltrate {
  782. display: block;
  783. padding: 40rpx 20rpx 32rpx;
  784. }
  785. .areafiltrate button {
  786. display: block;
  787. height: 48rpx;
  788. line-height: 48rpx;
  789. background: #F0F4F7;
  790. border-radius: 24rpx;
  791. float: left;
  792. padding: 0 24rpx;
  793. margin-right: 20rpx;
  794. margin-bottom: 40rpx;
  795. font-size: 24rpx;
  796. }
  797. .areafiltrate button.nowbtn {
  798. background: #71C4FF;
  799. border: 2rpx solid #249EFB;
  800. box-sizing: border-box;
  801. color: #fff;
  802. line-height: 44rpx;
  803. }
  804. /* 公司活动 */
  805. .activitybox {
  806. position: relative;
  807. z-index: 2;
  808. border-radius: 16rpx 16rpx 0 0;
  809. background: #fff;
  810. margin-top: 98rpx;
  811. padding: 24rpx 20rpx 0;
  812. padding-bottom: calc(46px + constant(safe-area-inset-bottom)) !important;
  813. /* ios < 11.2*/
  814. padding-bottom: calc(46px + env(safe-area-inset-bottom)) !important;
  815. /* ios >= 11.2*/
  816. }
  817. .everyactivitybox {
  818. background: #F0F4F7;
  819. border-radius: 10rpx;
  820. padding-top: 20rpx;
  821. margin-bottom: 40rpx;
  822. }
  823. .activitytitbox {
  824. padding: 0 20rpx;
  825. }
  826. .activitytit {
  827. display: block;
  828. width: 400rpx;
  829. }
  830. .activitytitbox image {
  831. display: block;
  832. width: 40rpx;
  833. height: 16rpx;
  834. position: absolute;
  835. right: 8rpx;
  836. top: 6rpx;
  837. }
  838. .everynumbox {
  839. margin-top: 10rpx;
  840. margin-bottom: 20rpx;
  841. padding: 0 20rpx;
  842. }
  843. .depositbox image {
  844. display: block;
  845. width: 30rpx;
  846. height: 24rpx;
  847. position: relative;
  848. top: 5rpx;
  849. margin-right: 7rpx;
  850. }
  851. .everyfootbox {
  852. padding: 0 20rpx;
  853. }
  854. .everysharenumbox view {
  855. line-height: 56rpx;
  856. }
  857. .everysharenumbox image {
  858. display: block;
  859. width: 24rpx;
  860. height: 20rpx;
  861. position: relative;
  862. top: 18rpx;
  863. }
  864. .otherfiltrate {
  865. padding-top: 24rpx;
  866. }
  867. .otherfiltrate button {
  868. display: block;
  869. height: 48rpx;
  870. line-height: 48rpx;
  871. background: #F0F4F7;
  872. border-radius: 24rpx;
  873. float: left;
  874. padding: 0 24rpx;
  875. margin-left: 20rpx;
  876. margin-bottom: 40rpx;
  877. font-size: 24rpx;
  878. }
  879. .otherfiltrate button.nowbtn {
  880. background: #71C4FF;
  881. border: 2rpx solid #249EFB;
  882. box-sizing: border-box;
  883. color: #fff;
  884. line-height: 44rpx;
  885. }
  886. .otherfiltrate {
  887. border-top: 1px solid #EAF0F4;
  888. }
  889. .topfiltrate {
  890. border-width: 0;
  891. }
  892. .topfiltrate button {
  893. margin-bottom: 16rpx;
  894. }
  895. /* .page.page-select-index{
  896. height: auto !important;
  897. } */
  898. .anchor-bar__wrp {
  899. position: absolute;
  900. }
  901. /* .index_list_item .index-group__title{
  902. display: none;
  903. } */
  904. .thin-border-bottom:after {
  905. border-style: dashed;
  906. border-color: #D4E4ED;
  907. }
  908. .index-group__item {
  909. color: #9DB6CF;
  910. font-size: 28rpx;
  911. padding: 0rpx 0 16rpx 20rpx !important;
  912. }
  913. .anchor-item.selected .anchor-item__inner {
  914. background-color: #249EFB;
  915. }
  916. .communitybox {
  917. display: block;
  918. padding: 24rpx 20rpx 0;
  919. }
  920. .communitybox button {
  921. display: block;
  922. float: left;
  923. background: #D4E4ED;
  924. height: 56rpx;
  925. border: 2rpx solid #9DB6CF;
  926. border-radius: 28rpx;
  927. line-height: 56rpx;
  928. box-sizing: border-box;
  929. padding: 0 32rpx;
  930. font-size: 24rpx;
  931. color: #384855;
  932. margin-right: 20rpx;
  933. position: relative;
  934. overflow: inherit;
  935. }
  936. .communitybox button .communitytext {}
  937. .communitybox button image {
  938. width: 30rpx;
  939. height: 30rpx;
  940. position: relative;
  941. top: 12rpx;
  942. margin-left: 8rpx;
  943. }
  944. .video {
  945. display: block;
  946. width: 311rpx;
  947. height: 380rpx;
  948. background-color: #384855;
  949. border-radius: 10px;
  950. }
  951. button.casecollectbox {
  952. background-color: #FFFFFF;
  953. }
  954. .caselistbox1 {
  955. display: block;
  956. width: 710rpx;
  957. height: calc(300px+76rpx);
  958. box-sizing: border-box;
  959. position: absolute;
  960. top: 150rpx;
  961. left: 20rpx;
  962. background: #fff;
  963. padding-left: 20rpx;
  964. overflow: hidden;
  965. box-shadow: 0px 4rpx 16rpx 0px rgba(36, 158, 251, 0.3);
  966. }
  967. .caselistbox1 .mpbox {
  968. display: block;
  969. width: 710rpx;
  970. height: calc(300px+76rpx);
  971. }
  972. .van-index-bar {
  973. display: block;
  974. width: 100%;
  975. height: 400rpx;
  976. top: 20rpx;
  977. left: 0;
  978. }
  979. .van-index-bar__sidebar {
  980. position: fixed;
  981. top: 350rpx !important;
  982. }
  983. .speechcraftfiltratetit {
  984. display: block;
  985. width: 100%;
  986. height: 88rpx;
  987. padding: 0 40rpx;
  988. box-sizing: border-box;
  989. background: #fff;
  990. }
  991. .speechcraftfiltratetit input {
  992. display: block;
  993. width: 540rpx;
  994. height: 66rpx;
  995. background: #F0F4F7;
  996. position: relative;
  997. top: 11rpx;
  998. border-bottom: 1px solid #bfbfbf;
  999. text-align: left;
  1000. padding-left: 40rpx;
  1001. box-sizing: border-box;
  1002. border-radius: 33rpx;
  1003. border-width: 0;
  1004. }
  1005. .speechcraftfiltratetit view {
  1006. position: absolute;
  1007. top: 0;
  1008. right: 40rpx;
  1009. line-height: 88rpx;
  1010. font-size: 28rpx;
  1011. }
  1012. /* 视频 */
  1013. .videolistbox {
  1014. display: block;
  1015. width: 100%;
  1016. padding: 20rpx 40rpx 100rpx;
  1017. box-sizing: border-box;
  1018. }
  1019. .leftvideolistbox,
  1020. .rightvideolistbox {
  1021. display: inline-block;
  1022. width: 325rpx;
  1023. }
  1024. .rightvideolistbox {
  1025. margin-left: 20rpx;
  1026. }
  1027. .videolistbox {
  1028. width: 100%;
  1029. padding: 20rpx 10rpx 100rpx;
  1030. box-sizing: border-box;
  1031. }
  1032. .leftvideolistbox,
  1033. .rightvideolistbox {
  1034. display: inline-block;
  1035. width: 335rpx;
  1036. }
  1037. .rightvideolistbox {
  1038. margin-left: 20rpx;
  1039. }
  1040. .everyvideobox {
  1041. display: block;
  1042. width: 100%;
  1043. border-radius: 10rpx;
  1044. position: relative;
  1045. overflow: hidden;
  1046. border: solid 1px #eaf0f4;
  1047. margin-bottom: 20rpx;
  1048. background-color: #FFFFFF;
  1049. }
  1050. .everyvideobox .newimg {
  1051. display: block;
  1052. width: 60rpx;
  1053. height: 26rpx;
  1054. position: absolute;
  1055. top: 0;
  1056. left: 0;
  1057. z-index: 2;
  1058. }
  1059. .everyvideobox .layerbox {
  1060. display: block;
  1061. width: 100%;
  1062. height: 280rpx;
  1063. background-image: linear-gradient(180deg, rgba(56, 72, 85, 0.00) 0%, rgba(56, 72, 85, 0.66) 66%, #384855 100%);
  1064. border-radius: 0 0 10rpx 10rpx;
  1065. position: absolute;
  1066. bottom: 0;
  1067. left: 0;
  1068. z-index: 2;
  1069. }
  1070. .everyvideobox .layerbox .videotitle {
  1071. display: block;
  1072. width: 308rpx;
  1073. position: absolute;
  1074. top: 143rpx;
  1075. left: 8rpx;
  1076. font-size: 28rpx;
  1077. color: #FFFFFF;
  1078. line-height: 40rpx;
  1079. }
  1080. .everyvideobox .layerbox .lookbox {
  1081. position: absolute;
  1082. bottom: 17rpx;
  1083. right: 22rpx;
  1084. }
  1085. .everyvideobox .layerbox .lookbox image {
  1086. float: left;
  1087. display: block;
  1088. width: 24rpx;
  1089. height: 24rpx;
  1090. position: relative;
  1091. top: 5rpx;
  1092. }
  1093. .everyvideobox .layerbox .lookbox view {
  1094. display: block;
  1095. float: left;
  1096. font-size: 12px;
  1097. color: #B6CADE;
  1098. line-height: 34rpx;
  1099. }
  1100. .contentBox {
  1101. display: block;
  1102. width: 100%;
  1103. padding: 18rpx 0 8rpx;
  1104. }
  1105. .contentBox .videoTitle {
  1106. width: 100%;
  1107. padding: 0 20rpx;
  1108. font-family: PingFang-SC-Medium, Source Sans Medium;
  1109. font-size: 24rpx;
  1110. color: #384855;
  1111. }
  1112. .contentBox .personMsgBox {
  1113. margin-top: 12rpx;
  1114. }
  1115. .videotype {
  1116. position: absolute;
  1117. top: 20rpx;
  1118. left: 22rpx;
  1119. line-height: 50rpx;
  1120. display: block;
  1121. font-size: 24rpx;
  1122. color: #fff;
  1123. }
  1124. .contentBox .personMsgBox .clickbox image {
  1125. width: 24rpx;
  1126. height: 24rpx;
  1127. position: relative;
  1128. top: 5rpx;
  1129. }
  1130. /* 图文 */
  1131. .zanbox .bzan {
  1132. display: block;
  1133. width: 31rpx;
  1134. height: 32rpx;
  1135. }
  1136. .hotbox {
  1137. display: block;
  1138. width: 50%;
  1139. line-height: 32rpx;
  1140. }
  1141. .hotbox image {
  1142. float: left;
  1143. display: block;
  1144. width: 24rpx;
  1145. height: 24rpx;
  1146. position: relative;
  1147. top: 4rpx;
  1148. }
  1149. .hotbox view {
  1150. float: left;
  1151. margin-left: 10rpx;
  1152. line-height: 32rpx;
  1153. font-size: 22rpx;
  1154. color: #CBCDEB;
  1155. }
  1156. .filtratebox {
  1157. color: #fff;
  1158. border-radius: unset;
  1159. line-height: 98rpx;
  1160. background: #249EFB;
  1161. /* border-left: 1px solid #fff; */
  1162. }
  1163. .filtratebox image {
  1164. /* position: relative;
  1165. top: 24rpx; */
  1166. display: block;
  1167. margin-right: 8rpx;
  1168. width: 38rpx;
  1169. height: 38rpx;
  1170. }
  1171. .filtratebox .searchtext {
  1172. /* line-height: 98rpx; */
  1173. }
  1174. .addtime {
  1175. display: block;
  1176. padding: 0 20rpx;
  1177. color: #B6CADE;
  1178. margin-top: 8rpx;
  1179. }
  1180. /* .van-index-anchor-wrapper{
  1181. background-color: #f7f8fa;
  1182. } */
  1183. .case_numbox {
  1184. display: inline-block;
  1185. width: auto;
  1186. height: 32rpx;
  1187. position: relative;
  1188. top: 4rpx;
  1189. background: #D4E4ED;
  1190. color: #9DB6CF;
  1191. padding: 0 12rpx;
  1192. border-radius: 16rpx;
  1193. margin-left: 8rpx;
  1194. line-height: 32rpx;
  1195. }
  1196. .van-index-anchor {
  1197. width: 100%;
  1198. font-size: 16px;
  1199. font-weight: bold;
  1200. padding: 0 5px !important;
  1201. line-height: 32rpx !important;
  1202. }
  1203. .van-index-anchor--active {
  1204. display: none !important;
  1205. }
  1206. .constructSitebox {
  1207. display: block;
  1208. width: 690rpx;
  1209. background-color: #fff;
  1210. border-radius: 16rpx;
  1211. border: 1px solid #ECECEC;
  1212. box-sizing: border-box;
  1213. padding: 24rpx 20rpx 28rpx;
  1214. margin: 0 auto 20rpx;
  1215. box-shadow: 0 2px 8px 0 rgba(56, 72, 85, 0.20);
  1216. }
  1217. .coverbox {
  1218. width: 100%;
  1219. max-height: 450rpx;
  1220. overflow: hidden;
  1221. }
  1222. .coverbox image {
  1223. display: block;
  1224. width: 100%;
  1225. }
  1226. .constructit {
  1227. width: 400rpx;
  1228. }
  1229. .constructSitebox .casecollectbox image {
  1230. top: 11rpx;
  1231. }
  1232. .sitestep {
  1233. display: block;
  1234. border-top: 1px solid #ECECEC;
  1235. padding: 24rpx 10rpx;
  1236. }
  1237. .everysteps {
  1238. text-align: center;
  1239. position: relative;
  1240. }
  1241. .everysteps .stepnum {
  1242. display: block;
  1243. width: 32rpx;
  1244. height: 32rpx;
  1245. background: #FFFFFF;
  1246. border: 2rpx solid #CCCCCC;
  1247. /* background: #28A1FF; */
  1248. border-radius: 50%;
  1249. /* color: #fff; */
  1250. margin: 0 auto 12rpx;
  1251. position: relative;
  1252. z-index: 2;
  1253. }
  1254. .everysteps::after {
  1255. display: block;
  1256. content: " ";
  1257. width: 125.2rpx;
  1258. height: 10rpx;
  1259. background: #EEEEEE;
  1260. position: absolute;
  1261. top: 11rpx;
  1262. left: -50%;
  1263. z-index: 1;
  1264. }
  1265. .sitestep .everysteps:first-child::after {
  1266. display: none;
  1267. }
  1268. .laststeps .stepnum {
  1269. background-color: #28A1FF;
  1270. border-color: #28A1FF;
  1271. color: #fff !important;
  1272. }
  1273. .laststeps::after {
  1274. background-color: #28A1FF;
  1275. }
  1276. .communitybox {
  1277. display: block;
  1278. position: absolute;
  1279. top: 8rpx;
  1280. left: 20rpx;
  1281. background: #D4E4ED;
  1282. height: 56rpx;
  1283. border: 2rpx solid #9DB6CF;
  1284. border-radius: 28rpx;
  1285. line-height: 56rpx;
  1286. box-sizing: border-box;
  1287. padding: 0 32rpx;
  1288. font-size: 24rpx;
  1289. color: #384855;
  1290. margin-right: 20rpx;
  1291. overflow: inherit;
  1292. }
  1293. .communitybox image {
  1294. width: 30rpx;
  1295. height: 30rpx;
  1296. position: relative;
  1297. top: 12rpx;
  1298. margin-left: 8rpx;
  1299. }
  1300. .customerbtnbox {
  1301. height: 66rpx;
  1302. }
  1303. .customerbtnbox image {
  1304. display: block;
  1305. width: 18rpx;
  1306. height: 12rpx;
  1307. position: relative;
  1308. top: 32rpx;
  1309. margin-left: 8rpx;
  1310. }
  1311. .nowordertit {
  1312. color: #249efb !important;
  1313. }
  1314. .customerbtnbox image.delimg {
  1315. display: block;
  1316. width: 24rpx;
  1317. height: 24rpx;
  1318. position: relative;
  1319. top: 20rpx;
  1320. margin-left: 8rpx;
  1321. }
  1322. .duihaoIcon {
  1323. width: 20rpx;
  1324. height: 20rpx;
  1325. margin-top: 7rpx;
  1326. }
  1327. .searchbtn1 {
  1328. display: block;
  1329. width: 110rpx;
  1330. height: 66rpx;
  1331. line-height: 66rpx;
  1332. padding-left: 24rpx;
  1333. }
  1334. .searchbtn1 text {
  1335. display: block;
  1336. position: absolute;
  1337. top: 12rpx;
  1338. width: 1px;
  1339. left: 0;
  1340. height: 32rpx;
  1341. background-color: #d4d4d4;
  1342. }
  1343. .searchbtn1 image {
  1344. display: block;
  1345. position: relative;
  1346. top: 16rpx;
  1347. width: 28rpx;
  1348. height: 28rpx;
  1349. margin-left: 8rpx;
  1350. }
  1351. .searchbtn1 text.caseline {
  1352. top: 17rpx;
  1353. }
  1354. .searchbtn1 image.caseimg {
  1355. top: 13rpx;
  1356. width: 40rpx;
  1357. height: 40rpx;
  1358. }
  1359. .imgtype {
  1360. display: block;
  1361. width: 44rpx;
  1362. height: 44rpx;
  1363. position: absolute;
  1364. top: 20rpx;
  1365. right: 20rpx;
  1366. z-index: 2;
  1367. }
  1368. .topbox {
  1369. display: block;
  1370. width: 100%;
  1371. background-color: #1598fc;
  1372. position: fixed;
  1373. top: 0;
  1374. left: 0;
  1375. z-index: 9999999;
  1376. }
  1377. .leftindexbox {
  1378. position: absolute;
  1379. left: 8px;
  1380. width: 70px;
  1381. border: 1px solid #d1cfcf;
  1382. padding: 4px 0;
  1383. height: 28px;
  1384. border-radius: 18px;
  1385. box-sizing: border-box;
  1386. }
  1387. .leftindexbox .leftgoto {
  1388. display: block;
  1389. width: 14px;
  1390. height: 14px;
  1391. float: left;
  1392. margin-left: 8px;
  1393. position: relative;
  1394. top: 2px;
  1395. z-index: 9;
  1396. }
  1397. .gotoindex {
  1398. display: block;
  1399. width: 16px;
  1400. height: 16px;
  1401. float: right;
  1402. position: relative;
  1403. right: 10px;
  1404. top: 1px;
  1405. }
  1406. .leftindexbox text {
  1407. position: absolute;
  1408. height: 14px;
  1409. width: 1px;
  1410. left: 30px;
  1411. top: 6px;
  1412. background-color: #d1cfcf;
  1413. }
  1414. .maintitle {
  1415. color: #FFFFFF;
  1416. }
  1417. .golastimg {
  1418. display: block;
  1419. width: 16px;
  1420. height: 16px;
  1421. position: absolute;
  1422. left: 10px;
  1423. }
  1424. .gotoidxbox {
  1425. display: block;
  1426. position: absolute;
  1427. top: 0;
  1428. right: 0;
  1429. width: 35px;
  1430. height: 28px;
  1431. z-index: 9;
  1432. }
  1433. .leftitbox{
  1434. display: block;
  1435. width: 30px;
  1436. height: 28px;
  1437. position: absolute;
  1438. top: 0;
  1439. left: 0;
  1440. z-index: 10;
  1441. }