body {
  --primaryColor: #6c1886;
  --secondaryColor: #9b258b;
  --activeColor: #e32785;
  min-width: 1240px;
  overflow-x: auto;
}

.layout {
  background: #ffffff;
  min-height: 100%;
}

.min-h-400 {
  min-height: 400px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-r-5 {
  margin-right: 5px !important;
}

.solid {
  width: 100%;
  height: 1px;
  background-color: #f1f1f1;
}

.notFixed {
  position: static !important;
}

.popup_btn {
  position: relative;
}



.default_content {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* search input框单独拿出来 */
.search {
  width: 360px;
  height: 50px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
}

.search .search_input {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  border-radius: 8px 0 0 8px;
  border: 2px solid var(--primaryColor);
  background-color: #fff;
}

    .search .search_input input {
        width: 100%;
        height: 100%;
        padding: 0 15px;
        border-radius: 8px;
        /* border-radius: 5px 0 0 5px; */
    }

.search .search_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
  background-color: var(--primaryColor);
  border-radius: 0 8px 8px 0;
}

.search .search_btn .iconfont {
  font-size: 20px;
  color: #fff;
}

/* 顶部紫色header */
.default_header {
  width: 100%;
  height: 40px;
}

.default_header .default_header_main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #1e122c;
  z-index: 10;
}

.default_header .default_header_main .default_header_content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.default_header .default_header_main .default_header_content .default_header_nav,
.default_header .default_header_main .default_header_content .default_header_login {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.default_header .default_header_main .default_header_content a {
  display: inline-flex;
  align-items: center;
  margin-right: 16px;
}

.default_header .default_header_main .default_header_content a:last-of-type {
  margin-right: 0;
}

.default_header .default_header_main .default_header_content a .me_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/Vector.png) no-repeat center center/100% 100%;
}

.default_header .default_header_main .default_header_content a span {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #888b90;
}

.default_header .default_header_main .default_header_content a:hover span,
.default_header .default_header_main .default_header_content a.active span {
  color: #fff;
}

/* 带搜索的顶部header */
.searchHeader {
  width: 100%;
  height: 80px;
}

.searchHeader .searchHeader_m {
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.04);
  z-index: 10;
}

