map.scss 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524
  1. page {
  2. height: 100%;
  3. }
  4. .map {
  5. height: 100%;
  6. background-color: #f9f9f9;
  7. display: flex;
  8. flex-direction: column;
  9. }
  10. .return-btn {
  11. position: fixed;
  12. right: 0;
  13. top: 927rpx;
  14. z-index: 99;
  15. }
  16. .home-bottom {
  17. height: 60rpx;
  18. background-color: #f9f9f9;
  19. }
  20. .hotel-list {
  21. width: 100%;
  22. background-color: #f9f9f9;
  23. padding: 32rpx 30rpx;
  24. padding-bottom: 200rpx;
  25. margin-top: 150rpx;
  26. .hotel-list-item {
  27. width: 100%;
  28. margin-bottom: 20rpx;
  29. .wrap {
  30. width: 100%;
  31. height: 318rpx;
  32. position: relative;
  33. box-shadow: 0px 4rpx 8rpx 0px rgba(0, 0, 0, 0.08);
  34. border-radius: 10rpx;
  35. .inner {
  36. width: 100%;
  37. height: 318rpx;
  38. border-radius: 10rpx;
  39. position: absolute;
  40. z-index: 2;
  41. top: 0;
  42. left: 0;
  43. .address-detail-main {
  44. position: absolute;
  45. left: 0;
  46. bottom: 30rpx;
  47. width: 100%;
  48. display: flex;
  49. align-items: flex-end;
  50. justify-content: space-between;
  51. .address-detail-main-left {
  52. position: absolute;
  53. left: 20rpx;
  54. .title {
  55. font-size: 32rpx;
  56. font-weight: bold;
  57. color: #FFFFFF;
  58. }
  59. .content {
  60. margin: 12rpx 0 20rpx;
  61. width: 92rpx;
  62. height: 34rpx;
  63. background: rgba(142, 160, 166, .6);
  64. border-radius: 17rpx;
  65. color: #ffffff;
  66. font-size: 22rpx;
  67. display: flex;
  68. align-items: center;
  69. justify-content: center;
  70. }
  71. .bottom {
  72. display: flex;
  73. align-items: center;
  74. justify-content: flex-start;
  75. .bottom-left {
  76. font-size: 24rpx;
  77. font-weight: bold;
  78. color: #ffffff;
  79. margin-right: 6rpx;
  80. }
  81. .bottom-right {
  82. font-size: 32rpx;
  83. font-weight: bold;
  84. color: #ffffff;
  85. }
  86. }
  87. }
  88. .address-detail-main-right {
  89. position: absolute;
  90. right: 24rpx;
  91. width: 120rpx;
  92. height: 44rpx;
  93. background: #FF6300;
  94. box-shadow: 0px 4rpx 8rpx 0px rgba(0, 0, 0, 0.08);
  95. border-radius: 22rpx;
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. color: #ffffff;
  100. font-size: 28rpx;
  101. }
  102. }
  103. .address-detail-position {
  104. position: absolute;
  105. top: 22rpx;
  106. right: 24rpx;
  107. display: flex;
  108. align-items: center;
  109. justify-content: center;
  110. font-weight: 500;
  111. color: #FFFFFF;
  112. font-size: 20rpx;
  113. }
  114. }
  115. }
  116. }
  117. }
  118. .search-detail {
  119. width: 100%;
  120. position: absolute;
  121. top: 88rpx;
  122. z-index: 999 !important;
  123. background-color: #ffffff;
  124. box-shadow: 0px 12rpx 16rpx 0px rgba(220, 222, 229, 0.4);
  125. padding: 20rpx 30rpx 20rpx;
  126. .partner {
  127. .partner-top {
  128. height: 88rpx;
  129. border-top: 2rpx solid #F0F0F0;
  130. border-bottom: 2rpx solid #F0F0F0;
  131. display: flex;
  132. align-items: center;
  133. justify-content: space-between;
  134. color: #333;
  135. font-size: 28rpx;
  136. }
  137. .partner-main {
  138. margin-top: 32rpx;
  139. ::v-deep .uni-data-checklist .checklist-group .checklist-box {
  140. width: 26%;
  141. }
  142. ::v-deep .uni-data-checklist .checklist-group .checklist-box .checkbox__inner {
  143. width: 48rpx;
  144. height: 48rpx;
  145. }
  146. ::v-deep .uni-data-checklist .checklist-group .checklist-box .checkbox__inner .checkbox__inner-icon {
  147. top: 6rpx !important;
  148. left: 17rpx !important;
  149. height: 24rpx !important;
  150. width: 15rpx !important;
  151. border-right-color: #ff6200;
  152. border-bottom-color: #ff6200;
  153. }
  154. ::v-deep .uni-data-checklist .checklist-group .checklist-box.is--default.is-checked .checklist-text {
  155. color: #666 !important;
  156. font-size: 24rpx !important;
  157. }
  158. ::v-deep .checklist-text {
  159. font-size: 24rpx !important;
  160. }
  161. ::v-deep .uni-data-checklist .checklist-group .checklist-box.is--default.is-checked .checkbox__inner {
  162. border-color: #EDEDED !important;
  163. background-color: #ffffff;
  164. }
  165. }
  166. }
  167. .search-detail-area {
  168. width: 100%;
  169. display: flex;
  170. flex-wrap: wrap;
  171. justify-content: flex-start;
  172. align-items: center;
  173. .areaTitle {
  174. width: 156rpx;
  175. height: 56rpx;
  176. background: #FFFFFF;
  177. border: 2rpx solid #EDEDED;
  178. border-radius: 28rpx;
  179. font-size: 28rpx;
  180. color: #666;
  181. display: flex;
  182. justify-content: center;
  183. align-items: center;
  184. margin-right: 20rpx;
  185. margin-bottom: 18rpx;
  186. &:nth-child(4n) {
  187. margin-right: 0;
  188. }
  189. }
  190. // .areaTitle-item {
  191. // width: 156rpx;
  192. // height: 56rpx;
  193. // background-color: #F1F1F1;
  194. // border-radius: 26rpx;
  195. // font-size: 24rpx;
  196. // color: #999;
  197. // display: flex;
  198. // justify-content: center;
  199. // align-items: center;
  200. // }
  201. .active-area {
  202. width: 156rpx;
  203. height: 56rpx;
  204. border-radius: 28rpx;
  205. background-color: #FF6200;
  206. color: #fff;
  207. display: flex;
  208. justify-content: center;
  209. align-items: center;
  210. }
  211. }
  212. .search-detail-btn {
  213. display: flex;
  214. align-items: center;
  215. justify-content: space-between;
  216. margin: 38rpx 0 20rpx;
  217. .search-detail-btn-left {
  218. flex: 1;
  219. height: 76rpx;
  220. background: rgba(237, 237, 237, .55);
  221. border-radius: 8rpx;
  222. color: #999999;
  223. font-size: 30rpx;
  224. display: flex;
  225. align-items: center;
  226. justify-content: center;
  227. font-weight: bold;
  228. }
  229. .search-detail-btn-right {
  230. flex: 1;
  231. height: 76rpx;
  232. background: linear-gradient(270deg, #FF6200 0%, #FF9342 100%);
  233. border-radius: 8rpx;
  234. color: #FFFFFF;
  235. font-size: 30rpx;
  236. display: flex;
  237. align-items: center;
  238. justify-content: center;
  239. margin-left: 22rpx;
  240. font-weight: bold;
  241. }
  242. }
  243. ::v-deep .u-input {
  244. width: 690rpx !important;
  245. height: 68rpx !important;
  246. background: #F1F1F1;
  247. border-radius: 74rpx;
  248. }
  249. ::v-deep .u-input__content__field-wrapper {
  250. padding-left: 36rpx;
  251. }
  252. }
  253. .search-top {
  254. display: flex;
  255. align-items: center;
  256. justify-content: space-between;
  257. }
  258. .search {
  259. position: relative;
  260. flex: none;
  261. width: 100%;
  262. background: #FFFFFF;
  263. box-shadow: 0px 12rpx 16rpx 0px rgba(220, 222, 229, 0.4);
  264. display: flex;
  265. flex-direction: column;
  266. align-items: inherit;
  267. justify-content: space-between;
  268. .search-loupe {
  269. flex: none;
  270. width: 60rpx;
  271. height: 60rpx;
  272. background: #FFFFFF;
  273. border-radius: 50%;
  274. border: 2rpx solid #EDEDED;
  275. display: flex;
  276. align-items: center;
  277. justify-content: center;
  278. margin-right: 16rpx;
  279. }
  280. .search-area-all {
  281. flex: 1;
  282. display: flex;
  283. align-items: center;
  284. justify-content: flex-start;
  285. .search-areaClick {
  286. padding: 12rpx 22rpx;
  287. height: 52rpx;
  288. background: #FFFFFF;
  289. border-radius: 26rpx;
  290. border: 2rpx solid #FF6200;
  291. font-weight: 500;
  292. color: #FF6200;
  293. font-size: 28rpx;
  294. display: flex;
  295. align-items: center;
  296. justify-content: center;
  297. margin-right: 16rpx;
  298. text {
  299. margin-right: 8rpx;
  300. }
  301. }
  302. .search-area {
  303. padding: 12rpx 22rpx;
  304. height: 52rpx;
  305. background: #FFFFFF;
  306. border-radius: 26rpx;
  307. border: 2rpx solid #EDEDED;
  308. font-weight: 500;
  309. color: #666666;
  310. font-size: 28rpx;
  311. display: flex;
  312. align-items: center;
  313. justify-content: center;
  314. margin-right: 16rpx;
  315. text {
  316. margin-right: 8rpx;
  317. }
  318. }
  319. }
  320. }
  321. .address-nav {
  322. position: absolute;
  323. width: 100%;
  324. bottom: 34rpx;
  325. padding: 0 8px;
  326. // display: flex;
  327. // flex-direction: column;
  328. // align-items: center;
  329. // justify-content: space-between;
  330. overflow-x: scroll;
  331. .address-nav-btn {
  332. width: 100%;
  333. display: flex;
  334. align-items: center;
  335. justify-content: space-between;
  336. }
  337. .address-nav-button{
  338. position: fixed;
  339. bottom: 450rpx;
  340. &:first-child{
  341. left:16rpx;
  342. }
  343. &:last-child{
  344. right:16rpx;
  345. }
  346. }
  347. }
  348. .address {
  349. flex: 1;
  350. position: relative;
  351. .address-detail {
  352. display: inline-block;
  353. position: relative;
  354. flex: none;
  355. width: 248px;
  356. height: 318rpx;
  357. border-radius: 10rpx;
  358. margin-right: 8px;
  359. &:last-child {
  360. margin-right: 0rpx;
  361. }
  362. .mark{
  363. height: inherit;
  364. width: inherit;
  365. image{
  366. width: 100%;
  367. height:100%;
  368. border-radius: 10rpx;
  369. }
  370. }
  371. .inner {
  372. width: 100%;
  373. height: inherit;
  374. border-radius: 10rpx;
  375. position: absolute;
  376. z-index: 2;
  377. top: 0;
  378. left: 0;
  379. .address-detail-main {
  380. position: absolute;
  381. left: 0;
  382. bottom: 30rpx;
  383. width: 100%;
  384. display: flex;
  385. align-items: flex-end;
  386. justify-content: space-between;
  387. .address-detail-main-left {
  388. position: absolute;
  389. left: 20rpx;
  390. .title {
  391. font-size: 32rpx;
  392. font-weight: bold;
  393. color: #FFFFFF;
  394. }
  395. .content {
  396. margin: 12rpx 0 20rpx;
  397. width: 92rpx;
  398. height: 34rpx;
  399. background: rgba(142, 160, 166, .6);
  400. border-radius: 17rpx;
  401. color: #ffffff;
  402. font-size: 22rpx;
  403. display: flex;
  404. align-items: center;
  405. justify-content: center;
  406. }
  407. .bottom {
  408. display: flex;
  409. align-items: center;
  410. justify-content: flex-start;
  411. .bottom-left {
  412. font-size: 24rpx;
  413. font-weight: bold;
  414. color: #ffffff;
  415. margin-right: 6rpx;
  416. }
  417. .bottom-right {
  418. font-size: 32rpx;
  419. font-weight: bold;
  420. color: #ffffff;
  421. }
  422. }
  423. }
  424. .address-detail-main-right {
  425. position: absolute;
  426. right: 24rpx;
  427. width: 120rpx;
  428. height: 44rpx;
  429. background: #FF6300;
  430. box-shadow: 0px 4rpx 8rpx 0px rgba(0, 0, 0, 0.08);
  431. border-radius: 22rpx;
  432. display: flex;
  433. align-items: center;
  434. justify-content: center;
  435. color: #ffffff;
  436. font-size: 28rpx;
  437. }
  438. }
  439. .address-detail-position {
  440. position: absolute;
  441. top: 22rpx;
  442. right: 24rpx;
  443. display: flex;
  444. align-items: center;
  445. justify-content: center;
  446. font-weight: 500;
  447. color: #FFFFFF;
  448. font-size: 20rpx;
  449. }
  450. }
  451. }
  452. }