/* 全局样式（复用首页基础样式） */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        :root {
            --primary: #E7662E;
            --secondary: #1398FD;
            --gray: #f5f5f5;
            --dark: #333;
            --light-gray: #999;
            --border: #eee;
            --white: #fff;
        }
        body {
            background-color: #f8f8f8;
            color: var(--dark);
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s;
			cursor: pointer;
			transition: all 0.3s ease;
        }
        .container {
            width: 1200px;
            margin: 0 auto;
            /* padding: 0 15px; */
        }
        button {
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        select, input {
            font-family: inherit;
            outline: none;
            border: 1px solid var(--border);
            transition: border-color 0.3s;
        }
        select:focus, input:focus {
            border-color: var(--secondary);
        }

        /* 顶部导航（复用） */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            z-index: 999;
            height: 80px;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
        }
        .logo i {
            font-size: 30px;
            margin-right: 10px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-list a {
            font-size: 16px;
            color: var(--dark);
        }
        .nav-list a:hover, .nav-list a.active {
            color: var(--primary);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .nav-btn {
            font-size: 16px;
            position: relative;
            cursor: pointer;
        }
        .qrcode-popup {
            position: absolute;
            top: 35px;
            right: 0;
            width: 120px;
            height: 120px;
            background: var(--white);
            padding: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-radius: 4px;
            display: none;
            z-index: 1000;
        }
        .nav-btn:hover .qrcode-popup {
            display: block;
        }
        .qrcode-popup img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 面包屑导航 */
        .breadcrumb {
            margin-top: 90px;
            padding: 15px 0;
            font-size: 14px;
            color: var(--light-gray);
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb a {
            color: var(--secondary);
            margin: 0 8px;
        }
        .breadcrumb a:hover {
            color: #0f86e0;
        }

        /* 列表主体布局（互换位置后的布局） */
        .list-container {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            min-height: calc(100vh - 200px);
            flex-direction: row-reverse;
        }

        /* 右侧筛选栏（新增折叠/展开功能） */
        .filter-sidebar {
            width: 260px;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 15px;
            position: sticky;
            top: 100px;
            align-self: flex-start;
			overflow: hidden;
            box-sizing: border-box;
        }
        .filter-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border);
        }
        /* 折叠筛选组样式 */
        .filter-group {
            margin-bottom: 15px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 10px;
        }
        .filter-group:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .filter-group-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            margin-bottom: 8px;
        }
        .filter-group-header label {
            display: block;
            font-size: 14px;
            color: var(--dark);
            margin-bottom: 0;
            font-weight: 500;
        }
        .filter-keyword-input {
            width: 100%;
            padding: 8px 10px;
            border-radius: 4px;
            font-size: 14px;
            margin-bottom: 5px;
        }
        .filter-select {
            width: 100%;
            padding: 8px 10px;
            border-radius: 4px;
            font-size: 14px;
            margin-bottom: 5px;
        }
        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .radio-item {
            display: flex;
            align-items: center;
            font-size: 14px;
        }
        .radio-item input {
            margin-right: 8px;
        }
        .filter-group-toggle {
            font-size: 12px;
            color: var(--secondary);
            transition: transform 0.3s;
        }
        .filter-group-toggle.rotate {
            transform: rotate(180deg);
        }
        .filter-group-content {
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            max-height: 500px; /* 足够大的初始高度 */
        }
        .filter-group-content.collapsed {
            max-height: 0;
            padding-top: 0;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        /* 筛选内容原有样式 */
        .price-range {
            display: flex;
            gap: 8px;
            align-items: center;
            min-width: 0;
        }
        .price-input {
            flex: 1;
            padding: 6px 8px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            max-width: calc(50% - 11px);
        }
        .price-separator {
            font-size: 12px;
            color: var(--light-gray);
            width: 10px;
            text-align: center;
        }
        /* 区域筛选样式（七县一市） */
        .area-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }
        .area-item {
            display: flex;
            align-items: center;
            font-size: 12px;
        }
        .area-item input {
            margin-right: 6px;
            transform: scale(0.9);
        }
        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }
        .checkbox-item {
            display: flex;
            align-items: center;
            font-size: 12px;
        }
        .checkbox-item input {
            margin-right: 6px;
            transform: scale(0.9);
        }
        .filter-submit {
            width: 100%;
            padding: 10px;
            background: var(--primary);
            color: var(--white);
            border-radius: 4px;
            font-size: 14px;
            font-weight: bold;
            margin-top: 15px;
        }
        .filter-submit:hover {
            background: #d65a23;
        }

        /* 左侧房源列表（原右侧） */
        .house-list-wrapper {
            flex: 1;
        }
        /* 排序栏 */
        .sort-bar {
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .sort-options {
            display: flex;
            gap: 25px;
        }
        .sort-option {
            font-size: 14px;
            color: var(--light-gray);
            cursor: pointer;
        }
        .sort-option.active, .sort-option:hover {
            color: var(--primary);
            font-weight: bold;
        }
        .house-count {
            font-size: 14px;
            color: var(--light-gray);
        }

        /* 房源卡片（列表式） */
        .house-card-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .house-card-link {
            display: block; /* 让a标签包裹整个卡片 */
            text-decoration: none;
            color: inherit;
        }
        .house-card {
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 20px;
            display: flex;
            gap: 20px;
            transition: box-shadow 0.3s;
        }
        .house-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .house-card-img {
            width: 240px;
            height: 180px;
            border-radius: 6px;
            object-fit: cover;
        }
        .house-card-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .house-card-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 12px;
            color: var(--dark);
        }
        .house-card-title a:hover {
            color: var(--primary);
        }
        .house-card-params {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 14px;
            color: var(--light-gray);
            margin-bottom: 10px;
        }
        .house-card-desc {
            font-size: 14px;
            color: var(--dark);
            line-height: 1.5;
            margin-bottom: 10px;
        }
        .house-card-tags {
            display: flex;
            gap: 8px;
        }
        .tag {
            font-size: 12px;
            padding: 3px 8px;
            border-radius: 12px;
        }
        .tag-orange {
            background: #fee8e0;
            color: var(--primary);
        }
        .tag-blue {
            background: #e8f4ff;
            color: var(--secondary);
        }
        .house-card-price {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            min-width: 120px;
        }
        .price-main {
            font-size: 22px;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }
        .price-unit {
            font-size: 14px;
            color: var(--light-gray);
        }

        /* 分页（上一页/下一页宽度自适应，不换行） */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px; /* 减小间距避免换行 */
            margin-top: 40px;
            padding: 20px 0;
            flex-wrap: nowrap; /* 强制不换行 */
            width: 100%;
            overflow-x: auto; /* 极端情况横向滚动，不换行 */
            -ms-overflow-style: none; /* 隐藏滚动条 */
            scrollbar-width: none; /* 隐藏滚动条 */
        }
        /* 隐藏滚动条 */
        .pagination::-webkit-scrollbar {
            display: none;
        }
        /* 上一页/下一页按钮：宽度自适应内容 */
        .page-btn.prev, .page-btn.next {
            width: auto;
            padding: 0 15px;
            height: 40px;
            border-radius: 4px;
            border: 1px solid var(--border);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            white-space: nowrap; /* 文字不换行 */
        }
        /* 数字页码：保持正方形 */
        .page-btn.num {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            border: 1px solid var(--border);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
        }
        /* 统一hover/active样式 */
        .page-btn:hover, .page-btn.active {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        .page-input {
            width: 60px;
            height: 40px;
            border-radius: 4px;
            border: 1px solid var(--border);
            padding: 0 10px;
            text-align: center;
            margin: 0 5px; /* 减小间距 */
        }
        .page-go {
            padding: 0 15px;
            height: 40px;
            background: var(--secondary);
            color: var(--white);
            border-radius: 4px;
            font-size: 14px;
            white-space: nowrap; /* 文字不换行 */
        }
        .page-go:hover {
            background: #0f86e0;
        }
        /* 分页文字：缩小字号+间距 */
        .pagination span {
            font-size: 14px;
            color: var(--light-gray);
            margin: 0 3px; /* 减小间距 */
        }

        /* 底部（复用首页同款底部） */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 50px 0 20px;
            margin-top: 30px;
        }
        .footer-wrapper {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-qrcodes {
            display: flex;
            gap: 30px;
        }
        .footer-qrcode {
            width: 100px;
            height: 100px;
        }
		.footer-qrcode p{
			font-size: 12px;
			display: block;
			padding: 5px 0px 0px 0px;
			margin: 0px;
			text-align: center;
			color: #999;
		}
        .footer-qrcode img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }
        .footer-contact {
            text-align: right;
        }
        .footer-contact h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }
        .contact-info {
            font-size: 14px;
            margin-bottom: 10px;
            line-height: 1.6;
        }
        .copyright {
            text-align: center;
            font-size: 12px;
            color: var(--light-gray);
        }
		
		.text-limit {
		  /* 关键：设置宽度为5个汉字的宽度（每个汉字约16px，可根据字体调整） */
		  width: 60px; 
		  /* 强制单行显示 */
		  white-space: nowrap;
		  /* 超出部分隐藏 */
		  overflow: hidden;
		  /* 可选：超出部分显示省略号（如果需要） */
		  text-overflow: ellipsis;
		  /* 确保宽度计算准确 */
		  box-sizing: border-box;
		  /* 可选：统一字体大小，保证宽度一致 */
		  font-size: 12px;
		  /* 可选：避免字体差异导致宽度不准 */
		  font-family: "Microsoft Yahei", sans-serif;
		}
		
		
		/* 九宫格布局样式 */
		.service-list{width: 920px;}
		
		.grid-container {
		    display: grid;
		    grid-template-columns: repeat(4, 1fr); /* 每行4个 */
		    gap: 16px;
		    box-sizing: border-box;
		}
		
		/* 卡片基础样式 */
		.grid-card {
		    border-radius: 8px;
		    overflow: hidden;
		    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		    background: #fff;
		    transition: transform 0.3s ease;
		}
		
		.grid-card:hover {
		    transform: translateY(-4px);
		}
		
		/* 图片容器 */
		.card-img-wrapper {
		    width: 100%;
		    height: 160px;
		    overflow: hidden;
		}
		
		.card-img {
		    width: 100%;
		    height: 100%;
		    object-fit: cover;
		    transition: transform 0.5s ease;
		}
		
		.grid-card:hover .card-img {
		    transform: scale(1.05);
		}
		
		/* 卡片信息区域 */
		.card-info {
		    padding: 12px;
		}
		
		.card-title {
		    font-size: 16px;
		    margin: 0 0 8px 0;
		    white-space: nowrap;
		    overflow: hidden;
		    text-overflow: ellipsis;
		}
		
		.card-desc {
		    font-size: 14px;
		    color: #666;
		    margin: 0 0 8px 0;
		    display: -webkit-box;
		    -webkit-line-clamp: 2;
		    -webkit-box-orient: vertical;
		    overflow: hidden;
		}
		
		/* 标签样式 */
		.card-tags {
		    margin-bottom: 8px;
		}
		
		.tag {
		    display: inline-block;
		    padding: 2px 8px;
		    border-radius: 4px;
		    font-size: 12px;
		    margin-right: 4px;
		}
		
		/* 价格样式 */
		.card-price {
		    margin-top: 8px;
		    font-weight: bold;
		}
		
		.price {
		    color: #ff4d4f;
		    font-size: 18px;
		}
		
		.unit {
		    color: #666;
		    font-size: 14px;
		    margin-left: 4px;
		}
		.erweima-s{text-align: center;}
		.wenxintishi{font-size: 12px;color: #666;line-height: 18px;}
		.img-liet{width: 100%;}
		
		/* 响应式调整 */
		@media (max-width: 1200px) {
		    .grid-container {
		        grid-template-columns: repeat(3, 1fr);
		    }
		}
		
		@media (max-width: 768px) {
		    .grid-container {
		        grid-template-columns: repeat(2, 1fr);
		    }
		}
		
		@media (max-width: 480px) {
		    .grid-container {
		        grid-template-columns: 1fr;
		    }
		}

        /* 响应式适配 */
        @media (max-width: 1200px) {
            .container {
                width: 95%;
            }
        }
        @media (max-width: 992px) {
            .nav-list {
                display: none;
            }
            .filter-sidebar {
                display: none;
            }
            .house-card-img {
                width: 200px;
                height: 150px;
            }
            .list-container {
                flex-direction: row-reverse;
            }
            /* 响应式分页优化 */
            .pagination {
                gap: 5px;
                padding: 15px 0;
            }
            .page-btn.prev, .page-btn.next {
                padding: 0 10px;
            }
            .page-input {
                width: 50px;
            }
        }
        @media (max-width: 768px) {
            .header {
                height: 70px;
            }
            .breadcrumb {
                margin-top: 80px;
                font-size: 12px;
            }
            .sort-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .house-card {
                flex-direction: column;
            }
            .house-card-img {
                width: 100%;
                height: 220px;
            }
            .house-card-price {
                align-items: flex-start;
                margin-top: 10px;
            }
            .pagination {
                flex-wrap: wrap; /* 手机端允许换行 */
                justify-content: flex-start;
                padding: 15px 10px;
            }
            .list-container {
                flex-direction: row-reverse;
            }
            /* 手机端底部适配 */
            .footer-wrapper {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-contact {
                text-align: center;
                margin-top: 20px;
            }
        }