/* 全局盒模型、内外边距重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 页面基础字体、背景、文字颜色、横向溢出隐藏 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* 通用内容容器：限制最大宽度、居中 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* ===================== 顶部搜索筛选栏 ===================== */
/* 顶部搜索栏外层容器 */
.search-bar {
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 3px;
}
.search-bar .container {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 0;
}

/* 搜索分类分组容器 */
.search-section {
    display: flex;
    flex-direction: column;
}
/* 分类标题文字 */
.search-section-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
	color: #666;
	line-height: 28px;
	display: flex;

}
.search-section-title img {
	width: 28px;
	height: 28px;
	margin-right: 5px;
}
.search-section-title span {
    margin-right: 8px;
}

/* 筛选标签链接行 */
.search-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.search-links a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}
.search-links a:hover {
    color: #ff6b35;
}
/* 更多筛选橙色文字 */
.search-links .more {
    color: #ff6b35;
}

/* ===================== 新闻区域模块 ===================== */
.news-section {
    background-color: #fff;
    margin-bottom: 15px;
}
.news-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 40px;
}
.news-left {
    width: 660px;
    flex-shrink: 0;
}
.news-right {
    width: 500px;
    flex-shrink: 0;
}
.news-headline {
	height: 60px;
	display: flex;
	align-items: center;
	background-color: #f5f5f7;
	margin-bottom: 20px;
	margin-top: 20px;
}
.news-headline-badge {
    width: 78px;
    height: 71px;
    background: url(../img/topds.png) no-repeat center center;
    flex-shrink: 0;
}
.news-headline-title {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	padding-left: 24px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news-carousel {
    position: relative;
    width: 660px;
    height: 328px;
    overflow: hidden;
    background-color: #333;
}
.news-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.news-carousel-slide.active {
    opacity: 1;
    z-index: 2;
}
.news-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}
.news-carousel-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}
.news-carousel-subtitle {
    font-size: 14px;
    opacity: 0.9;
}
.news-carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.news-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.6);
}
.news-carousel-indicator.active {
    background-color: #fff;
}
.news-tabs-area {
	display: flex;
	gap: 0;
	background-color: #fff;
	border-bottom: none;
	padding-bottom: 0;
	margin-top: 20px;
}
.news-tabs {
    display: flex;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
}
.news-tabs a {
    flex: none;
    text-align: center;
    padding: 6px 10px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-bottom: none;
    background-color: #fff;
    border-radius: 18px;
    border: 1px solid #e5e5e5;
	cursor: pointer;
}
.news-tabs a.active {
	color: #fff;
	border-bottom-color: transparent;
	font-weight: normal;
	background-color: #FF3300;
	border-color: #fff;
}
.news-tabs a:hover {
    color: #fff;
	border-bottom-color: transparent;
	font-weight: normal;
    background-color: #FF3300;
    border-color: #fff;
}
.news-tab-content {
    padding-top: 0px;
}
.news-tab-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.news-tab-content ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-tab-content ul li:last-child {
    border-bottom: none;
}
.news-tab-content ul li a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}
.news-tab-content ul li a:hover {
    color: #ff6b35;
}
.news-tab-content ul li span {
    font-size: 16px;
    color: #999;
    margin-left: 10px;
    flex-shrink: 0;
}
.news-recommend {
    padding: 10px 0;
}
.news-recommend-title {
	font-size: 22px;
	font-weight: bold;
	color: #FF3300;
	margin: 0 0 5px 0;
	text-align: center;
}
.news-recommend-content {
	font-size: 14px;
	color: #666;
	margin: 0;
	line-height: 1.8;
	text-indent: 28px;
}
.news-scroll-ticker {
    display: flex;
    align-items: center;
    padding: 8px 0;
    background-color: #f5f5f7;
    margin-top: 0px;
    overflow: hidden;
}
.news-scroll-label {
	font-size: 16px;
	color: #FF3300;
	font-weight: bold;
	padding: 0 10px;
	border-right: 1px solid #ddd;
	flex-shrink: 0;
	font-family: "Microsoft YaHei", "微软雅黑", Arial, Helvetica, sans-serif;
}
.news-scroll-content {
    flex: 1;
    overflow: hidden;
    height: 22px;
    padding: 0;
    position: relative;
}
#newsScrollList {
	list-style: none;
	padding: 0;
	text-align: center;
	transition: transform 0.5s ease;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
}
#newsScrollList li {
	font-size: 16px !important;
	font-weight: bold;
	color: #666 !important;
	height: 22px !important;
	line-height: 22px !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
	display: block !important;
	text-align: left !important;
	padding: 0 !important;
	border-bottom: none !important;
	justify-content: flex-start !important;
	align-items: flex-start !important;
}

