/* 底部悬浮菜单 - 统一样式 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* padding: 0 20px; */
    gap: 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    width: 70px;
    height: 100%;
}

.bottom-nav-item img {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
}

.bottom-nav-item span {
    font-size: 12px;
    color: #999;
    transition: color 0.3s;
}

.bottom-nav-item.active span {
    color: #6c5ce7;
    font-weight: bold;
}

.bottom-nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 70px;
    height: 100%;
}

.bottom-nav-center img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s;
}

.bottom-nav-center:hover img {
    transform: scale(1.1);
}