.searchHeader .searchHeader_m .searchHeader_c {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_title {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 270px;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_title .logo {
  flex-shrink: 0;
  display: block;
  width: 160px;
  height: 36px;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_title .solid {
  flex-shrink: 0;
  width: 2px;
  height: 36px;
  background: var(--secondaryColor);
  margin: 0 16px;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_title .title {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 500;
  color: var(--secondaryColor);
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search {
  flex-grow: 1;
  flex-shrink: 0;
  margin: 0 18px;
  display: flex;
  align-items: center;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .search {
  width: 360px;
  height: 50px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
}

    .searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .search .search_input {
        flex: 1;
        display: flex;
        align-items: center;
        height: 100%;
        border-radius: 8px 0 0 8px;
        border: 2px solid var(--primaryColor);
        position: relative;
        background-color: #fff;
    }

        .searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .search .search_input input {
            width: 100%;
            height: 100%;
            padding: 0 15px;
            border-radius: 8px;
            /* border-radius: 5px 0 0 5px; */
        }

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .search .search_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
  background-color: var(--primaryColor);
  border-radius: 0 8px 8px 0;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .search .search_btn .iconfont {
  font-size: 20px;
  color: #fff;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .searchHeader_a_btn {
  flex-shrink: 0;
  margin-right: 15px;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .searchHeader_a_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border-radius: 8px;
  border: 1px solid var(--primaryColor);
  font-size: 16px;
  color: var(--primaryColor);
  transition: all 0.3s;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .searchHeader_a_btn a:hover {
  background: var(--primaryColor);
  color: #fff;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .searchHeader_a_btn a .iconfont {
  font-size: 20px;
  margin-right: 10px;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .searchHeader_a_btn a .air_icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url(../images/air_icon.svg) no-repeat center center/contain;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_search .searchHeader_a_btn a:hover .air_icon {
  background-image: url(../images/uav_active.png);
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_download {
  flex-shrink: 0;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_download .download {
  position: relative;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_download .download a {
  display: inline-flex;
  align-content: center;
  height: 100%;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #333333;
}

.searchHeader .searchHeader_m .searchHeader_c .searchHeader_c_download .download a .download_icon {
  width: 14px;
  height: 20px;
  background: url(../images/phone_icon.svg) no-repeat center center/contain;
  margin-right: 5px;
}

/* 页面上部背景图 */
.default_banner {
  width: 100%;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.default_banner .banner_title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}

.default_banner .banner_text {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

.stores_banner {
  background: url(../images/stores_banner.png) no-repeat center center / cover;
}

.agent_banner {
  background: url(../images/agent_banner.png) no-repeat center center / cover;
}

.entrusted_banner {
  background: url(../images/entrusted_banner.png) no-repeat center center / cover;
}

/* 选项卡 */
.default_tab_li {
  font-size: 18px;
  color: #333333;
  position: relative;
  margin: 0 16px;
  padding: 8px 0 14px 0;
  cursor: pointer;
  transition: all .5s;
}

.default_tab_li::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 6px;
  border-radius: 3px;
  background-color: var(--primaryColor);
  transition: all .5s;
}

.default_tab_li.active {
  color: var(--primaryColor);
}

.default_tab_li.active::after {
  width: 100%;
}

/* 筛选 */
.filter {
  padding-top: 24px;
  padding-bottom: 14px;
}

.filter .filter_item {
  display: flex;
  margin-bottom: 5px;
}

.filter_title {
  flex-shrink: 0;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  padding: 5px 0;
  margin-right: 12px;
}
.filter .more {
  display: flex;
  align-items: center;
  justify-content: center;
}
    .filter .more .more_btn {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: var(--primaryColor);
        cursor: pointer;
        font-weight: bold;
    }
.filter .more .more_btn::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  background: url(../images/arrow_down.png) no-repeat center center/contain;
  transition: all .2s;
}
.filter .more .more_btn.isMore::after {
  transform: rotate(180deg);
}

.filter .filter_item .filter_item_content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.filter .filter_item .filter_item_content input {
  display: none;
}

.filter .filter_item .filter_item_content label {
  font-size: 14px;
  font-weight: 500;
  padding: 4px 7px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  margin-right: 7px;
  margin-bottom: 5px;
}

.filter .filter_item .filter_item_content label:hover,
.filter .filter_item .filter_item_content input:checked+label {
  color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.filter .filter_item .filter_item_content .hasCheckbox label {
  border: 0;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}

.filter .filter_item .filter_item_content .hasCheckbox label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 6px;
}

.filter .filter_item .filter_item_content .hasCheckbox input:checked+label::before {
  background: var(--primaryColor) url(../images/true_icon.png) no-repeat center center/16px 12px;
}

.filter .filter_item .filter_item_content .filter_item_custom {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.filter .filter_item .filter_item_content .filter_item_custom input {
  display: block;
  width: 56px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid #dddddd;
  padding: 5px;
  text-align: center;
}

.filter .filter_item .filter_item_content .filter_item_custom span {
  margin: 0 4px;
  font-size: 14px;
  color: #000;
}

.filter .filter_item .filter_item_content .filter_item_custom button {
  border-radius: 4px;
  color: #fff;
  background: var(--primaryColor);
  height: 32px;
  font-size: 14px;
}

/* 清楚筛选 */
.clearFilter {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--primaryColor);
  cursor: pointer;
}

.clearFilter i.clear_icon {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/clear_icon.png) no-repeat center center/contain;
  margin-right: 5px;
}

.search_t {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.search_t .num {
  color: var(--primaryColor);
}

/* 排序块 */
.sort_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px 25px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.04);
}

.sort_box .sort_list {
  display: flex;
  align-items: center;
}

.sort_box .sort_list .sort_item {
  margin-right: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.sort_box .sort_list .sort_item::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
}

.sort_box .sort_list .sort_item.hasArrow.active::after {
  background: url(../images/sort_arrow_icon.png) center center/contain;
  transition: all .2s;
}
.sort_box .sort_list .sort_item.hasArrow.reverse.active::after {
  transform: rotate(180deg);
}

.sort_box .sort_list .sort_item:hover,
.sort_box .sort_list .sort_item.active {
  color: var(--primaryColor);
}

.sort_box .sort_icon_list {
  display: flex;
  align-items: center;
}

.sort_box .sort_icon_list .sort_icon_t {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.sort_box .sort_icon_list .sort_icon {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-left: 20px;
  cursor: pointer;
}

.sort_box .sort_icon_list .sort_icon_row {
  background-image: url(../images/sortRow_icon.png);
}

.sort_box .sort_icon_list .sort_icon_cell {
  background-image: url(../images/sortCell_icon.png);
}

.sort_box .sort_icon_list .sort_icon_row.active {
  background-image: url(../images/sortRow_active_icon.png);
}

.sort_box .sort_icon_list .sort_icon_cell.active {
  background-image: url(../images/sortCell_active_icon.png);
}

/* 卡片 */
.list_default {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.house_card {
  position: relative;
  display: block;
  width: 23%;
  margin: 1%;
  background-color: #fff;
  border-radius: 8px;
  border: 0.6px solid #f1f1f1;
  transform: scale(1);
  overflow: hidden;
  transition: transform 0.5s;
}

.house_card:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, .08);
  transform: scale(1.04);
}

.house_card .house_info:hover .house_title {
  color: var(--primaryColor) !important;
}

.house_card .label {
  position: absolute;
  top: 15px;
  left: 10px;
  padding: 8px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}

.house_card .label.label_residence {
  background-color: #377e1e;
}
    .house_card .label.label_Store {
        background-color: #ffa600;
    }
.house_card .label.label_apartment {
  background-color: #11c3c5;
}

.house_card .label.label_villa {
  background-color: #f9b000;
}

    .house_card .label.label_office {
        background-color: #4283ff;
    }

.house_card .label.label_newHouse {
  border-radius: 4px;
  font-size: 14px;
  line-height: 16px;
  background-color: var(--primaryColor);
}

.house_card .label.label_rentingHouse {
  border-radius: 13px;
  font-size: 14px;
  color: #ffa600;
  border: 1px solid #ffa600;
}

.house_card .vr_icon {
  position: absolute;
  top: 15px;
  right: 10px;
  display: block;
  width: 48px;
  height: 48px;
  background: url(../images//vr.png) no-repeat center center / contain;
}
.house_card .video_icon {
    position: absolute;
    top: 15px;
    right: 10px;
    display: block;
    width: 48px;
    height: 48px;
    background: url(../images//video_icon.png) no-repeat center center / contain;
}
.vr_icon {
    position: absolute;
    top: 15px;
    right: 10px;
    display: block;
    width: 48px;
    height: 48px;
    background: url(../images//vr.png) no-repeat center center / contain;
}
.vr_ai_icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: block;
    width: 80px;
    height: 35px;
    background: url(../images/aivr.png) no-repeat center center / contain;
}
.house_card .house_img {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
}

.house_card .house_img .carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.house_card .house_img .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house_card .house_img .carousel .carousel-inner {
  height: 100%;
}

.house_card .house_img .carousel .carousel-inner .carousel-item {
  height: 100%;
}

.house_card .house_img .carousel .carousel-indicators li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.house_card .house_img .carousel .carousel-indicators li.active {
  background-color: var(--primaryColor);
}

.house_card .house_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house_card .house_info {
  padding: 10px;
}

.house_card .house_info .house_title {
  display: flex;
  flex-wrap: wrap;
  color: #222e46;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.house_card .house_info .house_title .house_name {
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
}

.house_card .house_info .house_title .house_label {
  font-size: 14px;
  line-height: 24px;
  padding: 0 6px;
  border-radius: 4px;
  color: #fff;
  margin-left: 8px;
}

.house_card .house_info .house_title .house_label_sale {
  background-color: #e32785;
}

.house_card .house_info .house_title .house_label_residence {
  background-color: #3a7d25;
}

.house_card .house_info .house_title .house_label_shop {
  background-color: #4ec5d3;
}

.house_card .house_info .house_title .house_label_office {
  background-color: #4283ff;
}

.house_card .house_info .house_title .house_label_villa {
  background-color: #ffa600;
}

.house_card .house_info .house_title .house_label_apartment {
    background-color: #11c3c5;
}

.house_card .house_info .house_title .house_label_Store {
    background-color: #ffa600;
}

.house_card .house_info .text1 {
  font-size: 14px;
  color: #999999;
  margin-bottom: 10px;
}

.house_card .house_info .text2 {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
}
.house_card .house_info .text3 {
        font-size: 14px;
        color: #666666;
        margin-bottom: 3px;
    }
.house_card .house_info .price {
  font-size: 26px;
  font-weight: 600;
  color: #ff0000;
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
  line-height: 1;
}

.house_card .house_info .price .unit {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

.house_card .house_info .right_price_bottom {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #999;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination ul li {
  margin: 0 4px;
}

.pagination ul li a {
  display: block;
  min-width: 38px;
  text-align: center;
  padding: 0 8px;
  font-size: 16px;
  line-height: 38px;
  color: #666666;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #f1f1f1;
}

.pagination ul li a.disabled {
  cursor: not-allowed;
  color: #6c757d;
  background-color: #fff;
}

.pagination ul li a.active {
  color: #fff;
  background: var(--primaryColor);
  border-color: var(--primaryColor);
}

/* 详情页顶部内容 */
.detail_header {
  padding: 23px 0;
  background-color: #f8f8fe;
}

.detail_header .detail_header_l {
  flex: 1;
}

.detail_header .detail_header_l .detail_header_title {
  font-size: 28px;
  line-height: 38px;
  color: #000;
  font-weight: 500;
  margin-bottom: 12px;
}

.detail_header .detail_header_btnList {
  flex-shrink: 0;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.detail_header .detail_header_btnList .btn {
  margin-right: 10px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: #fff;
  padding: 10px 18px;
}

.detail_header .detail_header_btnList .btn.primary_btn {
  background-color: var(--primaryColor);
}

.detail_header .detail_header_btnList .btn.secondary_btn {
  background-color: #e32785;
}

.detail_header .detail_header_btnList .btn span {
  font-size: 16px;
  line-height: 24px;

}

.detail_header .detail_header_btnList .btn .icon {
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 6px;
}

.detail_header .detail_header_btnList .btn.follow_btn {
  background: #fff;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);

}

.detail_header .detail_header_btnList .btn.follow_btn.active {
  background: var(--primaryColor);
  color: #fff;
}

.detail_header .detail_header_btnList .btn.follow_btn .follow_icon {

  background-image: url(../images/collect_icon.png);

}

.detail_header .detail_header_btnList .btn.follow_btn.active .follow_icon {

  background-image: url(../images/follow_icon.png);
}

.detail_header .detail_header_btnList .btn .share_icon {
  background-image: url(../images/share_icon.png);
}

/* label列表 */
.label_list {
  display: flex;
  flex-wrap: wrap;
}

.label_list .label {
  font-size: 14px;
  line-height: 26px;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
  border-radius: 4px;
  padding: 0 6px;
  margin-right: 8px;
}

.label_list .label.label_residence {
  background-color: #377e1e;
  border-color: #377e1e;
  color: #fff;
}
.label_list .label.label_villa {
    background-color: #f9b000;
    border-color: #f9b000;
    color: #fff;
}
.label_list .label.label_office {
    background-color: #4283ff;
    border-color: #4283ff;
    color: #fff;
}
.label_list .label.label_apartment {
    background-color: #11c3c5;
    border-color: #11c3c5;
    color: #fff;
}

.label_list .label.label_sale {
  background-color: #e32785;
  border-color: #e32785;
  color: #fff;
}

.label_list .label.label_dynamic {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
}



    .label_list .label2 {
        font-size: 14px;
        line-height: 26px;
        border: 1px solid var(--primaryColor);
        color: var(--primaryColor);
        border-radius: 4px;
        padding: 0 6px;
        margin-right: 8px;
    }

        .label_list .label2.label_residence {
            background-color: #377e1e;
            border-color: #377e1e;
            color: #fff;
        }

        .label_list .label2.label_villa {
            background-color: #f9b000;
            border-color: #f9b000;
            color: #fff;
        }

        .label_list .label2.label_office {
            background-color: #4283ff;
            border-color: #4283ff;
            color: #fff;
        }

        .label_list .label2.label_apartment {
            background-color: #11c3c5;
            border-color: #11c3c5;
            color: #fff;
        }

        .label_list .label2.label_sale {
            background-color: #e32785;
            border-color: #e32785;
            color: #fff;
        }

        .label_list .label2.label_dynamic {
            background-color: var(--primaryColor);
            border-color: var(--primaryColor);
            color: #fff;
        }

/* 详情页 详情 */
.detail_info {
  padding: 10px 0;
  background-color: #fff;
}

.breadcrumb {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
  background: transparent;
  padding: 2px 0;
  transition: all .5s;
}

.breadcrumb .active,
.breadcrumb .active:hover {
  color: #000;
}

.breadcrumb a:hover {
  color: var(--primaryColor);
}

.detail_info .image_swiper {
  flex: 1;
  overflow: hidden;
}

.detail_info .image_swiper .gallery-top {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 64%;
  margin-bottom: 10px;
}

.newHouse_gallery-top:hover .gallery-top_prev,
.newHouse_gallery-top:hover .gallery-top_next {
  display: block;
}

.gallery-top_prev {
  left: 0;
}

.gallery-top_next {
  right: 0;
}

.gallery-top_prev,
.gallery-top_next {
  display: none;
  width: auto;
  height: auto;
  padding: 15px 10px;
  color: var(--primaryColor);
  background-color: rgba(0, 0, 0, .3);
  box-sizing: content-box;
}

.gallery-top_prev.swiper-button-disabled,
.gallery-top_next.swiper-button-disabled {
  pointer-events: auto;
  cursor: auto;
  opacity: 0.7;

}

.gallery-top_prev.swiper-button-disabled:hover,
.gallery-top_next.swiper-button-disabled:hover {
  background-color: rgba(0, 0, 0, .3);
}

.gallery-top_prev::after,
.gallery-top_next::after {
  font-size: 24px;
}

.gallery-top_prev:hover,
.gallery-top_next:hover {
  background-color: rgba(0, 0, 0, .7)
}

.detail_info .image_swiper .gallery-top .swiper-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}

.detail_info .image_swiper .gallery-top .swiper-wrapper .swiper-slide {
  height: 100%;
}

.detail_info .image_swiper .gallery-top .swiper-wrapper .swiper-slide>a {
  width: 100%;
  height: 100%;
}

.detail_info .image_swiper .gallery-top .swiper-wrapper .swiper-slide .vr {
  width: 100%;
  height: 100%;
  position: relative;
}

.detail_info .image_swiper .gallery-top .swiper-wrapper .swiper-slide .vr::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: url(../images/vr.png) no-repeat center center/contain;
}
.detail_info .image_swiper .gallery-top .swiper-wrapper .swiper-slide .aivr::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 140px;
  height: 60px;
  background: url(../images/aivr.png) no-repeat center center/contain;
}



.detail_info .image_swiper .gallery-top .swiper-wrapper .swiper-slide img {
  display: block;
  width: 725px;
  height: 463px;
  object-fit: cover;
}

.detail_info .image_swiper .gallery-top .swiper-wrapper .swiper-slide .hasBigPic {
  cursor: pointer;
}

.detail_info .image_swiper .swiper_thumbs {
  display: flex;
  height: 90px;
}

.detail_info .image_swiper .swiper_thumbs .swiper-button {
  flex-shrink: 0;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 90px;
  cursor: pointer;
  margin-top: 0;
  border: 1px solid #dddddd;
  color: var(--primaryColor);
  font-size: 10px;
  z-index: 0;
}

.detail_info .image_swiper .swiper_thumbs .swiper-button::after {
  font-size: 14px;
  font-weight: bold;
}

.detail_info .image_swiper .swiper_thumbs .gallery-thumbs {
  flex: 1;
  margin: 0 10px;
}

.detail_info .image_swiper .swiper_thumbs .gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.5;
  position: relative;
  cursor: pointer;
}

.detail_info .image_swiper .swiper_thumbs .gallery-thumbs .active,
.detail_info .image_swiper .swiper_thumbs .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;

}



.detail_info .image_swiper .swiper_thumbs .gallery-thumbs .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail_info .image_swiper .swiper_thumbs .gallery-thumbs .swiper-slide .name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4px 12px;
  height: 32px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(0, 0, 0, 0.8);
}

.detail_info .info {
  width: 440px;
  margin-left: 36px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.detail_info .info .info_price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 23px;
}

.detail_info .info .info_price .num {
  display: flex;
  align-items: flex-end;
  color: #ff0008;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  margin-right: 20px;
}

.detail_info .info .info_price .num .unit {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.detail_info .info .info_price .unitPrice {
  font-size: 18px;
  color: #999999;
}
.detail_info .info .info_price .info_ishaggle {
    background-color: #E32785;
    border-color: #E32785;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    padding: 6px;
    border-radius: 4px;
    margin-left: 20px;
}

.detail_info .info .info_price .rentType {
    font-size: 18px;
    line-height: 26px;
    border: 1px solid var(--primaryColor);
    color: var(--primaryColor);
    border-radius: 4px;
    padding: 0 6px;
    margin-right: 8px;
}

.detail_info .info .label {
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  padding: 6px;
  color: #005A9F;
  border-radius: 4px;
  background-color: #F4F9FF;
  margin-bottom: 22px;
}

.detail_info .info .label.newHouseLabel {
  color: #FFA600;
  border: 1px solid #FFA600;
  padding: 4px 8px;
  background: #fff;
}

.detail_info .info .house_info {
  display: flex;
  flex-wrap: wrap;
  padding: 26px 10px 19px;
}

.detail_info .info .house_info .house_info_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 71px;
}

.detail_info .info .house_info .house_info_item:last-of-type {
  margin-right: 0;
}

.detail_info .info .house_info .house_info_item_t {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 5px;
  color: #000;
  font-weight: 500;
}

.detail_info .info .house_info .house_info_item_text {
  font-size: 16px;
  line-height: 22px;
  color: #999;
}

.detail_info .info .residential {
  flex: 1;
  margin: 40px 0;
}

.detail_info .info .residential .residential_item {
  display: flex;
  margin-bottom: 16px;
}

.detail_info .info .residential .residential_item:last-of-type {
  margin-bottom: 0;
}

.detail_info .info .residential .residential_item .residential_item_name {
  flex-shrink: 0;
  width: 64px;
  font-size: 16px;
  line-height: 1;
  margin-right: 15px;
  color: #999999;
}

.detail_info .info .residential .residential_item .residential_item_value {
  font-size: 16px;
  line-height: 1;
  color: #000000;
}

.detail_info .info .residential .residential_item .residential_item_value .link {
  margin-left: 20px;
  color: var(--primaryColor);
  text-decoration: underline;
}

.detail_info .info .house_tip {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: #333;
  margin: 40px 0;
}

.detail_info .info .house_tip a {
  color: var(--primaryColor);
  text-decoration: underline;
}

.detail_info .info .house_tip i {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/tip_icon.png) no-repeat center center/contain;
  margin-right: 10px;
}

.detail_info .house_info_btn_list {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}

.detail_info .house_info_btn_list .btn {
  margin-right: 10px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 18px 16px;
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}

.detail_info .house_info_btn_list .btn.primary_btn {
  color: #fff;
  background-color: var(--primaryColor);
}

.detail_info .house_info_btn_list .btn.collect_btn.active {
  color: #fff;
  background-color: var(--primaryColor);
}



.detail_info .house_info_btn_list .btn span {
  font-size: 16px;
  line-height: 24px;
}

.detail_info .house_info_btn_list .btn .icon {
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 6px;
}

.detail_info .house_info_btn_list .btn .collect_icon {
  background-image: url(../images/collect_icon.png);
}
    .detail_info .house_info_btn_list .btn .customerService_icon {
        background-image: url(../images/chat_icon.png);
    }

.detail_info .house_info_btn_list .btn.collect_btn.active .collect_icon {
  background-image: url(../images/follow_icon.png);
}



.detail_info .house_info_btn_list .btn .contrast_icon {
  background-image: url(../images/contrast_icon.png);
}

.detail_info .house_info_btn_list .btn .vehicle_icon {
  background-image: url(../images/vehicle_icon.png);
}

.detail_info .btn_list {
  display: flex;
  margin: 48px 0;
}

.detail_info .btn_list .btn {
  min-width: 158px;
  margin-right: 13px;
  padding: 16px 20px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  border-radius: 8px;
}

.detail_info .btn_list .btn.primary_btn {
  background-color: var(--primaryColor);
}

.detail_info .btn_list .btn.secondary_btn {
  background-color: #e32785;
}

/* 详情页 内容部分 */
.detail_content .detail_nav_box {
  width: 100%;
  height: 60px;
}

.detail_content .detail_nav {
    width: 100%;
    height: 60px;
    background-color: #f8f8fe;
    min-width: 1204px;
}

.detail_content .detail_nav .detail_nav_content {
  display: flex;
  height: 100%;
  padding: 0 60px;
}

.detail_content .detail_nav .detail_nav_content a {
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  color: #333;
  margin-right: 50px;
  padding: 0;
}

.detail_content .detail_nav .detail_nav_content a.active {
  color: var(--primaryColor);
}

.detail_content .detail_nav .detail_nav_content_between{
  justify-content: space-between;
  align-items: center;
}
.detail_content .detail_nav .detail_nav_content_between .detail_nav_content_between_left{
  display: flex;
}
.detail_content .detail_nav .detail_nav_content_between .detail_nav_content_between_right{
  display: none;
}
.detail_content .detail_nav .detail_nav_content_between .detail_nav_content_between_right.show{
  display: flex;
}
.detail_content .detail_nav .detail_nav_content_between .detail_nav_content_between_button{
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--primaryColor);
  margin-left: 8px;
}
.detail_content .detail_nav .detail_nav_content_between .detail_nav_content_between_button_manager{
  background: var(--activeColor);
}
.detail_content .detail_nav .detail_nav_content_between_button .detail_nav_content_between_icon{
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.detail_content .detail_nav .detail_nav_content_between_button .detail_nav_content_between_contrast{
  background: url(../images/contrast_icon.png) no-repeat center center;
}
.detail_content .detail_nav .detail_nav_content_between_button .detail_nav_content_between_vehicle{
  background: url(../images/vehicle_white_icon.png) no-repeat center center;
}
.detail_content .detail_nav .detail_nav_content_between_button .detail_nav_content_between_manager{
  background: url(../images/manager_icon.png) no-repeat center center;
}

.detail_content .content_item {
  padding-top: 60px;
  margin: -20px 0 40px;
}

.detail_content .content_item .content_item_title {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
}

.detail_content .basic_info .basic_info_row {
  display: flex;
  padding: 30px;
  border-bottom: 1px solid #f1f1f1;
}

.detail_content .basic_info .basic_info_row.notBorder {
  border-bottom: 0;
}

.detail_content .basic_info .basic_info_row:last-of-type {
  border-bottom: 0;
}

.detail_content .basic_info .basic_info_row .basic_info_row_l {
  flex-shrink: 0;
  width: 100px;
  margin-right: 25px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.detail_content .basic_info .basic_info_row .basic_info_row_r {
  flex: 1;
}

.detail_content .basic_info .basic_info_row .basic_info_row_r.basic_attr {
  display: flex;
  flex-wrap: wrap;
}

.detail_content .basic_info .basic_info_row .basic_info_row_r.basic_attr .attr_li {
  display: flex;
  width: 300px;
  margin-bottom: 18px;
  padding-right: 10px;
}

.detail_content .basic_info .basic_info_row .basic_info_row_r.basic_attr {
  width: calc(100% - 300px);
  min-width: 300px;
}

.detail_content .basic_info .basic_info_row .basic_info_row_r.basic_attr .attr_li .attr_li_name {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 26px;
  color: #999999;
  margin-right: 18px;
}

.detail_content .basic_info .basic_info_row .basic_info_row_r.basic_attr .attr_li .attr_li_value {
  flex: 1;
  font-size: 16px;
  line-height: 26px;
  color: #333333;
}

.detail_content .basic_info .basic_info_row .basic_info_row_r.basic_default_block .attr_li {
  display: flex;
  margin-bottom: 23px;
}

.detail_content .basic_info .basic_info_row .basic_info_row_r.basic_default_block .attr_li .attr_li_name {
  flex-shrink: 0;
  width: 112px;
  margin-right: 18px;
  font-size: 16px;
  line-height: 26px;
  color: #999999;
}

.detail_content .basic_info .basic_info_row .basic_info_row_r.basic_default_block .attr_li .attr_li_value {
  font-size: 16px;
  line-height: 26px;
  color: #333333;
}

.detail_content .basic_info .basic_info_row .basic_info_row_r.basic_tip {
  font-size: 16px;
  line-height: 26px;
  color: #999999;
}

.detail_content .furniture {
  display: flex;
  flex-wrap: wrap;
}

.detail_content .furniture .furniture_li {
  margin: 0 30px 25px;
  width: 80px;
  padding: 2px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.detail_content .furniture .furniture_li span {
  font-size: 14px;
  line-height: 20px;
  margin: 6px 0;
  color: #999999;
}

.detail_content .furniture .furniture_li .icon {
  display: block;
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.detail_content .furniture .furniture_li .furniture_i1 {
  background-image: url(../images/furniture_icon1.png);
}

.detail_content .furniture .furniture_li .furniture_i2 {
  background-image: url(../images/furniture_icon2.png);
}

.detail_content .furniture .furniture_li .furniture_i3 {
  background-image: url(../images/furniture_icon3.png);
}

.detail_content .furniture .furniture_li .furniture_i4 {
  background-image: url(../images/furniture_icon4.png);
}

.detail_content .furniture .furniture_li .furniture_i5 {
  background-image: url(../images/furniture_icon5.png);
}

.detail_content .furniture .furniture_li .furniture_i6 {
  background-image: url(../images/furniture_icon6.png);
}

.detail_content .furniture .furniture_li .furniture_i7 {
  background-image: url(../images/furniture_icon7.png);
}

.detail_content .furniture .furniture_li .furniture_i8 {
  background-image: url(../images/furniture_icon8.png);
}

.detail_content .furniture .furniture_li .furniture_i9 {
  background-image: url(../images/furniture_icon9.png);
}

.detail_content .furniture .furniture_li .furniture_i10 {
  background-image: url(../images/furniture_icon10.png);
}

.detail_content .furniture .furniture_li .furniture_i11 {
  background-image: url(../images/furniture_icon11.png);
}

.detail_content .furniture .furniture_li .furniture_i12 {
  background-image: url(../images/furniture_icon12.png);
}

.detail_content .furniture .furniture_li .furniture_i13 {
  background-image: url(../images/furniture_icon13.png);
}

.detail_content .furniture .furniture_li .furniture_i14 {
  background-image: url(../images/furniture_icon14.png);
}

.detail_content .house_description .description_list {
  margin: 27px 15px 0;
}

.detail_content .house_description .description_list p {
  font-size: 16px;
  line-height: 40px;
  color: #333333;
}

.detail_content .house_evaluate .evaluate_list {
  margin: 30px 15px;
}

.detail_content .house_evaluate .evaluate_list .evaluate_li {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.detail_content .house_evaluate .evaluate_list .evaluate_li_none {
    display: none;
}
.detail_content .house_evaluate .evaluate_list .evaluate_left {
  display: flex;
  align-items: center;
}

.detail_content .house_evaluate .evaluate_list .evaluate_left .avatar {
  width: 80px;
  height: 100px;
  margin-right: 10px;
}

.detail_content .house_evaluate .evaluate_list .evaluate_left .avatar img {
  display: block;
  width: 100%;
  height: 100%;
}

.detail_content .house_evaluate .evaluate_list .evaluate_left .evaluate_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80px;
  flex-shrink: 0;
  margin-right: 10px;
}

.detail_content .house_evaluate .evaluate_list .evaluate_left .evaluate_info .evaluate_name {
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail_content .house_evaluate .evaluate_list .evaluate_left .evaluate_info .evaluate_address {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail_content .house_evaluate .evaluate_list .evaluate_box {
  position: relative;
  flex: 1;
}

.detail_content .house_evaluate .evaluate_list .evaluate_box::before {
  content: '';
  display: block;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 20px;
  background: url(../images/left_arrow.png) no-repeat center right/100% 100%;
}

.detail_content .house_evaluate .evaluate_list .evaluate_box .evaluate_text {
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  padding: 18px 16px;
  border-radius: 8px;
  background-color: #f5f7fa;
}

.detail_content .imgList {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 10px;
}

.detail_content .imgList .img_box {
  width: 280px;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 15px;
  margin-bottom: 18px;
  cursor: pointer;
}

.detail_content .imgList .img_box_none {
    display: none;
}
.detail_content .imgList .img_box_fang_none {
    display: none;
}
.detail_content .imgList .img_box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail_content .residentialInfo .content_item_title {
  display: flex;
  justify-content: space-between;
}

.detail_content .residentialInfo .content_item_title .content_item_title_more {
  font-size: 16px;
  line-height: 26px;
  color: #999;
  cursor: pointer;
  margin-right: 23px;
}
.detail_content .residentialInfo .content_item_title .content_item_title_more_btn {
    font-size: 16px;
    color: #000;
    cursor: pointer;
    margin-right: 23px;
    height:30px;
    border-radius: 4px;
    color: #fff;
    background: var(--primaryColor);
}
.detail_content .residential_info {
  margin: 40px 15px 30px;
}

.detail_content .residential_info .residential_info_title {
  font-size: 26px;
  line-height: 1;
  color: #000000;
  margin-bottom: 16px;
}

.detail_content .residential_info .residential_info_list .residential_info_li {
  display: flex;
}

.detail_content .residential_info .residential_info_list .residential_info_li .residential_info_li_name {
  width: 64px;
  flex-shrink: 0;
  margin-right: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 32px;
  color: #999;
}

.detail_content .residential_info .residential_info_list .residential_info_li .residential_info_li_value {
  flex: 1;
  font-size: 16px;
  line-height: 32px;
  color: #000;
}

.detail_content .residential_btnList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 12px 30px;
}

.detail_content .residential_btnList .btn {
  padding: 16px 40px;
  border-radius: 8px;
  color: #fff;
  margin-right: 17px;
  margin-bottom: 10px;
}

.detail_content .residential_btnList .btn.sale_btn {
  background-color: #e32785;
}

.detail_content .residential_btnList .btn.renting_btn {
  background-color: var(--primaryColor);
}

.detail_content .aerial_b {
  margin: 30px 15px;
  border-radius: 16px;
  height: 360px;
  overflow: hidden;
}

.detail_content .aerial_b .aerial {
  width: 100%;
  height: 360px;
}

.detail_content .address_main {
  margin: 30px 15px;
  border-radius: 16px;
  height: 360px;
  overflow: hidden;
}

.default_content .agent_item .agent_list {
  margin: 15px;
}

.detail_content .houseType {
  margin: 20px 0;
}

.detail_content .houseType .houseTypeBtnList {
  display: flex;
  flex-wrap: wrap;
}

.detail_content .houseType .houseTypeBtnList .btn {
  margin-right: 16px;
  padding: 18px 16px;
  border-radius: 8px;
  color: #000000;
  background: #f5f7fa;
  cursor: pointer;
}

.detail_content .houseType .houseTypeBtnList .btn:hover,
.detail_content .houseType .houseTypeBtnList .btn.active {
  color: #fff;
  background: var(--primaryColor);
}

.detail_content .houseTypeList {
  margin: 20px 10px;
}

.detail_content .houseTypeList .houseTypeLi {
  display: flex;
  margin-bottom: 40px;
}

    .detail_content .houseTypeList .houseTypeLi .image {
        width: 300px;
        height: 225px;
        border-radius: 16px;
        overflow: hidden;
        margin-right: 30px;
        position: relative;
    }
        .detail_content .houseTypeList .houseTypeLi .image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.detail_content .houseTypeList .houseTypeLi .houseTypeLi_title {
  display: flex;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 16px;
}

.detail_content .houseTypeList .houseTypeLi .houseTypeLi_title .label_list {
  flex-shrink: 0;
  margin-left: 15px;
}

.detail_content .houseTypeList .houseTypeLi .houseTypeLi_text {
  font-size: 16px;
  line-height: 26px;
  color: #999999;
  margin-bottom: 6px;
}

.detail_content .houseTypeList .houseTypeLi .houseTypeLi_price {
  display: flex;
  align-items: flex-end;
  font-size: 22px;
  line-height: 1;
  color: #ff0008;
  margin-bottom: 6px;
}

.detail_content .houseTypeList .houseTypeLi .houseTypeLi_price .currency {
  font-size: 16px;
}

.detail_content .houseTypeList .houseTypeLi .houseTypeLi_label {
  font-size: 16px;
  line-height: 26px;
  padding: 6px;
  color: #005a9f;
  border-radius: 4px;
  background: #f4f9ff;
}

.detail_content .dynamic_list {
  margin: 30px 34px;
}

.detail_content .dynamic_list .dynamic_list_li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.detail_content .dynamic_list .dynamic_list_li .label_list {
  flex-shrink: 0;
  margin-right: 16px;
}

.detail_content .dynamic_list .dynamic_list_li .dynamic_head {
  display: flex;
  margin-bottom: 16px;
}

.detail_content .dynamic_list .dynamic_list_li .dynamic_head .dynamic_title {
  font-size: 22px;
  line-height: 26px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 12px;
}

.detail_content .dynamic_list .dynamic_list_li .dynamic_head .dynamic_time {
  font-size: 16px;
  line-height: 26px;
  color: #999999;
}

.detail_content .dynamic_list .dynamic_list_li .dynamic_p {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
}

.detail_content .house_dynamic_list {
    border-top: 1px solid #ddd;
    margin: 30px 15px;
}

    .detail_content .house_dynamic_list .dynamic_list_li {
        border-bottom: 1px solid #ddd;
        margin: 0;
        padding: 30px 19px;
    }

.detail_content .calculator {
  margin: 20px;
  display: flex;
  justify-content: space-between;
}

.detail_content .calculator .calculator_form .form-group {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

.detail_content .calculator .calculator_form .form-group label {
  width: 110px;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  margin-right: 25px;
  flex-shrink: 0;
}

.detail_content .calculator .calculator_form .form-group .form-select {
  width: 520px;
  flex-shrink: 0;
  border: 0;
  padding: 19px 34px 19px 19px;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/arrow_down.png) no-repeat 490px center/10px 6px;
}
    .detail_content .calculator .calculator_form .form-group .form-input {
        width: 520px;
        flex-shrink: 0;
        border: 0;
        padding: 19px 34px 19px 19px;
        box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        background: url(../images/arrow_down.png) no-repeat 490px center/10px 6px;
    }

.detail_content .calculator .calculator_form .form-group button {
  width: 100%;
  height: 60px;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
  background: var(--primaryColor);
}

.detail_content .calculator .calculator_infor {
  width: 320px;
}

.detail_content .calculator .calculator_infor .calculator_tab_list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddd;
}

.detail_content .calculator .calculator_infor .calculator_tab_list .calculator_tab {
  font-size: 16px;
  line-height: 36px;
  color: #000000;
  cursor: pointer;
}

.detail_content .calculator .calculator_infor .calculator_tab_list .calculator_tab.active {
  color: var(--primaryColor);
}

.detail_content .calculator .calculator_infor .calculator_list {
  padding: 8px 0;
  margin-bottom: 9px;
  border-bottom: 1px solid #ddd;
}

.detail_content .calculator .calculator_infor .calculator_list .calculator_li {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 36px;
}

.detail_content .calculator .calculator_infor .calculator_list .calculator_li .calculator_li_name {
  width: 64px;
  color: #999999;
  flex-shrink: 0;
}

.detail_content .calculator .calculator_infor .calculator_list .calculator_li .calculator_li_value {
  color: #999999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail_content .calculator .calculator_infor .calculator_list .calculator_total_li .calculator_li_name {
  color: #000;
}

.detail_content .calculator .calculator_infor .calculator_list .calculator_total_li .calculator_li_value {
  color: #ff0008;
}

.detail_content .calculator .calculator_infor .calculator_tip {
  font-size: 14px;
  line-height: 26px;
  color: #999999;
  margin-bottom: 10px;
}

.detail_content .calculator .calculator_infor .calculator_consult {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  padding: 17px 0;
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  border-radius: 8px;
}

.detail_content .album {
  margin: 20px 0;
}

.detail_content .album .album_list {
  display: flex;
  flex-wrap: wrap;
}

.detail_content .album .album_list .album_li {
  width: 280px;
  margin-right: 15px;
  margin-bottom: 20px;
}

.detail_content .album .album_list .album_li:nth-of-type(4n) {
  margin-right: 0;
}

.detail_content .album .album_list .album_li .album_box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 8px;
}

.detail_content .album .album_list .album_li .album_box_nono {
    display:none;
}

.detail_content .album .album_list .album_li .album_box img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.detail_content .album .album_list .album_li .album_box .album_label {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  padding: 8px 24px;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  border-radius: 0 8px 0 0;
  background: rgba(108, 24, 134, 0.8);
}

.detail_content .video {
  margin: 20px 0;
}

.detail_content .house_card_list {
  margin: 16px 0;
}

.detail_content .house_card_list .house_more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  width: 740px;
  height: 50px;
  font-size: 16px;
  line-height: 26px;
  color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  border-radius: 8px;
}

.detail_content .houseTypeImg .content_item_title {
  display: flex;
  line-height: 26px;
}

.detail_content .houseTypeImg .content_item_title .type_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 20px;
}

.detail_content .houseTypeImg .content_item_title .type_list .type_li {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  cursor: pointer;
}

.detail_content .houseTypeImg .content_item_title .type_list .type_li.active {
  color: var(--primaryColor);
}

.detail_content .houseTypeImg .content_item_title .type_list .type_li::after {
  content: '|';
  display: inline-block;
  margin: 0 10px;
  color: #000;
  cursor: default;
}

.detail_content .houseTypeImg .content_item_title .type_list .type_li:last-of-type::after {
  display: none;
}
.detail_content .houseTypeImg .house_dynamic_list_title {
    display: block;
}

    .detail_content .houseTypeImg .house_dynamic_list_title .type_list {
        margin-top: 27px;
    }

.detail_content .img_list {
  margin: 25px 16px;
  display: flex;
  flex-wrap: wrap;
}

.detail_content .img_list .img_card {
  position: relative;
  width: 280px;
  height: 210px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  margin-right: 16px;
  margin-bottom:15px;
}

.detail_content .img_list .img_card:nth-child(4n) {
  margin-right: 0;
}

.detail_content .img_list .img_card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail_content .img_list .img_card .label {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 14px;
  line-height: 26px;
  padding: 8px 24px;
  border-radius: 0 8px 0 0;
  color: #fff;
  background: rgba(108, 24, 134, 0.8);
}

.detail_content .img_list .img_card.video_card::after {
  content: '';
  display: block;
  width: 72px;
  height: 72px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/video_icon.png) no-repeat center center/contain;
}

/* 户型图列表 */
.houseTypeImg_list {
  margin: 25px 16px;
  display: flex;
  flex-wrap: wrap;
}

.houseTypeImg_card {
  margin-right: 16px;
  margin-bottom: 35px;
  cursor: pointer;
}

.houseTypeImg_card:nth-child(4n) {
  margin-right: 0;
}

.houseTypeImg_card .image {
  position: relative;
  width: 280px;
  height: 210px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.houseTypeImg_card .image .label {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 14px;
  line-height: 26px;
  padding: 8px 24px;
  border-radius: 0 8px 0 0;
  color: #fff;
  background: rgba(108, 24, 134, 0.8);
}

.houseTypeImg_card .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.houseTypeImg_card .card_content {
  padding: 0 4px;
  display: flex;
}

.houseTypeImg_card .card_content .content_l {
  width: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}

.houseTypeImg_card .card_content .content_l .item {
  display: flex;
  font-size: 16px;
  line-height: 26px;
}

.houseTypeImg_card .card_content .content_l .item .item_name {
  flex-shrink: 0;
}

.houseTypeImg_card .card_content .content_r {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.houseTypeImg_card .card_content .content_r .price {
  font-size: 16px;
  line-height: 26px;
  color: #ff0008;
}

.houseTypeImg_card .card_content .content_r .label {
  font-size: 14px;
  line-height: 1;
  padding: 6px;
  border-radius: 4px;
  color: #fff;
}

.houseTypeImg_card .card_content .content_r .label.sell {
  background-color: #e32785;
}

/* 经纪人列表 */
.agent_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.manager_agent{
  display: block;
  max-height: 70vh;
  overflow: auto;
  padding-right: 10px;
}

.agent_list .agent_card {
  display: flex;
  width: calc(50% - 5px);
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid #f1f1f1;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #fff;
}
.manager_agent .agent_card {
  width: 100%;
}

.agent_list .agent_card .agent_info {
  flex: 1;
  display: flex;
  margin-right: 30px;
}

.agent_list .agent_card .agent_info .agent_avatar {
  display: block;
  flex-shrink: 0;
  width: 80px;
  height: 100px;
  border-radius: 4px;
  margin-right: 10px;
}

.agent_list .agent_card .agent_info .agent_avatar img {
  display: block;
  width: 100%;
  height: 100%;
}

.agent_list .agent_card .agent_info .info_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position:relative;
}

.agent_list .agent_card .agent_info .info_content .agent_name {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 8px;
  color: #000000;
}

.agent_list .agent_card .agent_info .info_content .agent_address {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
  color: #999999;
}

.agent_list .agent_card .agent_info .info_content .agent_label_list {
  display: flex;
  flex-wrap: wrap;
}

.agent_list .agent_card .agent_info .info_content .agent_label_list .agent_label {
  display: block;
  padding: 4px;
  border: 1px solid var(--primaryColor);
  border-radius: 5px;
  font-size: 14px;
  line-height: 16px;
  color: var(--primaryColor);
  margin-right: 6px;
  margin-bottom: 6px;
}

.agent_list .agent_card .agent_info .info_content .agent_webphone {
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    right: 0;
    color: var(--primaryColor);
}

.agent_list .agent_card .agent_btn_list {
  display: flex;
  align-items: center;
}

.agent_list .agent_card .agent_btn_list .agent_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
}

.agent_list .agent_card .agent_btn_list .agent_btn:last-of-type {
  margin-right: 0;
}

.agent_list .agent_card .agent_btn_list .agent_btn i {
  display: block;
  width: 50%;
  height: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.agent_list .agent_card .agent_btn_list .agent_btn.chat_btn {
  background-color: #e32785;
}

.agent_list .agent_card .agent_btn_list .agent_btn.phone_btn {
  background-color: var(--primaryColor);
}
    .agent_list .agent_card .agent_btn_list .agent_btn.call_btn {
        background-color: var(--secondaryColor);
    }
.agent_list .agent_card .agent_btn_list .agent_btn.chat_btn i {
  background-image: url(../images/chat_icon.png);
}

.agent_list .agent_card .agent_btn_list .agent_btn.phone_btn i {
  background-image: url(../images/phone_icon.png);
}
    .agent_list .agent_card .agent_btn_list .agent_btn.call_btn i {
        width: 65%;
        background-image: url(../images/call_icon.png);
    }
/* 门店列表 */
.store_list {
  margin: 0 8px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.store_list .store_card {
  width: 580px;
  margin-bottom: 24px;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  border: 1px solid #dddddd;
}

.store_list .store_card .store_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-right: 30px;
}

.store_list .store_card .store_info .store_name {
  font-size: 22px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 4px;
}

.store_list .store_card .store_info .store_address {
  font-size: 16px;
  line-height: 22px;
  color: #999999;
}

.store_list .store_card .store_btn_list {
  display: flex;
  align-items: center;
}

.store_list .store_card .store_btn_list .store_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
}

.store_list .store_card .store_btn_list .store_btn:last-of-type {
  margin-right: 0;
}

.store_list .store_card .store_btn_list .store_btn i {
  display: block;
  width: 50%;
  height: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.store_list .store_card .store_btn_list .store_btn.map_btn {
  background-color: #e32785;
}

.store_list .store_card .store_btn_list .store_btn.phone_btn {
  background-color: var(--primaryColor);
}

.store_list .store_card .store_btn_list .store_btn.map_btn i {
  background-image: url(../images/map_icon.png);
}

.store_list .store_card .store_btn_list .store_btn.phone_btn i {
  background-image: url(../images/phone_icon.png);
}

.stores_content {
  margin-bottom: 70px;
}

.stores_num {
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin-bottom: 24px;
}

.stores_num span {
  color: var(--primaryColor);
}

.storeDetail {
  padding: 30px 0;
  background: #f8f8fe;
}

.storeDetail .image {
  width: 260px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 36px;
}

.storeDetail .image img {
  display: block;
  width: 100%;
  height: 100%;
}

.storeDetail .storeDetail_info .store_name {
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin-bottom: 23px;
}

.storeDetail .storeDetail_info .store_info_item {
  display: flex;
  margin-bottom: 10px;
}

.storeDetail .storeDetail_info .store_info_item i {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 15px;
}

.storeDetail .storeDetail_info .store_info_item i.location_icon {
  background-image: url(../images/location_icon.png);
}

.storeDetail .storeDetail_info .store_info_item i.tel_icon {
  background-image: url(../images/tel_icon.png);
}

.storeDetail .storeDetail_info .store_info_item i.fax_icon {
  background-image: url(../images/fax_icon.png);
}

.storeDetail .storeDetail_info .store_info_item span {
  font-size: 16px;
  line-height: 22px;
  color: #666666;
}

/* 小区列表 */
.neighbourhood {
  margin: 25px 15px;
}

.neighbourhood_list {}

.neighbourhood_card {
  display: flex;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #F1F1F1;
  background: #fff;
  margin-bottom: 20px;
  transition: transform .5s;
  cursor: pointer;
}

.neighbourhood_card:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, .08);
  transform: scale(1.01);
}

.neighbourhood_card .image {
  flex-shrink: 0;
  width: 190px;
  height: 145px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 20px;
}

.neighbourhood_card .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neighbourhood_card .neighbourhood_card_content {
  flex: 1;
}

.neighbourhood_card .neighbourhood_card_name {
  display: block;
  font-size: 24px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 12px;
}

.neighbourhood_card .neighbourhood_card_text {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 13px;
  color: #999999;
}

.neighbourhood_card .neighbourhood_card_price {
  font-size: 22px;
  line-height: 30px;
  color: #ff0008;
}

.neighbourhood_card .neighbourhood_card_r {
  display: flex;
  flex-shrink: 0;
}

.neighbourhood_card .neighbourhood_card_r .neighbourhood_card_r_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}

.neighbourhood_card .neighbourhood_card_r .neighbourhood_card_r_item .num {
  font-size: 26px;
  line-height: 30px;
  color: var(--primaryColor);
  margin-bottom: 2px;
}

.neighbourhood_card .neighbourhood_card_r .neighbourhood_card_r_item .text {
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}

.neighbourhood_cell_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.neighbourhood_card2 {
  width: 575px;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  margin-bottom: 24px;
  transition: transform .5s;
}
.neighbourhood_card2:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  transform: scale(1.01);
}
.neighbourhood_card2 .image {
  flex-shrink: 0;
  width: 190px;
  height: 145px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 12px;
  position: relative;
}
.neighbourhood_card2 .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.neighbourhood_card2 .image .year {
  position: absolute;
  top: 5px;
  right: 7px;
  padding: 6px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  background-color: var(--primaryColor);
}
.neighbourhood_card2 .neighbourhood_card_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 5px;
}
.neighbourhood_card2 .neighbourhood_card_content .neighbourhood_card_name {
  font-size: 22px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 12px;
}
.neighbourhood_card2 .neighbourhood_card_content .neighbourhood_card_name:hover {
  color: var(--primaryColor);
}
.neighbourhood_card2 .neighbourhood_card_content .neighbourhood_card_text {
  font-size: 14px;
  line-height: 19px;
  color: #999999;
  margin-bottom: 11px;
}
.neighbourhood_card2 .neighbourhood_card_content .neighbourhood_card_price {
  display: flex;
  align-items: flex-end;
  font-size: 22px;
  line-height: 1;
  color: #FF0008;
  margin-bottom: 5px;
}
.neighbourhood_card2 .neighbourhood_card_content .neighbourhood_card_price .currency {
  font-size: 14px;
  line-height: 20px;
}
.neighbourhood_card2 .neighbourhood_card_r {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.neighbourhood_card2 .neighbourhood_card_r .num_list {
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.neighbourhood_card2 .neighbourhood_card_r .num_list .num_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 4px;
  background-color: #F8F8FE;
  margin-left: 11px;
  color: var(--primaryColor);
}
.neighbourhood_card2 .neighbourhood_card_r .num_list .num_btn.renting_btn {
  color: var(--activeColor);
}
.neighbourhood_card2 .neighbourhood_card_r .num_list .num_btn.sell_btn {
  color: var(--primaryColor);
}
.neighbourhood_card2 .neighbourhood_card_r .num_list .num_btn .num {
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 4px;
  font-weight: bold;
}
.neighbourhood_card2 .neighbourhood_card_r .num_list .num_btn .text {
  font-size: 12px;
  line-height: 16px;
  color: #888B90;
}
.neighbourhood_card2 .neighbourhood_card_r .school {
  position: relative;
  width: 170px;
  padding-right: 20px;
  border-radius: 4px;
  background-color: #F4F9FF;
}
.neighbourhood_card2 .neighbourhood_card_r .school::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  background: url(../images/arrow_down.png) no-repeat center center/contain;
}
.neighbourhood_card2 .neighbourhood_card_r .school .text {
  font-size: 14px;
  line-height: 26px;
  color: #005A9F;
  padding: 4px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.neighbourhood_card2 .neighbourhood_card_r .school:hover .scholl_list {
  display: block;
}
.neighbourhood_card2 .neighbourhood_card_r .school .scholl_list {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #F4F9FF;
  width: 100%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
  z-index: 1;
}
.neighbourhood_card2 .neighbourhood_card_r .school .scholl_list_text {
  font-size: 14px;
  line-height: 26px;
  color: #005A9F;
  padding: 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

/* banner下的search框 */
.banner_b_search {
  display: flex;
  justify-content: center;
}

.banner_b_search .search {
  width: 520px;
  height: 52px;
  margin-top: -26px;
}

/* 紫色底部 */
.footer {
  width: 100%;
  background-color: #1e122c;
}

.footer .footer_content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px;
}

.footer .footer_content .footer_t {
  display: flex;
  align-items: flex-end;
  padding: 30px 0;
  border-bottom: 1px solid #595967;
}

.footer_logo img {
  display: block;
  height: 40px;
  width: 188px;
  object-fit: contain;
}

.footer_menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0 20px;
}

