/* tabbar部分 */
.tabbar {
    max-width: 1250px;
    min-width: 300px;
    width: 100%;
    height: 70px;
    margin: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px 10px 0 10px;
    background-color: white;
}

.tabbar > a {
    display: inline-block;
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tabbar > a > img {
    width: 30px;
    margin-bottom: 3px;
}

.tabbar > a > span {
    color: #cdcdcd;
}

.tabbar_active {
    color: #FF8C00 !important;
}