﻿/* 底部导航栏样式 */
/* 描述：网站底部固定导航栏样式 */

/* 底部导航容器 */
.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 4px 0;
    z-index: 1000;
}

/* 导航项目 */
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #4a5568;
    transition: color 0.3s ease;
    padding: 2px 0;
    width: 33.33%;
    text-align: center;
}

/* 导航图标 */
.nav-icon {
    font-size: 1.2rem;
    margin-bottom: 1px;
}

/* 导航文本 */
.nav-text {
    font-size: 0.65rem;
    font-weight: 500;
}

/* 激活状态 */
.nav-item.active {
    color: #667eea;
}

/* 为底部导航腾出空间 */
.page-content {
    padding-bottom: 50px;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .nav-icon {
        font-size: 1rem;
    }
    
    .nav-text {
        font-size: 0.6rem;
    }
}