﻿/* 搜索 */
*{
    box-sizing:border-box;
}
a {
    text-decoration: none; 
    color: inherit;  
    cursor: pointer;	
}
.search-box {
    padding: 10px;
    background: #fff;
}

.search-box form {
    display: flex;
    gap: 5px;
}

.search-box select,
.search-box input {
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 5px;
}

.search-box input {
    flex: 1;
}

.search-box button {
    width: 60px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
}

/* 底部导航 */
.tabbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 55px;
    background: #fff;
    display: flex;
    border-top: 1px solid #ddd;
}

.tabbar div {
    flex: 1;
    text-align: center;
    font-size: 12px;
    padding-top: 10px;
}

/* 占位 */
.footer-space {
    height: 60px;
}