.flex-between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.space-around {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.column-between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.column-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.column-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.row-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.topbar {
  width: 100%;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: #fff;
}

.topbar__back-btn {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../images/fangchan_back.png");
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .topbar__back-btn {
    background-image: url("../images/fangchan_back@3x.png");
  }
}

.topbar__title {
  height: 49px;
  line-height: 49px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #131416;
  text-align: center;
}

.topbar::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(235, 236, 237, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
}

.tabbar {
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #fff;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.tabbar::before {
  content: "";
  width: 100%;
  height: 1px;
  transform: scaleY(0.5);
  background-color: rgba(243, 243, 243, 0.2);
  position: absolute;
  left: 0;
  top: 0;
}

.tabbar a {
  flex: 1;
}

.tabbar-item {
  /* width: 20%; */
  padding: .5rem 0 .3rem;
}

.tabbar-item.selected .tabbar-icon.home-icon {
  background-image: url("../images/fangchan_remake_tabbar_home_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.home-icon {
    background-image: url("../images/fangchan_remake_tabbar_home_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.second-hand-icon {
  background-image: url("../images/fangchan_remake_tabbar_second_hand_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.second-hand-icon {
    background-image: url("../images/fangchan_remake_tabbar_second_hand_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.first-hand-icon {
  background-image: url("../images/fangchan_remake_tabbar_first_hand_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.first-hand-icon {
    background-image: url("../images/fangchan_remake_tabbar_first_hand_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.new-house-icon {
  background-image: url("../images/fangchan_remake_tabbar_new_house_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.new-house-icon {
    background-image: url("../images/fangchan_remake_tabbar_new_house_selected@3x.png");
  }
}
.tabbar-item.selected .tabbar-icon.rent-house-icon {
  background-image: url("../images/fangchan_remake_tabbar_rent_house_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.rent-house-icon {
    background-image: url("../images/fangchan_remake_tabbar_rent_house_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.factory-icon {
  background-image: url("../images/fangchan_remake_tabbar_factory_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.factory-icon {
    background-image: url("../images/fangchan_remake_tabbar_factory_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.warehouse-icon {
  background-image: url("../images/fangchan_remake_tabbar_warehouse_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.warehouse-icon {
    background-image: url("../images/fangchan_remake_tabbar_warehouse_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.land-icon {
  background-image: url("../images/fangchan_remake_tabbar_land_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.land-icon {
    background-image: url("../images/fangchan_remake_tabbar_land_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.first-hand-icon {
  background-image: url("../images/fangchan_remake_tabbar_land_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.first-hand-icon {
    background-image: url("../images/fangchan_remake_tabbar_land_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.store-icon {
  background-image: url("../images/fangchan_remake_tabbar_store_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.store-icon {
    background-image: url("../images/fangchan_remake_tabbar_store_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.office-icon {
  background-image: url("../images/fangchan_remake_tabbar_office_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.office-icon {
    background-image: url("../images/fangchan_remake_tabbar_office_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.post-icon {
  background-image: url("../images/fangchan_remake_tabbar_post_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.post-icon {
    background-image: url("../images/fangchan_remake_tabbar_post_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.register-icon {
  background-image: url("../images/fangchan_remake_tabbar_register_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.register-icon {
    background-image: url("../images/fangchan_remake_tabbar_register_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.profile-icon {
  background-image: url("../images/fangchan_remake_tabbar_profile_selected.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.profile-icon {
    background-image: url("../images/fangchan_remake_tabbar_profile_selected@3x.png");
  }
}

.tabbar-item.selected .tabbar-text {
  color: #db2038;
  font-weight: normal;
}

.tabbar-item .tabbar-icon {
  width: 2.3rem;
  height: 2.3rem;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.tabbar-item .tabbar-icon.home-icon {
  background-image: url("../images/fangchan_remake_tabbar_home.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.home-icon {
    background-image: url("../images/fangchan_remake_tabbar_home@3x.png");
  }
}

.tabbar-item .tabbar-icon.second-hand-icon {
  background-image: url("../images/fangchan_remake_tabbar_second_hand.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.second-hand-icon {
    background-image: url("../images/fangchan_remake_tabbar_second_hand@3x.png");
  }
}

.tabbar-item .tabbar-icon.first-hand-icon {
  background-image: url("../images/fangchan_remake_tabbar_first_hand.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.first-hand-icon {
    background-image: url("../images/fangchan_remake_tabbar_first_hand@3x.png");
  }
}

.tabbar-item .tabbar-icon.new-house-icon {
  background-image: url("../images/fangchan_remake_tabbar_new_house.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.new-house-icon {
    background-image: url("../images/fangchan_remake_tabbar_new_house@3x.png");
  }
}

.tabbar-item .tabbar-icon.rent-house-icon {
  background-image: url("../images/fangchan_remake_tabbar_rent_house.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.rent-house-icon {
    background-image: url("../images/fangchan_remake_tabbar_rent_house@3x.png");
  }
}

.tabbar-item .tabbar-icon.office-icon {
  background-image: url("../images/fangchan_remake_tabbar_office.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.office-icon {
    background-image: url("../images/fangchan_remake_tabbar_office@3x.png");
  }
}

.tabbar-item .tabbar-icon.factory-icon {
  background-image: url("../images/fangchan_remake_tabbar_factory.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.factory-icon {
    background-image: url("../images/fangchan_remake_tabbar_factory@3x.png");
  }
}

.tabbar-item .tabbar-icon.warehouse-icon {
  background-image: url("../images/fangchan_remake_tabbar_warehouse.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.warehouse-icon {
    background-image: url("../images/fangchan_remake_tabbar_warehouse@3x.png");
  }
}

.tabbar-item .tabbar-icon.land-icon {
  background-image: url("../images/fangchan_remake_tabbar_land.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.land-icon {
    background-image: url("../images/fangchan_remake_tabbar_land@3x.png");
  }
}

.tabbar-item .tabbar-icon.store-icon {
  background-image: url("../images/fangchan_remake_tabbar_store.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.store-icon {
    background-image: url("../images/fangchan_remake_tabbar_store@3x.png");
  }
}

.tabbar-item.selected .tabbar-icon.office-icon {
  background-image: url("../images/fangchan_remake_tabbar_office.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item.selected .tabbar-icon.office-icon {
    background-image: url("../images/fangchan_remake_tabbar_office@3x.png");
  }
}

.tabbar-item .tabbar-icon.post-icon {
  background-image: url("../images/fangchan_remake_tabbar_post.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.post-icon {
    background-image: url("../images/fangchan_remake_tabbar_post@3x.png");
  }
}

.tabbar-item .tabbar-icon.register-icon {
  background-image: url("../images/fangchan_remake_tabbar_register.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.register-icon {
    background-image: url("../images/fangchan_remake_tabbar_register@3x.png");
  }
}

.tabbar-item .tabbar-icon.profile-icon {
  background-image: url("../images/fangchan_remake_tabbar_profile.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .tabbar-item .tabbar-icon.profile-icon {
    background-image: url("../images/fangchan_remake_tabbar_profile@3x.png");
  }
}

.post-icon-img {
  width: 34px;
}

.tabbar-item.post-item {
  padding: 1rem 0;
}

.tabbar-item.profile-item {
  position: relative;
}

.tabbar-item .profile-item__badge {
  display: inline-block;
  width: 12px;
  font-size: .9rem;
  color: #fff;
  background-color: #f01400;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(50%);
  height: 12px;
  line-height: 12px;
  text-align: center;
}

.tabbar-item .tabbar-text {
  display: inline-block;
  margin-top: .2rem;
  font-size: 1.2rem;
  color: #74757b;
}

.fixed-right-tool-bar {
  position: fixed;
  right: .8rem;
  bottom: 6rem;
  z-index: 500;
  padding-bottom: 0;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.fixed-right-tool-bar div + div {
  margin-top: 1rem;
}

.fixed-right-tool-bar img {
  width: 5rem;
  /* width: 6rem; */
  overflow: hidden;
}

.house-item {
  /* padding: 6.342391% 0 6.630551%; */
  padding: 5.190201% 0 5.190201%;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
}

.house-item:last-of-type {
  padding-bottom: 0;
}

.house-item--soldout,
.house-item--rented {
  opacity: .7;
}

.house-item--soldout::after {
   content: " ";
   display: inline-block;
   width: 6.0rem;
   height: 7.4rem;
   opacity: .7;
   background: url(../images/cell_sold_out.jpg) no-repeat;
   background-size: contain;
   position: absolute;
   right: 2%;
   bottom: 2rem;
   z-index: 200;
 }

.house-item--rented::after {
  content: " ";
  display: inline-block;
  width: 6.0rem;
  height: 7.4rem;
  opacity: .7;
  background: url(../images/cell_rented.jpg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 2%;
  bottom: 2rem;
  z-index: 200;
}

.house-item + .house-item {
  border-top: 1px solid #f8f8f8;
}

.house-item__cover {
  width: 36.6%;
  margin-right: 1.2rem;
  padding-top: 27.088888%;
  height: 0;
  background-repeat: no-repeat;
  /* background-size: auto 100%; */
  background-size: cover;
  background-position: center;
  background-color: #f4f5f9;
  border-radius: .2rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
} 

.house-item__recommend {
  line-height: 20px;
  padding: 0 .6rem;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,.6);
  border-radius: 10px;
  position: absolute;
  right: .5rem;
  top: .4rem;
  z-index: 100;
}

.house-item__video {
  display: inline-block;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url("../images/fangchan_remake_video.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .house-item__video {
    background-image: url("../images/fangchan_remake_video@3x.png");
  }
}

.house-item__vr {
  display: inline-block;
  width: 30px;
  height: 27px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  position: absolute;
  left: .5rem;
  bottom: .4rem;
  background-image: url("../images/fangchan_remake_vr.png");
}


.house-item__agent {
  display: inline-block;
  width: 30px;
  height: 27px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  position: absolute;
  right: 0.1rem;
  bottom: 0.1rem;
  background-image: url("../images/fangchan_remake_zj.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .house-item__vr {
    background-image: url("../images/fangchan_remake_vr@3x.png");
  }
}

.house-item__content {
  width: 100%;
  font-size: 0;
  overflow: hidden;
}

.house-item__label {
  display: inline-block;
  margin-right: .2rem;
  padding: 2px .3rem;
  /* padding: 0 .3rem; */
  /* height: 20px; */
  /* line-height: 20px; */
  font-size: 10px;
  font-style: normal;
  color: #fff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  border-radius: .2rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.house-item__label--second-house {
  background: #f36d6d;
}

.house-item__label--rent-house {
  background: #50a3d9;
}

.house-item__label--store {
  background: #50d9aa;
}

.house-item__label--new-house {
  background: #49cfe0;
}

.house-item__label--office {
  background: #3160e0;
}

.house-item__label--factory {
  background: #f2e657;
}

.house-item__label--land {
  background: #efb962;
}

.house-item__label--warehouse {
  background: #d99450;
}

.house-item__label--first-hand {
  background: #8992d9;
}

/* .house-item__top {
  display: inline-block;
  width: 31.496062%;
  padding-top: 31.496062%;
  height: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../images/fangchan_remake_fixed_top_new-import.png");
  position: absolute;
  left: 0;
  top: 0;
} */

.house-item__cover .house-item__top-text{
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 2px 0.5rem;
  background: #f36d6d;
  font-size: 1.2rem;
  font-style: normal;
  color: #fff;
  border-radius: .2rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.house-item__title .house-item__top-text{
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 0.2rem;
  padding: 2px 0.3rem;
  background: #f36d6d;
  font-size: 1.2rem;
  font-style: normal;
  color: #fff;
  border-radius: .2rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  /* .house-item__top {
    background-image: url("../images/fangchan_remake_fixed_top_new-import.png");
  } */
}

.house-item__top-img {
  margin-right: .4rem;
  width: 27.01835%;
  vertical-align: sub;
}

.house-item__recommend-img {
  margin-right: .4rem;
  width: 27.01835%;
  vertical-align: sub;
}

.house-item__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.7);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.house-item__address {
  font-size: 1.2rem;
  color: #666;
  overflow: hidden;
  /*white-space: nowrap;*/
  text-overflow: ellipsis;
}

.house-item__keyword {
  margin-top: .8rem;
  font-size: 0;
}

.house-item__keyword-item {
  display: inline-block;
  line-height: 16px;
  margin-right: .6rem;
  /* margin-bottom: .8rem; */
  padding: 0 .4rem;
  font-size: 1rem;
  color: #3d87c8;
  background: #f1fcff;
  border-radius: .2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border: 1px solid rgba(61,135,200,.01);
}

.house-item__keyword-item--presale {
  color: #ffc400;
  background: #fffdf1;
}

.house-item__keyword-item--on-sale {
  color: #3e87c8;
  background: #f1fcff;
}

.house-item__keyword-item--period {
  color: #e89d52;
  background: #fff5f1;
}

.house-item__keyword-item--sale-out {
  color: #7dde5a;
  background: #f1fff4;
}

.house-item__keyword-item--agent {
  padding: 0 .3rem;
  color: #4ea0d5;
  background: transparent;
  border: 1px solid #4ea0d5;
}

.house-item__keyword-item--person {
  padding: 0 .3rem;
  color: #f36d6d;
  background: transparent;
  border: 1px solid #f36d6d;
}

.house-item__tuangou {
  font-size: 1.2rem;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.house-item__info {
  width: 100%;
}

.house-item__price {
  min-width: 72px;
  font-size: 1.3rem;
  /* font-weight: bold; */
  color: #db203b;
  text-align: right;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: .8;
}

.house-item__discount {
  padding-left: 21px;
  font-size: 1.2rem;
  color: #626262;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.house-item__discount-icon {
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("../images/fangchan_remake_discount.png");
}

@media (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3) {
  .house-item__discount-icon {
    background-image: url("../images/fangchan_remake_discount@3x.png");
  }
}

.house-item__size {
  font-size: 1.2rem;
  color: #626262;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1500;
}

.empty-recommend-tips {
  padding: 2rem 0;
  font-size: 1.4rem;
  color: #626262;
  text-align: center;
}
