body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-color: #f3f4f6;
}

/* 自定义样式 */
.top-nav {
  background: linear-gradient(180deg, #cde8ff 0%, rgba(157, 214, 253, 0) 100%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-col-logo {
  flex: 0 0 auto;
}

.nav-col-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-col-login {
  flex: 0 0 auto;
  text-align: right;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
}

.custom-menu {
  display: flex;
  align-items: center;
  height: 60px;
  background: transparent;
}

.custom-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 60px;
  color: #606266;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  box-sizing: border-box;
}

.custom-menu-item.active {
  color: #409eff;
}

.custom-menu-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background-color: #fecb33;
}

.menu-text {
  font-family: "Source Han Sans", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
  font-size: 18px;
  color: #000000;
  white-space: nowrap;
}

.login-button {
  color: #666666;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 16px;
}

.login-button:hover {
  color: #409eff;
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item {
  color: #606266;
  font-size: 14px;
}

.breadcrumb-item a {
  color: #409eff;
  text-decoration: none;
}

.breadcrumb-separator {
  color: #c0c4cc;
  margin: 0 4px;
}

.divider {
  margin: 20px 0;
  background-color: #dcdfe6;
  border: none;
  height: 1px;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: #f3f4f6;
  margin-bottom: 45px;
}

.main-content {
  background: #f3f4f6;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-header-flex {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: stretch;
  width: 100%;
}

.property-images-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
}

.main-image-flex {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  min-height: 500px;
  max-height: 720px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
  background: #f5f5f5;
  position: relative;
}

.main-image-flex .media-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-flex img,
.main-image-flex video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.main-image-flex .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 10;
}

.main-image-flex .video-overlay .play-button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-image-flex .video-overlay .play-button::before {
  content: "▶";
  font-size: 20px;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: none;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.thumbnail-gallery-flex {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
}

.thumbnail {
  width: 114px;
  height: 68px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  flex-shrink: 0;
}

.thumbnail.active {
  border: 2px solid #ff5a36;
}

.thumbnail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  z-index: 2;
}

.thumbnail-prev {
  left: 12px;
}

.thumbnail-next {
  right: 12px;
}

.property-info-flex {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.property-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.price-info {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 25px;
}

.total-price {
  font-size: 25px;
  font-weight: 700;
  color: #e74c3c;
}

.total-price small {
  font-size: 18px;
}

.unit-price {
  font-size: 24px;
  font-weight: 600;
  color: #e74c3c;
  margin-left: 30px;
}

.unit-price small {
  font-size: 14px;
}

.price-label {
  font-size: 15px;
  color: #999;
}

.property-details {
  padding: 0 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.detail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 20px;
  position: relative;
}

.detail-item {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.detail-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 23px;
  background: #e5e6eb;
}

.detail-item .label {
  display: block;
  font-family: Source Han Sans;
  font-size: 22px;
  font-weight: normal;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0px;
  color: #222229;
}

.detail-item .value {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #333;
  line-height: 26px;
}

.detail-item .sub {
  font-size: 18px;
  color: #888889;
  font-family: Source Han Sans;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0px;
}

.property-attributes {
  margin-bottom: 15px;
}

.attr-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  font-size: 14px;
}

.attr-label {
  flex: 0 0 80px;
  text-align: center;
  color: #666666;
  font-family: "Source Han Sans", sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 36px;
  margin-right: 4px;
  white-space: nowrap;
  box-sizing: border-box;
  letter-spacing: 0;
}

.attr-label.two {
  display: inline-block;
  width: 4em;
  text-align: justify;
  text-align-last: justify;
  height: 36px;
}

.attr-label.three {
  letter-spacing: 10px;
}

.attr-label.four {
  letter-spacing: 0;
}

.attr-value {
  font-size: 18px;
  flex: 1;
  color: #333;
  font-weight: 500;
  min-width: 60px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.property-tags {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-family: Source Han Sans, sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 20px;
  letter-spacing: 0px;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #999999;
}

.property-tags .location-icon {
  font-size: 20px;
  margin-right: 8px;
  color: #999999;
}

.property-status {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
  font-size: 12px;
  flex-wrap: wrap;
}

.status-item {
  background: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  color: #666;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 14px;
  margin-bottom: 8px;
}

.update-time-row-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 0;
}