/* ===================== 便民查询横向滚动模块 ===================== */
.info-query {
    margin-bottom: 15px;
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #eee;
    box-sizing: border-box;
    padding-right: 0px;
    padding-left: 15px;
}

/* 左侧标题竖栏 */
.info-title {
    width: 180px;
    text-align: center;
    padding-right: 10px;
    border-right: 1px solid #eee;
    flex-shrink: 0;
}
.info-title h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}
.info-title p {
    font-size: 16px;
    color: #999;
}

/* 中间滚动查询工具容器 */
.info-items-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.info-items-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.info-items {
    display: flex;
    gap: 10px;
    transition: transform 0.3s ease;
    width: fit-content;
}

/* 单个查询工具卡片 */
.info-item {
    width: 180px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
    flex-shrink: 0;
}
.info-item:hover {
    background-color: #f7f7f7;
}
.info-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-item-icon img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
}
.info-item-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    flex: 1;
}

/* 查询模块右侧切换箭头按钮 */
.info-next-btn {
    width: 40px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s;
    font-size: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 32px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.info-next-btn:hover {
    background-color: rgba(255, 102, 0, 0.8);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ===================== 新房板块（左侧侧边栏+右侧房源列表） ===================== */
.new-house {
	padding: 0px 0;
	margin-bottom: 10px;
}
.new-house-content {
    display: flex;
    gap: 20px;
}

/* 新房左侧侧边栏容器 */
.new-house-sidebar {
    width: 300px;
    flex-shrink: 0;
}
.sidebar-section {
	padding-bottom: 20px;
}
.sidebar-section:last-child {
    border-bottom: none;
}
.sidebar-section-body {
    background-color: #f5f5f7;
    padding-top: 20px;
    padding-bottom: 20px;
}
/* 侧边栏通用标题（左侧橙色竖线标记） */
.sidebar-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    border-left: 3px solid #ff6b35;
    padding-left: 8px;
    font-family: "Microsoft YaHei", "微软雅黑", Arial, Helvetica, sans-serif;
}

/* 侧边栏工具图标网格 */
.tools-grid {
    display: flex;
    justify-content: space-around;
}
.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #666;
}
.tool-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
	border: 1px solid #F60;
}
.tool-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.tool-icon:hover {
	border: 2px solid #F60;
}
.tool-name {
    font-size: 12px;
}
.map_find_img{
	width: 30px;
	height: 32px;
	overflow: hidden;
	margin: 0 auto;
	background: url('../img/img12.png');
	background-position: 100% 100%;
}
.yushou_img {
	width: 30px;
	height: 32px;
	overflow: hidden;
	margin: 0 auto;
	background: url('../img/img13.png');
	background-position: 100% 100%;
}
.fangdai_img {
	width: 30px;
	height: 32px;
	overflow: hidden;
	margin: 0 auto;
	background: url('../img/img14.png');
	background-position: 100% 100%;
}
/* 侧边栏小字滚动公告 */
.sidebar-scroll-news {
    height: 20px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    margin-bottom: 15px;
}
.sidebar-scroll-news-list {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	color: #000;
}
.sidebar-scroll-news-item {
    height: 20px;
    line-height: 20px;
    font-size: 16px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

/* 侧边栏月份横向滚动标签行 */
.month-tabs-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
}
.month-tabs-wrapper .sidebar-section-title {
    margin-bottom: 0;
    white-space: nowrap;
    flex-shrink: 0;
}
.month-tabs-container {
    overflow: hidden;
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 0 3px;
}
.month-tabs {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
    width: max-content;
    flex-shrink: 0;
}
.month-tabs a {
    font-size: 18px;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    flex-shrink: 0;
    transition: all 0.3s;
    white-space: nowrap;
}
.month-tabs a.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}
/* 月份切换箭头按钮 */
.month-tabs-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s;
    font-size: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 18px !important;
}
.month-tabs-arrow:hover {
    background-color: #f60;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

/* 侧边栏活动时间轴列表 */
.activity-list-container {
    max-height: 270px;
    overflow-y: auto;
}
/* 自定义滚动条样式 */
.activity-list-container::-webkit-scrollbar {
    width: 4px;
}
.activity-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.activity-list-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}
.activity-list-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.activity-list {
    list-style: none;
    position: relative;
    padding-left: 50px;
}
/* 时间轴中间竖线 */
.activity-list::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #eee;
}
.activity-list li {
    padding: 10px 0;
    position: relative;
}
.activity-list li:last-child {
    border-bottom: none;
}
.activity-list li a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 22px;
}
.activity-list li a:hover {
    color: #ff6b35;
}
/* 时间轴圆点 */
.timeline-dot {
    position: absolute;
    left: -40px;
    top: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ccc;
    border: 3px solid #fff;
}
.timeline-dot.hot {
    background-color: #ff6b35;
}
/* 活动标签（红/蓝小标） */
.activity-tag {
    display: inline-block;
    font-size: 10px;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 8px;
}
.activity-tag.red {
    background-color: #ff4d4f;
}
.activity-tag.blue {
    background-color: #1890ff;
}
.activity-time {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
}

/* ---------------------- 新房右侧主内容区域 ---------------------- */
.new-house-main {
    width: 880px;
}
/* 新房头部标题+切换tab+搜索 */
.new-house-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    /* 固定整体高度，切换Tab不会上下撑开/收缩 */
    height: 50px;
}
.new-house-title {
	font-size: 32px;
	font-weight: bold;
	color: #333;
	/* 固定高度+行高，和Tab栏垂直居中对齐 */
	height: 50px;
	line-height: 50px;
	margin-bottom: 10px;
}
/* 新房头部Tab标签栏 - 修复抖动+固定18px激活字号 */
.new-house-tabs {
    display: flex;
    gap: 15px;
    /* 固定容器高度，防止切换时上下抖动 */
    height: 50px;
    align-items: center;
}
.new-house-tabs a {
	font-size: 16px;
	color: #666;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	line-height: 30px;
	transition: all 0.2s ease;
	vertical-align: middle;
	padding-bottom: 2px;
	/* 新增：固定最小宽度，文字放大不会撑开容器 */
	min-width: 80px;
	text-align: center;
	box-sizing: border-box;
	padding-top: 2px;
	padding-right: 0;
	padding-left: 0;
}
.new-house-tabs a.active {
	font-size: 18px;
	color: #000;
	border-bottom-color: #ff6b35;
	/* 不再需要左右内边距补偿 */
	padding-left: 0;
	padding-right: 0;
	font-weight: 800;
}
/* 新房搜索框按钮 */
.new-house-search {
    display: flex;
    align-items: center;
    gap: 10px;
}
.new-house-search form {
    display: flex;
    align-items: center;
    gap: 10px;
}
.new-house-search input {
    width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    /* 消除浏览器默认蓝色外发光 */
    outline: none;
}
/* 点击聚焦时样式 */
.new-house-search input:focus {
    /* 替换成你想要的颜色，比如主题橙色 #ff6b35 */
    border-color: #ff6b35;
    /* 可选：添加柔和外发光，匹配网站橙色风格 */
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}
.new-house-search button {
    padding: 8px 16px;
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

/* 新房三列网格布局 */
.house-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
/* 单个房源卡片 */
.house-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    cursor: pointer;
}

