/* 搜索栏样式 */
.search-wrapper {
    margin: 2rem auto;
    max-width: 800px;
    padding: 2rem;
    background-color: transparent;
    border-radius: 0;
}

.s-search {
    max-width: 700px;
    margin: 0 auto;
}

#search-list-menu .s-type-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

#search-list-menu .s-type-list label {
    cursor: pointer;
    padding-bottom: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.super-search-fm {
    position: relative;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.super-search-fm:focus-within {
    border-color: #0d6efd;
}

.super-search-fm input {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    background-color: transparent;
    color: #333;
    font-size: 1rem;
    outline: none;
}

.super-search-fm input::placeholder {
    color: #666;
}

.super-search-fm button {
    padding: 0 20px;
    border: none;
    background-color: #0d6efd;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.super-search-fm button svg {
    width: 20px;
    height: 20px;
}

.super-search-fm button:hover {
    background-color: #0b5ed7;
}

#search-list .search-group {
    display: none;
}

#search-list .search-group.s-current {
    display: block;
}

#search-list .search-type {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

#search-list .search-type label {
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
