/* 底部导航栏样式 - 带前缀版本 */
.bn-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    height: 60px;
}

.bn-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #666;
}

.bn-bottom-nav-item.active {
    color: #8b6914; /* VIP金色 */
}

.bn-bottom-nav-item.active .bn-bottom-nav-icon {
    background-color: rgba(255, 215, 0, 0.1); /* VIP金色背景 */
    color: #8b6914; /* VIP金色 */
}

.bn-bottom-nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.bn-bottom-nav-text {
    font-size: 12px;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .bn-bottom-nav-text {
        font-size: 11px;
    }
    
    .bn-bottom-nav-icon {
        width: 22px;
        height: 22px;
    }
}