/* 房源图片容器 */
.house-image {
    position: relative;
    overflow: hidden;
	border-radius: 8px;
}
.house-image img {
    width: 100%;
    height: 215px;
    object-fit: cover;
    display: block;
	border-radius: 8px; /* 图片原生圆角 */
    transition: transform 0.3s ease;
}
.house-card:hover .house-image img {
    transform: scale(1.1);
	border-radius: 8px;
}

/* 房源右上角标签组（在售/效果图，解决不明显问题） */
.house-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}
.house-badge {
    font-size: 12px;
    color: #fff;
    padding: 4px 8px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.45);
}
.house-badge.blue,
.house-badge.gold {
    background-color: rgba(0, 0, 0, 0.45);
}

/* 房源图播放图标 */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

/* 房源卡片底部文字信息区 */
.house-info {
    padding: 12px;
}
.house-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.house-info-row:last-child {
    margin-bottom: 0;
}
.house-name {
	font-size: 16px;
	color: #666;
}
.house-price {
    font-size: 16px;
    font-weight: bold;
    color: #ff4d4f;
}
/* 房源配套标签 */
.house-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.house-tag {
	font-size: 11px;
	color: #666;
	padding: 2px 6px;
	background-color: #ffffff;
	border-radius: 3px;
	border: 1px solid #CCC;
}
/* 房源位置小字 */
.house-location {
    font-size: 12px;
    color: #999;
}
.house-location span {
    margin-right: 5px;
}
.loc-add {
    width: 9px;
    height: 12px;
    vertical-align: middle; /* 和文字居中对齐 */
    margin-right: 4px;      /* 图标和文字之间留一点空隙 */
}
/* ===================== 置业顾问横向滚动模块 ===================== */
.consultant-section {
	background-color: #fff;
	margin-bottom: 15px;
	padding-right: 0;
	padding-left: 0;
}
/* 模块头部标题+更多 */
.consultant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.consultant-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	padding-left: 8px;
	border-left: 3px solid #ff6b35;
	
}
.consultant-more {
    font-size: 13px;
    color: #ff6b35;
    text-decoration: none;
}
/* 顾问外层滚动容器 */
.consultant-list {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 110px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 0 2px #ddd, 0 2px 12px rgba(0, 0, 0, 0.08);
}
/* 单个顾问卡片 */
.consultant-card {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f4feff;
    border-radius: 8px;
    flex: 1;
    min-height: 90px;
}
.consultant-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    flex-shrink: 0;
    overflow: hidden;
    margin-right: 12px;
}
.consultant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.consultant-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.consultant-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}
.consultant-company {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}
/* 联系顾问按钮 */
.consultant-btn {
    display: inline-block;
    padding: 3px 12px;
    background-color: #fff;
    color: #ff6b35;
    border: 1px solid #ff6b35;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    align-self: flex-start;
}
.consultant-btn:hover {
    background-color: #ff6b35;
    color: #fff;
}

/* ===================== 在线预约服务中心模块 ===================== */
.service-section {
    background-color: #fff;
    padding: 20px 0;
    margin-bottom: 15px;
}
.service-section .container {
    display: flex;
    flex-direction: column;
}
/* 模块小标题通用样式（左侧橙色短竖线） */
.service-center-title-small {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: left;
    display: flex;
    align-items: center;
}
.service-center-title-small::before {
    content: '';
    width: 4px;
    height: 14px;
    background-color: #ff6b35;
    margin-right: 8px;
    display: inline-block;
}

/* 微信二维码悬浮下拉 */
.qrcode-trigger-wrapper {
    position: relative;
}
.qrcode-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: #4caf50;
    padding: 5px 15px;
    background-color: #e8f5e9;
    border-radius: 4px;
    border: 1px solid #c8e6c9;
    transition: all 0.3s;
}
.qrcode-trigger:hover {
    background-color: #c8e6c9;
}
.qrcode-trigger svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    fill: #4caf50;
}
.qrcode-trigger .arrow {
    margin-left: 4px;
    font-size: 12px;
}
.qrcode-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 100;
    width: 180px;
}
.qrcode-trigger-wrapper:hover .qrcode-dropdown {
    display: block;
}
.qrcode-dropdown img {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto 10px;
    border: 1px solid #eee;
}
.qrcode-dropdown p {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 0;
}

