* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #f5f7fc;
            font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
            color: #1a2c3e;
            line-height: 1.5;
        }

        /* 顶部导航 */
        .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: 24px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo p {
            font-size: 12px;
            opacity: 0.8;
        }

        .nav {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }

        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.2s;
        }

        .nav a:hover {
            opacity: 0.8;
        }

        /* 英雄区 */
        .hero {
            background-image: url(/addon/skin/images/home_head_bg_optm_250416_5.jpg);
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px -12px rgb(0 40 70 / 40%);
            padding: 60px 0 70px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 20px); }
        }

        .hero .container {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            text-align: center;
        }

        .hero h2 {
			color:#fff;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .hero p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            background: white;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .search-box input {
            flex: 1;
            border: none;
            padding: 16px 24px;
            font-size: 16px;
            outline: none;
        }

        .search-box button {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border: none;
            padding: 0 32px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .search-box button:hover {
            opacity: 0.9;
        }

        /* 主要内容区 */
        .main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 32px;
        }

        /* 统计数据 */
        .stats-section {
            background: white;
            border-radius: 28px;
            padding: 32px 40px;
            margin-bottom: 48px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            border: 1px solid #e2e8f0;
        }

        .stats-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: #2c9cd4;
        }

        .stat-label {
            font-size: 14px;
            color: #64748b;
            margin-top: 6px;
        }

        /* 地区筛选 */
        .region-section {
            margin-bottom: 48px;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            color: #2c9cd4;
        }

        .region-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .region-tag {
            background: white;
            border: 1px solid #e2e8f0;
            padding: 10px 24px;
            border-radius: 40px;
            text-decoration: none;
            color: #1a2c3e;
            font-weight: 500;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .region-tag:hover {
            background: #2c9cd4;
            color: white;
            border-color: #2c9cd4;
        }

        .region-tag .count {
            color: #94a3b8;
            font-size: 12px;
        }

        .region-tag:hover .count {
            color: white;
        }

        /* 养老院卡片网格 */
        .nursing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 28px;
            margin-bottom: 48px;
        }

        .nursing-card {
            background: white;
            border-radius: 24px;
            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: 180px;
            background: linear-gradient(135deg, #2c9cd4, #1a6e9e);
            position: relative;
            overflow: hidden;
        }

        .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: 20px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .card-location {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-price {
            font-size: 16px;
            font-weight: 700;
            color: #f59e0b;
            margin-bottom: 12px;
        }

        .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: 16px 20px 20px;
            border-top: 1px solid #f1f5f9;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-detail {
            background: #eff6ff;
            color: #2c9cd4;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .nursing-card:hover .btn-detail {
            background: #2c9cd4;
            color: white;
        }

        /* 查看更多按钮 */
        .more-link {
            text-align: center;
            margin-top: 20px;
        }

        .btn-more {
            display: inline-block;
            background: white;
            border: 1px solid #2c9cd4;
            color: #2c9cd4;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s;
        }

        .btn-more:hover {
            background: #2c9cd4;
            color: white;
        }

        /* 底部 */
        .footer {
            background: #0f172a;
            color: #94a3b8;
            text-align: center;
            padding: 40px 20px;
            margin-top: 20px;
        }

        .footer p {
            font-size: 14px;
        }

        .footer a {
            color: #94a3b8;
            text-decoration: none;
        }

        .footer a:hover {
            color: white;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 28px;
            }
            .hero p {
                font-size: 14px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 30px;
            }
            .search-box button {
                padding: 12px;
            }
            .nursing-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                gap: 20px;
            }
            .stat-number {
                font-size: 28px;
            }
            .region-tags {
                justify-content: center;
            }
            .header .container {
                flex-direction: column;
                text-align: center;
            }
            .nav {
                justify-content: center;
            }
        }