<!DOCTYPE html><html><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><meta name="renderer" content="webkit"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><link rel="icon" href="https://www.hbcjy.com/favicon.ico"><title>河北创巨圆科技发展有限公司</title><!--[if lt IE 11]><script>window.location.href='html/ie.html';</script><![endif]--><style>html,
    body,
    #app {
      height: 100%;
      margin: 0px;
      padding: 0px;
    }

    .chromeframe {
      margin: 0.2em 0;
      background: #ccc;
      color: #000;
      padding: 0.2em 0;
    }

    #loader-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 999999;
      display: flex;
      align-items: center;
      flex-direction: column;
      background-color: #ffffffe7;
      justify-content: center;
    }

    #loader {
      display: block;
      position: relative;
      left: 50%;
      top: 50%;
      width: 150px;
      height: 150px;
      margin: -75px 0 0 -75px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #FFF;
      -webkit-animation: spin 2s linear infinite;
      -ms-animation: spin 2s linear infinite;
      -moz-animation: spin 2s linear infinite;
      -o-animation: spin 2s linear infinite;
      animation: spin 2s linear infinite;
      z-index: 1001;
    }

    #loader:before {
      content: "";
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #FFF;
      -webkit-animation: spin 3s linear infinite;
      -moz-animation: spin 3s linear infinite;
      -o-animation: spin 3s linear infinite;
      -ms-animation: spin 3s linear infinite;
      animation: spin 3s linear infinite;
    }

    #loader:after {
      content: "";
      position: absolute;
      top: 15px;
      left: 15px;
      right: 15px;
      bottom: 15px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #FFF;
      -moz-animation: spin 1.5s linear infinite;
      -o-animation: spin 1.5s linear infinite;
      -ms-animation: spin 1.5s linear infinite;
      -webkit-animation: spin 1.5s linear infinite;
      animation: spin 1.5s linear infinite;
    }


    @-webkit-keyframes spin {
      0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
      }

      100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
      }
    }

    @keyframes spin {
      0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
      }

      100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
      }
    }


    #loader-wrapper .loader-section {
      position: fixed;
      top: 0;
      width: 51%;
      height: 100%;
      background: #7171C6;
      z-index: 1000;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }

    #loader-wrapper .loader-section.section-left {
      left: 0;
    }

    #loader-wrapper .loader-section.section-right {
      right: 0;
    }


    .loaded #loader-wrapper .loader-section.section-left {
      -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(-100%);
      -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
      transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
      -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
      transform: translateX(100%);
      -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
      transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader {
      opacity: 0;
      -webkit-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
    }

    .loaded #loader-wrapper {
      visibility: hidden;
      -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
      transform: translateY(-100%);
      -webkit-transition: all 0.3s 1s ease-out;
      transition: all 0.3s 1s ease-out;
    }

    .no-js #loader-wrapper {
      display: none;
    }

    .no-js h1 {
      color: #222222;
    }

    #loader-wrapper .load_title {
      font-family: 'Open Sans';
      color: #0B51B2;
      font-size: 19px;
      width: 100%;
      text-align: center;
      z-index: 9999999999999;
      position: absolute;
      top: 60%;
      opacity: 1;
      line-height: 30px;
    }

    #loader-wrapper .load_title span {
      font-weight: normal;
      font-style: italic;
      font-size: 13px;
      color: #FFF;
      opacity: 0.5;
    }

    .kefu-box{
      width: fit-content;
      height: fit-content;
      position: fixed;
      top: 30%;
      right: 0;
      z-index: 999;
      transform: translateY(-50%);
      cursor: pointer;
    }

    .spinner {
      width: 60px;
      height: 60px;
      position: relative;
    }

    .cube1,
    .cube2 {
      background-color: #0B51B2;
      width: 30px;
      height: 30px;
      position: absolute;
      top: 0;
      left: 0;

      -webkit-animation: cubemove 1.8s infinite ease-in-out;
      animation: cubemove 1.8s infinite ease-in-out;
      transform-origin: center;
    }

    .cube2 {
      -webkit-animation-delay: -0.9s;
      animation-delay: -0.9s;
    }

    @-webkit-keyframes cubemove {
      25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
      }

      50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
      }

      75% {
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
      }

      100% {
        -webkit-transform: rotate(-360deg);
      }
    }

    @keyframes cubemove {
      25% {
        transform: translateX(42px) rotate(-90deg) scale(0.5);
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
      }

      50% {
        transform: translateX(42px) translateY(42px) rotate(-179deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
      }

      50.1% {
        transform: translateX(42px) translateY(42px) rotate(-180deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
      }

      75% {
        transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
      }

      100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
      }
    }</style><link href="https://www.hbcjy.com/static/css/chunk-libs.763ea62a.css" rel="stylesheet"><link href="https://www.hbcjy.com/static/css/app.a1b572c2.css" rel="stylesheet"></head><body><div id="app"><div id="loader-wrapper"><div class="spinner"><div class="cube1"></div><div class="cube2"></div></div><div class="load_title">加载中，请耐心等待...</div></div></div><div class="kefu-box"><img id="kefu-close" src="/kefu-close.png" alt="light"> <img id="kefu-open" src="/kefu-open.png" alt="light" style="display:none;"></div><script>// ... existing code ...
    document.getElementById('kefu-close').addEventListener('click', function() {
      var kefuOpen = document.getElementById('kefu-open');
      var kefuClose = document.getElementById('kefu-close');
      
      kefuClose.style.display = 'none'; // 隐藏 kefu-close 图片
      kefuOpen.style.display = 'block'; // 显示 kefu-open 图片
      kefuOpen.style.transition = 'transform 0.5s ease'; // 设置过渡效果
      // kefuOpen.style.transform = 'translateX(-100%)'; // 从右向左移动
    });
  
    document.getElementById('kefu-open').addEventListener('click', function() {
      var kefuOpen = document.getElementById('kefu-open');
      var kefuClose = document.getElementById('kefu-close');
      
      kefuOpen.style.display = 'none'; // 隐藏 kefu-open 图片
      kefuClose.style.display = 'block'; // 显示 kefu-close 图片
    });
    // ... existing code ...</script><script>(function(){document.getElementsByTagName("head")[0].appendChild(document.createElement("script")).src=(location.protocol.toLocaleLowerCase()=="https:"?"https:":"http:")+"//v1.fmkefu.com/cs/js/8111_8051?c=auto";})();</script><a id="egeel-flink" href="http://www.egeel.com" style="position:fixed;font-size:0">亿鸽在线客服系统</a><script>/*以下两个变量可动态赋值，用于传输网站会员信息到亿鸽会话*/
  var egeelVisitorName = "";/*该值为客户的名称，留空则以对方所在地为名*/
  var egeelVisitorDesc = "";/*该值为客户的备注信息*/</script><script>(function(c){function e(e){for(var u,a,r=e[0],d=e[1],f=e[2],k=0,o=[];k<r.length;k++)a=r[k],Object.prototype.hasOwnProperty.call(t,a)&&t[a]&&o.push(t[a][0]),t[a]=0;for(u in d)Object.prototype.hasOwnProperty.call(d,u)&&(c[u]=d[u]);b&&b(e);while(o.length)o.shift()();return h.push.apply(h,f||[]),n()}function n(){for(var c,e=0;e<h.length;e++){for(var n=h[e],u=!0,a=1;a<n.length;a++){var r=n[a];0!==t[r]&&(u=!1)}u&&(h.splice(e--,1),c=d(d.s=n[0]))}return c}var u={},a={runtime:0},t={runtime:0},h=[];function r(c){return d.p+"static/js/"+({"chunk-commons":"chunk-commons"}[c]||c)+"."+{"chunk-070891ec":"d5108648","chunk-141174eb":"51dee0fe","chunk-165e0574":"9a54f9de","chunk-1ceb9576":"0938985d","chunk-2d0ac018":"58015e8c","chunk-0f01b542":"fa8b70c6","chunk-30cf1bd6":"38c90bf9","chunk-2d0e2366":"b6a19fa3","chunk-74a6061e":"c8bc2db6","chunk-2d212b99":"2e7150e3","chunk-57c7bd1b":"298b1f19","chunk-00066cc6":"95e0de0e","chunk-2d21f097":"8808c527","chunk-7682a27a":"b2aa35a1","chunk-3c964d68":"7d12e56d","chunk-44c1df85":"c9220230","chunk-477a588a":"0a68fd23","chunk-58370e56":"9ca22e31","chunk-583b5c0a":"adecd54f","chunk-5e843316":"1efb8acc","chunk-62af765d":"942776d2","chunk-63e48552":"466f6930","chunk-6a326532":"dcd369e3","chunk-9963540a":"8684926e","chunk-a566624c":"0266f9bb","chunk-ad9c0e44":"86ec9fef","chunk-commons":"53f45f41","chunk-06b76041":"6868665d","chunk-2d2102b6":"625eac8a","chunk-4b17e1a0":"cc49b1ad","chunk-3c95b7aa":"f8e34f25","chunk-34a9ac40":"0f65b2b3","chunk-58024cb8":"573a4789","chunk-b527321c":"717b7190","chunk-2dc358ea":"ecc5fd7b","chunk-4e5b5d5d":"e989e1ba","chunk-294a47c2":"b3f5987b","chunk-dc729660":"05630b1f","chunk-1cc819c4":"e80d3aa7","chunk-680b7d38":"912847d3","chunk-e8ab3182":"a0b154cb","chunk-997cfe2a":"fbb566c7"}[c]+".js"}function d(e){if(u[e])return u[e].exports;var n=u[e]={i:e,l:!1,exports:{}};return c[e].call(n.exports,n,n.exports,d),n.l=!0,n.exports}d.e=function(c){var e=[],n={"chunk-070891ec":1,"chunk-165e0574":1,"chunk-0f01b542":1,"chunk-30cf1bd6":1,"chunk-74a6061e":1,"chunk-57c7bd1b":1,"chunk-7682a27a":1,"chunk-3c964d68":1,"chunk-44c1df85":1,"chunk-58370e56":1,"chunk-5e843316":1,"chunk-63e48552":1,"chunk-6a326532":1,"chunk-9963540a":1,"chunk-commons":1,"chunk-06b76041":1,"chunk-4b17e1a0":1,"chunk-3c95b7aa":1,"chunk-34a9ac40":1,"chunk-58024cb8":1,"chunk-b527321c":1,"chunk-2dc358ea":1,"chunk-294a47c2":1,"chunk-dc729660":1,"chunk-1cc819c4":1,"chunk-680b7d38":1,"chunk-e8ab3182":1,"chunk-997cfe2a":1};a[c]?e.push(a[c]):0!==a[c]&&n[c]&&e.push(a[c]=new Promise((function(e,n){for(var u="static/css/"+({"chunk-commons":"chunk-commons"}[c]||c)+"."+{"chunk-070891ec":"78930afb","chunk-141174eb":"31d6cfe0","chunk-165e0574":"bbc9fa95","chunk-1ceb9576":"31d6cfe0","chunk-2d0ac018":"31d6cfe0","chunk-0f01b542":"a5ae55d3","chunk-30cf1bd6":"b792e5b9","chunk-2d0e2366":"31d6cfe0","chunk-74a6061e":"8c787fa0","chunk-2d212b99":"31d6cfe0","chunk-57c7bd1b":"84f98409","chunk-00066cc6":"31d6cfe0","chunk-2d21f097":"31d6cfe0","chunk-7682a27a":"d2fc280b","chunk-3c964d68":"70979011","chunk-44c1df85":"a8ef0e8d","chunk-477a588a":"31d6cfe0","chunk-58370e56":"ba01310c","chunk-583b5c0a":"31d6cfe0","chunk-5e843316":"2f57642c","chunk-62af765d":"31d6cfe0","chunk-63e48552":"6fad9d09","chunk-6a326532":"b3fc2247","chunk-9963540a":"917ede6c","chunk-a566624c":"31d6cfe0","chunk-ad9c0e44":"31d6cfe0","chunk-commons":"e41fda8b","chunk-06b76041":"5c7d2cd9","chunk-2d2102b6":"31d6cfe0","chunk-4b17e1a0":"ca06fefe","chunk-3c95b7aa":"a48a7cc1","chunk-34a9ac40":"14dd6805","chunk-58024cb8":"5003f063","chunk-b527321c":"ec7c930c","chunk-2dc358ea":"f246bb19","chunk-4e5b5d5d":"31d6cfe0","chunk-294a47c2":"5c48abc6","chunk-dc729660":"1c958f07","chunk-1cc819c4":"6ba99645","chunk-680b7d38":"5c7d2cd9","chunk-e8ab3182":"1955c086","chunk-997cfe2a":"8bfb0180"}[c]+".css",t=d.p+u,h=document.getElementsByTagName("link"),r=0;r<h.length;r++){var f=h[r],k=f.getAttribute("data-href")||f.getAttribute("href");if("stylesheet"===f.rel&&(k===u||k===t))return e()}var o=document.getElementsByTagName("style");for(r=0;r<o.length;r++){f=o[r],k=f.getAttribute("data-href");if(k===u||k===t)return e()}var b=document.createElement("link");b.rel="stylesheet",b.type="text/css",b.onload=e,b.onerror=function(e){var u=e&&e.target&&e.target.src||t,h=new Error("Loading CSS chunk "+c+" failed.\n("+u+")");h.code="CSS_CHUNK_LOAD_FAILED",h.request=u,delete a[c],b.parentNode.removeChild(b),n(h)},b.href=t;var i=document.getElementsByTagName("head")[0];i.appendChild(b)})).then((function(){a[c]=0})));var u=t[c];if(0!==u)if(u)e.push(u[2]);else{var h=new Promise((function(e,n){u=t[c]=[e,n]}));e.push(u[2]=h);var f,k=document.createElement("script");k.charset="utf-8",k.timeout=120,d.nc&&k.setAttribute("nonce",d.nc),k.src=r(c);var o=new Error;f=function(e){k.onerror=k.onload=null,clearTimeout(b);var n=t[c];if(0!==n){if(n){var u=e&&("load"===e.type?"missing":e.type),a=e&&e.target&&e.target.src;o.message="Loading chunk "+c+" failed.\n("+u+": "+a+")",o.name="ChunkLoadError",o.type=u,o.request=a,n[1](o)}t[c]=void 0}};var b=setTimeout((function(){f({type:"timeout",target:k})}),12e4);k.onerror=k.onload=f,document.head.appendChild(k)}return Promise.all(e)},d.m=c,d.c=u,d.d=function(c,e,n){d.o(c,e)||Object.defineProperty(c,e,{enumerable:!0,get:n})},d.r=function(c){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(c,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(c,"__esModule",{value:!0})},d.t=function(c,e){if(1&e&&(c=d(c)),8&e)return c;if(4&e&&"object"===typeof c&&c&&c.__esModule)return c;var n=Object.create(null);if(d.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:c}),2&e&&"string"!=typeof c)for(var u in c)d.d(n,u,function(e){return c[e]}.bind(null,u));return n},d.n=function(c){var e=c&&c.__esModule?function(){return c["default"]}:function(){return c};return d.d(e,"a",e),e},d.o=function(c,e){return Object.prototype.hasOwnProperty.call(c,e)},d.p="https://www.hbcjy.com/",d.oe=function(c){throw console.error(c),c};var f=window["webpackJsonp"]=window["webpackJsonp"]||[],k=f.push.bind(f);f.push=e,f=f.slice();for(var o=0;o<f.length;o++)e(f[o]);var b=k;n()})([]);</script><script src="https://www.hbcjy.com/static/js/chunk-elementUI.f48c70a8.js"></script><script src="https://www.hbcjy.com/static/js/chunk-libs.ec0e472d.js"></script><script src="https://www.hbcjy.com/static/js/app.028014ae.js"></script></body></html>