/* ============================================================
   搜索页.css — 搜索页专属样式
   说明：搜索页（搜索页.html）独有的样式，包括中央大搜索区域
         及其背景装饰。
   ============================================================ */

/* ---------- 搜索页主区域 ---------- */

/* 主区域：最小高度520px，上内边距124px */
.entry-main {
  min-height: 520px;
  padding-top: 124px;
}

/* 搜索区容器：居中显示，限制宽度
   position: relative 作为搜索建议面板(.suggest-panel)的定位参照容器，
   使建议面板宽度与搜索框一致，而非撑满全屏 */
.entry-search-area {
  position: relative;
  width: 760px;
  margin: 0 auto;
}

/* 提示文字 */
.search-tips{
  color: #999;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-top:24px;
}