body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f5f5f5;
}

.search-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 8px 12px;
  box-sizing: border-box;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 20px;
  overflow: hidden;
  height: 36px;
}
.search-box #searchInput {
  flex: 1;
  padding: 0 12px;
  border: none;
  background: transparent;
  font-size: 15px;
  outline: none;
  height: 100%;
  line-height: 36px;
}
.search-box .search-btn {
  padding: 0 16px;
  background: #007bff;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  height: 100%;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 12px;
  right: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 60vh;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
}
.search-dropdown.active {
  display: block;
}
.search-dropdown .dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-dropdown .dropdown-list .dropdown-item {
  padding: 12px 12px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  font-size: 15px;
  color: #333;
}
.search-dropdown .dropdown-list .dropdown-item:last-child {
  border-bottom: none;
}
.search-dropdown .dropdown-list .dropdown-item:hover, .search-dropdown .dropdown-list .dropdown-item.highlight {
  background: #f0f8ff;
}

.page-content {
  margin-top: 56px;
  padding: 20px;
}

.empty-tip {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.dropdown-item {
  border-bottom: 1px solid #eee;
}
.dropdown-item:last-child {
  border-bottom: none;
}

.product-item .item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  text-decoration: none;
  color: inherit;
  width: 100%;
  box-sizing: border-box;
}
.product-item .item-main {
  flex: 1;
  min-width: 0;
  margin-right: 12px;
}
.product-item .item-title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 4px;
}
.product-item .item-code {
  font-size: 13px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-item .item-desc {
  font-size: 13px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}
.product-item .item-arrow {
  color: #aaa;
  flex-shrink: 0;
}
.product-item .item-arrow svg {
  display: block;
}
.product-item:active {
  background-color: #f5f5f5;
}

.empty-tip,
.loading-tip {
  padding: 40px 20px;
  text-align: center;
  color: #999;
}
.empty-tip .empty-icon,
.loading-tip .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.4;
}
.empty-tip h4,
.loading-tip h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #666;
}
.empty-tip p,
.loading-tip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.loading-tip {
  padding: 30px 20px;
  color: #666;
}

/*# sourceMappingURL=HeaderSearch.css.map */
