<!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>
<title>联系我们 - 腾龙娱乐有限公司在线客服15368837779</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><meta name="keywords" content="腾龙娱乐有限公司在线客服15368837779" />
<meta name="description" content="老街-腾龙公司在线客服电话微信同步【153-6883-7779-客服经理】诚招代理-待遇可谈-合作共赢(qq99886484)&#9989;腾龙-官网【公司直属客服】【可开户,可咨询】站内客服24小时在线【支持现场视频验证】" />
<link rel="stylesheet" type="text/css" href="templates/LCSM-SX-0280/base.css"/>

</head>
<body>
<script type="text/javascript" src="templates/LCSM-SX-0280/js/jquery-1.7.1.min.js"> </script>
<script type="text/javascript" src="templates/LCSM-SX-0280/js/js.js"> </script>

<!--[if IE 6]>
	<script type="text/javascript" src="templates/LCSM-SX-0280/DD_belatedPNG_0.0.8a-min.js"></script>
	<script type="text/javascript">
		DD_belatedPNG.fix('#subNavBg, img, background,.daohang ul li a:hover');
	</script>
<![endif]-->

<div class="top">
  <div class="wh1048">
    <div class="fl"><img src='uploadfile/20151225172747.png' width='405' height='74' border='0' align='top' /> </div>
    <div class="fr">
      <div class="toptel"><img src="/resource/kindeditor/attached/image/20151226/20151226034750_83223.png" alt="" /><br /></div>
    </div>
    <div class="clearfix"> </div>
  </div>
</div>
<div class="nav">
  <ul class="wrapper">
    
    <li onmouseover="this.className='lihover'" onmouseout="this.className=''"><a href="index.php">网站首页</a></li><li onmouseover="this.className='lihover'" onmouseout="this.className=''"><a href="index.php?p=danyeshow&lanmu=3&id=1">关于我们</a></li><li onmouseover="this.className='lihover'" onmouseout="this.className=''"><a href="index.php?p=productslist&lanmu=2">产品展示</a></li><li onmouseover="this.className='lihover'" onmouseout="this.className=''"><a href="index.php?p=newslist&lanmu=1">新闻中心</a></li><li onmouseover="this.className='lihover'" onmouseout="this.className=''"><a href="index.php?p=newslist&lanmu=16">技术支持</a></li><li onmouseover="this.className='lihover'" onmouseout="this.className=''"><a href="index.php?p=joblist">人才招聘</a></li><li onmouseover="this.className='lihover'" onmouseout="this.className=''"><a href="index.php?p=gbook">在线留言</a></li><li onmouseover="this.className='lihover'" onmouseout="this.className=''"><a href="index.php?p=danyeshow&lanmu=10&id=9">联系我们</a></li>
  </ul>
</div>
<div id="bannerBox">
  <ul id="bannerList">
    
        <li style="background: url(uploadfile/20151226112444.jpg) center top no-repeat;"><a target="_blank" href="#"></a></li>
        <li style="background: url(uploadfile/20151212120103.jpg) center top no-repeat;"><a target="_blank" href=""></a></li>
      </ul>
  <div id="bannerBton" class="bannerBton">
    <ul>
    </ul>
    <div class="clearfix"></div>
  </div>
</div>
<script language="JavaScript" type="text/javascript">
        document.oncontextmenu = new Function("event.returnValue=false;");
        document.onselectstart = new Function("event.returnValue=false;");
    </script>

    <script language="JavaScript" type="text/javascript">

        document.oncontextmenu = function(e) { return false; } 
    </script>

<script type="text/javascript" charset="utf-8">

