<!DOCTYPE html><html lang='en'><head>    <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>    <meta http-equiv='X-UA-Compatible' content='IE=edge'>    <meta name='viewport' content='width = device-width, initial-scale = 1.0'>    <title>waf</title>    <style>        .check {            font-size: 14px;            font-weight: 400;            margin: 40px 0;        }                .imgdiv {            position: relative;            border: solid 0px #000;            display: inline-block;            margin: 0 0;        }                p>span {            color: red;            margin: 0 5px;            font-size: 20px;        }                img {            border-radius: 2px;        }                .imgdiv .marker {            position: absolute;            width: 15px;            height: 15px;            background: #ff000099;            border: solid 1px #000;            border-radius: 10px;            margin: -5px 0 0 -5px;        }                .main {            padding: 50px 00px;            margin: 20px auto;            text-align: center;            background-color: #fff;            color: #333;            font-family: 'Microsoft YaHei';            line-height: 30px;            font-size: 14px;            font-weight: 700;            margin: 50px 0;        }                .footer {            font-size: 12px;            font-weight: 800;            margin-top: 20px;            padding: 3em;            color: #666;            text-decoration: none;        }    </style></head><body>    <div class='main'>        <div class='info'>数字验证</div>        <div class='check'>            <p>&#x70B9;&#x51FB;&#x4E0B;&#x56FE;&#x4E2D;&#x7B2C;<span>1</span>&#x4E2A;&#x6700;<span>&#x5927;</span>&#x7684;&#x6570;&#x5B57;</p>            <div class='imgdiv' id='area' onclick='getClickPos(event)'> <img id='vimg' src='data:image/bmp;base64,Qk2+AQAAAAAAAD4AAAAoAAAAwAAAABAAAAABAAEAAAAAAIABAAAAAAAAAAAAAAAAAAAAAAAABgfMXvn4M6EAEIAAACAEAACAAIAAAIAAEEABgEAQAEABgAEEAAAAQBAEAAACAAAAgAKAAACABBADwCPgA+Af9B/wQeAD4QOAg8EDgBHgI8ABggYwDjEGEQYQAMAGMEMABnADgEDgAcABgAwYDBgDUAMwAMAMGQMATDADAAjAgcAJgg4aDBgBgAGAH/AOGQMEADCDAR/yQYABgAw4DBgIyADAGsAMGQGAE/SBgBjAAaABgAwYjBggYAFkDMQNGAGAhnADoAzAAYQBgAxYLBgAMAE4DtAMGBDgDDCAwIzAAZABgAwYDJhAMAAwBsAcGEDAHDGAwAbAAYBBgA6YDJgMMAw0IsAMOABgHDABYALBQYEBgAyYDBqMMCwwA8AMGAgwDjAIMgPCBYCDgEYwBjAG4AZiAcAHsA/xDmQP+AHAg5AAwAPgB+AD0AfgCOAD8A/yI8AP8gDAAICAABAAAAEBQAAAQEAAAAEQCAAAgABAAAAECAgQAEAAAAAAAAABAACAAAEQgAAACAA=' />                </div>        </div>        <div class='footer'><a href='  http://www.baidu.com ' style='color: #666;text-decoration: none;font-weight: 800;'>  baidu  1.0.12</a> </div>    </div>    <script>        window.onload = function() {            document.getElementById('vimg').width = 2 * document.getElementById('vimg').width;        };       window.getClickPos=function(e) {            var xPage = (navigator.appName == 'Netscape') ? e.pageX : event.x + document.body.scrollLeft;            var yPage = (navigator.appName == 'Netscape') ? e.pageY : event.y + document.body.scrollTop;            identifyImage = document.getElementById('vimg');            img_x = locationLeft(identifyImage);            img_y = locationTop(identifyImage);            var xPos = xPage - img_x;            var yPos = yPage - img_y;            clearCookie('antscdn_waf_cookie5');            setCookie('antscdn_waf_cookie5', '' + identifyImage.width + identifyImage.height + parseInt(xPos * 100 / identifyImage.width));            createMarker(xPos, yPos, 'area');            setTimeout(function() {  window.location.replace(window.location.href);location.reload();          }, 1000);        };        function locationLeft(element) {            offsetTotal = element.offsetLeft;            scrollTotal = 0;            if (element.tagName != 'BODY') {                if (element.offsetParent != null) return offsetTotal + scrollTotal + locationLeft(element.offsetParent);            }            return offsetTotal + scrollTotal;        };        function locationTop(element) {            offsetTotal = element.offsetTop;            scrollTotal = 0;            if (element.tagName != 'BODY') {                if (element.offsetParent != null) return offsetTotal + scrollTotal + locationTop(element.offsetParent);            }            return offsetTotal + scrollTotal;        };        function createMarker(x, y, divName) {            if (document.getElementById('markid')) {                removeNode(document.getElementById('markid'));            }            var div = document.createElement('div');            div.id = 'markid';            div.className = 'marker';            div.style.left = x + 'px';            div.style.top = y + 'px';            document.getElementById(divName).appendChild(div);        };        function removeNode(obj) {            if (isIE() || isIE11()) {                obj.parentNode.removeChild(obj);            } else {                obj.remove();            }        };        function isIE() {            if (!!window.ActiveXObject || 'ActiveXObject' in window) {                return true;            } else {                return false;            }        };        function isIE11() {            if ((/Trident\/7\./).test(navigator.userAgent)) {                return true;            } else {                return false;            }        };        function setCookie(cname, cvalue, exhours) {            var d = new Date();            d.setTime(d.getTime() + (exhours * 60 * 60 * 1000));            var expires = 'expires =' + d.toUTCString();            document.cookie = cname + ' = ' + cvalue + '; ' + expires + '; path = / ';        };        function clearCookie(name) {            setCookie(name, '', -1);        };    </script></body></html>