morecontent.wxss 23 KB

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