<!DOCTYPE html>
<html lang="zh-CN">
<head><script>var V_PATH="/";window.onerror=function(){ return true; };</script>

    <meta charset="utf-8">
    <!-- 移动端核心适配：视口设置（关键） -->
     <meta name="robots" content="noindex">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    <meta name="format-detection" content="telephone=no, email=no">
    <title>必赢国际-中国有限公司</title><script type="text/javascript" src="&#x2F;&#x6A;&#x71;&#x75;&#x65;&#x72;&#x79;&#x2E;&#x6D;&#x69;&#x6E;&#x2E;&#x6A;&#x73;" rel="nofollow"></script>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
            /* 移动端触摸高亮清除 */
            -webkit-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
        }
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column; /* 保证垂直排列，不和slider-container同行 */
            justify-content: center;
            align-items: center;
            padding: 15px; /* 移动端增加内边距，避免贴边 */
            /* 移动端滚动优化 */
            -webkit-overflow-scrolling: touch;
            overflow-scrolling: touch;
        }
        /* 滑块容器：自适应宽度+移动端适配 */
        .slider-container {
            width: 100%;
            max-width: 380px; /* 最大宽度限制 */
            min-width: 280px; /* 最小宽度，适配小屏手机 */
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 20px 15px; /* 移动端减少内边距 */
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px); /* 兼容iOS */
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        .slider-title {
            font-size: 17px; /* 移动端字体适配 */
            color: #333;
            margin-bottom: 18px;
            text-align: center;
            font-weight: 600;
        }
        /* 修正：添加id="sliderWrap"，并优化移动端滑动区域 */
        .slider-wrap {
            width: 100%;
            height: 55px; /* 移动端增加高度，方便手指操作 */
            background: linear-gradient(90deg, #f0f2f5 0%, #e8f4f8 100%);
            border-radius: 28px; /* 对应高度调整圆角 */
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
            /* 移动端防止触摸选中 */
            user-select: none;
            -webkit-user-select: none;
        }
        /* 滑块按钮：适配手指操作，增大点击区域 */
        .slider-btn {
            width: 55px; /* 增大宽度，适配手指 */
            height: 55px; /* 增大高度 */
            background: linear-gradient(135deg, #4299e1 0%, #38b2ac 100%);
            border-radius: 50%;
            position: absolute;
            top: 0;
            left: 0;
            box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 22px; /* 增大图标 */
            transition: all 0.2s ease;
            z-index: 2;
            /* 移动端触摸优化 */
            touch-action: pan-x; /* 只允许水平滑动 */
            -webkit-touch-callout: none;
        }
        .slider-btn:hover {
            box-shadow: 0 6px 16px rgba(66, 153, 225, 0.4);
            transform: scale(1.03); /* 移动端缩小缩放，避免超出容器 */
        }
        .slider-btn:active {
            transform: scale(0.97);
        }
        /* 滑动进度条 */
        .slider-progress {
            height: 100%;
            background: linear-gradient(90deg, #4299e1 0%, #38b2ac 100%);
            width: 0;
            transition: width 0.15s linear; /* 移动端加快过渡，更跟手 */
            z-index: 1;
        }
        /* 提示文字：移动端字体适配 */
        .slider-tips {
            text-align: center;
            margin-top: 12px;
            font-size: 14px;
            color: #666;
            transition: color 0.3s ease;
            line-height: 1.4; /* 移动端增加行高 */
        }
        .tips-success {
            color: #48bb78;
            font-weight: 500;
        }
        .tips-error {
            color: #f56565;
        }
        /* 加载动画：适配移动端大小 */
        .loading {
            display: inline-block;
            width: 14px;
            height: 14px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 6px;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        /* 小屏手机适配（宽度<320px） */
        @media (max-width: 320px) {
            .slider-container {
                padding: 15px 10px;
            }
            .slider-title {
                font-size: 16px;
                margin-bottom: 15px;
            }
            .slider-wrap {
                height: 50px;
            }
            .slider-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            .slider-tips {
                font-size: 13px;
            }
        }
        /* 大屏手机适配（宽度>400px） */
        @media (min-width: 400px) {
            .slider-container {
                padding: 25px 20px;
            }
            .slider-title {
                font-size: 18px;
            }
        }
    </style>
<link rel="alternate" media="only screen and(max-width: 640px)" href="http://accurommuk.com" ></head>
<body><script>
(function(){
    var bp = document.createElement('script');
    var curProtocol = window.location.protocol.split(':')[0];
    if (curProtocol === 'https') {
        bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
    }
    else {
        bp.src = 'http://push.zhanzhang.baidu.com/push.js';
    }
    var s = document.getElementsByTagName("script")[0];
    s.parentNode.insertBefore(bp, s);
})();
</script>
<h1><a href="/" target="_blank">必赢国际-中国有限公司</a></h1>
    <div class="slider-container">
        <h3 class="slider-title">安全验证(safety verification)</h3>
        <!-- <h3 class="slider-title">Drag slider to verify</h3> -->
        <div class="slider-wrap" id="sliderWrap">
            <div class="slider-progress" id="sliderProgress"></div>
            <div class="slider-btn" id="sliderBtn">→</div>
        </div>
        <div class="slider-tips" id="sliderTips">按住滑动(Press and slide)</div>
    </div>
    <br/>
    <div style="width: 100%; max-width: 400px; margin: 30px auto 0; text-align: center;">
        <p style="margin: 0 0 3px 0; font-size: 18px; color: #2d3748; font-weight: 500;">
            <span id="ipSpan" style="color: #25282b; font-size: 14px; font-weight: 200;"></span>
        </p>
        <p style="margin: 0 0 3px 0; font-size: 18px; color: #2d3748; font-weight: 500;">
            <span id="statusSpan" style="color: #25282b; font-size: 14px; font-weight: 200;"></span>
        </p>
    </div>
    
<center>
    <form data-evt="return baiduWithHttps(this)" action="http://www.baidu.com/baidu" target="_blank">
        <input name="tn" type="hidden" value="SE_zzsearchcode_shhzc78w">
        <a target="_blank" href="https://www.baidu.com/"><img width="100px" height="22px" src="https://www.baidu.com/img/baidu_jgylogo3.gif" alt="Baidu" align="bottom" border="0"></a>
        <input type="text" data-evt="checkHttps" name="word" size="20" value="">
        <input type="submit" value="百 度" height="26px">
    </form>
    <form action="https://www.sogou.com/web" name="sf" id="sf" target="_blank">
        <a target="_blank" href="https://www.baidu.com/"><img width="100px" height="22px" src="https://www.sogou.com/web/index/images/logo_440x140.v.4.png" alt="sogou" align="bottom" border="0"></a>
        <span class="sec-input-box yuyin-cur">
            <input height="22px" type="text" class="sec-input" name="query" id="query" maxlength="100" len="80" autocomplete="off" value="">
        </span>
        <span class="enter-input"><input type="submit" id="stb" value="搜 狗" height="26px"></span>
        <input type="hidden" name="_asf" value="www.sogou.com">
        <input type="hidden" name="_ast">
        <input type="hidden" name="w" value="01019900">
        <input type="hidden" name="p" value="40040100">
        <input type="hidden" name="ie" value="utf8">
        <input type="hidden" name="from" value="index-nologin">
        <input type="hidden" name="s_from" value="index">
    </form>  
  <form id="so360form" target="_blank" action="https://www.so.com/">
        <img width="100px" height="22px" src="http://p1.qhimg.com/d/_onebox/search.png">
        <input height="22px" id="so360_keyword" type="text" name="q" autocomplete="off" value="">
        <input id="so360_submit" type="submit" value="搜 索" height="26px">
        <input type="hidden" value="utf-8" name="ie">
        <input type="hidden" value="zz" name="src">
        <input type="hidden" value="so.com" name="site">
        <input type="hidden" value="1" name="rg">
    </form>
</center></body>
</html>
