 * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: #f5f7fc; font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', Roboto, sans-serif; color: #1a2c3e; }
        
        .header { background: linear-gradient(135deg, #1e3c5c 0%, #2a5298 100%); color: white; padding: 16px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
        .header .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
        .logo h1 { font-size: 22px; font-weight: 700; }
        .logo p { font-size: 12px; opacity: 0.8; }
        .nav a { color: white; text-decoration: none; margin-left: 24px; font-weight: 500; transition: opacity 0.2s; }
        .nav a:hover { opacity: 0.8; }
        
        .main { max-width: 1280px; margin: 32px auto; padding: 0 32px; }
        
        .breadcrumb { margin-bottom: 20px; font-size: 14px; color: #64748b; }
        .breadcrumb a { color: #2c9cd4; text-decoration: none; }
        
        .city-header { background: white; border-radius: 20px; padding: 24px; margin-bottom: 24px; border: 1px solid #e2e8f0; }
        .city-name { font-size: 28px; font-weight: 700; color: #1a2c3e; }
        .city-name i { color: #2c9cd4; margin-right: 12px; }
        .city-desc { color: #64748b; margin-top: 8px; }
        .result-count { margin-top: 12px; padding-top: 12px; border-top: 1px solid #eef2f6; color: #64748b; font-size: 14px; }
        .result-count strong { color: #2c9cd4; font-size: 18px; }
        
        /* 区域导航 */
        .district-nav { background: white; border-radius: 20px; padding: 16px 24px; margin-bottom: 24px; border: 1px solid #e2e8f0; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
        .nav-label { font-weight: 600; color: #1e293b; display: flex; align-items: center; gap: 6px; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 12px; }
        .nav-link { background: #f1f5f9; padding: 6px 18px; border-radius: 30px; text-decoration: none; color: #475569; font-size: 14px; transition: all 0.2s; }
        .nav-link:hover { background: #2c9cd4; color: white; }
        .nav-link.active { background: #2c9cd4; color: white; }
        .clear-filter { color: #ef4444; text-decoration: none; font-size: 13px; margin-left: auto; }
        .clear-filter:hover { color: #dc2626; }
        
        .recommend-section { margin-bottom: 40px; }
        .section-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: #f59e0b; }
        .recommend-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
        .recommend-card { background: linear-gradient(135deg, #fff9eb, #fff3e0); border-radius: 20px; overflow: hidden; border: 1px solid #fde68a; transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
        .recommend-card:hover { transform: translateY(-5px); box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15); }
        
        .nursing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-bottom: 40px; }
        .nursing-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border: 1px solid #e2e8f0; transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
        .nursing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15); }
        .card-img { height: 160px; background: linear-gradient(135deg, #2c9cd4, #1a6e9e); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; color: white; }
        .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
        .nursing-card:hover .card-img img { transform: scale(1.05); }
        .recommend-tag { position: absolute; top: 12px; right: 12px; background: #f59e0b; color: white; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }
        .card-info { padding: 16px; }
        .card-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
        .card-location { font-size: 13px; color: #64748b; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
        .card-price { font-size: 16px; font-weight: 700; color: #f59e0b; margin-bottom: 10px; }
        .card-desc { font-size: 13px; color: #5a6e7c; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .card-footer { padding: 12px 16px 16px; border-top: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; }
        .btn-detail { background: #eff6ff; color: #2c9cd4; padding: 6px 18px; border-radius: 30px; font-size: 13px; font-weight: 500; transition: all 0.2s; }
        .nursing-card:hover .btn-detail { background: #2c9cd4; color: white; }
        
        .bottom-section { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; margin-bottom: 40px; }
        .bottom-card { background: white; border-radius: 20px; border: 1px solid #e2e8f0; overflow: hidden; }
        .bottom-header { padding: 18px 20px; border-bottom: 1px solid #eef2f6; background: #fefefe; }
        .bottom-header h3 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
        .bottom-header h3 i { color: #2c9cd4; }
        .bottom-body { padding: 16px 20px; }
        .guide-list, .news-list { list-style: none; }
        .guide-item, .news-item { padding: 12px 0; border-bottom: 1px solid #f1f5f9; display: flex; gap: 12px; text-decoration: none; color: inherit; transition: all 0.2s; }
        .guide-item:hover, .news-item:hover { transform: translateX(5px); background: #fafcff; padding-left: 8px; }
        .guide-icon { width: 40px; height: 40px; background: #eff6ff; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #2c9cd4; flex-shrink: 0; }
        .guide-info { flex: 1; }
        .guide-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
        .guide-desc { font-size: 12px; color: #64748b; }
        .guide-meta { font-size: 11px; color: #94a3b8; margin-top: 6px; }
        .news-date { min-width: 80px; font-size: 12px; color: #2c9cd4; }
        .news-title { flex: 1; font-size: 14px; font-weight: 500; }
        .news-title .top { background: #f59e0b; color: white; padding: 2px 8px; border-radius: 20px; font-size: 10px; margin-left: 8px; }
        .more-link { text-align: center; margin-top: 16px; padding-top: 12px; border-top: 1px solid #eef2f6; }
        .more-link a { color: #2c9cd4; text-decoration: none; font-size: 13px; }
        
        .pagination { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 30px 0; }
        .pagination a, .pagination span { padding: 8px 16px; border-radius: 10px; background: white; border: 1px solid #e2e8f0; text-decoration: none; color: #475569; transition: all 0.2s; }
        .pagination a:hover { background: #2c9cd4; color: white; border-color: #2c9cd4; }
        .pagination .current { background: #2c9cd4; color: white; border-color: #2c9cd4; }
        
        .empty-state { text-align: center; padding: 60px; background: white; border-radius: 20px; color: #94a3b8; }
        .footer { background: #0f172a; color: #94a3b8; text-align: center; padding: 40px 20px; margin-top: 40px; }
        .footer a { color: #94a3b8; text-decoration: none; margin: 0 10px; }
        .footer a:hover { color: white; }
        
        @media (max-width: 768px) {
            .main { padding: 0 20px; }
            .recommend-grid, .nursing-grid { grid-template-columns: 1fr; }
            .bottom-section { grid-template-columns: 1fr; }
            .header .container { flex-direction: column; text-align: center; }
            .nav a { margin: 0 12px; }
            .district-nav { flex-direction: column; align-items: flex-start; }
            .clear-filter { margin-left: 0; margin-top: 8px; }
        }
		/* ========= 专业大气 如何选择养老院 板块 ========= */
        .guide-section {
            background: white;
            border-radius: 32px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            margin-bottom: 48px;
            overflow: hidden;
            border: 1px solid #eef2ff;
        }
        .guide-header {
            background: linear-gradient(120deg, #f0f9ff 0%, #e6f2f9 100%);
            padding: 28px 32px 20px 32px;
            border-bottom: 2px solid #dceaf2;
        }
        .guide-header h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0f2b3d;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .guide-header h2:before {
            content: "📘";
            font-size: 2rem;
        }
        .guide-sub {
            color: #2c5f8a;
            margin-top: 8px;
            font-size: 1rem;
            border-left: 4px solid #fbbf24;
            padding-left: 16px;
            font-weight: 500;
        }
        .guide-content {
            padding: 32px;
        }
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .guide-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 20px;
            transition: all 0.25s;
            border: 1px solid #eef2f8;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }
        .guide-card:hover {
            transform: translateY(-4px);
            border-color: #cbdde9;
            box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
        }
        .guide-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }
        .guide-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 12px;
            border-left: 3px solid #fbbf24;
            padding-left: 12px;
        }
        .guide-card p {
            color: #2c3e4e;
            font-size: 0.95rem;
            line-height: 1.55;
            margin-bottom: 8px;
        }
        .guide-footer {
            margin-top: 32px;
            background: #f1f5f9;
            border-radius: 28px;
            padding: 20px 28px;
            text-align: center;
            font-weight: 500;
            color: #155e75;
            border: 1px solid #e0edf5;
        }
        .guide-footer strong {
            color: #b45309;
            font-size: 1.05rem;
        }  /* 收费标准板块 - 专业大气 */
        .pricing-section {
            background: white;
            border-radius: 32px;
            margin-bottom: 48px;
            border: 1px solid #eef2ff;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
        }
        .pricing-header {
            background: #1e3a5f;
            color: white;
            padding: 24px 32px;
        }
        .pricing-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .pricing-header p {
            opacity: 0.9;
            margin-top: 8px;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            padding: 32px;
        }
        .fee-card {
            background: #fefdf9;
            border-radius: 24px;
            padding: 20px;
            border-left: 5px solid #fbbf24;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        .fee-card h3 {
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #0c4a6e;
        }
        .fee-list {
            list-style: none;
        }
        .fee-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
            font-size: 0.95rem;
        }
        .fee-list li:before {
            content: "•";
            color: #fbbf24;
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            left: 2px;
        }
        .fee-note {
            background: #f0f4f9;
            border-radius: 20px;
            padding: 18px;
            margin-top: 16px;
            font-size: 0.9rem;
        }
        .region-example {
            background: #eef6fc;
            border-radius: 20px;
            padding: 16px;
            margin-top: 16px;
        }
        .price-highlight {
            font-weight: 800;
            color: #c2410c;
        }