(function () {
    $.fn.infiniteCarousel = function () {
        function repeat(str, n) {
            return new Array( n + 1 ).join(str);
        }
        
        return this.each(function () {
            // magic!
            var $wrapper = $('> div', this).css('overflow', 'hidden'),
                $slider = $wrapper.find('> ul').width(9999),
                $items = $slider.find('> li'),
                $single = $items.filter(':first')
                
                singleWidth = $single.outerWidth(),
                visible = Math.ceil($wrapper.innerWidth() / singleWidth),
                currentPage = 1,
                pages = Math.ceil($items.length / visible);
                
            /* TASKS */
            
            // 1. pad the pages with empty element if required
            if ($items.length % visible != 0) {
                // pad
                $slider.append(repeat('<li class="empty" />', visible - ($items.length % visible)));
                $items = $slider.find('> li');
            }
            
            // 2. create the carousel padding on left and right (cloned)
            $items.filter(':first').before($items.slice(-visible).clone().addClass('cloned'));
            $items.filter(':last').after($items.slice(0, visible).clone().addClass('cloned'));
            $items = $slider.find('> li');
            
            // 3. reset scroll
            $wrapper.scrollLeft(singleWidth * visible);
            
            // 4. paging function
            function gotoPage(page) {
                var dir = page < currentPage ? -1 : 1,
                    n = Math.abs(currentPage - page),
                    left = singleWidth * dir * visible * n;
                
                $wrapper.filter(':not(:animated)').animate({
                    scrollLeft : '+=' + left
                }, 500, function () {
                    // if page == last page - then reset position
                    if (page > pages) {
                        $wrapper.scrollLeft(singleWidth * visible);
                        page = 1;
                    } else if (page == 0) {
                        page = pages;
                        $wrapper.scrollLeft(singleWidth * visible * pages);
                    }
                    
                    currentPage = page;
                });
            }
            
            // 5. insert the back and forward link
            $wrapper.after('<a href="#" class="arrow back">&nbsp;</a><a href="#" class="arrow forward">&nbsp;</a>');
            
            // 6. bind the back and forward links
            $('a.back', this).click(function () {
                gotoPage(currentPage - 1);
                return false;
            });
            
            $('a.forward', this).click(function () {
                gotoPage(currentPage + 1);
                return false;
            });
            
            $(this).bind('goto', function (event, page) {
                gotoPage(page);
            });
            
            // THIS IS NEW CODE FOR THE AUTOMATIC INFINITE CAROUSEL
            $(this).bind('next', function () {
                gotoPage(currentPage + 1);
            });
        });
    };
})(jQuery);

$(document).ready(function () {
    // THIS IS NEW CODE FOR THE AUTOMATIC INFINITE CAROUSEL
    var autoscrolling = true;
    
    $('.infiniteCarousel').infiniteCarousel().mouseover(function () {
        autoscrolling = false;
    }).mouseout(function () {
        autoscrolling = true;
    });
    
    setInterval(function () {
        if (autoscrolling) {
            $('.infiniteCarousel').trigger('next');
        }
    }, 5000);
});


</script>
<script type="text/javascript">
(function($){
	$.fn.extend({
        Scroll:function(opt,callback){
                //参数初始化
                if(!opt) var opt={};
                var _btnUp = $("#"+ opt.up);//Shawphy:向上按钮
                var _btnDown = $("#"+ opt.down);//Shawphy:向下按钮
                var timerID;
                var _this=this.eq(0).find("ul:first");
                var     lineH=_this.find("li:first").height(), //获取行高
                        line=opt.line?parseInt(opt.line,10):parseInt(this.height()/lineH,10), //每次滚动的行数，默认为一屏，即父容器高度
                        speed=opt.speed?parseInt(opt.speed,10):500; //卷动速度，数值越大，速度越慢（毫秒）
                        timer=opt.timer //?parseInt(opt.timer,10):3000; //滚动的时间间隔（毫秒）
                if(line==0) line=1;
                var upHeight=0-line*lineH;
                //滚动函数
                var scrollUp=function(){
                        _btnUp.unbind("click",scrollUp); //Shawphy:取消向上按钮的函数绑定
                        _this.animate({
                                marginTop:upHeight
                        },speed,function(){
                                for(i=1;i<=line;i++){
                                        _this.find("li:first").appendTo(_this);
                                }
                                _this.css({marginTop:0});
                                _btnUp.bind("click",scrollUp); //Shawphy:绑定向上按钮的点击事件
                        });

                }
                //Shawphy:向下翻页函数
                var scrollDown=function(){
                        _btnDown.unbind("click",scrollDown);
                        for(i=1;i<=line;i++){
                                _this.find("li:last").show().prependTo(_this);
                        }
                        _this.css({marginTop:upHeight});
                        _this.animate({
                                marginTop:0
                        },speed,function(){
                                _btnDown.bind("click",scrollDown);
                        });
                }
               //Shawphy:自动播放
                var autoPlay = function(){
                        if(timer)timerID = window.setInterval(scrollUp,timer);
                };
                var autoStop = function(){
                        if(timer)window.clearInterval(timerID);
                };
                 //鼠标事件绑定
                _this.hover(autoStop,autoPlay).mouseout();
                _btnUp.css("cursor","pointer").click( scrollUp ).hover(autoStop,autoPlay);//Shawphy:向上向下鼠标事件绑定
                _btnDown.css("cursor","pointer").click( scrollDown ).hover(autoStop,autoPlay);

        }      
	})
})(jQuery);

