/* Keep table column width fixed so swiper cannot expand the layout */
table.main {
  table-layout: fixed;
  width: 1200px;
  min-width: 1200px;
  max-width: none;
}
table.main table {
  table-layout: fixed;
  width: 100%;
}
table.main td.profile {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Listing view — Gamway-style district layout */
.estate-list {
  padding: 0 0 30px;
  margin-top: 10px;
}
.estate-list-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  overflow: hidden;
}
.estate-sidebar {
  flex: 0 0 100%;
  max-width: 100%;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 0 12px;
  margin-bottom: 16px;
}
.estate-menu-title {
  margin: 0 0 0;
  padding: 14px 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background: #e2540a;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.estate-district-nav {
  display: block;
}
.estate-district-group {
  border-top: 1px solid #e0e0e0;
}
.estate-district-group-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: background-color .15s ease, color .15s ease;
}
a.estate-district-group-link,
a.estate-district-group-link:link,
a.estate-district-group-link:visited {
  color: #000;
}
.estate-district-group.is-active > .estate-district-group-link,
a.estate-district-group-link:hover {
  background: #ffffff;
  color: #e2540a;
  text-decoration: none;
}
.estate-district-arrow {
  font-size: 22px;
  line-height: 1;
  color: #aaa;
}
.estate-district-group.is-active .estate-district-arrow,
.estate-district-group-link:hover .estate-district-arrow {
  color: #e2540a;
  opacity: 1;
}
.estate-list-main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.estate-list-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  padding: 0 4px;
}
.estate-selected-title {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  color: #222;
  margin-top: 10px;
}
.estate-sort-form {
  margin: 0;
}
.estate-sort-select {
  min-width: 180px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
}
.estate-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 100%;
}
.estate-card {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.estate-card-img {
  flex: 0 0 120px;
  width: 120px;
  min-height: 120px;
  background-color: #e4e4e4;
  overflow: hidden;
}
.estate-card-img img {
  width: 100%;
  height: 150px;
  min-height: 120px;
  object-fit: cover;
  display: block;
}
.estate-card-body {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 14px 16px 12px;
  box-sizing: border-box;
}
.estate-card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.estate-card-title-wrap {
  flex: 1 1 180px;
  min-width: 0;
  max-width: 100%;
}
.estate-card-title-wrap h3 {
  margin: 0 0 4px;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
  line-height: 1.25;
}
.estate-card-title-wrap h3 a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}
.estate-card-title-wrap h3 a:hover {
  color: #e2540a;
}
.estate-card-address {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 15px;
  color: #666;
  word-break: break-word;
}
.estate-card-address-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.estate-card-badges {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-self: flex-end;
}
.estate-count-badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #f87300;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
a.estate-count-badge:not(.estate-count-badge-stack),
a.estate-count-badge:not(.estate-count-badge-stack):link,
a.estate-count-badge:not(.estate-count-badge-stack):visited {
  color: #fff;
}
.estate-count-badge:hover {
  background-color: #e86a00;
  color: #fff;
}
.estate-count-badge.estate-count-badge-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-width: 58px;
  padding: 6px 6px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e2540a;
  color: #e2540a;
}
.estate-count-badge.estate-count-badge-stack:hover {
  background-color: #fff5ef;
  color: #c94809;
}
.estate-count-badge-stack .estate-count-badge-label {
  font-size: 14px;
  font-weight: bold;
}
.estate-count-badge-stack .estate-count-badge-num {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-top: auto;
  padding-top: 2px;
}
.estate-count-badge-stack.is-empty {
  opacity: .55;
  pointer-events: none;
}
.estate-card-divider {
  margin: 12px 0 10px;
  border: 0;
  border-top: 1px solid #eee;
}
.estate-card-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px 8px;
}
.estate-meta-item {
  flex: 1 1 0;
  min-width: 0;
  max-width: 25%;
  padding-right: 0;
  box-sizing: border-box;
}
.profile .estate-card-meta .estate-meta-item p {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: normal;
  color: #888;
  line-height: 1.3;
  white-space: nowrap;
}
.profile .estate-card-meta .estate-meta-item span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #2a2a2a;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.estate-meta-item p {
  margin: 0 0 4px;
  font-size: 13px;
  color: #888;
}
.estate-meta-item span {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #2a2a2a;
  word-break: break-word;
}
.estate-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.estate-card-badges a,
.estate-card-badges .estate-count-badge-stack {
  position: relative;
  z-index: 2;
}
.estate-card-title-wrap a {
  position: relative;
}
.estate-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}
.estate-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
}
.estate-page-link.is-active,
.estate-page-link:hover {
  background: #e2540a;
  border-color: #e2540a;
  color: #fff;
}
.estate-page-ellipsis {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: #999;
}
.estate-list-layout .empty-msg {
  padding: 40px 20px;
  text-align: center;
  color: #666;
  font-size: 16px;
}

