| <!DOCTYPE html> |
| <html lang="zh-CN"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>MedVision AI - 智能医学影像分析平台</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(20px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
| .animate-fade-in { |
| animation: fadeIn 1s ease-out forwards; |
| } |
| .gradient-bg { |
| background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); |
| } |
| .feature-card:hover { |
| transform: translateY(-10px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| .screenshot { |
| border-radius: 12px; |
| box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); |
| transition: all 0.3s ease; |
| } |
| .screenshot:hover { |
| transform: scale(1.03); |
| } |
| .stats-item { |
| position: relative; |
| } |
| .stats-item::after { |
| content: ''; |
| position: absolute; |
| right: 0; |
| top: 50%; |
| transform: translateY(-50%); |
| height: 60%; |
| width: 1px; |
| background-color: rgba(255, 255, 255, 0.2); |
| } |
| .stats-item:last-child::after { |
| display: none; |
| } |
| </style> |
| </head> |
| <body class="font-sans antialiased text-gray-800"> |
| |
| <nav class="bg-white shadow-md fixed w-full z-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex justify-between h-16"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 flex items-center"> |
| <i class="fas fa-lungs text-blue-600 text-2xl mr-2"></i> |
| <span class="text-xl font-bold text-blue-800">MedVision AI</span> |
| </div> |
| </div> |
| <div class="hidden md:flex items-center space-x-8"> |
| <a href="#features" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">功能</a> |
| <a href="#technology" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">技术</a> |
| <a href="#solutions" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">解决方案</a> |
| <a href="#cases" class="text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">案例</a> |
| <a href="#contact" class="bg-blue-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-blue-700 transition duration-300">联系我们</a> |
| </div> |
| <div class="md:hidden flex items-center"> |
| <button class="text-gray-700 focus:outline-none"> |
| <i class="fas fa-bars text-xl"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <header class="gradient-bg pt-24 pb-20 md:pt-32 md:pb-28"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="md:flex md:items-center md:justify-between"> |
| <div class="md:w-1/2 animate-fade-in" style="animation-delay: 0.2s;"> |
| <h1 class="text-4xl md:text-5xl font-bold text-white leading-tight mb-6"> |
| 下一代医学影像<br>人工智能分析平台 |
| </h1> |
| <p class="text-lg text-blue-100 mb-8 max-w-lg"> |
| MedVision AI 提供精准、高效的医学影像分析解决方案,帮助医生更快、更准确地诊断疾病,提高医疗服务质量。 |
| </p> |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
| <a href="#demo" class="bg-white text-blue-600 px-6 py-3 rounded-md text-lg font-semibold hover:bg-gray-100 transition duration-300 text-center"> |
| 申请演示 |
| </a> |
| <a href="#contact" class="border-2 border-white text-white px-6 py-3 rounded-md text-lg font-semibold hover:bg-white hover:text-blue-600 transition duration-300 text-center"> |
| 了解更多 |
| </a> |
| </div> |
| </div> |
| <div class="md:w-1/2 mt-12 md:mt-0 animate-fade-in" style="animation-delay: 0.4s;"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="AI医学影像分析" class="screenshot w-full max-w-xl mx-auto"> |
| <div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-lg hidden md:block"> |
| <div class="flex items-center"> |
| <div class="bg-blue-100 p-3 rounded-full mr-3"> |
| <i class="fas fa-check text-blue-600 text-xl"></i> |
| </div> |
| <div> |
| <p class="text-sm text-gray-500">准确率</p> |
| <p class="text-xl font-bold text-blue-800">98.7%</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </header> |
|
|
| |
| <section class="bg-blue-700 py-8"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-4 text-center text-white"> |
| <div class="stats-item py-4"> |
| <p class="text-3xl font-bold">500+</p> |
| <p class="text-sm opacity-80">医疗机构使用</p> |
| </div> |
| <div class="stats-item py-4"> |
| <p class="text-3xl font-bold">10M+</p> |
| <p class="text-sm opacity-80">影像分析</p> |
| </div> |
| <div class="stats-item py-4"> |
| <p class="text-3xl font-bold">30+</p> |
| <p class="text-sm opacity-80">疾病类型</p> |
| </div> |
| <div class="stats-item py-4"> |
| <p class="text-3xl font-bold">0.5s</p> |
| <p class="text-sm opacity-80">平均分析时间</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="features" class="py-20 bg-gray-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">AI赋能医学影像诊断</h2> |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> |
| MedVision AI 提供全方位的医学影像分析解决方案,覆盖多种影像模态和疾病类型 |
| </p> |
| </div> |
| |
| <div class="grid md:grid-cols-3 gap-8"> |
| <div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300"> |
| <div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6"> |
| <i class="fas fa-brain text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="text-xl font-bold text-gray-900 mb-3">智能病灶检测</h3> |
| <p class="text-gray-600 mb-4"> |
| 自动识别CT、MRI等影像中的异常区域,标记可疑病灶,减少漏诊风险。 |
| </p> |
| <ul class="space-y-2"> |
| <li class="flex items-center"> |
| <i class="fas fa-check text-blue-500 mr-2"></i> |
| <span>支持多器官分析</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check text-blue-500 mr-2"></i> |
| <span>3D病灶重建</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check text-blue-500 mr-2"></i> |
| <span>良恶性概率评估</span> |
| </li> |
| </ul> |
| </div> |
| |
| <div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300"> |
| <div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6"> |
| <i class="fas fa-chart-line text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="text-xl font-bold text-gray-900 mb-3">定量分析报告</h3> |
| <p class="text-gray-600 mb-4"> |
| 自动生成结构化报告,提供病灶大小、体积、密度等定量数据,辅助临床决策。 |
| </p> |
| <ul class="space-y-2"> |
| <li class="flex items-center"> |
| <i class="fas fa-check text-blue-500 mr-2"></i> |
| <span>多参数测量</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check text-blue-500 mr-2"></i> |
| <span>历史对比</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check text-blue-500 mr-2"></i> |
| <span>标准化报告模板</span> |
| </li> |
| </ul> |
| </div> |
| |
| <div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300"> |
| <div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6"> |
| <i class="fas fa-user-md text-blue-600 text-2xl"></i> |
| </div> |
| <h3 class="text-xl font-bold text-gray-900 mb-3">临床决策支持</h3> |
| <p class="text-gray-600 mb-4"> |
| 基于海量临床数据和最新指南,为医生提供个性化治疗建议和随访方案。 |
| </p> |
| <ul class="space-y-2"> |
| <li class="flex items-center"> |
| <i class="fas fa-check text-blue-500 mr-2"></i> |
| <span>治疗方案推荐</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check text-blue-500 mr-2"></i> |
| <span>预后评估</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check text-blue-500 mr-2"></i> |
| <span>多学科会诊支持</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="technology" class="py-20 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="md:flex items-center"> |
| <div class="md:w-1/2 mb-12 md:mb-0"> |
| <img src="https://images.unsplash.com/photo-1629904853893-c2c8981a1dc5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="AI技术" class="screenshot w-full rounded-lg"> |
| </div> |
| <div class="md:w-1/2 md:pl-12"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">领先的AI技术平台</h2> |
| <p class="text-lg text-gray-600 mb-8"> |
| 我们的深度学习算法基于数百万标注影像训练,结合迁移学习和联邦学习技术,持续优化模型性能。 |
| </p> |
| |
| <div class="space-y-6"> |
| <div class="flex"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600"> |
| <i class="fas fa-robot text-xl"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900">多模态深度学习</h3> |
| <p class="mt-2 text-gray-600"> |
| 支持CT、MRI、X光、超声等多种影像模态的联合分析,提高诊断准确性。 |
| </p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600"> |
| <i class="fas fa-shield-alt text-xl"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900">隐私保护技术</h3> |
| <p class="mt-2 text-gray-600"> |
| 采用联邦学习和差分隐私技术,确保患者数据安全,符合医疗数据合规要求。 |
| </p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600"> |
| <i class="fas fa-sync-alt text-xl"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900">持续学习系统</h3> |
| <p class="mt-2 text-gray-600"> |
| 模型通过实际使用反馈不断优化,保持诊断能力的持续提升。 |
| </p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="solutions" class="py-20 bg-gray-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">专业领域解决方案</h2> |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> |
| 针对不同临床场景和专科需求,提供定制化AI分析工具 |
| </p> |
| </div> |
| |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| <div class="bg-white rounded-xl overflow-hidden shadow-md"> |
| <div class="h-48 bg-blue-600 flex items-center justify-center"> |
| <i class="fas fa-heartbeat text-white text-6xl"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold text-gray-900 mb-3">心血管影像分析</h3> |
| <p class="text-gray-600 mb-4"> |
| 冠状动脉CTA自动分析,斑块检测,狭窄程度评估,心脏功能定量分析。 |
| </p> |
| <a href="#" class="text-blue-600 font-medium inline-flex items-center"> |
| 了解更多 <i class="fas fa-chevron-right ml-1 text-sm"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-md"> |
| <div class="h-48 bg-green-600 flex items-center justify-center"> |
| <i class="fas fa-lungs text-white text-6xl"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold text-gray-900 mb-3">胸部CT智能筛查</h3> |
| <p class="text-gray-600 mb-4"> |
| 肺结节自动检测与分类,肺癌风险评估,肺炎病灶分析,肺气肿定量评估。 |
| </p> |
| <a href="#" class="text-blue-600 font-medium inline-flex items-center"> |
| 了解更多 <i class="fas fa-chevron-right ml-1 text-sm"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-md"> |
| <div class="h-48 bg-purple-600 flex items-center justify-center"> |
| <i class="fas fa-brain text-white text-6xl"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold text-gray-900 mb-3">神经影像分析</h3> |
| <p class="text-gray-600 mb-4"> |
| 脑卒中病灶检测,脑肿瘤分割与分级,脑萎缩定量分析,白质病变评估。 |
| </p> |
| <a href="#" class="text-blue-600 font-medium inline-flex items-center"> |
| 了解更多 <i class="fas fa-chevron-right ml-1 text-sm"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-md"> |
| <div class="h-48 bg-yellow-600 flex items-center justify-center"> |
| <i class="fas fa-bone text-white text-6xl"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold text-gray-900 mb-3">骨肌系统分析</h3> |
| <p class="text-gray-600 mb-4"> |
| 骨折自动检测,骨质疏松评估,关节间隙测量,骨龄评估,肌肉脂肪定量。 |
| </p> |
| <a href="#" class="text-blue-600 font-medium inline-flex items-center"> |
| 了解更多 <i class="fas fa-chevron-right ml-1 text-sm"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-md"> |
| <div class="h-48 bg-red-600 flex items-center justify-center"> |
| <i class="fas fa-procedures text-white text-6xl"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold text-gray-900 mb-3">腹部影像分析</h3> |
| <p class="text-gray-600 mb-4"> |
| 肝脏病变检测,胰腺肿瘤分析,肾脏囊肿分类,腹腔淋巴结评估。 |
| </p> |
| <a href="#" class="text-blue-600 font-medium inline-flex items-center"> |
| 了解更多 <i class="fas fa-chevron-right ml-1 text-sm"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div class="bg-white rounded-xl overflow-hidden shadow-md"> |
| <div class="h-48 bg-pink-600 flex items-center justify-center"> |
| <i class="fas fa-female text-white text-6xl"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold text-gray-900 mb-3">乳腺影像分析</h3> |
| <p class="text-gray-600 mb-4"> |
| 乳腺X线摄影(MG)病灶检测,乳腺超声分析,BI-RADS自动分类,乳腺癌风险评估。 |
| </p> |
| <a href="#" class="text-blue-600 font-medium inline-flex items-center"> |
| 了解更多 <i class="fas fa-chevron-right ml-1 text-sm"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="cases" class="py-20 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">成功案例</h2> |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> |
| 我们已帮助众多医疗机构提升影像诊断效率和质量 |
| </p> |
| </div> |
| |
| <div class="grid md:grid-cols-3 gap-8"> |
| <div class="bg-gray-50 p-8 rounded-xl"> |
| <div class="flex items-center mb-6"> |
| <div class="h-12 w-12 rounded-full bg-blue-100 flex items-center justify-center mr-4"> |
| <i class="fas fa-hospital text-blue-600 text-xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold text-gray-900">北京协和医院</h4> |
| <p class="text-sm text-gray-500">三甲综合医院</p> |
| </div> |
| </div> |
| <p class="text-gray-600 mb-6"> |
| "采用MedVision AI肺结节分析系统后,我们的早期肺癌检出率提高了32%,平均报告时间缩短了65%。" |
| </p> |
| <div class="flex items-center"> |
| <div class="h-10 w-10 rounded-full overflow-hidden mr-3"> |
| <img src="https://randomuser.me/api/portraits/women/32.jpg" alt="张医生" class="h-full w-full object-cover"> |
| </div> |
| <div> |
| <p class="text-sm font-medium text-gray-900">张医生</p> |
| <p class="text-xs text-gray-500">放射科主任</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="bg-gray-50 p-8 rounded-xl"> |
| <div class="flex items-center mb-6"> |
| <div class="h-12 w-12 rounded-full bg-blue-100 flex items-center justify-center mr-4"> |
| <i class="fas fa-clinic-medical text-blue-600 text-xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold text-gray-900">上海瑞金医院</h4> |
| <p class="text-sm text-gray-500">三甲专科医院</p> |
| </div> |
| </div> |
| <p class="text-gray-600 mb-6"> |
| "心血管AI分析工具帮助我们实现了冠状动脉CTA的标准化报告,减少了医生间诊断差异,提高了临床决策一致性。" |
| </p> |
| <div class="flex items-center"> |
| <div class="h-10 w-10 rounded-full overflow-hidden mr-3"> |
| <img src="https://randomuser.me/api/portraits/men/45.jpg" alt="李医生" class="h-full w-full object-cover"> |
| </div> |
| <div> |
| <p class="text-sm font-medium text-gray-900">李医生</p> |
| <p class="text-xs text-gray-500">心内科副主任</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="bg-gray-50 p-8 rounded-xl"> |
| <div class="flex items-center mb-6"> |
| <div class="h-12 w-12 rounded-full bg-blue-100 flex items-center justify-center mr-4"> |
| <i class="fas fa-hospital-alt text-blue-600 text-xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold text-gray-900">广州中山医院</h4> |
| <p class="text-sm text-gray-500">区域医疗中心</p> |
| </div> |
| </div> |
| <p class="text-gray-600 mb-6"> |
| "神经影像AI分析平台显著提升了我们脑卒中患者的早期识别率,为溶栓治疗争取了宝贵时间窗口。" |
| </p> |
| <div class="flex items-center"> |
| <div class="h-10 w-10 rounded-full overflow-hidden mr-3"> |
| <img src="https://randomuser.me/api/portraits/women/56.jpg" alt="王医生" class="h-full w-full object-cover"> |
| </div> |
| <div> |
| <p class="text-sm font-medium text-gray-900">王医生</p> |
| <p class="text-xs text-gray-500">神经内科主任</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-12 text-center"> |
| <a href="#" class="inline-flex items-center px-6 py-3 border border-gray-300 shadow-sm text-base font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> |
| 查看更多案例 <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="demo" class="py-20 gradient-bg"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center"> |
| <div class="mb-12 lg:mb-0"> |
| <h2 class="text-3xl md:text-4xl font-bold text-white mb-6">体验MedVision AI的强大功能</h2> |
| <p class="text-lg text-blue-100 mb-8 max-w-lg"> |
| 申请产品演示,了解如何将AI医学影像分析集成到您的工作流程中,提升诊断效率和准确性。 |
| </p> |
| <div class="bg-white bg-opacity-10 p-6 rounded-lg border border-white border-opacity-20"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <div class="h-10 w-10 rounded-full bg-blue-100 bg-opacity-20 flex items-center justify-center"> |
| <i class="fas fa-check text-white"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-white">演示包含</h3> |
| <ul class="mt-2 space-y-2 text-blue-100"> |
| <li class="flex items-start"> |
| <i class="fas fa-check mt-1 mr-2 text-xs text-white"></i> |
| <span>实时AI分析展示</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check mt-1 mr-2 text-xs text-white"></i> |
| <span>系统集成方案咨询</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check mt-1 mr-2 text-xs text-white"></i> |
| <span>定制化需求讨论</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check mt-1 mr-2 text-xs text-white"></i> |
| <span>ROI分析报告</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="bg-white rounded-xl shadow-xl overflow-hidden"> |
| <div class="p-8"> |
| <h3 class="text-2xl font-bold text-gray-900 mb-6">申请产品演示</h3> |
| <form> |
| <div class="mb-4"> |
| <label for="name" class="block text-sm font-medium text-gray-700 mb-1">姓名</label> |
| <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请输入您的姓名"> |
| </div> |
| <div class="mb-4"> |
| <label for="hospital" class="block text-sm font-medium text-gray-700 mb-1">医院/机构</label> |
| <input type="text" id="hospital" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请输入医院或机构名称"> |
| </div> |
| <div class="mb-4"> |
| <label for="email" class="block text-sm font-medium text-gray-700 mb-1">电子邮箱</label> |
| <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请输入您的邮箱"> |
| </div> |
| <div class="mb-6"> |
| <label for="phone" class="block text-sm font-medium text-gray-700 mb-1">联系电话</label> |
| <input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请输入您的电话"> |
| </div> |
| <button type="submit" class="w-full bg-blue-600 text-white py-3 px-4 rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 font-medium transition duration-300"> |
| 提交申请 |
| </button> |
| </form> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-gray-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-12"> |
| <h2 class="text-2xl font-bold text-gray-900 mb-4">信任我们的合作伙伴</h2> |
| <p class="text-gray-600 max-w-2xl mx-auto"> |
| 我们与国内外领先的医疗机构、科研院所和技术公司建立了长期合作关系 |
| </p> |
| </div> |
| |
| <div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center"> |
| <div class="flex justify-center"> |
| <div class="h-16 flex items-center"> |
| <i class="fas fa-hospital text-4xl text-gray-400"></i> |
| <span class="ml-2 text-lg font-semibold text-gray-700">协和</span> |
| </div> |
| </div> |
| <div class="flex justify-center"> |
| <div class="h-16 flex items-center"> |
| <i class="fas fa-hospital text-4xl text-gray-400"></i> |
| <span class="ml-2 text-lg font-semibold text-gray-700">华西</span> |
| </div> |
| </div> |
| <div class="flex justify-center"> |
| <div class="h-16 flex items-center"> |
| <i class="fas fa-hospital text-4xl text-gray-400"></i> |
| <span class="ml-2 text-lg font-semibold text-gray-700">301</span> |
| </div> |
| </div> |
| <div class="flex justify-center"> |
| <div class="h-16 flex items-center"> |
| <i class="fas fa-hospital text-4xl text-gray-400"></i> |
| <span class="ml-2 text-lg font-semibold text-gray-700">瑞金</span> |
| </div> |
| </div> |
| <div class="flex justify-center"> |
| <div class="h-16 flex items-center"> |
| <i class="fas fa-hospital text-4xl text-gray-400"></i> |
| <span class="ml-2 text-lg font-semibold text-gray-700">中山</span> |
| </div> |
| </div> |
| <div class="flex justify-center"> |
| <div class="h-16 flex items-center"> |
| <i class="fas fa-hospital text-4xl text-gray-400"></i> |
| <span class="ml-2 text-lg font-semibold text-gray-700">湘雅</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-20 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="lg:grid lg:grid-cols-2 lg:gap-12"> |
| <div class="mb-12 lg:mb-0"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">联系我们</h2> |
| <p class="text-lg text-gray-600 mb-8"> |
| 我们的团队随时准备为您解答关于MedVision AI产品的任何问题,并提供专业的咨询服务。 |
| </p> |
| |
| <div class="space-y-6"> |
| <div class="flex"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600"> |
| <i class="fas fa-map-marker-alt"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900">公司地址</h3> |
| <p class="mt-2 text-gray-600"> |
| 北京市海淀区中关村软件园二期<br> |
| 人工智能创新中心A座8层 |
| </p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600"> |
| <i class="fas fa-phone-alt"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900">联系电话</h3> |
| <p class="mt-2 text-gray-600"> |
| 400-888-8888<br> |
| 周一至周五 9:00-18:00 |
| </p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600"> |
| <i class="fas fa-envelope"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900">电子邮箱</h3> |
| <p class="mt-2 text-gray-600"> |
| contact@medvisionai.com<br> |
| 技术支持: support@medvisionai.com |
| </p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div> |
| <div class="bg-gray-50 p-8 rounded-xl shadow-md"> |
| <h3 class="text-2xl font-bold text-gray-900 mb-6">发送消息</h3> |
| <form> |
| <div class="mb-4"> |
| <label for="contact-name" class="block text-sm font-medium text-gray-700 mb-1">姓名</label> |
| <input type="text" id="contact-name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请输入您的姓名"> |
| </div> |
| <div class="mb-4"> |
| <label for="contact-email" class="block text-sm font-medium text-gray-700 mb-1">电子邮箱</label> |
| <input type="email" id="contact-email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请输入您的邮箱"> |
| </div> |
| <div class="mb-4"> |
| <label for="contact-subject" class="block text-sm font-medium text-gray-700 mb-1">主题</label> |
| <input type="text" id="contact-subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请输入主题"> |
| </div> |
| <div class="mb-6"> |
| <label for="contact-message" class="block text-sm font-medium text-gray-700 mb-1">消息内容</label> |
| <textarea id="contact-message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请输入您的消息"></textarea> |
| </div> |
| <button type="submit" class="w-full bg-blue-600 text-white py-3 px-4 rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 font-medium transition duration-300"> |
| 发送消息 |
| </button> |
| </form> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-900 text-white pt-16 pb-8"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-12"> |
| <div> |
| <h3 class="text-lg font-semibold mb-4">产品</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">功能特性</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">解决方案</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">定价</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">演示申请</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-lg font-semibold mb-4">资源</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">文档中心</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">API接口</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">技术博客</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">案例研究</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-lg font-semibold mb-4">公司</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">关于我们</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">团队</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">新闻</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">招聘</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-lg font-semibold mb-4">法律</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">隐私政策</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">服务条款</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">合规认证</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">数据安全</a></li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="pt-8 border-t border-gray-800"> |
| <div class="md:flex md:items-center md:justify-between"> |
| <div class="flex justify-center md:justify-start mb-4 md:mb-0"> |
| <div class="flex-shrink-0 flex items-center"> |
| <i class="fas fa-lungs text-blue-400 text-2xl mr-2"></i> |
| <span class="text-xl font-bold text-white">MedVision AI</span> |
| </div> |
| </div> |
| <div class="flex justify-center md:justify-end space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-weixin text-xl"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-weibo text-xl"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-linkedin text-xl"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-github text-xl"></i> |
| </a> |
| </div> |
| </div> |
| <div class="mt-8 text-center text-gray-400 text-sm"> |
| <p>© 2023 MedVision AI Technologies. 保留所有权利。</p> |
| <p class="mt-2">京ICP备12345678号 | 京公网安备11010802012345号</p> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| document.addEventListener('DOMContentLoaded', function() { |
| const observer = new IntersectionObserver((entries) => { |
| entries.forEach(entry => { |
| if (entry.isIntersecting) { |
| entry.target.classList.add('animate-fade-in'); |
| } |
| }); |
| }, { |
| threshold: 0.1 |
| }); |
| |
| document.querySelectorAll('section').forEach(section => { |
| observer.observe(section); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| |
| const targetId = this.getAttribute('href'); |
| if (targetId === '#') return; |
| |
| const targetElement = document.querySelector(targetId); |
| if (targetElement) { |
| window.scrollTo({ |
| top: targetElement.offsetTop - 80, |
| behavior: 'smooth' |
| }); |
| } |
| }); |
| }); |
| }); |
| </script> |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Hulking83/medai01" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |