File size: 22,247 Bytes
feb7e93 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 | <!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 Navigation -->
<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">
<!-- Top Banner -->
<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>
<!-- Device Categories -->
<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>
<!-- Recommended Services -->
<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">
<!-- Service Card 1 -->
<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>
<!-- Service Card 2 -->
<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>
<!-- Certified Service Providers -->
<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>
<!-- My Service Orders -->
<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>
<!-- Bottom Navigation Bar -->
<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> |