<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="templates/LCS-DL-N0038/css/index.css" type="text/css" rel="stylesheet" media="all" />
<title>鞍山顺翔制冷设备有限公司 - 鞍山顺翔制冷设备有限公司</title>
<meta name="keywords" content="鞍山顺翔制冷设备有限公司" />
<meta name="description" content="鞍山顺翔制冷设备有限公司" />
<!--[if IE 6]> 
<script src="js/DD_belatedPNG_0.0.8a.js"></script> 
<script> 
  /* EXAMPLE */ 
  DD_belatedPNG.fix('*'); 
  
  /* string argument can be any CSS selector */ 
  /* .png_bg example is unnecessary */ 
  /* change it to what suits you! */ 
</script> 
<![endif]-->
<!-- sxzlsb.com Baidu tongji analytics -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?8401f21ecf21ead5f54ecc41b9ca0d1e";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<div id="contentAll">
<div id="Head">
<div class="head_top">
<p class="head_logo"><a href="index.php"><img src='uploadfile/20140822160337.png'  border='0' /></a></a></p>
<p class="head_tel">



  咨询热线：15241279887


</p>
<div class="clearFloat">&nbsp;</div>
<!--head_top--></div>
<div class="head_navi">
<div class="head_navi_main">
<ul class="head_navi_list">


  <li><a href="index.php" class='cur'>首页</a></li><li ><a href="index.php?p=danyeshow&lanmu=3&id=1">公司简介</a></li><li ><a href="index.php?p=newslist&lanmu=1">新闻动态</a></li><li ><a href="index.php?p=productslist&lanmu=2">产品展示</a></li><li ><a href="index.php?p=productslist&lanmu=14">工程案例</a></li><li ><a href="index.php?p=newslist&lanmu=15">人才招聘</a></li><li ><a href="index.php?p=gbook&lanmu=6">在线留言</a></li><li ><a href="index.php?p=contact&lanmu=17">联系我们</a></li>


<div class="clearFloat">&nbsp;</div>
</ul>

<div class="clearFloat">&nbsp;</div>
<!--head_navi_main--></div>
<!--head_navi--></div>
<div class="banner">
<div class="index_banner" id="banner_tabs">
  <ul>
  
         
              
  <li>
  <a href="#" target="_blank">
  <div style="background:#dfe9f3 url(uploadfile/20180504153012.jpg) no-repeat top center; height:444px;"></div>
  </a>
  </li>
      
  <li>
  <a href="#" target="_blank">
  <div style="background:#dfe9f3 url(uploadfile/20180504153025.jpg) no-repeat top center; height:444px;"></div>
  </a>
  </li>
     




    
  </ul>
  <cite><span class="cur">1</span><span>2</span><span>3</span><span>4</span><span>5</span></cite> </div>
<script type="text/javascript">
			(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 banner_tabs = function(id){
		        this.ctn = document.getElementById(id);
		        this.adLis = null;
		        this.btns = null;
		        this.animStep = 0.2;//动画速度0.1～0.9
		        this.switchSpeed = 4;//自动播放间隔(s)
		        this.defOpacity = 1;
		        this.tmpOpacity = 1;
		        this.crtIndex = 0;
		        this.crtLi = null;
		        this.adLength = 0;
		        this.timerAnim = null;
		        this.timerSwitch = null;
		        this.init();
		    };
		    banner_tabs.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){return;}
		            this.crtLi = this.adLis[this.crtIndex];
		            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;
		            for(var i=0;i<this.adLength;i++){
		                this.btns[i].className = '';
		            }
		            this.btns[toIndex].className = 'cur'
		            this.fnAnim(toIndex);
		        },
		        fnAutoPlay:function(){
		            this.fnSwitch(this.fnNextIndex());
		        },
		        fnPlay:function(){
		            this.timerSwitch = window.setInterval(this.fnAutoPlay.bind(this),this.switchSpeed*1000);
		        },
		        fnStopPlay:function(){
		            window.clearTimeout(this.timerSwitch);
		        },
		        init:function(){
		            this.adLis = this.ctn.getElementsByTagName('li');
		            this.btns = this.ctn.getElementsByTagName('cite')[0].getElementsByTagName('span');
		            this.adLength = this.adLis.length;
		            for(var i=0,l=this.btns.length;i<l;i++){
		                with({i:i}){
		                    this.btns[i].index = i;
		                    this.btns[i].onclick = this.fnSwitch.bind(this,i);
		                    this.btns[i].onclick = this.fnSwitch.bind(this,i);
		                }
		            }
		            this.adLis[this.crtIndex].style.zIndex = 2;
		            this.fnPlay();
		            this.ctn.onmouseover = this.fnStopPlay.bind(this);
		            this.ctn.onmouseout = this.fnPlay.bind(this);
		        }
		    };
		    var player1 = new banner_tabs('banner_tabs');
		</script>

