/* ============================================
   Usersafe · 搜索页样式
   ============================================ */

/* 搜索页内容居中 */
#content.search-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

#search_area {
    max-width: 640px;
    width: 100%;
    text-align: center;
}

#search_title h1 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

#search_title p {
    color: #5e6f8d;
    font-size: 16px;
}

#search_form {
    position: relative;
    margin-top: 28px;
}

#search_input {
    width: 100%;
    height: 58px;
    padding: 0 60px 0 28px;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-size: 16px;
    background: #fff;
    transition: 0.2s;
    outline: none;
}

#search_input:focus {
    border-color: #0b1a2f;
    box-shadow: 0 4px 18px rgba(11, 26, 47, 0.06);
}

#search_button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24" fill="none" stroke="%235e6f8d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><path d="M21 21l-4.35-4.35"/></svg>');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.15s;
    border: none;
    background-color: transparent;
}

#search_button:hover {
    opacity: 1;
}

#search_hot {
    margin-top: 22px;
    font-size: 14px;
    color: #5e6f8d;
}

#search_hot a {
    margin: 0 8px;
    color: #0b1a2f;
    font-weight: 500;
    border-bottom: 1px dashed #d0d9e6;
    padding-bottom: 1px;
}

#search_hot a:hover {
    border-bottom-color: #0b1a2f;
}

/* ---------- 响应式 ---------- */
@media (max-width: 768px) {
    #search_title h1 {
        font-size: 28px;
    }

    #search_input {
        height: 50px;
        font-size: 15px;
        padding: 0 50px 0 20px;
    }
}