 
<!doctype html public "-//w3c//dtd html 4.01//en" "http://www.w3.org/tr/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link type="image/icon" rel="icon" href="images/icon/faviconico.ico" />
<link type="image/icon" rel="shortcut icon" href="images/icon/faviconico.ico" />
<link type="image/icon" rel="bookmark" href="images/icon/faviconico.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="zh-cn" />

<title>三泰科技 - 首页</title>
<link type="text/css" rel="stylesheet" href="default/css/sunix.css" />
<link type="text/css" rel="stylesheet" href="default/ui/fancybox/fancybox/jquery.fancybox-1.3.4.css" />

<script type="text/javascript" src="default/js/jquery.js"></script>
<script type="text/javascript" src="default/ui/fancybox/fancybox/jquery.fancybox-1.3.4.pack.js"></script>

<!--google分析標記-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-5748168-5"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-5748168-5');
</script><!--google GTM-->
<!-- Google Tag Manager -->
<script>
(function(w, d, s, l, i) {
    w[l] = w[l] || [];
    w[l].push({
        'gtm.start': new Date().getTime(),
        event: 'gtm.js'
    });
    var f = d.getElementsByTagName(s)[0],
        j = d.createElement(s),
        dl = l != 'dataLayer' ? '&l=' + l : '';
    j.async = true;
    j.src =
        'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
    f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-MWFBV9X');
</script>
<!-- End Google Tag Manager --><!--google SEO-->
<meta name="keywords" content="SUNIX,三泰,网络,RS-232,RS422/485, 串口,并口,转换器,视频,串口卡,并口卡,案例,产品,渠道" />
<meta name="description" content="三泰科技，一家一直创造奇迹的公司，并正走向物联网世界。" />

<!--css-->
<style type="text/css">
a img {
	border: none;
}

#slideshow {
	position: relative;
	width: 980px;
	height: 350px;
}
#slideshow a.slideshow_link {
	position: absolute;	/* 讓圖片疊在一起 */
}
#slideshow .control {
	position: absolute;
	right: 30px;
	bottom: 10px;
}
#slideshow .control a {
	display: inline-block;
	padding: 0px 3px 6px 3px;
	margin: 0 3px;
	width: 7px;
	height:7px;
	color: #00BBFF;
	background: #00BBFF;
	text-align: center;
	font-size:1px;
}

/*
#slideshow .control a.on {
	color: #00BBFF;
}
*/

/*右邊視窗*/
.window{
	width:280px;
	bottom:6px;
	right:6px;
	position:fixed;
	overflow:hidden;
	text-align:center;
	z-index:10000;
}

.window_content{
	width:280px;
	height:184px;
	overflow:hidden;
}
.window_close{
	width:280px;
	height:20px;
}
</style>

<!--javascript-->
<script type="text/javascript">
$(document).ready(function(){
	//搜尋框預設內容
	$("#edm_name").focus(function() {
		if($("#edm_name").val()=="您的姓名"){
			$("#edm_name").val("");
		}
	});
	$("#edm_name").blur(function() {
		if($("#edm_name").val()==""){
			$("#edm_name").val("您的姓名");
		}
	});
	
	$("#edm_email").focus(function() {
		if($("#edm_email").val()=="电邮"){
			$("#edm_email").val("");
		}
	});
	$("#edm_email").blur(function() {
		if($("#edm_email").val()==""){
			$("#edm_email").val("电邮");
		}
	});
	
	$("#subscribe").click(function() {
		subscribe();
	});
	
	//360彈出框
	$(".fancybox").fancybox({
		"width"				: 800,
		"height"			: 532,
		"autoScale"			: false,
		"scrolling"  		: "no",
		"transitionIn"		: "none",
		"transitionOut"		: "none",
		"type"				: "iframe",
		onStart: function () {
			//判斷有沒有安裝flashplay
			if(!flashChecker()){
				if(confirm("尚未安装flashplay，是否前往的Adobe进行安装")){
					window.open('http://get.adobe.com/cn/flashplayer/');
				}
				return false;
			}
         }
	});
	/*
	//彈出通告
	$.fancybox({
		"width"				: 700,
		"height"			: 1290,
		"autoScale"			: false,
		"scrolling"  		: "no",
		"transitionIn"		: "none",
		"transitionOut"		: "none",
		"type"				: "iframe",
		"href"				:'notice.php',
		"closeClick"  : false, 
		"hideOnOverlayClick" :false
	});
	*/

	//電子報按下enter
	$("#edm_name,#edm_email").bind("keypress", function(e) {
        if (e.keyCode == 13){
			subscribe();
		}
    }); 
	
	//輪播效果
	slideshow();
	
	/*
	//職缺
	if($(window).width()>1240){
		$(".window").show();
	}
		
	$("#window_close").click(function(){
		$(".window_close").hide();
		$(".window").hide();
	});
	*/
	$(".window").hide();
})

