/* 底部菜单样式 - 白色背景 */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px;
    cursor: pointer;
}

.menu-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.menu-text {
    font-size: 12px;
    color: #666666;
    font-weight: 400;
    text-align: center;
    line-height: 1;
}

/* 激活状态样式 */
.menu-item.active .menu-icon {
    color: #a73d34;
}

.menu-item.active .menu-text {
    color: #a73d34;
    font-weight: 500;
}

/* 悬停效果 */
.menu-item:hover .menu-icon {
    color: #a73d34;
}

.menu-item:hover .menu-text {
    color: #a73d34;
}

@media (max-width: 768px) {
    .bottom-menu {
        height: 55px;
    }
    
    .menu-icon {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .menu-text {
        font-size: 11px;
    }
    
    .menu-item {
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .bottom-menu {
        height: 50px;
    }
    
    .menu-icon {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .menu-text {
        font-size: 10px;
    }
    
    .menu-item {
        padding: 5px;
    }
}

.bottom-info {
    bottom: 80px !important;
}

@media (max-width: 768px) {
    .bottom-info {
        bottom: 75px !important;
    }
}

@media (max-width: 480px) {
    .bottom-info {
        bottom: 70px !important;
    }
}
