html {
    font-size: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    width: 100%;
    max-width: 800px;
    min-height: 100vh;
    margin: 0 auto;
    box-sizing: border-box;
    background: #ffffff;
    color: #111111;
    cursor: default;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.search_header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
}

.search_back {
    position: absolute;
    top: 0;
    left: 10px;
    width: 42px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111111;
    cursor: pointer;
    font-family: inherit;
    font-size: 32px;
    line-height: 44px;
}

.search_header h1 {
    max-width: calc(100% - 110px);
    margin: 0;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500;
    line-height: 44px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search_main {
    width: 100%;
    min-height: calc(100vh - 44px);
    box-sizing: border-box;
    background: #ffffff;
}

.search_bar {
    position: sticky;
    top: 44px;
    z-index: 9;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 20px;
    box-sizing: border-box;
    background: #f0f1f2;
}

.search_input_wrap {
    display: flex;
    align-items: center;
    min-width: 0;
    height: 34px;
    padding: 0 14px;
    box-sizing: border-box;
    border-radius: 18px;
    background: #ffffff;
}

.search_input_wrap img {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-right: 8px;
    opacity: 0.38;
}

.search_input_wrap input {
    flex: 1;
    min-width: 0;
    height: 32px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111111;
    font-family: inherit;
    font-size: 16px;
}

.search_input_wrap input::placeholder {
    color: #b5b8bc;
}

.search_submit {
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #06c160;
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    line-height: 34px;
}

.search_list {
    width: 100%;
    padding: 0 28px 16px;
    box-sizing: border-box;
}

.search_group_title {
    margin: 0;
    padding: 8px 0 6px;
    color: #06c160;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.search_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 4px 0 0;
    box-sizing: border-box;
    border-bottom: 1px solid #eeeeee;
    color: #111111;
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
}

.search_name {
    flex: 1;
    min-width: 0;
    padding-right: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search_qishu {
    flex: 0 0 auto;
    min-width: 66px;
    height: 24px;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 3px;
    background: #f1f1f1;
    color: #06c160;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
}

.search_status {
    display: none;
    width: 100%;
    padding: 26px 12px;
    box-sizing: border-box;
    color: #888888;
    font-size: 15px;
    text-align: center;
}

.search_status.is-visible {
    display: block;
}

@media (max-width: 600px) {
    .search_bar {
        gap: 8px;
        padding-right: 22px;
        padding-left: 14px;
    }

    .search_list {
        padding-right: 24px;
        padding-left: 28px;
    }
}