cardFound.css 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  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: 23rpx;
  172. height: 32rpx;
  173. }
  174. .bot {
  175. padding: 45rpx 74rpx 0;
  176. position: fixed;
  177. left: 0;
  178. right: 0;
  179. bottom: 0;
  180. background: #fff;
  181. border-radius: 40rpx 40rpx 0 0;
  182. z-index: 90;
  183. }
  184. .scan {
  185. height: 112rpx;
  186. background-color: var(--main);
  187. box-shadow: 0 10rpx 30rpx 1rpx rgba(235, 92, 32, 0.33);
  188. border-radius: 56rpx;
  189. border: 1px solid rgba(0, 0, 0, 0);
  190. font-size: 36rpx;
  191. color: #fff;
  192. font-weight: bold;
  193. justify-content: center;
  194. }
  195. .scan image {
  196. width: 50rpx;
  197. height: 50rpx;
  198. margin-right: 23rpx;
  199. }
  200. .hand {
  201. font-size: 24rpx;
  202. color: #666464;
  203. justify-content: center;
  204. margin: 25rpx 0 0;
  205. }
  206. .hand image {
  207. width: 32rpx;
  208. height: 32rpx;
  209. }
  210. .nav {
  211. justify-content: space-between;
  212. font-size: 24rpx;
  213. color: #666464;
  214. }
  215. .nav .li {
  216. padding: 35rpx 0;
  217. }
  218. .nav .li image {
  219. width: 54rpx;
  220. height: 54rpx;
  221. margin: 0 auto 9rpx;
  222. }
  223. .cabinet {
  224. position: fixed;
  225. left: 0;
  226. right: 0;
  227. bottom: 0;
  228. background: linear-gradient(360deg, #FFFFFF 0%, #C8FEEB 100%);
  229. box-shadow: 0rpx -5rpx 20rpx 1rpx rgba(32,32,32,0.1);
  230. border-radius: 40rpx 40rpx 0rpx 0rpx;
  231. z-index: 92;
  232. padding: 35rpx;
  233. transition: all .3s ease;
  234. }
  235. .close {
  236. width: 37rpx;
  237. height: 37rpx;
  238. position: absolute;
  239. top: 20rpx;
  240. right: 20rpx;
  241. }
  242. .jg-ico {
  243. width: 35rpx;
  244. height: 48rpx;
  245. margin-right: 15rpx;
  246. }
  247. .jg-tit {
  248. font-size: 36rpx;
  249. color: #242323;
  250. margin-right: 10rpx;
  251. font-weight: bold;
  252. }
  253. .juli {
  254. font-size: 24rpx;
  255. color: #A8A5A5;
  256. }
  257. .jg-num {
  258. font-size: 24rpx;
  259. color: #A8A5A5;
  260. }
  261. .cab-addr {
  262. font-size: 28rpx;
  263. color: #A8A5A5;
  264. margin-top: 15rpx;
  265. margin-bottom: 35rpx;
  266. }
  267. .addr-ico {
  268. width: 20rpx;
  269. height: 26rpx;
  270. margin-right: 15rpx;
  271. }
  272. .daoh {
  273. width: 50rpx;
  274. height: 50rpx;
  275. }
  276. .cab-tits {
  277. font-size: 32rpx;
  278. color: #242323;
  279. font-weight: bold;
  280. margin: 20rpx 0;
  281. }
  282. .datas {
  283. height: 124rpx;
  284. background-color: #F2F2F2;
  285. font-size: 28rpx;
  286. color: #A8A5A5;
  287. font-weight: bold;
  288. border-radius: 8rpx;
  289. }
  290. .datas .li {
  291. width: 50%;
  292. text-align: center;
  293. }
  294. .datas .li view {
  295. font-size: 36rpx;
  296. margin-bottom: 10rpx;
  297. color: var(--main);
  298. }
  299. .charge-datas {
  300. border: 1rpx solid rgba(165, 165, 165, .5);
  301. border-radius: 8rpx;
  302. display: table;
  303. width: 100%;
  304. box-sizing: border-box;
  305. text-align: center;
  306. font-size: 24rpx;
  307. color: #666464;
  308. }
  309. .charge-datas .hd,
  310. .charge-datas .bd {
  311. display: table-row;
  312. }
  313. .hd {
  314. height: 57rpx;
  315. background-color: #E6E6E6;
  316. line-height: 57rpx;
  317. }
  318. .charge-datas .li {
  319. display: table-cell;
  320. }
  321. .bd .li {
  322. padding: 16rpx 0;
  323. }
  324. .imgbox {
  325. margin: 20rpx 0 0;
  326. }
  327. .imgbox image {
  328. width: 220rpx;
  329. height: 220rpx;
  330. border-radius: 10rpx;
  331. margin: 0 15rpx 0 0;
  332. }
  333. .imgbox image:nth-child(3n) {
  334. margin-right: 0;
  335. }
  336. .cab-btn {
  337. padding: 50rpx 44rpx 0;
  338. }
  339. .sta {
  340. width: 97rpx;
  341. height: 36rpx;
  342. border-radius: 5rpx;
  343. font-size: 24rpx;
  344. color: #fff;
  345. background-color: #A8A5A5;
  346. margin-left: 5rpx;
  347. text-align: center;
  348. font-weight: normal;
  349. margin-right: 13rpx;
  350. }
  351. .ing {
  352. background-color: #EB5C20;
  353. }
  354. .sj-ico {
  355. width: 49rpx;
  356. height: 48rpx;
  357. margin-right: 14rpx;
  358. }
  359. .sj-info .li {
  360. background-color: #F2F2F2;
  361. border-radius: 8rpx;
  362. padding: 25rpx 35rpx;
  363. font-size: 28rpx;
  364. color: #666464;
  365. margin-top: 20rpx;
  366. font-weight: bold;
  367. align-items: flex-start;
  368. }
  369. .label {
  370. margin-right: 33rpx;
  371. }
  372. .phone {
  373. color: #2A82E4;
  374. }
  375. .ceng {
  376. position: fixed;
  377. top: 0;
  378. left: 0;
  379. right: 0;
  380. bottom: 0;
  381. background-color: rgba(0, 0, 0, .5);
  382. z-index: 99;
  383. }
  384. .pop-adv {
  385. position: fixed;
  386. left: 60rpx;
  387. right: 60rpx;
  388. top: 50%;
  389. transform: translateY(-50%);
  390. z-index: 100;
  391. }
  392. .pop-adv-img {
  393. width: 100%;
  394. height: 668rpx;
  395. border-radius: 15rpx;
  396. }
  397. .pop-adv-close {
  398. width: 84rpx;
  399. height: 84rpx;
  400. margin: 100rpx auto 0;
  401. }
  402. .register-box{
  403. background: #FFFFFF;
  404. box-shadow: 0rpx 5rpx 20rpx 1rpx rgba(0,155,98,0.2);
  405. border-radius: 16rpx 16rpx 16rpx 16rpx;
  406. position: relative;
  407. }
  408. .register-title{
  409. font-size: 28rpx;
  410. font-weight: bold;
  411. color: #999999;
  412. padding: 30rpx 30rpx;
  413. padding-bottom: 21rpx;
  414. flex-wrap: nowrap;
  415. }
  416. .card-name{
  417. line-height: 50rpx;
  418. font-size: 36rpx;
  419. font-weight: bold;
  420. color: #333333;
  421. }
  422. .card-tag{
  423. padding: 0 10rpx;
  424. line-height: 32rpx;
  425. border-radius: 5rpx 5rpx 5rpx 5rpx;
  426. opacity: 1;
  427. border: 2rpx solid #FF5700;
  428. font-size: 20rpx;
  429. color: #FF5700;
  430. text-align: center;
  431. margin-right: 10rpx;
  432. }
  433. .card-area{
  434. line-height: 46rpx;
  435. background: #F8F8F8;
  436. border-radius: 10rpx 10rpx 10rpx 10rpx;
  437. padding:0 16rpx ;
  438. font-size: 24rpx;
  439. font-weight: 400;
  440. color: #666666;
  441. margin-top: 35rpx;
  442. }
  443. .card-area image{
  444. width: 20rpx;
  445. height: 24rpx;
  446. margin-right: 10rpx;
  447. }
  448. .card-data{
  449. font-size: 39rpx;
  450. font-family: Arial-Regular, Arial;
  451. font-weight: 400;
  452. color: #333333;
  453. line-height: 47rpx;
  454. text-align: center;
  455. }
  456. .card-label{
  457. line-height: 33rpx;
  458. font-size: 24rpx;
  459. font-family: PingFang SC-Medium, PingFang SC;
  460. font-weight: 500;
  461. color: #A1A1A1;
  462. text-align: center;
  463. }
  464. .card-line{
  465. width: 1rpx;
  466. height: 66rpx;
  467. background: #DEDEDE;
  468. }
  469. .register-state{
  470. font-size: 24rpx;
  471. font-weight: 500;
  472. line-height: 36rpx;
  473. color: #999999;
  474. }
  475. .register-title-icon{
  476. width: 160rpx;
  477. height: 160rpx;
  478. opacity: 1;
  479. margin-right: 20rpx;
  480. border-radius: 10rpx;
  481. }
  482. .register-info-item{
  483. margin-top: 30rpx;
  484. align-items: flex-start;
  485. }
  486. .register-info-label{
  487. line-height: 41rpx;
  488. color: #999999;
  489. font-size: 28rpx;
  490. margin-right: 60rpx;
  491. }
  492. .register-info-data{
  493. font-size: 28rpx;
  494. color: #333333;
  495. line-height: 41rpx;
  496. text-align: right;
  497. }
  498. .found-more{
  499. margin: 50rpx auto;
  500. line-height: 40rpx;
  501. font-size: 28rpx;
  502. font-family: PingFang SC-Heavy, PingFang SC;
  503. font-weight: 800;
  504. color: #27D699;
  505. justify-content: center;
  506. }
  507. .found-more image{
  508. width: 46rpx;
  509. height: 46rpx;
  510. margin-right: 14rpx;
  511. }
  512. canvas {
  513. position: fixed;
  514. left: 9000px;
  515. /* left:0px;
  516. top: 0;
  517. z-index: 9999; */
  518. }