.soft_logo {
    display: block;
    width: 200px;
    overflow: hidden;
    margin: 30px auto;
    padding-top: 15px;
    padding-bottom: 50px;
    position: relative;
}
.search_tag {
    display: block;
    float: right;
    width: auto;
    height: 25px;
    line-height: 25px;
    overflow:hidden;
    background-color: red;
    padding: 0px 10px;
    border-radius: 20px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    position: absolute;
    z-index: 5;
    right: 0px;
    top: 0;
}

.soft_logo img {
    display: block;
    width: 100%;
}
.navigator_panel {
    background-image: none;
    background-color: #ffffff;
}
.search_form_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    clear: both;
    width: calc(100% - 100px);
    height: 40px;
    overflow: hidden;
    background-color: #eeeeee;
    border-radius: 8px;
    padding: 5px;
    margin-left: 35px;
}
.search_form_header .icon {
    flex-shrink: 0;
    display: block;
    width: 18px;
    height: 18px;
    overflow: hidden;
    margin-left: 5px;
}
.search_form_header .icon img {
    display: block;
    width: 100%;
}
.search_form_header .weui-input {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 30px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0px 0px 50px 50px #eeeeee inset;
    border: none;
    font-size: 16px;
    color: #0068FF;
    caret-color:#0068FF;
}
.search_form_header .weui-icon-clear {
    display: none;
}
.search_btn {
    flex-shrink: 0;
    display: block;
    width: 60px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 5px;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #0068FF;
    text-align: center;
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 5px;
}
.page_body_search {
    height: calc(100% - 50px);
    padding: 0px 15px;
}
.search_window_list {
    display: none;
    clear: both;
    width: 100%;
    height: calc(100% - 180px);
    overflow: hidden;
    overflow-y: auto;
    background-color: #ffffff;
    padding: 10px 15px;
    position: absolute;
    z-index: 5;
    left: 0;
    top: 180px;
}
.result_numbers {
    display: block;
    clear: both;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    padding: 0px 15px;
    font-size: 13px;
    color: #0068FF;
}
.result_numbers .msg, .result_numbers .num {
    flex-shrink: 0;
    display: block;
    width: auto;
    height: 100%;
    overflow: hidden;
}
.result_numbers .num {
    text-align: right;
}
.search_result {
    display: block;
    clear: both;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0px 10px;
}
.search_result li {
    display: block;
    clear: both;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    border-bottom: 1px solid #EEE;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #333;
    text-overflow: ellipsis;
    word-break: break-all;
    white-space: nowrap;
}
.search_result li:hover {
    background-color: #EEEEEE;
}
.search_result li .icon {
    display: block;
    float: left;
    width: 6px;
    height: 6px;
    overflow: hidden;
    background-color: #0068FF;
    border-radius: 10px;
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 17px;
}

/*搜索历史-开始*/
.history_panel {
    display: none;
    clear: both;
    width: 100%;
    overflow: hidden;
}
.history_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    clear: both;
    width: 100%;
    overflow: hidden;
    padding: 5px 0px;
    border-bottom: 1px solid #eee;
}
.history_title h3 {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 16px;
}
.history_title h3 .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
}
.history_title h3 .icon img {
    display: block;
    width: 100%;
}
.history_title .weui-btn {
    flex-shrink: 0;
    display: block;
    width: 50px;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    background-color: #eeeeee;
    padding: 0px;
    margin:0;
    color: gray;
}
.history_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    clear: both;
    width: 100%;
    overflow: hidden;
    padding: 10px 0px;
}
.search_badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    clear: both;
    width: auto;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    background-color: #EEEEEE;
    border-radius: 20px;
    padding: 0px 3px;
    padding-left: 10px;
    font-size: 14px;
    color: gray;
}
.search_badge .weui-icon-clear {
    font-size: 0.8rem;
}
/*搜索历史-结束*/