.update-time {
  color: #999;
  font-size: 14px;
}

.status-icons {
  display: flex;
  gap: 16px;
}

.status-icons .icon-btn {
  font-size: 20px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.primary-phone {
  background: linear-gradient(90deg, #84a2ff 9%, #3b82f6 95%);
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.primary-phone .icon {
  font-size: 18px;
  margin-right: 6px;
}

.primary-phone:hover {
  background: #357abd;
  color: #fff;
}

.outline {
  background: transparent;
  color: #3d3d3d;
  border: 1px solid #3d83f6;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
}

.property-features {
  padding: 25px;
  border-top: 1px solid #eee;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.property-features-title {
  display: flex;
  align-items: flex-end;
  font-size: 18px;
  color: #333;
  font-family: Source Han Sans, sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}

.property-features-title .feature-icon-img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  margin-bottom: -2px;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  font-size: 12px;
  color: #666;
}

.feature-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 4px;
}

.property-description {
  padding: 30px;
  border-top: 1px solid #eee;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.property-description h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.description-content {
  margin-bottom: 20px;
  line-height: 1.8;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.spec-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  white-space: nowrap;
}

.spec-label-1 {
  color: #666;
  font-family: Source Han Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

.spec-label {
  color: #666;
  font-family: Source Han Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: justify;
  text-align-last: justify;
  width: 80px;
  min-width: 80px;
  white-space: nowrap;
}

.spec-value {
  color: #333;
  font-weight: 500;
}

.spec-value.green {
  color: #28a745;
}

.spec-value.green-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 28px;
  background: #e6f9ed;
  color: #28a745;
  border: 2px solid #28a745;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  margin-left: 4px;
  padding: 0 12px;
  white-space: nowrap;
}

.location-section {
  padding: 30px;
  border-top: 1px solid #eee;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.location-section-title {
  display: flex;
  align-items: flex-end;
  font-size: 18px;
  color: #333;
  font-family: Source Han Sans, sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}

.location-section-title .feature-icon-img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  margin-bottom: -2px;
}

.location-info {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.location-row1 {
  display: flex;
  align-items: center;
  font-family: Source Han Sans;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  letter-spacing: 0px;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #999999;
}

.location-row1 .location-icon {
  font-size: 18px;
  margin-right: 8px;
}

.location-row2 {
  font-family: Source Han Sans;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  letter-spacing: 0px;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: rgba(0, 0, 0, 0.851);
  margin-left: 50px;
}

.map-container {
  position: relative;
  margin-bottom: 30px;
}

.map-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.navigation-btn {
  width: 30%;
  margin-top: 16px;
  background: #409eff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.nearby-facilities {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.facility-category {
  flex: 1;
  min-width: 0;
}

.facility-tabs {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.facility-tab {
  margin-left: 15px;
  width: 64px;
  height: 30px;
  opacity: 1;
  font-family: Source Han Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0px;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s;
}

.facility-tab.active {
  background: url("../images/traffic-bg.png") no-repeat center/cover, #fff;
  color: #666666;
  height: 30px;
  position: relative;
  z-index: 1;
}

.facility-tab:hover {
  background: #f0f9ff;
  /* color: #409EFF; */
}

.facility-tab.active:hover {
  background: #d8dce0;
  /* color: white; */
}

.facility-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
}

.facility-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 4px;
  vertical-align: middle;
}

.facility-name {
  flex: 1;
}

.facility-distance {
  margin-left: auto;
  color: #999;
}

