.page{
    min-height: 100vh;
    background-color: rgb(255, 255, 255);
    font-size: 0.28rem;
    color: #333; 
    justify-content: space-between;
}
.top_search{
    height: 1.3rem;
    background-color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 0.24rem;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top_search::after{
    content: "";
    position: absolute;
    height: 5px;
    width: 90%;
    bottom: -1px;
    z-index: 1002;
    background-color: rgb(255, 255, 255);
}

.top_search .back{
    width: 0.44rem;
    height: 0.52rem;
    margin-right: 0.1rem;

}
.top_search .search_box{
    flex: 1; 
    border-radius: 1rem;
    display: flex;
    align-items: center;
    padding: 0 0.06rem  0 0.32rem;
    height: 0.72rem;
    border: 1px solid #f60;
}
.top_search .search_box img{
    width: 0.34rem;
    height: 0.34rem;
    margin-right: 0.18rem;
}
.top_search .search_box .search_input{
    display: inline-block;
    height: 0.60rem;
    flex: 1;
    font-size: 0.26rem;
}
.top_search .search_box .search_btn{
    margin-left: 0.12rem;
    border: none;
    background-color: #f60;
    padding: 0 0.26rem;
    border-radius: 1rem;
    height: 0.6rem;
    color: #fff;
    font-size: 0.26rem;

}

.history_wrap{
    background-color: #fff;
    position: relative;
    width: 100%;
    padding: 0.26rem;
    font-size: 0.28rem;
}
.history_wrap #clear{
    position: absolute;
    width: 0.36rem;
    height: 0.36rem; 
    right: 0.26rem;
    top: 0.26rem;
}
.history_wrap #history_box{
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.32rem;
}
.history_wrap #history_box .words{
    background-color: #f7f7f7;
    color: #666666;
    border-radius: 1rem;
    white-space: nowrap;
    margin-bottom: 0.2rem;
    margin-right: 0.16rem;
    padding: 0.13rem 0.24rem;
}


.tab_wrap{
    background-color: #fff;
    display: flex;
    height: 0.9rem; 
    padding: 0 0.26rem;
    position: sticky;
    top: 1.3rem;
    z-index: 1001;
}
.tab_wrap .tab_item {
    margin-right: 0.40rem;
    font-size: 0.30rem;
    color: #666;
    /* background-color: pink; */
    padding-top: 0.26rem;
}
.tab_wrap .tab_item.active{
    color: #333;
    font-weight: 600;
    position: relative;
}
.tab_wrap .tab_item.active::after{
    content:"";
    display: block;
    width: 85%;
    height: 0.06rem;
    background-color: #f60;
    border-radius: 1rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
}

.part_outer{
    min-height: 2rem;
    /* background-color: pink; */
    /* margin-bottom: 0.1rem; */
    position: relative;
    padding: 0.26rem;
    padding-bottom: 0.12rem;
}

.part_outer .part_title{
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 0.24rem;
}
.part_outer .part_title span{
    font-size: 0.32rem;
    font-weight: 600;
}
.part_outer .part_title a{
    font-size: 0.26rem;
    color: #999;
}

.result_wrap{
    min-height: 100vh;
    background-color: #f8f8f8;
}

.result_list{
    background-color: #fff;
    border-radius: 0.12rem;
}

.result_list .card{
    margin: 0 0.24rem;
    padding: 0.24rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(236, 236, 236);
}
.result_list .card:last-child{
    border: none;
}

.result_list .card img{
    width: 0.84rem;
    height: 0.84rem;
    margin-right: 0.24rem;
    /* background-color: rgb(188, 188, 255); */
}
.result_list .card .info .zhinan_name{
    font-size: 0.32rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.result_list .card .info .tips_text{
    font-size: 0.24rem;
    color: #999;
}

.result_list .card .info .fuwu_name{
    font-size: 0.28rem;
    margin-bottom: 0.1rem;
}


.zixun_list {
    padding: 0 0.26rem;
}

.zixun_item{
    padding: 0.32rem 0;
    margin-bottom: 0rem !important;
}
.zixun_list .zixun_item:last-child{
    border: none;
}

.no_data{
    margin-bottom: 0 !important;
    padding-bottom: 0.4rem;
}