/* 房屋租售主页 */

/* 全幅背景图*/
.hero-region {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('/uploads/allimg/20260309/1-260309152H4c6.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    isolation: isolate;
}

.hero-region::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
    animation: fadeInUp 1.2s ease;
}

.region-name {
    font-size: clamp(3.5rem, 15vw, 5rem);
    font-weight: 800;
    letter-spacing: 6px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #fff, #e0ffe6);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff;
    line-height: 1.2;
}

.region-slogan {
    font-size: 1.6rem;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    letter-spacing: 2px;
    border-top: 2px solid rgba(255,255,255,0.3);
    padding-top: 1.5rem;
    display: inline-block;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 内容区域容器 */
.fwzs {
    max-width: 1260px;
    margin: 0 auto;
    padding: 30px 20px;
}
.fwzs-lbtnrk {
    margin-bottom: 60px;
    position: relative;
}
.fwzs-nrkbt {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}
.fwzs-nrkbt:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #00cfa6;
    border-radius: 2px;
}
.fwzs-lbtnr {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    height: 500px;
}
.fwzs-lbtnr1 {
    position: relative;
    width: 100%;
    height: 100%;
}
/* 单个幻灯片 */
.fwzs-lbtnr2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fwzs-lbtnr2.active {
    opacity: 1;
    z-index: 1;   
}
/* 幻灯片中的链接和图片 */
.fwzs-lbtnr2 a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;   
}
.fwzs-lbtnr2 img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/   
}
.fwzs-lbtnrbt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px;
    z-index: 2;   
}
.fwzs-lbtnrbt h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.fwzs-lbtnrbt p {
    font-size: 18px;
    max-width: 700px;
    opacity: 0.9;
}
/* 轮播图控制按钮 */
.fwzscarousel-controls {
    position: absolute;
    top: 50%;
    width: 95%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 30px;
    z-index: 3;   
}
.fwzscarousel-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.fwzscarousel-btn:hover {
    background-color: #00cfa6;
    color: white;
    transform: scale(1.1);
}
/* 轮播图指示器 */
.fwzscarousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;   
}
.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.indicator.active {
    background-color: #00c6a0;
    transform: scale(1.2);
}

.indicator:after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.indicator.active:after {
    border-color: rgba(255, 255, 255, 0.5);
}

/* 栏目分类 */
.fwzs-flnrk {
    margin-bottom: 80px;    
}
.fwzs-lmfl {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;    
}
@media (max-width: 1100px) {
    .fwzs-lmfl {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fwzs-lmfl {
        grid-template-columns: 1fr;
    }
}

.fwzs-lmdfl {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1; 
    border: 2px solid transparent;  
}
.fwzs-lmdfl.active {
    border-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 198, 160, 0.2);    
}
.fwzs-lmdfl:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00C6A0, #00D4A9);
    opacity: 0;
    transition: 0.3s ease;
    z-index: -1;
}
.fwzs-lmdfl:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.fwzs-lmdfl.active:before,
.fwzs-lmdfl:hover:before {
    opacity: 0.05;
}
.fwzs-lmdfl img {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00c6a0;
    transition: 0.3s ease;
}
.fwzs-lmdfl.active img,
.fwzs-lmdfl:hover img {
    transform: scale(1.1);
    color: #07a182;
}
.fwzs-lmdfl h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
    transition: 0.3s ease;
}

.fwzs-lmdfl p {
    color: #6c6c6c;
    font-size: 15px;
    transition: 0.3s ease;
}
.fwzs-lmxfl {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);   
    position: relative;
    min-height: 300px;
}
.fwzs-lmxfl1 {
    position: relative;   
}
.fwzs-lmxfl2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;    
}
.fwzs-lmxfl2.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}
.fwzs-lmxfl2 h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #1a1a1a;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0f7f2;
}

.fwzs-lmxfl3 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .fwzs-lmxfl3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .fwzs-lmxfl3 {
        grid-template-columns: 1fr;
    }
}

.fwzs-lmxfl4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #f8fafc;   
}
.fwzs-lmxfl4:hover {
    background-color: #e0f7f2;
    transform: translateY(-5px);
}

