<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
	<!--<base href="http://www.cfbigbag.com/">-->
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>吨袋|集装袋|导电集装袋|防静电集装袋-邯郸市白鲨包装有限公司</title>
	<meta content="" name=keywords>
<meta content="" name=description>

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
	<meta name="baidu-site-verification" content="WROzGrYJaa">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<script src="static/js/jquery-1.4.2.min.js"></script>

</head>

<link rel="stylesheet" type="text/css" href="static/css/pub.css">

<body>
    <div class="bg">
    <style>
    .nav{
        background-image:none;
        background-color: #1e85ea;
    }
    .nav ul li a:hover{
        background-image: none;
    }
    .pc1{
        display: block;
    }
    .mo1{
        display: none;
    }
    .titlea img{
           width:100px;
       }
        #about video{
           /*width:50%;*/
           /*height:colee1_20%;*/
       }
   @media screen and (max-width : 767px){
       .pc1{
           display: none!important;
       }
       .mo1{
           
           display: block!important;
       }
       #player{
           height:136px;
       }
       .titlea img{
           width:60px;
       }
       .titlea{
           position:absolute;
           top:0;
           left:0;
       }
       #about video{
           width:90vw!important;
       }
       .container{
           margin-top:0px;
       }
   }
    </style>
    <div class="container">
        <div id="player">
            <ul class="Limg pc1">
                    
                <li><img src="https://www.bsbigbag.com/uploadfile/202512/e01500f4aa36f5e.png" alt="1" class="img"><span class="titlea"><img src="https://www.bsbigbag.com/uploadfile/202512/d3eb9be51b4777b.png" width="189"></span></li>
                    
                <li><img src="https://www.bsbigbag.com/uploadfile/202512/f937534a7efc4.png" alt="1" class="img"><span class="titlea"><img src="https://www.bsbigbag.com/uploadfile/202512/d3eb9be51b4777b.png" width="189"></span></li>
                    
                <li><img src="https://www.bsbigbag.com/uploadfile/202512/c684cb9a9512b0c.png" alt="1" class="img"><span class="titlea"><img src="https://www.bsbigbag.com/uploadfile/202512/d3eb9be51b4777b.png" width="189"></span></li>
                    
                <li><img src="https://www.bsbigbag.com/uploadfile/202512/5fdf2888fc39eda.png" alt="1" class="img"><span class="titlea"><img src="https://www.bsbigbag.com/uploadfile/202512/d3eb9be51b4777b.png" width="189"></span></li>
                            </ul>
            <ul class="Limg mo1">
                                <li><img src="https://www.bsbigbag.com/uploadfile/202512/bc004c5a7cf3ec8.jpg" alt="1" class="img"><span class="titlea"><img src="https://www.bsbigbag.com/uploadfile/202512/d3eb9be51b4777b.png" width="189"></span></li>
                                <li><img src="https://www.bsbigbag.com/uploadfile/202512/516d1bf08f82.jpg" alt="1" class="img"><span class="titlea"><img src="https://www.bsbigbag.com/uploadfile/202512/d3eb9be51b4777b.png" width="189"></span></li>
                                <li><img src="https://www.bsbigbag.com/uploadfile/202512/25538a8ba5010f7.png" alt="1" class="img"><span class="titlea"><img src="https://www.bsbigbag.com/uploadfile/202512/d3eb9be51b4777b.png" width="189"></span></li>
                                <li><img src="https://www.bsbigbag.com/uploadfile/202512/6688d162fc6a866.png" alt="1" class="img"><span class="titlea"><img src="https://www.bsbigbag.com/uploadfile/202512/d3eb9be51b4777b.png" width="189"></span></li>
                            </ul>
            <cite class="Nubbt"></cite> 
        </div>
   

    <script type="text/javascript" src="static/js/jquery.js"></script>
    <script language=javascript type="text/javascript">
    // -------------------------- 核心修改1：只针对当前可见的ul生成指示器 --------------------------
    // 1. 判断当前可见的ul（PC端是.pc1，移动端是.mo1）
    function getCurrentVisibleUl() {
        // 利用CSS的display状态判断，避免重复写屏幕宽度逻辑（和你的CSS自适应保持一致）
        const $pcUl = $("#player .pc1");
        const $moUl = $("#player .mo1");
        return $pcUl['css']("display") === "block" ? $pcUl : $moUl;
    }
    const $visibleUl = getCurrentVisibleUl(); // 当前可见的ul

    // 2. 只遍历可见ul下的li生成指示器（不再遍历所有ul的li）
    $visibleUl['find']("li").each(function(){
        // 索引从1开始（保持你原有的计数逻辑）
        const i = $visibleUl['find']("li").index($(this)) + 1;
        $("#player .Nubbt").append('<span >'+i+'</span>');
    });

    // 3. 只给可见ul对应的第一个指示器加on（避免操作隐藏ul的指示器）
    $("#player .Nubbt span").eq(0).addClass('on');


    // -------------------------- 核心修改2：轮播逻辑只操作可见ul的li --------------------------
    (function(){
        if(!Function.prototype.bind){
            Function.prototype.bind = function(obj){
                var owner = this,args = Array.prototype.slice.call(arguments),callobj = Array.prototype.shift.call(args);
                return function(e){e=e||top.window.event||window.event;owner.apply(callobj,args.concat([e]));};
            };
        }
    })();

    var player = function(id){
        this.ctn = document.getElementById(id);
        this.adLis = null; // 轮播图li（后续只存可见ul的li）
        this.btns = null;  // 指示器按钮
        this.animStep = 0.2;//动画速度0.1～0.9
        this.switchSpeed = 3;//自动播放间隔(s)
        this.defOpacity = 1;
        this.tmpOpacity = 1;
        this.crtIndex = 0;  // 当前激活的索引
        this.crtLi = null;
        this.adLength = 0;  // 轮播图数量（只算可见ul的li）
        this.timerAnim = null;
        this.timerSwitch = null;
        this.init();
    };

    player.prototype = {
        fnAnim:function(toIndex){
            if(this.timerAnim){window.clearTimeout(this.timerAnim);}
            if(this.tmpOpacity <= 0){
                this.crtLi.style.opacity = this.tmpOpacity = this.defOpacity;
                this.crtLi.style.filter = 'Alpha(Opacity=' + this.defOpacity*100 + ')';
                this.crtLi.style.zIndex = 0;
                this.crtIndex = toIndex;
                return;
            }
            this.crtLi.style.opacity = this.tmpOpacity = this.tmpOpacity - this.animStep;
            this.crtLi.style.filter = 'Alpha(Opacity=' + this.tmpOpacity*100 + ')';
            this.timerAnim = window.setTimeout(this.fnAnim.bind(this,toIndex),50);
        },
        fnNextIndex:function(){
            return (this.crtIndex >= this.adLength-1)?0:this.crtIndex+1;
        },
        fnSwitch:function(toIndex){
            if(this.crtIndex==toIndex || this.adLength <= 1){return;} // 只有1张图时不切换
            this.crtLi = this.adLis[this.crtIndex];
            // 只操作可见ul的li的z-index（避免影响隐藏ul的li）
            for(var i=0;i<this.adLength;i++){
                this.adLis[i].style.zIndex = 0;
            }
            this.crtLi.style.zIndex = 2;
            this.adLis[toIndex].style.zIndex = 1;
            // 只更新当前指示器的active状态
            for(var i=0,l=this.btns.length;i<l;i++){
                this.btns[i].className = '';
            }
            this.btns[toIndex].className = 'on';
            this.fnAnim(toIndex);
        },
        fnAutoPlay:function(){
            this.fnSwitch(this.fnNextIndex());
        },
        fnPlay:function(){
            if(this.adLength <= 1) return; // 只有1张图时不自动播放（避免无效循环）
            this.timerSwitch = window.setInterval(this.fnAutoPlay.bind(this),this.switchSpeed*1000);
        },
        fnStopPlay:function(){
            // 修复：原clearTimeout改为clearInterval（定时器是循环的，需用clearInterval清除）
            if(this.timerSwitch) window.clearInterval(this.timerSwitch);
        },
        init:function(){
            // -------------------------- 关键修改：只获取可见ul的li --------------------------
            this.adLis = $visibleUl['find']("li").get(); // jQuery对象转原生DOM数组（只取可见ul的li）
            this.btns = this.ctn.getElementsByTagName('cite')[0].getElementsByTagName('span');
            this.adLength = this.adLis.length; // 轮播图数量 = 可见ul的li数量

            // 绑定指示器点击事件（只绑定当前生成的指示器）
            for(var i=0,l=this.btns.length;i<l;i++){
                this.btns[i].index = i;
                this.btns[i].onclick = this.fnSwitch.bind(this,i);
                // 原代码重复绑定了2次onclick，删除重复的一次
            }

            // 初始化可见ul的第一张图z-index（确保默认显示第一张）
            if(this.adLength > 0){
                this.adLis[this.crtIndex].style.zIndex = 2;
            }

            this.fnPlay();
            // 鼠标悬停/离开事件
            this.ctn.onmouseover = this.fnStopPlay.bind(this);
            this.ctn.onmouseout = this.fnPlay.bind(this);
        }
    };

    // 初始化轮播（只有可见ul有li时才初始化，避免报错）
    if($visibleUl['find']("li").length > 0){
        var player1 = new player('player');
    }

    // -------------------------- 可选：窗口缩放时重新适配（避免切换设备尺寸后异常） --------------------------
    let resizeTimer = null;
    window.addEventListener('resize', function() {
        // 防抖：避免频繁触发（300ms后再执行，确保缩放完成）
        clearTimeout(resizeTimer);
        resizeTimer = setTimeout(function() {
            const $newVisibleUl = getCurrentVisibleUl();
            // 如果缩放后可见ul变了（比如从PC缩到移动端），刷新页面重新适配
            if($newVisibleUl[0] !== $visibleUl[0]){
                location.reload();
            }
        }, 300);
    });
    </script>
 <!--/*焦点图切换JS结束*/--> 
	<div class="nav">
    <ul>
      <li><a href="" title="网站首页">网站首页</a></li>
	 
	<li> <a href="https://www.bsbigbag.com/index.php?c=category&id=9">产品展示</a></li>
	 
	<li> <a href="https://www.bsbigbag.com/index.php?c=category&id=10">生产设备</a></li>
	 
	<li> <a href="https://www.bsbigbag.com/index.php?c=category&id=11">资质证书</a></li>
	 
	<li> <a href="https://www.bsbigbag.com/index.php?c=category&id=12">企业文化</a></li>
	 
	<li> <a href="https://www.bsbigbag.com/index.php?c=category&id=13">联系我们</a></li>
	 
	<li> <a href="https://www.bsbigbag.com/index.php?c=category&id=14">新闻动态</a></li>
		<style>
	.nav ul li .maike_ignore{
		display: inline-block;
		/*width:70px;*/
	}
		</style>
<li>
	
	<a class="maike_ignore  lang-switch-btn" href="javascript:translate.changeLanguage('chinese_simplified');">简体中文</a>
		
	</li>
<li>
	
	<a class="maike_ignore  lang-switch-btn" href="javascript:translate.changeLanguage('english');">English</a>
		
	</li>
<!---->
<script>
	// 等待页面DOM加载完成
document.addEventListener('DOMContentLoaded', function() {
    // 获取两个语言按钮
    const chineseBtn = document.querySelector('a[href="javascript:translate.changeLanguage(\'chinese_simplified\');"]');
    const englishBtn = document.querySelector('a[href="javascript:translate.changeLanguage(\'english\');"]');
    
    // 初始状态：只显示English按钮
    chineseBtn.style.display = 'none';
    englishBtn.style.display = 'inline-block';
    
    // 为两个按钮添加点击事件监听
    function handleLanguageSwitch(targetLang, hideBtn, showBtn) {
        return function(e) {
            // 阻止默认跳转行为
            e.preventDefault();
            
            // 执行语言切换
            translate.changeLanguage(targetLang);
            
            // 切换按钮显示状态
            hideBtn.style.display = 'none';
            showBtn.style.display = 'inline-block';
            
            // 可选：添加按钮切换动画效果
            showBtn.style.opacity = '0';
            setTimeout(() => {
                showBtn.style.opacity = '1';
            }, 50);
        };
    }
    
    // 绑定按钮点击事件
    chineseBtn.addEventListener('click', handleLanguageSwitch(
        'chinese_simplified', 
        chineseBtn, 
        englishBtn
    ));
    
    englishBtn.addEventListener('click', handleLanguageSwitch(
        'english', 
        englishBtn, 
        chineseBtn
    ));
    
    // 页面初始语言检测（根据页面内容判断）
    function checkInitialLanguage() {
        const pageContent = document.body.innerText;
        // 检测页面是否主要是中文内容
        if (pageContent.match(/[\u4e00-\u9fa5]/g) && pageContent.match(/[\u4e00-\u9fa5]/g).length > 10) {
            // 如果是中文页面，显示English按钮
            chineseBtn.style.display = 'none';
            englishBtn.style.display = 'inline-block';
        } else {
            // 如果是英文页面，显示简体中文按钮
            chineseBtn.style.display = 'inline-block';
            englishBtn.style.display = 'none';
        }
    }
    
    // 初始化检测
    checkInitialLanguage();
});

</script>
<!---->




    </ul>
  </div>
  
	<div class="cen_top">
    	<div class="about">
        	<h3 class="h3"><img src="static/picture/cfgg.png"></h3>
			<!--<h3 class="h2"><img src="static/picture/phonecfgg.png"></h3>-->
<style>
    #about p{
        margin:5px 0;
        color: black;
        font-weight: bold!important;
    }
    #about{
        padding-bottom:10px;
        font-weight: bold!important;
    }
    .mobi{
        display: none;
    }
    @media screen and (max-width : 767px){
        .pc{
            display: none;
        }
        .mobi{
            display: block;
        }
    }
</style>
<div id="about">
	<div class="pc">
	    <p><strong><span style="font-size: 18px;">&nbsp;&nbsp;&nbsp;&nbsp;*质量管理体系认证企业</span></strong></p><p><strong><span style="font-size: 18px;">&nbsp;&nbsp;&nbsp;&nbsp;*食品安全管理体系认证企业</span></strong></p><p><strong><span style="font-size: 18px;">&nbsp;&nbsp;&nbsp;&nbsp;*欧洲BRC(食品安全全球标准)认证企业</span></strong></p><p><strong><span style="font-size: 18px;">&nbsp;&nbsp;&nbsp;&nbsp;*GMP认证企业<br>&nbsp;&nbsp;&nbsp;&nbsp;*可以为客户提供:食品级，医药级包装<br>&nbsp;&nbsp;&nbsp;&nbsp;拥有先进的食品级，药品级微生物实验室不断引进国际先进的技术设备。白鲨包装，达到国家级食品级，药品级标准的包袋袋。<br>白鲨包装全面信息化管理体系。</span></strong></p><p style="text-align:center"><strong><span style="font-size: 18px;"><video style="video" class="edui-faked-video         video-js" controls="" preload="none" width="770" height="376" src="https://www.bsbigbag.com/uploadfile/ueditor/video/202509/17585117822c2679.mp4"><source src="https://www.bsbigbag.com/uploadfile/ueditor/video/202509/17585117822c2679.mp4" type="video/mp4"></video></span></strong></p><p><br><br></p><p><br></p>	</div>
	<div class="mobi">
	    <p style="text-align:center"><img src="https://www.bsbigbag.com/uploadfile/ueditor/image/202512/1764752658c0c75a.png" title="91dc1b05e7c9a8139f3d5d756246c70f" alt="91dc1b05e7c9a8139f3d5d756246c70f"></p><p style="text-align:center"><video style="video" class="edui-faked-video     video-js" controls="" preload="none" width="420" height="280" src="https://www.bsbigbag.com/uploadfile/ueditor/video/202509/17585117822c2679.mp4"><source src="https://www.bsbigbag.com/uploadfile/ueditor/video/202509/17585117822c2679.mp4" type="video/mp4"></video></p><p><br><br></p><p><br></p>	</div>