<!--banner--></div>

<!--Head--></div>

<div id="contentBody">
<div class="contentBodyA">
<div class="index_about">
<div class="index_about_main">
<h3><span class="titCN">公司简介</span><span class="more"><a href="index.php?p=danyeshow&lanmu=3&id=1">&lt;&lt; more</a></span>
<div class="clearFloat">&nbsp;</div>
</h3>

<div class="index_about_txt">
                  
    <p style="text-indent:2em;">
	<br />
</p>
<p style="white-space:normal;text-indent:2em;">
	鞍山顺翔制冷设备有限公司，位于辽宁省鞍山市铁西区四方台路，是一家从事制冷压缩机、制冷设备、制冷配件批发，冷库工程设计、安装、维修的专业化公司。
</p>
<p style="white-space:normal;text-indent:2em;">
	公司主营制冷机组、制冷配件、制冷设备、制冷压缩机、并承接冷库工程。制冷压缩机产品涵盖冷库工程制冷压缩机，铝排管，包括：半封闭活塞压缩机，螺杆压缩机，低温涡旋压缩机，风冷式冷凝机组，水冷式冷凝机组，多机头并联机组；制冷设备产品涵盖：聚氨酯彩钢板、冷库门空调冰箱配件，铜管铜件，环保氟利昂，制冷工具等。
</p>
<p style="white-space:normal;text-indent:2em;">
	经销品牌包括比泽尔制冷压缩机，谷轮制冷压缩机，汉中制冷压缩机，美优乐制冷压缩机，泰康制冷压缩机，雪鹰制冷压缩机，丹佛斯制冷压缩机，艾默生阀件，卡乐控制器，伊力威，精创电脑控制箱，东岳制冷剂，杜邦制冷剂，英力士制冷剂，太阳冷冻油，洪森，宏泰铜管，万胜压缩机等制冷设备。
</p>
<p style="white-space:normal;text-indent:2em;">
	承接各类冷库工程，包括冷库工程的设计、冷库工程的安装、冷库工程的维修等，多年来积累了丰富的冷库工程实践经验。为肉类、食品、水产、果蔬、种子、医药、电子、生物等行业提供了优质、快捷的冷藏、冷冻、速冻、保鲜、加工等冷库工程建设服务。
</p>
<p style="white-space:normal;text-indent:2em;">
	把满足用户要求作为自己的追求，唯实求真的内涵贯穿着我们的每一项工作，高品质、优质服务是我们的经营理念。完善的销售体系，随时为用户提供技术咨询、冷库工程设计、制冷设备配套等一条龙服务。
</p>
<p style="white-space:normal;text-indent:2em;">
	公司拥有专业的冷库工程技术队伍、先进的理念、优质的制冷设备设备、丰富的经验、完善的售后服务，为客户提供专业的成套冷库工程方案。
</p>
<p style="white-space:normal;text-indent:2em;">
	我们将以完善的管理、高端的质量、优质的服务、塑造企业的核心竞争力，不断为您创造价值。
</p>
<p>
	<br />
</p>
<p style="text-indent:2em;">
	<br />
</p>

       
<!--index_about_txt--></div>
<div class="index_about_img">

<p>           
    <img src="/uploadfile/20160802010258_78334.jpg" alt="" /></p>



<!--index_about_img--></div>
<div class="clearFloat">&nbsp;</div>
<!--index_about_main--></div>
<!--index_about--></div>
<!--contentBodyA--></div>

<div class="contentBodyB">
<div class="block2A">
<div class="index_news">
<h3 class="borderA"><span class="titCN">新闻资讯</span>
<span class="more"><a href="index.php?p=newslist&lanmu=1" class="head_top">&lt;&lt; more</a></span>
<div class="clearFloat">&nbsp;</div>
</h3>

<ul class="index_news_list">

       

       <li><a href="index.php?p=newsshow&id=65&lanmu=1&c_id=1" title="冷库中排除异味的方法">冷库中排除异味的方法 </a>
<span class="time"><a href="index.php?p=newsshow&id=65&lanmu=1&c_id=1">【 2017-10-16】</a></span></li>

  <li><a href="index.php?p=newsshow&id=64&lanmu=1&c_id=1" title="如何做好冷库设备节能的自动控制">如何做好冷库设备节能的自动控制 </a>