.footer_menu .footer_menu_li {
  margin-left: 20px;
  font-size: 14px;
  color: #ffffff;
}

.footer .footer_content .footer_b {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}

.footer_b .footer_info {
  flex: 1;
}

.footer_b .footer_info .info_list {
  display: flex;
  flex-wrap: wrap;
}

.footer_b .footer_info .info_item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 14px;
  color: #888b90;
  margin-right: 20px;
  margin-bottom: 10px;
}

.footer_b .footer_info .info_item .icon_emblem {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  background: url(../images/icon_emblem.png) no-repeat center center / contain;
}

.footer_b .footer_contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  margin-left: 80px;
}

.footer_b .footer_contact .phone {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #fff;
}

.footer_b .footer_contact .phone .iconfont {
  font-size: 30px;
}

.footer_b .footer_contact .time {
  font-size: 14px;
  color: #888b90;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: transparent;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--primaryColor);
}

/* 弹框 */
.popup_box {
  position: absolute;
  display: none;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  padding: 22px;
  box-shadow: 0px 4px 8px 4px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  z-index: 1;
  cursor: default;
}
.manager_agent .popup_box{
  left: -100%;
}
.popup_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup_box .qrcode_title {
  font-size: 18px;
  line-height: 24px;
  color: var(--primaryColor);
  margin-bottom: 4px;
}

