new-site.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. ax-body {
  2. display: block;
  3. height: 100%;
  4. background: #f6faff;
  5. }
  6. .site-body {
  7. position: relative;
  8. }
  9. .top-banner {
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. z-index: 0;
  15. width: 100%;
  16. /* position: relative; */
  17. }
  18. .banner-swiper {
  19. width: 100%;
  20. height: 520rpx;
  21. }
  22. .banner-swiper-item {
  23. width: 100%;
  24. height: 100%;
  25. }
  26. .swiper-current {
  27. position: absolute;
  28. width: 72rpx;
  29. height: 34rpx;
  30. background: rgba(255, 255, 255, 0.5);
  31. border-radius: 18rpx;
  32. font-size: 24rpx;
  33. color: #ffffff;
  34. text-align: center;
  35. line-height: 34rpx;
  36. right: 20rpx;
  37. bottom: 40rpx;
  38. }
  39. .swiper-item-image {
  40. width: 100%;
  41. height: 100%;
  42. }
  43. .site-content {
  44. width: 100%;
  45. position: absolute;
  46. /* top: 320rpx; */
  47. background: linear-gradient(180deg, #ffffff 0%, #f6faff 82%, #f6faff 100%);
  48. border-radius: 32rpx 32rpx 0rpx 0rpx;
  49. padding: 0 20rpx 0 20rpx;
  50. }
  51. .top-site-info {
  52. margin-top: 28rpx;
  53. }
  54. .site-title {
  55. font-weight: 800;
  56. font-size: 32rpx;
  57. color: #2b303a;
  58. }
  59. .site-text {
  60. display: flex;
  61. align-items: center;
  62. gap: 16rpx;
  63. font-size: 24rpx;
  64. color: #aaaaaa;
  65. margin-top: 20rpx;
  66. }
  67. .site-text .icon {
  68. width: 30rpx;
  69. height: 30rpx;
  70. }
  71. .site-location {
  72. background: url("@/static/img/site-bg01.png");
  73. background-size: cover;
  74. background-position: center;
  75. display: flex;
  76. align-items: center;
  77. justify-content: space-between;
  78. padding: 20rpx;
  79. margin-top: 20rpx;
  80. }
  81. .location-left .left-km {
  82. font-weight: bold;
  83. font-size: 28rpx;
  84. color: #2b303a;
  85. }
  86. .location-left .left-address {
  87. margin-top: 10rpx;
  88. font-size: 24rpx;
  89. color: #aaaaaa;
  90. }
  91. .location-rihgt {
  92. text-align: center;
  93. font-size: 24rpx;
  94. color: #181818;
  95. }
  96. .location-rihgt .right-icon {
  97. width: 40rpx;
  98. height: 40rpx;
  99. }
  100. .site-cost-info {
  101. background: #ffffff;
  102. border-radius: 16rpx;
  103. padding: 20rpx;
  104. margin-top: 20rpx;
  105. }
  106. .cost-info-title {
  107. display: flex;
  108. align-items: center;
  109. justify-content: space-between;
  110. }
  111. .cost-info-title .title-name {
  112. font-weight: bold;
  113. font-size: 32rpx;
  114. color: #2b303a;
  115. }
  116. .cost-info-title .check-info {
  117. display: flex;
  118. align-items: center;
  119. gap: 10rpx;
  120. font-size: 24rpx;
  121. color: #aaaaaa;
  122. }
  123. .cost-price-info {
  124. margin-top: 24rpx;
  125. width: 654rpx;
  126. height: 240rpx;
  127. background: linear-gradient(
  128. 90deg,
  129. #fee4c6 0%,
  130. rgba(251, 235, 198, 0.23) 100%
  131. );
  132. border-radius: 16rpx;
  133. }
  134. .cost-price-info .cost-title {
  135. display: flex;
  136. align-items: center;
  137. justify-content: space-between;
  138. position: relative;
  139. }
  140. .cost-title .title-left {
  141. font-weight: bold;
  142. font-size: 28rpx;
  143. color: #2b303a;
  144. margin-left: 20rpx;
  145. }
  146. .cost-title .title-right {
  147. width: 125rpx;
  148. height: 52rpx;
  149. font-weight: bold;
  150. font-size: 28rpx;
  151. color: #ffffff;
  152. text-align: center;
  153. line-height: 52rpx;
  154. border-radius: 0rpx 16rpx 0rpx 40rpx;
  155. background: linear-gradient(90deg, #f32027 0%, #f67014 100%);
  156. }
  157. .cost-price {
  158. display: flex;
  159. align-items: center;
  160. gap: 10rpx;
  161. margin-left: 20rpx;
  162. }
  163. .cost-price .cost-price-text {
  164. font-weight: 800;
  165. font-size: 48rpx;
  166. color: #ff6464;
  167. }
  168. .cost-price .cost-price-unit {
  169. margin-top: 16rpx;
  170. font-size: 24rpx;
  171. color: #2b303a;
  172. }
  173. .time-cost-price {
  174. margin-top: 12rpx;
  175. font-size: 28rpx;
  176. color: #2b303a;
  177. margin-left: 20rpx;
  178. }
  179. .time-cost-number {
  180. font-size: 28rpx;
  181. color: #2b303a;
  182. margin-left: 20rpx;
  183. margin-top: 12rpx;
  184. }
  185. .firm-price-info-box {
  186. margin-top: 24rpx;
  187. display: flex;
  188. align-items: center;
  189. justify-content: space-between;
  190. }
  191. .current-price-info {
  192. width: 316rpx;
  193. background: #f6faff;
  194. border-radius: 16rpx;
  195. clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
  196. padding: 20rpx;
  197. }
  198. .current-price-title {
  199. font-weight: bold;
  200. font-size: 28rpx;
  201. color: #2b303a;
  202. }
  203. .current-price {
  204. display: flex;
  205. align-items: center;
  206. gap: 8rpx;
  207. margin-top: 20rpx;
  208. }
  209. .current-price .current-price-text {
  210. font-weight: 800;
  211. font-size: 48rpx;
  212. color: #ff6464;
  213. }
  214. .current-price .current-price-unit {
  215. margin-top: 16rpx;
  216. font-size: 24rpx;
  217. color: #2b303a;
  218. }
  219. .time-current-price {
  220. font-size: 28rpx;
  221. color: #2b303a;
  222. margin-top: 12rpx;
  223. }
  224. .time-current-number {
  225. font-size: 28rpx;
  226. color: #2b303a;
  227. margin-top: 20rpx;
  228. margin-bottom: 12rpx;
  229. }
  230. .firm-price-info {
  231. width: 346rpx;
  232. padding: 20rpx;
  233. background: linear-gradient(
  234. 90deg,
  235. #fee4c6 0%,
  236. rgba(251, 235, 198, 0.23) 100%
  237. );
  238. clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  239. border-radius: 16rpx;
  240. }
  241. .firm-border {
  242. width: 30rpx;
  243. height: 30rpx;
  244. background: #3eb6f8;
  245. border-radius: 50%;
  246. position: absolute;
  247. z-index: 9999;
  248. top: -20rpx;
  249. }
  250. .firm-price-title {
  251. display: flex;
  252. align-items: center;
  253. justify-content: space-between;
  254. position: relative;
  255. }
  256. .firm-price-title .title-text {
  257. font-weight: bold;
  258. font-size: 28rpx;
  259. color: #f43921;
  260. margin-left: 20rpx;
  261. }
  262. .tags-price {
  263. position: absolute;
  264. right: -20rpx;
  265. top: -20rpx;
  266. width: 125rpx;
  267. height: 52rpx;
  268. font-weight: bold;
  269. font-size: 28rpx;
  270. color: #ffffff;
  271. text-align: center;
  272. line-height: 52rpx;
  273. border-radius: 0rpx 16rpx 0rpx 40rpx;
  274. background: linear-gradient(90deg, #f32027 0%, #f67014 100%);
  275. }
  276. .firm-price-box {
  277. display: flex;
  278. align-items: center;
  279. gap: 8rpx;
  280. margin-top: 20rpx;
  281. margin-left: 20rpx;
  282. }
  283. .firm-price-text {
  284. font-weight: 800;
  285. font-size: 48rpx;
  286. color: #9b683c;
  287. }
  288. .firm-price-unit {
  289. font-size: 24rpx;
  290. color: #2b303a;
  291. }
  292. .current-pay-price-box {
  293. display: flex;
  294. align-items: center;
  295. gap: 40rpx;
  296. margin-left: 20rpx;
  297. }
  298. .pay-price .firm-old-price {
  299. font-size: 28rpx;
  300. color: #aaaaaa;
  301. text-transform: none;
  302. text-decoration: line-through;
  303. }
  304. .pay-price .discount-price {
  305. font-weight: bold;
  306. font-size: 28rpx;
  307. color: #ff6464;
  308. margin-top: 12rpx;
  309. }
  310. .current-pay-price-box .pay-price-icon {
  311. width: 58rpx;
  312. height: 120rpx;
  313. }
  314. .stopcar-tips {
  315. display: flex;
  316. align-items: center;
  317. gap: 20rpx;
  318. margin-top: 20rpx;
  319. }
  320. .stopcar-tips .stopcar-tips-icon {
  321. width: 40rpx;
  322. height: 40rpx;
  323. }
  324. .stopcar-tips-text {
  325. display: flex;
  326. align-items: center;
  327. gap: 20rpx;
  328. }
  329. .stopcar-tips-text .tips-text-title {
  330. font-size: 28rpx;
  331. color: #2b303a;
  332. }
  333. .stopcar-tips-text .tips-text-mini {
  334. font-size: 28rpx;
  335. color: #aaaaaa;
  336. }
  337. .site-list-card {
  338. padding: 20rpx;
  339. background: #ffffff;
  340. border-radius: 16rpx;
  341. margin-top: 20rpx;
  342. }
  343. .site-select-tab {
  344. margin-top: 28rpx;
  345. gap: 20rpx;
  346. }
  347. .site-select-tab .select-item {
  348. width: 132rpx;
  349. height: 56rpx;
  350. background: #f6faff;
  351. border-radius: 16rpx;
  352. font-size: 28rpx;
  353. color: #aaaaaa;
  354. text-align: center;
  355. line-height: 56rpx;
  356. transition: opacity 0.3s ease-in-out;
  357. }
  358. .site-select-tab .selectItemActive {
  359. width: 132rpx;
  360. height: 56rpx;
  361. background: #3eb6f8;
  362. border-radius: 16rpx;
  363. font-size: 28rpx;
  364. color: #ffffff;
  365. text-align: center;
  366. line-height: 56rpx;
  367. transition: all 0.3s ease-in-out;
  368. }
  369. .site-select-tab .selectItemActive::before {
  370. opacity: 1;
  371. }
  372. .site-list-box {
  373. margin-top: 10rpx;
  374. }
  375. .not-data {
  376. text-align: center;
  377. color: #aaaaaa;
  378. font-size: 14px;
  379. margin-top: 20px;
  380. height: 80rpx;
  381. }
  382. .terminal-item {
  383. display: flex;
  384. align-items: center;
  385. justify-content: space-between;
  386. background-color: #f6f6f6;
  387. border-radius: 8px;
  388. height: 78px;
  389. padding: 10px;
  390. }
  391. .terminal-item + .terminal-item {
  392. margin-top: 10px;
  393. }
  394. .terminal-item .state {
  395. display: flex;
  396. width: 58px;
  397. height: 58px;
  398. border-radius: 100%;
  399. margin-right: 10px;
  400. padding: 4px;
  401. background-image: linear-gradient(
  402. to right,
  403. #ccc 0%,
  404. #ccc 35.8%,
  405. #c7cccf 65.9%,
  406. #e8e8e8 80.4%,
  407. #c8c8c8 100%
  408. );
  409. }
  410. .terminal-item .state .cake {
  411. display: flex;
  412. align-items: center;
  413. justify-content: center;
  414. flex-direction: column;
  415. width: 100%;
  416. height: 100%;
  417. border-radius: 100%;
  418. background-color: #eee;
  419. }
  420. .terminal-item .state .icon {
  421. display: block;
  422. width: 20px;
  423. height: 20px;
  424. }
  425. .terminal-item .state .name {
  426. font-size: 12px;
  427. margin-top: 3px;
  428. }
  429. .terminal-item .info {
  430. flex: 1;
  431. }
  432. .terminal-item .info .name {
  433. font-size: 14px;
  434. font-weight: bold;
  435. margin-bottom: 5px;
  436. }
  437. .terminal-item .info .subinfo {
  438. font-size: 12px;
  439. color: #aaa;
  440. }
  441. .terminal-item .state.green {
  442. background-image: linear-gradient(
  443. to right,
  444. #73e6a0 0%,
  445. #3eff8a 30%,
  446. #4edc86 60%,
  447. #b4ffd1 75%,
  448. #6be49a 100%
  449. );
  450. }
  451. .terminal-item .state.green .cake {
  452. background-color: #ecfff4;
  453. }
  454. .terminal-item .state.blue {
  455. background-image: linear-gradient(
  456. to right,
  457. #3eb6f8 0%,
  458. #81d8ff 35%,
  459. #75ceff 65%,
  460. #94e2ff 80%,
  461. #2cb5ff 100%
  462. );
  463. }
  464. .terminal-item .state.blue .cake {
  465. background-color: #e9f9ff;
  466. }
  467. .terminal-item .state.orange {
  468. background-image: linear-gradient(
  469. to right,
  470. #ffe9bc 0%,
  471. #ffd070 35%,
  472. #ffd887 65%,
  473. #ffd887 80%,
  474. #ffc246 100%
  475. );
  476. }
  477. .terminal-item .state.orange .cake {
  478. background-color: #fff8eb;
  479. }
  480. .terminal-item .state.err {
  481. background-image: linear-gradient(
  482. to right,
  483. #ffc4c4 0%,
  484. #f77474 35%,
  485. #ffaaaa 65%,
  486. #ffaaaa 80%,
  487. #f55b5b 100%
  488. );
  489. }
  490. .terminal-item .state.err .cake {
  491. background-color: #ffe9e9;
  492. }
  493. .site-detail-line {
  494. margin-top: 20rpx;
  495. border: 2rpx solid #f0f0f0;
  496. }
  497. .site-detail-info {
  498. }
  499. .site-detail-info .detail-info-item {
  500. display: flex;
  501. align-items: center;
  502. gap: 24rpx;
  503. margin-top: 20rpx;
  504. }
  505. .detail-info-item .left-item {
  506. font-weight: 500;
  507. font-size: 28rpx;
  508. color: #2b303a;
  509. }
  510. .detail-info-item .right-item {
  511. font-size: 28rpx;
  512. color: #aaaaaa;
  513. }
  514. .footer {
  515. position: fixed;
  516. left: 0;
  517. right: 0;
  518. bottom: 0;
  519. display: flex;
  520. align-items: center;
  521. height: 84px;
  522. overflow: hidden;
  523. border-radius: 20px 20px 0 0;
  524. background-image: linear-gradient(
  525. to right,
  526. #fee4c6 0%,
  527. rgba(255, 255, 255, 0.533) 75%,
  528. rgba(255, 255, 255, 0) 100%
  529. );
  530. background-color: #fff;
  531. }
  532. .footer .price-wrap .price {
  533. font-size: 20px;
  534. }
  535. .scan {
  536. flex: 1;
  537. display: flex;
  538. align-items: center;
  539. justify-content: center;
  540. border-radius: 8px;
  541. height: 50px;
  542. font-size: 14px;
  543. color: #2b303a;
  544. background-image: linear-gradient(to right, #8ff8fb, #47aeff);
  545. margin: 0 10px;
  546. }
  547. .operation-symbol {
  548. font-size: 24rpx;
  549. }
  550. .price-wrap {
  551. display: flex;
  552. align-items: center;
  553. }
  554. .price-wrap .price {
  555. display: flex;
  556. align-items: flex-end;
  557. font-size: 24px;
  558. font-weight: bold;
  559. color: #f5531a;
  560. margin-left: 10px;
  561. }
  562. .price-wrap .price .symbol {
  563. display: inline-block;
  564. font-size: 12px;
  565. color: #f5531a;
  566. transform: translateY(-4px);
  567. }
  568. .price-wrap .unit {
  569. font-size: 12px;
  570. color: #aaa;
  571. margin-left: 15px;
  572. }
  573. .bg5 {
  574. display: inline-flex;
  575. align-items: center;
  576. justify-content: center;
  577. position: relative;
  578. color: #fff;
  579. height: inherit;
  580. }
  581. .bg5 > .text {
  582. display: inline-block;
  583. position: absolute;
  584. font-family: "ysbth";
  585. white-space: nowrap;
  586. top: 50%;
  587. left: 50%;
  588. transform: translate(-65%, -50%);
  589. font-size: 16px;
  590. }
  591. .bg5 > .bg {
  592. height: 100%;
  593. }