//判斷有沒有安裝flashplay
function flashChecker() {
    if (navigator.mimeTypes.length > 0) {
        return navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin != null;
    } else if (window.ActiveXObject) {
        try {
            new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
            return true;
        } catch (oError) {
            return false;
        }
    } else {
        return false;
    }
}


//電子報按下enter
function subscribe(){
	var $edm_name = $("#edm_name").val();
	var $edm_email = $("#edm_email").val();
	$.post("subscribe_action.php?oper=subscribe",{edm_name:$edm_name,edm_email:$edm_email},function(msg){
		if(msg=="0"){
			alert("资料有缺，请填写完整！");
		}else if(msg=="email"){
			alert("您已被添加到三泰科技订阅列表，谢谢!");
		}else if(msg=="subscribe"){
			alert("对不起，这个电子邮件已从订阅列表被删除");
		}else if(msg=="chk_email"){
			alert("电子邮件格式错误!");
		}else if(msg=="1"){
			alert("请检查你的电子邮件，以确认您的订阅！谢谢!");
			location.href='index.php';
		}else{
			alert(msg);
			location.href='index.php';
		}
	});
}

//輪播效果
function slideshow(){
	var $block = $('#slideshow'), 
		$slideshow_link = $block.find('.slideshow_link'),
		showIndex = 0,			// 預設要先顯示那一張
		fadeOutSpeed = 500,	// 淡出的速度
		fadeInSpeed = 500,		// 淡入的速度
		defaultZ = 10,			// 預設的 z-index
		isHover = false,
		timer, speed = 3500;	// 計時器及輪播切換的速度
 
	// 先把其它圖片的變成透明
	$slideshow_link.css({
		opacity: 0,
		zIndex: defaultZ - 1
	}).eq(showIndex).css({
		opacity: 1,
		zIndex: defaultZ
	});
 
	// 組出右下的按鈕
	var str = '';
	for(var i=0;i<$slideshow_link.length;i++){
		str += '<a href="#">' + (i + 1) + '</a>';
	}
	var $controlA = $('#slideshow').append($('<div class="control">' + str + '</div>').css('zIndex', defaultZ + 1)).find('.control a');

	//初始顏色
	$('.control a').eq(0).css("background","#0081C6");
	$('.control a').eq(0).css("color","#0081C6");
	$('.control a').eq(0).css("border","#FFFFFF 1px solid");

	// 當按鈕被點選時
	// 若要變成滑鼠滑入來切換時, 可以把 click 換成 mouseover
	$controlA.click(function(){
		// 取得目前點擊的號碼
		showIndex = $(this).text() * 1 - 1;
			$(".control a").css("background","#00BBFF");
			$(".control a").css("color","#00BBFF");
			$(".control a").css("border","#00BBFF 0px solid");
			$(this).css("background","#0081C6");
			$(this).css("color","#0081C6");
			$(this).css("border","#FFFFFF 1px solid");
			
		// 顯示相對應的區域並把其它區域變成透明
		$slideshow_link.eq(showIndex).stop().fadeTo(fadeInSpeed, 1, function(){
			if(!isHover){
				// 啟動計時器
				timer = setTimeout(autoClick, speed + fadeInSpeed);
			}
		}).css('zIndex', defaultZ).siblings('a').stop().fadeTo(fadeOutSpeed, 0).css('zIndex', defaultZ - 1);
		// 讓 a 加上 .on
		$(this).addClass('on').siblings().removeClass('on');
		return false;
	}).mouseover(function(){
		isHover = true;
		// 停止計時器
		clearTimeout(timer);
		showIndex = $(this).text() * 1 - 1;
		$controlA.eq(showIndex).click();
	}).mouseout(function(){
		isHover = false;
		// 啟動計時器
		timer = setTimeout(autoClick, speed);
	}).eq(showIndex).addClass('on');
 
	$slideshow_link.hover(function(){
		isHover = true;
		// 停止計時器
		clearTimeout(timer);
	}, function(){
		isHover = false;
		// 啟動計時器
		timer = setTimeout(autoClick, speed);
	})
 
	// 自動點擊下一個
	function autoClick(){
		if(isHover) return;
		showIndex = (showIndex + 1) % $controlA.length;
		$controlA.eq(showIndex).click();
	}
 
	// 啟動計時器
	timer = setTimeout(autoClick, speed);
}
</script>
</head>

<!--html-->
<body>
<!--header bar-->
<script type="text/javascript" src="default/js/hoverintent.js"></script>

<link type="text/css" rel="stylesheet" href="default/ui/fancybox/fancybox/jquery.fancybox-1.3.4.css" />
<script type="text/javascript" src="default/ui/fancybox/fancybox/jquery.fancybox-1.3.4.js"></script>