.popup_box .qrcode_img {
  display: block;
  width: 115px;
  height: 115px;
  object-fit: contain;
  margin-bottom: 5px;
}

.popup_box .qrcode_text {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}

.popup_box .qrcode_text2 {
  font-size: 12px;
  line-height: 16px;
  color: #666666;
}

.popup_box .qrcode_downloadText {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 5px;
  white-space: nowrap;
}

/* 模态框 */
.modal_card.fade .modal-dialog {
  transform: translateY(-160%);
}

.modal_card.show .modal-dialog {
  transform: none;
}

.modal_card .modal-dialog {
  max-width: 540px;
}

.modal_card_manager .modal-dialog {
  max-width: 620px;
}

.modal_card .modal-content {
  padding: 10px 0;
}

.modal_card .modal-header {
  padding: 0;
  display: block;
  border: 0;
  padding: 0 20px 14px 20px;
}

.modal_card .modal-header .modal_header_t {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5px;
}

.modal_card .modal-header .modal_header_t .modal_header_title {
  font-size: 22px;
  line-height: 30px;
  color: #000;
  font-weight: 500;
}

.modal_card .modal-header .modal_header_text {
  font-size: 16px;
  line-height: 22px;
  color: #999999;
}

.modal_card .modal-header .close {
  opacity: 1;
}