$(document).ready(function(){
	$("#scrollDiv").Scroll({line:3,speed:50,timer:2000,up:"btn1",down:"btn2"});
});
</script>
<div class="kx_23"></div>
<div class="wrapper">
  <div class="icomtop">
    <div class="fl ifont">
      <p class="ichfont">关于我们</p>
      <p class="iengfont">About Us</p>
    </div>
    <div class="fr imore"> <a href="index.php?p=danyeshow&lanmu=3&id=1">ＭＯＲＥ＞＞</a> </div>
    <div class="clearfix"></div>
  </div>
  <div class="icom_con" style="line-height:30px;">
   <table width="100%" border="0" cellspacing="0" cellpadding="0">
	<tbody>
		<tr>
			<td valign="top" align="left" width="434">
				<img src="/resource/kindeditor/attached/image/20140814/20140814073233_98071.jpg" alt="" /><span></span><br />
			</td>
			<td align="left" valign="top">
				&#160; &#160; &#160;
				<p style="text-indent:26px;">
					太原特益达科技有限公司是一家专业从事金属表面处理中电镀工艺及相关产品的研发、生产和销售的科技型公司，成立于2008年。
				</p>
				<p style="text-indent:26px;">
					公司一方面自主创新研发新的技术和产品。另一方面与众多科所院校、多家知名企业建立协作关系，进行学术和技术交流，共同开发进步，以促进企业的技术进步和成果积累，得以产品和技术的持续不断发展。
				</p>
				<p style="text-indent:26px;">
					我们理念：载明智，持耐坚，润万德，博治道，稳践行，特益达。
				</p>
			</td>
		</tr>
	</tbody>
</table>
<br /> </td>
      
  </div>
  <div class="icomxian"></div>
</div>
<div class="kx_42"></div>
<div class="wrapper" style="padding-bottom:4px;">
  <div class="fl i_contact">
    <div class="fl ifont i_contact_top">
      <p class="ichfont">联系我们</p>
      <p class="iengfont">Contact Us</p>
    </div>
    <div class="fl i_contact_con">
     <p>
	<span style="line-height:1.5;">固话：0351-6191121</span> 
</p>
<p>
	传真：0351-6196812
</p>
<p>
	网址：http://www.tyted.com
</p>
<p>
	邮箱：tytid@163.com
</p>
<p>
	地址：太原千峰南路6号
</p>
<p>
	邮编：030024
