/**
 * 移动端点击修复 - 最简单最暴力的方案
 * 策略：不用JavaScript，纯CSS解决所有问题
 */

@media (max-width: 767px) {
    /* 第一步：清除所有阻止点击的CSS */
    * {
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }

    /* 第二步：确保所有链接都能点击 */
    a, a * {
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    /* 第三步：给所有链接足够的点击区域 */
    .wrapper .left a,
    .leftpro a,
    .menu a,
    .submenu a,
    .gridlist a,
    .news_326 a {
        display: block !important;
        min-height: 44px !important;
        padding: 10px !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* 第四步：汉堡菜单 - 只有这个需要特殊处理 */
    .mobile-menu-toggle {
        pointer-events: auto !important;
        z-index: 99999 !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
    }

    .mobile-menu-toggle span {
        pointer-events: none !important;
    }
}
