Spaces:
Running
Running
| <html lang="zh-Hant"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>海生館推薦行程 (方案一)</title> | |
| <style> | |
| body { | |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang TC", "Noto Sans TC", sans-serif; | |
| background-color: #f0f4f8; | |
| color: #333; | |
| margin: 0; | |
| padding: 20px; | |
| line-height: 1.6; | |
| } | |
| .container { | |
| max-width: 800px; | |
| margin: 20px auto; | |
| background-color: #ffffff; | |
| border-radius: 12px; | |
| box-shadow: 0 8px 24px rgba(0, 48, 102, 0.08); | |
| overflow: hidden; | |
| } | |
| header { | |
| background-image: linear-gradient(135deg, #00529b 0%, #003b7a 100%); | |
| color: white; | |
| padding: 24px 30px; | |
| text-align: center; | |
| } | |
| header h1 { | |
| margin: 0; | |
| font-size: 26px; | |
| font-weight: 600; | |
| } | |
| header p { | |
| margin: 8px 0 0; | |
| font-size: 16px; | |
| opacity: 0.9; | |
| } | |
| /* 海生館簡介區塊 */ | |
| .intro-section { | |
| padding: 20px 30px; | |
| background-color: #fdfdfd; | |
| border-bottom: 1px solid #e0e0e0; | |
| } | |
| .intro-section h2 { | |
| font-size: 22px; | |
| font-weight: 600; | |
| color: #003b7a; | |
| margin-top: 0; | |
| margin-bottom: 15px; | |
| text-align: center; | |
| } | |
| .intro-section p { | |
| font-size: 16px; | |
| color: #333; | |
| margin-bottom: 15px; | |
| } | |
| .intro-section p strong { | |
| color: #00529b; | |
| } | |
| .map-container { | |
| padding: 20px 30px; | |
| background: #fafafa; | |
| border-bottom: 1px solid #e0e0e0; | |
| } | |
| .map-container h2 { | |
| font-size: 18px; | |
| color: #003b7a; | |
| margin-top: 0; | |
| margin-bottom: 15px; | |
| text-align: center; | |
| } | |
| .map-container img { | |
| width: 100%; | |
| max-width: 600px; | |
| border-radius: 8px; | |
| display: block; | |
| margin: 0 auto; | |
| border: 1px solid #ddd; | |
| } | |
| /* --- 新增:三館介紹樣式 --- */ | |
| .pavilion-guide { | |
| padding: 30px; | |
| background-color: #fdfdfd; | |
| border-bottom: 1px solid #e0e0e0; | |
| } | |
| .pavilion-guide h2 { | |
| font-size: 22px; | |
| font-weight: 600; | |
| color: #003b7a; | |
| margin-top: 0; | |
| margin-bottom: 25px; | |
| text-align: center; | |
| border-bottom: 3px solid #00529b; | |
| padding-bottom: 10px; | |
| } | |
| .pavilion-container { | |
| display: grid; | |
| grid-template-columns: 1fr; /* 手機上垂直堆疊 */ | |
| gap: 20px; | |
| } | |
| @media (min-width: 768px) { | |
| .pavilion-container { | |
| grid-template-columns: repeat(3, 1fr); /* 電腦上三欄 */ | |
| } | |
| } | |
| .pavilion-card { | |
| background-color: #ffffff; | |
| border: 1px solid #e0e0e0; | |
| border-radius: 8px; | |
| padding: 20px; | |
| box-shadow: 0 2px 4px rgba(0,0,0,0.03); | |
| } | |
| .pavilion-card h3 { | |
| font-size: 20px; | |
| font-weight: 600; | |
| color: #00529b; | |
| margin: 0 0 10px; | |
| } | |
| .pavilion-card .theme { | |
| font-size: 15px; | |
| font-style: italic; | |
| color: #555; | |
| margin-bottom: 15px; | |
| padding-bottom: 10px; | |
| border-bottom: 1px solid #eee; | |
| } | |
| .pavilion-card h4 { | |
| font-size: 16px; | |
| font-weight: 600; | |
| color: #333; | |
| margin: 15px 0 10px; | |
| } | |
| .pavilion-card ul { | |
| list-style-type: '› '; | |
| padding-left: 20px; | |
| margin: 0; | |
| } | |
| .pavilion-card ul li { | |
| font-size: 15px; | |
| color: #555; | |
| margin-bottom: 8px; | |
| } | |
| /* --- 樣式結束 --- */ | |
| .timeline { | |
| padding: 30px; | |
| } | |
| .phase { | |
| margin-bottom: 30px; | |
| } | |
| .phase-title { | |
| font-size: 22px; | |
| font-weight: 600; | |
| color: #00529b; | |
| border-bottom: 3px solid #00529b; | |
| padding-bottom: 10px; | |
| margin-bottom: 20px; | |
| } | |
| .event { | |
| display: flex; | |
| align-items: flex-start; | |
| background-color: #fdfdfd; | |
| border: 1px solid #e0e0e0; | |
| padding: 20px; | |
| margin-bottom: 15px; | |
| border-radius: 8px; | |
| transition: box-shadow 0.2s ease; | |
| } | |
| .event:hover { | |
| box-shadow: 0 4px 12px rgba(0,0,0,0.05); | |
| } | |
| .event-time { | |
| flex: 0 0 120px; | |
| font-size: 18px; | |
| font-weight: 600; | |
| color: #d9534f; | |
| display: flex; | |
| align-items: center; | |
| } | |
| .event-time span { | |
| margin-right: 8px; | |
| } | |
| .event-details { | |
| flex: 1; | |
| } | |
| .event-details h3 { | |
| font-size: 20px; | |
| font-weight: 600; | |
| margin: 0 0 8px; | |
| color: #003b7a; | |
| } | |
| .event-details p { | |
| font-size: 16px; | |
| color: #555; | |
| margin: 0; | |
| display: flex; | |
| align-items: center; | |
| } | |
| .event-details p span { | |
| margin-right: 8px; | |
| } | |
| .event-move { | |
| background-color: #f8f9fa; | |
| text-align: center; | |
| font-style: italic; | |
| color: #555; | |
| padding: 20px; | |
| border-radius: 8px; | |
| border: 1px dashed #ccc; | |
| margin-top: 10px; | |
| margin-bottom: 30px; | |
| } | |
| .event-move p { | |
| margin: 5px 0; | |
| font-size: 16px; | |
| } | |
| /* 餐廳區塊 */ | |
| .dining-info { | |
| background: #fdfdfd; | |
| border: 1px solid #e0e0e0; | |
| border-radius: 8px; | |
| padding: 20px; | |
| margin-bottom: 30px; | |
| } | |
| .dining-info h2 { | |
| font-size: 22px; | |
| font-weight: 600; | |
| color: #007bff; /* 藍色 */ | |
| margin-top: 0; | |
| margin-bottom: 20px; | |
| text-align: center; | |
| } | |
| .restaurant { | |
| display: flex; | |
| align-items: flex-start; | |
| margin-bottom: 15px; | |
| padding-bottom: 15px; | |
| border-bottom: 1px solid #eee; | |
| } | |
| .restaurant:last-child { | |
| margin-bottom: 0; | |
| padding-bottom: 0; | |
| border-bottom: none; | |
| } | |
| .restaurant-icon { | |
| font-size: 24px; | |
| margin-right: 15px; | |
| margin-top: 5px; | |
| } | |
| .restaurant-details { | |
| flex: 1; | |
| } | |
| .restaurant-details h3 { | |
| font-size: 18px; | |
| font-weight: 600; | |
| margin: 0 0 5px; | |
| color: #333; | |
| } | |
| .restaurant-details p { | |
| font-size: 15px; | |
| color: #555; | |
| margin: 0; | |
| } | |
| /* 外食資訊區塊 */ | |
| .outside-food-info { | |
| background: #fdfdfd; | |
| border: 1px solid #e0e0e0; | |
| border-radius: 8px; | |
| padding: 20px; | |
| margin-bottom: 30px; | |
| } | |
| .outside-food-info h2 { | |
| font-size: 22px; | |
| font-weight: 600; | |
| color: #28a745; /* 綠色 */ | |
| margin-top: 0; | |
| margin-bottom: 15px; | |
| text-align: center; | |
| } | |
| .outside-food-info h3 { | |
| font-size: 18px; | |
| font-weight: 600; | |
| margin: 20px 0 10px; | |
| color: #155724; /* 深綠 */ | |
| } | |
| .outside-food-info > p { /* 指第一層P */ | |
| font-size: 16px; | |
| margin-bottom: 15px; | |
| color: #333; | |
| } | |
| .rules-list { | |
| list-style-type: none; | |
| padding-left: 0; | |
| } | |
| .rules-list li { | |
| font-size: 15px; | |
| margin-bottom: 10px; | |
| display: flex; | |
| align-items: flex-start; | |
| } | |
| .rules-list li strong { | |
| flex-shrink: 0; | |
| width: 80px; | |
| margin-right: 10px; | |
| } | |
| .rules-list li.allowed strong { color: #28a745; } | |
| .rules-list li.forbidden strong { color: #dc3545; } | |
| .rules-list li.designated strong { color: #007bff; } | |
| .recommendation-list { | |
| list-style-type: none; | |
| padding-left: 0; | |
| } | |
| .recommendation-list > li { | |
| font-size: 16px; | |
| font-weight: 600; | |
| margin: 10px 0 5px; | |
| color: #333; | |
| } | |
| .recommendation-list ul { | |
| list-style-type: '– '; | |
| padding-left: 20px; | |
| margin: 5px 0 10px; | |
| } | |
| .recommendation-list ul li { | |
| font-size: 15px; | |
| font-weight: normal; | |
| color: #555; | |
| margin-bottom: 5px; | |
| } | |
| /* 地圖連結樣式 */ | |
| .recommendation-list ul li a { | |
| text-decoration: none; | |
| color: #0056b3; | |
| font-weight: 500; | |
| } | |
| .recommendation-list ul li a:hover { | |
| text-decoration: underline; | |
| } | |
| /* 提醒區塊 */ | |
| .alert-box { | |
| background-color: #fffbe6; | |
| border: 1px solid #ffe58f; | |
| color: #8a6d3b; | |
| padding: 20px 30px; | |
| border-radius: 8px; | |
| margin: 0 30px 30px; | |
| } | |
| .alert-box h3 { | |
| margin: 0 0 10px; | |
| font-size: 18px; | |
| color: #c09853; | |
| } | |
| .alert-box p { | |
| margin: 0; | |
| } | |
| /* 活動圖片樣式 */ | |
| .event-image { | |
| width: 100%; | |
| max-width: 100%; | |
| border-radius: 8px; | |
| margin-top: 15px; | |
| margin-bottom: 10px; | |
| display: block; | |
| height: auto; | |
| border: 1px solid #ddd; | |
| } | |
| .event-image-caption { | |
| font-size: 14px; | |
| color: #666; | |
| text-align: center; | |
| margin-top: 5px; | |
| } | |
| /* 海藻知識卡樣式 */ | |
| .knowledge-box { | |
| background-color: #f0f9eb; /* 淺綠色 */ | |
| border: 1px solid #d6e9c6; | |
| border-radius: 6px; | |
| padding: 15px; | |
| margin-top: 20px; | |
| } | |
| .knowledge-box h4 { | |
| font-size: 16px; | |
| font-weight: 600; | |
| color: #3c763d; /* 深綠色 */ | |
| margin: 0 0 10px; | |
| } | |
| .knowledge-box ul { | |
| list-style-type: '🌿'; | |
| padding-left: 20px; | |
| margin: 0; | |
| } | |
| .knowledge-box ul li { | |
| font-size: 15px; | |
| color: #333; | |
| margin-bottom: 8px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <header> | |
| <h1>海生館推薦行程 (方案一)</h1> | |
| <p>兼顧「最多表演」與「最少場館移動」的平衡方案</p> | |
| </header> | |
| <div class="intro-section"> | |
| <h2>歡迎來到屏東海生館</h2> | |
| <p> | |
| 歡迎來到國立海洋生物博物館(簡稱海生館)!這座位於屏東車城鄉、被《米其林綠色指南》推薦為必遊的景點,是全台灣規模最大的海洋博物館。 | |
| </p> | |
| <p> | |
| 全館主要分為三大主題館區:<strong>台灣水域館</strong>、<strong>珊瑚王國館</strong>、與<strong>世界水域館</strong>。 | |
| </p> | |
| </div> | |
| <div class="map-container"> | |
| <h2>園區地圖參考</h2> | |
| <img src="1000032763.jpg" alt="海生館園區地圖"> | |
| </div> | |
| <div class="pavilion-guide"> | |
| <h2>三大展館特色導覽</h2> | |
| <div class="pavilion-container"> | |
| <div class="pavilion-card"> | |
| <h3>🌊 台灣水域館</h3> | |
| <p class="theme">以「水的循環」為故事主軸,帶您從高山溪流一路玩到大洋。</p> | |
| <h4>必看亮點:</h4> | |
| <ul> | |
| <li><strong>大洋池:</strong>寬16公尺、高4公尺的巨型觀景窗,觀賞鯊魚、魟魚等大型魚類。</li> | |
| <li><strong>觸摸池:</strong>位於潮間帶區,可親手觸摸海星、海參。</li> | |
| <li><strong>河口區:</strong>模擬紅樹林生態,尋找招潮蟹與彈塗魚。</li> | |
| </ul> | |
| </div> | |
| <div class="pavilion-card"> | |
| <h3>🐠 珊瑚王國館</h3> | |
| <p class="theme">展示繽紛的珊瑚礁生態,以及海生館明星動物—白鯨。</p> | |
| <h4>必看亮點:</h4> | |
| <ul> | |
| <li><strong>海底隧道:</strong>長達 84 公尺的夢幻隧道,仰望魚群從頭頂游過。</li> | |
| <li><strong>白鯨池:</strong>探望聰明活潑的白鯨。</li> | |
| <li><strong>沈船探險:</strong>觀看珊瑚與魚類如何將沉船變為新家。</li> | |
| </ul> | |
| </div> | |
| <div class="pavilion-card"> | |
| <h3>🐧 世界水域館</h3> | |
| <p class="theme">透過 3D 等科技,探索古代海洋、深海及寒冷的極地水域。</p> | |
| <h4>必看亮點:</h4> | |
| <ul> | |
| <li><strong>海藻森林:</strong>超過 10 公尺高的巨藻缸,觀賞潛水員餵食。</li> | |
| <li><strong>極地水域:</strong>探訪人氣超高的企鵝與海鸚鵡。</li> | |
| <li><strong>古代海洋:</strong>透過 3D 螢幕重現已滅絕的古海洋生物。</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="timeline"> | |
| <div class="phase"> | |
| <h2 class="phase-title">📍 上半場:台灣水域館 & 珊瑚王國館</h2> | |
| <div class="event"> | |
| <div class="event-time"><span>⏰</span>10:00 - 10:15</div> | |
| <div class="event-details"> | |
| <h3>大洋池餵食解說</h3> | |
| <p><span>🗺️</span>地點:台灣水域館</p> | |
| <img src="ocean_tank_feeding.jpg" alt="大洋池餵食照片" class="event-image"> | |
| <p class="event-image-caption">震撼的大洋池餵食秀,潛水員在魚群中悠游。</p> | |
| </div> | |
| </div> | |
| <div class="event"> | |
| <div class="event-time"><span>⏰</span>10:30 - 11:00</div> | |
| <div class="event-details"> | |
| <h3>觸摸池開放時段</h3> | |
| <p><span>🗺️</span>地點:台灣水域館</p> | |
| </div> | |
| </div> | |
| <div class="event"> | |
| <div class="event-time"><span>⏰</span>11:00 - 11:15</div> | |
| <div class="event-details"> | |
| <h3>與魚共舞</h3> | |
| <p><span>🗺️</span>地點:珊瑚王國館 - 海底隧道</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="event-move"> | |
| <p><strong>🏃♂️ 中場休息 🏃♀️</strong></p> | |
| <p>上半場結束!可在此區用餐或休息,準備移動至「世界水域館」。</p> | |
| </div> | |
| <div class="dining-info"> | |
| <h2>🍽️ 館內用餐參考</h2> | |
| <div class="restaurant"> | |
| <div class="restaurant-icon">📍</div> | |
| <div class="restaurant-details"> | |
| <h3>海味食堂 (上半場區域)</h3> | |
| <p> | |
| <strong>位置:</strong> 珊瑚王國館出口<br> | |
| <strong>餐點:</strong> 海洋風味套餐、炸雞速食 | |
| </p> | |
| </div> | |
| </div> | |
| <div class="restaurant"> | |
| <div class="restaurant-icon">📍</div> | |
| <div class="restaurant-details"> | |
| <h3>華饌人文飲食餐廳 (下半場區域)</h3> | |
| <p> | |
| <strong>位置:</strong> 世界水域館服務台旁<br> | |
| <strong>餐點:</strong> 套餐 (提供葷食/素食) | |
| </p> | |
| </div> | |
| </div> | |
| <div class="restaurant"> | |
| <div class="restaurant-icon">📍</div> | |
| <div class="restaurant-details"> | |
| <h3>海景餐廳 (大廳)</h3> | |
| <p> | |
| <strong>位置:</strong> 大廳二樓<br> | |
| <strong>餐點:</strong> 自助式餐點 (主要於暑假期間提供) | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="outside-food-info"> | |
| <h2>🍱 外食/自帶食物 建議</h2> | |
| <p>這是一個很不錯的主意,可以節省開銷,也能避免館內餐廳的排隊人潮。</p> | |
| <h3>⚠️ 飲食規定 (務必遵守)</h3> | |
| <ul class="rules-list"> | |
| <li class="allowed"><strong>✅ 可以攜帶:</strong>個人準備的食物是可以帶進海生館的。</li> | |
| <li class="forbidden"><strong>🚫 禁止區域:</strong>嚴禁在展覽館內(例如:台灣水域館、珊瑚王國館等看生物的地方)飲食。</li> | |
| <li class="designated"><strong>➡️ 指定區域:</strong>必須在館方規劃的指定餐飲區或遊客休息區(如大廳休息區)食用。</li> | |
| </ul> | |
| <h3>💡 路上外帶美食建議 (附地圖)</h3> | |
| <ul class="recommendation-list"> | |
| <li>恆春鎮區(選項最多): | |
| <ul> | |
| <li>包子類:<a href="https" target="_blank" rel="noopener noreferrer">小杜包子</a>(方便外帶)</li> | |
| <li>餃子/麵點:<a href="https" target="_blank" rel="noopener noreferrer">南方餃子館</a>(水餃、蒸餃)</li> | |
| <li>在地小吃:<a href="https" target="_blank" rel="noopener noreferrer">蓮阿姨飯糰</a>、<a href="https" target="_blank" rel="noopener noreferrer">恆春蛋酥餅</a></li> | |
| </ul> | |
| </li> | |
| <li>車城區(離海生館更近): | |
| <ul> | |
| <li>在地小吃:<a href="https" target="_blank" rel="noopener noreferrer">董家刈包</a>、<a href="https" target="_blank" rel="noopener noreferrer">廖阿婆肉粽</a></li> | |
| <li>甜點:<a href="https" target="_blank" rel="noopener noreferrer">黃家綠豆蒜</a>(可當點心)</li> | |
| </ul> | |
| </li> | |
| <li>最快速的選擇: | |
| <ul> | |
| <li>路上的便利商店(三明治、御飯糰)。</li> | |
| </ul> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="phase"> | |
| <h2 class="phase-title">📍 下半場:世界水域館</h2> | |
| <div class="event"> | |
| <div class="event-time"><span>⏰</span>14:00 - 14:15</div> | |
| <div class="event-details"> | |
| <h3>海藻森林餵食解說</h3> | |
| <p><span>🗺️</span>地點:世界水域館</p> | |
| <img src="kelp_forest_diver.jpg" alt="海藻森林潛水員餵食" class="event-image"> | |
| <p class="event-image-caption">潛水員下潛至10公尺深的巨型海藻缸中,介紹這片壯觀的海底森林生態。</p> | |
| <div class="knowledge-box"> | |
| <h4>🌿 海藻小知識</h4> | |
| <ul> | |
| <li>這個展缸是模擬美國加州沿岸的海藻森林生態。</li> | |
| <li>缸中的是「巨藻」(Giant Kelp),可以長到10公尺以上。</li> | |
| <li>巨藻是生長最快的海藻之一,每天最快可生長達50公分!</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="event"> | |
| <div class="event-time"><span>⏰</span>14:30 - 14:45</div> | |
| <div class="event-details"> | |
| <h3>海豹餵食解說</h3> | |
| <p><span>🗺️</span>地點:世界水域館</p> | |
| </div> | |
| </div> | |
| <div class="event"> | |
| <div class="event-time"><span>⏰</span>15:00 - 15:15</div> | |
| <div class="event-details"> | |
| <h3>企鵝餵食解說</h3> | |
| <p><span>🗺️</span>地點:世界水域館</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="alert-box"> | |
| <h3>⚠️ 行程取捨提醒</h3> | |
| <p>此方案為了集中參觀,犧牲了 10:00 在「世界水域館」的「海鸚鵡餵食解說」(因與大洋池餵食衝突)。</p> | |
| </div> | |
| </div> | |
| </body> | |
| </html> | |