</div>
        </div><!--end of about--><!--end of honor--><!--end of contact-->
    </div>


    <div class="fanwei1">
    	<div class="floor-top"><strong>产品展示 <a href="/index.php?c=category&id=9" hidefocus="true">(显示全部)</a></strong></div>
<div id="fw1">
 

<div class="list1">
<div class="bk1"><img src="https://www.bsbigbag.com/uploadfile/202509/904ab45275c9.jpg " width="220"></div>
<div class="right">
<div class="ntitle1">C型防爆导电集装袋，获得欧美认证，有效去除静电。</div>
<div class="dp"></div>
</div>
</div>
  <div class="list1">
<div class="bk1"><img src="https://www.bsbigbag.com/uploadfile/202509/1c3dd1a2ac2891d.png " width="220"></div>
<div class="right">
<div class="ntitle1">井字型托底集装袋（安全系数高，适合于2吨以上货物）</div>
<div class="dp"></div>
</div>
</div>
  <div class="list1">
<div class="bk1"><img src="https://www.bsbigbag.com/uploadfile/202509/a5a005c1fe5aee7.png " width="220"></div>
<div class="right">
<div class="ntitle1">高端纳米级防膨胀防漏袋</div>
<div class="dp"></div>
</div>
</div>
  <div class="list1">