<span class="time"><a href="index.php?p=newsshow&id=64&lanmu=1&c_id=1">【 2016-08-02】</a></span></li>

  <li><a href="index.php?p=newsshow&id=63&lanmu=1&c_id=1" title="水产品冷藏加工方法之冷却保鲜">水产品冷藏加工方法之冷却保鲜 </a>
<span class="time"><a href="index.php?p=newsshow&id=63&lanmu=1&c_id=1">【 2016-08-02】</a></span></li>

  <li><a href="index.php?p=newsshow&id=62&lanmu=1&c_id=1" title="如何降低冷藏食品干耗">如何降低冷藏食品干耗 </a>
<span class="time"><a href="index.php?p=newsshow&id=62&lanmu=1&c_id=1">【 2016-08-02】</a></span></li>

  <li><a href="index.php?p=newsshow&id=61&lanmu=1&c_id=1" title="冷藏冷库">冷藏冷库 </a>
<span class="time"><a href="index.php?p=newsshow&id=61&lanmu=1&c_id=1">【 2016-08-02】</a></span></li>

  <li><a href="index.php?p=newsshow&id=60&lanmu=1&c_id=1" title="果蔬冷库">果蔬冷库 </a>
<span class="time"><a href="index.php?p=newsshow&id=60&lanmu=1&c_id=1">【 2016-08-02】</a></span></li>

  


</ul>
<!--index_news--></div>

<div class="index_gbook_con">
<h3 class="borderA"><span class="titCN">联系我们</span><span class="more"><a href="index.php?p=contact&lanmu=17" class="head_top">&lt;&lt; more</a></span>
<div class="clearFloat">&nbsp;</div>
</h3>



  <p class="left_gbook_con_txt">
	联 系 人：孙经理<br />
手 &nbsp; &nbsp; 机：15241279887<br />
网 &nbsp; &nbsp; 址：www.sxzlsb.cn<br />
地 &nbsp; &nbsp; 址：辽宁省鞍山市铁西区四方台路300号S1
</p>
<p>
	<a href="#"></a> 
</p>





<p class="index_gbook_con_img"><img src="templates/LCS-DL-N0038/img/index_gbook_con_img.png" width="166" height="166" alt="" /></p>
<!--index_gbook_con--></div>
<div class=" clearFloat">&nbsp;</div>
<!--block2A--></div>
<!--contentBodyB--></div>
<div class="index_pro_show">
<h3 class="borderB"><span class="titCN">产品展示</span><span class="more"><a href="index.php?p=productslist&lanmu=2" class="head_top">&lt;&lt; more</a></span>
<div class="clearFloat">&nbsp;</div></h3>
<script type="text/javascript">
//js无缝滚动代码
function marquee(i, direction){
	var obj = document.getElementById("marquee" + i);
	var obj1 = document.getElementById("marquee" + i + "_1");
	var obj2 = document.getElementById("marquee" + i + "_2");
	if (direction == "up"){
		if (obj2.offsetTop - obj.scrollTop <= 0){
			obj.scrollTop -= (obj1.offsetHeight + 20);
		}else{
			var tmp = obj.scrollTop;
			obj.scrollTop++;
			if (obj.scrollTop == tmp){
				obj.scrollTop = 1;
			}
		}
	}else{
		if (obj2.offsetWidth - obj.scrollLeft <= 0){
			obj.scrollLeft -= obj1.offsetWidth;
		}else{
			obj.scrollLeft++;
		}
	}
}