.fwzs-lmxfl4 img {
    font-size: 28px;
    color: #00c6a0;
    margin-bottom: 12px;
    height: 50px;
}

.fwzs-lmxfl4 span {
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    color: #4a4a4a;
}

/* 房源信息 */
.fwzs-fyxx {
    margin-bottom: 80px;  
}
.fwzs-fyxxnr {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    transition: 0.3s ease;    
}
.fwzs-fyxxnr:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);;
}
.fwzs-fyxxtb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    border-bottom: 1px solid #e9ecef;
    background-color: rgba(0, 198, 160, 0.02);   
}
.fwzs-fyxxbt {
    font-size: 26px;
    color: #1a1a1a;
    font-weight: 700;   
}
.fwzs-fyxxbt img {
    color: #00c6a0;
    margin-right: 12px;  
    width: 50px;
    float: left; 
}
.fwzs-fyxxbt1 {
    float: left;
    margin-top: 15px;    
}
.view-more {
    color: #00c6a0;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
    padding: 8px 16px;
    border-radius: 12px;
    background-color: rgba(0, 198, 160, 0.1);   
}
.view-more:hover {
    background-color: rgba(0, 198, 160, 0.2);
    transform: translateX(5px);
}
.view-more i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.view-more:hover i {
    transform: translateX(5px);
}
.fwzs-fyxxzt {
    display: flex;
    padding: 35px;
    gap: 35px;
}
@media (max-width: 1100px) {
    .fwzs-fyxxzt {
        flex-direction: column;
        gap: 30px;
    }
}

/* 左侧推荐房产区域 */
.fwzs-fyxxztzb {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (max-width: 1100px) {
    .fwzs-fyxxztzb {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .fwzs-fyxxztzb {
        grid-template-columns: 1fr;
    }
}
/* 右侧房产列表 */
.fwzs-cplist {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 900px) {
    .fwzs-cplist {
        grid-template-columns: 1fr;
    }
}
/* 信息展示通用样式 */
.fwzs-cpcard {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    background-color: #fff;
}
.fwzs-cpcard:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);;   
}
.fwzs-cpimg-container {
    position: relative;
    overflow: hidden;
    height: 250px;   
}
.fwzs-fyxxztzb .fwzs-cpimg-container {
    height: 250px;
}
.fwzs-cpimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;    
}
.fwzs-cpcard:hover .fwzs-cpimg {
    transform: scale(1.05);
}
/* 推荐标签样式 */
.fwzs-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}
.fwzs-tag1 {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}
/* 房产信息 */
.fwzs-cpinfo {
    padding: 20px;
}
.fwzs-cptitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.4;   
}
.fwzs-cpdetails {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #6c6c6c;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;    
}
.fwzs-spzyldbq {
    background-color: #f8fafc;
    border-radius: 30px;
    padding: 4px 10px;
    font-size: 10px;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    gap: 6px;
}
.fwzs-cpmeta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;   
}
.fwzsmeta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #6c6c6c;    
}
.fwzsmeta-item i {
    color: #00c6a0;
}