.pet-friendly-label {
  margin-left: 15px;
  width: 64px;
  height: 30px;
  opacity: 1;
  font-family: Source Han Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0px;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 版权信息样式 */
.copyright-footer {
  background: #e7e7e7;
  padding: 30px 0;
  margin-top: 40px;
  text-align: center;
}

.copyright-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.copyright-links {
  margin-bottom: 15px;
}

.copyright-links a {
  color: #666666;
  text-decoration: none;
  margin: 0 10px;
}

.copyright-links a:hover {
  color: #409eff;
}

.copyright-text {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .property-header-flex {
    flex-direction: column;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nearby-facilities {
    flex-direction: column;
  }

  .facility-tabs {
    flex-wrap: wrap;
  }

  .thumbnail-gallery-flex {
    overflow-x: auto;
  }

  .thumbnail-nav {
    display: none;
  }
}

/* 浏览足迹页面样式 */
.browse-history-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
}

.browse-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.browse-history-header h2 {
  font-size: 24px;
  color: #333;
}

.clear-history-btn {
  background-color: #f56c6c;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.clear-history-btn:hover {
  background-color: #ff7875;
}

.browse-history-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.browse-history-item {
  display: flex;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  align-items: center;
  gap: 20px;
}

.browse-history-item-image {
  flex: 0 0 240px;
  height: 160px;
}

.browse-history-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.browse-history-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-start;
  height: 160px;
}

.browse-history-item-details h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}

.browse-history-item-info {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  color: #666;
}

.browse-history-item-info span {
  background-color: #f0f0f0;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
}

.browse-history-item-time {
  color: #999;
  font-size: 14px;
}

.browse-history-item-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: flex-start;
}

.view-details-btn,
.remove-history-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 14px;
}

.view-details-btn {
  background-color: #409eff;
  color: white;
}

.view-details-btn:hover {
  background-color: #66b1ff;
}

.remove-history-btn {
  background-color: #f56c6c;
  color: white;
}

.remove-history-btn:hover {
  background-color: #ff7875;
}

/* Tab 导航样式 */
.section-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #f5f5f5;
  padding: 10px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
}

.apartment-tab {
  display: inline-block;
  height: 30px;
  line-height: 32px;
  font-size: 16px;
  font-family: Source Han Sans, sans-serif;
  color: #666666;
  margin-right: 12px;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.apartment-tab:last-child {
  margin-right: 0;
}

.apartment-tab-active {
  background: url("../images/traffic-bg.png") no-repeat center/cover;
  color: #666666;
  font-weight: bold;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.03);
}

/* 写字楼页面专属房源配置item样式 */
.office-features-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-top: 10px;
  gap: 55px;
  justify-content: flex-start;
}
.office-features-grid .feature-item {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.back-to-top-btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  width: 72px;
  height: 72px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.back-to-top-text {
  color: #2a7bff;
  font-size: 15px;
}

.house-type-list {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 16px;
}
.house-type-item {
  border-radius: 8px;
  /* 默认无边框，选中态有 */
}
.house-type-item img {
  width: 180px;
  height: auto;
  border-radius: 6px;
  border: 1px solid #eee;
  display: block;
}
.house-type-item.selected {
  border: 2px solid #2a7bff;
  border-radius: 8px;
}
.house-type-name {
  text-align: center;
  margin-top: 8px;
  color: #333;
  font-size: 15px;
}
.gyxq-main-image-flex {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  min-height: 600px;
  max-height: 700px;
  height: 650px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
  background: #f5f5f5;
  position: relative;
}

.gyxq-main-image-flex img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
  display: block;
}

.xzl-main-image-flex {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  min-height: 400px !important;
  max-height: 520px !important;
  height: 500px !important;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
  background: #f5f5f5;
  position: relative;
}

.xzl-main-image-flex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 瀑布流容器 */
.waterfall-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  width: 100%;
}

.waterfall-flex-col {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .waterfall-container {
    flex-wrap: wrap;
  }

  .waterfall-flex-col {
    flex-basis: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .waterfall-container {
    flex-direction: column;
  }

  .waterfall-flex-col {
    flex-basis: 100%;
  }
}

.apartment-detail-main-image-flex {
  height: 690px !important;
}

.secondhand-main-image-flex {
  min-height: 250px !important;
  max-height: 420px !important;
  height: 700px !important;
}

.newhouse-main-image-flex {
  min-height: 250px !important;
  max-height: 420px !important;
  height: 450px !important;
}

.zhengzu-main-image-flex {
  min-height: 400px !important;
  max-height: 420px !important;
  height: 500px !important;
}

/* 视频缩略图样式 */
.video-thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail video {
  border-radius: 4px;
}

.video-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  pointer-events: none;
}

.video-thumbnail-play {
  color: white;
  font-size: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