<!--css-->
<style type="text/css">
/*標頭*/
.header_logo{
	width:150px;
	height:90px;
	float:left;
}
.header_search{
	width:830px;
	height:90px;
	text-align:center;
	float:left;
	color: 	   #666666;
    font-size: 16px;
}

/*浮動訊息誆*/
.language{
	position: relative;
	cursor:pointer;
}
.language_block{
	position: absolute;
	display: none;
	text-align:left;
	width:72px;
}
.language_item{
	padding:4px 8px 4px 8px;
}
</style>

<!--javascript-->
<script type="text/javascript">
$(document).ready(function(){
	//浮動訊息誆init
	$(".language_item").css("background","#B6B6B6");
	$(".language_item").animate({opacity: 0.85},1);
		
	//浮動訊息誆
	$(".language").hoverIntent(function() {
		$(this).find(".language_block").css("display","block");
		$(".language").css("zIndex","1000");
	}, function() {
		$(this).find(".language_block").css("display","none");
		$(".language").css("zIndex","1000");
    });
	
	$(".language_item"). mouseover(function() {
		$(this).animate({opacity: 1},1);
	});
	$(".language_item"). mouseout(function() {
		$(this).animate({opacity: 0.85},1);
	});
	
	//浮動訊息誆/产品系列
	$(".header_product,.header_product_block").hoverIntent(function() {
		$(".header_product_block").css("display","block");
		$(".header_product").css("zIndex","1000");
	}, function() {
		$(".header_product_block").css("display","none");
		$(".header_product").css("zIndex","1000");
    });

	$(".header_product_item"). mouseover(function() {
		$(this).find("a").css("color","#000000");
	});
	$(".header_product_item"). mouseout(function() {
		$(this).find("a").css("color","#FFFFFF");
	});
	
	//浮動訊息誆/应用案例
	$(".header_app,.header_app_block").hoverIntent(function() {
		$(".header_app_block").css("display","block");
		$(".header_app").css("zIndex","1000");
	}, function() {
		$(".header_app_block").css("display","none");
		$(".header_app").css("zIndex","1000");
    });
	
	$(".header_app_item"). mouseover(function() {
		$(this).find("a").css("color","#000000");
	});
	$(".header_app_item"). mouseout(function() {
		$(this).find("a").css("color","#FFFFFF");
	});
	
	//浮動訊息誆/渠道管理
	$(".header_agents,.header_agents_block").hoverIntent(function() {
		$(".header_agents_block").css("display","block");
		$(".header_agents").css("zIndex","1000");
	}, function() {
		$(".header_agents_block").css("display","none");
		$(".header_agents").css("zIndex","1000");
    });
	
	$(".header_agents_item"). mouseover(function() {
		$(this).find("a").css("color","#000000");
	});
	$(".header_agents_item"). mouseout(function() {
		$(this).find("a").css("color","#FFFFFF");
	});
	
	//浮動訊息誆/渠道管理
	$(".header_service,.header_service_block").hoverIntent(function() {
		$(".header_service_block").css("display","block");
		$(".header_service").css("zIndex","1000");
	}, function() {
		$(".header_service_block").css("display","none");
		$(".header_service").css("zIndex","1000");
    });
	
	$(".header_service_item"). mouseover(function() {
		$(this).find("a").css("color","#000000");
	});
	$(".header_service_item"). mouseout(function() {
		$(this).find("a").css("color","#FFFFFF");
	});
	
	//浮動訊息誆/关于三泰
	$(".header_about,.header_about_block").hoverIntent(function() {
		$(".header_about_block").css("display","block");
		$(".header_about").css("zIndex","1000");
	}, function() {
		$(".header_about_block").css("display","none");
		$(".header_about").css("zIndex","1000");
    });
	
	$(".header_about_item"). mouseover(function() {
		$(this).find("a").css("color","#000000");
	});
	$(".header_about_item"). mouseout(function() {
		$(this).find("a").css("color","#FFFFFF");
	});
	
	//搜尋框預設內容
	$("#search_keyword").focus(function() {
		if($("#search_keyword").val()=="输入关键字或产品型号"){
			$("#search_keyword").val("");
		}
	});
	$("#search_keyword").blur(function() {
		if($("#search_keyword").val()==""){
			$("#search_keyword").val("输入关键字或产品型号");
		}
	});
	
	$("#search_keyword").keypress(function(e) {
		/**
		*按鍵分keypress、keydown、keyup三種觸發事件，keyCode、charCode、which三種屬性
		*IE只支援keyCode屬性，Firefox和Chrome三屬性都支援，但輸入字元時keyCode=0，所以取另外兩種屬性判斷
		*charCode區分大小寫字元，which只有在keypress區分大小寫字元
		*/
		if ($.browser.msie == true) {  
			key = e.keyCode;  
		}else if ($.browser.mozilla==true) {
			key = e.charCode || e.which;  
		}else if ($.browser.webkit==true) { 
			key = e.charCode || e.which;
		}else{
			key = e.keyCode || e.charCode || e.which;  
		}
		
        if (key == 13){  //enter
			search();
		}
    });	
	
	//wechat彈出框
	$(".wechat").fancybox({
		"width"				: 600,
		"height"			: 520,
		"autoScale"			: false,
		"scrolling"  		: "no",
		"transitionIn"		: "none",
		"transitionOut"		: "none",
		"type"				: "iframe"
	});
})