.modal_card .modal-header .close i {
  width: 38px;
  height: 38px;
  display: inline-block;
  background: url(../images/close_icon.png) no-repeat center center/100% 100%;
  transition: all 0.5s;
}

.modal_card .modal-header .close:hover {
  opacity: 1;
}

.modal_card .modal-header .close:hover i {
  transform: rotate(90deg);
}

.modal_card .modal-body {
  padding: 0 20px 20px;
}

.modal_card .modal-body .form_row {
  margin-bottom: 10px;
}

.modal_card .modal-body .form_label {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 5px;
}

.modal_card .modal-body .form_label.required::before {
  content: '*';
  color: #FF0008;
}

.modal_card .modal-body .form_item_content {
  display: flex;
  flex-wrap: wrap;
}

.modal_card .modal-body .radio_item {
  margin-bottom: 10px;
  margin-right: 10px;
}

.modal_card .modal-body .radio_item:last-of-type {
  margin-right: 0;
}

.modal_card .modal-body .radio_item input {
  display: none;
}

.modal_card .modal-body .radio_item label {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all .5s;
}

.modal_card .modal-body .radio_item label .label_title {
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  color: #666;
  padding: 2px 7px;
  background: #eee;
}

.modal_card .modal-body .radio_item label .label_text {
  text-align: center;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}

