index.css 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050
  1. body{background:#f4f6f9;}
  2. /* v2 改版 A */
  3. .yv2_indexHead{
  4. width: 100%;
  5. height: 50px;
  6. background: #fff;
  7. }
  8. .yv2_indexHead_box{
  9. width: 95%;
  10. margin: 0 auto;
  11. height: 100%;
  12. display: -webkit-flex; /* Safari */
  13. display: flex;
  14. justify-content:space-between;
  15. align-items: center;
  16. }
  17. .yv2_indexHead_box .yv2_indexHead_left{
  18. width:22%;
  19. height: auto;
  20. }
  21. .yv2_indexHead_box .yv2_indexHead_left img{
  22. width: 100%;
  23. height: auto;
  24. }
  25. .yv2_indexHead_box .yv2_indexHead_center{
  26. width: 55%;
  27. margin-left: 2.5%;
  28. margin-right: 2.5%;
  29. }
  30. .yv2_indexHead_box .yv2_indexHead_center a{
  31. display: -webkit-flex; /* Safari */
  32. display: flex;
  33. align-items: center;
  34. height: 35px;
  35. font-size: 0.875rem;
  36. color: #9A9A9A;
  37. background: #fff;
  38. width: 100%;
  39. box-shadow: 0px 0px 8px 1px rgba(188, 186, 186, 0.23);
  40. border-radius: 5px;
  41. }
  42. .yv2_indexHead_box .yv2_indexHead_center a img{
  43. display: inline-block;
  44. width: 15px;
  45. height: 15px;
  46. margin-left:10px;
  47. margin-right: 10px;
  48. }
  49. .yv2_indexHead_box .yv2_indexHead_right{
  50. width: 18%;
  51. text-align: center;
  52. }
  53. .yv2_indexHead_box .yv2_indexHead_right a{
  54. font-size:0.875rem;
  55. color:#343434;
  56. display: -webkit-flex; /* Safari */
  57. display: flex;
  58. align-items: center;
  59. justify-content:center;
  60. }
  61. .yv2_indexHead_box .yv2_indexHead_right a i{
  62. width: 0;
  63. height: 0;
  64. border-left: 4px solid transparent;
  65. border-right: 4px solid transparent;
  66. border-top: 4px solid#565656;
  67. display:inline-block;
  68. margin-left: 3px;
  69. position: relative;
  70. top: 2px;
  71. }
  72. /* v2 幻灯 */
  73. .yv2_slide{
  74. background: #fff;
  75. padding-top: 10px;
  76. padding-bottom: 10px;
  77. }
  78. .yv2_slide_main{
  79. width: 95%;
  80. margin: 0 auto;
  81. }
  82. .yv2_slideBox{
  83. width: 100%;
  84. height: 170px;
  85. border-radius: 5px;
  86. overflow: hidden;
  87. }
  88. .yv2_slideBox ul li,.yv2_slideBox ul li img{
  89. width: 100%;
  90. height: 100%;
  91. }
  92. .yv2_slide .swiper-pagination{
  93. position: inherit;
  94. }
  95. .yv2_slide .swiper-pagination .swiper-pagination-bullet{
  96. width: 3px;
  97. height: 3px;
  98. background: #E0E0E0;
  99. opacity: 1;
  100. margin: 0 3px;
  101. }
  102. .yv2_slide .swiper-pagination .swiper-pagination-bullet-active{
  103. width: 10px;
  104. border-radius: 5px;
  105. background: #2F2F2F;
  106. }
  107. /*品房头条*/
  108. .headle{
  109. border-top: 1px solid #eee;
  110. background: #fff;
  111. }
  112. .headle_main{
  113. width: 95%;
  114. margin: 0 auto;
  115. display: -webkit-flex; /* Safari */
  116. display: flex;
  117. justify-content:space-between;
  118. align-items: center;
  119. height: 45px;
  120. overflow: hidden;
  121. }
  122. .headle_main .headle_title{
  123. width: 25%;
  124. height: auto;
  125. }
  126. .headle_main .headle_title img{
  127. width: 100%;
  128. height: auto;
  129. }
  130. .headle_main .headle_right{
  131. width: 73%;
  132. height: 30px;
  133. overflow: hidden;
  134. }
  135. .headle_right .content{
  136. width: 100%;
  137. height: 100%;
  138. position: relative;
  139. }
  140. .headle_right .content ul li a{
  141. display: -webkit-flex; /* Safari */
  142. display: flex;
  143. justify-content:space-between;
  144. align-items: center;
  145. height: 30px;
  146. line-height: 30px;
  147. font-size: 0.75rem;
  148. color: #666;
  149. }
  150. .headle_right .content ul li a span{
  151. text-overflow:ellipsis;
  152. white-space: nowrap;
  153. display: inline-block;
  154. max-width: 90%;
  155. overflow: hidden;
  156. }
  157. .headle_right .content ul li a img{
  158. width: 5px;
  159. height: 9px;
  160. display:inline-block;
  161. }
  162. .yv2_puicTitle h2{
  163. font-size: 1.25rem;
  164. color: #343434;
  165. font-weight: bold;
  166. }
  167. /* v2 热门榜单 */
  168. .yv2_hotRanking{
  169. background: #fff;
  170. margin-top:10px;
  171. padding: 20px 0;
  172. }
  173. .yv2_hotRankingBox{
  174. width: 95%;
  175. margin: 0 auto;
  176. }
  177. .yv2_hotRanking_list ul li{
  178. margin-top: 15px;
  179. }
  180. .yv2_hotRanking_list ul li .lp_top{
  181. width: 100%;
  182. height: 215px;
  183. position: relative;
  184. border-radius: 5px;
  185. overflow: hidden;
  186. background: #f9f9f9;
  187. }
  188. .yv2_hotRanking_list ul li .lp_top p.lp_img,.yv2_hotRanking_list ul li .lp_top p.lp_img img{
  189. width: 100%;
  190. height: 100%;
  191. }
  192. .yv2_hotRanking_list ul li .lp_top p.top_hot{
  193. position: absolute;
  194. left: 7px;
  195. top: 6px;
  196. z-index: 2;
  197. display: -webkit-flex; /* Safari */
  198. display: flex;
  199. justify-content:flex-start;
  200. align-items: center;
  201. }
  202. .yv2_hotRanking_list ul li .lp_top p.top_hot i{
  203. display: inline-block;
  204. width: 62px;
  205. height: 18px;
  206. margin-right: 5px;
  207. background: url('/overseas/img/v2image/v2_ico3_1.png') no-repeat center;
  208. background-size: 100% 100%;
  209. }
  210. .yv2_hotRanking_list ul li:nth-child(2) .lp_top p.top_hot i{
  211. background: url('/overseas/img/v2image/v2_ico3_2.png') no-repeat center;
  212. background-size: 100% 100%;
  213. }
  214. .yv2_hotRanking_list ul li:nth-child(3) .lp_top p.top_hot i{
  215. background: url('/overseas/img/v2image/v2_ico3_3.png') no-repeat center;
  216. background-size: 100% 100%;
  217. }
  218. .yv2_hotRanking_list ul li .lp_top p.top_hot em{
  219. height: 18px;
  220. display: inline-block;
  221. font-size: 0.625rem;
  222. color: #fff;
  223. background: #FF8D39;
  224. border-radius: 3px;
  225. line-height: 18px;
  226. padding: 0 5px;
  227. }
  228. .yv2_hotRanking_list ul li .lp_top .lp_text{
  229. position: absolute;
  230. width: 100%;
  231. height: 30px;
  232. left: 0px;
  233. bottom: 0px;
  234. background: rgba(0,0,0,0.4);
  235. display: -webkit-flex; /* Safari */
  236. display: flex;
  237. justify-content:space-between;
  238. align-items: center;
  239. }
  240. .yv2_hotRanking_list ul li .lp_top .lp_text div.left{
  241. display: -webkit-flex; /* Safari */
  242. display: flex;
  243. align-items: center;
  244. padding-left: 10px;
  245. width: 70%;
  246. }
  247. .yv2_hotRanking_list ul li .lp_top .lp_text div.left h2{
  248. display: inline-block;
  249. font-size: 0.937rem;
  250. color:#fff;
  251. font-weight: bold;
  252. max-width: 70%;
  253. text-overflow: ellipsis;
  254. white-space: nowrap;
  255. overflow: hidden;
  256. }
  257. .yv2_hotRanking_list ul li .lp_top .lp_text div.left em{
  258. font-size: 0.75rem;
  259. color: #fff;
  260. display:inline-block;
  261. margin-left: 5px;
  262. }
  263. .yv2_hotRanking_list ul li .lp_top .lp_text p.right{
  264. display: -webkit-flex; /* Safari */
  265. display: flex;
  266. align-items: center;
  267. font-size: 0.625rem;
  268. color: #fff;
  269. padding-right: 10px;
  270. }
  271. .yv2_hotRanking_list ul li .lp_top .lp_text p.right span{
  272. font-size: 0.937rem;
  273. font-weight: bold;
  274. }
  275. .yv2_hotRanking_list ul li .lp_top p.video_ico{
  276. position: absolute;
  277. left: 50%;
  278. top: 50%;
  279. z-index: 2;
  280. width: 36px;
  281. height: 36px;
  282. margin-top: -18px;
  283. margin-left: -18px;
  284. }
  285. .yv2_hotRanking_list ul li .lp_top p.video_ico img{
  286. width: 100%;
  287. height: 100%;
  288. }
  289. .yv2_hotRanking_list ul li .lp_bottom .lp_zk{
  290. height: 44px;
  291. border-bottom: 1px solid #eee;
  292. display: -webkit-flex; /* Safari */
  293. display: flex;
  294. align-items: center;
  295. justify-content:space-between;
  296. }
  297. .yv2_hotRanking_list ul li .lp_bottom .lp_zk p.left{
  298. display: -webkit-flex; /* Safari */
  299. display: flex;
  300. align-items: center;
  301. width: 70%;
  302. }
  303. .yv2_hotRanking_list ul li .lp_bottom .lp_zk p.left img{
  304. display: inline-block;
  305. width: 13px;
  306. height: 13px;
  307. margin-right: 5px;
  308. }
  309. .yv2_hotRanking_list ul li .lp_bottom .lp_zk p.left span{
  310. display: inline-block;
  311. font-size: 0.75rem;
  312. color: #FF584A;
  313. max-width: 70%;
  314. text-overflow: ellipsis;
  315. white-space: nowrap;
  316. overflow: hidden;
  317. }
  318. .yv2_hotRanking_list ul li .lp_bottom .lp_zk a{
  319. height: 27px;
  320. line-height: 25px;
  321. font-size: 0.75rem;
  322. color: #4898F2;
  323. border: 1px solid #B5D4F6;
  324. background: #fff;
  325. border-radius: 15px;
  326. padding: 0 20px;
  327. }
  328. .yv2_hotRanking_list ul li .lp_bottom .lp_zk.lp_time p.left span{
  329. color: #888;
  330. }
  331. .yv2_hotRanking_list ul li .lp_bottom .lp_zk.lp_time a{
  332. color: #fff;
  333. background: #4898F2;
  334. border-color: #4898F2;
  335. }
  336. /*更多*/
  337. .m_lj_ckgd{
  338. display: block;
  339. text-align: center;
  340. background: #F2F6FB;
  341. height: 40px;
  342. line-height: 40px;
  343. font-size: 0.875rem;
  344. color: #888;
  345. margin-top:20px;
  346. border-radius:3px;
  347. }
  348. /* VR全景看房 */
  349. .yv2_panoramaVr{
  350. background: #fff;
  351. margin-top:10px;
  352. padding: 20px 0;
  353. }
  354. .yv2_panoramaVrBox .yv2_puicTitle{
  355. width: 95%;
  356. margin: 0 auto;
  357. }
  358. .yv2_panoramaVr_list{
  359. margin-top: 15px;
  360. width: 100%;
  361. overflow: hidden;
  362. padding:0 10px;
  363. }
  364. .yv2_panoramaVr_list ul li .top_ico{
  365. width: 100%;
  366. height: 150px;
  367. position: relative;
  368. border-radius: 10px;
  369. overflow: hidden;
  370. }
  371. .yv2_panoramaVr_list ul li .top_ico p,.yv2_panoramaVr_list ul li .top_ico p img{
  372. width:100%;
  373. height: 100%;
  374. }
  375. .yv2_panoramaVr_list ul li .top_ico .sdin {
  376. width:34px;
  377. height:34px;
  378. background:rgba(0,0,0,0.3);
  379. position: absolute;;
  380. border-radius:50%;
  381. margin-top:8px;
  382. left: 50%;
  383. top: 50%;
  384. margin-left: -17px;
  385. margin-top: -17px;
  386. border:1px solid #fff;
  387. z-index: 2;
  388. }
  389. .yv2_panoramaVr_list ul li .top_ico .vvid_pic_ico {
  390. border-radius: 100%;
  391. width:100%;
  392. height:100%;
  393. background: url(/overseas/img/vr_animation.png);
  394. background-position-y: 0;
  395. background-repeat: no-repeat;
  396. background-size: 100%;
  397. }
  398. .yv2_panoramaVr_list ul li .top_ico .vr-animation-forever {
  399. -webkit-animation:vr 5s steps(80) infinite;
  400. animation:vr 5s steps(80) infinite;
  401. }
  402. @-webkit-keyframes vr {to{background-position-y:100%}}
  403. @keyframes vr {to{background-position-y:100%}}
  404. .yv2_panoramaVr_list ul li .botton_text{
  405. margin-top: 10px;
  406. }
  407. .yv2_panoramaVr_list ul li .botton_text h2.title{
  408. font-size: 0.875rem;
  409. color: #343434;
  410. font-weight: bold;
  411. text-overflow: ellipsis;
  412. white-space: nowrap;
  413. overflow: hidden;
  414. }
  415. .yv2_panoramaVr_list ul li .botton_text p.city{
  416. font-size: 0.75rem;
  417. color: #9A9A9A;
  418. margin-top: 5px;
  419. }
  420. .yv2_panoramaVr_list ul li .top_ico .vid_ico{
  421. position: absolute;
  422. left: 50%;
  423. top: 50%;
  424. width: 34px;
  425. height: 34px;
  426. margin-top: -17px;
  427. margin-left: -17px;
  428. z-index: 2;
  429. }
  430. .yv2_panoramaVr_list ul li .top_ico .vid_ico img{
  431. width: 100%;
  432. height: 100%;
  433. }
  434. /* v2 热门楼盘 */
  435. .sell_box{
  436. background: #fff;
  437. margin-top: 10px;
  438. padding: 20px 0;
  439. }
  440. .yv2_sell_box{
  441. width: 95%;
  442. margin: 0 auto;
  443. }
  444. .sell_conter ul li{
  445. border-bottom: 1px solid #eee;
  446. padding-bottom: 15px;
  447. margin-top: 15px;
  448. position: relative;
  449. }
  450. .sell_conter ul li .sell_conterBox a{
  451. display: -webkit-flex; /* Safari */
  452. display: flex;
  453. align-items: flex-start;
  454. justify-content:space-between;
  455. }
  456. .sell_conter ul li .sell_conterBox .sell_conterBox_l{
  457. width: 35%;
  458. height: 92px;
  459. position: relative;
  460. }
  461. .sell_conter ul li .sell_conterBox .sell_conterBox_l p.img{
  462. width: 100%;
  463. height: 100%;
  464. border-radius: 5px;
  465. overflow: hidden;
  466. }
  467. .sell_conter ul li .sell_conterBox .sell_conterBox_l p.img img{
  468. width: 100%;
  469. height: 100%;
  470. }
  471. .sell_conter ul li .sell_conterBox .sell_conterBox_l p.city{
  472. position: absolute;
  473. top:0;
  474. left: 0;
  475. font-size: 0.625rem;
  476. color: #fff;
  477. height: 18px;
  478. line-height: 18px;
  479. padding: 0 10px;
  480. border-radius: 5px 0 5px 0;
  481. background: rgba(0,0,0,0.4);
  482. z-index: 2;
  483. }
  484. .sell_conter ul li .sell_conterBox .sell_conterBox_l p.hangpai{
  485. position: absolute;
  486. right: -5px;
  487. top: -3px;
  488. font-size:0.625rem;
  489. color: #fff;
  490. padding: 0 10px;
  491. height: 20px;
  492. line-height: 18px;
  493. background: linear-gradient(-90deg, #4A4EA5 0%, #686DD2 98%);
  494. border-radius: 15px 10px 0px 15px;
  495. z-index: 2;
  496. }
  497. .sell_conter ul li .sell_conterBox .sell_conterBox_l p.hangpai:after{
  498. content:'';
  499. position: absolute;
  500. right: 0px;
  501. top:20px;
  502. right: 0px;
  503. width: 0;
  504. height: 0;
  505. border-top: 5px solid #2C3078ed;
  506. border-right: 5px solid transparent;
  507. }
  508. .sell_conter ul li .sell_conterBox .sell_conterBox_l .sdin{
  509. position: absolute;
  510. left: 5px;
  511. bottom: 4px;
  512. z-index: 2;
  513. display: -webkit-flex; /* Safari */
  514. display: flex;
  515. align-items: center;
  516. justify-content:flex-start;
  517. }
  518. .sell_conter ul li .sell_conterBox .sell_conterBox_l .vvid_pic_ico {
  519. border-radius: 100%;
  520. width:16px;
  521. height:16px;
  522. border:1px solid #fff;
  523. background: url(/overseas/img/vr_animation.png) rgba(0,0,0,0.5);
  524. background-position-y: 0;
  525. background-repeat: no-repeat;
  526. background-size: 100%;
  527. }
  528. .sell_conter ul li .sell_conterBox .sell_conterBox_l .vr-animation-forever {
  529. -webkit-animation:vr 5s steps(80) infinite;
  530. animation:vr 5s steps(80) infinite;
  531. }
  532. @-webkit-keyframes vr {to{background-position-y:100%}}
  533. @keyframes vr {to{background-position-y:100%}}
  534. .sell_conter ul li .sell_conterBox .sell_conterBox_l .vid_ico{
  535. width: 16px;
  536. height: 16px;
  537. display: -webkit-flex; /* Safari */
  538. display: flex;
  539. align-items: center;
  540. margin-left: 4px;
  541. }
  542. .sell_conter ul li .sell_conterBox .sell_conterBox_l .vid_ico img{
  543. width: 100%;
  544. height: 100%;
  545. }
  546. .sell_conter ul li .sell_conterBox .sell_conterBox_r{
  547. width: 61%;
  548. }
  549. .sell_conter ul li .sell_conterBox .sell_conterBox_r h2{
  550. font-size: 0.937rem;
  551. font-weight: bold;
  552. color: #343434;
  553. overflow: hidden;
  554. text-overflow: ellipsis;
  555. white-space: nowrap;
  556. max-width: 70%;
  557. margin-top: 2px;
  558. }
  559. .sell_conter ul li .sell_conterBox .sell_conterBox_r p.pric{
  560. margin-top: 8px;
  561. font-size: 0.625rem;
  562. color: #FB5034;
  563. }
  564. .sell_conter ul li .sell_conterBox .sell_conterBox_r p.pric span{
  565. font-size: 0.937rem;
  566. font-weight: bold;
  567. }
  568. .sell_conter ul li .sell_conterBox .sell_conterBox_r p.time{
  569. margin-top: 5px;
  570. font-size: 0.625rem;
  571. color: #9A9A9A;
  572. }
  573. .sell_conter ul li .sell_conterBox .sell_conterBox_r p.style{
  574. margin-top: 5px;
  575. display: -webkit-flex; /* Safari */
  576. display: flex;
  577. align-items: center;
  578. font-size: 0;
  579. }
  580. .sell_conter ul li .sell_conterBox .sell_conterBox_r p.style i{
  581. font-size: 0.625rem;
  582. color: #fff;
  583. height: 18px;
  584. line-height: 18px;
  585. background: #3882D2;
  586. padding: 0 5px;
  587. border-radius: 2px;
  588. }
  589. .sell_conter ul li .sell_conterBox .sell_conterBox_r p.style span{
  590. font-size: 0.625rem;
  591. color: #507EB0;
  592. height: 18px;
  593. line-height: 18px;
  594. background: #F1F7FF;
  595. padding: 0 5px;
  596. border-radius: 2px;
  597. display: inline-block;
  598. margin-left: 5px;
  599. }
  600. .sell_conter ul li .sell_conterBox .lp_zk{
  601. margin-top:11px;
  602. width: 100%;
  603. display: -webkit-flex; /* Safari */
  604. display: flex;
  605. align-items: center;
  606. justify-content: flex-start;
  607. }
  608. .sell_conter ul li .sell_conterBox .lp_zk span{
  609. background: linear-gradient(90deg, #FFEFED 0%, #FFF8F7 100%);
  610. border-radius: 10px;
  611. display: inline-block;
  612. padding: 3px 8px;
  613. font-size: 0.625rem;
  614. color: #333333;
  615. }
  616. .sell_conter ul li .sell_conterBox .lp_zk img{
  617. width: 13px;
  618. height: 13px;
  619. display: inline-block;
  620. margin-right: 3px;
  621. }
  622. .sell_conter ul li .sell_conterBox .lp_zk i{
  623. color: #B5B5B5;
  624. display: inline-block;
  625. padding: 0 3px;
  626. }
  627. .sell_conter ul li .lp_tell{
  628. position: absolute;
  629. right: 0px;
  630. top:22%;
  631. }
  632. .sell_conter ul li .lp_tell a{
  633. display: -webkit-flex; /* Safari */
  634. display: flex;
  635. align-items: center;
  636. font-size: 0.75rem;
  637. color: #fff;
  638. height: 27px;
  639. padding: 0 10px;
  640. background: #44A6F5;
  641. border-radius: 14px;
  642. }
  643. .sell_conter ul li .lp_tell a img{
  644. width: 12px;
  645. height: 12px;
  646. display: inline-block;
  647. margin-right: 5px;
  648. }
  649. /* v2 改版 E */
  650. /*导航*/
  651. .main_columns {width:auto; height:auto; background:#ffffff;}
  652. .main_columns ul {display:block; width:auto; height:auto; padding:5px 0;}
  653. .main_columns ul li {width:24%; height:auto; float:left; text-align:center;position: relative;left:2%}
  654. .main_columns ul li a {display:block; width:auto; height:auto; padding:10px 0;}
  655. .main_columns ul li a span {display:block; width:41px; height:40px; margin:0 auto;}
  656. .main_columns ul li a span img {width:41px; height:40px;}
  657. .main_columns ul li a h1 {font-size:0.8rem; color:#000000; width:auto; height:auto; padding-top:10px;}
  658. /*2018-10-11 杨*/
  659. .main_columns ul li.index_list span{position: relative; }
  660. .main_columns ul li.index_list span i.index_hot{position: absolute; right: -5px; top: -6px; width: 15px; height: auto;}
  661. .main_columns ul li.index_list span i.index_hot img{ width: 100%; height: auto;}
  662. /*公共标题*/
  663. .hot_title{ padding: 0px 0;}
  664. .hot_title .hot_title_font { position: relative;}
  665. .hot_title .hot_title_font span {font-size:1.2rem; display:inline-block;vertical-align:middle;position:relative;padding:5px;color:#494949;font-weight:600;}
  666. /*房产资讯*/
  667. .y_hotnews_list{ margin: 10px 0;}
  668. /*.y_hotnews_list ul li+li{margin-top: 10px;}*/
  669. .y_hotnews_list ul li{ background:#fff; padding: 15px 0; border-bottom: 5px solid #F5F5F5;}
  670. .y_hotnews_list ul li.style1 .y_style1_tu{ width: 37%; height:95px; float: right;}
  671. .y_hotnews_list ul li.style1 .y_style1_tu img{ width: 100%; height: 100%; border-radius: 5px;}
  672. .y_hotnews_list ul li.style1 .y_style1_text{float: left; width: 60%;}
  673. .y_hotnews_list ul li.style1 .y_style1_text .y_title{ font-size: 0.95rem; color: #333; line-height: 23px; font-weight: 600;position:relative;top:12px;}
  674. .y_hotnews_list ul li.style1 .y_style1_text .y_sjll{position: relative; top: 28px;}
  675. .y_hotnews_list ul li.style1 .y_style1_text .y_sjll span{display: inline-block; font-size: 0.75rem; color: #999;}
  676. .y_hotnews_list ul li.style1 .y_style1_text .y_sjll span i{display: inline-block; width: 18px; height: auto; position: relative;top: -1px; margin-right: 5px;}
  677. .y_hotnews_list ul li.style1 .y_style1_text .y_sjll span i img{ width: 100%; height: auto;}
  678. .y_hotnews_list ul li.style1 .y_style1_text .y_sjll span.y_sj{ margin-left: 15px;}
  679. .y_hotnews_list ul li.style2 p.y_title{ font-size: 1rem; color: #333; line-height: 20px;}
  680. .y_hotnews_list ul li.style2 p.y_tulist{margin-top: 8px;}
  681. .y_hotnews_list ul li.style2 p.y_tulist i{display: block; width: 30%; height: 85px; float: left;}
  682. .y_hotnews_list ul li.style2 p.y_tulist i+i{margin-left: 10px;}
  683. .y_hotnews_list ul li.style2 p.y_tulist i img{ width: 100%; height: 100%;}
  684. .y_hotnews_list ul li.style2 p.y_sjll{ padding: 5px 0 3px;}
  685. .y_hotnews_list ul li.style2 p.y_sjll span{display: inline-block; font-size: 0.8rem; color: #999;}
  686. .y_hotnews_list ul li.style2 p.y_sjll span i{display: inline-block; width: 17px; height: auto; position: relative;top: -1px; margin-right: 5px;}
  687. .y_hotnews_list ul li.style2 p.y_sjll span.y_sj{ margin-left: 15px;}
  688. .y_news_ckgd{ text-align: center; padding: 5px 0 15px;}
  689. .y_news_ckgd a{display: inline-block; border-radius: 30px; padding: 7px 25px; font-size: 0.9rem; color: #888; background: #fff; border:1px solid #e3e3e3;}
  690. .y_item{ background:#fff; padding: 20px 10px;}
  691. .y_item_main ul li{ width: 50%; float: left; text-align: center; margin: 10px 0;}
  692. .y_item_main ul li .y_tu{ width: 45px; height:45px; margin: 0 auto;}
  693. .y_item_main ul li .y_tu img{ width: 45px; height:45px;}
  694. .y_item_main ul li .y_titile{font-size: 0.9rem; color: #666;margin-top: 8px;}
  695. /* 购房流程 */
  696. .c{display:block; zoom:1;}
  697. .c:after{content:"."; display:block; visibility:hidden; height:0; clear:both;}
  698. .process{ margin-top: 10px; width: 100%;background: #fff;border-bottom: 1px solid #ddd;}
  699. .process_main{ width: 95%; margin: 0 auto; padding: 15px 0;}
  700. .process_main ul li{width: 20%; float: left; text-align: center;}
  701. .process_main ul li p.img{width:40px; height: 40px; margin: 0 auto;}
  702. .process_main ul li p.img img{width: 100%; text-align: center; display: block;}
  703. .process_main ul li p.txt{margin-top: 5px;}
  704. .process_main ul li p.txt span{display: block; font-size: 0.6rem;position: relative;top: 4px;}
  705. .process_main .process_main_icon{display: block;height:18px;width: 18px; float: left;margin-top: 12px;}
  706. /*快捷找房*/
  707. .y_hotcity{ width: 100%; height: auto; margin-top: 10px; background: #fff; padding: 10px 0;}
  708. .y_hotcitymain{ width: 95%; margin:0 auto; }
  709. .y_hotcity .hot_title_font{width: 90%;margin: 0 auto; text-align: center; border-top:1px #d6d6d6 dashed; margin-top: 22px;}
  710. .y_hotcity .hot_title_font span{ display: inline-block; font-size: 1rem; color: #333; font-weight: 600; position: relative; top: -10px; padding: 0 15px; background: #fff;}
  711. .y_hotcity_center{ margin-top: 10px; position: relative; height: 25px; overflow: hidden; }
  712. .y_hotcity_center p.y_hotcity_centerL{ float: left; font-size: 0.9rem; color: #666;}
  713. .y_hotcity_center p.y_hotcity_centerR{ float: left; width:80%; }
  714. .y_hotcity_center p.y_hotcity_centerR a{ float: left; display: block; font-size: 0.9rem; color: #333; padding: 0px 8px 8px;}
  715. .y_hotcity_center i{ border: 1px solid #e1e1e1; padding: 3px 5px; display: block; width: 21px; height: auto; position: absolute;right: 10px; top:0px;}
  716. .y_hotcity_center i img{ width: 100%; height: auto;}
  717. .y_hotcity_center i.on img{
  718. transform: rotate(180deg);
  719. -webkit-transform: rotate(180deg);
  720. -moz-transform: rotate(180deg);
  721. -o-transform: rotate(180deg);
  722. -ms-transform: rotate(180deg);
  723. }
  724. .y_hotcity_center2{ margin-top: 5px;}
  725. .y_hottype a{ margin: 5px 3px; font-size:0.75rem; padding:3px 5px; border: 1px solid #666; color: #666; border-radius: 5px; display: inline-block; color: #fff;}
  726. .y_hottype a:nth-child(1){ border-color: #d0b4a9 ; background: #d0b4a9;}
  727. .y_hottype a:nth-child(2){ border-color: #c2bbb1 ; background: #c2bbb1;}
  728. .y_hottype a:nth-child(3){ border-color: #abb7b7 ; background: #abb7b7;}
  729. .y_hottype a:nth-child(4){ border-color: #9ab4e5 ; background: #9ab4e5;}
  730. .y_hottype a:nth-child(5){ border-color: #dfca9f ; background: #dfca9f;}
  731. .y_hottype a:nth-child(6){ border-color: #9ab4e5 ; background: #9ab4e5;}
  732. .y_hottype a:nth-child(7){ border-color: #dfca9f ; background: #dfca9f;}
  733. .y_hottype a:nth-child(8){ border-color: #d0b4a9 ; background: #d0b4a9;}
  734. .y_hottype a:nth-child(9){ border-color: #c1bab0 ; background: #c1bab0;}
  735. .y_hottype a:nth-child(10){ border-color: #abb7b7 ; background: #abb7b7;}
  736. .y_hottype a:nth-child(11){ border-color: #c2bbb1 ; background: #c2bbb1;}
  737. .ipt_area .a_inp{display:block; font-size: 0.9rem; color:#666; width: 100%; background: url("/overseas/img/index/splist1_1.png") no-repeat center right; background-size:20px 20px; padding:2px 0; }
  738. .m_zaigai_title{position:relative;margin:auto;width:170px;height:32px;}
  739. .m_zaigai_title img{width: 100%;display: block;position: relative;top: 15px;}
  740. .m_zaigai_title span{position: absolute;left: 50%;margin-left: -34px;font-size: 1.1rem;font-weight: 600;color: #444;}
  741. .sell_title {position: relative;height:35px;border-bottom:1px solid #D9D9D9;background:#FFF;}
  742. .sell_title .sell_title_left{display:inline-block;background:url(/overseas/img/icon_title.png) no-repeat center center/113px 40px;color:#fff;height:30px;font-size:1rem;padding:5px 16px 5px 6px;position:absolute;top:-6px;}
  743. .sell_title .sell_title_left img {display:inline-block;width:20px;}
  744. .sell_title .sell_title_left span {position:relative;top:2px;}
  745. .sell_title .sell_title_right {position:absolute;right:8px;top:10px;font-size:0.8rem;color:#7f7e7e;}
  746. .sell_title .sell_title_right img {display:inline-block;width:15px;position:relative;right:5px;}
  747. /*旅居城市*/
  748. .Livinglife{ background: #fff; width: 100%; margin-top: 10px;}
  749. .Livinglife_c{ width: 95%; margin: 0 auto;padding-top:15px;}
  750. .Livinglife_bg{ margin-top: 20px;}
  751. .Livinglife_bg .left{float: left; width:44%;}
  752. .Livinglife_bg .left .left_top a{ display: block; position: relative;}
  753. .Livinglife_bg .left .left_top a .text{ position: absolute; left:10px;top:10px;border-radius: 30px;padding: 5px 0;}
  754. .Livinglife_bg .left .left_top a p.tu{ width: 100%; height: 100px;border-radius:5px;overflow:hidden;}
  755. .Livinglife_bg .left .left_top a p.tu img{ width: 100%; height: 100%;}
  756. .Livinglife_bg .left .left_top a .text p.p1{ font-size: 1rem; color: #fff; font-weight: bold; }
  757. .Livinglife_bg .left .left_top a .text p.p2{ font-size: 0.7rem; color: #fff; margin-top: 3px;}
  758. .Livinglife_bg .left .left_top2{ margin-top: 8px;}
  759. .Livinglife_bg .right{float: right; width:54%;border-radius:5px;overflow:hidden;}
  760. .Livinglife_bg .right a{display: block; position: relative;}
  761. .Livinglife_bg .right a p.tu{ width: 100%; height:208px; }
  762. .Livinglife_bg .right a p.tu img{ width: 100%; height:100%; }
  763. .Livinglife_bg .right a .text{ position: absolute; right:10px; top:10px;width: 66%;border-radius: 30px;padding: 5px 0;}
  764. .Livinglife_bg .right a .text p.p1{ font-size: 1rem; color: #fff; font-weight: bold;float:right;}
  765. .Livinglife_bg .right a .text p.p2{ font-size: 0.7rem; color: #fff; margin-top: 3px;float:right;}
  766. .y_hotnews_main{ background: #fff; margin-top: 10px;}
  767. .yv2_hotnews{
  768. width: 95%;
  769. margin: 0 auto;
  770. padding: 20px 0;
  771. }
  772. /*切换区域*/
  773. #m_CityClick{display:block;}
  774. .m_qhcs_box{background:#FFF;}
  775. .m_head_qhcs{border:1px solid #ddd;width:100%;height:50px;text-align:center;position:relative;background:#fbfbfb;}
  776. .m_head_qhcs span{font-size:1.2rem;color:#333;font-weight:600;line-height:50px;}
  777. .m_Return{width:50px;height:50px;position:absolute;top:0;left:0;}
  778. .m_Return img{width:13px;display: block;margin:auto;margin-top:12px;}
  779. .m_City{padding-bottom:15px}
  780. .m_City_title{height:40px;background:#EEE;line-height:40px;text-indent:17px;font-size:0.8rem;color:#333;}
  781. .m_City_list li{border:1px solid #DDD;width:20%;height:30px;float:left;text-align:center;line-height:30px;margin:4% 0 0 4%;}
  782. .m_City_list li a{font-size:0.8rem;color:#333;}
  783. .m_City_ul_title{height:40px;background:#EEE;line-height:40px;text-indent:17px;font-size:0.8rem;color:#333;}
  784. .m_City_ul_li {padding-bottom:15px;border-bottom:1px solid #DDD;}
  785. .m_City_ul_li a{border:1px solid #DDD;width:20%;height:30px;float:left;text-align:center;line-height:30px;margin:4% 0 0 4%;display:block;font-size:0.8rem;color:#333;}
  786. .m_City_province{width:20%;height:75px;float:left;margin:4% 0 0 4%;line-height:75px;text-align:center;background:#EEE;font-size:1.1rem;font-weight:600;color:#333;}
  787. /*媒体查询*/
  788. @media (max-width: 320px){
  789. .banner{height:172px;}
  790. .header .header_seek {width:63%;}
  791. .y_tstj_bottom_l{ width: 48%;}
  792. .y_input .ipt_area .ipt_areabutton{ position: absolute; right: -4px; top: -7px; width: 30px; height: 30px; background: url("/overseas/img/index/splist1_1.png") no-repeat center; z-index: 10; background-size: 20px 20px; }
  793. .y_input .ipt_area{ width: 58%;}
  794. .y_input .y_city{ padding-left: 4px;}
  795. .y_sfheader_top{ position: absolute; left: 50%; top: 15px; width: 70%; margin-left: -35%;}
  796. .y_sfheader_top .y_logo p:nth-child(1){ font-size: 1.6rem; color:#fff;}
  797. .y_sfheader_top .y_logo p:nth-child(2){ font-size: 0.7rem; color:#fff;}
  798. .y_input{ background: #fff; padding:8px 8px; border-radius: 30px; position: relative; top: 10px;}
  799. .y_sfheader_bg{ width: 100%; height:210px;}
  800. .y_sfheader_bg p{ width: 100%; height: 100%;}
  801. .y_sfheader_bg p img{ width: 100%; height: 100%;}
  802. }
  803. /*搜索弹出*/
  804. .clear_c{display:block; zoom:1;}
  805. .clear_c:after{content:"."; display:block; visibility:hidden; height:0; clear:both;}
  806. .search-header{ background: #fff; display: block; padding: 10px;}
  807. .back-btn_maing{ float: left; width: 10%; display: block;}
  808. .back_search_m{ width: 88%; float: right; display: block;}
  809. .back_search_m .form input{ width: 85%; margin-bottom: 0px; display: block; float: left; border: 1px solid #4292F1; border-radius:0; height: 35px;font-size:0.8rem;padding:0 10px;}
  810. .back_search_m .form a{ width: 15%; background: #4292F1; display: block; float: left; text-align: center; height: 35px; line-height: 35px;}
  811. .back_search_m .form a img{width: 23px; height: auto;}
  812. .back_search_m .form{ position: relative;}
  813. .back_search_m .form .y_scriptm{ position: absolute; width:100%; left: 0px;top: 34px;z-index: 12;}
  814. .back_search_m .form .y_scriptm .select4_box{background:#fff; border: 1px solid #e1e1e1; width: 100%;}
  815. .back_search_m .form .y_scriptm .select4_box ul li{width: 100%;}
  816. .back_search_m .form .y_scriptm .select4_box ul li a{ background:none; display: inline-block; width: 100%; text-align: left; padding: 0 10px;}
  817. .back_search_m .form .y_scriptm .select4_box ul li span:nth-child(1){display: block; float: left;}
  818. .back_search_m .form .y_scriptm .select4_box ul li span:nth-child(1){font-size: 1rem; color: #333;}
  819. .back_search_m .form .y_scriptm .select4_box ul li span:nth-child(1) i{font-size: 0.8rem;color: #666; display: inline-block; margin-left: 5px;}
  820. .back_search_m .form .y_scriptm .select4_box ul li span:nth-child(2){display: block; float: right; font-size: 0.8rem; color: #666;}
  821. .back_search_m .form .y_scriptm .select4_box ul li span:nth-child(2) em{font-size: 1rem;color: #f00;}
  822. .select4_box li.active{ background:#f5f5f5;}
  823. .back_search_m .form .y_scriptm .select4_box{ width: 100%; height: 239px; overflow: auto; overflow-y:auto;}
  824. #serachBox {
  825. z-index: 10;
  826. position: relative;
  827. /*display: none;*/
  828. }
  829. .search-container .title {
  830. position: relative;
  831. padding: 18px 10px 13px 23px;
  832. line-height: 14px;
  833. font-size: 1rem;
  834. background-color: #f5f5f5;
  835. border-bottom: 1px solid #ebebeb;
  836. color:#000;
  837. }
  838. .search-container .title .title-icon {
  839. position: absolute;
  840. display: block;
  841. left: 13px;
  842. top: 18px;
  843. width: 2px;
  844. height: 14px;
  845. background-color: #4292F1;
  846. }
  847. .search-container .filter-list, .search-container .history-list {
  848. padding: 0 10px;
  849. background-color: #FFF;
  850. /*border:1px solid;*/
  851. }
  852. .search-container .filter-list .filter-item {
  853. float: left;
  854. box-sizing: border-box;
  855. width: 33.33333333%;
  856. height: 41px;
  857. border-bottom: 1px solid #ebebeb;
  858. /*border: 1px solid #ebebeb;*/
  859. /*margin:0px 10px;*/
  860. /*border-right: 1px solid #ebebeb;*/
  861. display: block;
  862. }
  863. .search-container .history-list .list-item a {
  864. display: block;
  865. width: 100%;
  866. height: 41px;
  867. font-size: 0.9rem;
  868. line-height: 41px;
  869. border-bottom: 1px solid #ebebeb;
  870. text-overflow: ellipsis;
  871. white-space: nowrap;
  872. overflow: hidden;
  873. color:#333;
  874. }
  875. .search-container .filter-list .filter-item a {
  876. display: block;
  877. box-sizing: border-box;
  878. width: 100%;
  879. height: 100%;
  880. padding: 11px 0;
  881. font-size: 0.9rem;
  882. text-align: center;
  883. color: #333;
  884. }
  885. .search-container .filter-list .filter-item a .item-text {
  886. display: block;
  887. box-sizing: border-box;
  888. width: 100%;
  889. height: 100%;
  890. float: left;
  891. font-size: 0.9rem;
  892. text-overflow:ellipsis;
  893. white-space:nowrap;
  894. overflow:hidden;
  895. border-right:1px solid #ebebeb;
  896. padding:0 5px;
  897. }
  898. .search-container .filter-list .filter-item:nth-child(3n) a .item-text{border-right:0px;}
  899. .search-container .filter-list .filter-item a i{ float: left; width: 16px; height: 15px; display: block; margin-left: 5px;}
  900. .search-container .filter-list .filter-item a i img{ width: 100%; height: 100%;position: relative;top:-5px}
  901. .search-container .search-history .title {
  902. border-top: 1px solid #ebebeb;
  903. }
  904. .search-container .clear-histroy {
  905. display: block;
  906. width: 100%;
  907. height: 41px;
  908. line-height: 41px;
  909. text-align: center;
  910. border-top: 1px solid #e7e7e7;
  911. border-bottom: 1px solid #e7e7e7;
  912. color: #999;
  913. font-size: 1rem;
  914. background-color: #fafafa;
  915. }
  916. .search-container .none-history {
  917. display: none;
  918. width: 100%;
  919. height: 41px;
  920. line-height: 41px;
  921. text-align: center;
  922. border-bottom: 1px solid #e7e7e7;
  923. color: #999;
  924. font-size: 1rem;
  925. background-color: #FFF;
  926. }
  927. .search-header .back-btn {
  928. position: absolute;
  929. left: 8px;
  930. top: 13px;
  931. width: 30px;
  932. height: 30px;
  933. background: url("/overseas/img/u5.png") no-repeat;
  934. background-size: 30px 30px;
  935. background-position: center;
  936. }
  937. /*轮播*/
  938. .m_swiper_box{width:100%;margin-top:10px;background:#FFF;padding-top: 15px;}
  939. .m_swiper_box ul{width:100%;}
  940. .m_swiper_box ul li{width:46%;height:82px;float:left;margin-left:2.7%;}
  941. .m_swiper_box ul li img{width:100%;height:100%;}