function search(){
	$search = $("#search_keyword").val();
	if(($search=="") || ($search=="输入关键字或产品型号")){  	//沒輸入不執行
		$("#search_keyword").val("输入关键字或产品型号");
	}else{
		location.href='search.php?k='+$search;
	}
}

function logout(){
	$.post("member_login_action.php?oper=logout",function(msg){
		msg = msg.replace(/\r|\n/ig,"");
		if(msg==''){
		  alert("帐号已经登出");
		  location.href='index.php';
		}else{
  		  alert(msg);
		  location.href='index.php';
		}
	});
}
</script>

<!--head bar-->
<div class="header" style="padding-top:10px;">
	<div class="header_logo">
		<div style="float:left;">
			<div><img style="float:left;" class="img-responsive pointer" src="images/header_logo_blue.png" onclick="location='index.php'" title="返回首页"/></div>
			<div style="float:left;color:#007BC7;padding-left:15px;">智&nbsp;&nbsp;物&nbsp;&nbsp;联&nbsp;&nbsp;专&nbsp;&nbsp;家</div>
		</div>
	</div>
	
	<div class="header_search">
		<div style="width:830px;height:24px;text-align:right;padding-left:10px;font-size:14px;">
									<div class="language" style="float:right;padding-right:40px;padding-top:4px;">
						<div>Language</div>
						<div class="language_block">
							<div class="language_item">
								<a style="color:#FFFFFF;" href="http://www.sunix.com/">English</a>
							</div>
							<div class="language_item">
								<a style="color:#FFFFFF;" href="http://asia.sunix.com.tw/">繁體中文</a>
							</div>
							<div class="language_item">
								<a style="color:#FFFFFF;" href="index.php">簡体中文</a>
							</div>
						</div>
					</div>
					<div style="float:right;padding-right:20px;padding-top:4px;"><a href="member_login.php">登入</a> / <a href="member_login.php">注册</a>  / <a href="inquiry.php">咨询</a></div>
							</div>

		<div style="width:830px;height:45px;float:left;">
			<div style="float:left;padding-top:8px;">
				<div class="header_about" style="float:left;padding-left:40px;position: relative;">
											<div><a href="about_sunix.php?item=cp">关于三泰</a></div>
										<div class="header_about_block" style="font-size:15px;width:161px;height:190px;display: none;position: absolute;background-image:url(images/icon/bg_head_8.png);text-align:left;">
						<div class="header_about_item" style="height:25px;padding-left:10px;padding-top:14px;">
							<a style="color:#FFFFFF;" href="about_sunix.php?item=bp">经营理念</a>
						</div>
						<div class="header_about_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="about_sunix.php?item=cp">公司简介</a>
						</div>
						<div class="header_about_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="about_sunix.php?item=bs">品牌故事</a>
						</div>
						<div class="header_about_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="about_sunix.php?item=rv">三大核心价值</a>
						</div>
						<div class="header_about_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="about_sunix.php?item=hi">发展历史</a>
						</div>
						<div class="header_about_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="about_sunix.php?item=gp">环保政策</a>
						</div>
						<div class="header_about_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="about_sunix.php?item=cu">联络我们</a>
						</div>
					</div>
				</div>
				
				<div  class="header_product" style="float:left;padding-left:25px;position: relative;">
									<div><a href="product.php">产品系列</a></div>
									<div class="header_product_block" style="font-size:15px;width:209px;height:214px;display: none;position: absolute;background-image:url(images/icon/bg_head_7l.png);text-align:left;">
						<div style="width:161px;height:14px;"><!--塞個高度--></div>
												<div class="header_product_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="product.php?cid=1">串口联网扩充盒</a>
						</div>
												<div class="header_product_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="product.php?cid=2">PC扩充卡</a>
						</div>
												<div class="header_product_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="product.php?cid=11">AI加速卡</a>
						</div>
												<div class="header_product_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="product.php?cid=3">转换器</a>
						</div>
												<div class="header_product_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="product.php?cid=8">影音分配器</a>
						</div>
												<div class="header_product_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="product.php?cid=4">工业串口服务器</a>
						</div>
												<div class="header_product_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="product.php?cid=9">I/O联网</a>
						</div>
												<div class="header_product_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="product.php?cid=7">移动裝置扩充盒</a>
						</div>
												<div class="header_product_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="product.php?cid=12">网络卡/PoE</a>
						</div>
												<div class="header_product_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="product.php?cid=13">CAN FD</a>
						</div>
											</div>
				</div>
				
				<div class="header_app" style="float:left;padding-left:25px;position: relative;">
											<div><a href="application.php">应用案例</a></div>
										<div class="header_app_block" style="font-size:15px;width:161px;height:98px;display: none;position: absolute;background-image:url(images/icon/bg_head_3.png);text-align:left;">
						<div class="header_app_item" style="height:25px;padding-left:10px;padding-top:14px;">
							<a style="color:#FFFFFF;" href="application.php?item=cc">商业应用案例</a>
						</div>
						<div class="header_app_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="application.php?item=inc">工业应用案例</a>
						</div>
						<div class="header_app_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="ezfactory.php">IoT应用案例</a>
						</div>
					</div>			
				</div>
				
				<div class="header_agents" style="float:left;padding-left:25px;position: relative;">
											<div><a href="channel.php?item=rma">渠道管理</a></div>
										<div class="header_agents_block" style="font-size:15px;width:161px;height:50px;display: none;position: absolute;background-image:url(images/icon/bg_head_1.png);text-align:left;">
						<div class="header_agents_item" style="height:25px;padding-left:10px;padding-top:14px;">
							<a style="color:#FFFFFF;" href="channel.php?item=rma">保修与维修制度</a>
						</div>