<div class="bk1"><img src="https://www.bsbigbag.com/uploadfile/202509/ff01c23aa21b1f.png " width="220"></div>
<div class="right">
<div class="ntitle1">透气集装袋，适合装农作物等需要通风透气的产品</div>
<div class="dp"></div>
</div>
</div>
  <div class="list1">
<div class="bk1"><img src="https://www.bsbigbag.com/uploadfile/202509/2386ce0607d989c.png " width="220"></div>
<div class="right">
<div class="ntitle1"> TYPE-D导电防爆集装袋，获得欧美认证，有效去除静电</div>
<div class="dp"></div>
</div>
</div>
  

  


</div></div>
       <div class="pro">
    <div class="floor-top"><strong>生产现场图片 <a href="" hidefocus="true">(显示全部)</a></strong> </div>
       <div id="pro">
<div id="left_btn" onclick="p=1"></div>
<div id="colee_2" class="colee1">
<table cellpadding="0" cellspacing="0" border="0">
<tbody><tr><td id="colee1_2" valign="top" align="center">
<table cellpadding="2" cellspacing="0" border="0">
<tbody><tr align="center">
 

    
<td>
    
<div class="bk" style="width:270px; height:200px;line-height:130px;_font-size:130px;"><img src="https://www.bsbigbag.com/uploadfile/202509/31a5933f5bd9852.png" border="0" height="200"></div>
<div class="ntitle" style="width:158px;">灯光检验</div>
</td>
     
<td>
    
<div class="bk" style="width:270px; height:200px;line-height:130px;_font-size:130px;"><img src="https://www.bsbigbag.com/uploadfile/202509/3f1c1746a5d2267.png" border="0" height="200"></div>
<div class="ntitle" style="width:158px;">拉丝机</div>
</td>
     
<td>
    
<div class="bk" style="width:270px; height:200px;line-height:130px;_font-size:130px;"><img src="https://www.bsbigbag.com/uploadfile/202509/5d4be8ad59f237b.png" border="0" height="200"></div>
<div class="ntitle" style="width:158px;">圆织机</div>
</td>
     
<td>
    
<div class="bk" style="width:270px; height:200px;line-height:130px;_font-size:130px;"><img src="https://www.bsbigbag.com/uploadfile/202509/f910fc7e56928ad.png" border="0" height="200"></div>
<div class="ntitle" style="width:158px;">基布涂膜机</div>
</td>
    

    

  
</tr>
</tbody></table>
</td>
<td id="colee2_2" valign="top">

