| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  | <!DOCTYPE html> | 
					
						
							|  |  |  |  | <html lang="zh-CN"> | 
					
						
							|  |  |  |  | <head> | 
					
						
							|  |  |  |  |     <meta charset="UTF-8"> | 
					
						
							|  |  |  |  |     <meta name="viewport" content="width=device-width, initial-scale=1.0"> | 
					
						
							|  |  |  |  |     <title>电商首页</title> | 
					
						
							|  |  |  |  |     <style> | 
					
						
							|  |  |  |  |         * { | 
					
						
							|  |  |  |  |             margin: 0; | 
					
						
							|  |  |  |  |             padding: 0; | 
					
						
							|  |  |  |  |             box-sizing: border-box; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         body { | 
					
						
							|  |  |  |  |             font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', sans-serif; | 
					
						
							|  |  |  |  |             background: linear-gradient(180deg, #2d5a3d 0%, #4a7c59 50%, #f5f5f5 50%); | 
					
						
							|  |  |  |  |             min-height: 100vh; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 状态栏 */ | 
					
						
							|  |  |  |  |         .status-bar { | 
					
						
							|  |  |  |  |             background: #2d5a3d; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             padding: 8px 20px; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             justify-content: space-between; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             font-size: 16px; | 
					
						
							|  |  |  |  |             font-weight: bold; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .status-icons { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             gap: 8px; | 
					
						
							|  |  |  |  |             font-size: 14px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 头部区域 */ | 
					
						
							|  |  |  |  |         .header { | 
					
						
							|  |  |  |  |             background: linear-gradient(180deg, #2d5a3d 0%, #4a7c59 100%); | 
					
						
							|  |  |  |  |             padding: 15px 20px 25px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .location { | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             font-size: 16px; | 
					
						
							|  |  |  |  |             margin-bottom: 15px; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .location::before { | 
					
						
							|  |  |  |  |             content: "📍"; | 
					
						
							|  |  |  |  |             margin-right: 5px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 搜索框 */ | 
					
						
							|  |  |  |  |         .search-container { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             gap: 10px; | 
					
						
							|  |  |  |  |             margin-bottom: 20px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .search-box { | 
					
						
							|  |  |  |  |             flex: 1; | 
					
						
							|  |  |  |  |             background: white; | 
					
						
							|  |  |  |  |             border-radius: 25px; | 
					
						
							|  |  |  |  |             padding: 12px 20px; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             gap: 10px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .qr-icon { | 
					
						
							|  |  |  |  |             width: 20px; | 
					
						
							|  |  |  |  |             height: 20px; | 
					
						
							|  |  |  |  |             background: #ddd; | 
					
						
							|  |  |  |  |             border-radius: 3px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .search-input { | 
					
						
							|  |  |  |  |             flex: 1; | 
					
						
							|  |  |  |  |             border: none; | 
					
						
							|  |  |  |  |             outline: none; | 
					
						
							|  |  |  |  |             font-size: 15px; | 
					
						
							|  |  |  |  |             color: #999; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .search-btn { | 
					
						
							|  |  |  |  |             background: #2d5a3d; | 
					
						
							|  |  |  |  |             border: none; | 
					
						
							|  |  |  |  |             border-radius: 50%; | 
					
						
							|  |  |  |  |             width: 45px; | 
					
						
							|  |  |  |  |             height: 45px; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             font-size: 18px; | 
					
						
							|  |  |  |  |             cursor: pointer; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 导航标签 */ | 
					
						
							|  |  |  |  |         .nav-tabs { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |             gap: 30px; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             font-size: 16px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .nav-tab { | 
					
						
							|  |  |  |  |             padding: 8px 0; | 
					
						
							|  |  |  |  |             position: relative; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .nav-tab.active { | 
					
						
							|  |  |  |  |             color: #ffa500; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .nav-tab.active::after { | 
					
						
							|  |  |  |  |             content: ''; | 
					
						
							|  |  |  |  |             position: absolute; | 
					
						
							|  |  |  |  |             bottom: 0; | 
					
						
							|  |  |  |  |             left: 50%; | 
					
						
							|  |  |  |  |             transform: translateX(-50%); | 
					
						
							|  |  |  |  |             width: 30px; | 
					
						
							|  |  |  |  |             height: 3px; | 
					
						
							|  |  |  |  |             background: #ffa500; | 
					
						
							|  |  |  |  |             border-radius: 2px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 主要内容区域 */ | 
					
						
							|  |  |  |  |         .main-content { | 
					
						
							|  |  |  |  |             background: #f5f5f5; | 
					
						
							|  |  |  |  |             border-radius: 20px 20px 0 0; | 
					
						
							|  |  |  |  |             margin-top: -15px; | 
					
						
							|  |  |  |  |             padding: 20px; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             padding-bottom: 120px; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |             min-height: calc(100vh - 200px); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 横幅广告 */ | 
					
						
							|  |  |  |  |         .banner { | 
					
						
							|  |  |  |  |             background: linear-gradient(135deg, rgba(45, 90, 61, 0.8), rgba(74, 124, 89, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%234a7c59" width="400" height="200"/><path fill="%2370b77e" d="M300 50c30 0 50 20 50 50s-20 50-50 50c-20 0-40-10-50-30-10 20-30 30-50 30-30 0-50-20-50-50s20-50 50-50c20 0 40 10 50 30 10-20 30-30 50-30z"/></svg>'); | 
					
						
							|  |  |  |  |             border-radius: 15px; | 
					
						
							|  |  |  |  |             padding: 25px; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             margin-bottom: 20px; | 
					
						
							|  |  |  |  |             background-size: cover; | 
					
						
							|  |  |  |  |             position: relative; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .banner-text { | 
					
						
							|  |  |  |  |             font-size: 22px; | 
					
						
							|  |  |  |  |             font-weight: bold; | 
					
						
							|  |  |  |  |             line-height: 1.3; | 
					
						
							|  |  |  |  |             margin-bottom: 15px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .banner-btn { | 
					
						
							|  |  |  |  |             background: rgba(255, 165, 0, 0.9); | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             border: none; | 
					
						
							|  |  |  |  |             padding: 8px 20px; | 
					
						
							|  |  |  |  |             border-radius: 20px; | 
					
						
							|  |  |  |  |             font-size: 14px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 商品分类网格 */ | 
					
						
							|  |  |  |  |         .category-grid { | 
					
						
							|  |  |  |  |             display: grid; | 
					
						
							|  |  |  |  |             grid-template-columns: repeat(5, 1fr); | 
					
						
							|  |  |  |  |             gap: 15px; | 
					
						
							|  |  |  |  |             margin-bottom: 20px; | 
					
						
							|  |  |  |  |             background: white; | 
					
						
							|  |  |  |  |             padding: 20px; | 
					
						
							|  |  |  |  |             border-radius: 15px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .category-item { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             flex-direction: column; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             text-align: center; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .category-icon { | 
					
						
							|  |  |  |  |             width: 50px; | 
					
						
							|  |  |  |  |             height: 50px; | 
					
						
							|  |  |  |  |             border-radius: 50%; | 
					
						
							|  |  |  |  |             margin-bottom: 8px; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |             font-size: 24px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .category-name { | 
					
						
							|  |  |  |  |             font-size: 12px; | 
					
						
							|  |  |  |  |             color: #333; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 推荐区域 */ | 
					
						
							|  |  |  |  |         .recommendation { | 
					
						
							|  |  |  |  |             background: white; | 
					
						
							|  |  |  |  |             border-radius: 15px; | 
					
						
							|  |  |  |  |             padding: 15px 20px; | 
					
						
							|  |  |  |  |             margin-bottom: 20px; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             justify-content: space-between; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .recommendation-left { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             gap: 10px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .speaker-icon { | 
					
						
							|  |  |  |  |             width: 30px; | 
					
						
							|  |  |  |  |             height: 30px; | 
					
						
							|  |  |  |  |             background: #4a7c59; | 
					
						
							|  |  |  |  |             border-radius: 50%; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 功能区域卡片 */ | 
					
						
							|  |  |  |  |         .feature-cards { | 
					
						
							|  |  |  |  |             display: grid; | 
					
						
							|  |  |  |  |             grid-template-columns: repeat(4, 1fr); | 
					
						
							|  |  |  |  |             gap: 10px; | 
					
						
							|  |  |  |  |             margin-bottom: 20px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .feature-card { | 
					
						
							|  |  |  |  |             background: linear-gradient(135deg, #2d5a3d, #4a7c59); | 
					
						
							|  |  |  |  |             border-radius: 15px; | 
					
						
							|  |  |  |  |             padding: 15px 10px; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             text-align: center; | 
					
						
							|  |  |  |  |             position: relative; | 
					
						
							| 
									
										
										
										
											2025-08-24 18:02:21 +00:00
										 |  |  |  |             cursor: pointer; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .feature-card h4 { | 
					
						
							|  |  |  |  |             font-size: 14px; | 
					
						
							|  |  |  |  |             margin-bottom: 5px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .feature-card p { | 
					
						
							|  |  |  |  |             font-size: 12px; | 
					
						
							|  |  |  |  |             opacity: 0.9; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .feature-card::after { | 
					
						
							|  |  |  |  |             content: '>'; | 
					
						
							|  |  |  |  |             position: absolute; | 
					
						
							|  |  |  |  |             right: 10px; | 
					
						
							|  |  |  |  |             top: 50%; | 
					
						
							|  |  |  |  |             transform: translateY(-50%); | 
					
						
							|  |  |  |  |             color: rgba(255,255,255,0.7); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |         /* 卡片容器 */ | 
					
						
							|  |  |  |  |         .cards-container { | 
					
						
							|  |  |  |  |             display: grid; | 
					
						
							|  |  |  |  |             grid-template-columns: 1fr 1fr; | 
					
						
							|  |  |  |  |             gap: 15px; | 
					
						
							|  |  |  |  |             margin-bottom: 20px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 通用卡片样式 */ | 
					
						
							|  |  |  |  |         .card { | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |             background: white; | 
					
						
							|  |  |  |  |             border-radius: 15px; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             padding: 0; | 
					
						
							|  |  |  |  |             position: relative; | 
					
						
							|  |  |  |  |             overflow: hidden; | 
					
						
							|  |  |  |  |             box-shadow: 0 2px 10px rgba(0,0,0,0.1); | 
					
						
							|  |  |  |  |             height: 320px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 菜市场轮播卡片 */ | 
					
						
							|  |  |  |  |         .market-card { | 
					
						
							|  |  |  |  |             position: relative; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .market-carousel { | 
					
						
							|  |  |  |  |             position: relative; | 
					
						
							|  |  |  |  |             overflow: hidden; | 
					
						
							|  |  |  |  |             height: 100%; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .market-slide { | 
					
						
							|  |  |  |  |             width: 100%; | 
					
						
							|  |  |  |  |             height: 100%; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             flex-direction: column; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .market-image { | 
					
						
							|  |  |  |  |             width: 100%; | 
					
						
							|  |  |  |  |             height: 150px; | 
					
						
							|  |  |  |  |             background-size: cover; | 
					
						
							|  |  |  |  |             background-position: center; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |             position: relative; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             flex-shrink: 0; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .market-title { | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             position: absolute; | 
					
						
							|  |  |  |  |             top: 15px; | 
					
						
							|  |  |  |  |             left: 15px; | 
					
						
							|  |  |  |  |             background: rgba(0,0,0,0.7); | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             padding: 6px 12px; | 
					
						
							|  |  |  |  |             border-radius: 15px; | 
					
						
							|  |  |  |  |             font-size: 14px; | 
					
						
							|  |  |  |  |             font-weight: bold; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .brand-badge { | 
					
						
							|  |  |  |  |             position: absolute; | 
					
						
							|  |  |  |  |             bottom: 15px; | 
					
						
							|  |  |  |  |             left: 15px; | 
					
						
							|  |  |  |  |             background: #ffa500; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             padding: 4px 10px; | 
					
						
							|  |  |  |  |             border-radius: 12px; | 
					
						
							|  |  |  |  |             font-size: 11px; | 
					
						
							|  |  |  |  |             font-weight: bold; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .market-info { | 
					
						
							|  |  |  |  |             padding: 12px 15px; | 
					
						
							|  |  |  |  |             flex: 1; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             flex-direction: column; | 
					
						
							| 
									
										
										
										
											2025-08-24 18:02:21 +00:00
										 |  |  |  |             cursor: pointer; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .market-name { | 
					
						
							|  |  |  |  |             font-size: 13px; | 
					
						
							|  |  |  |  |             color: #333; | 
					
						
							|  |  |  |  |             margin-bottom: 5px; | 
					
						
							|  |  |  |  |             font-weight: 500; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .market-rating { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             gap: 5px; | 
					
						
							|  |  |  |  |             font-size: 11px; | 
					
						
							|  |  |  |  |             color: #666; | 
					
						
							|  |  |  |  |             margin-bottom: 5px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .rating-star { | 
					
						
							|  |  |  |  |             color: #ffa500; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .market-stats { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             justify-content: space-between; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             font-size: 11px; | 
					
						
							|  |  |  |  |             color: #666; | 
					
						
							|  |  |  |  |             margin-bottom: 10px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .market-delivery { | 
					
						
							|  |  |  |  |             background: #f0f8f0; | 
					
						
							|  |  |  |  |             color: #4a7c59; | 
					
						
							|  |  |  |  |             padding: 2px 6px; | 
					
						
							|  |  |  |  |             border-radius: 8px; | 
					
						
							|  |  |  |  |             font-size: 10px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .market-actions { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             padding: 0 15px 10px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .action-group { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             gap: 12px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .action-btn { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             gap: 3px; | 
					
						
							|  |  |  |  |             font-size: 11px; | 
					
						
							|  |  |  |  |             color: #666; | 
					
						
							|  |  |  |  |             background: none; | 
					
						
							|  |  |  |  |             border: none; | 
					
						
							|  |  |  |  |             cursor: pointer; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .action-btn.liked { | 
					
						
							|  |  |  |  |             color: #ff6b6b; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 轮播指示器 */ | 
					
						
							|  |  |  |  |         .carousel-indicators { | 
					
						
							|  |  |  |  |             position: absolute; | 
					
						
							| 
									
										
										
										
											2025-08-23 14:02:40 +00:00
										 |  |  |  |             bottom: 20px; | 
					
						
							|  |  |  |  |             left: 50%; | 
					
						
							|  |  |  |  |             transform: translateX(-50%); | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             display: flex; | 
					
						
							| 
									
										
										
										
											2025-08-23 14:02:40 +00:00
										 |  |  |  |             gap: 6px; | 
					
						
							|  |  |  |  |             z-index: 10; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .indicator { | 
					
						
							| 
									
										
										
										
											2025-08-23 14:02:40 +00:00
										 |  |  |  |             width: 8px; | 
					
						
							|  |  |  |  |             height: 8px; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             border-radius: 50%; | 
					
						
							|  |  |  |  |             background: rgba(255,255,255,0.5); | 
					
						
							| 
									
										
										
										
											2025-08-23 14:02:40 +00:00
										 |  |  |  |             border: 1px solid rgba(255,255,255,0.8); | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .indicator.active { | 
					
						
							|  |  |  |  |             background: white; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 商品卡片 */ | 
					
						
							|  |  |  |  |         .product-card { | 
					
						
							|  |  |  |  |             position: relative; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             flex-direction: column; | 
					
						
							|  |  |  |  |             height: 320px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .product-image { | 
					
						
							|  |  |  |  |             width: 80px; | 
					
						
							|  |  |  |  |             height: 80px; | 
					
						
							|  |  |  |  |             background-size: cover; | 
					
						
							|  |  |  |  |             background-position: center; | 
					
						
							|  |  |  |  |             border-radius: 50%; | 
					
						
							|  |  |  |  |             margin: 15px auto 10px; | 
					
						
							|  |  |  |  |             position: relative; | 
					
						
							|  |  |  |  |             flex-shrink: 0; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .product-badge { | 
					
						
							|  |  |  |  |             position: absolute; | 
					
						
							|  |  |  |  |             top: 10px; | 
					
						
							|  |  |  |  |             right: 10px; | 
					
						
							|  |  |  |  |             background: rgba(0,0,0,0.7); | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |             color: white; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             padding: 4px 8px; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |             border-radius: 10px; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             font-size: 10px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .product-info { | 
					
						
							|  |  |  |  |             padding: 0 15px 15px; | 
					
						
							|  |  |  |  |             text-align: center; | 
					
						
							|  |  |  |  |             flex: 1; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             flex-direction: column; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .product-name { | 
					
						
							|  |  |  |  |             font-size: 13px; | 
					
						
							|  |  |  |  |             color: #333; | 
					
						
							|  |  |  |  |             margin-bottom: 8px; | 
					
						
							|  |  |  |  |             font-weight: 500; | 
					
						
							|  |  |  |  |             line-height: 1.3; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .product-price { | 
					
						
							|  |  |  |  |             color: #ff6b6b; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |             font-size: 16px; | 
					
						
							|  |  |  |  |             font-weight: bold; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             margin-bottom: 8px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .product-price .unit { | 
					
						
							|  |  |  |  |             font-size: 12px; | 
					
						
							|  |  |  |  |             color: #999; | 
					
						
							|  |  |  |  |             font-weight: normal; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .product-store { | 
					
						
							|  |  |  |  |             font-size: 11px; | 
					
						
							|  |  |  |  |             color: #666; | 
					
						
							|  |  |  |  |             margin-bottom: 8px; | 
					
						
							|  |  |  |  |             line-height: 1.2; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .product-meta { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |             gap: 8px; | 
					
						
							|  |  |  |  |             font-size: 10px; | 
					
						
							|  |  |  |  |             color: #999; | 
					
						
							|  |  |  |  |             margin-bottom: 8px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .product-delivery { | 
					
						
							|  |  |  |  |             font-size: 10px; | 
					
						
							|  |  |  |  |             color: #999; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |             margin-bottom: 10px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |         .product-actions { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |             gap: 10px; | 
					
						
							|  |  |  |  |             margin-top: auto; | 
					
						
							|  |  |  |  |             padding-bottom: 5px; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |         .add-to-cart { | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |             position: absolute; | 
					
						
							|  |  |  |  |             bottom: 15px; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             right: 15px; | 
					
						
							|  |  |  |  |             width: 28px; | 
					
						
							|  |  |  |  |             height: 28px; | 
					
						
							|  |  |  |  |             background: #4a7c59; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             border: none; | 
					
						
							|  |  |  |  |             border-radius: 50%; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |             font-size: 16px; | 
					
						
							|  |  |  |  |             cursor: pointer; | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         /* 底部导航 */ | 
					
						
							|  |  |  |  |         .bottom-nav { | 
					
						
							|  |  |  |  |             position: fixed; | 
					
						
							|  |  |  |  |             bottom: 0; | 
					
						
							|  |  |  |  |             left: 0; | 
					
						
							|  |  |  |  |             right: 0; | 
					
						
							|  |  |  |  |             background: white; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             justify-content: space-around; | 
					
						
							|  |  |  |  |             padding: 10px 0 25px; | 
					
						
							|  |  |  |  |             border-top: 1px solid #eee; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .nav-item { | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             flex-direction: column; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             color: #999; | 
					
						
							|  |  |  |  |             font-size: 12px; | 
					
						
							|  |  |  |  |             position: relative; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .nav-item.active { | 
					
						
							|  |  |  |  |             color: #4a7c59; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .nav-icon { | 
					
						
							|  |  |  |  |             width: 25px; | 
					
						
							|  |  |  |  |             height: 25px; | 
					
						
							|  |  |  |  |             margin-bottom: 5px; | 
					
						
							|  |  |  |  |             border-radius: 50%; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |             font-size: 18px; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .cart-badge { | 
					
						
							|  |  |  |  |             position: absolute; | 
					
						
							|  |  |  |  |             top: -5px; | 
					
						
							|  |  |  |  |             right: -5px; | 
					
						
							|  |  |  |  |             background: #ff4444; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             border-radius: 50%; | 
					
						
							|  |  |  |  |             width: 18px; | 
					
						
							|  |  |  |  |             height: 18px; | 
					
						
							|  |  |  |  |             font-size: 10px; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .floating-btn { | 
					
						
							|  |  |  |  |             position: fixed; | 
					
						
							|  |  |  |  |             bottom: 100px; | 
					
						
							|  |  |  |  |             right: 20px; | 
					
						
							|  |  |  |  |             width: 50px; | 
					
						
							|  |  |  |  |             height: 50px; | 
					
						
							|  |  |  |  |             background: #ffa500; | 
					
						
							|  |  |  |  |             border-radius: 50%; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             font-size: 24px; | 
					
						
							|  |  |  |  |             box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         .voice-btn { | 
					
						
							|  |  |  |  |             position: fixed; | 
					
						
							|  |  |  |  |             bottom: 160px; | 
					
						
							|  |  |  |  |             right: 20px; | 
					
						
							|  |  |  |  |             width: 50px; | 
					
						
							|  |  |  |  |             height: 50px; | 
					
						
							|  |  |  |  |             background: #ffa500; | 
					
						
							|  |  |  |  |             border-radius: 50%; | 
					
						
							|  |  |  |  |             display: flex; | 
					
						
							|  |  |  |  |             align-items: center; | 
					
						
							|  |  |  |  |             justify-content: center; | 
					
						
							|  |  |  |  |             color: white; | 
					
						
							|  |  |  |  |             font-size: 18px; | 
					
						
							|  |  |  |  |             box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  |     </style> | 
					
						
							|  |  |  |  | </head> | 
					
						
							|  |  |  |  | <body> | 
					
						
							|  |  |  |  |     <!-- 状态栏 --> | 
					
						
							|  |  |  |  |     <div class="status-bar"> | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |         <div>09:15</div> | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |         <div class="status-icons"> | 
					
						
							|  |  |  |  |             <span>🔵</span> | 
					
						
							|  |  |  |  |             <span>📶</span> | 
					
						
							|  |  |  |  |             <span>📶</span> | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |             <span>🔋 52%</span> | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |         </div> | 
					
						
							|  |  |  |  |     </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!-- 头部区域 --> | 
					
						
							|  |  |  |  |     <div class="header"> | 
					
						
							|  |  |  |  |         <div class="location">上海市 | 矛台喜香万家... ></div> | 
					
						
							|  |  |  |  |          | 
					
						
							|  |  |  |  |         <div class="search-container"> | 
					
						
							|  |  |  |  |             <div class="search-box"> | 
					
						
							|  |  |  |  |                 <div class="qr-icon"></div> | 
					
						
							|  |  |  |  |                 <input type="text" class="search-input" placeholder="输入店铺/商品名称进行查询"> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <button class="search-btn">🔍</button> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <div class="nav-tabs"> | 
					
						
							|  |  |  |  |             <div class="nav-tab">关注</div> | 
					
						
							|  |  |  |  |             <div class="nav-tab active">推荐</div> | 
					
						
							|  |  |  |  |             <div class="nav-tab">云店市集</div> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  |     </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!-- 主要内容区域 --> | 
					
						
							|  |  |  |  |     <div class="main-content"> | 
					
						
							|  |  |  |  |         <!-- 横幅广告 --> | 
					
						
							|  |  |  |  |         <div class="banner"> | 
					
						
							|  |  |  |  |             <div class="banner-text">当季精选<br>新品发布</div> | 
					
						
							|  |  |  |  |             <button class="banner-btn">立即尝鲜</button> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!-- 商品分类网格 --> | 
					
						
							|  |  |  |  |         <div class="category-grid"> | 
					
						
							|  |  |  |  |             <div class="category-item"> | 
					
						
							|  |  |  |  |                 <div class="category-icon" style="background: #e8f4fd;">🥛</div> | 
					
						
							|  |  |  |  |                 <div class="category-name">豆制品类</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="category-item"> | 
					
						
							|  |  |  |  |                 <div class="category-icon" style="background: #ffeaa7;">🥓</div> | 
					
						
							|  |  |  |  |                 <div class="category-name">腌腊制品</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="category-item"> | 
					
						
							|  |  |  |  |                 <div class="category-icon" style="background: #fab1a0;">🍿</div> | 
					
						
							|  |  |  |  |                 <div class="category-name">休闲食品</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="category-item"> | 
					
						
							|  |  |  |  |                 <div class="category-icon" style="background: #fd79a8;">🍷</div> | 
					
						
							|  |  |  |  |                 <div class="category-name">酒水饮料</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="category-item"> | 
					
						
							|  |  |  |  |                 <div class="category-icon" style="background: #fdcb6e;">🌰</div> | 
					
						
							|  |  |  |  |                 <div class="category-name">南北干货</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="category-item"> | 
					
						
							|  |  |  |  |                 <div class="category-icon" style="background: #74b9ff;">🧽</div> | 
					
						
							|  |  |  |  |                 <div class="category-name">日用清洁</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="category-item"> | 
					
						
							|  |  |  |  |                 <div class="category-icon" style="background: #ffeaa7;">🥐</div> | 
					
						
							|  |  |  |  |                 <div class="category-name">早点餐饮</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="category-item"> | 
					
						
							|  |  |  |  |                 <div class="category-icon" style="background: #fd79a8;">🎁</div> | 
					
						
							|  |  |  |  |                 <div class="category-name">生活礼品</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="category-item"> | 
					
						
							|  |  |  |  |                 <div class="category-icon" style="background: #fdcb6e;">🍳</div> | 
					
						
							|  |  |  |  |                 <div class="category-name">家居厨具</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="category-item"> | 
					
						
							|  |  |  |  |                 <div class="category-icon" style="background: #81ecec;">📱</div> | 
					
						
							|  |  |  |  |                 <div class="category-name">家电数码</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!-- 推荐区域 --> | 
					
						
							|  |  |  |  |         <div class="recommendation"> | 
					
						
							|  |  |  |  |             <div class="recommendation-left"> | 
					
						
							|  |  |  |  |                 <div class="speaker-icon">📢</div> | 
					
						
							|  |  |  |  |                 <span>大妈号</span> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div>去看看 ></div> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         <!-- 功能区域卡片 --> | 
					
						
							|  |  |  |  |         <div class="feature-cards"> | 
					
						
							|  |  |  |  |             <div class="feature-card"> | 
					
						
							|  |  |  |  |                 <h4>云店市集</h4> | 
					
						
							|  |  |  |  |                 <p>全国到家</p> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							| 
									
										
										
										
											2025-08-24 18:02:21 +00:00
										 |  |  |  |             <div class="feature-card" onclick="goToWelfarePage()"> | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |                 <h4>福利专区</h4> | 
					
						
							|  |  |  |  |                 <p>优惠多多</p> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="feature-card"> | 
					
						
							|  |  |  |  |                 <h4>预售专区</h4> | 
					
						
							|  |  |  |  |                 <p>优惠预定</p> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <div class="feature-card" style="background: #ffa500;"> | 
					
						
							|  |  |  |  |                 <h4>订单备货中</h4> | 
					
						
							|  |  |  |  |                 <p>新鲜现采</p> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |         <!-- 卡片容器 --> | 
					
						
							|  |  |  |  |         <div class="cards-container"> | 
					
						
							|  |  |  |  |             <!-- 菜市场轮播卡片 --> | 
					
						
							|  |  |  |  |             <div class="card market-card"> | 
					
						
							|  |  |  |  |                 <div class="market-carousel"> | 
					
						
							| 
									
										
										
										
											2025-08-23 14:02:40 +00:00
										 |  |  |  |                     <div class="market-slide"> | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |                         <div class="market-image" style="background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), linear-gradient(135deg, #4a7c59 0%, #70b77e 50%, #a8e6cf 100%);"> | 
					
						
							|  |  |  |  |                             <div class="market-title">华径菜场</div> | 
					
						
							|  |  |  |  |                             <div class="brand-badge">👑 品牌</div> | 
					
						
							| 
									
										
										
										
											2025-08-23 14:02:40 +00:00
										 |  |  |  |                             <div class="carousel-indicators"> | 
					
						
							|  |  |  |  |                                 <div class="indicator active"></div> | 
					
						
							|  |  |  |  |                                 <div class="indicator"></div> | 
					
						
							|  |  |  |  |                                 <div class="indicator"></div> | 
					
						
							|  |  |  |  |                             </div> | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |                         </div> | 
					
						
							| 
									
										
										
										
											2025-08-24 18:02:21 +00:00
										 |  |  |  |                         <div class="market-info" onclick="goToMarketPage()"> | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  |                             <div class="market-name">春申路1501号</div> | 
					
						
							|  |  |  |  |                             <div class="market-rating"> | 
					
						
							|  |  |  |  |                                 <span class="rating-star">⭐</span> | 
					
						
							|  |  |  |  |                                 <span>5.0分</span> | 
					
						
							|  |  |  |  |                                 <span>📍 0.1km</span> | 
					
						
							|  |  |  |  |                             </div> | 
					
						
							|  |  |  |  |                             <div class="market-stats"> | 
					
						
							|  |  |  |  |                                 <span>销量:0份</span> | 
					
						
							|  |  |  |  |                                 <span class="market-delivery">满¥99免运费</span> | 
					
						
							|  |  |  |  |                             </div> | 
					
						
							|  |  |  |  |                         </div> | 
					
						
							|  |  |  |  |                         <div class="market-actions"> | 
					
						
							|  |  |  |  |                             <div class="action-group"> | 
					
						
							|  |  |  |  |                                 <button class="action-btn"> | 
					
						
							|  |  |  |  |                                     <span>🔗</span> | 
					
						
							|  |  |  |  |                                     <span>分享</span> | 
					
						
							|  |  |  |  |                                 </button> | 
					
						
							|  |  |  |  |                                 <button class="action-btn liked"> | 
					
						
							|  |  |  |  |                                     <span>👍</span> | 
					
						
							|  |  |  |  |                                     <span>1</span> | 
					
						
							|  |  |  |  |                                 </button> | 
					
						
							|  |  |  |  |                                 <button class="action-btn liked"> | 
					
						
							|  |  |  |  |                                     <span>❤️</span> | 
					
						
							|  |  |  |  |                                     <span>2</span> | 
					
						
							|  |  |  |  |                                 </button> | 
					
						
							|  |  |  |  |                             </div> | 
					
						
							|  |  |  |  |                         </div> | 
					
						
							|  |  |  |  |                     </div> | 
					
						
							|  |  |  |  |                 </div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |             <!-- 商品卡片1 --> | 
					
						
							|  |  |  |  |             <div class="card product-card"> | 
					
						
							|  |  |  |  |                 <div class="product-image" style="background: radial-gradient(circle, #8b4513 30%, #654321 70%);"></div> | 
					
						
							|  |  |  |  |                 <div class="product-info"> | 
					
						
							|  |  |  |  |                     <div class="product-name">盐池滩羊腿肉约800g</div> | 
					
						
							|  |  |  |  |                     <div class="product-price">¥99.8<span class="unit">/份</span></div> | 
					
						
							|  |  |  |  |                     <div class="product-store">华清羊肉店(全季菜市场)</div> | 
					
						
							|  |  |  |  |                     <div class="product-meta"> | 
					
						
							|  |  |  |  |                         <span>⭐ 4.8分</span> | 
					
						
							|  |  |  |  |                         <span>📍 0.3km</span> | 
					
						
							|  |  |  |  |                     </div> | 
					
						
							|  |  |  |  |                     <div class="product-delivery">起送¥20 满¥50免运费</div> | 
					
						
							|  |  |  |  |                     <div class="product-actions"> | 
					
						
							|  |  |  |  |                         <button class="action-btn"> | 
					
						
							|  |  |  |  |                             <span>👍</span> | 
					
						
							|  |  |  |  |                             <span>12</span> | 
					
						
							|  |  |  |  |                         </button> | 
					
						
							|  |  |  |  |                         <button class="action-btn"> | 
					
						
							|  |  |  |  |                             <span>❤️</span> | 
					
						
							|  |  |  |  |                             <span>8</span> | 
					
						
							|  |  |  |  |                         </button> | 
					
						
							|  |  |  |  |                     </div> | 
					
						
							|  |  |  |  |                 </div> | 
					
						
							|  |  |  |  |                 <button class="add-to-cart">+</button> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |             <!-- 商品卡片2 --> | 
					
						
							|  |  |  |  |             <div class="card product-card"> | 
					
						
							|  |  |  |  |                 <div class="product-image" style="background: linear-gradient(45deg, #ff69b4, #ffc0cb);"> | 
					
						
							|  |  |  |  |                     <div style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;">🥩</div> | 
					
						
							|  |  |  |  |                 </div> | 
					
						
							|  |  |  |  |                 <div class="product-badge">订单备货中</div> | 
					
						
							|  |  |  |  |                 <div class="product-info"> | 
					
						
							|  |  |  |  |                     <div class="product-name">盐池滩羊排骨丝</div> | 
					
						
							|  |  |  |  |                     <div class="product-price">¥105.8<span class="unit">/份</span></div> | 
					
						
							|  |  |  |  |                     <div class="product-store">清羊肉店(全季菜市场)</div> | 
					
						
							|  |  |  |  |                     <div class="product-meta"> | 
					
						
							|  |  |  |  |                         <span>⭐ 4.9分</span> | 
					
						
							|  |  |  |  |                         <span>📍 0.3km</span> | 
					
						
							|  |  |  |  |                     </div> | 
					
						
							|  |  |  |  |                     <div class="product-delivery">起送¥30 满¥80免运费</div> | 
					
						
							|  |  |  |  |                     <div class="product-actions"> | 
					
						
							|  |  |  |  |                         <button class="action-btn"> | 
					
						
							|  |  |  |  |                             <span>👍</span> | 
					
						
							|  |  |  |  |                             <span>6</span> | 
					
						
							|  |  |  |  |                         </button> | 
					
						
							|  |  |  |  |                         <button class="action-btn"> | 
					
						
							|  |  |  |  |                             <span>❤️</span> | 
					
						
							|  |  |  |  |                             <span>4</span> | 
					
						
							|  |  |  |  |                         </button> | 
					
						
							|  |  |  |  |                     </div> | 
					
						
							|  |  |  |  |                 </div> | 
					
						
							|  |  |  |  |                 <button class="add-to-cart">+</button> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |             <!-- 商品卡片3 --> | 
					
						
							|  |  |  |  |             <div class="card product-card"> | 
					
						
							|  |  |  |  |                 <div class="product-image" style="background: radial-gradient(circle, #dda0dd 40%, #9370db 70%);"></div> | 
					
						
							|  |  |  |  |                 <div class="product-info"> | 
					
						
							|  |  |  |  |                     <div class="product-name">巨峰葡萄约100g</div> | 
					
						
							|  |  |  |  |                     <div class="product-price">¥12<span class="unit">/份</span></div> | 
					
						
							|  |  |  |  |                     <div class="product-store">四季水果店(春申菜市场)</div> | 
					
						
							|  |  |  |  |                     <div class="product-meta"> | 
					
						
							|  |  |  |  |                         <span>⭐ 4.7分</span> | 
					
						
							|  |  |  |  |                         <span>📍 0.1km</span> | 
					
						
							|  |  |  |  |                     </div> | 
					
						
							|  |  |  |  |                     <div class="product-delivery">起送¥10 满¥30免运费</div> | 
					
						
							|  |  |  |  |                     <div class="product-actions"> | 
					
						
							|  |  |  |  |                         <button class="action-btn"> | 
					
						
							|  |  |  |  |                             <span>👍</span> | 
					
						
							|  |  |  |  |                             <span>23</span> | 
					
						
							|  |  |  |  |                         </button> | 
					
						
							|  |  |  |  |                         <button class="action-btn"> | 
					
						
							|  |  |  |  |                             <span>❤️</span> | 
					
						
							|  |  |  |  |                             <span>18</span> | 
					
						
							|  |  |  |  |                         </button> | 
					
						
							|  |  |  |  |                     </div> | 
					
						
							|  |  |  |  |                 </div> | 
					
						
							|  |  |  |  |                 <button class="add-to-cart">+</button> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |             <!-- 商品卡片4 --> | 
					
						
							|  |  |  |  |             <div class="card product-card"> | 
					
						
							|  |  |  |  |                 <div class="product-image" style="background: radial-gradient(circle, #ffa500 30%, #ff8c00 70%);"></div> | 
					
						
							|  |  |  |  |                 <div class="product-info"> | 
					
						
							|  |  |  |  |                     <div class="product-name">新疆哈密瓜约500g</div> | 
					
						
							|  |  |  |  |                     <div class="product-price">¥28<span class="unit">/份</span></div> | 
					
						
							|  |  |  |  |                     <div class="product-store">新鲜果园(华径菜场)</div> | 
					
						
							|  |  |  |  |                     <div class="product-meta"> | 
					
						
							|  |  |  |  |                         <span>⭐ 4.9分</span> | 
					
						
							|  |  |  |  |                         <span>📍 0.1km</span> | 
					
						
							|  |  |  |  |                     </div> | 
					
						
							|  |  |  |  |                     <div class="product-delivery">起送¥15 满¥40免运费</div> | 
					
						
							|  |  |  |  |                     <div class="product-actions"> | 
					
						
							|  |  |  |  |                         <button class="action-btn"> | 
					
						
							|  |  |  |  |                             <span>👍</span> | 
					
						
							|  |  |  |  |                             <span>31</span> | 
					
						
							|  |  |  |  |                         </button> | 
					
						
							|  |  |  |  |                         <button class="action-btn liked"> | 
					
						
							|  |  |  |  |                             <span>❤️</span> | 
					
						
							|  |  |  |  |                             <span>25</span> | 
					
						
							|  |  |  |  |                         </button> | 
					
						
							|  |  |  |  |                     </div> | 
					
						
							|  |  |  |  |                 </div> | 
					
						
							|  |  |  |  |                 <button class="add-to-cart">+</button> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  |         </div> | 
					
						
							|  |  |  |  |     </div> | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     <!-- 底部导航 --> | 
					
						
							|  |  |  |  |     <div class="bottom-nav"> | 
					
						
							|  |  |  |  |         <div class="nav-item active"> | 
					
						
							|  |  |  |  |             <div class="nav-icon">🏠</div> | 
					
						
							|  |  |  |  |             <span>首页</span> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  |         <div class="nav-item"> | 
					
						
							|  |  |  |  |             <div class="nav-icon">💬</div> | 
					
						
							|  |  |  |  |             <span>消息</span> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  |         <div class="nav-item"> | 
					
						
							|  |  |  |  |             <div class="nav-icon" style="position: relative;">🛒 | 
					
						
							|  |  |  |  |                 <div class="cart-badge">23</div> | 
					
						
							|  |  |  |  |             </div> | 
					
						
							|  |  |  |  |             <span>购物车</span> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  |         <div class="nav-item"> | 
					
						
							|  |  |  |  |             <div class="nav-icon">👤</div> | 
					
						
							|  |  |  |  |             <span>我的</span> | 
					
						
							|  |  |  |  |         </div> | 
					
						
							|  |  |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2025-08-23 13:53:57 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-24 18:02:21 +00:00
										 |  |  |  |     <script> | 
					
						
							|  |  |  |  |         // 跳转到菜市场页面 | 
					
						
							|  |  |  |  |         function goToMarketPage() { | 
					
						
							|  |  |  |  |             window.location.href = '菜市场首页.html'; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  |          | 
					
						
							|  |  |  |  |         // 跳转到福利专区页面 | 
					
						
							|  |  |  |  |         function goToWelfarePage() { | 
					
						
							|  |  |  |  |             window.location.href = '福利专区.html'; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  |     </script> | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-23 13:18:47 +00:00
										 |  |  |  | </body> | 
					
						
							| 
									
										
										
										
											2025-08-24 18:02:21 +00:00
										 |  |  |  | </html> |