<!-- 						<div class="header_agents_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="channel.php?item=test">借测流程与制度</a>
						</div> -->
<!-- 						<div class="header_agents_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="channel.php?item=protect">保修期制度</a>
						</div> -->
<!-- 						<div class="header_agents_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="channel.php?item=channel">渠道商查询/器</a>
						</div> -->
					</div>
				</div>
				
				<div class="header_service" style="float:left;padding-left:25px;position: relative;">
											<div><a href="driver.php">服务支持</a></div>
										<div class="header_service_block" style="font-size:15px;width:161px;height:193px;display: none;position: absolute;background-image:url(images/icon/bg_head_7.png);text-align:left;">
						<div class="header_service_item" style="height:25px;padding-left:10px;padding-top:14px;">
							<a style="color:#FFFFFF;" href="driver.php">驱动下载</a>
						</div>
						<div class="header_service_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="catalogue.php">目录下载</a>
						</div>
						<div class="header_service_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="video.php">视频分享</a>
						</div>
						<div class="header_service_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="edm.php">电子报</a>
						</div>
						<div class="header_service_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="inquiry.php">咨询我们</a>
						</div>
						<div class="header_service_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="faq.php">问与答</a>
						</div>
						<div class="header_service_item" style="height:25px;padding-left:10px;">
							<a style="color:#FFFFFF;" href="copyright.php">商标资讯</a>
						</div>
					</div>
				</div>
				
			</div>
			<div style="float:right;padding-top:5px;">
				<div style="float:right;"><input type="image" src="images/header_search.jpg" onclick="search()"></div>
				<div style="float:right;"><input type="text" style="width:200px;color:#B6B6B6;" id="search_keyword" name="search_keyword" maxlength="30" value="输入关键字或产品型号"></div>
			</div>	
		</div>

	</div>