/* 服务模块左右分栏容器 */
.service-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
/* 左侧服务工具列表栏 */
.service-col-left {
    width: 300px;
}
.service-col-left .service-col-header {
	font-size: 18px;
	color: #333;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	height: 30px;
	font-weight: 700;
}
.service-col-left .service-col-header::before {
    content: '';
    width: 4px;
    height: 14px;
    background-color: #ff6b35;
    margin-right: 8px;
    display: inline-block;
}
.service-col-left .service-col-header span {
    color: #ff6b35;
    font-weight: bold;
}
.service-col-left .service-col-body {
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 20px;
    height: 258px;
}
/* 左侧服务工具列表 */
.service-list {
    list-style: none;
}
.service-list li {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}
.service-list li:last-child {
    border-bottom: none;
}
.service-list li:hover {
    background-color: #ffffff;
}
.service-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.che {height: 75px;line-height: 75px;font-size: 16px;border-bottom: 1px solid #eee;padding-left: 67px;background: url(../img/kft-che.png) no-repeat;}
.hui {height: 75px;line-height: 75px;font-size: 16px;border-bottom: 1px solid #eee;padding-left: 67px;background: url(../img/kft-hui.png) no-repeat;}
.last {height: 75px;line-height: 75px;font-size: 16px;border-bottom: 1px solid #eee;padding-left: 67px;background: url(../img/kft-last.png) no-repeat;border-bottom: none}
.service-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.service-text {
    font-size: 18px;
    color: #333;
}

/* 右侧预约表单+滚动来访记录 */
.service-col-right {
    width: calc(100% - 320px);
}
.service-col-right .service-col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    height: 30px;
}
.service-col-right .service-col-body {
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    height: 258px;
}
/* 左侧预约表单区域 */
.service-center {
    width: 400px;
    padding: 20px;
    border-right: 1px solid #eee;
}
.service-center-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.service-center-tabs {
    display: flex;
    gap: 15px;
	margin-bottom: 10px;
}
.service-center-tabs a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}
.service-center-tabs a.active {
    color: #ff6b35;
    font-weight: bold;
}
/* 预约表单输入框、按钮 */
.booking-form input {
    width: 100%;
    padding: 12px 15px 12px 60px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    background-repeat: no-repeat;
    background-position: 6px center;
    background-size: 38px; /* 放大图标 */
    position: relative;
    z-index: 1;

}
/* 蓝色聚焦边框 */
.booking-form input:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.booking-form input[name="name"] {
    background-image: url(../img/bmname.png);
}
.booking-form input[name="phone"] {
    background-image: url(../img/bmtel.png);
}

/* 父容器必须加相对定位，用来承载分割线 */
.service-center {
    position: relative;
}
/* 给每个输入框外层套一层容器，用来放竖线伪元素 */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.booking-input-wrap {
    position: relative;
}
/* 灰色竖分割线 伪元素 */
.booking-input-wrap::after {
    content: "";
    position: absolute;
    left: 44px; /* 竖线距离左边距离，和图标区域对齐 */
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #dddddd;
    z-index: 2;
    pointer-events: none; /* 不遮挡输入点击 */
}

.booking-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #ff7833, #ff6b20);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.booking-form button:hover {
	color: #FF0;
	opacity: 0.9;
}
/* 预约人数统计小字 */
.booking-count {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 15px;
}
.booking-count strong {
    color: #ff6b35;
    font-size: 16px;
}

