/*!
 * hezi-search-expand.css — 搜索框展开动画
 */
.hezi-search-expand {
  overflow: hidden;
  width: 0 !important;
  opacity: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  pointer-events: none;
}
.hezi-search-open {
  width: auto !important;
  opacity: 1;
  pointer-events: auto;
  min-width: 200px;
}
/* 搜索框内的输入框不跟随折叠 */
.hezi-search-expand input {
  opacity: 1 !important;
}