</div>
<!--main-->
<div class="main">
	<!--main block-->		
	<div class="main_slideshow">	
		<div id="slideshow">
						<a href="http://www.sunix.com.cn/news_show.php?id=43" class="slideshow_link" target="_blank"><img style="width:980px;height:350px" src="images/slideshow/20231226133215_CH-Web-visual-IC-2.jpg"/></a> 
						<a href="http://www.sunix.com.cn/product.php?cid=11" class="slideshow_link" target="_blank"><img style="width:980px;height:350px" src="images/slideshow/20240305175859_CH-Web-visual-AI.jpg"/></a> 
						<a href="http://www.sunix.com.cn/product.php?cid=2" class="slideshow_link" target="_blank"><img style="width:980px;height:350px" src="images/slideshow/20240710191249_20161125162403_Web-Banner-Card-2.jpg"/></a> 
						<a href="http://www.sunix.com.cn/ezfactory.php" class="slideshow_link" target="_blank"><img style="width:980px;height:350px" src="images/slideshow/20190107102438_CH-Web-fac.jpg"/></a> 
						<a href="http://www.sunix.com.cn/product.php?cid=4" class="slideshow_link" target="_blank"><img style="width:980px;height:350px" src="images/slideshow/20170705183107_CH-Web-IDS.jpg"/></a> 
						<a href="http://www.sunix.com.cn/product.php?cid=1" class="slideshow_link" target="_blank"><img style="width:980px;height:350px" src="images/slideshow/20170705183120_CH-Web-DP.jpg"/></a> 
						<a href="http://www.sunix.com.cn/product_detail.php?cid=null&kid=null&gid=1&pid=3" class="slideshow_link" target="_blank"><img style="width:980px;height:350px" src="images/slideshow/20140107121419_slideshow_3.jpg"/></a> 
					</div>
	</div>
	
	<div style="width:980px;height:16px;"><!--塞個高度--></div>
			
	<div class="main_block">
		<table style="width:980px;" >
		<tr valign="top">
			<td style="width:708px;padding-bottom:10px;border-right:1px dotted #BEBEBE;border-bottom:1px dotted #BEBEBE;">
				<div style="font-size:20px;padding-left:6px;">产品系列</div>
															<div style="width:100%;height:10px;float:left;"></div>
						<div style="width:230px;padding-left:6px;float:left;">
											<div style="padding-top:4px;padding-bottom:4px;color:#00BBFF;font-size:16px;"><a style="color:#00BBFF;" href="product.php?cid=1">串口联网扩充盒</a></div>
																				<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=1">工业进阶版</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=1">商业进阶版</a></div>
																		</div>
															<div style="width:230px;float:left;">
											<div style="padding-top:4px;padding-bottom:4px;color:#00BBFF;font-size:16px;"><a style="color:#00BBFF;" href="product.php?cid=2">PC扩充卡</a></div>
																				<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=2">PCI</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=2">PCI-Express</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=2">PCI/104</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=2">M.2</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=2">MINI-PCIE</a></div>
																		</div>
															<div style="width:230px;float:left;">
											<div style="padding-top:4px;padding-bottom:4px;color:#00BBFF;font-size:16px;"><a style="color:#00BBFF;" href="product.php?cid=11">AI加速卡</a></div>
																				<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=11">PCI-Express</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=11">M.2</a></div>
																		</div>
															<div style="width:100%;height:10px;float:left;"></div>
						<div style="width:230px;padding-left:6px;float:left;">
											<div style="padding-top:4px;padding-bottom:4px;color:#00BBFF;font-size:16px;"><a style="color:#00BBFF;" href="product.php?cid=3">转换器</a></div>
																				<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=3&kid=7">USB转串口</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=3&kid=8">串口转换</a></div>
																		</div>
															<div style="width:230px;float:left;">
											<div style="padding-top:4px;padding-bottom:4px;color:#00BBFF;font-size:16px;"><a style="color:#00BBFF;" href="product.php?cid=8">影音分配器</a></div>
																				<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=8&kid=15">DisplayPort</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=8&kid=16">USB Type-C</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=8&kid=17">HDMI</a></div>
																		</div>
															<div style="width:230px;float:left;">
											<div style="padding-top:4px;padding-bottom:4px;color:#00BBFF;font-size:16px;"><a style="color:#00BBFF;" href="product.php?cid=4">工业串口服务器</a></div>
																				<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=4">RS-232/422/485</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=4">RS-232</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=4">RS-422/485</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=4">商业级 RS-232</a></div>
																		</div>
															<div style="width:100%;height:10px;float:left;"></div>
						<div style="width:230px;padding-left:6px;float:left;">
											<div style="padding-top:4px;padding-bottom:4px;color:#00BBFF;font-size:16px;"><a style="color:#00BBFF;" href="product.php?cid=9">I/O联网</a></div>
																				<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=9&kid=19">Digital数字讯号 </a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=9&kid=22">工业级I/O设备连网扩充盒</a></div>
																		</div>
															<div style="width:230px;float:left;">
											<div style="padding-top:4px;padding-bottom:4px;color:#00BBFF;font-size:16px;"><a style="color:#00BBFF;" href="product.php?cid=7">移动裝置扩充盒</a></div>
																				<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=7">串口/USB移动扩充盒</a></div>
																		</div>
															<div style="width:230px;float:left;">
											<div style="padding-top:4px;padding-bottom:4px;color:#00BBFF;font-size:16px;"><a style="color:#00BBFF;" href="product.php?cid=12">网络卡/PoE</a></div>
																				<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=12&kid=26">PCI-Express</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=12&kid=27">M.2</a></div>
																		</div>
															<div style="width:100%;height:10px;float:left;"></div>
						<div style="width:230px;padding-left:6px;float:left;">
											<div style="padding-top:4px;padding-bottom:4px;color:#00BBFF;font-size:16px;"><a style="color:#00BBFF;" href="product.php?cid=13">CAN FD</a></div>
																				<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=13&kid=28">PCI-Express</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=13&kid=29">Mini-PCIE</a></div>
																											<div style="color:#666666;font-size:14px;"><img src="images/icon/dot.png"/><a href="product.php?cid=13&kid=30">M.2</a></div>
																		</div>
							</td>
			<td style="width:270px;padding-bottom:10px;border-bottom:1px dotted #BEBEBE;">
				<div style="font-size:20px;padding-left:30px;padding-bottom:3px;"><span>应用案例</span><span style="padding-bottom:10px;padding-left:80px;font-size:14px;color:#00BBFF"><a style="color:#00BBFF;" href="application.php" target="_blank">更多 >></a></span></div>	
								<div style="padding-left:6px;color:#666666;padding-top:3px;font-size:14px;padding-left:30px;"><img src="images/icon/dot.png"/>
					<a href="application_show.php?id=51">三泰DPH2001在展览馆投影仪上的应用</a>
				</div>
								<div style="padding-left:6px;color:#666666;padding-top:3px;font-size:14px;padding-left:30px;"><img src="images/icon/dot.png"/>
					<a href="application_show.php?id=50">三泰ECS物联网方案包在跨国公司数据上的应用</a>
				</div>
								<div style="padding-left:6px;color:#666666;padding-top:3px;font-size:14px;padding-left:30px;"><img src="images/icon/dot.png"/>
					<a href="application_show.php?id=49">DPU3000在铁路货运售票窗口的应用</a>
				</div>
								<div style="padding-left:6px;color:#666666;padding-top:3px;font-size:14px;padding-left:30px;"><img src="images/icon/dot.png"/>
					<a href="application_show.php?id=48">三泰串口卡在安防系统中的应用</a>
				</div>
								<div style="padding-left:6px;color:#666666;padding-top:3px;font-size:14px;padding-left:30px;"><img src="images/icon/dot.png"/>
					<a href="application_show.php?id=47">三泰黄金串口卡在便利店POS中的应用</a>
				</div>
								<div style="padding-left:6px;color:#666666;padding-top:3px;font-size:14px;padding-left:30px;"><img src="images/icon/dot.png"/>
					<a href="application_show.php?id=46">DPU3000转换器在民航空管系统中的应用</a>
				</div>
								<div style="padding-left:6px;color:#666666;padding-top:3px;font-size:14px;padding-left:30px;"><img src="images/icon/dot.png"/>
					<a href="application_show.php?id=45">DPA301D系列在高速摄像控制系统上的应用</a>
				</div>
								<div style="padding-left:6px;color:#666666;padding-top:3px;font-size:14px;padding-left:30px;"><img src="images/icon/dot.png"/>
					<a href="application_show.php?id=44">三泰黄金卡在汽车锂电池组装线上的应用</a>
				</div>
								<div style="padding-left:6px;color:#666666;padding-top:3px;font-size:14px;padding-left:30px;"><img src="images/icon/dot.png"/>
					<a href="application_show.php?id=43">三泰串口卡在税务系统上的应用</a>
				</div>
								<div style="padding-left:6px;color:#666666;padding-top:3px;font-size:14px;padding-left:30px;"><img src="images/icon/dot.png"/>
					<a href="application_show.php?id=42">DPA301D系列在能耗管理平台上的应用</a>
				</div>
							
			</td>
		</tr>
		<tr>	
			<td colspan="2">
				<img style="width:980px;height:350px" src="images/sunix-cn-openKylin.jpg"/>
			</td>
		</tr>
		<tr valign="top">
			<td style="width:708px;border-right:1px dotted #BEBEBE;border-top:1px dotted #BEBEBE;">
			
								<div style="width:340px;height:240px;float:left;font-size:16px;padding-left:6px;float:left;">
					<div style="font-size:20px;height:24px;padding-top:10px;padding-bottom:10px;padding-left:6px;">视频</div>
					<div style="width:340px;height:28px;">
						<div style="width:240px;float:left;color:#00BBFF;">三泰科技 AI 加速卡 升级SI 系统商AOI 视觉瑕疵检测应用</div>
						<div style="width:80px;float:left;padding-left:20px;"><a style="color:#00BBFF;font-size:14px;" href="video.php" target="_blank">更多 >></a></div>
					</div>
					<div style="width:322px;height:195px;">
						<a target="_blank" href="https://www.ixigua.com/7397667110761005583?utm_source=xiguastudio"><img style="width:322px;height:195px" class="pointer" src="http://www.sunix.com.cn/images/video/vid-pic-AI-AOI.jpg"></a>
					</div>
				</div>
								
				<div style="width:340px;height:240px;float:left;font-size:16px;padding-left:6px;float:left;">
					<div style="font-size:20px;height:24px;padding-top:10px;padding-bottom:10px;padding-left:6px;">电子报</div>
				<div style="width:322px;float:left;">
						<div style="padding-left:5px;color:#B6B6B6;font-size:14px;padding-top:10px;padding-bottom:10px;">点击下列连结前往浏览！</div>
											<div style="padding-left:5px;padding-top:5px;text-align:left;" id="edm_0" >
												<a href="news_show.php?id=60">2025-10-03&nbsp;&nbsp;&nbsp;&nbsp;【SUNIX】佳节快乐．幸福无限，祝您2025中秋愉快！</a>
											</div>
											<div style="padding-left:5px;padding-top:5px;text-align:left;" id="edm_1" >
												<a href="news_show.php?id=59">2025-01-17&nbsp;&nbsp;&nbsp;&nbsp;【SUNIX】三泰祝福您2025蛇年大吉！</a>
											</div>
											<div style="padding-left:5px;padding-top:5px;text-align:left;" id="edm_2" >
												<a href="news_show.php?id=58">2024-12-18&nbsp;&nbsp;&nbsp;&nbsp;【SUNIX】祝您圣诞快乐，新的一年共创辉煌！</a>
											</div>
											<div style="text-align:right;padding-right:10px;">
						<a style="color:#00BBFF;font-size:14px;" href="edm.php">更多 >></a>
					</div>
				</div>
				</div>


			</td>
			<td style="width:270px;border-top:1px dotted #BEBEBE;">
				<div style="width:238px;padding-left:30px;">	
					<div style="font-size:20px;padding-top:10px;padding-bottom:5px;">电子报订阅</div>
					<div style="width:208px;height:140px;background-color:#0081C6;padding-top:6px;">
						<div style="padding-top:10px;text-align:center;color:#FFFFFF;font-size:16px;">免费观注最新信息!</div>
						<div style="padding-top:6px;text-align:center;"><input type="text" style="width:180px;color:#B6B6B6;" id="edm_name" name="edm_name" maxlength="30" value="您的姓名"></div>
						<div style="padding-top:6px;text-align:center;"><input type="text" style="width:180px;color:#B6B6B6;" id="edm_email" name="edm_email" style="color:#B6B6B6;"  maxlength="200" value="电邮"></div>
						<div style="padding-top:6px;text-align:center;"><input id="subscribe" type="image" src="images/icon/subscribe.png"></div>
					</div>
				</div>
			</td>
		</tr>
		</table>
	
		<!--footer bar-->
		<!--css-->