@media (min-width: 992px) {
  .estate-list-layout {
    flex-wrap: nowrap;
  }
  .estate-sidebar {
    flex: 0 0 280px;
    max-width: 280px;
    flex-shrink: 0;
    margin-bottom: 0;
    position: sticky;
    top: 10px;
  }
  .estate-list-main {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 300px);
    padding-left: 20px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .estate-card-img {
    flex: 0 0 150px;
    width: 150px;
    max-width: 150px;
    max-height: 150px;
    flex-shrink: 0;
  }
  .estate-card-body {
    max-width: calc(100% - 150px);
  }
}

@media (max-width: 767px) {
  .estate-selected-title {
    font-size: 20px;
  }
  .estate-list-main {
    max-width: 100%;
  }
  .estate-card {
    flex-wrap: wrap;
  }
  .estate-card-body {
    max-width: 100%;
  }
  .estate-card-title-wrap h3 {
    font-size: 22px;
    font-weight: 700;
  }
  .estate-card-meta {
    flex-wrap: wrap;
  }
  .estate-meta-item {
    flex: 1 1 50%;
    min-width: 0;
  }
  .estate-card-img {
    flex: 0 0 100%;
    width: 100%;
    min-height: 140px;
    border-bottom: 1px solid #eee;
  }
  .estate-card-img img {
    height: 140px;
    min-height: 140px;
  }
}

/* Detail view */
.estate-detail .estate-top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 5px 10px;
  background-color: #f9f9f9;
  border-bottom: 3px solid #e2540a;
  margin-top: 10px;
  margin-bottom: 15px;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.estate-detail .estate-hero {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  background-color: #fff;
  box-sizing: border-box;
  min-width: 0;
}
.estate-detail .estate-hero img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}
.estate-detail .estate-header {
  flex: 1 1 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  background-color: transparent;
  border-bottom: none;
  margin-bottom: 0;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (min-width: 768px) {
  .estate-detail .estate-top:has(.estate-hero) .estate-hero {
    flex: 0 1 42%;
    max-width: calc(42% - 10px);
  }
  .estate-detail .estate-top:has(.estate-hero) .estate-header {
    flex: 1 1 0;
    max-width: none;
  }
}
.estate-detail .estate-top-map-trend {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #e8e8e8;
  box-sizing: border-box;
}
.estate-detail .estate-top-map-trend-split .estate-top-map,
.estate-detail .estate-top-map-trend-split .estate-top-trend {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
}
.estate-detail .estate-top-map-trend:not(.estate-top-map-trend-split) .estate-top-map,
.estate-detail .estate-top-map-trend:not(.estate-top-map-trend-split) .estate-top-trend {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
.estate-detail .estate-top-map,
.estate-detail .estate-top-trend {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  box-sizing: border-box;
  min-width: 0;
}
.estate-detail .propsubtitle {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #222;
  text-align: left;
}
.estate-detail .estate-top-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  border-radius: 4px;
}
.estate-detail .estate-top-trend .property-trend-img {
  text-align: center;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.estate-detail .estate-top-trend .property-trend-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  .estate-detail .estate-top-map iframe {
    height: 250px;
  }
  .estate-detail .estate-top-map-trend-split .estate-top-trend {
    flex: 0 0 100%;
    width: 100%;
  }
  .estate-detail .estate-top-trend .property-trend-img {
    height: auto;
    min-height: 200px;
  }
}
.estate-detail .estate-header h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 6px;
  color: #000;
}
.estate-detail .estate-header h2 {
  font-size: 20px;
  color: #666;
  margin: 0 0 10px;
  font-weight: normal;
}
.estate-detail .estate-header .estate-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}
.estate-detail .estate-header .estate-address-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.estate-detail .estate-counts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.estate-detail .tablecontent {
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 1px solid #e8e8e8;
}
.estate-detail .tablecontent-title {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 14px;
  color: #222;
}
.estate-detail .tablecontent .estate-desc-content {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eee;
}
.estate-detail .tablecontent .content,
.estate-detail .tablecontent .tablecontent-detail {
  min-height: 0;
  height: auto;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.estate-detail .tablecontent .content {
  font-size: 17px;
  line-height: 1.5;
  color: #333;
}
.estate-detail .tablecontent .content-text.content-collapsed {
  max-height: 4.5em;
  overflow: hidden;
}
.estate-detail .tablecontent .content-more.is-hidden {
  display: none;
}
.estate-detail .tablecontent .content-text.content-expanded,
.estate-detail .tablecontent .content-text:not(.content-collapsed) {
  display: block;
  max-height: none;
  overflow: visible;
}
.estate-detail .tablecontent .content-more {
  display: inline-block;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: #e2540a;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
}
.estate-detail .tablecontent .content-more:hover {
  text-decoration: underline;
}
.estate-detail .estate-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 18px 0;
}
.estate-detail .estate-stat-item {
  flex: 1 1 0;
  min-width: 100px;
  padding: 14px 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  text-align: center;
}
.estate-detail .estate-stat-num {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  line-height: 1.2;
}
.estate-detail .estate-stat-num.estate-stat-text {
  font-size: 22px;
  word-break: break-word;
}
.estate-detail .estate-stat-lbl {
  margin-top: 6px;
  font-size: 14px;
  color: #888;
}
.estate-detail .tablecontent-detail {
  margin-top: 4px;
}
.estate-detail .estate-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.estate-detail .estate-info-table th,
.estate-detail .estate-info-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  text-align: left;
}
.estate-detail .estate-info-table th {
  width: 28%;
  min-width: 100px;
  color: #888;
  font-weight: normal;
  white-space: nowrap;
}
.estate-detail .estate-info-table td {
  color: #222;
}
.estate-detail .estate-gallery {
  padding: 10px 0 20px;
  text-align: left;
}
.estate-detail .estate-gallery .gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.estate-detail .estate-gallery .gallery-item {
  width: calc(33.333% - 10px);
  text-align: center;
}
.estate-detail .estate-gallery .gallery-item a {
  display: block;
  background-color: #f3f3f3;
  overflow: hidden;
  padding: 2px;
}
.estate-detail .estate-gallery .gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}
.estate-detail .estate-gallery .gallery-item .picdesc {
  font-size: 12px;
  padding: 4px 2px;
  color: #555;
}
.estate-detail .estate-more-link {
  text-align: center;
  padding: 15px 0 10px;
}
.estate-detail .estate-more-link a {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #e2540a;
  border-radius: 4px;
  color: #e2540a;
  text-decoration: none;
  font-size: 15px;
}
.estate-detail .estate-more-link a:hover {
  background-color: #e2540a;
  color: #fff;
}

