        /* 区块标题 */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            position: relative;
            padding-left: 18px;
        }
        
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 28px;
            background: var(--primary-orange);
            border-radius: 3px;
        }
        
        .view-more-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 500;
            transition: gap 0.2s;
        }
        
        .view-more-link:hover {
            gap: 10px;
        }

            /* 热门房源 */
            .hot-properties {
                padding: 60px 0;
                background: var(--bg-light);
            }
            
            .property-card {
                background: #fff;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 4px 20px rgba(0,0,0,0.06);
                transition: transform 0.3s, box-shadow 0.3s;
                cursor: pointer;
                height: 100%;
            }
            
            .property-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            }
            
            .property-image {
                position: relative;
                height: 200px;
                overflow: hidden;
            }
            
            .property-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s;
            }
            
            .property-card:hover .property-image img {
                transform: scale(1.08);
            }
            
            .property-rating {
                position: absolute;
                top: 15px;
                right: 15px;
                background: rgba(255,255,255,0.95);
                padding: 5px 10px;
                border-radius: 20px;
                display: flex;
                align-items: center;
                gap: 5px;
                font-size: 0.85rem;
                font-weight: 600;
            }
            
            .property-rating .star {
                color: var(--success-green);
            }
            
            .property-info {
                padding: 20px;
            }
            
            .property-name {
                font-size: 1.1rem;
                font-weight: 600;
                color: var(--text-dark);
                margin-bottom: 8px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .property-address {
                font-size: 0.9rem;
                color: var(--text-gray);
                margin-bottom: 12px;
                display: flex;
                align-items: center;
                gap: 5px;
            }
            
            .property-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                margin-bottom: 15px;
            }
            
            .property-tag {
                background: #FFF3ED;
                color: var(--primary-orange);
                padding: 4px 10px;
                border-radius: 15px;
                font-size: 0.75rem;
                font-weight: 500;
            }
            
            .property-price {
                display: flex;
                align-items: baseline;
                gap: 5px;
            }
            
            .price-amount {
                font-size: 1.5rem;
                font-weight: 700;
                color: var(--primary-orange);
            }
            
            .price-unit {
                font-size: 0.85rem;
                color: var(--text-gray);
            }
            
            /* 广告横幅 */
            .ad-banner {
                padding: 60px 0;
                background: linear-gradient(135deg, #1a1a2e, #16213e);
                position: relative;
                overflow: hidden;
            }
            
            .ad-banner::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -10%;
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(212, 168, 75, 0.2), transparent);
                border-radius: 50%;
            }
            
            .ad-content {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 60px;
                position: relative;
                z-index: 1;
            }
            
            .ad-badge {
                text-align: center;
            }
            
            .award-icon {
                width: 120px;
                height: 120px;
                background: linear-gradient(135deg, var(--secondary-gold), #E8C56C);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
                box-shadow: 0 10px 30px rgba(212, 168, 75, 0.4);
            }
            
            .award-icon span {
                font-size: 3rem;
            }
            
            .ad-text {
                color: #fff;
                max-width: 500px;
            }
            
            .ad-title {
                font-size: 1.8rem;
                font-weight: 700;
                margin-bottom: 10px;
                background: linear-gradient(135deg, var(--secondary-gold), #E8C56C);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            
            .ad-subtitle {
                font-size: 1.1rem;
                opacity: 0.9;
                margin-bottom: 25px;
            }
            
            .ad-btn {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: var(--secondary-gold);
                color: #1a1a2e;
                padding: 12px 30px;
                border-radius: 30px;
                text-decoration: none;
                font-weight: 600;
                transition: all 0.2s;
            }
            
            .ad-btn:hover {
                background: #E8C56C;
                transform: translateX(5px);
            }
            
            /* 资讯区 */
            .news-section {
                padding: 60px 0;
                background: #fff;
            }
            
            .news-card {
                background: #fff;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 4px 20px rgba(0,0,0,0.06);
                transition: transform 0.3s, box-shadow 0.3s;
                cursor: pointer;
                height: 100%;
            }
            
            .news-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            
            .news-image {
                height: 200px;
                overflow: hidden;
            }
            
            .news-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s;
            }
            
            .news-card:hover .news-image img {
                transform: scale(1.05);
            }
            
            .news-content {
                padding: 20px;
            }
            
            .news-date {
                font-size: 0.85rem;
                color: var(--text-light);
                margin-bottom: 10px;
            }
            
            .news-title {
                font-size: 1.1rem;
                font-weight: 600;
                color: var(--text-dark);
                margin-bottom: 10px;
                line-height: 1.5;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            .news-summary {
                font-size: 0.9rem;
                color: var(--text-gray);
                line-height: 1.6;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            /* 响应式设计 */
            @media (max-width: 1200px) {
                .nav-menu li a {
                    padding: 20px 8px;
                    font-size: 0.85rem;
                }
            }
            
            @media (max-width: 960px) {
                .nav-menu {
                    display: none;
                    position: absolute;
                    top: 100%;
                    left: 0;
                    right: 0;
                    background: #fff;
                    flex-direction: column;
                    padding: 20px;
                    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                }
                
                .nav-menu.active {
                    display: flex;
                }
                
                .nav-menu li a {
                    padding: 12px 0;
                    border-bottom: 1px solid var(--border-gray);
                }
                
                .mobile-menu-btn {
                    display: block;
                }
                
                .hero-section {
                    height: 400px;
                }
                
                .ad-content {
                    flex-direction: column;
                    text-align: center;
                    gap: 30px;
                }
                
                .ad-text {
                    text-align: center;
                }
            }
            
            @media (max-width: 640px) {
                .navbar-container {
                    padding: 10px 15px;
                }
                
                .logo-text {
                    font-size: 1.2rem;
                }
                
                .auth-buttons {
                    display: none;
                }
                
                .lang-switch {
                    padding: 4px 8px;
                    font-size: 0.8rem;
                }
                
                .hero-section {
                    height: 350px;
                }
                
                .hero-subtitle {
                    font-size: 1rem;
                }
                
                .hero-search {
                    flex-direction: column;
                    border-radius: 16px;
                    padding: 15px;
                    gap: 10px;
                }
                
                .hero-search input {
                    width: 100%;
                    padding: 10px;
                }
                
                .hero-search-btn {
                    width: 100%;
                }
                
                .section-title {
                    font-size: 1.4rem;
                }
                
                .footer-content {
                    flex-direction: column;
                    text-align: center;
                }
                
                .footer-brand {
                    text-align: center;
                }
                
                .footer-brand p {
                    margin: 15px auto 0;
                }
                
                .social-icons {
                    justify-content: center;
                }
                
                .footer-bottom {
                    flex-direction: column;
                    text-align: center;
                }
            }
            
            /* 滑动动画 */
            .uk-slider-items > * {
                padding-right: 20px;
            }
            
            /* 自定义滚动条 */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            
            ::-webkit-scrollbar-track {
                background: var(--bg-light);
            }
            
            ::-webkit-scrollbar-thumb {
                background: var(--text-light);
                border-radius: 4px;
            }
            
            ::-webkit-scrollbar-thumb:hover {
                background: var(--text-gray);
            }    