.search-page {
    max-width: 980px;
    margin: 20px auto 40px;
}
.search-head {
    background: #fff;
    border: 1px solid #e6ebf5;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
}
.search-form { display: grid; grid-template-columns: 1fr 160px 120px 100px; gap: 10px; }
.search-input,
.search-select,
.search-btn {
    height: 40px;
    border: 1px solid #d6deef;
    border-radius: 10px;
    font-size: 14px;
}
.search-input,
.search-select { padding: 0 12px; }
.search-btn { background: #234ea3; color: #fff; border-color: #234ea3; cursor: pointer; }
.search-btn:hover { background: #2f63da; }
.search-tip { margin-top: 10px; font-size: 13px; color: #6f7e96; }
.assist-row { margin-top: 10px; display: flex; align-items: flex-start; gap: 8px; }
.assist-label { width: 64px; color: #6f7e96; font-size: 13px; line-height: 28px; }
.assist-list { flex: 1; display: flex; flex-wrap: wrap; gap: 8px; }
.assist-chip {
    border: 1px solid #d6deef;
    background: #fff;
    color: #456;
    border-radius: 999px;
    font-size: 12px;
    padding: 4px 10px;
    cursor: pointer;
}
.assist-chip:hover { border-color: #2f63da; color: #2f63da; }
.assist-chip.danger { border-color: #f2c4c4; color: #c33; }
.result-card {
    background: #fff;
    border: 1px solid #e6ebf5;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
}
.result-title { font-size: 16px; font-weight: 700; line-height: 1.5; }
.result-title a { color: #1f2d3d; }
.result-title a:hover { color: #234ea3; }
.result-snippet { margin-top: 8px; color: #5f6f84; font-size: 14px; line-height: 1.8; }
.kw-hit { color: #d14; background: #fff2cf; padding: 0 2px; border-radius: 2px; }
.result-meta { margin-top: 10px; font-size: 12px; color: #6f7e96; display: flex; gap: 12px; flex-wrap: wrap; }
.result-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #edf3ff;
    color: #2956b3;
    font-size: 12px;
    margin-right: 6px;
}
.result-tags { margin-top: 8px; }
.empty {
    background: #fff;
    border: 1px dashed #d6deef;
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    color: #6f7e96;
}
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.page-btn {
    min-width: 36px;
    height: 36px;
    border: 1px solid #d6deef;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    color: #456;
}
.page-btn.active { background: #234ea3; color: #fff; border-color: #234ea3; }
.page-btn:disabled { opacity: .5; cursor: not-allowed; }
.loading {
    background: #fff;
    border: 1px dashed #d6deef;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    color: #6f7e96;
}
@media (max-width: 980px) {
    .search-form { grid-template-columns: 1fr; }
}