@media (max-width: 767px) {
  .estate-detail .estate-header h1 {
    font-size: 26px;
  }
  .estate-detail .estate-header h2 {
    font-size: 17px;
  }
  .estate-detail .estate-header .estate-address {
    font-size: 16px;
  }
  .estate-detail .tablecontent .content {
    font-size: 16px;
  }
  .estate-detail .estate-stat-num {
    font-size: 24px;
  }
  .estate-detail .estate-info-table {
    font-size: 15px;
  }
  .estate-detail .estate-info-table th {
    width: 32%;
  }
  .estate-detail .estate-gallery .gallery-item {
    width: calc(50% - 10px);
  }
  .estate-detail .estate-gallery .gallery-item img {
    height: 120px;
  }
}

/* Utility classes for detail sections */
.estate-detail .d-none { display: none !important; }
.estate-detail .d-block { display: block; }
.estate-detail .d-flex { display: flex; }
.estate-detail .flex-wrap { flex-wrap: wrap; }
.estate-detail .justify-content-between { justify-content: space-between; }
.estate-detail .align-items-end { align-items: flex-end; }
.estate-detail .justify-content-center { justify-content: center; }
.estate-detail .justify-content-md-start { justify-content: flex-start; }
@media (min-width: 768px) {
  .estate-detail .d-sm-block { display: block !important; }
  .estate-detail .d-sm-none { display: none !important; }
  .estate-detail .justify-content-md-start { justify-content: flex-start; }
}

