index.wxss 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. background-color: #F2F3F5;
  7. }
  8. /* 背景图 */
  9. .index_bg {
  10. width: 750rpx;
  11. height: 320rpx;
  12. margin: 0 auto;
  13. background-image: url(/static/index/index_bg.jpg);
  14. background-size: 100% 100%;
  15. background-attachment: inherit;
  16. background-repeat: no-repeat;
  17. margin-top: 0px;
  18. }
  19. /* 欢迎光临 */
  20. .welcome{
  21. width: 163px;
  22. height: 60px;
  23. background: rgba(255, 255, 255, 0.4);
  24. -webkit-backdrop-filter: blur(5px);
  25. backdrop-filter: blur(5px);
  26. }
  27. .welcome_img{
  28. position: absolute;
  29. margin-left: 20px;
  30. margin-top: 8px;
  31. width: 125px;
  32. height: 44px;
  33. }
  34. /* <!-- 第一层公寓名称卡片 --> */
  35. .uni-ka{
  36. width: 710rpx;
  37. height: 254rpx;
  38. background: rgba(255, 255, 255, 1);
  39. border-radius: 10px;
  40. }
  41. .uni-title{
  42. position: absolute;
  43. margin-left: 29rpx;
  44. margin-top: 21rpx;
  45. color: rgba(0, 0, 0, 1);
  46. font-size: 34rpx;
  47. font-weight: 500;
  48. }
  49. .uni-sub-title{
  50. position: absolute;
  51. margin-left: 31rpx;
  52. margin-top: 77rpx;
  53. color: rgba(153, 153, 153, 1);
  54. font-size: 20rpx;
  55. font-weight: 400;
  56. }
  57. .uni-extra{
  58. position: absolute;
  59. margin-left: 560rpx;
  60. margin-top: 71rpx;
  61. color: rgba(102, 102, 102, 1);
  62. font-size: 24rpx;
  63. font-weight: 400;
  64. }
  65. .uni-body{
  66. position: absolute;
  67. margin-left: 31rpx;
  68. margin-top: 144rpx;
  69. color: rgba(0, 0, 0, 1);
  70. font-size: 14px;
  71. font-weight: 500;
  72. }
  73. .uni-body2{
  74. position: absolute;
  75. margin-left: 31rpx;
  76. margin-top: 147rpx;
  77. color: rgba(153, 153, 153, 1);
  78. font-size: 24rpx;
  79. font-weight: 400;
  80. }
  81. .uni-map{
  82. position: absolute;
  83. float: right;
  84. width: 50rpx;
  85. height: 79rpx;
  86. margin: 0 auto;
  87. margin-left: 552rpx;
  88. margin-top: 137rpx;
  89. }
  90. .uni-phone{
  91. position: absolute;
  92. float: right;
  93. width: 50rpx;
  94. height: 79rpx;
  95. margin-left: 630rpx;
  96. margin-top: 137rpx;
  97. }
  98. /* 第二层工具 */
  99. .item-list{
  100. display: flex;
  101. flex-direction: row;
  102. justify-content: flex-start;
  103. width: 710rpx;
  104. height: 181rpx;
  105. margin-top: 20rpx;
  106. margin-left: 10rpx;
  107. background: rgba(255, 255, 255, 1);
  108. border-radius: 10px;
  109. }
  110. .item-list-one{
  111. display: flex;
  112. flex-direction: column;
  113. align-items: center;
  114. width: 306rpx;
  115. /* margin-right: 60rpx; */
  116. margin-top: 20px;
  117. }
  118. .img-btn{
  119. width: 59rpx;
  120. height: 54rpx;
  121. }
  122. .list-txt{
  123. width: 150rpx;
  124. text-align: center;
  125. font-size: 28rpx;
  126. margin-top: 10rpx;
  127. color: rgba(0, 0, 0, 1);
  128. font-weight: 400;
  129. }
  130. /* 第三层订房 */
  131. .room-list{
  132. display: flex;
  133. flex-direction: row;
  134. justify-content: flex-start;
  135. width: 710rpx;
  136. /* height: 981rpx; */
  137. margin-top: 20rpx;
  138. margin-left: 10rpx;
  139. background: rgba(255, 255, 255, 1);
  140. border-radius: 10px, 10px, 0px, 0px;
  141. }
  142. /* 选择住房日期 */
  143. .select-time{
  144. display: flex;
  145. flex-direction: row;
  146. justify-content: flex-start;
  147. position: absolute;
  148. width: 710rpx;
  149. height: 120rpx;
  150. margin: 0;
  151. }
  152. .select-time-one{
  153. margin-top: 32rpx;
  154. margin-left: 77rpx;
  155. display: flex;
  156. flex-direction: column;
  157. align-items: center;
  158. }
  159. .select-list{
  160. color: rgba(153, 153, 153, 1);
  161. font-size: 24rpx;
  162. font-weight: 400;
  163. }
  164. .select-list-time{
  165. color: rgba(0, 0, 0, 1);
  166. font-size: 34rpx;
  167. font-weight: 400;
  168. }
  169. .select-center{
  170. width: 190rpx;
  171. height: 120rpx;
  172. }
  173. .select-line1{
  174. position: absolute;
  175. margin-left: 40px;
  176. margin-top: 36px;
  177. width: 17rpx;
  178. height: 1px;
  179. background: rgba(41, 109, 227, 1);
  180. }
  181. .select-circle{
  182. position: absolute;
  183. width: 81rpx;
  184. height: 46rpx;
  185. margin-left: 49px;
  186. margin-top: 24px;
  187. background: rgba(240, 242, 245, 1);
  188. border: 1px solid rgba(41, 109, 227, 1);
  189. border-radius: 33rpx;
  190. text-align: center;
  191. color: rgba(0, 0, 0, 1);
  192. font-size: 24rpx;
  193. font-weight: 400;
  194. }
  195. .select-line2{
  196. position: absolute;
  197. margin-left: 94px;
  198. margin-top: 36px;
  199. width: 17rpx;
  200. height: 1px;
  201. background: rgba(41, 109, 227, 1);
  202. }
  203. /* 房型列表 */
  204. .room-kuang{
  205. display: block;
  206. margin-top: 150rpx;
  207. }
  208. .room-xinxi{
  209. display: -webkit-box;
  210. flex-direction: column;
  211. align-items: center;
  212. width: 710rpx;
  213. height: 213rpx;
  214. margin-top: 20rpx;
  215. }
  216. .room-image{
  217. position: absolute;
  218. margin-left: 31rpx;
  219. width: 213rpx;
  220. height: 161rpx;
  221. border-radius: 5px;
  222. }
  223. .room-name{
  224. position: absolute;
  225. margin-left: 260rpx;
  226. color: rgba(0, 0, 0, 1);
  227. font-size: 34rpx;
  228. font-weight: 400;
  229. }
  230. .room-mark{
  231. position: absolute;
  232. margin-left: 260rpx;
  233. margin-top: 46rpx;
  234. color: rgba(153, 153, 153, 1);
  235. font-size: 24rpx;
  236. font-weight: 400;
  237. }
  238. .room-icon{
  239. position: absolute;
  240. margin-left: 261rpx;
  241. margin-top: 116rpx;
  242. }
  243. .before-price{
  244. position: absolute;
  245. margin-left: 606rpx;
  246. color: rgba(153, 153, 153, 1);
  247. font-size: 24rpx;
  248. font-weight: 400;
  249. }
  250. .room-price{
  251. position: absolute;
  252. /* margin-left: 605rpx; */
  253. margin-top: 46rpx;
  254. margin-left: 285px;
  255. width: 84px;
  256. text-align: center;
  257. color: rgba(255, 87, 51, 1);
  258. font-size: 42rpx;
  259. font-weight: 500;
  260. }
  261. .room-button{
  262. position: absolute;
  263. margin-left: 579rpx;
  264. margin-top: 96rpx;
  265. width: 100rpx;
  266. height: 66rpx;
  267. background: rgba(41, 109, 227, 1);
  268. border-radius: 11px;
  269. color: rgba(255, 255, 255, 1);
  270. font-size: 36rpx;
  271. font-weight: 500;
  272. text-align: center;
  273. line-height: 66rpx;
  274. }
  275. .room-button2{
  276. position: absolute;
  277. margin-left: 569rpx;
  278. margin-top: 96rpx;
  279. width: 120rpx;
  280. height: 66rpx;
  281. background: rgba(128, 127, 131, 0.5);
  282. border-radius: 11px;
  283. color: rgba(255, 255, 255, 1);
  284. font-size: 36rpx;
  285. font-weight: 500;
  286. text-align: center;
  287. line-height: 66rpx;
  288. }
  289. .room-line{
  290. position: absolute;
  291. margin-left: 0rpx;
  292. margin-top: 194rpx;
  293. width: 710rpx;
  294. height: 1px;
  295. background: rgba(220, 225, 230, 1);
  296. }
  297. /* 房间样式弹窗页面 */
  298. .popup_bg_picker{
  299. width: 700rpx;
  300. height: 800rpx;
  301. background: rgba(255, 255, 255, 1);
  302. border-radius: 6rpx;
  303. }
  304. .popup_bg{
  305. width: 650rpx;
  306. height: 738rpx;
  307. background: rgba(255, 255, 255, 1);
  308. border-radius: 6rpx;
  309. }
  310. .popup_title{
  311. position: absolute;
  312. margin-left: 40rpx;
  313. margin-top: 20rpx;
  314. color: rgba(0, 0, 0, 1);
  315. font-size: 32rpx;
  316. font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  317. font-weight: 400;
  318. }
  319. .popup_error{
  320. position: absolute;
  321. margin-left: 577rpx;
  322. margin-top: 15rpx;
  323. width: 32px;
  324. height: 32px;
  325. background-image: url(../../static/img/swiper_x.c2eeeede.svg);
  326. }
  327. /* 轮播图 */
  328. .swiper{
  329. position: absolute;
  330. margin-left: 0rpx;
  331. margin-top: 87rpx;
  332. width: 650rpx;
  333. height: 340rpx;
  334. }
  335. .swiper-item{
  336. width: 650rpx;
  337. height: 340rpx;
  338. }
  339. .swiper-img{
  340. position: absolute;
  341. width: 650rpx;
  342. height: 340rpx;
  343. margin: 0;
  344. }
  345. .popup_title2{
  346. position: absolute;
  347. margin-left: 38rpx;
  348. margin-top: 444rpx;
  349. color: rgba(56, 56, 56, 1);
  350. font-size: 28rpx;
  351. font-weight: 500;
  352. font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  353. }
  354. .popup_txt{
  355. position: absolute;
  356. margin-left: 46rpx;
  357. margin-right: 43rpx;
  358. margin-top: 496rpx;
  359. color: rgba(128, 128, 128, 1);
  360. font-size: 28rpx;
  361. font-weight: 400;
  362. width: 561rpx;
  363. height: 217rpx;
  364. overflow-y: auto;
  365. }
  366. .popup_txt_in{
  367. width: 551rpx;
  368. height: 217rpx;
  369. }
  370. .popup_txt::-webkit-scrollbar {/*滚动条整体样式*/
  371. width: 9rpx;
  372. height: 240rpx;
  373. background-color: #707371;
  374. }
  375. .popup_txt::-webkit-scrollbar-thumb {/*滚动条整体样式*/
  376. background-color: #707371;
  377. border-radius: 5px;
  378. }
  379. .popup_txt::-webkit-scrollbar-track {/*滚动条里面轨道*/
  380. background: #cac9d3;
  381. }
  382. /* 办理续住弹窗 */
  383. .popup_bg_xu{
  384. width: 650rpx;
  385. height: 575rpx;
  386. background: rgba(255, 255, 255, 1);
  387. border-radius: 6rpx;
  388. }
  389. .select-time-xu{
  390. display: flex;
  391. flex-direction: row;
  392. justify-content: flex-start;
  393. position: absolute;
  394. width: 630rpx;
  395. height: 120rpx;
  396. margin-top: 128rpx;
  397. margin-left: 0rpx;
  398. }
  399. .select-time-one-xu{
  400. margin-top: 32rpx;
  401. margin-left: 55rpx;
  402. display: flex;
  403. flex-direction: column;
  404. align-items: center;
  405. }
  406. .popup_xu_line{
  407. position: absolute;
  408. margin-left: 0rpx;
  409. margin-top: 86rpx;
  410. width: 646rpx;
  411. height: 0px;
  412. background: rgba(204, 204, 204, 1);
  413. border: 1rpx solid rgba(229, 229, 229, 1);
  414. }
  415. .popup_xu_txt{
  416. position: absolute;
  417. margin-left: 52rpx;
  418. margin-top: 282rpx;
  419. color: rgba(166, 166, 166, 1);
  420. font-size: 24rpx;
  421. font-weight: 400;
  422. }
  423. /* 支付框 */
  424. .fukuan{
  425. display: flex;
  426. padding-top: 475rpx;
  427. width: 650rpx;
  428. height: 100rpx;
  429. background: rgba(255, 255, 255, 1);
  430. box-shadow: inset 0rpx -4rpx 10rpx rgba(0, 0, 0, 0.15);
  431. box-sizing: border-box;
  432. }
  433. .fu-price{
  434. width: 363rpx;
  435. color: rgba(255, 87, 51, 1);
  436. font-size: 44rpx;
  437. font-weight: 500;
  438. text-align: center;
  439. line-height: 100rpx;
  440. }
  441. .fu-zhifu{
  442. float: right;
  443. width: 288rpx;
  444. height: 100rpx;
  445. background: rgba(41, 109, 227, 1);
  446. color: rgba(255, 255, 255, 1);
  447. font-size: 40rpx;
  448. font-weight: 400;
  449. text-align: center;
  450. line-height: 100rpx;
  451. }
  452. /* uni-calendar选中背景色 */
  453. .uni-calendar-item--isDay[data-v-6097fd5b] {
  454. background-color: #fff;
  455. opacity: 0.8;
  456. color: #2979ff;
  457. }
  458. .uni-calendar-item--before-checked[data-v-6097fd5b] {
  459. background-color: #0055ff;
  460. color: #fff;
  461. opacity: 1;
  462. }
  463. .uni-calendar-item--after-checked[data-v-6097fd5b] {
  464. background-color: #0055ff;
  465. color: #fff;
  466. opacity: 1;
  467. }
  468. /* >>>.uni-calendar-item--multiple[data-v-6097fd5b] {
  469. opacity: 0.5;
  470. } */
  471. /* 弹出框 */
  472. .kuang_txt{
  473. align-items: center;
  474. justify-content: center;
  475. padding: 15rpx;
  476. height: 150rpx;
  477. /* width: 180rpx; */
  478. line-height: 150rpx;
  479. text-align: center;
  480. background-color: #fff;
  481. }
  482. .kuang_txt_tui{
  483. align-items: center;
  484. justify-content: center;
  485. padding: 15rpx;
  486. height: 150rpx;
  487. width: 180rpx;
  488. line-height: 150rpx;
  489. text-align: center;
  490. background-color: #fff;
  491. }