</td>
</tr>
</tbody></table>
</div>
<div id="right_btn" onclick="p=0"></div>
<script src="static/js/p.js"></script>
 
        </div>
    </div>  
    <div class="news1">
        <div class="box-tit"><span></span><h2><a href="/index.php?c=category&id=9" target="_blank" style="color:#00388C">新闻动态</a> <a href="/index.php?c=category&id=9" hidefocus="true" target="_blank" style="color:#CC0000">(显示全部)</a></h2></div>
        
        <div class="unit_content1">
                        <ul style="line-height: 170%;">  
				 		
				<li><a href="https://www.bsbigbag.com/index.php?c=show&id=81">定制服务与解决方案</a></li>
   		        		
				<li><a href="https://www.bsbigbag.com/index.php?c=show&id=80">成品检验</a></li>
   		        		
				<li><a href="https://www.bsbigbag.com/index.php?c=show&id=79">半成品检验</a></li>
   		        			
   
                                
                               
                        </ul><div style="clear:both"></div>
                    </div>

        </div>
        
         <div class="contact1">
        <div class="box-tit"><h2>联系我们</h2></div>
        
        <div class="unit_content1">
        <div class="lx" style="line-height: 180%;">
           
<p>
	靳经理</p>
<p>
	电&nbsp; 话：18830093666</p>

<p>
	手&nbsp; 机：18830093666</p>

<p>
	地&nbsp; 址：河北邯郸市工业园区</p>

            </div><div class="erweima" style=" float:right"><img src="https://www.bsbigbag.com/uploadfile/202512/cb84088c530cad.png" border="0" height="150"><p style="font-size:14px; font-weight:bolder; color:#333; text-align:center">微信二维码</p> </div>
                    </div>
        </div>

<div style="clear:both"></div><div class="footerc">
       
  
    <div id="footer">   
      <div class="service w">     
        <div class="clr">
          <div class="copyright">
		  版权所有： <a href="/" title="集装袋">吨袋|集装袋|导电集装袋|防静电集装袋-邯郸市白鲨包装有限公司</a><span style="margin-left:10px;"> 

<div style="width:300px;margin:0 auto;padding:5px 0;height:30px;line-height:30px;">

	网安备<a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=32028202000059" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="static/picture/t.png" style="float:left;"> 
</a> 
	<span style="float:left;margin:0px 0px 0px 5px;color:#939393;">

		 <a href="http://beian.miit.gov.cn"></a>

	</span>



</div>

<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>
			  
		<script id="jsgovicon" src="http://odr.jsdsgsxt.gov.cn:8081/mbm/app/main/electronic/js/govicon.js?siteId=19782a97afe344c1a5109ae9887e532a&width=32&height=45&type=1" type="text/javascript"></script>
			  
			  
			  
			  
			  
			  
			  
			  
			  
			  
			  
    
    </span></div></div>
    </div>
    <!-- 修正后：仅替换 & 为 &amp; -->
<script type="text/javascript" src="https://shak60.kuaishang.cn/bs/ks.j?cI=615791&amp;fI=126728"></script>
  </div>
<!--end of footer-->
</div><!--end of container-->
</div></div><!--end of bg-->
	<a href="https://smalltool.github.io/" style="display:none;">整站下载器</a>
	<script>
  // 使用 DOMContentLoaded 事件（DOM 加载完成后触发）
  document.addEventListener('DOMContentLoaded', function() {
    console.log('DOM 加载完成');
    const video = document.querySelector('video');
    console.log('视频元素:', video);
    
   if (video) {
      video.muted = true;
      console.log('视频已通过JS设置静音');
      video.autoplay = true;
      video.playsinline = true;
      
      video.play().catch(err => {
        console.error('自动播放失败:', err.name, err.message);
        // 显示备用播放按钮
        const playButton = document.createElement('button');
        playButton.textContent = '点击播放视频';
        playButton.onclick = () => {
          video.play();
          playButton.remove();
        };
        video.parentNode.insertBefore(playButton, video.nextSibling);
      });
    }
  });
</script>
	
</body>
</html>

    
    <script type="text/javascript">
        var mk_fanyi_lang = ["chinese_simplified","english"];
        var mk_fanyi_tag = "";
        var mk_fanyi_class = "";
        var mk_fanyi_web_lang = "chinese_simplified";
        var mk_fanyi_auto_lang = "";
    </script>
    <script src='/static/assets/maike/fanyi/mk_translate.min.js?v=2.5' type='text/javascript'></script>