<style type="text/css">
/*超連結設定*/
.footer  a{
	color: #B6B6B6;
	text-decoration:none;		 /*無底線*/
}

/*經過時連結顏色*/
.footer a:hover {	
    color: #00BBFF;
    text-decoration: none;		/*無底線*/
}
</style>

<!--footer bar-->
<div class="footer" style="font-size: 16px;" align="center">
    <div style="width: 960px; padding-top: 10px; text-align: center; font-size: 16px;">
        <div style="width: 80px; padding-top: 36px;display: inline-block;"><a href="about_sunix.php?item=cu">联络我们</a></div>
        
        <div style="width: 80px; padding-top: 36px;display: inline-block;"><a href="http://www.weibo.com/sunixcn" target="_blank">官方微博</a></div>
        <div style="width: 80px; padding-top: 36px;display: inline-block;"><a class="wechat" href="wechat_show.php">官方微信</a></div>
        <div style="width: 80px; padding-top: 36px;display: inline-block;"><a href="edm.php">电子报</a></div>
        <div style="width: 80px; padding-top: 36px;display: inline-block;"><a href="partner.php">合作伙伴</a></div>
        <div style="width: 80px; padding-top: 36px;display: inline-block;"><a href="recruit.php">招募精英</a></div>
        <div style="width: 80px; padding-top: 36px;display: inline-block;"><a href="sitemap.php">网站地图</a></div>
    </div>
    
    <div align="center" style="width: 960px; padding-top: 4px; padding-bottom: 15px; font-size: 16px; color: #B6B6B6;">
        <div style="padding-top: 4px; font-size: 14px; color: #B6B6B6;">&copy; 1986-2018 SUNIX group. All Rights Reserved.</div>
    </div>
</div>
	</div>
</div>
<div class="window">
    <div class="window_close">
		<div style="float:left;"><img style="width:260px;height:20px" src="images/icon/recruit_bar.png"></div>
		<div id="window_close"><img style="width:20px;height:20px" class="pointer" src="images/icon/recruit_x.png"></div>
	</div>
	<div class="window_content">
		<a href="recruit.php" target="_blank"><img style="width:280px;height:184px" class="pointer" src="images/icon/recruit.gif"></a>
	</div>
</div>
<!--google GTM-->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MWFBV9X" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) --></body></html>