.fwzs-cpprice {
    font-size: 22px;
    font-weight: 700;
    color: #00c6a0;
    font-family: 'ali95';
}
.fwzs-cpfooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;   
}
.fwzs-cplocation {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #6c6c6c;    
}
.fwzs-cplocation i {
    color: #00c6a0;
}
.fwzs-cpactions {
    display: flex;
    gap: 10px;
}
.fwzy-sphyxx {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}
.fwzy-sphyxx img {
    height: 20px;
    width: 20px;
    border-radius: 50%;
}
/*.fwzsaction-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c6c6c;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;   
}
.fwzsaction-btn:hover {
    background-color: #00c6a0;
    color: white;
    transform: rotate(10deg);   
}*/

 /* 响应式调整 */
 @media (max-width: 768px) {
    
    .fwzs-lbtnrbt h3 {
        font-size: 24px;
    }
    
    .fwzs-lbtnrbt p {
        font-size: 16px;
    }
    
    .fwzs-lbtnr {
        height: 350px;
    }
    
    .fwzs-nrkbt {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .fwzs-lbtnr {
        height: 280px;
    }
    
    .fwzs-lbtnrbt {
        padding: 20px;
    }
    
    .fwzs-fyxxtb {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .view-more {
        align-self: flex-end;
    }
}

/* 动画效果 */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 滚动动画 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 底部区域分类 */
.fwzscontainerdylm-zy {
    width: 1250px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 30px;
    margin-top: 10px;
}

/* 房屋租售主页- 结束 */

/* 房屋租售列表页- 开始 */
.fwzslby-nr {
    max-width: 1200px;
    margin: 20px auto 50px;
    padding: 0 20px;   
}

/* 排序栏 */
.fwsort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;   
}
.fwsort-options {
    display: flex;
    align-items: center;
    gap: 10px;   
}
.fwsort-option {
    padding: 6px 15px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;   
}
.fwsort-option:hover {
    border-color: #00c6a0;
    color: #00c6a0;
}

.fwsort-option.active {
    background-color: #00c6a0;
    color: white;
    border-color: #00c6a0;
}
.fwresult-count {
    background-color: #00c6a0;
    color: white;
    border-color: #00c6a0;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

 /* PC端主区域布局 */
 .fwzslby-zqy {
    display: flex;
    gap: 30px;   
 }
 .fwzslby-zbnr {
    flex: 1;
    min-width: 0;   
 }

 .fwzslby-zbkp {
    display: flex;
    flex-direction: column;
    gap: 20px;
 }
 .fwproperty-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: row;
    height: 180px;
 }
 .fwproperty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}
.fwproperty-img-container {
    position: relative;
    overflow: hidden;
    width: 230px;
    height: 100%;
    flex-shrink: 0;
}
.fwproperty-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.fwproperty-card:hover .fwproperty-img {
    transform: scale(1.05);
}
 /* 价格类型标签 */
 .fwprice-type-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #00c6a0, #11d9b2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}
/* 右上角标签容器 */
.fwproperty-tags {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: flex-end;
    z-index: 2;
    max-width: 70%;
}
.fwproperty-tag {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    backdrop-filter: blur(2px);
    white-space: nowrap;
}

.fwtag-sticky {
    background-color: #ffb347;
    color: white;
}
.fwtag-recommend {
    background: linear-gradient(135deg, #f346f3, #950c95);
    color: white;
}

 /* 房源信息 */
 .fwproperty-info {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fwproperty-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
    line-height: 1.4;
}
.fwproperty-address {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #6c6c6c;
    margin-bottom: 15px;    
}
.fwproperty-address i {
    color: #00c6a0;
    font-size: 13px;
}
.fwproperty-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;   
}
.fwmeta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #4a4a4a;
}

.fwmeta-item i {
    color: #00c6a0;
    width: 18px;
}
.fwproperty-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;   
}
.fwproperty-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.fwzfprice-value {
    font-size: 24px;
    font-weight: 700;
    color: #00c6a0;
    font-family: 'ali95';
}

.fwzfprice-unit {
    font-size: 15px;
    color: #00c6a0;
}

.fwzf-jgdj {
    font-size: 12px;
    color: #64748b;
    margin-left: 5px;
}

.fwproperty-actions {
    display: flex;
    gap: 8px;
    align-items: center;   
}
.fwaction-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #edf2f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9292;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

/*.fwaction-btn:hover {
    background-color: #00c6a0;
    color: white;
    transform: scale(1.1);
}*/
/* 对比复选框 */
.compare-checkbox {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6c6c6c;
    cursor: pointer;
    margin-left: 8px;
}

.compare-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #00c6a0;
}
/* 对比浮动栏 */
.compare-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.3s ease;
    z-index: 1000;
    border-top: 2px solid #00c6a0;
}

.compare-bar.show {
    bottom: 0;
}

.compare-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.compare-count {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.compare-count span {
    color: #00c6a0;
    font-size: 20px;
    margin-right: 5px;
}

.compare-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 600px;
}

.compare-tag {
    background-color: #e0f7f2;
    color: #00a888;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.compare-tag i {
    cursor: pointer;
    font-size: 12px;
}

.compare-tag i:hover {
    color: #FF6B6B;
}

.compare-btn {
    background: linear-gradient(135deg, #00C6A0, #00D4A9);;
    color: white;
    border: none;
    margin-right: 30px;
    padding: 10px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 198, 160, 0.3);
}

