        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.6;
        }
        /* 容器样式 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* 左侧图片区域 */
        .left-layout {
            flex: 7;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .img-section {
            width: 100%;
            background-color: #fff;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .main-img {
            width: 100%;
            /*height: auto;*/
            border-radius: 4px;
            margin-bottom: 10px;
            height: 460px;
            object-fit: cover;
        }

        .img-thumbs {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 5px;
        }

        .img-thumb {
            width: 160px;
            height: 100px;
            object-fit: cover;
            border-radius: 4px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .img-thumb:hover {
            opacity: 1;
        }

        /* 右侧信息区域 */
        .info-section {
            flex: 3;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* 价格信息卡片 */
        .price-card, .detail-card, .booking-card {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .price {
            color: #f03838;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .house-code {
            font-size: 14px;
            color: #999;
            margin-bottom: 15px;
        }

        /* 详情表格 */
        .detail-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .detail-table td {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .detail-table td:first-child {
            color: #999;
            width: 40%;
        }

        /* 预约按钮 */
        .booking-btn {
            width: 100%;
            padding: 12px;
            background-color: #56aaff;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-bottom: 15px;
        }

        .booking-btn:hover {
            background-color: #2e86de;
        }

        .qrcode {
            width: 100%;
            max-width: 180px;
            margin: 0 auto;
            display: block;
        }

        .qrcode-desc {
            text-align: center;
            font-size: 12px;
            color: #999;
            margin-top: 8px;
        }

        /* 服务配套 */
        .service-section {
            width: 100%;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .service-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #666;
        }
        .service-title-sum{
            border-bottom: 1px solid #dbdbdb;
        }
        .service-tags {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .service-tag {
            color: #666;
            font-size: 14px;
        }

        /* 切换按钮区域 */
        .tab-buttons {
            display: flex;
            border-bottom: 1px solid #eee;
        }
        .tab-btn {
            padding: 10px 0px;
            background: #fff;
            border: none;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            font-size: 15px;
            color: #333;
            transition: all 0.2s;
            margin-right: 40px;
        }
        .tab-btn.active {
            border-bottom-color: #56aaff;
            color: #56aaff;
            font-weight: bold;
        }
        .tab-btn:hover {
            color: #56aaff;
        }

        /* 切换内容区域 */
        .tab-content {
            padding: 20px 0;
            min-height: 100px;
        }
        .tab-panel {
            display: none;
        }
        .tab-panel.active {
            display: block;
        }
        .tab-panel .house-tags .house-tag{
            font-size: 16px;
        }
        .tab-panel .house-list .house-info .house-tags .house-tag{
            font-size: 12px;
        }
        /*房源推荐列表*/
        .house-list {
            width: 98%;
            max-width: 1200px;
            margin: 0;
        }
        .house-item {
            display: flex;
            padding: 15px 20px 15px 0;
            border-bottom: 1px solid #eee;
        }
        .house-img {
            width: 160px;
            height: 120px;
            margin-right: 15px;
            flex-shrink: 0;
            position: relative;
        }
        .recommend-tag {
            position: absolute;
            top: 0;
            left: 0;
            width: 49px;
            height: 50px;
            text-align: center;
            line-height: 20px;
            background: url(../image/hl_u3.png) 0 0 !important;
        }
        .house-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }
        .house-info {
            flex: 1;
        }
        .house-title {
            font-size: 16px;
            color: #333;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .house-base {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            line-height: 1.5;
        }
        .house-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 8px;
        }
        .house-tag {
            padding: 2px 6px;
            font-size: 12px;
            border-radius: 3px;
            color: white;
        }

        /* 不同类型标签的背景色 */
        .tag-red {
            background-color: #f03838;
        }

        .tag-blue {
            background-color: #2e86de;
        }

        .tag-green {
            background-color: #28a745;
        }

        .tag-gray {
            background-color: #6c757d;
        }
        .publish-date {
            font-size: 12px;
            color: #999;
        }
        .house-price {
            width: 100px;
            text-align: right;
            flex-shrink: 0;
        }
        .house-price-box{
            margin-top: 30px;
        }
        .price-num {
            font-size: 20px;
            color: #f03838;
            font-weight: bold;
        }
        .price-unit {
            font-size: 12px;
            color: #666;
        }


        /* 响应式适配 */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .img-thumb {
                width: 60px;
                height: 45px;
            }
            .service-section {
                padding: 10px;
            }
            .tab-btn {
                padding: 5px 0px;
                margin-right: 10px;
            }
            .house-img {
                width: 45%;
            }
            .house-info {
                width: 55%;
            }
            .house-title {
                font-size: 14px;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                overflow: hidden;
            }
            .house-item {
                padding: 5px 0px 5px 0;
            }
            .house-price {
                display: none;
            }
            .house-info .house-tags{
                display: none;
            }

        }
