/* ===== 全局变量 ===== */
:root {
  --primary: #1F55DE;
  --primary-dark: #1a4bc4;
  --primary-light: #3b6de8;
  --accent: #F59E0B;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --bg-page: #F3F4F6;
  --bg-card: #FFFFFF;
  --border-light: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 顶部导航 ===== */
.topBg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  height: 72px;
  box-shadow: 0 2px 12px rgba(31, 85, 222, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}
.topBar {
  width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
}
.topBar h1.logo a {
  display: flex;
  align-items: center;
  height: 44px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 12px;
}
.topBar h1.logo a img {
  display: block;
  max-height: 36px;
  width: auto;
  image-rendering: auto;
}
ul.menuBar {
  height: auto;
  overflow: hidden;
  margin-left: 60px;
  min-width: 520px;
}
ul.menuBar li {
  float: left;
}
ul.menuBar li a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 500;
  padding: 0 22px;
  text-align: center;
  height: 72px;
  line-height: 72px;
  transition: var(--transition);
  position: relative;
}
ul.menuBar li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #fff;
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}
ul.menuBar li a:hover {
  background: transparent;
  color: #fff;
}
ul.menuBar li a:hover::after {
  width: 60%;
}
ul.menuBar li.current a {
  background: transparent;
  color: #fff;
}
ul.menuBar li.current a::after {
  width: 60%;
}
.loginBar {
  height: auto;
  overflow: hidden;
  min-width: 200px;
  margin-left: auto;
}
.loginBar .phone-num {
  display: block;
  float: left;
  height: 36px;
  line-height: 36px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.15);
  padding: 0 18px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ===== Banner ===== */