.compare-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 198, 160, 0.4);
}

.compare-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 对比弹窗 */
.compare-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.compare-modal.show {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #6c6c6c;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #FF6B6B;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0f7f2;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.compare-table th {
    background-color: #e0f7f2;
    color: #1a1a1a;
    font-weight: 600;
    width: 150px;
}

.compare-table td {
    background-color: #fff;
}

.compare-table .property-img-cell {
    width: 120px;
}

.compare-table img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

/* 右侧热推侧边栏 */
.fwhot-sidebar {
    width: 240px;
    flex-shrink: 0;   
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}
.fwhot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0f7f2;
}
.fwhot-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;   
}
.fwhot-title i {
    color: #00c6a0;
}
.fwrefresh-btn {
    background: none;
    border: none;
    color: #00c6a0;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 20px;
    transition: background-color 0.2s;
}
.fwrefresh-btn:hover {
    background-color: #e0f7f2;
}
.fwhot-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.fwhot-item {
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s ease;
    border-radius: 12px;
    padding: 8px;
}
.fwhot-item:hover {
    background-color: #e0f7f2;
}
.fwhot-img {
    width: 80px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.fwhot-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fwhot-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.3;
}
.fwhot-address {
    font-size: 12px;
    color: #6c6c6c;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 5px;
}
.fwhot-address i {
    color: #00c6a0;
    font-size: 10px;
}
.fwhot-price {
    font-size: 16px;
    font-weight: 700;
    color: #00c6a0;
    font-family: 'ali95';
}
.fwhot-price small {
    font-size: 12px;
    font-weight: 400;
    color: #00c6a0;
    margin-left: 2px;
}
.fwhot-tags {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}
.fwhot-tag {
    background-color: #e0f7f2;
    color: #00a888;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}
/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}
.page-item {
    min-width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #e9ecef;
}

.page-item:hover {
    border-color: #00a888;
    color: #00a888;
}

.page-item.active {
    background-color: #00c6a0;
    color: white;
    border-color: #00c6a0;
}

.page-item.prev, .page-item.next {
    padding: 0 15px;
    width: auto;
}

