/* ========== 手机端滑动导航样式 - 仅在手机端显示，电脑端完全隐藏 ========== */
@media (max-width: 768px) {
    /* 手机端滑动导航容器 */
    .mobile-slide-nav {
        display: block;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #eaeaea;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        white-space: nowrap;
        margin-bottom: 20px;
    }
    
    .mobile-slide-nav::-webkit-scrollbar {
        height: 2px;
        background-color: #f0f0f0;
    }
    
    .mobile-slide-nav::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 4px;
    }
    
    .slide-nav-list {
        display: inline-flex;
        margin: 0;
        padding: 0 12px;
        list-style: none;
        white-space: nowrap;
    }
    
    .slide-nav-list li {
        display: inline-flex;
        margin-right: 24px;
        flex-shrink: 0;
    }
    
    .slide-nav-list li:last-child {
        margin-right: 12px;
    }
    
    .slide-nav-list li a {
        display: inline-block;
        padding: 12px 0;
        font-size: 15px;
        color: #666;
        text-decoration: none;
        position: relative;
        font-weight: 400;
        transition: color 0.2s;
        white-space: nowrap;
    }
    
    .slide-nav-list li.active a {
        color: #e60012;
        font-weight: 500;
    }
    
    .slide-nav-list li.active a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #e60012;
        border-radius: 2px;
    }
}

/* 电脑端：完全隐藏手机端滑动导航模块 */
@media (min-width: 769px) {
    .mobile-slide-nav {
        display: none !important;
    }
}