cardFound.css 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. .top-con {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. z-index: 50;
  7. }
  8. .top-adv {
  9. margin: 30rpx 30rpx 0;
  10. position: relative;
  11. }
  12. .top-adv-img {
  13. width: 100%;
  14. height: 135rpx;
  15. }
  16. .top-adv-close {
  17. position: absolute;
  18. top: -10rpx;
  19. right: 10rpx;
  20. background-color: rgba(0, 0, 0, .5);
  21. border-radius: 50%;
  22. width: 40rpx;
  23. height: 40rpx;
  24. }
  25. .top-adv-close image {
  26. width: 40rpx;
  27. height: 40rpx;
  28. }
  29. .order-ing {
  30. background: #FFEDE5;
  31. padding: 22rpx 30rpx;
  32. font-size: 28rpx;
  33. color: #EB5C20;
  34. }
  35. .order-ing image {
  36. width: 50rpx;
  37. height: 50rpx;
  38. margin-right: 20rpx;
  39. }
  40. .gh-btn {
  41. width: 137rpx;
  42. height: 56rpx;
  43. background: #EB5C20;
  44. border-radius: 73rpx;
  45. font-size: 28rpx;
  46. color: #fff;
  47. font-weight: bold;
  48. text-align: center;
  49. line-height: 56rpx;
  50. }
  51. .map-box {
  52. width: 100%;
  53. height: 100%;
  54. position: absolute
  55. }
  56. .map {
  57. width: 100%;
  58. height: 100%;
  59. }
  60. .side {
  61. position: fixed;
  62. left: 30rpx;
  63. bottom: 30%;
  64. z-index: 91;
  65. }
  66. .side .li {
  67. width: 80rpx !important;
  68. height: 80rpx !important;
  69. background: #fff;
  70. border-radius: 50% !important;
  71. justify-content: center;
  72. margin-bottom: 40rpx !important;
  73. box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.1);
  74. }
  75. .side .li image {
  76. width: 48rpx;
  77. height: 48rpx;
  78. }
  79. .store {
  80. position: absolute;
  81. top: 30%;
  82. left: 20%;
  83. }
  84. .store image {
  85. width: 94rpx;
  86. height: 94rpx;
  87. }
  88. .ibn {
  89. position: absolute;
  90. top: 20%;
  91. left: 30%;
  92. }
  93. .ibn image {
  94. width: 80rpx;
  95. height: 80rpx;
  96. }
  97. .count {
  98. position: absolute;
  99. top: -5rpx;
  100. right: -5rpx;
  101. width: 34rpx;
  102. height: 34rpx;
  103. background-color: #f00;
  104. box-sizing: border-box;
  105. font-size: 24rpx;
  106. color: #fff;
  107. border-radius: 50%;
  108. justify-content: center;
  109. }
  110. .nearby-box {
  111. width: 150rpx;
  112. height: 150rpx;
  113. position: absolute;
  114. top: 50%;
  115. left: 50%;
  116. justify-content: center;
  117. transform: translate(-50%, -50%);
  118. }
  119. .loca {
  120. width: 70rpx;
  121. height: 70rpx;
  122. position: relative;
  123. z-index: 2;
  124. }
  125. .nearby-yuan {
  126. background: rgba(46, 171, 255, .2);
  127. position: absolute;
  128. top: 0;
  129. left: 0;
  130. width: 100%;
  131. height: 100%;
  132. border-radius: 50%;
  133. z-index: 1;
  134. -webkit-animation: scale 2s ease-in-out infinite;
  135. }
  136. .nearby {
  137. position: absolute;
  138. bottom: 90rpx;
  139. left: 50%;
  140. transform: translateX(-50%);
  141. z-index: 3;
  142. }
  143. @-webkit-keyframes scale {
  144. 0% {
  145. -webkit-transform: scale(1);
  146. }
  147. 50% {
  148. -webkit-transform: scale(.6);
  149. }
  150. 100% {
  151. -webkit-transform: scale(1);
  152. }
  153. }
  154. .gan {
  155. width: 6rpx;
  156. height: 69rpx;
  157. background: #242323;
  158. border-radius: 0 0 50rpx 50rpx;
  159. margin: 0 auto;
  160. }
  161. .nearby-text {
  162. width: 124rpx;
  163. height: 53rpx;
  164. background: #666464;
  165. border-radius: 27rpx;
  166. font-size: 24rpx;
  167. color: #fff;
  168. justify-content: center;
  169. }
  170. .nearby-text image {
  171. width: 10rpx;
  172. height: 19rpx;
  173. margin-left: 16rpx;
  174. }
  175. .bot {
  176. padding: 45rpx 74rpx 0;
  177. position: fixed;
  178. left: 0;
  179. right: 0;
  180. bottom: 0;
  181. background: #fff;
  182. border-radius: 40rpx 40rpx 0 0;
  183. z-index: 90;
  184. }
  185. .scan {
  186. height: 112rpx;
  187. background-color: var(--main);
  188. box-shadow: 0 10rpx 30rpx 1rpx rgba(235, 92, 32, 0.33);
  189. border-radius: 56rpx;
  190. border: 1px solid rgba(0, 0, 0, 0);
  191. font-size: 36rpx;
  192. color: #fff;
  193. font-weight: bold;
  194. justify-content: center;
  195. }
  196. .scan image {
  197. width: 50rpx;
  198. height: 50rpx;
  199. margin-right: 23rpx;
  200. }
  201. .hand {
  202. font-size: 24rpx;
  203. color: #666464;
  204. justify-content: center;
  205. margin: 25rpx 0 0;
  206. }
  207. .hand image {
  208. width: 32rpx;
  209. height: 32rpx;
  210. }
  211. .nav {
  212. justify-content: space-between;
  213. font-size: 24rpx;
  214. color: #666464;
  215. }
  216. .nav .li {
  217. padding: 35rpx 0;
  218. }
  219. .nav .li image {
  220. width: 54rpx;
  221. height: 54rpx;
  222. margin: 0 auto 9rpx;
  223. }
  224. .cabinet {
  225. position: fixed;
  226. left: 0;
  227. right: 0;
  228. bottom: 0;
  229. background: linear-gradient(360deg, #FFFFFF 0%, #C8FEEB 100%);
  230. box-shadow: 0rpx -5rpx 20rpx 1rpx rgba(32,32,32,0.1);
  231. border-radius: 40rpx 40rpx 0rpx 0rpx;
  232. z-index: 92;
  233. padding: 35rpx;
  234. transition: all .3s ease;
  235. }
  236. .close {
  237. width: 37rpx;
  238. height: 37rpx;
  239. position: absolute;
  240. top: 20rpx;
  241. right: 20rpx;
  242. }
  243. .jg-ico {
  244. width: 35rpx;
  245. height: 48rpx;
  246. margin-right: 15rpx;
  247. }
  248. .jg-tit {
  249. font-size: 36rpx;
  250. color: #242323;
  251. margin-right: 10rpx;
  252. font-weight: bold;
  253. }
  254. .juli {
  255. font-size: 24rpx;
  256. color: #A8A5A5;
  257. }
  258. .jg-num {
  259. font-size: 24rpx;
  260. color: #A8A5A5;
  261. }
  262. .cab-addr {
  263. font-size: 28rpx;
  264. color: #A8A5A5;
  265. margin-top: 15rpx;
  266. margin-bottom: 35rpx;
  267. }
  268. .addr-ico {
  269. width: 20rpx;
  270. height: 26rpx;
  271. margin-right: 15rpx;
  272. }
  273. .daoh {
  274. width: 50rpx;
  275. height: 50rpx;
  276. }
  277. .cab-tits {
  278. font-size: 32rpx;
  279. color: #242323;
  280. font-weight: bold;
  281. margin: 20rpx 0;
  282. }
  283. .datas {
  284. height: 124rpx;
  285. background-color: #F2F2F2;
  286. font-size: 28rpx;
  287. color: #A8A5A5;
  288. font-weight: bold;
  289. border-radius: 8rpx;
  290. }
  291. .datas .li {
  292. width: 50%;
  293. text-align: center;
  294. }
  295. .datas .li view {
  296. font-size: 36rpx;
  297. margin-bottom: 10rpx;
  298. color: var(--main);
  299. }
  300. .charge-datas {
  301. border: 1rpx solid rgba(165, 165, 165, .5);
  302. border-radius: 8rpx;
  303. display: table;
  304. width: 100%;
  305. box-sizing: border-box;
  306. text-align: center;
  307. font-size: 24rpx;
  308. color: #666464;
  309. }
  310. .charge-datas .hd,
  311. .charge-datas .bd {
  312. display: table-row;
  313. }
  314. .hd {
  315. height: 57rpx;
  316. background-color: #E6E6E6;
  317. line-height: 57rpx;
  318. }
  319. .charge-datas .li {
  320. display: table-cell;
  321. }
  322. .bd .li {
  323. padding: 16rpx 0;
  324. }
  325. .imgbox {
  326. margin: 20rpx 0 0;
  327. }
  328. .imgbox image {
  329. width: 220rpx;
  330. height: 220rpx;
  331. border-radius: 10rpx;
  332. margin: 0 15rpx 0 0;
  333. }
  334. .imgbox image:nth-child(3n) {
  335. margin-right: 0;
  336. }
  337. .cab-btn {
  338. padding: 50rpx 44rpx 0;
  339. }
  340. .sta {
  341. width: 97rpx;
  342. height: 36rpx;
  343. border-radius: 5rpx;
  344. font-size: 24rpx;
  345. color: #fff;
  346. background-color: #A8A5A5;
  347. margin-left: 5rpx;
  348. text-align: center;
  349. font-weight: normal;
  350. margin-right: 13rpx;
  351. }
  352. .ing {
  353. background-color: #EB5C20;
  354. }
  355. .sj-ico {
  356. width: 49rpx;
  357. height: 48rpx;
  358. margin-right: 14rpx;
  359. }
  360. .sj-info .li {
  361. background-color: #F2F2F2;
  362. border-radius: 8rpx;
  363. padding: 25rpx 35rpx;
  364. font-size: 28rpx;
  365. color: #666464;
  366. margin-top: 20rpx;
  367. font-weight: bold;
  368. align-items: flex-start;
  369. }
  370. .label {
  371. margin-right: 33rpx;
  372. }
  373. .phone {
  374. color: #2A82E4;
  375. }
  376. .ceng {
  377. position: fixed;
  378. top: 0;
  379. left: 0;
  380. right: 0;
  381. bottom: 0;
  382. background-color: rgba(0, 0, 0, .5);
  383. z-index: 99;
  384. }
  385. .pop-adv {
  386. position: fixed;
  387. left: 60rpx;
  388. right: 60rpx;
  389. top: 50%;
  390. transform: translateY(-50%);
  391. z-index: 100;
  392. }
  393. .pop-adv-img {
  394. width: 100%;
  395. height: 668rpx;
  396. border-radius: 15rpx;
  397. }
  398. .pop-adv-close {
  399. width: 84rpx;
  400. height: 84rpx;
  401. margin: 100rpx auto 0;
  402. }
  403. .register-box{
  404. background: #FFFFFF;
  405. box-shadow: 0rpx 5rpx 20rpx 1rpx rgba(0,155,98,0.2);
  406. border-radius: 16rpx 16rpx 16rpx 16rpx;
  407. position: relative;
  408. }
  409. .register-title{
  410. font-size: 28rpx;
  411. font-weight: bold;
  412. color: #999999;
  413. padding: 30rpx 30rpx;
  414. padding-bottom: 21rpx;
  415. flex-wrap: nowrap;
  416. }
  417. .card-name{
  418. line-height: 50rpx;
  419. font-size: 36rpx;
  420. font-weight: bold;
  421. color: #333333;
  422. }
  423. .card-tag{
  424. padding: 0 10rpx;
  425. line-height: 32rpx;
  426. border-radius: 5rpx 5rpx 5rpx 5rpx;
  427. opacity: 1;
  428. border: 2rpx solid #FF5700;
  429. font-size: 20rpx;
  430. color: #FF5700;
  431. text-align: center;
  432. margin-right: 10rpx;
  433. }
  434. .card-area{
  435. line-height: 46rpx;
  436. background: #F8F8F8;
  437. border-radius: 10rpx 10rpx 10rpx 10rpx;
  438. padding:0 16rpx ;
  439. font-size: 24rpx;
  440. font-weight: 400;
  441. color: #666666;
  442. margin-top: 35rpx;
  443. }
  444. .card-area image{
  445. width: 20rpx;
  446. height: 24rpx;
  447. margin-right: 10rpx;
  448. }
  449. .card-data{
  450. font-size: 39rpx;
  451. font-family: Arial-Regular, Arial;
  452. font-weight: 400;
  453. color: #333333;
  454. line-height: 47rpx;
  455. text-align: center;
  456. }
  457. .card-label{
  458. line-height: 33rpx;
  459. font-size: 24rpx;
  460. font-family: PingFang SC-Medium, PingFang SC;
  461. font-weight: 500;
  462. color: #A1A1A1;
  463. text-align: center;
  464. }
  465. .card-line{
  466. width: 1rpx;
  467. height: 66rpx;
  468. background: #DEDEDE;
  469. }
  470. .register-state{
  471. font-size: 24rpx;
  472. font-weight: 500;
  473. line-height: 36rpx;
  474. color: #999999;
  475. }
  476. .register-title-icon{
  477. width: 160rpx;
  478. height: 160rpx;
  479. opacity: 1;
  480. margin-right: 20rpx;
  481. border-radius: 10rpx;
  482. }
  483. .register-info-item{
  484. margin-top: 30rpx;
  485. align-items: flex-start;
  486. }
  487. .register-info-label{
  488. line-height: 41rpx;
  489. color: #999999;
  490. font-size: 28rpx;
  491. margin-right: 60rpx;
  492. }
  493. .register-info-data{
  494. font-size: 28rpx;
  495. color: #333333;
  496. line-height: 41rpx;
  497. text-align: right;
  498. }
  499. .found-more{
  500. margin: 50rpx auto;
  501. line-height: 40rpx;
  502. font-size: 28rpx;
  503. font-family: PingFang SC-Heavy, PingFang SC;
  504. font-weight: 800;
  505. color: #27D699;
  506. justify-content: center;
  507. }
  508. .found-more image{
  509. width: 46rpx;
  510. height: 46rpx;
  511. margin-right: 14rpx;
  512. }
  513. canvas {
  514. position: fixed;
  515. left: 9000px;
  516. /* left:0px;
  517. top: 0;
  518. z-index: 9999; */
  519. }