/*==== 缩略图轮播独立css ====*/
.thumb-slider-wrap{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:12px;
}
.thumb-prev,.thumb-next{
    width:36px;
    height:72px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    border-radius:4px;
    font-size:18px;
    position:relative;
    z-index:99 !important;
}
.thumb-viewport{
    flex:1;
    overflow:hidden;
}
.thumb-list{
    display:flex;
    gap:10px;
    transition: margin-left 0.3s ease;
}
.thumb-item{
    flex-shrink:0;
    width:100px;
    height:70px;
    object-fit:cover;
    cursor:pointer;
    border:2px solid transparent;
}
.thumb-item.active{
    border-color:red;
}
/* 列表整体容器 1200居中 左右分栏 */
.list-main {
    width: 1200px;
    margin: 20px auto;
    display: flex;
    gap: 24px;
}

/* 左侧区域 */
.list-left {
    flex: 1;
}
/* 左侧整体白色边框容器 匹配截图整框 */
.list-left-wrap {
    border: 1px solid #eee;
    background: #fff;
}

/* 顶部房源分类标签栏 */
.list-tab-bar {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #eee;
}
.tab-item {
    flex: 1;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    border-right: 1px solid #eee;
    gap: 6px;
}
.tab-item:last-child {
    border-right: none;
}
.tab-item.active {
    color: #f53333;
}
.tag-green {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #42c058;
    color: #fff;
    text-align: center;
    line-height: 22px;
    font-size: 13px;
    border-radius: 2px;
}
.tab-item i {
    font-size: 18px;
}

/* 统计文字行 */
.list-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}
.list-top-bar .tip-text {
    font-size: 15px;
    color: #666;
}
.list-top-bar .operate-text {
    font-size: 15px;
    color: #333;
}
.list-top-bar .operate-text span {
    color: #e62828;
    cursor: pointer;
}

/* 房源单项 */
.house-item {
    display: flex;
    gap: 14px;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: background-color 0.24s ease;
}
/* 鼠标经过房源行底色加深 */
.house-item:hover {
    background-color: #f8f9fa;
}
.house-img-box {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    position: relative;
}
.house-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.down-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #f53333;
    color: #fff;
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 0 12px 12px 0;
}
.flag-jing {
    display: inline-block;
    background: #42c058;
    color: #fff;
    padding: 2px 6px;
    font-size: 13px;
    margin-left: 8px;
    border-radius: 3px;
}

.house-info {
    flex: 1;
}
.house-title {
    font-size: 20px;
    color: #222;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.house-base-row {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
}
.house-base-row span {
    margin-right: 14px;
}
.house-area-text {
    margin: 2px 0 6px;
    font-size: 14px;
    color: #666;
}
.tag-group {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.tag-item {
    padding: 1px 6px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 12px;
    line-height: 1.4;
}
.tag-item.green {
    border-color: #42c058;
    color: #009929;
}
.tag-item.orange {
    border-color: #ff9545;
    color: #e66100;
}
.tag-item.blue {
    border-color: #33b8cc;
    color: #008699;
}
.broker-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}
.broker-row img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.broker-row .chat-link {
    color: #f53333;
    margin-left: 6px;
    cursor: pointer;
}

.house-price-box {
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
}
.price-wrap {
    display: flex;
    align-items: baseline;
}
.price-num {
    font-size: 28px;
    color: #d60000;
    font-weight: bold;
    line-height: 1.2;
}
.price-unit {
    font-size: 16px;
    color: #d60000;
    margin-left: 2px;
}
.price-dingdai {
    font-size: 24px;
    color: #d60000;
    font-weight: bold;
    line-height: 1.2;
    white-space: nowrap;
}
.same-house-link {
    margin-top: 10px;
    color: #3366ff;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.24s ease;
}
.house-item:hover .same-house-link {
    opacity: 1;
    visibility: visible;
}

/* 分页区域：永久显示，无隐藏逻辑 */
.page-box {
    margin: 30px 0;
    padding: 0;
    text-align: center;
}
.page-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.page-btn,
.page-num {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.page-btn:hover,
.page-num:hover {
    border-color: #f53333;
    color: #f53333;
}
.page-num.active {
    background: #f53333;
    color: #fff;
    border-color: #f53333;
}
.page-text {
    font-size: 14px;
    color: #666;
    margin: 0 8px;
}
.page-go-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
}
.page-go-wrap input {
    width: 46px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    color: #666;
    text-align: center;
    border-radius: 4px;
    padding: 0;
}
.go-btn {
    height: 36px;
    padding: 0 14px;
    background: #ff7800;
    color: #fff;
    border: 1px solid #ff7800;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.go-btn:hover {
    background: #e66900;
    border-color: #e66900;
}

/* 右侧容器 + 滚动悬浮 */
.list-right {
    width: 260px;
    flex-shrink: 0;
}
/* 右侧固定悬浮，滚动到顶部40px吸附 */
.list-right-fixed {
    position: sticky;
    top: 40px;
}
.publishing-top-btn {
    width: 100%;
    height: 60px;
    background: #d60000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    margin-bottom: 16px;
    cursor: pointer;
}
.publishing-top-btn i {
    font-size: 24px;
}
.right-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.right-btn-item {
    height: 50px;
    border: 1px solid #f53333;
    color: #f53333;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.2s;
}

/* 分页样式 */
.pages {padding:24px 0;text-align:center;font-size:12px;color:#666666;clear:both;}
.pages a:link,.pages a:visited,.pages a:active {background:#FFFFFF;border:#ccc 1px solid;padding:6px;text-decoration:none;margin-right:6px;}
.pages a:hover {background:#FF5C6A;border:#FF5C6A 1px solid;color:#FFFFFF;padding:6px;text-decoration:none;}
.pages strong {background:#FF5C6A;border:#FF5C6A 1px solid;padding:6px;color:#FFFFFF;margin-right:6px;}
.pages_inp {width:32px;border:#EEEEEE 1px solid;color:#666666;padding:4px;text-align:center;}
.pages_btn {width:32px;border:#FF6600 1px solid;color:#FFFFFF;padding:4px 6px;background:#FF6600;font-weight:bold;font-size:12px;}
.pages label {background:#FFFFFF;border:#EEEEEE 1px solid;color:#666666;padding:6px 6px;}
.pages label em {color:red;font-weight:bold;font-style:normal;}
.pages label span {font-weight:bold;}
.pages cite {font-style:normal;}
.right-btn-item:hover {
    background: #f53333;
    color: #fff;
}