.modal_card .modal-body .radio_item label:hover,
.modal_card .modal-body .radio_item input:checked+label {
  border-color: var(--primaryColor);
}

.modal_card .modal-body .radio_item label:hover .label_title,
.modal_card .modal-body .radio_item input:checked+label .label_title {
  background: var(--primaryColor);
  color: #fff;
}

.modal_card .modal-body .radio_item label:hover .label_text,
.modal_card .modal-body .radio_item input:checked+label .label_text {
  color: var(--primaryColor);
}

.modal_card .modal-body .input_box {
  display: flex;
  align-items: center;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  flex: 1;
  margin-right: 10px;
  overflow: hidden;
}

.modal_card .modal-body .input_box:last-of-type {
  margin-right: 0;
}

.modal_card .modal-body .input_box .form_select {
  width: 100%;
  flex-shrink: 0;
  padding: 14px 34px 14px 11px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: url(../images/arrow_down.png) no-repeat calc(100% - 20px) center/10px 6px;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.modal_card .modal-body .input_box .form_input {
  width: 100%;
  flex: 1;
  padding: 14px 11px;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.modal_card .modal-body .input_box .form_textarea {
  width: 100%;
  flex: 1;
  padding: 14px 11px;
  resize: none;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.modal_card .modal-body .input_box .count {
  padding: 0 20px;
  color: var(--primaryColor);
  cursor: pointer;
}

.modal_card .modal-body .btn {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  line-height: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--primaryColor);
  margin: 20px 0;
}

.modal_card .modal-body .tips {
  margin: 20px 0;
}

.modal_card .modal-body .current_city {
  display: flex;
  align-items: center;
}

.modal_card .modal-body .current_city .city_label {
  display: inline-block;
  border-radius: 4px;
  border: 1px solid var(--primaryColor);
  margin: 0 8px;
  padding: 8px 24px;
  color: var(--primaryColor);
  font-size: 16px;
  line-height: 22px;
}

.modal_card .modal-body .tips p {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}

.modal_card .modal-body .city_radio_list {
  margin: 30px 0;
}

.modal_card .modal-body .city_radio_list .radio_item label .label_text {
  padding: 8px 24px;
}

.modal_card .modal-body .city_tip_text {
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}


/* 灰色提示框 */
.toast {
  top: 50%;
  left: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  padding: 12px 24px;
  z-index: 9999;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  opacity: 1;
  flex-basis: auto;
  max-width: 350px;
  font-size: 14px;
  line-height: 32px;
  border: 0;
}

.toast.in {
  -webkit-animation-name: contentZoomIn;
  animation-name: contentZoomIn;
}

@-webkit-keyframes contentZoomIn {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes contentZoomIn {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.sidebar_container {
  position: fixed;
  right: -160px;
  top: 50%;
  z-index: 101;
  transform: translateY(-50%);
  transition: all 0.5s;
  width: 42px;
  border-radius: 4px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.16));
  background: #fff;
}

.sidebar_container.show {
  animation-name: sidebarContainerShow;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

@keyframes sidebarContainerShow {
  0% {
    right: -80px;
  }

  70% {
    right: 50px;
  }

  85% {
    right: 28px;
  }

  100% {
    right: 35px;
  }
}

.sidebar_li {
  position: relative;
  width: 42px;
  height: 42px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.sidebar_li .sidebar_li_icon,
.sidebar_li .sidebar_li_icon_hover {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.sidebar_li .sidebar_li_icon_hover {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.sidebar_li:hover .sidebar_li_icon_hover {
  opacity: 1;
}

.sidebar_li_back {
  height: auto;
}

.sidebar_li_back .sidebar_li_icon {
  overflow: hidden;
  height: 0;
  transition: all 0.5s;
}

.sidebar_li_back_show {
  height: 42px;
}

.sidebar_li_back_show .sidebar_li_icon {
  height: 24px;
}

.sidebar_li_left {
  position: absolute;
  top: 0;
  right: 50px;
  z-index: 3;
  min-height: 42px;
  padding: 0 20px;
  white-space: nowrap;
  line-height: 42px;
  background-color: #fff;
  text-align: center;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  color: #333;
  font-size: 14px;
  transition: all 0.5s;
  display: none;
  opacity: 0;
}

.sidebar_li_left::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 10px solid #fff;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 14px;
  right: -7px;
}

.sidebar_li_left::before {
  content: "";
  width: 20px;
  height: 42px;
  position: absolute;
  top: 0px;
  right: -20px;
}

.contactus {
  width: 160px;
  text-align: center;
  border-radius: 8px;
  padding: 0;
  top: -84px;
}

.contactus .contactus_list {
  padding: 20px 0;
  border-bottom: 1px solid #f1f1f1;
}

.contactus .contactus_list:last-child {
  border-bottom: none;
}

.contactus::after {
  top: 98px;
}

.contactus::before {
  top: 83px;
}

.contactus_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 4px;
  color: var(--primaryColor);
}

.contactus_button {
  width: 88px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  background: var(--primaryColor);
  border-radius: 4px;
  margin: 0 auto 4px;
  transition: all 0.5s;
  border: 1px solid var(--primaryColor);
}

.icon_qq {
  width: 18px;
  height: 18px;
  background: url(../images/icon_QQ.png) no-repeat;
  background-size: 100% 100%;
}

.contactus_button:hover {
  color: var(--primaryColor);
  background: #fff;
}

.contactus_button:hover .icon_qq {
  background: url(../images/icon_QQ_active.png) no-repeat;
  background-size: 100% 100%;
}

.contactus_text {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #999;
}

.sidebar_li_qrcode {
  width: 180px;
  text-align: center;
  border-radius: 8px;
  padding: 0;
  top: -247px;
}

.sidebar_li_qrcode::after {
  top: 262px;
}

.sidebar_li_qrcode::before {
  top: 247px;
}

.sidebar_li_qrcode .qrcode_list {
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 18px 0;
}

.qrcode_list img {
  width: 100px;
  height: 100px;
}

.sidebar_li:hover .sidebar_li_left {
  display: block;
  opacity: 1;
  animation-name: sidebarLeft;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

.sidebar_li:hover .contactus .contactus_list {
  animation-name: sidebarContactusOne;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

.sidebar_li:hover .sidebar_li_qrcode .qrcode_list {
  animation-name: sidebarContactusTwo;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}

@keyframes sidebarLeft {
  0% {
    opacity: 0;
    right: 70px;
  }

  100% {
    opacity: 1;
    right: 52px;
  }
}

@keyframes sidebarContactusOne {
  0% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes sidebarContactusTwo {
  0% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0);
  }
}

.feedback_mask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 104;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all .5s;
}

.feedback_mask.feedback_none {
  display: none;
}

.feedback_container {
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -373px 0 0 -270px;
  transition: transform .5s;
  z-index: 105;
  width: 540px;
  padding: 20px 30px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
}

.feedback_container.feedback_none {
  display:none;
}

.feedback_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #000;
}

.feedback_back {
  width: 38px;
  height: 38px;
  background: url(../images/close.png) no-repeat 0 0;
  cursor: pointer;
  background-size: 100% 100%;
  transition: all 0.5s;
}

.feedback_back:hover {
  transform: rotate(90deg);
}

.feedback_tip {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #999;
  margin-bottom: 8px;
}

.feedback_subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 18px;
}

.feedback_list {
  margin-bottom: 8px;
}

.feedback_label {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 4px;
}

.feedback_label span {
  color: #ff0008;
}

.feedback_input,
.feedback_textarea {
  width: 100%;
  height: 50px;
  line-height: 48px;
  background: #ffffff;
  border: 1px solid #f1f1f1;
  box-sizing: border-box;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  padding: 0 12px;
}

.feedback_textarea {
  height: 120px;
  margin-bottom: 10px;
}

.feedback_code {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.feedback_code .feedback_input {
  width: 240px;
  margin-right: 13px;
}

.feedback_code img {
  width: 50px;
  cursor: pointer;
}

.feedback_button {
  width: 100%;
  height: 60px;
  color: #fff;
  line-height: 60px;
  background: var(--primaryColor);
  transition: all 0.5s;
  border-radius: 8px;
}

.feedback_button:hover {
  background: var(--activeColor);
}

.contrast_right_wrapper {
  position: fixed;
  right: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 105;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.5s;
  display: flex;
  justify-content: flex-end;
}

.contrast_right_container {

  position: fixed;
  right: 0;
  top: 0px;

  height: 100%;

  z-index: 106;

  display: flex;

  align-items: center;

  transition: all 0.5s;

}

.contrast_right_main {
  background: #fff;

  height: 100%;

  width: 500px;

  display: flex;

  flex-direction: column;

  box-shadow: 0 0 8px rgb(0 0 0 / 6%);
}

.contrast_right_icon {
  width: 24px;

  height: 60px;

  background: #ffffff;

  border-radius: 10px 0px 0px 10px;

  display: flex;

  justify-content: center;

  align-items: center;

  cursor: pointer;

  box-shadow: 0 0 8px rgb(0 0 0 / 6%);
}

.contrast_right_icon img {
  transition: all 0.5s;
}

.contrast_right_container.hide .contrast_right_icon img {
  transform: rotate(180deg);
}

.contrast_right_container.hide {
  transform: translateX(100%);
}

.contrast_right_wrapper.hide {
  display: none;
}

.contrast_right_header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 15px 20px;

  border-bottom: 1px solid #ddd;
}

.contrast_right_header.active {
  animation-name: activeMap;

  animation-duration: 1s;

  animation-timing-function: ease-in-out;
}

.contrast_right_header_img {
  width: 50px;

  height: 50px;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-right: 10px;

  border-radius: 50%;

  overflow: hidden;

  background: var(--primaryColor);
}

.contrast_right_header_center {
  margin-right: 10px;

  flex: 1;
}

.contrast_right_header_name {
  font-weight: 500;

  font-size: 18px;

  line-height: 24px;

  color: #000;
}

.contrast_right_header_text {
  font-weight: 500;

  font-size: 16px;

  line-height: 24px;

  color: #bdb6ce;
}

.contrast_right_header_price {
  font-weight: 500;

  font-size: 22px;

  line-height: 30px;

  color: #f00;
}

.contrast_right_header_price span {
  font-size: 14px;
}

.contrast_right_sort {
  padding: 8px;

  border-bottom: 1px solid #ddd;

  display: flex;

  align-items: center;

  justify-content: center;
}

.contrast_right_list {
  flex: 1;

  width: 100%;

  overflow: auto;
}

.contrast_right_item {
  padding: 15px 20px;

  display: flex;
}

.contrast_right_item_img {
  width: 120px;

  height: 90px;

  border-radius: 8px;

  overflow: hidden;

  margin-right: 12px;
}

.contrast_right_item_right {
  flex: 1;
}

.contrast_right_item_name {
  font-weight: 500;

  font-size: 16px;

  line-height: 24px;

  color: #000;

  margin-bottom: 8px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.contrast_right_item_name .status {
  display: inline-block;

  padding: 0 6px;

  height: 26px;

  line-height: 26px;

  font-weight: 500;

  font-size: 14px;

  color: #ffffff;

  border-radius: 4px;

  background: var(--activeColor);
}

.contrast_right_item_text {
  font-weight: 500;

  font-size: 14px;

  line-height: 24px;

  color: #999;

  margin-bottom: 8px;
}

.contrast_right_item_price {
  font-weight: 600;

  font-size: 18px;

  line-height: 25px;

  color: #f00;
}

.contrast_right_item_price span {
  font-weight: 500;

  font-size: 14px;
}

.contrast_right_item_tel {
  font-weight: 500;

  font-size: 14px;

  line-height: 19px;

  color: var(--primaryColor);

  display: flex;

  align-items: center;
}

.contrast_right_item_tel img {
  margin-right: 6px;

  width: 14.6px;

  height: 14.6px;
}

.contrast_right_item.store .contrast_right_item_name,
.contrast_right_item.store .contrast_right_item_text {
  margin-bottom: 2px;
}

.contrast_right_item.store .contrast_right_item_text {
  line-height: 19px;
}

.contrast_right_header_title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}

.contrast_right_header_button {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #999;
  cursor: pointer;
}

.contrast_right_header_button_cancel {
  color: var(--primaryColor);
}

.contrast_right_header_button.hide {
  display: none;
}

.contrast_checkbox_container {
  display: flex;
  align-items: center;
}

.contrast_checkbox input {
  display: none;
}

.contrast_checkbox label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  border-radius: 50%;
  margin-right: 6px;
}

.contrast_checkbox input:checked+label::before {
  background: var(--primaryColor) url(../images/true_icon.png) no-repeat center center/16px 12px;
}

.contrast_footer {
  text-align: center;
  padding: 20px 0;
}

.contrast_footer_button {
  width: 209px;
  margin: 0 auto;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--primaryColor);
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .5s;
}

