/* 底部固定导航样式 */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 8px 0;
}

.bottom-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
}

.bottom-nav-item {
    flex: 1;
    text-align: center;
}

.bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: var(--radius);
}

.bottom-nav-link:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.bottom-nav-link.active {
    color: var(--primary-color);
}

.bottom-nav-icon {
    font-size: 24px;
}

.bottom-nav-label {
    font-size: 12px;
}