/* 右侧来访滚动记录 */
.service-right-scroll {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}
.booking-list-container {
    height: 240px;
    overflow: hidden;
    position: relative;
}
/* 自动向上滚动动画 */
.booking-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.5s ease;
}
.booking-list-container:hover .booking-list {
    animation-play-state: paused;
}
/* 单条来访记录 */
.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 12px;
}
.booking-time {
    color: #999;
    width: 50px;
    flex-shrink: 0;
}
.booking-name {
    color: #666;
    flex: 1;
    margin-left: 10px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.booking-phone {
    color: #666;
    text-align: right;
    flex-shrink: 0;
}

/* ===================== 二手房列表模块 ===================== */
.second-hand-section {
    background-color: #fff;
    padding: 20px 0;
    margin-bottom: 15px;
}
/* 二手房头部标题+tab+更多 */
.second-hand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.second-hand-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
.second-hand-tabs {
    display: flex;
    gap: 15px;
}
.second-hand-tabs a {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}
.second-hand-tabs a.active {
	font-size: 18px;
	color: #000;
	border-bottom-color: #ff6b35;
	font-weight: 700;
}
.second-hand-more {
    font-size: 13px;
    color: #ff6b35;
    text-decoration: none;
}
/* 二手房四列网格 */
.second-hand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
/* 二手房单个卡片 */
.second-hand-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    cursor: pointer;
}
.second-hand-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.second-hand-image {
    position: relative;
    overflow: hidden;
}
.second-hand-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.second-hand-card:hover .second-hand-image img {
    transform: scale(1.1);
}
/* 二手房卡片文字信息 */
.second-hand-info {
    padding: 12px;
}
.second-hand-name {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}
.second-hand-detail {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    justify-content: space-between;
}
.second-hand-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.second-hand-price {
    font-size: 16px;
    font-weight: bold;
    color: #ff4d4f;
}
.second-hand-unit-price {
    font-size: 12px;
    color: #999;
    font-weight: normal;
}

/* ===================== 数据统计深色板块 ===================== */
.stats-section {
    background-color: #fff;
    padding: 30px 0;
    color: #fff;
	background: url(../img/tjds.jpg) no-repeat;
	background-position: center;
}
.stats-section .container {
    display: flex;
    justify-content: space-around;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #ff6b35;
}
.stat-label {
	font-size: 18px;
	color: #fff;
	margin-top: 5px;
	font-weight: 700;
}

/* ===================== 楼盘排行榜模块 ===================== */
.ranking-section {
    background-color: #fff;
    padding: 20px 0;
    margin-bottom: 15px;
}
.ranking-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.ranking-subtitle {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
}
.ranking-content {
    display: flex;
    gap: 20px;
}
.ranking-column {
    flex: 1;
    background-color: #fafafa;
    padding: 15px;
    border-radius: 8px;
}
.ranking-column-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.ranking-list {
    list-style: none;
}
.ranking-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ranking-list li:last-child {
    border-bottom: none;
}
/* 排名数字标（123名彩色） */
.ranking-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #ddd;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
    margin-right: 10px;
    flex-shrink: 0;
}
.ranking-list li:nth-child(1) .ranking-number {
    background-color: #ff4d4f;
}
.ranking-list li:nth-child(2) .ranking-number {
    background-color: #ff7a45;
}
.ranking-list li:nth-child(3) .ranking-number {
    background-color: #faad14;
}
.ranking-text {
    flex: 1;
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}
.ranking-area {
    font-size: 12px;
    color: #999;
}

/* ===================== 问答FAQ三列模块 ===================== */
.qa-section {
    background-color: #fff;
    padding: 20px 0;
    margin-bottom: 15px;
}
.qa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.qa-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	padding-left: 8px;
	border-left: 3px solid #ff6b35;
	margin-right: 15px;
}
.qa-count {
    font-size: 13px;
    color: #999;
}
/* 问答搜索框区域 */
.qa-search {
    display: flex;
    align-items: center;
    gap: 10px;
}
.qa-search input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    width: 200px;
}
.qa-search button {
    padding: 8px 16px;
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}
.qa-search .more-btn {
    background-color: #fff;
    color: #ff6b35;
    border: 1px solid #ff6b35;
}
/* FAQ三列网格 */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.qa-card {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 8px;
}
.qa-tag {
    font-size: 11px;
    color: #ff6b35;
    margin-bottom: 10px;
}
.qa-question {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}
.qa-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}
.qa-answer-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}
