map.wxss 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404
  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: 50px;
  59. }
  60. .right-map .map {
  61. width: 73%;
  62. height: 360px;
  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: 60rpx;
  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. }