body, html {
    height: 100%;
}
.page_search {
    height: 60%;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #ffffff;
}
.search_box {
    padding: 0 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.search_box .search_input_wrap {
    height: 32px;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.search_box .s_input {
    display: block;
    padding: 0 15px 0 15px;
    font-size: 15px;
    color: #3f4046;
    height: 32px;
    line-height: 32px;
    background-color: #E8EBEF;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.search_box .s_input_clear {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 5px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 28px;
    height: 30px
}

.search_box .s_input_clear:after {
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    background: url("../images/icon_search.png") 0 0 no-repeat;
    background-size: 15px 15px;
}
.search_box .search_cancel {
    font-size: 15px;
    color: #326cff;
    margin-left: 5px;
}
.page_search_con {
    padding: 15px;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.page_search_con .null_img {
    width: 150px;
    height: 130px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.suggest_result {
    position: fixed;
    z-index: 301;
    max-width: 16rem;
    width: 100%;
    display: block;
    background-color: #fff;
    border-top: 1px solid #eee;
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

.suggest_result .suggest_result_item {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    height: 46px;
    line-height: 46px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #28354c;
    font-size: 14px
}
.search_result {
    padding: 0 15px 15px;
    background-color: #ffffff;
}
.search_result_tit {
    color: #aaaebb;
    font-size: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}