
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans SC', 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1f2f3a;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* 主色调：柔和蓝绿 + 温暖橙 */
        :root {
            --primary: #2f8b8c;
            --primary-light: #e0f0f0;
            --secondary: #f4a261;
            --secondary-light: #fff1e6;
            --accent: #e9c46a;
            --gray-bg: #f9fafb;
            --text-dark: #1e2a32;
            --text-muted: #5b6e7c;
            --border-light: #e4e9ed;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
            --radius-lg: 28px;
            --radius-md: 20px;
            --radius-sm: 12px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 按钮 & 链接 */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary-light);
        }

        .btn:hover {
            background-color: #236f70;
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(47, 139, 140, 0.25);
        }

        .btn-secondary {
            background-color: var(--secondary);
        }

        .btn-secondary:hover {
            background-color: #e08e3a;
        }

        section {
            padding: 64px 0;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 48px;
            color: var(--text-dark);
            letter-spacing: -0.3px;
        }

        .section-title span {
            color: var(--primary);
            border-bottom: 4px solid var(--secondary);
            display: inline-block;
            padding-bottom: 6px;
        }

        /* 顶部导航 */
        .navbar {
            background: white;
            box-shadow: 0 1px 0 var(--border-light);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(255, 255, 255, 0.96);
        }

        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            flex-wrap: wrap;
        }


        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* Hero 区域 */
        .hero {
            background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
            padding: 60px 0 40px;
        }

        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .hero-content {
            flex: 1;
        }

        .hero-badge {
            background: var(--secondary-light);
            color: var(--secondary);
            display: inline-block;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #1e2a32;
        }

        .hero-highlight {
            color: var(--primary);
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .hero-stats {
            flex: 0.8;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            background: white;
            padding: 28px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }

        /* 信任轮播简化 (静态好评) */
        .reviews-row {
            background: var(--gray-bg);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

        .review-card {
            background: white;
            border-radius: 20px;
            padding: 16px 20px;
            flex: 1;
            min-width: 200px;
            box-shadow: var(--shadow-sm);
            border-left: 5px solid var(--secondary);
			transition: all 0.5s;
        }
        .review-card:hover {
			transform: translateY(-3px);
		}

        /* 特色服务卡片 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
            margin-top: 20px;
        }

        .service-card {
            background: white;
            border-radius: var(--radius-md);
            padding: 30px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
			transition: all 0.5s;
        }

        .service-card i {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 12px;
        }

		.service-card:hover{
			transform: translateY(-3px);

		}
        /* 分龄区块 */
        .age-boxes {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }

        .age-card {
            background: var(--gray-bg);
            border-radius: var(--radius-md);
            flex: 1;
            min-width: 250px;
            padding: 28px 20px;
            transition: all 0.2s;
        }

        .age-card h3 {
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 16px;
        }

        /* 医生团队 */
        .doctors-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
        }

        .doctor-card {
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            padding: 28px 20px;
            text-align: center;
            flex: 1;
            min-width: 240px;
        }

        .doctor-avatar {
            width: 150px;
            height: 150px;
            background: var(--primary-light);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--primary);
			border:4px solid #A8D5E5;
        }

        /* 环境图片墙模拟 */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            background: #d9e8e7;
            border-radius: 24px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            color: var(--primary);
            font-weight: 500;
            box-shadow: var(--shadow-sm);
        }

        /* FAQ 折叠 */
        .faq-item {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 20px;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 24px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            background: white;
        }

        .faq-answer {
            padding: 0 24px 20px 24px;
            color: var(--text-muted);
            display: none;
            border-top: 1px solid var(--border-light);
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* 最终Cta */
        .cta-section {
            background: var(--primary-light);
            border-radius: 40px;
            text-align: center;
            padding: 56px 32px;
            margin-bottom: 64px;
        }

        footer {
            background: #1f2f3a;
            color: #cddfe6;
            padding: 40px 0;
            text-align: center;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .hero-grid {
                flex-direction: column;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .nav-flex {
                flex-direction: column;
                gap: 12px;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        input, select, textarea {
            border-radius: 60px;
            border: 1px solid var(--border-light);
            padding: 12px 20px;
            width: 100%;
            font-family: inherit;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .modal-bg {
            display: none;
            position: fixed;
            top:0;left:0;width:100%;height:100%;
            background: rgba(0,0,0,0.5);
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .modal-card {
            background: white;
            max-width: 500px;
            width: 90%;
            padding: 32px;
            border-radius: 32px;
        }
        .logo {
            /*font-size: 1.6rem;
            color: var(--primary);
            font-weight: 700;
			letter-spacing: 2px;*/
       }

        .logo i {
            color: var(--secondary);
            margin-right: 6px;
        }
	.logo{float:left;width:280px;overflow:hidden;height:75px;overflow:hidden;margin-top:15px;padding:10px 0px;background:url('/images/logo.png') no-repeat  top center;text-align:center;line-height:100px;letter-spacing:4px;}
	.logo span{margin-right:30px;float:right;}

