/* DOZZON 全站站内搜索样式（V3.0 浅色企业风） */
.dz-nav-search {
  display: flex;
  align-items: center;
  background: var(--bg-secondary, #f4f7fb);
  border: 1px solid var(--border, #dbe4ee);
  border-radius: 999px;
  padding: 4px 6px 4px 12px;
  transition: border-color .2s, box-shadow .2s;
}
.dz-nav-search:focus-within {
  border-color: var(--brand, #0F2B5B);
  box-shadow: 0 0 0 3px rgba(15,43,91,.12);
}
.dz-nav-search-input {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  color: var(--text-primary, #1a2433);
  width: 180px;
  max-width: 42vw;
}
.dz-nav-search-input::placeholder { color: var(--text-muted, #8a97a8); }
.dz-nav-search-btn {
  border: 0;
  background: var(--brand, #0F2B5B);
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background .2s;
}
.dz-nav-search-btn:hover { background: var(--accent, #2E7D54); }

.dz-search-layer {
  position: absolute;
  z-index: 1200;
  background: #fff;
  border: 1px solid var(--border, #dbe4ee);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15,43,91,.18);
  overflow: hidden;
  max-height: 60vh;
  overflow-y: auto;
}
.dz-search-item {
  display: block;
  padding: 10px 14px;
  border-bottom: 1px solid #eef2f7;
  text-decoration: none;
  color: var(--text-primary, #1a2433);
  transition: background .15s;
}
.dz-search-item:last-child { border-bottom: 0; }
.dz-search-item:hover, .dz-search-item:focus { background: #f4f8fc; }
.dz-search-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--accent, #2E7D54);
  border-radius: 4px;
  padding: 1px 6px;
  margin-right: 8px;
}
.dz-search-title { font-size: 14px; font-weight: 600; }
.dz-search-desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted, #8a97a8);
  margin-top: 3px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dz-search-empty { padding: 14px; font-size: 13px; color: var(--text-muted, #8a97a8); }

@media (max-width: 860px) {
  .dz-nav-search-input { width: 120px; }
  .dz-search-layer { width: 90vw !important; left: 5vw !important; }
}