.contrast_footer_button:hover {
  background: var(--activeColor);
}

.contrast_footer_button.hide {
  display: none
}

.contrast_right_sort .contrast_right_sort_li {

  color: #333333;

  position: relative;

  font-weight: 500;

  font-size: 18px;

  line-height: 27px;

  cursor: pointer;

  transition: all .5s;

  margin: 0 20px;

  padding: 8px 0;

}



.contrast_right_sort .contrast_right_sort_li::after {

  content: '';

  display: block;

  position: absolute;

  bottom: -6px;

  left: 0;

  width: 0;

  height: 4px;

  border-radius: 2px;

  background-color: var(--secondaryColor);

  transition: all .5s;

}



.contrast_right_sort .contrast_right_sort_li.active {

  color: var(--secondaryColor);

}



.contrast_right_sort .contrast_right_sort_li.active::after {

  width: 100%;

}

.consult_container {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 101;
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 4px 0px 0px 0px;
  background: var(--primaryColor);
  transition: all .5s;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  padding-left: 20px;
  animation-name: consultShow;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

.consult_container:hover {
  background: var(--activeColor);
}

.consult_container img {
  margin-right: 5px;
}

@keyframes consultShow {
  0% {
    right: -180px;
  }

  100% {
    right: 0;
  }
}



.bigPic {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);

  padding: 20px;
  display: none;
}

.bigPic_main {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.bigPic_close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 60px;
  height: 60px;
  background: url(../images/bigPic_close_icon.png) no-repeat center center/contain;
}

.bigPic .bigPic_content {
  display: flex;
  flex: 1;
  align-items: center;
  width: 100%;
}

.bigPic .bigPic_content .bigPic_content_c {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.bigPic .bigPic_content .bigPic_content_c .bigPic_Top {
  height: 100%;
}

.bigPic .bigPic_content .bigPic_content_c .bigPic_Top .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bigPic .bigPic_content .bigPic_content_c .bigPic_Top .swiper-slide img {
  display: none;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.bigPic .bigPic_content .bigPic_content_c .bigPic_Top .swiper-slide.swiper-slide-active img {
  display: block;
}

.bigPic .bigPic_content .swiper-button {
  margin: 0 50px;
  position: static;
  color: #fff;
}

.bigPic_describe {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.bigPic_describe .bigPic_name {
  color: #fff;
  font-size: 20px;
  margin-right: 20px;
}

.bigPic_describe .bigPic_pagination {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  width: auto;
}

.bigPic .bigPic_footer {
  position: relative;
  margin: 0 auto 15px;
  width: 798px;
  height: 80px;
  overflow: hidden;
}

.bigPic .bigPic_footer .swiper-slide {
  cursor: pointer;
  position: relative;
}

.bigPic .bigPic_footer .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bigPic .bigPic_footer .swiper-slide .overly {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .5;
  filter: Alpha(opacity=50);
}

.bigPic .bigPic_footer .swiper-slide-thumb-active .overly {

  display: none;

}

/* map */
.matching_container {
  margin: 30px 15px;
  border-radius: 16px;
  height: 360px;
  overflow: hidden;
  position: relative;
}

.matching_container .address_main {
  margin: 0;
  border-radius: 16px;
  height: 360px;
  overflow: hidden;
}

.matching_container .tabBox_container {
  position: absolute;
  top: 20px;
  right: 50px;
  bottom: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  width: 420px;
}

.matching_container .tabBox_tab {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: #f5f7fa;

}

.matching_container .tabBox_tab div {
  position: relative;
  min-width: 70px;
  text-align: center;
  padding: 0 10px;
  line-height: 40px;
  transition: all .5s;
  color: #000;
  cursor: pointer;
}

.matching_container .tabBox_tab div::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--primaryColor);
  transition: all .5s;
  border-radius: 3px;
  overflow: hidden;
}

.matching_container .tabBox_tab div.active,
.matching_container .tabBox_tab div:hover {
  color: var(--primaryColor);
  background: #fff;
}

.matching_container .tabBox_tab div.active::before,
.matching_container .tabBox_tab div:hover::before {
  top: 0;
}

.matching_container .tabBox_subtab {
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}

.matching_container .tabBox_subtab::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 1px;
  width: 100%;
  background: #ddd;
  transition: all .5s;
  border-radius: 3px;
  overflow: hidden;
}

.matching_container .tabBox_subtab div {
  position: relative;
  text-align: center;
  line-height: 40px;
  transition: all .5s;
  color: #000;
  cursor: pointer;
  margin-right: 30px;
}

.matching_container .tabBox_subtab div::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 3;
  height: 2px;
  width: 100%;
  background: var(--activeColor);
  transition: all .5s;
  border-radius: 3px;
  overflow: hidden;
}

.matching_container .tabBox_subtab div.active,
.matching_container .tabBox_subtab div:hover {
  color: var(--activeColor);
}

.matching_container .tabBox_subtab div.active::before,
.matching_container .tabBox_subtab div:hover::before {
  bottom: 0;
}

.matching_container .tab_address_list {
  margin: 0 30px;
  padding: 25px 0;
  border-bottom: 1px dashed #efefef;
  display: flex;
  cursor: pointer;
  transition: background .5s;
}


.tab_address_list .icon_fixed {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  background-image: url(../images/icon_fixed.png);
  background-size: 100% 100%;
}
.icon_fixed_map {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  background-image: url(../images/icon_fixed.png);
  background-size: 100% 100%;
  transition: all .5s;
  cursor: pointer;
}
.icon_fixed_map:hover,.icon_fixed_map.active{
  z-index: 3;
  animation-name: iconFixedMap;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  background-image: url(../images/icon_fixed_active.png);
}
.icon_fixed_map:hover{
  z-index: 4;
}
@keyframes iconFixedMap {
  0%{
    transform: translateY(0px);
  }
  60%{
    transform: translateY(-10px);
  }
  100%{
    transform: translateY(0px);
  }
}
.tab_address_list .tab_address_list_right {
  flex: 1;
  box-sizing: border-box;
  font-size: 12px;
  padding:0 10px;
}

