/* 底部导航样式 - 仅用于消费者区域 */

/* 消费者页面特定内容包装器 */
.content-wrapper {
    padding-bottom: 70px; /* 为底部导航留出空间 */
    min-height: calc(100vh - 200px); /* 考虑头部和底部 */
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 10px 0 8px;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

    .bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #666;
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex: 1;
        max-width: 80px;
    }

        .bottom-nav a i {
            font-size: 20px;
            margin-bottom: 4px;
            transition: transform 0.3s;
        }

        .bottom-nav a.active {
            color: #28a745;
            background: rgba(40, 167, 69, 0.1);
            transform: translateY(-2px);
        }

            .bottom-nav a.active i {
                transform: scale(1.1);
            }

        .bottom-nav a:hover {
            color: #28a745;
            transform: translateY(-2px);
        }

            .bottom-nav a:hover i {
                transform: scale(1.1);
            }

        .bottom-nav a span {
            font-weight: 500;
            letter-spacing: 0.5px;
        }

.footer-icp {
    text-align: center;
    padding: 8px 0 80px;
    font-size: 0.78rem;
    color: #bbb;
    line-height: 1.8;
}
.footer-icp a {
    color: #bbb;
    text-decoration: none;
}

/* 手机适配 */
@media (max-width: 480px) {
    .bottom-nav {
        padding: 8px 0 6px;
    }

        .bottom-nav a {
            font-size: 11px;
            padding: 4px 8px;
        }

            .bottom-nav a i {
                font-size: 18px;
            }

    .content-wrapper {
        padding-bottom: 60px;
        min-height: calc(100vh - 190px);
    }
}

/* 平板适配 */
@media (min-width: 481px) and (max-width: 768px) {
    .bottom-nav a {
        font-size: 13px;
    }

        .bottom-nav a i {
            font-size: 22px;
        }
}

