/* ========================================= */ /* 9. [UI 修正] 強制搜尋列高度對齊 (Input, Select, Button) */ /* ========================================= */ /* 1. 強制搜尋列內所有主要元件高度一致為 50px */ .hero-search-wrapper input.form-control, .hero-search-wrapper .nice-select, .hero-search-wrapper .main-btn { height: 50px !important; line-height: 50px !important; /* 讓單行文字垂直置中 */ min-height: 50px !important; padding-top: 0 !important; padding-bottom: 0 !important; border: none !important; /* 移除可能導致高度不一的邊框 */ box-sizing: border-box !important; vertical-align: middle !important; display: inline-block !important; } /* 2. 修正 Nice-Select (下拉選單) 內部的文字位置 */ .hero-search-wrapper .nice-select .current { line-height: 50px !important; display: block; margin: 0; font-size: 16px; /* 確保字體大小一致 */ } /* 3. 修正 Nice-Select 的右側箭頭位置,確保絕對置中 */ .hero-search-wrapper .nice-select:after { top: 50% !important; margin-top: -4px !important; right: 15px !important; } /* 4. 特別修正按鈕 (立即查詢) */ .hero-search-wrapper .main-btn { display: inline-flex !important; /* 使用 Flex 讓按鈕文字絕對置中 */ align-items: center !important; justify-content: center !important; margin: 0 !important; width: 100%; /* 確保按鈕填滿容器 */ } /* 5. 確保外層容器不會干擾高度 */ .form_group_dropdown, .form_group_btn { height: 50px !important; vertical-align: middle !important; }

列表
模式

地圖
模式