parkingFee.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050
  1. <template>
  2. <div :class="[theme, 'paekingFeeClass']">
  3. <scroll-view :class="['scroll-Y' ,'color-scroll-Y']">
  4. <div class="wrap">
  5. <div class="parkingFee">
  6. <!-- <wx-points-commit ref='wxPointsCommit'></wx-points-commit> -->
  7. <!-- KIP菜单 -->
  8. <div
  9. v-if="source === 'KIP'"
  10. :class="{
  11. top_menu: true,
  12. blue_top_menu: custTypeId === 1,
  13. green_top_menu: custTypeId === 2,
  14. }"
  15. >
  16. <div class="menu_item" @click="menuToPage('PAYMENT_RECORDS')">
  17. <img :src="`${require(`@/pages/parkingFee/static/images/icon-order.png`)}`" />
  18. <span>缴费记录</span>
  19. </div>
  20. <div class="menu_item" @click="menuToPage('PARKING_INVOICE')">
  21. <img :src="`${require(`@/pages/parkingFee/static/images/icon-ticket.png`)}`" />
  22. <span>停车开票</span>
  23. </div>
  24. <div class="menu_item" @click="menuToPage('VEHICLE_MANAGE')">
  25. <img :src="`${require(`@/pages/parkingFee/static/images/icon-car.png`)}`" />
  26. <span>车辆管理</span>
  27. </div>
  28. </div>
  29. <!-- 菜单 -->
  30. <div
  31. :class="{
  32. top_menu: true,
  33. blue_top_menu: custTypeId === 1,
  34. green_top_menu: custTypeId === 2,
  35. }"
  36. v-if="custTypeId >= 0 && portalsByLbsList.length && source !== 'KIP'"
  37. >
  38. <div class="menu_item" @click="menuToPage('PAYMENT_RECORDS')" v-if="portalsByLbsList.indexOf('PAYMENT_RECORDS') > -1">
  39. <img :src="`${require(`@/pages/parkingFee/static/images/icon-order.png`)}`" />
  40. <span>缴费记录</span>
  41. </div>
  42. <div class="menu_item" @click="menuToPage('COUPON_EXCHANGE')" v-if="portalsByLbsList.indexOf('COUPON_EXCHANGE') > -1">
  43. <img :src="`${require(`@/pages/parkingFee/static/images/icon-coupon.png`)}`" />
  44. <span>停车券兑换</span>
  45. </div>
  46. <div class="menu_item" @click="menuToPage('PARKING_INVOICE')" v-if="portalsByLbsList.indexOf('PARKING_INVOICE') > -1">
  47. <img :src="`${require(`@/pages/parkingFee/static/images/icon-ticket.png`)}`" />
  48. <span>停车开票</span>
  49. </div>
  50. <div class="menu_item" @click="menuToPage('VEHICLE_MANAGE')" v-if="portalsByLbsList.indexOf('VEHICLE_MANAGE') > -1">
  51. <img :src="`${require(`@/pages/parkingFee/static/images/icon-car.png`)}`" />
  52. <span>车辆管理</span>
  53. </div>
  54. <div class="menu_item" @click="menuToPage('PARKING_BENEFITS')" v-if="portalsByLbsList.indexOf('PARKING_BENEFITS') > -1">
  55. <img :src="`${require(`@/pages/parkingFee/static/images/parkingRights.svg`)}`" />
  56. <span>停车权益</span>
  57. </div>
  58. </div>
  59. <!-- 中控 -->
  60. <div class="parkingFee-bottom">
  61. <div style="height: 40px; background-color: #FBFCFF;" v-if="source === 'KIP'"></div>
  62. <div v-if="supportUnlicensed && source !== 'KIP'" :class="['parkingFee-tab', tabbarActive === 'paymentForUnregisteredVehicle' && 'unlicensed-box-bottom']">
  63. <div :class="['bar', tabbarActive === 'manualPayment' && 'active']" @click="tabbarActiveEvent('manualPayment')">手动缴费</div>
  64. <div :class="['bar', tabbarActive === 'paymentForUnregisteredVehicle' && 'active']" @click="tabbarActiveEvent('paymentForUnregisteredVehicle')">无牌缴费</div>
  65. </div>
  66. <!-- 无牌缴费 -->
  67. <div class="unlicensed-box" v-if="tabbarActive === 'paymentForUnregisteredVehicle'">
  68. <!-- 无牌车 -->
  69. <div class="no-car-unlicensed-box" v-if="!unlicensedCar">
  70. <img :src="`${require(`@/pages/parkingFee/static/images/unlicensed-1.png`)}`" />
  71. <div class="no-car-unlicensed-info">未查询到无牌车信息</div>
  72. <div class="search-btn no-car-unlicensed-btn" @click="scanCarCode">
  73. <!-- <van-icon name="scan" />扫描进场二维码领取无牌车号牌 -->
  74. <img class="unlicensed-scan" :src="`${require(`@/pages/parkingFee/static/images/unlicensed-scan.png`)}`" /><sapn class="text">扫描进场二维码领取无牌车号牌</sapn>
  75. </div>
  76. </div>
  77. <!-- 有无牌车 -->
  78. <div class="in-car" v-if="unlicensedCar">
  79. <div class="car-number-box">
  80. <img :src="`${require(`@/pages/parkingFee/static/images/unlicensed-0.png`)}`" />
  81. <div class="car-number">
  82. <div class="number">{{ unlicensedCar }}</div>
  83. <div class="tips">车辆类型:无牌车辆</div>
  84. </div>
  85. </div>
  86. <div class="search-btn" @click="unlicensedToPay">去支付</div>
  87. </div>
  88. </div>
  89. <!-- 手动缴费: v-show="tabbarActive === 'manualPayment'" -->
  90. <div class="manual-box" v-else>
  91. <div class="parkingFee-search">
  92. <div class="search_tip_1" :style="{paddingTop: supportUnlicensed? '0': '32px'}">
  93. <div class="title">车辆类型</div>
  94. <!-- <k-tab ref="k-tab" type="fill" @change="toggleType" :tabs="['燃油车牌', '新能源', '特殊车牌']" />-->
  95. <k-tab ref="k-tab" type="fill" @change="toggleType" :tabs="['燃油车牌', '新能源', '特殊车牌']" />
  96. </div>
  97. <!-- <div class="search_tip">
  98. <div class="title">车辆类型</div>
  99. <div class="search_tip_pt">
  100. <div :class="carType == 0 ? 'search_tip_pt_index' : ''" @click="toggleType(0)">燃油车牌</div>
  101. <div :class="carType == 1 ? 'search_tip_pt_index' : ''" @click="toggleType(1)">新能源</div>
  102. <div :class="carType == 2 ? 'search_tip_pt_index' : ''" @click="toggleType(2)">特殊车牌</div>
  103. </div>
  104. </div> -->
  105. <div class="input-box">
  106. <!-- <div v-for="i in carType === 1 ? 8 : 7" class="li" :key="`numArr${i}`" @click="clickShowKeyboard(i)" :class="[active === i ? 'active' : '']">
  107. {{ numArr[i] }}
  108. </div> -->
  109. <div class="van-hairline--surround li" @click="clickShowKeyboard(0)" :class="[active === 0 ? 'active' : '']">
  110. {{ numArr[0] }}
  111. </div>
  112. <div class="van-hairline--surround li" @click="clickShowKeyboard(1)" :class="[active === 1 ? 'active' : '']">
  113. {{ numArr[1] }}
  114. </div>
  115. <div class="input_box_dian">·</div>
  116. <div class="van-hairline--surround li" @click="clickShowKeyboard(2)" :class="[active === 2 ? 'active' : '']">
  117. {{ numArr[2] }}
  118. </div>
  119. <div class="van-hairline--surround li" @click="clickShowKeyboard(3)" :class="[active === 3 ? 'active' : '']">
  120. {{ numArr[3] }}
  121. </div>
  122. <div class="van-hairline--surround li" @click="clickShowKeyboard(4)" :class="[active === 4 ? 'active' : '']">
  123. {{ numArr[4] }}
  124. </div>
  125. <div class="van-hairline--surround li" @click="clickShowKeyboard(5)" :class="[active === 5 ? 'active' : '']">
  126. {{ numArr[5] }}
  127. </div>
  128. <div :class="['van-hairline--surround li', active === 6 ? 'active' : '']" @click="clickShowKeyboard(6)">
  129. {{ numArr[6] }}
  130. </div>
  131. <div class="li dashed green-active" @click="clickShowKeyboard(7)" :class="[active === 7 ? 'active' : '']" >
  132. <span v-if="carType === 1">{{ numArr[7] }}</span>
  133. <img v-else :src="require('@/pages/parkingFee/static/images/unlicensed/leaf.svg')">
  134. </div>
  135. </div>
  136. <k-button title="查询缴费" style="margin-top: 46px;margin-bottom: 43px;" :disabled="disabledBtn" disabledColor="#D1D2D9" @click="preHandleSearch" />
  137. <!-- <div type="primary" class="search-btn" :class="disabledBtn ? 'disabled-btn' : ''" :disabled="disabledBtn" @click="preHandleSearch">查询缴费</div> -->
  138. </div>
  139. <div class="vehicleMgt-list">
  140. <div class="vehicleMgt-title">
  141. <div>历史查询车辆</div>
  142. <!-- <image src="./static/images/icon5.png" class="vehicleMgt-title-img"/> -->
  143. </div>
  144. <div class="vehicleMgt-content" v-if="carList.length">
  145. <div class="item" v-for="(item, index) in carList" :key="index" @click="toHandleSearchBefore(item, 1)" :class="vehicleNumber == item ? 'vehicleMgt-content_cls' : ''">
  146. {{ item | formatCarno }}
  147. </div>
  148. </div>
  149. </div>
  150. </div>
  151. </div>
  152. <div class="parkingFee-top">
  153. <div class="top_content ql-snow">
  154. <div class="title_box">
  155. <span class="btn">缴费说明</span>
  156. </div>
  157. <div class="info" :class="[!init_ch ? 'info_show' : '', 'ql-editor']">
  158. <div v-html="description"></div>
  159. </div>
  160. </div>
  161. <div v-if="!init_ch && description && description.length > 60" class="top_down_filter"></div>
  162. <div class="top_down" @click="top_display" v-if="!init_ch && description && description.length > 60"><van-icon name="arrow-down" /></div>
  163. <div class="top_down" @click="top_display" v-else><van-icon name="arrow-up" /></div>
  164. </div>
  165. </div>
  166. </div>
  167. </scroll-view>
  168. <wx-points-auth ref="wxPointsAuth"></wx-points-auth>
  169. <plate-number ref="plateKeyboard" :noDisBtn="[32, 33, 34,35, 36, 37]" :carType="carType" :active="active" :ind="ind" :numArr="numArr" @carnoArr="updateCarno"></plate-number>
  170. <checkCarPopup ref="checkCarPopup"></checkCarPopup>
  171. </div>
  172. </template>
  173. <script>
  174. import parkingFeeJs from './mixins/parkingFee';
  175. import baseMixins from './mixins/base'
  176. export default {
  177. mixins: [baseMixins, parkingFeeJs],
  178. name: 'parkingFeeCom',
  179. };
  180. </script>
  181. <style lang="less" scoped>
  182. .scroll-Y {
  183. width: 100%;
  184. height: 100vh;
  185. }
  186. .paekingFeeClass {
  187. position:relative;
  188. }
  189. .color-scroll-Y {
  190. background: #f4f7ff;
  191. // background: red;
  192. }
  193. .wrap {
  194. display: flex;
  195. flex-direction: column;
  196. width: 100%;
  197. .parkingFee {
  198. display: flex;
  199. flex-direction: column;
  200. .top_menu {
  201. background: #FBFCFF;
  202. box-sizing: border-box;
  203. display: flex;
  204. justify-content: space-between;
  205. padding-top: 34px;
  206. margin-bottom: 20px;
  207. padding-bottom: 30px;
  208. .menu_item {
  209. display: flex;
  210. flex-direction: column;
  211. align-items: center;
  212. width: 33.3%;
  213. img {
  214. width: 100px;
  215. height: 100px;
  216. margin-bottom: 3px;
  217. }
  218. span {
  219. // font-size: 30px;
  220. margin-top: 10px;
  221. // color: #333333;
  222. // font-size: 28px;
  223. font-family: 'Inter';
  224. font-style: normal;
  225. font-weight: 400;
  226. font-size: 28px;
  227. line-height: 34px;
  228. color: #333333;
  229. }
  230. }
  231. }
  232. .parkingFee-bottom {
  233. width: 100%;
  234. display: flex;
  235. flex-direction: column;
  236. box-sizing: border-box;
  237. // tabber 切换
  238. .parkingFee-tab {
  239. padding-top: 46px;
  240. padding-left: 27px;
  241. padding-bottom: 50px;
  242. background-color: #FBFCFF;
  243. display: flex;
  244. align-items: flex-end;
  245. &.unlicensed-box-bottom {
  246. padding-bottom: 120px;
  247. }
  248. .bar {
  249. color: #666666;
  250. // font-size: 32px;
  251. // font-weight: 500;
  252. font-family: 'PingFang SC';
  253. font-style: normal;
  254. font-weight: 500;
  255. font-size: 32px;
  256. line-height: 30px;
  257. /* identical to box height, or 94% */
  258. color: #666666;
  259. &:nth-child(1) {
  260. margin-right: 24px;
  261. }
  262. &.active {
  263. font-size: 38px;
  264. color: #333333;
  265. font-family: 'PingFang SC';
  266. font-style: normal;
  267. font-weight: 500;
  268. font-size: 38px;
  269. line-height: 38px;
  270. color: #333333;
  271. }
  272. }
  273. }
  274. // 车牌号查询
  275. .parkingFee-search {
  276. width: 100%;
  277. display: flex;
  278. flex-direction: column;
  279. background: #FBFCFF;
  280. box-sizing: border-box;
  281. .search_tip {
  282. width: 100%;
  283. margin-left: -1px;
  284. display: flex;
  285. justify-content: flex-start;
  286. align-items: center;
  287. padding-right: 30px;
  288. margin-bottom: 40px;
  289. .title {
  290. font-size: 30px;
  291. color: #333333;
  292. padding-left: 27px;
  293. margin-right: 33px;
  294. }
  295. .search_tip_pt {
  296. font-size: 28px;
  297. margin-right: 30px;
  298. flex: 1;
  299. display: flex;
  300. justify-content: space-around;
  301. align-items: center;
  302. border: 1px solid #999999;
  303. height: 60px;
  304. color: #999999;
  305. overflow: hidden;
  306. border-radius: 90px;
  307. div {
  308. height: 100%;
  309. width: 100%;
  310. border-radius: 90px;
  311. line-height: 62px;
  312. text-align: center;
  313. }
  314. .search_tip_pt_index {
  315. color: #fff;
  316. //background-image: linear-gradient(to right, #7e4fa1, #433c7f);
  317. background-color: #644a79;
  318. }
  319. }
  320. }
  321. .search_tip_1 {
  322. padding: 0 27px 40px;
  323. display: flex;
  324. align-items: center;
  325. .title {
  326. // font-size: 30px;
  327. margin-right: 33px;
  328. font-family: 'PingFang SC';
  329. font-style: normal;
  330. font-weight: 500;
  331. font-size: 30px;
  332. line-height: 36px;
  333. color: #333333;
  334. }
  335. .k-tab-group-fill {
  336. flex: 1;
  337. }
  338. }
  339. // 车牌号 & 虚拟键盘
  340. .input-box {
  341. width: 100%;
  342. flex: 1;
  343. display: flex;
  344. padding-bottom: 46px;
  345. padding: 0 17px;
  346. justify-content: center;
  347. box-sizing: border-box;
  348. .li {
  349. width: 100%;
  350. //border: 1px solid #d9dbe0;
  351. box-sizing: border-box;
  352. height: 90px;
  353. display: flex;
  354. align-items: center;
  355. justify-content: center;
  356. color: #333333;
  357. background-color: #f4f7ff;
  358. border-radius: 4px;
  359. font-size: 40px;
  360. margin: 0 3px;
  361. &.dashed {
  362. background-color: #fafbff;
  363. border: 1px dashed #fafbff;
  364. }
  365. &.van-hairline--surround {
  366. &::after{
  367. border-radius: 7px;
  368. border-color: #D9DBE0;
  369. }
  370. }
  371. &.active {
  372. &::after{
  373. border-color: var(--k-color-primary-01, #064c8a);
  374. }
  375. }
  376. &.green-active {
  377. background: #F8FFED;
  378. border-color: #7DB124;
  379. color: #7DB124;
  380. img{
  381. width: 41px;
  382. height: 39px;
  383. }
  384. }
  385. }
  386. .input_box_dian {
  387. display: flex;
  388. justify-content: center;
  389. align-items: center;
  390. font-size: 120px;
  391. height: 70px;
  392. color: var(--k-color-primary);
  393. }
  394. }
  395. .search-btn {
  396. color: #fff;
  397. margin: 0 auto;
  398. height: 90px;
  399. width: calc(100% - 60px);
  400. line-height: 90px;
  401. border-radius: 80px;
  402. font-size: 36px;
  403. text-align: center;
  404. //background-image: linear-gradient(to right, #7e4fa1, #433c7f);
  405. // background-color: #644a79;
  406. background-color: var(--k-color-primary);
  407. margin-bottom: 43px;
  408. }
  409. .disabled-btn {
  410. background-color: #c1c1c1 !important;
  411. //background-image: none !important;
  412. }
  413. }
  414. /* 历史车牌 */
  415. .vehicleMgt-list {
  416. // margin-top: 43px;
  417. // padding-top: 43px;
  418. display: flex;
  419. flex-direction: column;
  420. // margin-bottom: 34px;
  421. padding-bottom: 34px;
  422. //margin-top: 20px;
  423. //padding-top: 20px;
  424. background-color: #FBFCFF;
  425. .vehicleMgt-title {
  426. //width: 91%;
  427. padding-left: 27px;
  428. display: flex;
  429. text-align: left;
  430. font-weight: 500;
  431. justify-content: space-between;
  432. //margin-left: 4%;
  433. // padding-left: 30px;
  434. //padding-top: 30px;
  435. height: 40px;
  436. line-height: 40px;
  437. box-sizing: border-box;
  438. margin-bottom: 24px;
  439. // border-top: 1px solid #f2f2f2;
  440. font-size: 30px;
  441. .vehicleMgt-title-img {
  442. width: 30px;
  443. height: 30px;
  444. }
  445. }
  446. .vehicleMgt-content {
  447. width: 94%;
  448. margin-left: 29px;
  449. display: flex;
  450. flex-wrap: wrap;
  451. // justify-content: space-around;
  452. border-radius: 15px;
  453. .item {
  454. width: 30%;
  455. height: 60px;
  456. box-sizing: content-box;
  457. //padding: 0 2px;
  458. // margin-top: 30px;
  459. // margin-left: 16px;
  460. margin-right: 15px;
  461. margin-bottom: 16px;
  462. text-align: center;
  463. box-sizing: border-box;
  464. border: 1px solid #d9dbe0;
  465. background-color: #f4f7ff;
  466. line-height: 60px;
  467. font-size: 28px;
  468. border-radius: 30px;
  469. color: #666666;
  470. }
  471. .vehicleMgt-content_cls {
  472. color: var(--k-color-primary-active);
  473. border: 2px solid var(--k-color-primary-active);
  474. }
  475. }
  476. }
  477. }
  478. /* 无牌车UI */
  479. .unlicensed-box {
  480. background-color: #FBFCFF;
  481. .no-car-unlicensed-box {
  482. box-sizing: border-box;
  483. img {
  484. width: 391px;
  485. display: block;
  486. margin: 0 auto;
  487. }
  488. .no-car-unlicensed-info {
  489. color: #919baa;
  490. font-size: 36px;
  491. line-height: 36px;
  492. text-align: center;
  493. margin-bottom: 70px;
  494. font-family: 'PingFang SC';
  495. font-style: normal;
  496. font-weight: 400;
  497. }
  498. .search-btn {
  499. font-size: 32px;
  500. height: 90px;
  501. color: #ffffff;
  502. line-height: 90px;
  503. background: var(--k-color-primary);
  504. text-align: center;
  505. margin: 0 30px;
  506. border-radius: 45px;
  507. margin-bottom: 58px;
  508. .unlicensed-scan {
  509. display: inline-block;
  510. width: 60px;
  511. height: 60px;
  512. position: relative;
  513. top: 17px;
  514. margin-right: 15px;
  515. }
  516. &.no-car-unlicensed-btn {
  517. .text{
  518. position: relative;
  519. top: -2px;
  520. }
  521. }
  522. }
  523. }
  524. .in-car {
  525. box-sizing: border-box;
  526. .car-number-box {
  527. height: 230px;
  528. //padding-top: 53px;
  529. padding-left: 18px;
  530. //padding-bottom: 34px;
  531. background: #fbfcff;
  532. border: 1px solid #d9dbe0;
  533. border-radius: 4px;
  534. margin: 0 24px;
  535. display: flex;
  536. margin-bottom: 40px;
  537. display: flex;
  538. align-items: center;
  539. img {
  540. width: 288px;
  541. height: 142px;
  542. }
  543. .car-number {
  544. .number {
  545. font-size: 50px;
  546. line-height: 56px;
  547. font-weight: 600;
  548. color: #333333;
  549. margin-bottom: 23px;
  550. }
  551. .tips {
  552. color: #999999;
  553. }
  554. }
  555. }
  556. .search-btn {
  557. background: var(--k-color-primary);
  558. border-radius: 45px;
  559. color: #ffffff;
  560. line-height: 90px;
  561. height: 90px;
  562. font-size: 36px;
  563. text-align: center;
  564. margin: 0 30px 40px;
  565. }
  566. }
  567. }
  568. /* 缴费说明 */
  569. .parkingFee-top {
  570. display: flex;
  571. flex-direction: column;
  572. background-size: 100% 30%;
  573. padding-left: 27px;
  574. padding-right: 27px;
  575. background-color: #FBFCFF;
  576. position: relative;
  577. .top_content {
  578. box-sizing: border-box;
  579. span {
  580. font-size: 24px;
  581. color: #898989;
  582. text-align: left;
  583. }
  584. .title_box {
  585. display: flex;
  586. align-items: center;
  587. justify-content: space-between;
  588. margin-bottom: 20px;
  589. .btn {
  590. box-sizing: border-box;
  591. border-radius: 20px;
  592. font-size: 30px;
  593. font-weight: 500;
  594. color: #333;
  595. text-align: left;
  596. }
  597. }
  598. .sub_title_box {
  599. margin-bottom: 5px;
  600. .btn{
  601. font-family: 'PingFang SC';
  602. font-style: normal;
  603. font-weight: 400;
  604. font-size: 26px;
  605. line-height: 40px;
  606. color: #333333;
  607. }
  608. }
  609. .info {
  610. padding-left: 2px;
  611. font-size: 27px;
  612. width: 95%;
  613. // color: #666;
  614. line-height: 45px;
  615. p {
  616. margin: 0;
  617. }
  618. }
  619. .info_show {
  620. height: 150px;
  621. overflow: hidden;
  622. }
  623. }
  624. .top_down_filter {
  625. height: 150px;
  626. margin-top: -150px;
  627. background-color: #FBFCFF;
  628. background: linear-gradient(to top, #FBFCFF, rgba(0, 123, 255, 0));
  629. }
  630. .top_down {
  631. width: 100%;
  632. text-align: center;
  633. color: #999999;
  634. padding-top: 25px;
  635. padding-bottom: 20px;
  636. }
  637. }
  638. }
  639. }
  640. // 缴费说明
  641. .payInstruct_wrap {
  642. width: 300px;
  643. margin: 0 auto;
  644. display: flex;
  645. flex-direction: column;
  646. background: #fff;
  647. border-radius: 20px;
  648. .scroll {
  649. height: 600px;
  650. display: flex;
  651. flex-direction: column;
  652. padding: 20px;
  653. box-sizing: border-box;
  654. .payInstruct_title {
  655. font-size: 30px;
  656. text-align: center;
  657. padding: 20px 0;
  658. box-sizing: border-box;
  659. border-bottom: 1px solid #f2f2f2;
  660. }
  661. .payInstruct_con {
  662. display: flex;
  663. width: 100%;
  664. padding: 20px 10px;
  665. box-sizing: border-box;
  666. span {
  667. font-size: 28px;
  668. color: #999;
  669. }
  670. }
  671. }
  672. }
  673. .class-plate-box {
  674. width: 100%;
  675. padding: 24px 0;
  676. box-sizing: border-box;
  677. position: relative;
  678. }
  679. .delBtn {
  680. color: #fff;
  681. height: 38px;
  682. line-height: 38px;
  683. font-size: 20px;
  684. width: 124px;
  685. border-radius: 7px;
  686. text-align: center;
  687. padding: 4px;
  688. background-color: #c69c6d;
  689. }
  690. .payThe {
  691. background-color: #fff;
  692. width: 100%;
  693. .pay_index {
  694. text-align: center;
  695. width: 200px;
  696. padding-top: 10px;
  697. margin: 0px auto;
  698. }
  699. .pay_title {
  700. width: 500px;
  701. display: flex;
  702. align-items: center;
  703. margin-top: 30px;
  704. }
  705. .pay_title1 {
  706. width: 100%;
  707. margin-top: 20px;
  708. display: flex;
  709. align-items: center;
  710. }
  711. .pay_title_yhj {
  712. margin-left: 60px;
  713. font-size: 20px;
  714. }
  715. .pay_title_yhj1 {
  716. margin-left: 35px;
  717. font-size: 20px;
  718. }
  719. .payjf {
  720. font-size: 20px;
  721. margin-left: 30px;
  722. }
  723. .paySelect {
  724. color: rgba(16, 16, 16, 100);
  725. font-size: 20px;
  726. font-family: Arial;
  727. border: 1px solid rgba(187, 187, 187, 100);
  728. border-radius: 10px;
  729. margin-left: 80px;
  730. width: 260px;
  731. height: 80px;
  732. }
  733. .paySelect1 {
  734. color: rgba(16, 16, 16, 100);
  735. font-size: 20px;
  736. font-family: Arial;
  737. border: 1px solid rgba(187, 187, 187, 100);
  738. border-radius: 10px;
  739. margin-left: 80px;
  740. width: 260px;
  741. height: 80px;
  742. display: flex;
  743. align-items: center;
  744. }
  745. .pay-se {
  746. width: 120px;
  747. height: 100%;
  748. background-color: #d8dce6;
  749. .pay-se-l {
  750. height: 48%;
  751. text-align: center;
  752. font-size: 50px;
  753. line-height: 68px;
  754. }
  755. .pay-se-l1 {
  756. border-left: 1px solid rgba(187, 187, 187, 100);
  757. border-bottom: 1px solid rgba(187, 187, 187, 100);
  758. }
  759. .pay-se-l2 {
  760. border-left: 1px solid rgba(187, 187, 187, 100);
  761. }
  762. }
  763. .payjfzk {
  764. font-size: 20px;
  765. color: #8b8c8b;
  766. margin-top: 10px;
  767. margin-left: 210px;
  768. }
  769. .pay_time {
  770. font-size: 28px;
  771. margin-left: 180px;
  772. padding-bottom: 40px;
  773. }
  774. .pay_time1 {
  775. margin-top: 26px;
  776. }
  777. }
  778. .pay_jiaof {
  779. width: 97%;
  780. height: 60px;
  781. line-height: 60px;
  782. margin-left: 10px;
  783. background-color: #c69c6d;
  784. text-align: center;
  785. color: rgba(255, 255, 255, 100);
  786. font-size: 28px;
  787. font-family: Microsoft Yahei;
  788. border-radius: 10px;
  789. margin-top: 20px;
  790. }
  791. .sq_content {
  792. width: 700px;
  793. background-color: #fff;
  794. position: fixed;
  795. bottom: 25px;
  796. left: 25px;
  797. height: 50px;
  798. display: flex;
  799. justify-content: space-between;
  800. align-items: center;
  801. border-radius: 15px;
  802. font-size: 16px;
  803. color: #c69c6d;
  804. padding: 0px 30px;
  805. box-sizing: border-box;
  806. }
  807. .sq_content .btn {
  808. width: 180px;
  809. height: 30px;
  810. line-height: 30px;
  811. text-align: center;
  812. color: #fff;
  813. background-color: #c69c6d;
  814. margin-top: -3px;
  815. border-radius: 25px;
  816. }
  817. // 停车券弹窗
  818. .ticketPopup {
  819. display: flex;
  820. flex-direction: column;
  821. background: #fff;
  822. border-radius: 20px 20px 0 0;
  823. z-index: 999;
  824. .popup-title {
  825. display: flex;
  826. justify-content: center;
  827. align-items: center;
  828. padding: 30px 42px;
  829. box-sizing: border-box;
  830. border-bottom: 1px solid #f2f2f2;
  831. position: relative;
  832. span {
  833. color: #999;
  834. font-size: 28px;
  835. }
  836. .useRule-text {
  837. position: absolute;
  838. right: 42px;
  839. color: rgb(58, 130, 248);
  840. }
  841. }
  842. .popup_scroll {
  843. height: 70vh;
  844. background: #f2f2f2;
  845. }
  846. .popup_content {
  847. width: 100%;
  848. height: 100%;
  849. display: flex;
  850. flex-direction: column;
  851. padding: 10px 20px;
  852. box-sizing: border-box;
  853. .item {
  854. display: flex;
  855. background: #fff;
  856. margin-bottom: 20px;
  857. border-radius: 10px;
  858. .item-left {
  859. flex: 1;
  860. display: flex;
  861. align-items: center;
  862. padding: 20px 0;
  863. box-sizing: border-box;
  864. position: relative;
  865. .item-type {
  866. position: absolute;
  867. top: 0;
  868. left: 0;
  869. background: #fff5f1;
  870. border-radius: 10px 0 10px 0;
  871. width: 205px;
  872. display: flex;
  873. justify-content: center;
  874. span {
  875. color: #999;
  876. font-size: 20px;
  877. text-align: center;
  878. line-height: 28px;
  879. }
  880. }
  881. .item-value {
  882. color: #c69c6d;
  883. font-size: 40px;
  884. padding: 10px 30px;
  885. box-sizing: border-box;
  886. width: 205px;
  887. display: flex;
  888. justify-content: center;
  889. .b {
  890. color: #c69c6d;
  891. font-weight: 600;
  892. font-size: 60px;
  893. }
  894. }
  895. .color_disabled {
  896. color: #999 !important;
  897. }
  898. }
  899. .item-right {
  900. display: flex;
  901. align-items: center;
  902. justify-content: center;
  903. border-radius: 0 8px 8px 0;
  904. position: relative;
  905. span {
  906. color: #c69c6d;
  907. font-size: 24px;
  908. padding: 0 20px;
  909. box-sizing: border-box;
  910. }
  911. .color_disabled {
  912. color: #999;
  913. }
  914. // 对勾
  915. .dot {
  916. position: absolute;
  917. top: 0;
  918. right: 0;
  919. width: 2.25rem;
  920. height: 2.375rem;
  921. }
  922. }
  923. }
  924. }
  925. }
  926. // 弹窗按钮
  927. .popup_button {
  928. width: 100%;
  929. display: flex;
  930. align-items: center;
  931. justify-content: space-between;
  932. padding: 10px 20px;
  933. box-sizing: border-box;
  934. span {
  935. height: 110px;
  936. line-height: 110px;
  937. text-align: center;
  938. }
  939. .cancel_btn {
  940. background: #fff;
  941. color: #ed1c24 !important;
  942. }
  943. .ok_btn {
  944. background: #c69c6d;
  945. color: #fff !important;
  946. width: 120px;
  947. height: 40px;
  948. line-height: 40px;
  949. border-radius: 40px;
  950. }
  951. }
  952. </style>