.tab_address_list .tab_address_list_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  line-height: 18px;
}

.tab_address_list .tab_address_list_header_name {
  font-size: 14px;
}

.tab_address_list .tab_address_list_address {
  padding: 5px 0;
  color: #aeaeae;
  line-height: 20px;
}

.matching_container .tab_address_list:hover,.matching_container .tab_address_list.active{
  background: #f5f7fa;
}
.matching_container .tab_address_list.active .icon_fixed{
  animation-name: iconFixedMap;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  background-image: url(../images/icon_fixed_active.png);
}

.matching_container .tab_address_list.active .tab_address_list_header{
  color: var(--activeColor);
}
.matching_container .tabBox{
  flex: 1;
  overflow: auto;
}
.nullSupport{
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
}
.filter_item_subcontent {
    display: none;
    flex-wrap: wrap;
    margin: -10px 0 15px 98px;
    font-size: 14px;
    border: 1px solid #ddd;
    padding-right: 4px;
    border-radius: 4px;
    transition: all .5s;
    transform: scale(0);
    transform-origin: 0 0;
}

.filter_item_subcontent div {
    padding: 4px;
    margin-left: 8px;
    color: #000;
    transition: all .5s;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

    .filter_item_subcontent div.active, .filter_item_subcontent div:hover {
        color: var(--primaryColor);
        border-color: var(--primaryColor);
    }

.filter_item_subcontent.show {
    display: inline-flex;
    animation-name: filterSubconent;
    animation-fill-mode: forwards;
    animation-duration: .5s;
}
.search_result {
    position: absolute;
    display: none;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
    padding: 5px 0;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.16));
}

    .search_result a {
        display: block;
        line-height: 28px;
        color: #000;
        font-size: 14px;
        padding: 0 8px;
        transition: all .5s;
    }

        .search_result a:hover {
            background-color: var(--primaryColor);
            color: #fff;
        }

.null_result_container {
    width: 100%;
    padding: 100px 0;
    text-align: center;
}

.null_result {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

    .null_result i {
        width: 30px;
        height: 30px;
        background-image: url(../images/null_tip_icon.png);
        background-size: 100% 100%;
        margin-right: 10px;
    }

.null_result_none {
    display: none;
}

.house_information_container {
    margin: 25px 15px;
    background: #F9F2EF;
    border-radius: 4px;
    padding: 25px 35px;
    font-size: 16px;
    line-height: 26px;
    color: #E7522F;
}

.house_information_p1_buttom {
    margin-bottom: 25px;
}

.house_information_container2 {
    margin: 30px 50px;
}

.house_information_item {
    display: flex;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 40px;
}

.house_information_item_title {
    margin-right: 56px;
}

.house_information_item_main {
    flex: 1;
    color: #000;
}

.house_information_subitem {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
}

.house_information_subitem_left {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.house_information_subitem_right {
    width: 50%;
    display: flex;
    align-items: flex-start;
}

.house_information_subitem_title {
    color: #999;
    margin-right: 10px;
    width: 65px;
    text-align: center;
}

.house_information_subitem_main {
    flex: 1;
}

@keyframes filterSubconent {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

    .closeDiv {
        width: 20px;
        height: 20px;
        border: 1px solid white;
        color: white;
        text-align: center;
        line-height: 20px;
        font-size: larger;
        cursor: pointer;
        margin-top: -10px;
        margin-right: 90px;
    }

    .txtTel {
        width: 205px;
        border: none;
        margin-top: 10px;
        margin-left: 10px;
        font-size: 16px;
        outline: none;
    }

    .btnCode {
        background-color: #9b258b;
        color: white;
        border-radius: 20px;
        border: none;
        font-size: 16px;
        height: 30px;
        width: 110px;
        cursor: pointer;
    }

    .txtCode {
        width: 110px;
        border: none;
        margin-top: 10px;
        margin-left: 10px;
        font-size: 16px;
        outline: none;
    }

    .btnAddFangSearch {
        background-color: #9b258b;
        color: white;
        border-radius: 20px;
        border: none;
        font-size: 16px;
        height: 30px;
        width: 100px;
        cursor: pointer;
    }

    .MainDiv2 {
        height: 43px;
        width: 560px;
        background-color: white;
        border-radius: 20px;
        float: right;
        margin-top: 13px;
    }

    .MainDiv3 {
        font-size: 39px;
        color: white;
        font-weight: bold;
        float: left;
        margin-top: 4px;
    }

    .MainDiv1 {
        width: 1024px;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .bottomFix {
        width: 100%;
        position: fixed;
        bottom: 0px;
        height: 60px;
        margin-left: 0px;
        padding: 15px;
        z-index: 1098;
        background-image: url(../images/bottomDiv.jpg);
        border-radius: 8px;
        display: none;
    }


/* 祝福 */
.blessing {
    width: 38px;
    background-color: #B11C21;
    position: fixed;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    z-index: 101;
    cursor: pointer;
    transition: all .2s;
}

    .blessing.show {
        left: 0;
    }

    .blessing.hide {
        left: -80px;
    }

    .blessing .blessing_text {
        margin: 20px 0 42px 0;
        display: inline-block;
        width: 14px;
        font-size: 14px;
        color: #FFFFFF;
        position: relative;
        z-index: 1;
    }

    .blessing::before {
        content: '';
        display: block;
        position: absolute;
        width: 41px;
        height: 30px;
        left: 0;
        top: 0;
        background: url(../images/blessing_btn_t.png) no-repeat center center / contain;
        z-index: 0;
    }

    .blessing::after {
        content: '';
        display: block;
        position: absolute;
        width: 49px;
        height: 42px;
        left: 0;
        bottom: 0;
        background: url(../images/blessing_btn_b.png) no-repeat center center / contain;
        z-index: 0;
    }

.blessing_container {
    position: fixed;
    width: 260px;
    height: 380px;
    left: -300px;
    bottom: 0;
    padding: 20px;
    z-index: 101;
    background: url(../images/blessing_bg.png) no-repeat top center/ 100%;
    transition: all .2s;
}

    .blessing_container.show {
        left: 0;
    }

    .blessing_container.hide {
        left: -300px;
    }

    .blessing_container::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 76px;
        background: url(../images/blessing_t.png) no-repeat center center/contain;
        z-index: 1;
        pointer-events: none;
    }

    #blessing_container_agent::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 260px;
        height: 60px;
        background: url(../images/blessing_b.png) no-repeat center center/contain;
        z-index: 1;
        pointer-events: none;
    }
    .blessing_container .blessing_close_btn {
        position: absolute;
        top: 7px;
        right: 8px;
        width: 20px;
        height: 20px;
        background: url(../images/blessing_close.png) no-repeat center center/contain;
        z-index: 2;
        cursor: pointer;
    }

.blessing_content {
    width: 220px !important;
    height: 340px !important;
    overflow: hidden;
    border: none !important;
}

    .blessing_content .blessing_item {
        padding: 4px;
        border-bottom: 1px solid #F8F8FE;
    }

        .blessing_content .blessing_item .item_top {
            display: flex;
            margin-bottom: 4px;
        }

            .blessing_content .blessing_item .item_top .blessing_avatar {
                flex-shrink: 0;
                width: 32px;
                height: 40px;
                border-radius: 4px;
                overflow: hidden;
                margin-right: 5px;
            }

                .blessing_content .blessing_item .item_top .blessing_avatar img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

            .blessing_content .blessing_item .item_top .blessing_agent_infor {
                flex: 1;
            }

            .blessing_content .blessing_item .item_top .blessing_agent_name {
                flex-shrink: 0;
                font-size: 14px;
                line-height: 20px;
                font-weight: 500;
                color: #333;
                margin-right: 4px;
                margin-bottom: 4px;
            }

            .blessing_content .blessing_item .item_top .blessing_agent_store {
                font-size: 12px;
                line-height: 20px;
                color: #666666;
                margin-bottom: 4px;
            }

            .blessing_content .blessing_item .item_top .blessing_time {
                font-size: 12px;
                line-height: 14px;
                color: #999999;
            }

    .blessing_content .content_box {
        display: inline-block;
        padding: 4px 8px;
        border-radius: 4px;
        background-color: #F5F7FA;
        font-size: 12px;
        color: #333;
        margin-bottom: 6px;
    }

        .blessing_content .content_box img {
            display: inline-block;
            width: 60px;
            height: 40px;
            object-fit: cover;
            cursor: pointer;
        }

        .blessing_content .content_box .video_card {
            position: relative;
        }

            .blessing_content .content_box .video_card::after {
                content: '';
                display: block;
                width: 22px;
                height: 22px;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                background: url(../images/video_icon.png) no-repeat center center/contain;
                cursor: pointer;
            }

    .blessing_content .item_b {
        display: flex;
        justify-content: flex-end;
    }

        .blessing_content .item_b .likes {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
        }

            .blessing_content .item_b .likes::before {
                content: '';
                display: block;
                width: 12px;
                height: 12px;
                background: url(../images/like_icon.png) no-repeat center center/contain;
                margin-right: 3px;
            }

            .blessing_content .item_b .likes.active::before {
                background: url(../images/like_icon_active.png) no-repeat center center/contain;
            }

            .blessing_content .item_b .likes .num {
                font-size: 12px;
                color: #666666;
            }

.viewer-toolbar {
    display: flex;
    justify-content: center;
}

    .viewer-toolbar .viewer-prev,
    .viewer-toolbar .viewer-play,
    .viewer-toolbar .viewer-next {
        display: none;
    }
.margin_l_20 {
    margin-left: 20px;
}
/* 售罄 */
.stateout {
    z-index: 101;
    position: absolute;
    left: 650px;
    width: 273px;
    height: 207px;
    background: url(../images/picout.png) no-repeat;
}
.rentstateout {
    z-index: 101;
    position: absolute;
    left: 650px;
    width: 273px;
    height: 207px;
    background: url(../images/rentpicout.png) no-repeat;
}
.house_None {
    display: none;
}
.zuhouse_None {
    display: none;
}
.first_None {
    display: none;
}
.label_residence2 {
    background-color: #377e1e;
    border-color: #377e1e;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    padding: 6px;
    border-radius: 4px;
    margin-bottom: 22px;
}

.label_villa2 {
    background-color: #f9b000;
    border-color: #f9b000;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    padding: 6px;
    border-radius: 4px;
    margin-bottom: 22px;
}

.label_office2 {
    background-color: #4283ff;
    border-color: #4283ff;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    padding: 6px;
    border-radius: 4px;
    margin-bottom: 22px;
}

.label_apartment2 {
    background-color: #11c3c5;
    border-color: #11c3c5;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    padding: 6px;
    border-radius: 4px;
    margin-bottom: 22px;
}

.label_sale2 {
    background-color: #e32785;
    border-color: #e32785;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    padding: 6px;
    border-radius: 4px;
    margin-bottom: 22px;
}


.content_item_history_title {
    display: flex;
    justify-content: space-between;
}
.content_item .content_item_history_title {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
}

.content_item_title_history_more_btn {
    font-size: 16px;
    color: #000;
    cursor: pointer;
    margin-right: 23px;
    height: 30px;
    border-radius: 4px;
    color: #fff;
    background: var(--primaryColor);
}