</p><br/> </div>
     <div class="clearfix"></div>
    <div class="icomxian" style="padding-top:36px;"></div>
  </div>
  <div class="fr i_comnew">
    <div class="fl ifont i_comnew_top">
      <p class="ichfont">公司新闻</p>
      <p class="iengfont">Company News</p>
    </div>
    <div class="fl irollnews"> 
    <div style="height:10px;"></div>
    	<div id="scrollDiv">
		<ul>
			 
                                                            								<li>
									
									<a href="index.php?p=newsshow&id=47&lanmu=1" title="汽车连接器的摩擦腐蚀与电镀问题">
										汽车连接器的摩擦腐蚀与电镀问题
									</a>
								</li>
                                								<li>
									
									<a href="index.php?p=newsshow&id=49&lanmu=1" title="铬酸酐标准">
										铬酸酐标准
									</a>
								</li>
                                								<li>
									
									<a href="index.php?p=newsshow&id=46&lanmu=1" title="镀铬溶液再无报废">
										镀铬溶液再无报废
									</a>
								</li>
                                                            		</ul>
	</div>
	
    <div class="inewsmore"><a href="index.php?p=newslist&lanmu=1">MORE>></a></div>
    </div>
    <div class="clearfix"></div>
    <div class="icomxian" style="padding-top:41px;"></div>
  </div>
  <div class="clearfix"></div>
</div>
<div class="i_prolist">
  <div class="wrapper">
    <div class="icomtop" style="padding-bottom:56px;">
      <div class="fl ifont">
        <p class="ichfont">产品展示</p>
        <p class="iengfont">Proudcts</p>
      </div>
      <div class="fr imore"> <a href="index.php?p=productslist&lanmu=2">ＭＯＲＥ＞＞</a> </div>
      <div class="clearfix"></div>
    </div>
    <div class="infiniteCarousel">
      <div class="indexpro">
        <ul>
        
								<li>
					<div class="iproimg" onmouseover="this.className='iproimghover'" onmouseout="this.className='iproimg'">
						<a href="index.php?p=productsshow&lanmu=2&id=165" title="三价铬目视比色仪">
						<img src="uploadfile/20151215/20151215091709_57980.jpg"  /></a>
					</div>
					<div class="iprotitle">
						<a href="index.php?p=productsshow&lanmu=2&id=165" title="三价铬目视比色仪">
						三价铬目视比色仪</a>
					</div>
					<div class="clearfix"></div>
				</li>
								<li>
					<div class="iproimg" onmouseover="this.className='iproimghover'" onmouseout="this.className='iproimg'">
						<a href="index.php?p=productsshow&lanmu=2&id=175" title="镀层厚度测试仪">
						<img src="uploadfile/20151215/20151215111814_35941.jpg"  /></a>
					</div>
					<div class="iprotitle">
						<a href="index.php?p=productsshow&lanmu=2&id=175" title="镀层厚度测试仪">
						镀层厚度测试仪</a>
					</div>
					<div class="clearfix"></div>
				</li>
								<li>
					<div class="iproimg" onmouseover="this.className='iproimghover'" onmouseout="this.className='iproimg'">
						<a href="index.php?p=productsshow&lanmu=2&id=171" title="铬雾抑制剂">
						<img src="uploadfile/20151215/20151215093434_22727.jpg"  /></a>
					</div>
					<div class="iprotitle">
						<a href="index.php?p=productsshow&lanmu=2&id=171" title="铬雾抑制剂">
						铬雾抑制剂</a>
					</div>
					<div class="clearfix"></div>
				</li>
								<li>
					<div class="iproimg" onmouseover="this.className='iproimghover'" onmouseout="this.className='iproimg'">
						<a href="index.php?p=productsshow&lanmu=2&id=173" title="镀铬CPVC和PVDF管件">
						<img src="uploadfile/20151215/20151215093807_74682.jpg"  /></a>
					</div>
					<div class="iprotitle">
						<a href="index.php?p=productsshow&lanmu=2&id=173" title="镀铬CPVC和PVDF管件">
						镀铬CPVC和PVDF管件</a>
					</div>
					<div class="clearfix"></div>
				</li>
								<li>
					<div class="iproimg" onmouseover="this.className='iproimghover'" onmouseout="this.className='iproimg'">
						<a href="index.php?p=productsshow&lanmu=2&id=169" title="镀装饰铬添加剂">
						<img src="uploadfile/20151215/20151215092416_38666.jpg"  /></a>
					</div>
					<div class="iprotitle">
						<a href="index.php?p=productsshow&lanmu=2&id=169" title="镀装饰铬添加剂">
						镀装饰铬添加剂</a>
					</div>
					<div class="clearfix"></div>
				</li>
								<li>
					<div class="iproimg" onmouseover="this.className='iproimghover'" onmouseout="this.className='iproimg'">
						<a href="index.php?p=productsshow&lanmu=2&id=168" title="镀装饰铬添加剂">
						<img src="uploadfile/20151215/20151215092117_52127.jpg"  /></a>
					</div>
					<div class="iprotitle">
						<a href="index.php?p=productsshow&lanmu=2&id=168" title="镀装饰铬添加剂">
						镀装饰铬添加剂</a>
					</div>
					<div class="clearfix"></div>
				</li>
								<li>
					<div class="iproimg" onmouseover="this.className='iproimghover'" onmouseout="this.className='iproimg'">
						<a href="index.php?p=productsshow&lanmu=2&id=166" title="镀硬铬添加剂">
						<img src="uploadfile/20151215/20151215092116_67082.jpg"  /></a>
					</div>
					<div class="iprotitle">
						<a href="index.php?p=productsshow&lanmu=2&id=166" title="镀硬铬添加剂">
						镀硬铬添加剂</a>
					</div>
					<div class="clearfix"></div>
				</li>
								<li>
					<div class="iproimg" onmouseover="this.className='iproimghover'" onmouseout="this.className='iproimg'">
						<a href="index.php?p=productsshow&lanmu=2&id=167" title="镀硬铬添加剂">
						<img src="uploadfile/20151215/20151215092117_50179.jpg"  /></a>
					</div>
					<div class="iprotitle">
						<a href="index.php?p=productsshow&lanmu=2&id=167" title="镀硬铬添加剂">
						镀硬铬添加剂</a>
					</div>
					<div class="clearfix"></div>
				</li>
								<li>
					<div class="iproimg" onmouseover="this.className='iproimghover'" onmouseout="this.className='iproimg'">
						<a href="index.php?p=productsshow&lanmu=2&id=163" title="铬酸-硫酸型溶液快速降低三价铬离子设备">
						<img src="uploadfile/20151215/20151215091017_34543.jpg"  /></a>
					</div>
					<div class="iprotitle">
						<a href="index.php?p=productsshow&lanmu=2&id=163" title="铬酸-硫酸型溶液快速降低三价铬离子设备">
						铬酸-硫酸型溶液快速降</a>
					</div>
					<div class="clearfix"></div>
				</li>
								<li>
					<div class="iproimg" onmouseover="this.className='iproimghover'" onmouseout="this.className='iproimg'">
						<a href="index.php?p=productsshow&lanmu=2&id=162" title="铬酸-硫酸型溶液快速除杂设备">
						<img src="uploadfile/20151215/20151215091016_62001.jpg"  /></a>
					</div>
					<div class="iprotitle">
						<a href="index.php?p=productsshow&lanmu=2&id=162" title="铬酸-硫酸型溶液快速除杂设备">
						铬酸-硫酸型溶液快速除</a>
					</div>
					<div class="clearfix"></div>
				</li>
				         
        </ul>
        <div class="clearfix"></div>
      </div>
    </div>
  </div>