.banner {
  height: 560px;
  overflow: hidden;
  position: relative;
}
.banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(0,0,0,0.15));
  pointer-events: none;
  z-index: 5;
}
.banner .ban_c img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.banner .Left,
.banner .Right {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  top: 50%;
  margin-top: -24px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
  z-index: 10;
  transition: var(--transition);
}
.banner .Left:hover,
.banner .Right:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.08);
}
.banner .Left {
  left: 24px;
}
.banner .Right {
  right: 24px;
}
.bann_ext {
  position: relative;
}
.frontCover {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.frontCover li {
  float: none;
  width: 32px;
  height: 4px;
  padding: 0;
  background: rgba(255,255,255,0.4);
  color: #fff;
  overflow: hidden;
  margin-right: 0;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
}
.frontCover .open {
  background: #fff;
  width: 48px;
}
.slide {
  position: relative;
  width: 100%;
}
.ban_c {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ban_c img {
  width: 100%;
  height: 100%;
}

/* ===== 搜索区域 ===== */
.in-search-bg {
  background: #e1e1e1;
  padding: 20px 0px 10px 0px;
  height: 100px;
}
.in-search-box {
  width: 1000px;
  margin: 0 auto;
}
#tab2 {
  width: 685px;
  height: 40px;
  border-bottom: 0;
}
#tab2 ul {
  margin: 0;
  padding: 0;
}
#tab2 li {
  float: left;
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  background: #f2f2f2;
  color: #666;
  font-size: 14px;
}
#tab2 li.now {
  color: #fff;
  background: var(--primary);
  font-weight: bold;
  font-size: 14px;
}
.tablist {
  width: 685px;
  display: none;
}
.block {
  display: block;
}
.in-serTex,
.in-serBtn {
  display: block;
  float: left;
}
.in-serTex {
  width: 520px;
  padding: 0px 20px;
  background: #fff;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  border: none;
}
.in-serBtn {
  height: 45px;
  line-height: 45px;
  background: var(--primary);
  width: 120px;
  padding-left: 30px;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  border: none;
}
.in-serBtn:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ===== 数据统计区 ===== */
.hq {
  width: auto;
  background: linear-gradient(135deg, #1e40af 0%, var(--primary) 50%, var(--primary-light) 100%);
  height: 283px;
  overflow: hidden;
}
.hq .tit {
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #FFFFFF;
  font-size: 24px;
  padding-top: 20px;
}
.hq .con2 {
  height: 120px;
  padding-top: 20px;
  width: 1000px;
  margin: 0 auto;
}
.hq .con2 li {
  width: 260px;
  margin: 0 35px;
  float: left;
  height: 100px;
  background: #000000;
  opacity: 0.75;
  list-style: none;
  text-align: center;
  color: #FFFFFF;
  padding-top: 20px;
}
.hq .con2 a:hover li {
  background: #1F55DE;
  opacity: 0.75;
}
.hq .con2 li span {
  display: block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
  opacity: 1;
}
.hq .bcon {
  height: 50px;
  line-height: 50px;
  background: #cc9c3f;
  opacity: 0.75;
  bottom: 0;
  width: 100%;
  margin-top: 23px;
}
.hq .bcon .gcon {
  width: 1200px;
  margin: 0 auto;
  height: 50px;
  line-height: 50px;
}
#gcon2 {
  height: 50px;
  overflow: hidden;
}
.hq .bcon .gcon a {
  display: block;
  line-height: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.hq .bcon .gcon a:hover {
  text-decoration: none;
}

/* ===== 数字动画 ===== */
.digits {
  display: inline-block;
  height: 30px;
}
.digits i {
  display: inline-block;
  height: 30px;
  width: 18px;
  background: #fff;
  color: var(--primary);
  text-align: center;
  font-style: normal;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  margin: 0 1px;
  border-radius: 3px;
}
.digits b {
  display: inline-block;
  height: 30px;
  width: 10px;
}
.digits2 {
  display: inline-block;
  height: 28px;
}
.digits2 i {
  display: inline-block;
  height: 28px;
  width: 18px;
  background: #fff;
  color: var(--primary);
  text-align: center;
  font-style: normal;
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
  margin: 0 1px;
  border-radius: 3px;
}
.digits2 b {
  display: inline-block;
  height: 28px;
  width: 10px;
}

/* ===== 内容区域 ===== */
.in-conBg {
  background: var(--bg-page);
  height: auto;
  overflow: hidden;
}
.in-wrapper {
  width: 1200px;
  margin: 32px auto 0px auto;
  height: auto;
  overflow: hidden;
}
.in-wrap-tit {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.in-wrap-tit span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 3px solid var(--primary);
  width: auto;
  padding-bottom: 6px;
  white-space: nowrap;
}
.in-wrap-tit font a {
  font-size: 14px !important;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}
.in-wrap-tit font a:hover {
  color: var(--primary);
}
.in-wrap-imgs {
  height: auto;
  overflow: hidden;
}

/* ===== 筛选条件 ===== */
.in-cz-box {
  height: auto;
  overflow: hidden;
  padding-bottom: 10px;
}
.in-cz-search {
  width: 100%;
  height: auto;
  background: var(--bg-card);
  padding: 24px 28px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.in-cz-ser-list {
  width: 100%;
  padding: 8px 0;
  overflow: hidden;
  margin-top: 4px;
  float: none;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--border-light);
}
.in-cz-ser-list:last-child {
  border-bottom: none;
}
.in-cz-ser-list dt {
  margin-bottom: 0;
  min-width: 80px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 14px;
  color: #fff;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.filter-icon {
  width: 15px;
  height: 15px;
  margin-right: 6px;
  flex-shrink: 0;
}
.in-cz-ser-list dd {
  height: auto;
  overflow: hidden;
  padding-left: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.in-cz-ser-list dd a {
  display: inline-block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: 4px;
  transition: var(--transition);
}
.in-cz-ser-list dd a:hover {
  color: var(--primary);
  background: rgba(31, 85, 222, 0.06);
}
.in-cz-ser-list dd a.sx {
  padding: 0 2px;
  color: var(--border-light);
  pointer-events: none;
}
.in-czBtn01 {
  background-image: url(../images/index_czBtn01.jpg);
  background-color: var(--primary);
}
.in-czBtn02 {
  background-image: url(../images/index_czBtn02.jpg);
  background-color: var(--accent);
}
.in-czBtn03 {
  background-image: url(../images/index_czBtn03.jpg);
  background-color: #10B981;
}
.in-cz-checkin {
  padding-top: 10px;
}
.in-cz-checkin a {
  display: block;
  float: right;
  width: 140px;
  padding-left: 0;
  height: 46px;
  line-height: 44px;
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
  background-color: #1F55DE;
  text-align: center;
  border-radius: 4px;
}
.in-cz-checkin a:hover {
  background-color: #1a4bc4;
  color: #fff;
}

/* ===== 房源卡片 ===== */
.in-cz-list {
  height: auto;
  overflow: hidden;
  width: 285px;
  float: left;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin: 0px 20px 20px 0px;
  transition: var(--transition);
}
.in-cz-list:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.in-cz-list dt img {
  display: block;
  width: 285px;
  height: 215px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.in-lp-t01 {
  padding: 12px 14px 4px 14px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.in-lp-t01:hover {
  color: var(--primary);
}
.in-lp-t02 {
  padding: 4px 14px 14px 14px;
  height: auto;
  overflow: hidden;
}
.in-lp-t02 span {
  display: block;
}
.location {
  color: var(--text-muted);
  font-size: 13px;
}
.loc-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 3px;
}
.location2 {
  color: var(--text-muted);
  font-size: 13px;
}
.price {
  color: #1F55DE;
  font-size: 15px;
  font-weight: 600;
}
dl.marnone,
a.marnone {
  margin-right: 0px;
}

/* ===== 头条新闻 ===== */
.news-title {
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 3px solid #1F55DE;
}
.news-title a {
  font-size: 14px;
  font-weight: normal;
  line-height: 60px;
}
.news-img {
  width: 150px;
  float: left;
}
.news-img img {
  width: 150px;
  height: 108px;
  object-fit: cover;
}
.news-list {
  width: 396px;
  float: left;
  padding-left: 10px;
}
.news-list li {
  line-height: 36px;
  border-bottom: 1px #CCCCCC dashed;
  overflow: hidden;
}
.news-list li strong {
  color: #1F55DE;
}
.news-list li .date {
  float: right;
  line-height: 36px;
  color: #999;
}
.news-more li {
  line-height: 40px;
  border-bottom: 1px #CCCCCC dashed;
  overflow: hidden;
}
.news-more li strong {
  color: #1F55DE;
}
.news-more li .date {
  float: right;
}

/* ===== 楼盘卡片 ===== */
.newhouse-mt {
  display: block;
  margin-bottom: 30px;
  width: 285px;
  float: left;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-right: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.newhouse-mt:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--text-primary);
}
.newhouse-list dt img {
  display: block;
  width: 285px;
  height: 214px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.newhouse-list .in-lp-t01 {
  padding: 14px 16px 4px 16px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
}
.newhouse-list .in-lp-t02 {
  padding: 4px 16px 16px 16px;
  overflow: hidden;
}

/* ===== 荣誉轮播 ===== */
.Box {
  position: relative;
  margin-bottom: 60px;
}
.Box .content {
  width: 1200px;
  margin: 0 auto;
}
.Box .Box_con {
  position: relative;
}
.Box .Box_con .conbox {
  position: relative;
  overflow: hidden;
}
.Box .Box_con .conbox ul {
  position: relative;
  list-style: none;
  overflow: hidden;
}
.Box .Box_con .conbox ul li {
  float: left;
  width: 285px;
  height: 195px;
  margin-left: 20px;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.Box .Box_con .conbox ul li:first-child {
  margin-left: 0;
}
.Box .Box_con .conbox ul li img {
  display: block;
  width: 285px;
  height: 195px;
  transition: all 0.5s;
  object-fit: cover;
}
.Box .Box_con .conbox ul li:hover img {
  transform: scale(1.08);
}
.Box .BoxSwitch {
  margin-top: 30px;
  text-align: center;
}
.Box .BoxSwitch span {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 3px;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
}
.Box .BoxSwitch span.cur {
  background: var(--primary);
  width: 40px;
}

/* ===== 关于我们 ===== */
.about-section {
  background: var(--bg-card);
  padding: 56px 0 64px;
}
.about-wrapper {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.about-wrapper .in-wrap-tit {
  text-align: center;
  margin-bottom: 32px;
  justify-content: center;
}
.about-wrapper .in-wrap-tit span {
  display: inline-block;
  border: none;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 0;
  position: relative;
  white-space: nowrap;
}
.about-wrapper .in-wrap-tit span::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ===== 页尾 ===== */
.footer-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  margin-top: 0;
}
.footer-inner {
  width: 1200px;
  margin: 0 auto;
}
.footer-about {
  padding: 32px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.footer-about-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: 2px solid rgba(255,255,255,0.5);
}
.footer-about-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 800px;
  margin: 0 auto;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-contact {
  flex: 1;
  padding-left: 0;
}
.footer-contact-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 60px;
  padding-left: 0;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  padding-left: 0;
}
.footer-label {
  display: inline-block;
  width: 72px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-align: right;
  margin-right: 16px;
  flex-shrink: 0;
}
.footer-value {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.footer-qrcode {
  text-align: center;
  flex-shrink: 0;
  margin-left: 40px;
}
.footer-qrcode img {
  width: 140px;
  height: 140px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 6px;
  background: #fff;
}
.footer-qrcode p {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-copy a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-copy a:hover {
  color: rgba(255,255,255,0.8);
}
.footer-nav a {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-left: 24px;
  transition: var(--transition);
}
.footer-nav a:hover {
  color: rgba(255,255,255,0.9);
}
.mtop {
  margin-top: 15px;
}

/* ===== 手机看房 ===== */
.weixin {
  position: relative;
  color: #FFFFFF;
}
.weixin img.qrcode {
  position: absolute;
  top: -230px;
  right: -72px;
  width: 173px;
  max-width: none;
  height: 215px;
  transform: scale(0);
  transform-origin: top right;
  opacity: 0;
  border-radius: .25rem;
  transition: all .4s ease-in-out;
}
.weixin:hover img.qrcode {
  transform: scale(1);
  opacity: 1;
}

/* ===== 热租/热销楼盘板块 ===== */
.hot-section {
  padding: 36px 0 0;
}
.hot-section .in-wrap-tit span {
  border-bottom-color: var(--primary);
}
.hot-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  overflow: visible;
  align-items: stretch;
}
.hot-cards a {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  display: flex;
}
.hot-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.hot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.hot-card dt {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hot-card dt img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hot-card:hover dt img {
  transform: scale(1.05);
}
.hot-card .hot-title {
  padding: 16px 18px 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 0;
}
.hot-card .hot-desc {
  padding: 4px 18px 14px !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
  line-height: 1.7 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  flex: 1 !important;
  text-overflow: ellipsis !important;
}
.hot-card .hot-tag {
  display: inline-block;
  padding: 4px 12px;
  margin: 0 18px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  background: rgba(31, 85, 222, 0.06);
  border-radius: 4px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== 房源登记板块 ===== */
.register-section {
  background: linear-gradient(180deg, #EFF6FF 0%, var(--bg-page) 100%);
  padding: 56px 0 64px;
  margin-top: 40px;
}
.register-wrapper {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.register-wrapper .in-wrap-tit {
  text-align: center;
  margin-bottom: 40px;
  justify-content: center;
}
.register-wrapper .in-wrap-tit span {
  display: inline-block;
  border: none;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 0;
  position: relative;
  white-space: nowrap;
}
.register-wrapper .in-wrap-tit span::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}
.register-box {
  display: flex;
  gap: 20px;
}
.register-form-box {
  flex: 1;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 20px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.register-contact-box {
  flex: 1;
  min-width: 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 20px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.register-contact-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary);
  width: 100%;
  text-align: center;
}
.register-contact-phone {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.register-contact-phone .rc-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.register-contact-phone .rc-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.register-contact-qrcode {
  text-align: center;
}
.register-contact-qrcode img {
  width: 140px;
  height: 140px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px;
  background: #fff;
}
.register-contact-qrcode p {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.register-form-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 28px 0;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.register-form-box h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.form-group {
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.form-group label {
  display: block;
  width: 70px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: right;
  padding-right: 12px;
  flex-shrink: 0;
}
.form-group input,
.form-group select {
  flex: 1;
  height: 44px;
  line-height: 44px;
  padding: 0 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
  background: #FAFAFA;
}
.form-group input::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 85, 222, 0.1);
}
.form-submit {
  text-align: center;
  margin-top: 28px;
}
.form-submit button {
  width: 200px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(31, 85, 222, 0.3);
}
.form-submit button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(31, 85, 222, 0.4);
}
.form-submit button:active {
  transform: translateY(0);
}

/* ===== 个人联系方式板块 ===== */
.contact-section {
  background: var(--bg-card);
  padding: 56px 0 64px;
  margin-top: 0;
}
.contact-wrapper {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.contact-wrapper .in-wrap-tit {
  text-align: center;
  margin-bottom: 40px;
  justify-content: center;
}
.contact-wrapper .in-wrap-tit span {
  display: inline-block;
  border: none;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 0;
  position: relative;
  white-space: nowrap;
}
.contact-wrapper .in-wrap-tit span::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}
.contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 10px 0;
}
.contact-info {
  text-align: left;
  padding-top: 10px;
}
.contact-info .contact-item {
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.contact-info .contact-item .label {
  display: block;
  width: 80px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: right;
  padding-right: 20px;
  flex-shrink: 0;
}
.contact-info .contact-item .value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.contact-qrcode {
  text-align: center;
  padding-top: 10px;
}
.contact-qrcode img {
  width: 160px;
  height: 160px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-qrcode p {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== 响应式布局 ===== */
@media screen and (max-width: 1200px) {
  .topBar,
  .in-wrapper,
  .about-wrapper,
  .register-wrapper,
  .contact-wrapper,
  .footer-inner,
  .Box .content,
  .hq .con2,
  .hq .bcon .gcon {
    width: 95%;
    max-width: 1200px;
  }
}

@media screen and (max-width: 1024px) {
  .topBar {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0;
  }
  .topBar h1.logo a {
    height: 44px;
    padding: 4px 10px;
  }
  .topBar h1.logo a img {
    max-height: 34px;
  }
  ul.menuBar {
    margin-left: 20px;
    min-width: auto;
  }
  ul.menuBar li a {
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
  .banner {
    height: 400px;
  }
  .in-cz-list {
    width: calc(33.333% - 20px);
  }
  .newhouse-mt {
    width: calc(50% - 10px);
  }
  .Box .Box_con .conbox ul li {
    width: calc(25% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .topBar {
    flex-direction: column;
    padding: 15px 0;
  }
  .topBar h1.logo a {
    height: 36px;
    padding: 3px 8px;
  }
  .topBar h1.logo a img {
    max-height: 28px;
  }
  ul.menuBar {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  ul.menuBar li a {
    padding: 0 12px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
  }
  .loginBar {
    margin-top: 10px;
    margin-left: 0;
  }
  .banner {
    height: 250px;
  }
  .banner .Left,
  .banner .Right {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
  }
  .in-search-bg {
    height: auto;
    padding: 15px 0;
  }
  .in-search-box {
    width: 95%;
  }
  #tab2 {
    width: 100%;
  }
  .tablist {
    width: 100%;
  }
  .in-serTex {
    width: 70%;
  }
  .in-serBtn {
    width: 30%;
    padding-left: 0;
  }
  .in-cz-list {
    width: calc(50% - 10px);
    margin: 0 10px 10px 0;
  }
  .in-cz-list dt img {
    width: 100%;
    height: 180px;
  }
  .newhouse-mt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .newhouse-list dt img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
  .Box .Box_con .conbox ul li {
    width: calc(50% - 10px);
    margin-left: 10px;
  }
  .Box .Box_con .conbox ul li:first-child {
    margin-left: 10px;
  }
  .Box .Box_con .conbox ul li img {
    width: 100%;
    height: 150px;
  }
  .hq {
    height: auto;
    padding: 20px 0;
  }
  .hq .con2 {
    width: 95%;
    height: auto;
  }
  .hq .con2 li {
    width: calc(50% - 20px);
    margin: 10px;
    float: left;
  }
  .register-box {
    flex-direction: column;
  }
  .register-form-box,
  .register-contact-box {
    width: 100%;
  }
  .contact-box {
    flex-direction: column;
    gap: 30px;
  }
  .footer-main {
    flex-direction: column;
    gap: 30px;
  }
  .footer-qrcode {
    margin-left: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-nav a {
    margin: 0 10px;
  }
}

@media screen and (max-width: 480px) {
  .topBar h1.logo a img {
    max-height: 22px;
  }
  ul.menuBar li a {
    padding: 0 8px;
    font-size: 12px;
  }
  .banner {
    height: 180px;
  }
  .in-cz-list {
    width: 100%;
    margin-right: 0;
  }
  .Box .Box_con .conbox ul li {
    width: 100%;
    margin-left: 0;
  }
  .Box .Box_con .conbox ul li:first-child {
    margin-left: 0;
  }
  .hq .con2 li {
    width: 100%;
    margin: 10px 0;
  }
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-group label {
    width: 100%;
    text-align: left;
    padding-right: 0;
    margin-bottom: 5px;
  }
  .form-group input,
  .form-group select {
    width: 100%;
  }
}

/* ===== 移动端优化 ===== */
@media screen and (max-width: 768px) {
  /* 导航栏优化 */
  .topBg {
    height: auto;
    min-height: 60px;
  }
  .topBar {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 15px;
  }
  .topBar h1.logo {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .topBar h1.logo a {
    height: 36px;
    padding: 3px 8px;
    display: inline-flex;
  }
  .topBar h1.logo a img {
    max-height: 28px;
  }
  ul.menuBar {
    width: 100%;
    margin-left: 0;
    min-width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  ul.menuBar li {
    float: none;
  }
  ul.menuBar li a {
    padding: 8px 12px;
    height: auto;
    line-height: 1.4;
    font-size: 14px;
    white-space: nowrap;
  }
  .loginBar {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }
  .loginBar .phone-num {
    display: inline-block;
    float: none;
  }

  /* Banner 优化 */
  .banner {
    height: 200px;
  }
  .banner .Left,
  .banner .Right {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
  }
  .banner .Left {
    left: 10px;
  }
  .banner .Right {
    right: 10px;
  }

  /* 搜索区域优化 */
  .in-search-bg {
    height: auto;
    padding: 15px 0;
  }
  .in-search-box {
    width: 95%;
    padding: 0 10px;
  }
  #tab2 {
    width: 100%;
    height: auto;
  }
  #tab2 li {
    padding: 0 15px;
    height: 36px;
    line-height: 36px;
    font-size: 13px;
  }
  .tablist {
    width: 100%;
  }
  .in-serTex {
    width: 70%;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
  }
  .in-serBtn {
    width: 30%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    padding-left: 0;
  }

  /* 筛选条件优化 */
  .in-cz-search {
    padding: 15px;
  }
  .in-cz-ser-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }
  .in-cz-ser-list dt {
    margin-bottom: 8px;
  }
  .in-cz-ser-list dd {
    padding-left: 0;
    width: 100%;
  }
  .in-cz-ser-list dd a {
    padding: 6px 10px;
    font-size: 13px;
  }

  /* 房源卡片优化 */
  .in-cz-list {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .in-cz-list dt img {
    width: 100%;
    height: 180px;
  }

  /* 数据统计区优化 */
  .hq {
    height: auto;
    padding: 20px 0;
  }
  .hq .tit {
    font-size: 20px;
    padding-top: 10px;
  }
  .hq .con2 {
    width: 95%;
    height: auto;
    padding-top: 10px;
  }
  .hq .con2 li {
    width: calc(50% - 20px);
    margin: 10px;
    height: 80px;
    padding-top: 15px;
  }
  .hq .con2 li span {
    font-size: 14px;
  }

  /* 楼盘卡片优化 */
  .newhouse-mt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .newhouse-list dt img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }

  /* 荣誉轮播优化 */
  .Box .Box_con .conbox ul li {
    width: calc(50% - 10px);
    margin-left: 10px;
    height: 150px;
  }
  .Box .Box_con .conbox ul li:first-child {
    margin-left: 10px;
  }
  .Box .Box_con .conbox ul li img {
    width: 100%;
    height: 150px;
  }

  /* 房源登记板块优化 */
  .register-section {
    padding: 30px 0;
  }
  .register-wrapper {
    width: 95%;
    padding: 0 10px;
  }
  .register-box {
    flex-direction: column;
    gap: 20px;
  }
  .register-form-box,
  .register-contact-box {
    width: 100%;
    padding: 20px 15px;
  }
  .form-group {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  .form-group label {
    width: 100%;
    text-align: left;
    padding-right: 0;
    margin-bottom: 5px;
  }
  .form-group input,
  .form-group select {
    width: 100%;
    height: 40px;
    line-height: 40px;
  }
  .form-submit button {
    width: 100%;
    height: 44px;
  }

  /* 页尾优化 */
  .footer-inner {
    width: 95%;
    padding: 0 10px;
  }
  .footer-about {
    padding: 20px 0 15px;
  }
  .footer-about-title {
    font-size: 18px;
  }
  .footer-about-text {
    font-size: 13px;
  }
  .footer-main {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .footer-contact-title {
    font-size: 16px;
  }
  .footer-contact-list {
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .footer-label {
    width: auto;
    text-align: left;
    margin-right: 0;
  }
  .footer-qrcode {
    margin-left: 0;
    align-self: center;
  }
  .footer-qrcode img {
    width: 120px;
    height: 120px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
    text-align: center;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 15px;
  }
  .footer-nav a {
    margin: 0;
    font-size: 12px;
  }
}

/* 小屏手机进一步优化 */
@media screen and (max-width: 480px) {
  .topBar h1.logo a img {
    max-height: 22px;
  }
  ul.menuBar li a {
    padding: 6px 10px;
    font-size: 13px;
  }
  .banner {
    height: 160px;
  }
  .in-cz-list dt img {
    height: 150px;
  }
  .hq .con2 li {
    width: 100%;
    margin: 10px 0;
  }
  .Box .Box_con .conbox ul li {
    width: 100%;
    margin-left: 0;
  }
  .Box .Box_con .conbox ul li:first-child {
    margin-left: 0;
  }
}

/* ===== 移动端全面优化 v2 ===== */
@media screen and (max-width: 768px) {
  /* 页面 Banner */
  .page-banner {
    height: 200px !important;
  }
  .page-banner-title {
    font-size: 28px !important;
  }
  .page-banner-subtitle {
    font-size: 14px !important;
  }

  /* 位置导航 */
  .pg_location {
    width: 95% !important;
    padding: 15px 0 !important;
    font-size: 12px !important;
  }

  /* 筛选条件框 */
  .choose-box {
    width: 95% !important;
    margin: 10px auto !important;
    border-radius: 8px !important;
  }
  .choose-row {
    display: flex !important;
    flex-direction: column !important;
    border-bottom: 1px solid var(--border-light) !important;
  }
  .choose-label {
    display: block !important;
    width: 100% !important;
    background: #F8FAFC !important;
    text-align: left !important;
    padding: 12px 15px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-light) !important;
    font-size: 14px !important;
  }
  .choose-options {
    display: block !important;
    padding: 10px 15px !important;
  }
  .choose-options a {
    padding: 6px 10px !important;
    margin: 3px !important;
    font-size: 13px !important;
  }

  /* 内容区域 */
  .pg-contain {
    width: 95% !important;
    margin: 0 auto !important;
  }
  .pg-left {
    width: 100% !important;
    float: none !important;
  }
  .pg-right {
    width: 100% !important;
    float: none !important;
    margin-top: 20px !important;
  }

  /* 房源列表 */
  .chuzu-list li a {
    width: 100% !important;
    padding: 15px !important;
    box-sizing: border-box !important;
  }
  .chuzu-list li a img {
    width: 120px !important;
    height: 90px !important;
    float: left !important;
  }
  .chuzu-text {
    width: calc(100% - 135px) !important;
    padding-left: 15px !important;
    float: left !important;
  }
  .chuzu-text span.chuzu-tit {
    font-size: 15px !important;
    width: 100% !important;
    float: none !important;
    margin-bottom: 8px !important;
  }
  .chuzu-text span.chuzu-price {
    float: none !important;
    font-size: 14px !important;
  }
  .chuzu-text span.chuzu-price font {
    font-size: 18px !important;
  }
  .chuzu-text span {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  /* 右侧栏 */
  .new-chuzu {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px !important;
  }
  .new-text span {
    font-size: 12px !important;
  }
  .new-t01 {
    width: 60% !important;
  }

  /* 首页热租/热销卡片 - 一行 4 个 */
  .hot-cards {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    overflow: visible !important;
  }
  .hot-cards a {
    width: calc(25% - 12px) !important;
    max-width: calc(25% - 12px) !important;
    flex: 0 0 calc(25% - 12px) !important;
    min-width: 0 !important;
  }
  .hot-card {
    width: 100% !important;
    flex: 1 1 auto !important;
  }
  .hot-card dt img {
    aspect-ratio: 4/3 !important;
    width: 100% !important;
  }
  /* 首页房源卡片 (in-cz-list) */
  .in-wrap-imgs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
  }
  .in-cz-list {
    width: calc(50% - 8px) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  .in-cz-list dt img {
    width: 100% !important;
    height: 120px !important;
  }
  .in-lp-t01 {
    font-size: 13px !important;
    padding: 10px 12px 4px !important;
  }
  .in-lp-t02 {
    padding: 4px 12px 12px !important;
  }
  .in-lp-t02 span {
    font-size: 12px !important;
  }

  /* 分页 */
  .page {
    margin: 20px auto !important;
  }
  .page .pagination a {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
}

/* 小屏手机 */
@media screen and (max-width: 480px) {
  .in-cz-list {
    width: 100% !important;
  }
  .in-cz-list dt img {
    height: 160px !important;
  }
  .chuzu-list li a img {
    width: 100px !important;
    height: 75px !important;
  }
  .chuzu-text {
    width: calc(100% - 115px) !important;
  }
  .page-banner {
    height: 150px !important;
  }
  .page-banner-title {
    font-size: 22px !important;
  }
}

/* ===== 移动端修复 v5 - 强制覆盖 ===== */
@media screen and (max-width: 768px) {
  /* 首页房源登记板块 - 确保右侧10px间距 */
  .register-section {
    padding: 30px 0 !important;
  }
  .register-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  .register-box {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
  }
  .register-form-box,
  .register-contact-box {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    padding: 20px 15px !important;
  }

  /* 热门房源页 - 分类标签2个一行 */
  .hot-tabs {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 0 auto 20px auto !important;
  }
  .hot-tabs a {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
    margin: 0 !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* 热门房源页 - 数据网格左右10px */
  .hot-grid {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }
  .hot-item {
    width: calc(50% - 5px) !important;
    margin: 0 10px 15px 0 !important;
    box-sizing: border-box !important;
  }
  .hot-item:nth-child(2n) {
    margin-right: 0 !important;
  }

  /* 出租/出售页 - 列表左右10px */
  .pg-contain {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }
  .pg-left {
    width: 100% !important;
  }
  .pg-right {
    width: 100% !important;
  }
  .chuzu-list li a, .chushou-list li a {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px !important;
  }
  .new-chuzu {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 首页筛选条件左右10px */
  .in-cz-search {
    margin: 0 10px !important;
    width: calc(100% - 20px) !important;
    box-sizing: border-box !important;
  }

  /* 首页房源卡片左右10px */
  .in-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }
  .in-cz-list {
    width: calc(50% - 5px) !important;
    margin: 0 10px 15px 0 !important;
    box-sizing: border-box !important;
  }
  .in-cz-list:nth-child(2n) {
    margin-right: 0 !important;
  }

  /* 所有固定宽度容器统一处理 */
  .pg_location, .choose-box, .Box .content, .hq .con2, .hq .bcon .gcon {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box !important;
  }
  .topBar, .about-wrapper, .contact-wrapper, .footer-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box !important;
  }
}
