map.wxss 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504
  1. li {
  2. list-style: none;
  3. }
  4. a {
  5. text-decoration: none;
  6. }
  7. .head {
  8. width: 100%;
  9. height: 45px;
  10. background-color: #2775CC;
  11. overflow: hidden;
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. }
  16. .left-logo {
  17. width: 186px;
  18. margin-left: 15px;
  19. }
  20. .left-logo a {
  21. height: 28px;
  22. }
  23. .logo-img {
  24. width: 100%;
  25. height: 28px;
  26. }
  27. .right_logo {
  28. margin: 9px 45px 9px 0;
  29. width: 61rpx;
  30. }
  31. .right_logo image {
  32. width: 61px;
  33. height: 28px;
  34. }
  35. /* html,body{
  36. position: relative;
  37. height: 100%;
  38. min-height: 100%;
  39. } */
  40. /* body{
  41. display: flex;
  42. flex-direction: column;
  43. min-height: 100vh;
  44. } */
  45. .main {
  46. width: 100%;
  47. /* height: calc(100vh - 44px); */
  48. position: relative;
  49. /* overflow: hidden; */
  50. /* padding-bottom: 295px; */
  51. /* flex: 1; */
  52. }
  53. .bttom-tab {
  54. width: 100%;
  55. background-color: white;
  56. /* overflow-y: auto; */
  57. /* overflow-x: hidden; */
  58. margin-top: 135px;
  59. }
  60. .right-map .map {
  61. width: 73%;
  62. height: 800rpx;
  63. overflow: hidden;
  64. width: 100%;
  65. }
  66. .show-second {
  67. display: none;
  68. overflow: hidden;
  69. background: #F3F3F3;
  70. }
  71. .show-third {
  72. display: none;
  73. overflow: hidden;
  74. background: #F3F3F3;
  75. }
  76. .show-fourth {
  77. display: none;
  78. background: #F3F3F3;
  79. overflow: hidden;
  80. height: 84vw;
  81. position: relative;
  82. }
  83. .show-fifth {
  84. display: none;
  85. background: #F3F3F3;
  86. overflow: hidden;
  87. height: 84vw;
  88. position: relative;
  89. }
  90. .show-sixth {
  91. display: none;
  92. background: #F3F3F3;
  93. overflow: hidden;
  94. height: 84vw;
  95. position: relative;
  96. }
  97. .left-map {
  98. width: 100%;
  99. /* height: 77.86666vw; */
  100. border-radius: 4vw 4vw 0 0 !important;
  101. background-color: white;
  102. /* position: absolute;
  103. left: 0;
  104. bottom: 0; */
  105. }
  106. .right-search {
  107. width: 94.66666vw;
  108. position: absolute;
  109. z-index: 1000;
  110. left: 2.66666vw;
  111. background-color: #fff;
  112. border: 1px solid #DADFE3;
  113. box-shadow: 0 0.8vw 4.66666vw 0 rgba(98, 137, 174, 0.18);
  114. border-radius: 2.66666vw;
  115. box-sizing: border-box;
  116. }
  117. .right-search .layui-tab-title {
  118. border: none !important;
  119. margin: 2.66666vw 0 4.26666vw 2.66666vw !important;
  120. height: 5.86666vw !important;
  121. }
  122. .right-search .layui-tab-title li {
  123. width: 6.66666vw !important;
  124. height: 5.86666vw !important;
  125. line-height: 5.86666vw !important;
  126. text-align: center !important;
  127. padding: 0 !important;
  128. font-weight: 400 !important;
  129. font-size: 14px !important;
  130. font-family: Microsoft YaHei !important;
  131. color: #777777 !important;
  132. }
  133. .right-search .layui-tab-title .layui-this {
  134. background: #1B6DB9 !important;
  135. border-radius: 2.93333vw !important;
  136. font-size: 14px !important;
  137. font-family: Microsoft YaHei !important;
  138. color: #FFFFFF !important;
  139. }
  140. .right-search .layui-tab-title .layui-this:after {
  141. border: none !important;
  142. }
  143. .right-search .layui-tab-content {
  144. margin: 0 0 0 3.06666vw !important;
  145. padding: 0 !important;
  146. }
  147. .input-icon {
  148. display: flex;
  149. align-items: center;
  150. }
  151. .wrap_box {
  152. width: 97%;
  153. height: 175rpx;
  154. }
  155. .serach_input {
  156. margin-left: 30rpx;
  157. width: 80%;
  158. height: 180rpx;
  159. }
  160. .textbox {
  161. width: 80rpx;
  162. height: 90rpx;
  163. line-height: 90rpx;
  164. align-items: center;
  165. float: left;
  166. }
  167. .textbox text {
  168. width: 70rpx;
  169. line-height: 90rpx;
  170. float: left;
  171. text-align: center;
  172. font-family: Microsoft YaHei;
  173. font-weight: 400;
  174. font-size: 14px;
  175. }
  176. .block {
  177. display: block;
  178. margin-bottom: 32rpx;
  179. width: 80%;
  180. margin: auto;
  181. }
  182. .point {
  183. width: 6rpx;
  184. height: 6rpx;
  185. border-radius: 6rpx;
  186. background: #000;
  187. float: left;
  188. margin-top: 40rpx;
  189. }
  190. .red {
  191. background: #FF6E3B;
  192. }
  193. .green {
  194. background: #2CD5AA;
  195. }
  196. .cred {
  197. color: #FF6E3B;
  198. }
  199. .cgreen {
  200. color: #2CD5AA;
  201. }
  202. .start {
  203. width: 100%;
  204. height: 49%;
  205. }
  206. .end {
  207. width: 100%;
  208. height: 50%;
  209. }
  210. .line {
  211. width: 70%;
  212. height: 1rpx;
  213. background: #e0e0e0;
  214. margin: auto;
  215. }
  216. .go_input {
  217. width: 70%;
  218. /* height: 30rpx; */
  219. height: 100%;
  220. color: #5E5E5E;
  221. font-family: Microsoft YaHei;
  222. font-weight: 400;
  223. font-size: 14px;
  224. }
  225. .inp-icon2 {
  226. width: 5.06666vw;
  227. height: 5.06666vw;
  228. margin-top: -2vw;
  229. margin: 0 0 7vw 4.39999vw;
  230. }
  231. .inp-icon3 {
  232. width: 5.06666vw;
  233. height: 5.06666vw;
  234. margin-top: -2vw;
  235. margin: 0 0 7vw 4.39999vw;
  236. }
  237. .layui-layer-btn .layui-layer-btn0 {
  238. border: 1px solid #dedede !important;
  239. background-color: #fff !important;
  240. color: #333 !important;
  241. }
  242. .flex_box ul {
  243. display: flex;
  244. justify-content: center;
  245. margin: 0 7.33333vw;
  246. }
  247. .flex_box ul li {
  248. width: 25%;
  249. display: flex;
  250. justify-content: center;
  251. }
  252. .img_tab {
  253. display: flex;
  254. flex-wrap: wrap;
  255. justify-content: center;
  256. position: relative;
  257. margin-bottom: 5px;
  258. }
  259. .gn_img {
  260. width: 10.66666vw;
  261. }
  262. .wrap_big {
  263. overflow-y: scroll;
  264. height: 340px;
  265. overflow-x: hidden;
  266. }
  267. .inline_one {
  268. width: 100% !important;
  269. margin: 0 !important;
  270. display: flex !important;
  271. padding: 0 !important;
  272. }
  273. .tab_one {
  274. width: 50%;
  275. height: 30px;
  276. line-height: 30px;
  277. text-align: center;
  278. font-size: 16px;
  279. color: #333;
  280. font-family: Microsoft YaHei;
  281. cursor: pointer;
  282. margin: 0 10px;
  283. }
  284. .select {
  285. font-weight: bold;
  286. border-bottom: 2px solid #176AB7;
  287. }
  288. .flex_text {
  289. /* width: 181%; */
  290. /* position: absolute; */
  291. text-align: center;
  292. font-size: 12px;
  293. font-family: Microsoft YaHei;
  294. font-weight: 400;
  295. color: #333333;
  296. }
  297. .flex_pop {
  298. width: 93.33333vw;
  299. background: #D8ECFF;
  300. position: absolute;
  301. z-index: 2000;
  302. border-top: 3px solid #2775CC;
  303. top: 109%;
  304. }
  305. .lineFour {
  306. right: -18%;
  307. }
  308. .lineFour::after {
  309. content: '';
  310. width: 0;
  311. height: 0;
  312. border: 10px solid transparent;
  313. border-bottom-color: #176AB7;
  314. margin-top: -20px;
  315. position: absolute;
  316. top: 0;
  317. right: 12.5%;
  318. }
  319. .lineThree {
  320. right: -119%;
  321. }
  322. .lineThree::after {
  323. content: '';
  324. width: 0;
  325. height: 0;
  326. border: 10px solid transparent;
  327. border-bottom-color: #176AB7;
  328. margin-top: -20px;
  329. position: absolute;
  330. top: 0;
  331. right: 35.5%;
  332. }
  333. .lineTwo {
  334. left: -119%;
  335. }
  336. .lineTwo::after {
  337. content: '';
  338. width: 0;
  339. height: 0;
  340. border: 10px solid transparent;
  341. border-bottom-color: #176AB7;
  342. margin-top: -20px;
  343. position: absolute;
  344. top: 0;
  345. left: 35.5%;
  346. }
  347. .lineOne {
  348. left: -18%;
  349. }
  350. .lineOne::after {
  351. content: '';
  352. width: 0;
  353. height: 0;
  354. border: 10px solid transparent;
  355. border-bottom-color: #176AB7;
  356. margin-top: -20px;
  357. position: absolute;
  358. top: 0;
  359. left: 12.5%;
  360. }
  361. .flex_wrap {
  362. display: flex;
  363. flex-wrap: wrap;
  364. align-items: center;
  365. padding: 2.60000vw 8.93333vw;
  366. }
  367. .flex_wrap div {
  368. width: 50%;
  369. display: flex;
  370. align-items: center;
  371. padding: 3vw 0;
  372. }
  373. .mapnav {
  374. display: inline-block;
  375. margin-left: 1.46666vw;
  376. white-space: nowrap;
  377. text-overflow: ellipsis;
  378. overflow: hidden;
  379. }
  380. .choice {
  381. font-size: 16px;
  382. font-family: Source Han Sans SC;
  383. font-weight: 400;
  384. color: #2775CC;
  385. }
  386. .wrap_result {
  387. /* width: 90%;
  388. overflow-y: auto;
  389. overflow-x: hidden;
  390. height: 84.86666vw;
  391. position: relative;
  392. background: #F3F3F3;
  393. margin: 0 auto;
  394. padding-top: 4.5vw; */
  395. }
  396. .wrap_result1 {
  397. width: 90%;
  398. overflow-y: auto;
  399. overflow-x: hidden;
  400. height: 84.86666vw;
  401. position: relative;
  402. background: #F3F3F3;
  403. margin: 0 auto;
  404. padding-top: 4.5vw;
  405. }
  406. .pad_box {
  407. margin-top: 80rpx;
  408. width: 100%;
  409. }
  410. .wrap_result .title-second {
  411. width: 100%;
  412. margin: 0;
  413. box-shadow: 0px 3px 6px 0px rgb(98 137 174 / 18%);
  414. border-radius: 10px;
  415. box-sizing: border-box;
  416. z-index: 1000;
  417. }
  418. .wrap_result1 .title-second {
  419. width: 90%;
  420. margin: 0;
  421. margin-bottom: 2.53333vw;
  422. box-shadow: 0px 3px 6px 0px rgb(98 137 174 / 18%);
  423. border-radius: 10px;
  424. box-sizing: border-box;
  425. position: fixed;
  426. top: 0;
  427. left: 0;
  428. z-index: 999;
  429. }
  430. .title_flex {
  431. display: flex;
  432. align-items: center;
  433. flex-wrap: wrap;
  434. font-size: 16px;
  435. font-family: Microsoft YaHei;
  436. font-weight: 400;
  437. color: #333333;
  438. }
  439. .flex_blue {
  440. height: 20px;
  441. background: rgba(23, 106, 183, .2);
  442. border-radius: 10px;
  443. font-size: 12px;
  444. font-family: Microsoft YaHei;
  445. font-weight: 400;
  446. color: #2775CC;
  447. line-height: 20px;
  448. text-align: center;
  449. margin-left: 7px;
  450. padding: 0px 10px;
  451. margin-top: 5px;
  452. }
  453. .flex_orange {
  454. display: flex;
  455. align-items: center;
  456. /* margin-top: 8px; */
  457. flex-wrap: wrap;
  458. }
  459. .three_tag {
  460. height: 26px;
  461. background: rgba(244, 78, 5, .16);
  462. text-align: center;
  463. line-height: 26px;
  464. font-size: 12px;
  465. font-family: Microsoft YaHei;
  466. font-weight: 400;
  467. color: #F54E06;
  468. margin-right: 7px;
  469. padding: 0 5px;
  470. margin-top: 5px;
  471. overflow: hidden;
  472. text-overflow: ellipsis;
  473. white-space: nowrap;
  474. }
  475. .content_p {
  476. display: inherit;
  477. font-size: 12px;
  478. font-family: Microsoft YaHei;
  479. font-weight: 400;
  480. color: #333333;
  481. line-height: 24px;
  482. margin-top: 5px;
  483. }
  484. .img_box {
  485. margin-top: 5px;
  486. }
  487. .img_box>img {
  488. display: inline-block;
  489. width: 128px;
  490. height: 72px;
  491. margin-right: 8px;
  492. }
  493. .address_box {
  494. padding-bottom: 4vw;
  495. border-bottom: 1px solid rgba(153, 153, 153, .3);
  496. margin: 4vw 0 3.2vw 0;
  497. }
  498. .address_box>p {
  499. font-size: 12px;
  500. font-family: Source Han Sans SC;
  501. font-weight: 400;
  502. color: #333333;
  503. }
  504. .flex_address {
  505. font-size: 12px;
  506. font-family: Source Han Sans SC;
  507. font-weight: 400;
  508. color: #2775CC;
  509. }
  510. .btn_box>button {
  511. width: 48%;
  512. cursor: pointer;
  513. }
  514. .one_bus {
  515. height: 10.26666vw;
  516. background: #2775CC;
  517. box-shadow: 0px 4px 25px 2px rgba(39, 117, 204, 0.34);
  518. border-radius: 0.8vw;
  519. line-height: 10.26666vw;
  520. text-align: center;
  521. outline: 0;
  522. border: 0;
  523. font-size: 14px;
  524. font-family: Source Han Sans SC;
  525. font-weight: 400;
  526. color: #FFFFFF;
  527. }
  528. .two_car {
  529. height: 10.26666vw;
  530. background: #10B891;
  531. box-shadow: 0px 4px 25px 2px rgba(16, 184, 145, 0.34);
  532. line-height: 10.26666vw;
  533. border-radius: 0.8vw;
  534. text-align: center;
  535. outline: 0;
  536. border: 0;
  537. font-size: 14px;
  538. font-family: Source Han Sans SC;
  539. font-weight: 400;
  540. color: #FFFFFF;
  541. }
  542. .titleFirst {
  543. background: #FFFFFF;
  544. box-shadow: 0px 3px 6px 0px rgba(98, 137, 174, 0.18);
  545. border-radius: 10px;
  546. padding: 3.46666vw 4.26666vw;
  547. margin-bottom: 2.53333vw;
  548. }
  549. .titleFirst:last-child {
  550. margin-bottom: 6.53333vw;
  551. }
  552. .btn_box {
  553. display: flex;
  554. justify-content: space-between;
  555. }
  556. .title-second {
  557. width: 86.66667vw;
  558. margin: 48vw auto 0;
  559. display: flex;
  560. justify-content: space-between;
  561. align-items: center;
  562. /* border-bottom: 1px solid #CCCCCC; */
  563. background-color: #fff;
  564. padding: 3.46666vw 4vw;
  565. }
  566. .title-second>h6 {
  567. font-size: 16px;
  568. font-weight: 400;
  569. color: #2775CC;
  570. }
  571. .back_wrap {
  572. width: 86.66667vw;
  573. margin: 11px auto 0;
  574. display: flex;
  575. justify-content: space-between;
  576. align-items: center;
  577. /* border-bottom: 1px solid #CCCCCC; */
  578. background-color: #fff;
  579. padding: 3.46666vw 4vw;
  580. border: 1px solid #DADFE3;
  581. box-shadow: 0px 3px 16px 0px rgba(98, 137, 174, 0.1800);
  582. border-radius: 10px;
  583. }
  584. .back_wrap>h6 {
  585. font-size: 16px;
  586. font-weight: 400;
  587. color: #2775CC;
  588. }
  589. .backBtn {
  590. width: 64px;
  591. height: 30px;
  592. background-color: #FFF;
  593. border: 1px solid #CCCCCC;
  594. outline: none;
  595. font-size: 14px;
  596. cursor: pointer;
  597. }
  598. .back_btn {
  599. width: 64px;
  600. height: 30px;
  601. background-color: #FFF;
  602. border: 1rpx solid #CCCCCC;
  603. outline: none;
  604. font-size: 14px;
  605. cursor: pointer;
  606. line-height: 30px;
  607. margin: 0;
  608. padding: 0;
  609. }
  610. .back_Btn {
  611. width: 64px;
  612. height: 30px;
  613. background-color: #FFF;
  614. border: 1px solid #CCCCCC;
  615. outline: none;
  616. font-size: 14px;
  617. cursor: pointer;
  618. }
  619. .btn_back {
  620. width: 64px;
  621. height: 30px;
  622. background-color: #FFF;
  623. border: 1px solid #CCCCCC;
  624. outline: none;
  625. font-size: 14px;
  626. cursor: pointer;
  627. }
  628. .show-second .layui-tab-title {
  629. display: flex;
  630. justify-content: space-around !important;
  631. width: 84.5% !important;
  632. border: none !important;
  633. margin: 2.66666vw auto 0 !important;
  634. height: 5.86666vw !important;
  635. background-color: #fff !important;
  636. padding: 3.46666vw 4.66666vw !important;
  637. }
  638. .show-second .layui-tab-title li {
  639. width: 25% !important;
  640. line-height: 20px !important;
  641. padding: 0px !important;
  642. }
  643. .show-second .layui-tab-title .layui-this {
  644. font-size: 14px !important;
  645. font-family: Source Han Sans SC !important;
  646. font-weight: bold !important;
  647. color: #333333 !important;
  648. position: relative;
  649. background-color: transparent !important;
  650. }
  651. .show-second .layui-tab-title .layui-this::after {
  652. content: '';
  653. width: 30%;
  654. height: 4px;
  655. background: #2775CC;
  656. border-radius: 4px;
  657. position: absolute;
  658. top: 100%;
  659. left: 37%;
  660. }
  661. .show-second .layui-tab-content {
  662. width: 93.5% !important;
  663. margin: 0 auto !important;
  664. padding: 0 !important;
  665. }
  666. .show-third .layui-tab-title {
  667. display: flex !important;
  668. justify-content: space-around !important;
  669. width: 84.5% !important;
  670. border: none !important;
  671. margin: 2.66666vw 0 0 2.66666vw !important;
  672. height: 5.86666vw !important;
  673. background-color: #fff !important;
  674. padding: 3.46666vw 4.66666vw !important;
  675. }
  676. .show-third .layui-tab-title li {
  677. width: 25% !important;
  678. line-height: 20px !important;
  679. }
  680. .show-third .layui-tab-title .layui-this {
  681. font-size: 14px !important;
  682. font-family: Source Han Sans SC !important;
  683. font-weight: bold !important;
  684. color: #333333 !important;
  685. position: relative;
  686. background-color: transparent !important;
  687. }
  688. .show-third .layui-tab-title .layui-this::after {
  689. content: '';
  690. width: 30%;
  691. height: 4px;
  692. background: #2775CC;
  693. border-radius: 4px;
  694. position: absolute;
  695. top: 100%;
  696. left: 37%;
  697. }
  698. .show-third .layui-tab-content {
  699. width: 93.5% !important;
  700. margin: 0 auto !important;
  701. padding-top: 0 !important;
  702. }
  703. .top_search {
  704. position: absolute;
  705. top: 2.93333vw;
  706. left: 2.66666vw;
  707. z-index: 1000;
  708. width: 94.66666vw;
  709. box-shadow: 0px 6px 32px 0px rgba(98, 137, 174, 0.18);
  710. background-color: #fff;
  711. border: 1px solid #DADFE3;
  712. border-radius: 20px;
  713. padding: 2.80000vw 5.33333vw;
  714. box-sizing: border-box;
  715. }
  716. .top_search .input-icon {
  717. justify-content: space-between;
  718. }
  719. .top_search .input-icon input {
  720. width: 90%;
  721. border: 0;
  722. outline: 0;
  723. font-size: 3.2vw;
  724. font-family: Microsoft YaHei;
  725. font-weight: 400;
  726. }
  727. .inp-icon1 {
  728. width: 5.06666vw;
  729. height: 5.06666vw;
  730. }
  731. /* 使用webkit内核的浏览器 */
  732. .top_search .input-icon input::-webkit-input-placeholder {
  733. color: #5E5E5E;
  734. }
  735. /* Firefox版本4-18 */
  736. .top_search .input-icon input:-moz-placeholder {
  737. color: #5E5E5E;
  738. }
  739. /* Firefox版本19+ */
  740. .top_search .input-icon input::-moz-placeholder {
  741. color: #5E5E5E;
  742. }
  743. /* IE浏览器 */
  744. .top_search .input-icon input:-ms-input-placeholder {
  745. color: #5E5E5E;
  746. }
  747. .boxpanel {
  748. display: none;
  749. width: 85.5%;
  750. margin: 0 auto;
  751. background-color: #fff;
  752. padding: 3.46666vw 4vw;
  753. }
  754. /* 起始点和终点的选择的样式 */
  755. .boxpanel h5 {
  756. font-size: 16px;
  757. font-weight: 400;
  758. color: #2775CC;
  759. cursor: default;
  760. padding-bottom: 10px;
  761. border-bottom: 1px solid #CCCCCC;
  762. margin: 10px 0 0 0;
  763. }
  764. .zjboxpanel {
  765. display: none;
  766. width: 85.5%;
  767. margin: 0 auto;
  768. background-color: #fff;
  769. padding: 3.46666vw 4vw;
  770. }
  771. .zjboxpanel h5 {
  772. font-size: 16px;
  773. font-weight: 400;
  774. color: #2775CC;
  775. cursor: default;
  776. padding-bottom: 10px;
  777. border-bottom: 1px solid #CCCCCC;
  778. margin: 10px 0 0 0;
  779. }
  780. .warp_choice {
  781. display: flex;
  782. align-items: center;
  783. margin: 10px 0 5px;
  784. }
  785. .warp_choice span {
  786. color: #FF780B;
  787. font-size: 14px;
  788. }
  789. #startPanel p {
  790. width: 100%;
  791. margin: 0 auto;
  792. color: #666666;
  793. text-overflow: ellipsis;
  794. overflow: hidden;
  795. white-space: nowrap;
  796. cursor: default;
  797. }
  798. #startPanel p.change_text_color {
  799. color: #2775CC;
  800. }
  801. #startPanel li {
  802. cursor: pointer;
  803. box-sizing: border-box;
  804. padding: 5px 10px;
  805. }
  806. #startPanel li:hover {
  807. background-color: #E9F3FF;
  808. cursor: pointer;
  809. }
  810. #endPanel p {
  811. width: 100%;
  812. margin: 0 auto;
  813. color: #666666;
  814. text-overflow: ellipsis;
  815. overflow: hidden;
  816. white-space: nowrap;
  817. cursor: default;
  818. }
  819. #endPanel li {
  820. cursor: pointer;
  821. box-sizing: border-box;
  822. padding: 5px 10px;
  823. }
  824. #endPanel li:hover {
  825. background-color: #E9F3FF;
  826. cursor: pointer;
  827. }
  828. #busstartPanel p {
  829. width: 100%;
  830. margin: 0 auto;
  831. color: #666666;
  832. text-overflow: ellipsis;
  833. overflow: hidden;
  834. white-space: nowrap;
  835. cursor: default;
  836. }
  837. #busstartPanel p.change_text_color {
  838. color: #2775CC;
  839. }
  840. #busstartPanel li {
  841. cursor: pointer;
  842. box-sizing: border-box;
  843. padding: 5px 10px;
  844. }
  845. #busstartPanel li:hover {
  846. background-color: #E9F3FF;
  847. cursor: pointer;
  848. }
  849. #busendPanel p {
  850. width: 100%;
  851. margin: 0 auto;
  852. color: #666666;
  853. text-overflow: ellipsis;
  854. overflow: hidden;
  855. white-space: nowrap;
  856. cursor: default;
  857. }
  858. #busendPanel li {
  859. cursor: pointer;
  860. box-sizing: border-box;
  861. padding: 5px 10px;
  862. }
  863. #busendPanel li:hover {
  864. background-color: #E9F3FF;
  865. cursor: pointer;
  866. }
  867. .startChoice {
  868. width: 64px;
  869. height: 30px;
  870. background: #FFFFFF;
  871. border: 1px solid #ccc;
  872. outline: none;
  873. margin-top: 5px;
  874. }
  875. .endChoice {
  876. width: 64px;
  877. height: 20px;
  878. background: #FFFFFF;
  879. border: 1px solid #ccc;
  880. outline: none;
  881. cursor: pointer;
  882. margin-top: 5px;
  883. }
  884. .no_results {
  885. background-color: #fff;
  886. height: calc(100vh - 286px);
  887. box-sizing: border-box;
  888. padding: 10px;
  889. }
  890. .layui-tab-bar {
  891. display: none !important;
  892. }
  893. .sticky {
  894. width: 100%;
  895. position: fixed;
  896. top: 0;
  897. left: 0;
  898. box-sizing: border-box;
  899. }
  900. .hide_list {
  901. width: 100%;
  902. cursor: pointer;
  903. height: 20px;
  904. line-height: 20px;
  905. background-color: #f4f4f4;
  906. }
  907. .back_top {
  908. width: 14vw;
  909. height: 14vw;
  910. position: fixed;
  911. bottom: 0;
  912. right: 0;
  913. display: none;
  914. z-index: 1000;
  915. }
  916. .content_from_ajax {
  917. width: 100% !important;
  918. margin: 0 !important;
  919. background-color: #fff !important;
  920. }
  921. .content_from_ajax .layui-tab-title li {
  922. width: 50% !important;
  923. padding: 0px !important;
  924. font-size: 16px !important;
  925. color: #999 !important;
  926. }
  927. .content_from_ajax .layui-tab-title .layui-this {
  928. color: #000 !important;
  929. }
  930. .content_from_ajax .layui-tab-title .layui-this:after {
  931. border-bottom: 2px solid #2775CB !important;
  932. }
  933. .content_from_ajax .layui-tab-content {
  934. padding: 0 !important;
  935. }
  936. .url_from_ajax {
  937. display: flex;
  938. padding: 15px 12px 0;
  939. }
  940. .point_from_ajax {
  941. width: 4px;
  942. height: 4px;
  943. background: #2775CC;
  944. border-radius: 2px;
  945. margin: 8px 8px 0 0;
  946. }
  947. .text_from_ajax {
  948. width: 100%;
  949. font-size: 15px;
  950. font-family: PingFang SC;
  951. font-weight: 500;
  952. color: #333333;
  953. border-bottom: 1px solid #F3F3F3;
  954. padding: 0 0 15px 0;
  955. }
  956. .handle_business {
  957. width: 76px;
  958. height: 25px;
  959. background: linear-gradient(90deg, #2775CC 0%, #6DAAEF 100%);
  960. border-radius: 5px;
  961. font-size: 12px;
  962. font-family: PingFang SC;
  963. font-weight: 500;
  964. color: #FFFFFF;
  965. line-height: 25px;
  966. text-align: center;
  967. line-height: 25px;
  968. margin-top: 10px;
  969. }
  970. .handle_business img {
  971. width: 11px;
  972. height: 11px;
  973. margin: 0 4px 0 8px;
  974. }
  975. .handle_business1 {
  976. width: 76px;
  977. height: 25px;
  978. background: linear-gradient(90deg, #2775CC 0%, #6DAAEF 100%);
  979. border-radius: 5px;
  980. font-size: 12px;
  981. font-family: PingFang SC;
  982. font-weight: 500;
  983. color: #FFFFFF;
  984. text-align: center;
  985. line-height: 25px;
  986. margin-top: 10px;
  987. }
  988. .handle_business2 {
  989. width: 76px;
  990. height: 25px;
  991. background: linear-gradient(90deg, #2775CC 0%, #6DAAEF 100%);
  992. border-radius: 5px;
  993. font-size: 12px;
  994. font-family: PingFang SC;
  995. font-weight: 500;
  996. color: #FFFFFF;
  997. text-align: center;
  998. line-height: 25px;
  999. margin-top: 10px;
  1000. }
  1001. .detailCheck {
  1002. width: 76px;
  1003. height: 25px;
  1004. background: linear-gradient(90deg, #2775CC 0%, #6DAAEF 100%);
  1005. border-radius: 5px;
  1006. font-size: 12px;
  1007. font-family: PingFang SC;
  1008. font-weight: 500;
  1009. color: #FFFFFF;
  1010. text-align: center;
  1011. line-height: 25px;
  1012. margin-top: 10px;
  1013. }
  1014. .handle_business1 img {
  1015. width: 11px;
  1016. height: 11px;
  1017. margin: 0 4px 0 8px;
  1018. }
  1019. #demo {
  1020. width: 88.5%;
  1021. height: 35px;
  1022. margin: 10px auto 20px;
  1023. }
  1024. #demo .layui-laypage {
  1025. width: 100% !important;
  1026. height: 15px !important;
  1027. }
  1028. #demo .layui-laypage a {
  1029. height: 15px !important;
  1030. line-height: 10px !important;
  1031. border: 0 !important;
  1032. font-size: 14px !important;
  1033. font-family: Microsoft YaHei !important;
  1034. color: #333;
  1035. padding: 0 !important;
  1036. margin: 0 !important;
  1037. }
  1038. #demo .layui-laypage span {
  1039. height: 15px !important;
  1040. line-height: 14px !important;
  1041. border: 0 !important;
  1042. font-size: 14px !important;
  1043. font-family: Microsoft YaHei !important;
  1044. color: #333;
  1045. padding: 0 !important;
  1046. vertical-align: middle !important;
  1047. margin: 0 !important;
  1048. }
  1049. #demo .layui-laypage a:last-child {
  1050. float: right !important;
  1051. }
  1052. #demo .layui-icon {
  1053. line-height: 15px !important;
  1054. vertical-align: middle !important;
  1055. }
  1056. #demo .layui-disabled span {
  1057. color: #d2d2d2 !important;
  1058. }
  1059. .show-sixth .pad_box .titleFirst {
  1060. background: #FFFFFF;
  1061. padding: 3.46666vw 4.26666vw;
  1062. margin-bottom: 0;
  1063. box-shadow: 0px 0px;
  1064. border-radius: 0;
  1065. border-top-left-radius: 10px;
  1066. border-top-right-radius: 10px;
  1067. }
  1068. .popup-box {
  1069. position: fixed;
  1070. z-index: 2000;
  1071. top: 0;
  1072. bottom: 0;
  1073. background-color: rgba(0, 0, 0, 0.5);
  1074. width: 100%;
  1075. height: 100%;
  1076. opacity: 0;
  1077. visibility: hidden;
  1078. transition: opacity .5s;
  1079. }
  1080. .popup-box.show {
  1081. opacity: 1;
  1082. visibility: visible;
  1083. }
  1084. .info-bottom {
  1085. position: fixed;
  1086. z-index: 2001;
  1087. width: 100%;
  1088. height: 550rpx;
  1089. bottom: 0;
  1090. background-image: url(https://www.cqna.gov.cn/mnazw/applet/mapbg.png);
  1091. background-size: cover;
  1092. /* background-repeat: no-repeat; */
  1093. background-color: #fff;
  1094. border-top-left-radius: 10rpx;
  1095. border-top-right-radius: 10rpx;
  1096. }
  1097. .row-info {
  1098. display: flex;
  1099. flex-direction: column;
  1100. align-items: center;
  1101. margin: 0 88rpx;
  1102. font-size: 32rpx;
  1103. height: 55rpx;
  1104. }
  1105. .row-info view {
  1106. /* padding: 10rpx 0; */
  1107. }
  1108. .pop-value {
  1109. margin-top: 40rpx;
  1110. height: 400rpx;
  1111. width: 650rpx;
  1112. /* background-color: #d8ecff; */
  1113. }
  1114. .icon-pop {
  1115. width: 28rpx;
  1116. height: 38rpx;
  1117. display: block;
  1118. }
  1119. .text-pop {
  1120. display: block;
  1121. margin-left: 15rpx;
  1122. text-overflow: ellipsis;
  1123. /* overflow: hidden; */
  1124. width: 60%;
  1125. float: left;
  1126. height: 38rpx;
  1127. font-size: 28rpx;
  1128. font-weight: bold;
  1129. line-height: 38rpx;
  1130. text-align: center;
  1131. }
  1132. .item-title {
  1133. font-size: 16px;
  1134. font-family: Microsoft YaHei;
  1135. font-weight: 400;
  1136. color: #333333;
  1137. margin-bottom: 10rpx;
  1138. }
  1139. .item-introduce>text {
  1140. display: -webkit-box;
  1141. word-break: break-all;
  1142. -webkit-box-orient: vertical;
  1143. -webkit-line-clamp: 2;
  1144. overflow: hidden;
  1145. text-overflow: ellipsis;
  1146. line-height: 40rpx;
  1147. }
  1148. .item-introduce>image {
  1149. width: 250rpx;
  1150. height: 150rpx;
  1151. }
  1152. .item-introduce2>text {
  1153. display: -webkit-box;
  1154. word-break: break-all;
  1155. -webkit-box-orient: vertical;
  1156. overflow: hidden;
  1157. text-overflow: ellipsis;
  1158. line-height: 40rpx;
  1159. }
  1160. .item-introduce2>image {
  1161. width: 250rpx;
  1162. height: 150rpx;
  1163. }
  1164. .item-text-size {
  1165. font-size: 12px;
  1166. font-family: Source Han Sans SC;
  1167. font-weight: 400;
  1168. }
  1169. .item-tag-text {
  1170. color: #2775CC;
  1171. }
  1172. .check-info {
  1173. margin-top: 10rpx;
  1174. font-size: 12px;
  1175. font-family: Source Han Sans SC;
  1176. font-weight: 400;
  1177. width: 160rpx;
  1178. height: 60rpx;
  1179. background: linear-gradient(90deg, #2775CC 0%, #6DAAEF 100%);
  1180. line-height: 60rpx;
  1181. text-align: center;
  1182. color: #fff;
  1183. border-radius: 10rpx;
  1184. }
  1185. .item-btns {
  1186. border-top: 1rpx #d9dcdf solid;
  1187. width: 95%;
  1188. margin: 20rpx auto 0px auto;
  1189. height: 120rpx;
  1190. }
  1191. .item-btns>view {
  1192. width: 45%;
  1193. float: left;
  1194. margin: 20rpx 16rpx;
  1195. height: 80rpx;
  1196. text-align: center;
  1197. line-height: 70rpx;
  1198. color: #fff;
  1199. }
  1200. .item-bus {
  1201. background-color: #2775CC;
  1202. box-shadow: 0px 4px 25px 2px rgb(39 117 204 / 34%);
  1203. border-radius: 5rpx;
  1204. }
  1205. .item-car {
  1206. background-color: #10B891;
  1207. box-shadow: 0px 4px 25px 2px rgb(16 184 145 / 34%);
  1208. border-radius: 5rpx;
  1209. }
  1210. .title{
  1211. width: 100%;
  1212. height: 100rpx;
  1213. text-align: center;
  1214. line-height: 156rpx;
  1215. font-size: 35rpx;
  1216. font-weight: bold;
  1217. }
  1218. .gridiamge{
  1219. width: 80rpx;
  1220. height: 98rpx;
  1221. margin-bottom: -15rpx;
  1222. }
  1223. .dept-title {
  1224. margin: 30rpx 15rpx;
  1225. font-size: 16px;
  1226. font-family: Microsoft YaHei;
  1227. font-weight: 500;
  1228. }
  1229. .dept-list {
  1230. display: grid;
  1231. grid-template-columns: repeat(auto-fill, 30%);
  1232. grid-gap: 20rpx;
  1233. justify-content: center;
  1234. margin-bottom: 30rpx;
  1235. }
  1236. .dept-item {
  1237. width: 90%;
  1238. text-align: left;
  1239. border: 1rpx #176AB7 solid;
  1240. padding: 15rpx 5rpx;
  1241. color: #176AB7;
  1242. text-overflow: ellipsis;
  1243. white-space: nowrap;
  1244. overflow: hidden;
  1245. }
  1246. .dept-list .active {
  1247. color: #009688;
  1248. border: 1rpx #009688 solid;
  1249. }
  1250. .matter-tab {
  1251. margin: 0 auto;
  1252. display: flex;
  1253. width: 95%;
  1254. border-bottom: 1rpx #d9dcdf solid;
  1255. }
  1256. .matter-tab .matter-tab-li {
  1257. width: 50%;
  1258. height: 60rpx;
  1259. text-align: center;
  1260. }
  1261. .matter-tab>.active {
  1262. color: #176AB7;
  1263. border-bottom: 1rpx #176AB7 solid;
  1264. }
  1265. .matter-content {
  1266. width: 95%;
  1267. margin: 0 auto;
  1268. }
  1269. .matter-content-item {
  1270. display: flex;
  1271. padding: 20rpx;
  1272. line-height: 40rpx;
  1273. border-bottom: 0.5rpx #d9dcdf solid;
  1274. }
  1275. .matter-content-item-round:before {
  1276. content: "";
  1277. display: inline-block;
  1278. width: 10rpx;
  1279. height: 10rpx;
  1280. border-radius: 50%;
  1281. background-color: #176AB7;
  1282. margin-right: 5rpx;
  1283. }
  1284. .matter-page {
  1285. display: flex;
  1286. padding: 20rpx 30rpx;
  1287. }
  1288. .matter-page .matter-page-prev {
  1289. width: 50%;
  1290. text-align: left;
  1291. }
  1292. .matter-page .matter-page-next {
  1293. width: 50%;
  1294. text-align: right;
  1295. }
  1296. .matter-page .txt {
  1297. color: #d2d2d2;
  1298. }
  1299. .search-nav {
  1300. background-color: #fff;
  1301. padding-top: 20rpx;
  1302. }
  1303. .matter-event-item::before {
  1304. content: "";
  1305. display: inline-block;
  1306. width: 10rpx;
  1307. height: 10rpx;
  1308. border-radius: 50%;
  1309. background-color: #176AB7;
  1310. margin-right: 5rpx;
  1311. }
  1312. .icon-shq {
  1313. width: 80rpx;
  1314. height: 80rpx;
  1315. background-size: 100% 100%;
  1316. position: absolute;
  1317. top: 530rpx;
  1318. right: 20rpx;
  1319. border-radius: 20rpx;
  1320. }