</div>
<div class="inews">
	<div class="wrapper">
    	<div class="fl i_people">
        	<div class="inews_font">
            	<span class="inewsch">人才招聘</span><span class="inewseng">Job</span>
            </div>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="i_people_top" height="34" width="122" align="left">&nbsp;职位名称</td>
    <td class="i_people_top"  width="122" align="left">招聘人数</td>
    <td class="i_people_top"  align="left">详细</td>
  </tr>
 
				  <tr>
    <td height="40" align="left">&nbsp;<a href="index.php?p=jobshow&id=3" title="招聘">
										招聘
									</a></td>
    <td align="left">&nbsp;0人</td>
    <td align="left"><a href="index.php?p=jobshow&id=3" title="招聘">
										详细
									</a></td>
  </tr>
  	</table>

        </div>
        <div class="fl i_newslist">
      		<div class="inews_font">
            	<span class="inewsch">行业新闻</span><span class="inewseng">Industry   News</span>
            </div>
        	<ul class="i_newslistul">
            
                                                            								<li>
									
									<a href="index.php?p=newsshow&id=50&lanmu=1" title="第四届山东涂装电镀及表面处理展逆市而上">
										第四届山东涂装电镀及表面处理展逆市而上
									</a>
								</li>
                                								<li>
									
									<a href="index.php?p=newsshow&id=48&lanmu=1" title="开平月山镇有望“强强联姻”做强电镀五金">
										开平月山镇有望“强强联姻”做强电镀五金
									</a>
								</li>
                                                                        	
            </ul>        	
        </div>
        <div class="fr iprotype">
        	<div class="inews_font">
            	<span class="inewsch">产品展示</span><span class="inewseng">Products</span>
            </div>
        	<ul class="i_protype">
            
