
/* 热门推荐侧边栏卡片公共样式：热门写字楼推荐 / 热门办公室推荐 共用 */
.right-card.hot-rec-card .right-card-head{
    padding:12px 14px;font-size:var(--fs-lg);font-weight:600;color:#353535;margin:0;
    border-bottom:1px solid #f0f0f0;
}
.right-card.hot-rec-card .right-hot-list{list-style:none;margin:0;padding:0;}
.right-card.hot-rec-card .right-hot-item{
    display:flex;align-items:center;gap:10px;padding:10px 14px;text-decoration:none;
    color:#555;border-bottom:1px solid #f5f5f5;transition:background .2s;
}
.right-card.hot-rec-card .right-hot-item:last-child{border-bottom:none;}
.right-card.hot-rec-card .right-hot-item:hover{background:#f8fbfd;}
.right-card.hot-rec-card .right-hot-item:hover .rhi-name{color:var(--brand-primary);}
.right-card.hot-rec-card .rhi-img{
    width:72px;height:54px;border-radius:8px;object-fit:cover;display:block;
    flex-shrink:0;background:#f1f4f7;
}
.right-card.hot-rec-card .rhi-info{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px;}
.right-card.hot-rec-card .rhi-name{
    font-size:var(--fs-base);font-weight:600;color:#353535;white-space:nowrap;
    overflow:hidden;text-overflow:ellipsis;transition:color .2s;
}
.right-card.hot-rec-card .rhi-area{font-size:var(--fs-sm);color:#999;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.right-card.hot-rec-card .right-card-footer{padding:12px 14px;border-top:1px solid #f5f5f5;text-align:center;}
.right-card.hot-rec-card .right-card-more{
    display:inline-block;color:var(--brand-primary);text-decoration:none;
    font-size:var(--fs-base);font-weight:500;transition:color .2s;
}
.right-card.hot-rec-card .right-card-more:hover{color:#2f7eb8;text-decoration:underline;}
.right-card.hot-rec-card .no-data{text-align:center;color:#8a96a3;padding:20px;font-size:var(--fs-base);}
