/* 城市/区域筛选（横向链接） */
.cr-filter {
    padding: 6px 0;
}
.cr-filter-row {
    display: flex;
    gap: 14px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
}
.cr-filter-row:first-child {
    border-top: 0;
}
.cr-filter-label {
    flex: 0 0 auto;
    width: 52px;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 28px;
}
.cr-filter-items {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}
.cr-filter-item {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    background: #f5f7fa;
    border: 1px solid #eef0f4;
    transition: all .15s ease;
}
.cr-filter-item:hover {
    color: #7f181d;
    border-color: rgba(255,77,79,.35);
    background: rgba(255,77,79,.06);
}
.cr-filter-item.is-active {
    color: #7f181d;
    border-color: rgba(255,77,79,.35);
    background: rgba(255,77,79,.08);
    font-weight: 600;
}

/* 产品卡片样式 */
.property-card {
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.property-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.property-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.property-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-content {
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.property-title {
    margin-bottom: 12px;
}

.property-title a {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.property-title a:hover {
    color: #7f181d;
}

.property-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.property-details {
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    margin-top: auto;
}

.detail-item {
    margin-bottom: 8px;
    font-size: 13px;
}

.detail-label {
    color: #888;
}

.detail-value {
    color: #333;
    font-weight: 500;
}

/* 筛选结果样式 */
.filter-result {
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 24px;
}

/* 页面背景样式 */
.bg-gray {
    background-color: #f5f7fa;
}
.text-darkkk {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

/* 产品卡片响应式调整 */
@media (max-width: 768px) {
    .property-card {
        margin-bottom: 24px;
    }
    
    .property-image {
        height: 160px;
    }
    
    .property-content {
        height: auto;
        padding: 16px;
    }
}