.search-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.search-panel {
    display: none;
    position: fixed;
    top: 130px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #F6F8FD;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 400px;
    border-radius: 8px;
}

.search-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.search-select {
    width: 40%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

.search-top input {
    width: 40%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-top div {
    cursor: pointer;
    color: #666;
}

.search-top div:hover {
    color: #2B5AA8;
}

.search-results {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-results li {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.search-results li a {
    text-decoration: none;
    color: #333;
}

.search-results li a:hover {
    color: #2B5AA8;
}