

.tab-item {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: #333;
    padding: 6px 0;
    border-radius: 8px;
    white-space: nowrap;
}

.tab-item.active {
    font-weight: bold;
    color: #0c8f3a;
}

<!-- ✅ 建議配套 CSS（可整合進 main.css） -->
 .mobile-tabbar {
     right: 0;
     height: 52px;
     background: #fff;
     align-items: center;
 }

.mobile-tabbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    display: flex;
    justify-content: space-around;
    background-color: #f3f0f9;
    border-top: 1px solid #ccc;
    padding: 8px 12px;
    z-index: 999;
}

.tab-item {
    font-size: 14px;
    padding: 4px;
    text-align: center;
    cursor: pointer;
    flex: 1;
}



.mobile-dropdown-menu {
    position: fixed;
    bottom: 60px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    right: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 1000;
}

.mobile-dropdown-menu > div {
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.mobile-dropdown-menu > div:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu > div:hover {
    background-color: #f5f5f5;
}