@media (max-width: 992px) {
    .fwzslby-zqy {
        flex-direction: column;
    }
    
    .fwhot-sidebar {
        width: 100%;
        position: static;
        margin-top: 30px;
    }
    
    .fwproperty-card {
        height: auto;
        flex-direction: column;
    }
    
    .fwproperty-img-container {
        width: 100%;
        height: 200px;
    }
    
    .fwproperty-info {
        padding: 15px;
    }
    
    .fwproperty-title {
        font-size: 18px;
    }
    
    .fwproperty-meta {
        gap: 12px;
    }
    
    .fwprice-value {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .fwproperty-card {
        display: flex;
        flex-direction: row;
        height: auto;
        min-height: 130px;
    }
    
    .fwproperty-img-container {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
    }
    
    .fwproperty-info {
        padding: 10px 12px;
    }
    
    .fwproperty-title {
        font-size: 15px;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .fwproperty-address {
        font-size: 12px;
        margin-bottom: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .fwproperty-meta {
        gap: 8px;
        margin-bottom: 6px;
        padding-bottom: 6px;
        font-size: 11px;
    }
    
    .fwmeta-item i {
        width: 12px;
        font-size: 10px;
    }
    
    .fwproperty-footer .fwprice-value {
        font-size: 16px;
    }
    
    .fwproperty-footer .fwprice-unit {
        font-size: 11px;
    }
    
    .fwaction-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .compare-checkbox {
        font-size: 11px;
    }
    .compare-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .fwprice-type-tag {
        top: 8px;
        left: 8px;
        padding: 2px 8px;
        font-size: 10px;
    }
    
    .fwproperty-tags {
        top: 8px;
        right: 8px;
        gap: 3px;
    }
    
    .fwproperty-tag {
        padding: 2px 6px;
        font-size: 9px;
    }
    
    .filter-search input {
        width: 100%;
    }
    
    .compare-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    
    .compare-info {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .compare-btn {
        width: 100%;
        text-align: center;
    }
}

/* 动画 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fwproperty-card, .fwhot-item {
    animation: fadeIn 0.5s ease forwards;
}

/* 房屋租售列表页筛选- 开始*/
/* 卡片 */
.filter-card {
    width: 100%;
    max-width: 1165px;               
    background-color: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
    padding: 20px 18px;              
    transition: all 0.2s;
    margin-bottom: 15px;
    border-radius: 20px;
}

/* 弹性标签组 */
.tag-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;   
    justify-content: left;               
}

/* 左侧标题*/
.group-label {
    font-weight: 620;
    font-size: 14px;
    background-color: #00c6a0;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 40px;
    line-height: 1.45;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

/* 所有普通标签样式*/
.tag {
    display: inline-block;
    background-color: #edf2f9;       
    color: #162b42;
    font-size: 13px;
    font-weight: 470;
    line-height: 1.5;
    padding: 8px 18px;
    border-radius: 40px;              
    white-space: nowrap;
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: background-color 0.15s, box-shadow 0.1s;
    user-select: none;
    cursor: pointer;
}

/* 普通标签 */
.tag:not(.dropdown-trigger):hover {
    background-color: #e0e8f2;
}

/* 下拉触发器 */
.dropdown-trigger {
    cursor: pointer;
    background-color: #edf2f9;         
    padding-right: 14px;                
}

.dropdown-trigger:hover {
    background-color: #dde5f0;          
}

/* 下拉箭头 */
.arrow-down {
    display: inline-block;
    font-size: 12px;
    margin-left: 6px;
    opacity: 0.7;
    color: #3d4e66;
    transform: translateY(1px);          
    pointer-events: none;                 
}

/* 下拉容器 */
.dropdown-container {
    position: relative;
    display: inline-block;               
    vertical-align: middle;
}

/* 下拉菜单 */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);             
    left: 0;
    z-index: 15;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.04);
    min-width: 140px;
    padding: 8px 0;
    backdrop-filter: blur(2px);            
    border: 1px solid rgba(0,0,0,0.02);
}

/* 悬停容器显示下拉菜单 */
.dropdown-container:hover .dropdown-menu {
    display: block;
}

/* 下拉菜单项 */
.dropdown-item {
    padding: 12px 20px;
    font-size: 14.5px;
    color: #1e2f45;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.1s;
    line-height: 1.4;
}

.dropdown-item:hover {
    background-color: #f0f5fd;            /
}

/* 首项圆角适应菜单圆角 */
.dropdown-item:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.dropdown-item:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* 小屏幕时缩小内边距，保持不换行 */
@media (max-width: 420px) {
    .filter-card {
        padding: 16px 14px;
    }
    .tag {
        padding: 6px 14px;
        font-size: 13.5px;
    }
    .dropdown-trigger {
        padding-right: 10px;
    }
    .dropdown-item {
        padding: 10px 16px;
        font-size: 13.5px;
    }
    .group-label {
        font-size: 15px;
    }
}

/* 保证下拉菜单在卡片内不被裁剪 */
.filter-card,
.tag-group {
    overflow: visible !important;
}

/* 可选：给来源不限下拉菜单稍微偏左对齐，但其实left:0足够 */
/* 来源下拉菜单如果有特别长的选项，可以调整 */
.dropdown-container .dropdown-menu {
    min-width: 150px;                  
}

.fwresult-countzf {
    background-color: #00c6a0;
    color: white;
    border-color: #00c6a0;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    font-size: 10px;
    transition: all 0.2s;
}


/* 房屋租售列表页筛选- 结束 */

/* 房屋租售列表页- 结束 */

/* 房屋租售内容页- 开始 */
.fwcontent-container {
    max-width: 1200px;
    margin: 30px auto 50px;
    padding: 0 20px;
}
/* 详情页布局：左侧主内容 + 右侧侧边栏 */
.fwdetail-layout {
    display: flex;
    gap: 20px;
}
.fwdetail-main {
    flex: 1;
    min-width: 0;
}
.fwdetail-sidebar {
    width: 360px;
    flex-shrink: 0;
}
.fwdetail-header {
    background-color: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;   
}
.fwdetail-title h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;   
}
.fwdetail-meta-tags {
    display: flex;
    gap: 8px;   
}
.fwdetail-tag {
    background-color: #e0f7f2;
    color: #00a888;
    padding: 4px 10px;
    margin-top: 5px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.fwdetail-tag.sticky {
    background-color: #ffb347;
    color: white;
}

.fwdetail-tag.recommend {
    background: linear-gradient(135deg, #f346f3, #950c95);
    color: white;
    margin-top: 5px;
}
.fwtitle-right {
    display: flex;
    gap: 20px;
    color: #6c6c6c;
    font-size: 14px;   
}
.fwtitle-right i {
    color: #00c6a0;
    margin-right: 5px;
}

.fwtitle-right span {
    margin-right: 15px;
}

/* 房源图片轮播区 */
.fwgallery-section {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.fwgallery-main {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.fwgallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fwgallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    overflow-x: auto;
}

.fwthumb-item {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    border: 2px solid transparent;
}

.fwthumb-item.active {
    opacity: 1;
    border-color: #00c6a0;
}

.fwthumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 价格模块 */
.fwprice-module {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.fwprice-main {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.fwprice-value {
    font-size: 38px;
    font-weight: 700;
    color: #00c6a0;
    line-height: 1.2;
    font-family: 'ali115';
}

.fwprice-unit {
    font-size: 20px;
    color: #00c6a0;
    margin-left: 5px;
}

.fwprice-dj {
    font-size: 16px;
    color: #64748b;
    margin-left: 5px;
}

.fwprice-fh {
    font-size: 24px;
    color: #00c6a0;
    font-weight: 700;
    margin-left: 5px;
    font-family: 'ali115';
}

.fwprice-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fwprice-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
    border-right: 1px solid #e9ecef;
}

.fwprice-info-item:last-child {
    border-right: none;
}

.fwinfo-label {
    font-size: 13px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.fwinfo-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'ali95';
}

 /* 房源基本信息卡片 */
 .fwinfo-section {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.fwsection-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0f7f2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fwsection-title i {
    color: #00c6a0;
}

.fwinfo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
}

.fwinfo-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 14px;
    color: #6c6c6c;
    margin-bottom: 5px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}
.info-valuedz {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.info-value i {
    color: #00c6a0;
    margin-right: 5px;
}
.info-valuedz i {
    color: #00c6a0;
    margin-right: 5px;
}

/* 房源特色 */
.fwfeatures-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.fwfeature-item {
    background-color: #f8fafc;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 15px;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fwfeature-item i {
    color: #00c6a0;
}

/* 详细描述 */
.fwdescription-section {
    background-color: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.fwdescription-content {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

 /* 配套设施 */
 .facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

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

.facility-item i {
    color: #00c6a0;
    width: 20px;
}

/* 更多图片模块 */
.extra-images-section {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

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

.image-item {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.image-item:hover img {
    transform: scale(1.05);
}

.hidden-image {
    display: none;
}

.more-images-btn {
    margin-top: 20px;
    text-align: center;
}

.more-btn {
    background-color: #f8fafc;
    border: 1px solid #e9ecef;
    color: #4a4a4a;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.more-btn:hover {
    background-color: #e0f7f2;
    color: #00a888;
    border-color: #00C6A0;
}

/* 位置地图 */
.map-section {
    background-color: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.map-container {
    height: 300px;
    background-color: #e9e9e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c6c6c;
}
/* 右侧侧边栏 */
.fwsidebar-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}
/* 发布者信息 */
.fwuser-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.fwuser-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e0f7f2;
}

.fwuser-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fwuser-name-section {
    display: flex;
    flex-direction: column;
}

.fwuser-name-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.fwuser-name-line h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}
.seller-id {
    font-size: 0.75rem;
    background: #eef3fa;
    padding: 2px 8px;
    border-radius: 30px;
}

.fwstar-rating {
    display: flex;
    gap: 2px;
    color: #ffd700;
}

.fwstar-rating i {
    font-size: 14px;
}

.fwlicense-icon {
    color: #6c6c6c;
    cursor: pointer;
    transition: color 0.2s;
}

.fwlicense-icon:hover {
    color: #00c6a0;
}

.fwcompany-name {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 4px;
}

.fwbusiness-area {
    font-size: 12px;
    color: #747474;
    margin-bottom: 4px;
}

.fwzs-yh-rztb {
    margin: 0;
    padding: 0;
}

.fwuser-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #e0f7f2;
    color: #00a888;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    width: fit-content;
}

.fwuser-badge i {
    color: #00c6a0;
}

.fwuser-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.fwstat-item {
    text-align: center;
}

.fwstat-number {
    font-size: 17px;
    font-weight: 700;
    color: #00c6a0;
}

.fwstat-label {
    font-size: 13px;
    color: #6c6c6c;
}

.fwcontact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fwcontact-btn {
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 16px;
    text-decoration: none;
    display: block;
}

.fwcontact-btn.primary {
    background: #00C6A0;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 198, 160, 0.3);
}

.fwcontact-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 198, 160, 0.4);
}

.fwcontact-btn.secondary {
    background-color: #f8fafc;
    position: relative;
}

.fwcontact-btn.secondary:hover {
    background-color: #e0f7f2;
}
/* 电话号码点击显示 */
.fwphone-number {
    display: inline-block;
    font-size: 18px;
    text-align: center;
    background-color: #f8fafc;
    padding: 8px 15px;
    border-radius: 30px;
    color: #00c6a0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.fwphone-number:hover {
    background-color: #e0f7f2;
}

.fwphone-number .hidden-number {
    display: none;
}

.fwphone-number.show .hidden-number {
    display: inline;
}

.fwphone-number.show .click-hint {
    display: none;
}

/* 电话号码点击显示 */

/* 咨询告知 */
.fwsource-hint {
    font-size: 0.8rem;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 30px;
    text-align: center;    
}


/* 二维码悬浮层 */
.fwcontact-btn.secondary .qr-popup {
    display: none;
    position: absolute;
    top: 100%;               
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;          
    padding: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    white-space: normal;      
    text-align: center;
    pointer-events: none;      
  }
  
  /* 鼠标悬停按钮 */
  .fwcontact-btn.secondary:hover .qr-popup {
    display: block;
  }
  
  /* 小箭头 */
  .fwcontact-btn.secondary .qr-popup::before {
    content: '';
    position: absolute;
    bottom: 100%;            
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
  }
  
  /* 标题样式 */
  .fwcontact-btn.secondary .qr-popup .qr-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  /* 二维码图片样式 */
  .fwcontact-btn.secondary .qr-popup .qr-image {
    display: block;
    max-width: 150px;
    max-height: 150px;
    border-radius: 4px;
  }
  
  /* 未上传二维码 */
  .fwcontact-btn.secondary .qr-popup .qr-placeholder {
    width: 150px;
    height: 150px;
    background-color: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
  }
  
  /* 响应式*/
  @media (max-width: 480px) {
    .fwcontact-btn.secondary .qr-popup {
      left: 0;
      transform: none;
    }
    .fwcontact-btn.secondary .qr-popup::before {
      left: 20px;
    }
  }

/* 相关房源 */
.fwrelated-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fwrelated-item {
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s ease;
    border-radius: 12px;
    padding: 8px;
}

.fwrelated-item:hover {
    background-color: #e0f7f2;
}

.fwrelated-img {
    width: 80px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.fwrelated-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.3;
}

.fwrelated-price {
    font-size: 16px;
    font-weight: 700;
    color: #00c6a0;
}

.fwrelated-price small {
    font-size: 12px;
    font-weight: 400;
    color: #00c6a0;
}


/* 房屋租售内容页- 结束 */

@font-face {
    font-family: 'ali95';
    src: url('/fonts/AlibabaPuHuiTi-2-95-ExtraBold.woff2') format('woff2'),
         url('/fonts/AlibabaPuHuiTi-2-95-ExtraBold.woff') format('woff');
    font-style: normal;
    font-display: swap; 
  }
  @font-face {
    font-family: 'ali115';
    src: url('/fonts/AlibabaPuHuiTi-2-115-Black.woff2') format('woff2'),
         url('/fonts/AlibabaPuHuiTi-2-115-Black.woff') format('woff');
    font-style: normal;
    font-display: swap; 
  }