function marqueeStart(i, direction){
	var obj = document.getElementById("marquee" + i);
	var obj1 = document.getElementById("marquee" + i + "_1");
	var obj2 = document.getElementById("marquee" + i + "_2");

	obj2.innerHTML = obj1.innerHTML;
	var marqueeVar = window.setInterval("marquee("+ i +", '"+ direction +"')", 20);
	obj.onmouseover = function(){
		window.clearInterval(marqueeVar);
	}
	obj.onmouseout = function(){
		marqueeVar = window.setInterval("marquee("+ i +", '"+ direction +"')", 20);
	}
}
</script>
<div id="marquee1" class="marqueeleft">
	<div style="width:8000px;">
		<ul id="marquee1_1">
        
              
          
      
                    
			<li>
				<a class="pic" href="index.php?p=productsshow&id=253&lanmu=2&c_id=56" title="冷库板">
                <img src="uploadfile/20160802/20160802092843_16729.jpg"  /></a>
				<div class="txt"><a href="index.php?p=productsshow&id=253&lanmu=2&c_id=56">
                冷库板</a></div>
			</li>
            
                     
			<li>
				<a class="pic" href="index.php?p=productsshow&id=248&lanmu=2&c_id=56" title="冷库板">
                <img src="uploadfile/20160802/20160802092840_86555.jpg"  /></a>
				<div class="txt"><a href="index.php?p=productsshow&id=248&lanmu=2&c_id=56">
                冷库板</a></div>
			</li>
            
                     
			<li>
				<a class="pic" href="index.php?p=productsshow&id=247&lanmu=2&c_id=56" title="冷库板">
                <img src="uploadfile/20160802/20160802092840_28075.jpg"  /></a>
				<div class="txt"><a href="index.php?p=productsshow&id=247&lanmu=2&c_id=56">
                冷库板</a></div>
			</li>
            
                     
			<li>
				<a class="pic" href="index.php?p=productsshow&id=242&lanmu=2&c_id=55" title="冷库门">
                <img src="uploadfile/20160802/20160802092815_82858.jpg"  /></a>
				<div class="txt"><a href="index.php?p=productsshow&id=242&lanmu=2&c_id=55">
                冷库门</a></div>
			</li>
            
                     
			<li>
				<a class="pic" href="index.php?p=productsshow&id=234&lanmu=2&c_id=54" title="铝排管">
                <img src="uploadfile/20160802/20160802092800_98536.jpg"  /></a>
				<div class="txt"><a href="index.php?p=productsshow&id=234&lanmu=2&c_id=54">
                铝排管</a></div>
			</li>
            
                     
			<li>
				<a class="pic" href="index.php?p=productsshow&id=232&lanmu=2&c_id=54" title="铝排管">
                <img src="uploadfile/20160802/20160802092800_29964.jpg"  /></a>
				<div class="txt"><a href="index.php?p=productsshow&id=232&lanmu=2&c_id=54">
                铝排管</a></div>
			</li>
            
                     
			<li>
				<a class="pic" href="index.php?p=productsshow&id=228&lanmu=2&c_id=54" title="铝排管">
                <img src="uploadfile/20160802/20160802092751_22205.jpg"  /></a>
				<div class="txt"><a href="index.php?p=productsshow&id=228&lanmu=2&c_id=54">
                铝排管</a></div>
			</li>
            
                     
			<li>
				<a class="pic" href="index.php?p=productsshow&id=220&lanmu=2&c_id=53" title="蒸发冷">
                <img src="uploadfile/20160802/20160802092728_91721.jpg"  /></a>
				<div class="txt"><a href="index.php?p=productsshow&id=220&lanmu=2&c_id=53">
                蒸发冷</a></div>
			</li>
            
                     
			<li>
				<a class="pic" href="index.php?p=productsshow&id=217&lanmu=2&c_id=52" title="螺杆机组">
                <img src="uploadfile/20160802/20160802092707_93817.jpg"  /></a>
				<div class="txt"><a href="index.php?p=productsshow&id=217&lanmu=2&c_id=52">
                螺杆机组</a></div>
			</li>
            
               
                             
		</ul>
		<ul id="marquee1_2"></ul>
	</div>
</div><!--marqueeleft end-->
<script type="text/javascript">marqueeStart(1, "left");</script>

<!--index_pro_show--></div>
<!--contentBody--></div>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<div id="foot">
<div class="footer">
<div class="foot_main">
<div class="foot_img">
<p>  
           <img src="/uploadfile/20160802010623_33678.png" alt="" /></p>
<!--foot_img--></div>

<div class="foot_txt">
  <span style="color:#FFFFFF;"><span style="color:#FFFFFF;">版权所有：鞍山顺翔制冷设备有限公司</span><span style="color:#FFFFFF;"> &nbsp;咨询电话：15241279887</span></span><br />
<span style="color:#FFFFFF;"><span style="color:#FFFFFF;"> 地址：</span><span style="color:#FFFFFF;">辽宁省鞍山市铁西区四方台路300号S1</span><span style="color:#FFFFFF;"> &nbsp;</span></span><a href="http://beian.miit.gov.cn" target="_blank"><span style="color:#FFFFFF;">辽ICP备17004254号</span></a><br />
<a href="http://longcai.com/" target="_blank"><span style="color:#FFFFFF;">技术支持：龙采科技</span></a><br />
<!--foot_txt--></div>

<div class="foot_logo">
<p><img src="templates/LCS-DL-N0038/img/foot_logo.png" width="95" height="94" alt="" /></p>
<!--foot_logo--></div>
<div class="clearFloat">&nbsp;</div>
<!--foot_main--></div>
<!--footer--></div>
<!--foot--></div>


<!--contentAll--></div>
<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? "https://" : "http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1278009793'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s9.cnzz.com/z_stat.php%3Fid%3D1278009793%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script>
</body>
</html>