<li onmouseover="this.className='itypehover'" onmouseout="this.className=''"><a href="index.php?p=productslist&c_id=50&lanmu=2">镀铬清洁生产环保设备<em class="point"></em></a></li>
<li onmouseover="this.className='itypehover'" onmouseout="this.className=''"><a href="index.php?p=productslist&c_id=48&lanmu=2">镀铬添加剂HEEC系列<em class="point"></em></a></li>
<li onmouseover="this.className='itypehover'" onmouseout="this.className=''"><a href="index.php?p=productslist&c_id=49&lanmu=2">镀铬溶液成分分析仪器<em class="point"></em></a></li>
            	
              
            </ul>   
        </div>
        <div class="clearfix"></div>
    </div>
</div>




<div class="bot">
	<div class="wrapper" style="line-height:24px;"><table border="0" width="1200">
	<tbody>
		<tr>
			<td>
				<span><img src="/resource/kindeditor/attached/image/20151210/20151210013555_93600.png" alt="" /><br />
</span> 
			</td>
			<td>
				<div style="text-align:left;">
					<span style="line-height:1.5;">太原特益达科技有限公司 &nbsp;&nbsp;</span><a href="http://www.miitbeian.gov.cn/" target="_blank">晋ICP备******号</a>&nbsp; &nbsp;<span style="line-height:1.5;">固话：0351-6191121 &nbsp;&nbsp;</span><span style="line-height:1.5;">传真：0351-6196812</span> 
				</div>
				<div style="text-align:left;">
					<span style="line-height:1.5;">地址：太原千峰南路6号 &nbsp;&nbsp;邮编：030024 &nbsp;&nbsp;网址：http://www.tyted.com &nbsp;&nbsp;邮箱：tytid@163.com &nbsp;&nbsp;</span> 
				</div>
				<div style="text-align:left;">
					<span style="line-height:1.5;">技术支持：</span><a href="http://www.longcai0351.com/" target="_blank">龙采科技（山西）有限公司</a><span style="line-height:1.5;">---</span><a href="http://www.longcai0351.com/" target="_blank">百度山西地区营销服务中心</a><span style="line-height:1.5;">（</span><a href="http://www.longcai0351.com/" target="_blank">山西百度推广</a><span style="line-height:1.5;">、</span><a href="http://www.longcai0351.com/" target="_blank">山西网站建设</a><span style="line-height:1.5;">）</span> 
				</div>
			</td>
			<td>
				<span><img src="/resource/kindeditor/attached/image/20151225/20151225102657_25265.png" alt="" /><br />
</span> 
			</td>
		</tr>
	</tbody>
</table>
<a href="//www.pinterest.com/pin/create/extension/"></a><a href="//www.pinterest.com/pin/create/extension/"></a><a href="//www.pinterest.com/pin/create/extension/"></a><a href="//www.pinterest.com/pin/create/extension/"></a><a href="//www.pinterest.com/pin/create/extension/"></a></div>
</div>
<script type="text/javascript">	
	var secondbanner1 = secondbanner("bannerBox","bannerBton","15");
	var seondw = btnweight("bannerBton");
</script>


</body>
</html>