/* Related properties swiper */
.estate-detail .estate-section {
  padding: 10px 0 20px;
  text-align: left;
}
.estate-detail .related-props {
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  max-width: 100%;
}
.estate-detail .myswiper2 {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 28px;
}
.estate-detail .myswiper2 .swiper-wrapper {
  align-items: stretch;
}
.estate-detail .myswiper2 .prop_border {
  position: relative;
  margin: 6px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 3px 3px -2px rgba(0,0,0,.2), 0 3px 4px 0 rgba(0,0,0,.14), 0 1px 8px 0 rgba(0,0,0,.12);
}
.estate-detail .myswiper2 .swiper-slide {
  width: 290px;
  text-align: left;
}
.estate-detail .myswiper2 .swiper-slide .photo {
  cursor: pointer;
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.estate-detail .myswiper2 .swiper-slide .detail {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}
.estate-detail .myswiper2 .swiper-slide .bname {
  margin: 0 0 10px;
  font-size: 21px;
  color: #0c0c0c;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.estate-detail .myswiper2 .swiper-slide .dist {
  margin-bottom: 5px;
  font-size: 16px;
  color: #666;
  font-weight: normal;
}
.estate-detail .related-props .myswiper2 .property_special {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  color: #111;
  margin-bottom: 5px;
  font-size: 16px;
  min-height: 21px;
  line-height: 21px;
  font-weight: normal;
}
.estate-detail .related-props .myswiper2 .property_special div {
  padding-right: 15px;
}
.profile .estate-detail .related-props .myswiper2,
.profile .estate-detail .related-props .myswiper2 .detail {
  font-weight: normal;
  line-height: normal;
  color: #333;
}
.estate-detail .myswiper2 .swiper-slide .price,
.estate-detail .myswiper2 .item.price {
  margin: 0;
  font-size: 22px;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 6px;
  color: #d10000;
  font-weight: bold;
}
.estate-detail .myswiper2 .price span,
.estate-detail .myswiper2 .item.price span {
  font-size: 14px;
  color: #707070;
  font-weight: normal;
}
.estate-detail .related-props .myswiper2 .item.price .gf,
.estate-detail .related-props .myswiper2 .item.price span.gf {
  color: #00b11f !important;
  font-weight: normal;
}
.estate-detail .myswiper2 .selectimg {
  padding: 3px 5px;
  background-color: #fd7011;
  position: absolute;
  margin: 5px;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
}
.estate-detail .related-props .myswiper2 .swiper-pagination {
  display: block;
  bottom: 0;
}
.estate-detail .related-props .myswiper2 .swiper-button-next,
.estate-detail .related-props .myswiper2 .swiper-button-prev {
  top: 35%;
  margin-top: 0;
  width: 32px;
  height: 32px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.45);
  z-index: 2;
  cursor: pointer;
}
.estate-detail .related-props .myswiper2 .swiper-button-prev {
  left: 0;
}
.estate-detail .related-props .myswiper2 .swiper-button-next {
  right: 0;
}

/* Floor plan */
.estate-detail .floorplan .d-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: flex-start;
}
.estate-detail .floorplan .planlist {
  border: 1px solid #c3c3c3;
  text-align: center;
  margin: 2px;
  padding: 5px;
  color: #303030;
  font-size: 15px;
  border-radius: 6px;
}
.estate-detail .floorplan .planlist img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* Transaction records */
.estate-detail .tran .table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.estate-detail .tran .head td:nth-child(1),
.estate-detail .tran tr.tran-row td:nth-child(1) {
  width: 11%;
}
.estate-detail .tran .head td:nth-child(2),
.estate-detail .tran tr.tran-row td:nth-child(2) {
  width: 44%;
  line-height: 1.45;
  word-wrap: break-word;
}
.estate-detail .tran .head td:nth-child(3),
.estate-detail .tran tr.tran-row td:nth-child(3) {
  width: 16%;
}
.estate-detail .tran .head td:nth-child(4),
.estate-detail .tran tr.tran-row td:nth-child(4) {
  width: 12%;
}
.estate-detail .tran .head td:nth-child(5),
.estate-detail .tran tr.tran-row td:nth-child(5) {
  width: 17%;
}
.estate-detail .tran .head td {
  color: #7a7a7a;
  border-bottom: 2px solid #ff9b00;
  font-weight: bold;
  padding: 8px 6px;
}
.estate-detail .tran td {
  font-size: 15px;
  padding: 8px 6px;
}
.estate-detail .tran tr.tran-row {
  cursor: pointer;
}
.estate-detail .tran .tranitem {
  cursor: pointer;
}
.estate-detail .tran tr.tran-row:hover {
  background-color: #fff3e8 !important;
}
.estate-detail .tranprice {
  color: #bd0000;
}
.estate-detail .tranitem {
  padding: 5px;
  border-bottom: 1px solid #d5d5d5;
  cursor: pointer;
}
.estate-detail .tranitem .container-fluid {
  font-size: 17px;
  color: #000;
  text-decoration: none;
  display: block;
}
.estate-detail .tranitem .date {
  color: #858585;
}

@media (max-width: 767px) {
  .estate-detail .myswiper2 .swiper-slide {
    width: 260px;
  }
  .estate-detail .myswiper2 .swiper-slide .photo {
    height: 170px;
  }
}
