| <!DOCTYPE html> |
| <html lang="zh-CN"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>服务中心 - 智能家居管家</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> |
| @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap'); |
| |
| body { |
| font-family: 'Noto Sans SC', sans-serif; |
| background-color: #f8f7f5; |
| } |
| |
| .service-card { |
| transition: transform 0.3s ease, box-shadow 0.3s ease; |
| } |
| |
| .service-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 15px 30px rgba(143, 101, 16, 0.15); |
| } |
| |
| .category-icon { |
| transition: all 0.3s ease; |
| } |
| |
| .category-icon:hover { |
| transform: scale(1.1); |
| } |
| |
| .luxury-gradient { |
| background: linear-gradient(to right, #a18c5b, #c5aa6a); |
| } |
| |
| .gold-badge { |
| background: linear-gradient(to right, #d4af37, #f8f4c9); |
| } |
| |
| .gold-icon { |
| color: #d4af37; |
| } |
| |
| .divider { |
| height: 1px; |
| background: linear-gradient(to right, transparent, #d4af37, transparent); |
| } |
| |
| .provider-card { |
| transition: all 0.3s ease; |
| } |
| |
| .provider-card:hover { |
| box-shadow: 0 8px 20px rgba(143, 101, 16, 0.15); |
| } |
| |
| .order-status__completed { |
| background-color: #eaf6ea; |
| color: #4caf50; |
| } |
| |
| .order-status__pending { |
| background-color: #fff8e1; |
| color: #ff9800; |
| } |
| |
| .order-status__cancelled { |
| background-color: #fde8e8; |
| color: #f44336; |
| } |
| |
| ::-webkit-scrollbar { |
| width: 5px; |
| height: 5px; |
| } |
| |
| ::-webkit-scrollbar-track { |
| background: #f8f7f5; |
| } |
| |
| ::-webkit-scrollbar-thumb { |
| background-color: #d4af37; |
| border-radius: 10px; |
| } |
| </style> |
| </head> |
| <body class="text-gray-800"> |
| |
| <header class="luxury-gradient text-white py-3 px-4 sticky top-0 z-10"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center"> |
| <i class="fas fa-home text-xl mr-2"></i> |
| <h1 class="text-xl font-bold">智能家居管家</h1> |
| </div> |
| <div class="flex space-x-4"> |
| <span class="relative"> |
| <i class="fas fa-bell text-xl"></i> |
| <span class="absolute -top-1 -right-1 w-2 h-2 bg-red-500 rounded-full"></span> |
| </span> |
| <i class="fas fa-user-circle text-xl"></i> |
| </div> |
| </div> |
| </header> |
|
|
| <main class="pb-24"> |
| |
| <section class="relative overflow-hidden"> |
| <div class="luxury-gradient h-48 md:h-56 relative flex flex-col justify-center items-center text-center px-4"> |
| <img src="https://images.pexels.com/photos/259588/pexels-photo-259588.jpeg" |
| alt="舒适家居" class="absolute w-full h-full object-cover opacity-30"> |
| <h2 class="text-xl md:text-2xl font-bold text-white mb-3 z-10">为您的爱家,提供专属管家服务</h2> |
| <p class="text-white text-sm md:text-base z-10 max-w-lg">专业服务团队,保障您的家居舒适与安全</p> |
| </div> |
| </section> |
|
|
| |
| <section class="px-4 py-6"> |
| <h3 class="text-lg font-bold mb-4 flex items-center"> |
| <i class="fas fa-th-list gold-icon mr-2"></i> 设备服务分类 |
| </h3> |
| <div class="flex space-x-4 overflow-x-auto pb-4 hide-scrollbar"> |
| <div class="flex flex-col items-center min-w-20 category-icon"> |
| <div class="bg-white shadow-md rounded-xl w-16 h-16 flex items-center justify-center mb-2"> |
| <i class="fas fa-wind gold-icon text-2xl"></i> |
| </div> |
| <span class="text-xs text-center">空调清洗</span> |
| </div> |
| <div class="flex flex-col items-center min-w-20 category-icon"> |
| <div class="bg-white shadow-md rounded-xl w-16 h-16 flex items-center justify-center mb-2"> |
| <i class="fas fa-key gold-icon text-2xl"></i> |
| </div> |
| <span class="text-xs text-center">门锁换电池</span> |
| </div> |
| <div class="flex flex-col items-center min-w-20 category-icon"> |
| <div class="bg-white shadow-md rounded-xl w-16 h-16 flex items-center justify-center mb-2"> |
| <i class="fas fa-couch gold-icon text-2xl"></i> |
| </div> |
| <span class="text-xs text-center">家具维修</span> |
| </div> |
| <div class="flex flex-col items-center min-w-20 category-icon"> |
| <div class="bg-white shadow-md rounded-xl w-16 h-16 flex items-center justify-center mb-2"> |
| <i class="fas fa-microchip gold-icon text-2xl"></i> |
| </div> |
| <span class="text-xs text-center">网关升级</span> |
| </div> |
| <div class="flex flex-col items-center min-w-20 category-icon"> |
| <div class="bg-white shadow-md rounded-xl w-16 h-16 flex items-center justify-center mb-2"> |
| <i class="fas fa-tint gold-icon text-2xl"></i> |
| </div> |
| <span class="text-xs text-center">热水器维护</span> |
| </div> |
| <div class="flex flex-col items-center min-w-20 category-icon"> |
| <div class="bg-white shadow-md rounded-xl w-16 h-16 flex items-center justify-center mb-2"> |
| <i class="fas fa-lightbulb gold-icon text-2xl"></i> |
| </div> |
| <span class="text-xs text-center">智能灯光</span> |
| </div> |
| <div class="flex flex-col items-center min-w-20 category-icon"> |
| <div class="bg-white shadow-md rounded-xl w-16 h-16 flex items-center justify-center mb-2"> |
| <i class="fas fa-plug gold-icon text-2xl"></i> |
| </div> |
| <span class="text-xs text-center">电源维护</span> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="px-4 py-4"> |
| <div class="flex justify-between items-center mb-4"> |
| <h3 class="text-lg font-bold flex items-center"> |
| <i class="fas fa-star gold-icon mr-2"></i> AI智能推荐服务 |
| </h3> |
| <a href="#" class="text-xs text-gray-500">查看更多 <i class="fas fa-angle-right text-xs"></i></a> |
| </div> |
| |
| <div class="grid grid-cols-1 gap-4 md:grid-cols-2"> |
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden service-card"> |
| <div class="relative"> |
| <img src="https://images.pexels.com/photos/3962294/pexels-photo-3962294.jpeg" |
| alt="空调深度清洁" class="w-full h-40 object-cover"> |
| <div class="absolute top-2 right-2 bg-yellow-50 border border-gold-400 text-xs py-1 px-2 rounded-full flex items-center"> |
| <i class="fas fa-clock gold-icon mr-1 opacity-80"></i> 约90分钟 |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-start mb-1"> |
| <h4 class="font-bold text-base">空调深度清洁</h4> |
| <div class="gold-badge px-2 py-1 rounded text-xs font-bold">382次服务</div> |
| </div> |
| <p class="text-sm text-gray-600 mb-3">专业设备杀菌除尘除螨,制冷效率提升20%,呼吸更健康</p> |
| <button class="w-full luxury-gradient text-white py-2 px-4 rounded-lg text-sm font-medium transition hover:opacity-90"> |
| 预约服务 |
| </button> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden service-card"> |
| <div class="relative"> |
| <img src="https://images.pexels.com/photos/5824873/pexels-photo-5824873.jpeg" |
| alt="实木家具保养" class="w-full h-40 object-cover"> |
| <div class="absolute top-2 right-2 bg-yellow-50 border border-gold-400 text-xs py-1 px-2 rounded-full flex items-center"> |
| <i class="fas fa-clock gold-icon mr-1 opacity-80"></i> 约120分钟 |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-start mb-1"> |
| <h4 class="font-bold text-base">实木家具保养</h4> |
| <div class="gold-badge px-2 py-1 rounded text-xs font-bold">256次服务</div> |
| </div> |
| <p class="text-sm text-gray-600 mb-3">采用天然木蜡油护理工艺,恢复纹理光泽,延长使用寿命</p> |
| <button class="w-full luxury-gradient text-white py-2 px-4 rounded-lg text-sm font-medium transition hover:opacity-90"> |
| 预约服务 |
| </button> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="px-4 py-6"> |
| <h3 class="text-lg font-bold mb-4 flex items-center"> |
| <i class="fas fa-shield-alt gold-icon mr-2"></i> 认证服务商 |
| </h3> |
| |
| <div class="mb-6"> |
| <div class="provider-card bg-white rounded-xl shadow-sm p-4 mb-3"> |
| <div class="flex items-start"> |
| <div class="mr-3"> |
| <div class="w-16 h-16 rounded-lg bg-gray-200 flex items-center justify-center overflow-hidden"> |
| <img src="https://images.pexels.com/photos/1037995/pexels-photo-1037995.jpeg" alt="服务商" class="w-full h-full object-cover"> |
| </div> |
| </div> |
| <div class="flex-1"> |
| <div class="flex justify-between mb-1"> |
| <h4 class="font-bold">凯瑞家居服务</h4> |
| <div class="flex items-center"> |
| <i class="fas fa-star gold-icon text-sm"></i> |
| <span class="text-sm font-bold ml-1">4.9</span> |
| </div> |
| </div> |
| <div class="flex items-center text-xs text-gray-500 mb-2"> |
| <i class="fas fa-map-marker-alt mr-1 gold-icon opacity-80"></i> |
| <span>服务覆盖全城</span> |
| </div> |
| <div class="flex"> |
| <span class="bg-gray-100 text-xs px-2 py-1 rounded mr-2">空调</span> |
| <span class="bg-gray-100 text-xs px-2 py-1 rounded mr-2">家具</span> |
| <span class="bg-gray-100 text-xs px-2 py-1 rounded">卫浴</span> |
| </div> |
| </div> |
| </div> |
| <div class="flex justify-between mt-3"> |
| <button class="flex-1 mr-2 py-2 px-4 bg-gray-100 text-gray-700 rounded-md text-sm font-medium flex items-center justify-center"> |
| <i class="fas fa-comment mr-1 gold-icon"></i> 联系客服 |
| </button> |
| <button class="flex-1 ml-2 py-2 px-4 bg-gray-100 text-gray-700 rounded-md text-sm font-medium flex items-center justify-center"> |
| <i class="fas fa-user-friends mr-1 gold-icon"></i> 服务商详情 |
| </button> |
| </div> |
| </div> |
| |
| <div class="provider-card bg-white rounded-xl shadow-sm p-4"> |
| <div class="flex items-start"> |
| <div class="mr-3"> |
| <div class="w-16 h-16 rounded-lg bg-gray-200 flex items-center justify-center overflow-hidden"> |
| <img src="https://images.pexels.com/photos/546819/pexels-photo-546819.jpeg" alt="服务商" class="w-full h-full object-cover"> |
| </div> |
| </div> |
| <div class="flex-1"> |
| <div class="flex justify-between mb-1"> |
| <h4 class="font-bold">鑫潮智能维护中心</h4> |
| <div class="flex items-center"> |
| <i class="fas fa-star gold-icon text-sm"></i> |
| <span class="text-sm font-bold ml-1">4.8</span> |
| </div> |
| </div> |
| <div class="flex items-center text-xs text-gray-500 mb-2"> |
| <i class="fas fa-map-marker-alt mr-1 gold-icon opacity-80"></i> |
| <span>全市58家门店</span> |
| </div> |
| <div class="flex"> |
| <span class="bg-gray-100 text-xs px-2 py-1 rounded mr-2">门锁</span> |
| <span class="bg-gray-100 text-xs px-2 py-1 rounded mr-2">网关</span> |
| <span class="bg-gray-100 text-xs px-2 py-1 rounded">热水器</span> |
| </div> |
| </div> |
| </div> |
| <div class="flex justify-between mt-3"> |
| <button class="flex-1 mr-2 py-2 px-4 bg-gray-100 text-gray-700 rounded-md text-sm font-medium flex items-center justify-center"> |
| <i class="fas fa-comment mr-1 gold-icon"></i> 联系客服 |
| </button> |
| <button class="flex-1 ml-2 py-2 px-4 bg-gray-100 text-gray-700 rounded-md text-sm font-medium flex items-center justify-center"> |
| <i class="fas fa-user-friends mr-1 gold-icon"></i> 服务商详情 |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| <div class="flex justify-between gap-4"> |
| <button class="flex-1 bg-white border border-gold-500 text-gold-700 py-3 px-4 rounded-lg font-medium"> |
| <i class="fas fa-user-tie mr-2"></i>申请成为服务商 |
| </button> |
| <button class="flex-1 luxury-gradient text-white py-3 px-4 rounded-lg font-medium"> |
| <i class="fas fa-headset mr-2"></i>联系客服 |
| </button> |
| </div> |
| </section> |
|
|
| |
| <section class="px-4 py-4 mb-16"> |
| <h3 class="text-lg font-bold mb-4 flex items-center"> |
| <i class="fas fa-clipboard-list gold-icon mr-2"></i> 服务订单 |
| </h3> |
| |
| <div class="bg-white rounded-xl shadow-sm"> |
| <div class="p-4 flex items-center justify-between border-b"> |
| <div class="flex items-center"> |
| <div class="w-14 h-14 bg-gray-200 rounded-lg overflow-hidden flex items-center justify-center mr-3"> |
| <i class="fas fa-wind gold-icon text-2xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold">空调深度清洁</h4> |
| <p class="text-xs text-gray-500">2023年6月15日 14:30</p> |
| </div> |
| </div> |
| <div class="flex flex-col items-end"> |
| <div class="order-status__completed inline-block px-2 py-1 rounded-full text-xs">已完成</div> |
| <div class="flex space-x-2 mt-2"> |
| <button class="text-xs text-gray-500"> |
| <i class="fas fa-redo gold-icon"></i> 再次预约 |
| </button> |
| <button class="text-xs text-gray-500"> |
| <i class="fas fa-file-alt gold-icon"></i> 详情 |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| <div class="p-4 flex items-center justify-between border-b"> |
| <div class="flex items-center"> |
| <div class="w-14 h-14 bg-gray-200 rounded-lg overflow-hidden flex items-center justify-center mr-3"> |
| <i class="fas fa-tree gold-icon text-2xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold">实木沙发保养</h4> |
| <p class="text-xs text-gray-500">2023年7月3日 10:00</p> |
| </div> |
| </div> |
| <div class="flex flex-col items-end"> |
| <div class="order-status__pending inline-block px-2 py-1 rounded-full text-xs">服务中</div> |
| <div class="flex space-x-2 mt-2"> |
| <button class="text-xs text-gray-500"> |
| <i class="fas fa-comment-medical gold-icon"></i> 联系师傅 |
| </button> |
| <button class="text-xs text-gray-500"> |
| <i class="fas fa-file-alt gold-icon"></i> 详情 |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| <div class="p-4 flex items-center justify-between"> |
| <div class="flex items-center"> |
| <div class="w-14 h-14 bg-gray-200 rounded-lg overflow-hidden flex items-center justify-center mr-3"> |
| <i class="fas fa-battery-three-quarters gold-icon text-2xl"></i> |
| </div> |
| <div> |
| <h4 class="font-bold">智能门锁电池更换</h4> |
| <p class="text-xs text-gray-500">2023年5月22日 16:15</p> |
| </div> |
| </div> |
| <div class="flex flex-col items-end"> |
| <div class="order-status__completed inline-block px-2 py-1 rounded-full text-xs">已完成</div> |
| <div class="flex space-x-2 mt-2"> |
| <button class="text-xs text-gray-500"> |
| <i class="fas fa-redo gold-icon"></i> 再次预约 |
| </button> |
| <button class="text-xs text-gray-500"> |
| <i class="fas fa-file-alt gold-icon"></i> 详情 |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <button class="w-full luxury-gradient text-white py-3 px-4 rounded-lg font-medium mt-4 flex items-center justify-center"> |
| <i class="fas fa-history mr-2"></i> 查看历史订单 |
| </button> |
| </section> |
| </main> |
|
|
| |
| <nav class="fixed bottom-0 left-0 right-0 bg-white border-t border-gray-200 flex justify-around"> |
| <a href="#" class="flex flex-col items-center py-3 text-xs w-full text-center text-gray-400"> |
| <i class="fas fa-home mb-1 text-xl"></i> |
| <span>首页</span> |
| </a> |
| <a href="#" class="flex flex-col items-center py-3 text-xs w-full text-center text-gold-600 font-bold"> |
| <i class="fas fa-concierge-bell mb-1 text-xl gold-icon"></i> |
| <span>服务</span> |
| </a> |
| <a href="#" class="flex flex-col items-center py-3 text-xs w-full text-center text-gray-400"> |
| <i class="fas fa-history mb-1 text-xl"></i> |
| <span>订单</span> |
| </a> |
| <a href="#" class="flex flex-col items-center py-3 text-xs w-full text-center text-gray-400"> |
| <i class="fas fa-user-alt mb-1 text-xl"></i> |
| <span>我的</span> |
| </a> |
| </nav> |
| <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=maomaobj/home4" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |