<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd"><!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 content="IE=11.0000" 
http-equiv="X-UA-Compatible"><META http-equiv="Content-Type" content="text/html; charset=utf-8"><TITLE>深圳市艺桥贸易有限公司</TITLE><META name="keywords" content=""><META name="description" content=""><LINK href="/Uimg/web/images/css.css" rel="stylesheet" 
type="text/css"><META name="GENERATOR" content="MSHTML 11.00.9600.18052"></HEAD><SCRIPT src="/Uimg/web/images/AC_RunActiveContent.js" type="text/javascript"></SCRIPT><LINK href="/Uimg/web/images/css.css" rel="stylesheet" type="text/css"><STYLE type="text/css">* {margin:0; padding:0;}
body {font-size:12px; color:#222; font-family:Verdana,Arial,Helvetica,sans-serif; background:#fff;}
.clearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
.clearfix {zoom:1;}
ul,li {list-style:none;}
img {border:0;}

.wrapper {width:1000px; margin:0 auto;}

h1 {height:50px; line-height:50px; font-size:22px; font-weight:normal; font-family:"Microsoft YaHei",SimHei;}

.shuoming {margin-top:20px; border:1px solid #ccc; padding-bottom:10px;}
.shuoming dt {height:30px; line-height:30px; font-weight:bold; text-indent:10px;}
.shuoming dd {line-height:20px; padding:5px 20px;}

/* qqshop focus */
#focus {width:1000px; height:352px; overflow:hidden; position:relative;}
#focus ul {height:352px; position:absolute;}
#focus ul li {float:left; width:1000px; height:352px; overflow:hidden; position:relative; background:#ffffff;}
#focus ul li div {position:absolute; overflow:hidden;}
#focus .btnBg {position:absolute; width:1000px; height:10px; left:0; bottom:0; }
#focus .btn {position:absolute; width:1000px; height:10px; padding:5px 10px; right:0; bottom:0; text-align:right;}
#focus .btn span {display:inline-block; _display:inline; _zoom:1; width:25px; height:10px; _font-size:0; margin-left:5px; cursor:pointer; background:#fff;}
#focus .btn span.on {background:#fff;}
</STYLE><SCRIPT src="/Uimg/web/images/jquery.min9HW73BHE.js" type="text/javascript"></SCRIPT><SCRIPT type="text/javascript">$(function() {
var sWidth = $("#focus").width(); //获取焦点图的宽度（显示面积）
var len = $("#focus ul li").length; //获取焦点图个数
var index = 0;
var picTimer;

//以下代码添加数字按钮和按钮后的半透明条，还有上一页、下一页两个按钮
var btn = "<div class='btnBg'></div><div class='btn'>";
for(var i=0; i < len; i++) {
btn += "<span></span>";
}
btn += "</div><div class='preNext pre'></div><div class='preNext next'></div>";
$("#focus").append(btn);
$("#focus .btnBg").css("opacity",0.5);

//为小按钮添加鼠标滑入事件，以显示相应的内容
$("#focus .btn span").css("opacity",0.4).mouseenter(function() {
index = $("#focus .btn span").index(this);
showPics(index);
}).eq(0).trigger("mouseenter");

//上一页、下一页按钮透明度处理
$("#focus .preNext").css("opacity",0.2).hover(function() {
$(this).stop(true,false).animate({"opacity":"0.5"},300);
},function() {
$(this).stop(true,false).animate({"opacity":"0.2"},300);
});

//上一页按钮
$("#focus .pre").click(function() {
index -= 1;
if(index == -1) {index = len - 1;}
showPics(index);
});

//下一页按钮
$("#focus .next").click(function() {
index += 1;
if(index == len) {index = 0;}
showPics(index);
});

//本例为左右滚动，即所有li元素都是在同一排向左浮动，所以这里需要计算出外围ul元素的宽度
$("#focus ul").css("width",sWidth * (len));

//鼠标滑上焦点图时停止自动播放，滑出时开始自动播放
$("#focus").hover(function() {
clearInterval(picTimer);
},function() {
picTimer = setInterval(function() {
showPics(index);
index++;
if(index == len) {index = 0;}
},10000); //此4000代表自动播放的间隔，单位：毫秒
}).trigger("mouseleave");

//显示图片函数，根据接收的index值显示相应的内容
function showPics(index) { //普通切换
var nowLeft = -index*sWidth; //根据index值计算ul元素的left值
$("#focus ul").stop(true,false).animate({"left":nowLeft},300); //通过animate()调整ul元素滚动到计算出的position
//$("#focus .btn span").removeClass("on").eq(index).addClass("on"); //为当前的按钮切换到选中的效果
$("#focus .btn span").stop(true,false).animate({"opacity":"0.4"},300).eq(index).stop(true,false).animate({"opacity":"1"},300); //为当前的按钮切换到选中的效果
}
});

</SCRIPT><BODY><style>nav {
	margin: 10px auto;
	text-align: center;
	
}
nav ul {
	border-radius: 10px;
	background: linear-gradient(to bottom, #efefef, #bbbbbb);
	padding: 0 20px;
	display: inline-table;
	position: relative;
	z-index:99999;
	box-shadow: 1px 1px 3px #666;
}
nav ul ul {
	display: none;
}
nav ul li {
	float: left;
	list-style: none;
	width:150px;
}
nav ul::after {
	content: "";
	display: block;
	clear: both;
}
nav ul li a {
	display: block;
	padding: 10px;
	color: #000;
	text-decoration: none;
	font-family: "微软雅黑";
}
nav ul li:hover > ul {
	display: block;
}
nav ul li:hover {
	background: linear-gradient(to bottom, #4f5964, #5f6975);
}
nav ul li:hover a {
	color: #FFF;
}
nav ul ul {
	background: #5f6975;
	border-radius: 0;
	position: absolute;
	top: 100%;
	padding: 0;
}
nav ul ul li {
	float: none;
	border-top: 1px solid #6b727c;
	border-bottom: 1px solid #575f6a;
}
nav ul ul li a {
	color: #FFF;
}
nav ul ul li a:hover {
	background: #4b545f;
}
nav ul ul ul {
	width: 100%;
	position: absolute;
	left: 100%;
	top: 50%;
}
</style><TABLE width="100%" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD height="26" background="/Uimg/web/images/title_bg.gif"><TABLE width="980" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD align="left">您好，欢迎光临深圳市艺桥贸易有限公司！</TD><TD align="right"><TABLE width="50%" align="right" border="0" cellspacing="0" 

            cellpadding="0"><TBODY><TR><TD align="center" valign="middle"><A onClick="window.external.AddFavorite(location.href,document.title)" 

                  href="/index.php#">加入收藏</A></TD><TD align="center" valign="middle">|</TD><TD align="center" valign="middle"><A onclick='this.style.behavior="url(#default#homepage)";this.setHomePage("深圳市艺桥贸易有限公司");' 

                  href="/index.php#">设为首页</A></TD><TD align="center" valign="middle">|</TD><TD align="center" valign="middle"><A href="/index.php/Web/danye/tid/84">联系我们</A></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><TABLE width="100%" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD height="102" background="/Uimg/web/images/top_bj.gif" valign="top"><TABLE width="1000" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD width="1000" height="109" background="/wwwimg/Upload/5c9e1c6f2730d.png" valign="top">&nbsp;</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><TABLE width="100%" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD height="38" background="/Uimg/web/images/menuGLUJWVV1.gif"><nav ><ul><li><a href="/index.php">网站首页</a></li><li><a href="/index.php/Web/danye/tid/114">关于我们</a></li><li><a href="/index.php/Web/tuwen/tid/81">产品展示</a><ul><li><a href="/index.php/Web/tuwen/tid/81/id/132">福斯润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/351">巴索切削液</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/94">壳牌润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/98">美孚润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/124">嘉实多润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/129">bp润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/130">道达尔润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/131">克鲁勃润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/206">好富顿润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/207">倍可润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/209">太阳润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/210">意大利阿吉普润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/213">国光牌润滑油</a></li><li><a href="/index.php/Web/tuwen/tid/81/id/170">加德士润滑油</a></li></ul></li><li><a href="/index.php/Web/leibiao/tid/78">新闻中心</a></li><li><a href="/index.php/Web/biaodan/tid/79">客户留言</a></li><li><a href="/index.php/Web/danye/tid/84">联系我们</a></li></ul></nav></TABLE></TD></TR></TBODY></TABLE><TABLE width="1000" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD height="1"></TD></TR></TBODY></TABLE><TABLE width="1000" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD width="8"><IMG width="8" height="34" src="/Uimg/web/images/gg_left.gif"></TD><TD background="/Uimg/web/images/gg_bg.gif"><TABLE width="100%" align="left" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD width="11%">网站公告：<STRONG></STRONG></TD><TD width="89%"><MARQUEE width="860" title="深圳市艺桥贸易有限公司" direction="left" loop="-1" 

            align="right"><p>
	经营项目：美孚润滑油、壳牌润滑油、意大利阿吉普润滑油、克鲁勃润滑油、埃尔夫润滑油、福斯润滑油、道达尔润滑油、嘉实多润滑油、bp润滑油、太阳润滑油、好富顿润滑油、倍可润滑油、国光润滑油、出光润滑油</p>
</MARQUEE></TD></TR></TBODY></TABLE></TD><TD width="8" align="right"><IMG width="8" height="34" src="/Uimg/web/images/gg_right.gif"></TD></TR></TBODY></TABLE><TABLE width="1000" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD style="padding-top: 5px;"><DIV class="wrapper"><DIV id="focus"><UL><LI><A href="#2" target="_blank"><IMG 

        alt="2" src="/wwwimg/Upload/5ca565b47b0ad.jpg"></A></LI></UL></DIV></DIV></TD></TR></TBODY></TABLE><TABLE width="1000" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD><IMG width="1000" height="28" 

  src="/Uimg/web/images/banner_bg.gif"></TD></TR></TBODY></TABLE><TABLE width="1000" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR valign="top"><TD align="left"><LINK href="/Uimg/web/images/css.css" rel="stylesheet" type="text/css"><TABLE width="212" align="left" border="0" cellspacing="0" 

cellpadding="0"><TBODY><TR><TD valign="top" style="border: 1px solid rgb(231, 231, 231); border-image: none;"><TABLE width="100%" align="center" bgcolor="#f1f1f1" border="0" 

            cellspacing="0" cellpadding="0"><TBODY><TR><TD height="37" background="/Uimg/web/images/left.gif"><SPAN class="STYLE2" 

                  style="padding-left: 15px;">经营项目</SPAN></TD></TR><TR><TD style="padding-top: 5px;"><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-left:5px;"><tr><td class="leftcon"><ul class="left"><style>
   .yy{
	   display:none;
	   
   }
   </style><li><a href="/index.php/Web/tuwen/tid/81/id/132"><img src="/wwwimg/Upload/5cabff56a9982.jpg" alt="福斯润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/200" title="福斯工业齿轮油" >福斯工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/204" title="福斯液压油" >福斯液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/289" title="福斯润滑脂" >福斯润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/298" title="福斯冷冻机油" >福斯冷冻机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/203" title="福斯溶剂（挥发）型防锈油(剂)" >福斯溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/205" title="福斯切削液/油（金属加工油）" >福斯切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/299" title="福斯针织机油" >福斯针织机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/297" title="福斯高温链条油" >福斯高温链条油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/300" title="福斯导热油（传热油）" >福斯导热油（传热油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/201" title="福斯空气压缩机油" >福斯空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/196" title="福斯水溶性切削液（乳化型）" >福斯水溶性切削液（乳化型）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/195" title="福斯船舶及发电柴油机油" >福斯船舶及发电柴油机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/197" title="福斯汽轮-透平-涡轮机油" >福斯汽轮-透平-涡轮机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/198" title="福斯机床导轨油" >福斯机床导轨油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/199" title="福斯轴承和循环油系统油" >福斯轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/132/iid/194" title="福斯火花机油" >福斯火花机油</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/351"><img src="/wwwimg/Upload/5e94161f5792b.jpg" alt="巴索切削液" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/351/iid/352" title="巴索切削油&液" >巴索切削油&液</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/94"><img src="/wwwimg/Upload/5cabfd8926b2e.jpg" alt="壳牌润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/149" title="工业齿轮油" >工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/141" title="抗磨液压油" >抗磨液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/296" title="工业润滑脂" >工业润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/155" title="针织机油" >针织机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/229" title="溶剂（挥发）型防锈油(剂)" >溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/146" title="空气压缩机油" >空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/147" title="轴承和循环油系统油" >轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/148" title="机床导轨油/传热油" >机床导轨油/传热油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/145" title="水溶性切削液（乳化型）" >水溶性切削液（乳化型）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/144" title="造纸润滑油" >造纸润滑油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/157" title="船舶及发电柴油机油" >船舶及发电柴油机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/231" title="汽轮-透平-涡轮机油" >汽轮-透平-涡轮机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/230" title="切削液/油（金属加工油）" >切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/232" title="真空泵油" >真空泵油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/233" title="火花机油" >火花机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/151" title="汽车发动机油" >汽车发动机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/156" title="变压器-绝缘油" >变压器-绝缘油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/94/iid/150" title="壳牌高低温润滑脂" >壳牌高低温润滑脂</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/98"><img src="/wwwimg/Upload/5cabfd96defa1.jpg" alt="美孚润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/165" title="工业齿轮油" >工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/159" title="抗磨液压油" >抗磨液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/290" title="工业润滑脂" >工业润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/291" title="高低温润滑脂" >高低温润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/161" title="轴承和循环油系统油" >轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/158" title="汽轮-透平-涡轮机油" >汽轮-透平-涡轮机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/160" title="机床导轨油" >机床导轨油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/163" title="空气压缩机油" >空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/295" title="高温导热油/传热油" >高温导热油/传热油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/294" title="维萝斯锭子油系列" >维萝斯锭子油系列</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/292" title="开式齿轮油（脂）" >开式齿轮油（脂）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/164" title="切削液（金属加工液）" >切削液（金属加工液）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/236" title="船舶及发电柴油机油" >船舶及发电柴油机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/162" title="溶剂（挥发）型防锈油(剂)" >溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/234" title="真空泵油" >真空泵油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/98/iid/235" title="火花机油" >火花机油</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/124"><img src="/wwwimg/Upload/5cabfdcde1e06.jpg" alt="嘉实多润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/166" title="工业齿轮油" >工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/169" title="抗磨液压油" >抗磨液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/301" title="嘉实多工业润滑脂" >嘉实多工业润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/167" title="溶剂（挥发）型防锈油(剂)" >溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/168" title="空气压缩机油" >空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/241" title="切削液/油（金属加工油）" >切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/242" title="轴承和循环油系统油" >轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/243" title="机床导轨油" >机床导轨油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/245" title="空气压缩机油" >空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/244" title="汽轮-透平-涡轮机油" >汽轮-透平-涡轮机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/248" title="船舶及发电柴油机油" >船舶及发电柴油机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/247" title="火花机油" >火花机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/124/iid/246" title="真空泵油" >真空泵油</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/129"><img src="/wwwimg/Upload/5cabff19c8195.jpg" alt="bp润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/250" title="工业齿轮油" >工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/249" title="抗磨液压油" >抗磨液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/302" title="工业润滑脂" >工业润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/252" title="切削液/油（金属加工油）" >切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/253" title="轴承和循环油系统油" >轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/254" title="机床导轨油" >机床导轨油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/251" title="空气压缩机油" >空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/255" title="汽轮-透平-涡轮机油" >汽轮-透平-涡轮机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/304" title="冷冻机油" >冷冻机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/303" title="高低温润滑脂" >高低温润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/129/iid/256" title="火花机油" >火花机油</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/130"><img src="/wwwimg/Upload/5cabff0a1baae.jpg" alt="道达尔润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/180" title="道达尔工业齿轮油" >道达尔工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/181" title="道达尔液压油" >道达尔液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/305" title="道达尔润滑脂" >道达尔润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/185" title="道达尔轴承和循环油系统油" >道达尔轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/182" title="道达尔溶剂（挥发）型防锈油(剂)" >道达尔溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/307" title="道达尔冷冻机油" >道达尔冷冻机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/191" title="水溶性切削液（乳化型）" >水溶性切削液（乳化型）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/190" title="道达尔船舶及发电柴油机油" >道达尔船舶及发电柴油机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/306" title="道达尔高低温润滑脂" >道达尔高低温润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/187" title="道达尔汽轮-透平-涡轮机油" >道达尔汽轮-透平-涡轮机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/186" title="道达尔机床导轨油" >道达尔机床导轨油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/184" title="道达尔切削液/油（金属加工油）" >道达尔切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/183" title="道达尔空气压缩机油" >道达尔空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/188" title="道达尔真空泵油" >道达尔真空泵油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/130/iid/189" title="道达尔火花机油" >道达尔火花机油</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/131"><img src="/wwwimg/Upload/5cabff3e6e70f.jpg" alt="克鲁勃润滑油" border="0" /></a></li><ul  class=""><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/193" title="克鲁勃工业齿轮油" >克鲁勃工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/192" title="克鲁勃抗磨液压油" >克鲁勃抗磨液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/311" title="克鲁勃润滑脂" >克鲁勃润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/310" title="克鲁勃高温链条油" >克鲁勃高温链条油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/309" title="克鲁勃食品级润滑油" >克鲁勃食品级润滑油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/308" title="克鲁勃针织机油" >克鲁勃针织机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/257" title="空气压缩机油" >空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/258" title="溶剂（挥发）型防锈油(剂)" >溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/259" title="切削液/油（金属加工油）" >切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/260" title="轴承和循环油系统油" >轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/261" title="机床导轨油" >机床导轨油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/262" title="真空泵油" >真空泵油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/312" title="克鲁勃高低温润滑脂" >克鲁勃高低温润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/314" title="开式齿轮油（脂）" >开式齿轮油（脂）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/315" title="高端特殊润滑脂" >高端特殊润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/131/iid/316" title="冷冻机油" >冷冻机油</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/206"><img src="/wwwimg/Upload/5cb000303adfe.jpg" alt="好富顿润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/263" title="溶剂（挥发）型防锈油(剂)" >溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/264" title="切削液/油（金属加工油）" >切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/265" title="火花机油" >火花机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/266" title="水溶性切削液（乳化型）" >水溶性切削液（乳化型）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/317" title="环保润滑油/脂（生物降解）" >环保润滑油/脂（生物降解）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/268" title="防火阻燃（抗燃）液压油" >防火阻燃（抗燃）液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/269" title="轧制油" >轧制油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/318" title="工业清洗剂（冲洗油）" >工业清洗剂（冲洗油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/319" title="溶剂型清洗剂" >溶剂型清洗剂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/320" title="半合成切削液/合成切削液" >半合成切削液/合成切削液</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/321" title="淬火油（液）" >淬火油（液）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/206/iid/322" title="冲压油-攻牙油（挥发性）" >冲压油-攻牙油（挥发性）</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/207"><img src="/wwwimg/Upload/5cb000d9c1877.jpg" alt="倍可润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/270" title="抗磨液压油" >抗磨液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/271" title="工业齿轮油" >工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/272" title="空气压缩机油" >空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/273" title="溶剂（挥发）型防锈油(剂)" >溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/274" title="切削液/油（金属加工油）" >切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/275" title="轴承和循环油系统油" >轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/276" title="水溶性切削液（乳化型）" >水溶性切削液（乳化型）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/277" title="航空润滑油系列" >航空润滑油系列</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/278" title="针织机油" >针织机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/279" title="防火阻燃（抗燃）液压油" >防火阻燃（抗燃）液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/207/iid/280" title="食品级润滑油" >食品级润滑油</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/209"><img src="/wwwimg/Upload/5cb035f23db01.jpg" alt="太阳润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/335" title="抗磨液压油" >抗磨液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/336" title="工业齿轮油" >工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/337" title="空气压缩机油" >空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/338" title="溶剂（挥发）型防锈油(剂)" >溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/339" title="切削液/油（金属加工油）" >切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/340" title="轴承和循环油系统油" >轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/341" title="机床导轨油" >机床导轨油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/342" title="汽轮-透平-涡轮机油" >汽轮-透平-涡轮机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/343" title="船舶及发电柴油机油" >船舶及发电柴油机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/344" title="水溶性切削液（乳化型）" >水溶性切削液（乳化型）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/345" title="工业润滑脂" >工业润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/346" title="高低温润滑脂" >高低温润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/347" title="开式齿轮油（脂）" >开式齿轮油（脂）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/348" title="防冻液" >防冻液</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/349" title="锭子油" >锭子油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/209/iid/350" title="冷冻机油" >冷冻机油</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/210"><img src="/wwwimg/Upload/5cb0368bb73e8.jpg" alt="意大利阿吉普润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/282" title="工业齿轮油" >工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/329" title="工业润滑脂" >工业润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/281" title="抗磨液压油" >抗磨液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/283" title="空气压缩机油" >空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/323" title="汽轮-透平-涡轮机油" >汽轮-透平-涡轮机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/284" title="溶剂（挥发）型防锈油(剂)" >溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/285" title="切削液/油（金属加工油）" >切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/324" title="船舶及发电柴油机油" >船舶及发电柴油机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/286" title="轴承和循环油系统油" >轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/287" title="机床导轨油" >机床导轨油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/325" title="水溶性切削液（乳化型）" >水溶性切削液（乳化型）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/326" title="造纸润滑油" >造纸润滑油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/327" title="针织机油" >针织机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/328" title="高温链条油、主轴油" >高温链条油、主轴油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/330" title="高低温润滑脂" >高低温润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/331" title="开式齿轮油（脂）" >开式齿轮油（脂）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/332" title="冷冻机油" >冷冻机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/333" title="半合成切削液、合成切削液" >半合成切削液、合成切削液</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/210/iid/334" title="导热油（传热油）" >导热油（传热油）</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/213"><img src="/wwwimg/Upload/5cb0398e871e1.jpg" alt="国光牌润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/213/iid/237" title="国光牌液压油" >国光牌液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/213/iid/238" title="国光牌齿轮油" >国光牌齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/213/iid/239" title="国光牌特级循环机油" >国光牌特级循环机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/213/iid/240" title="国光牌润滑脂" >国光牌润滑脂</a></li></ul><li><a href="/index.php/Web/tuwen/tid/81/id/170"><img src="/wwwimg/Upload/5cac5352205a8.jpg" alt="加德士润滑油" border="0" /></a></li><ul  class="yy"><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/171" title="加德士工业齿轮油" >加德士工业齿轮油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/172" title="加德士抗磨液压油" >加德士抗磨液压油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/173" title="加德士润滑脂" >加德士润滑脂</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/174" title="加德士涡轮机油" >加德士涡轮机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/175" title="加德士空气压缩机油" >加德士空气压缩机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/218" title="轴承和循环油系统油" >轴承和循环油系统油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/217" title="切削液/油（金属加工油）" >切削液/油（金属加工油）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/216" title="溶剂（挥发）型防锈油(剂)" >溶剂（挥发）型防锈油(剂)</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/219" title="机床导轨油" >机床导轨油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/220" title="汽轮-透平-涡轮机油" >汽轮-透平-涡轮机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/221" title="火花机油" >火花机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/222" title="船舶及发电柴油机油" >船舶及发电柴油机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/223" title="水溶性切削液（乳化型）" >水溶性切削液（乳化型）</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/225" title="造纸润滑油" >造纸润滑油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/226" title="变压器-绝缘油" >变压器-绝缘油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/227" title="针织机油" >针织机油</a></li><li ><span><img src="/Uimg/web/images/ico.gif" /></span><a href="/index.php/Web/tuwen/tid/81/id/170/iid/228" title="汽车发动机油" >汽车发动机油</a></li></ul></ul></td></tr></table></TD></TR></TBODY></TABLE></TD></TR><style>
      	.yc{
			display:none;
		}
      </style><script>
	  function xianshi(id){
		  $(".yc").hide();
		  
		  $(".yc"+id).show();
	  }
      </script><TR><TD valign="top" style="padding-top: 8px;"><TABLE width="100%" align="center" border="0" cellspacing="0" 

            cellpadding="0"><TBODY><TR><TD valign="top" style="border: 1px solid rgb(219, 219, 219); border-image: none;"><TABLE width="100%" align="center" bgcolor="#e6e6e6" border="0" 

                  cellspacing="0" cellpadding="0"><TBODY><TR><TD height="37" background="/Uimg/web/images/left.gif"><SPAN 

                        class="STYLE2" 

                    style="padding-left: 15px;">产品搜索</SPAN></TD></TR><TR><TD style="padding-top: 5px;"><TABLE width="90%" align="center" border="0" 

                        cellspacing="0" cellpadding="0"><TBODY><TR><TD><FORM name="form2"  action="/index.php/Web/so/tid/81" 

                              method="get"><TABLE width="100%" border="0" cellspacing="0" 

                              cellpadding="0"><TBODY><TR><TD width="60%" height="26"><LABEL><INPUT name="keyword"  type="text" size="20"></LABEL></TD><TD width="25%" align="center"><INPUT name="Submit" type="submit" value="提交"></TD></TR></TBODY></TABLE></FORM></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR><TR><TD valign="top" style="padding-top: 8px;"><IMG width="212" height="110" 

            src="/wwwimg/Upload/580435f40d65c.jpg"></TD></TR><TR><TD valign="top" style="border: 1px solid rgb(219, 219, 219); border-image: none; padding-top: 8px; padding-left: 5px;"><div>
	深圳市艺桥贸易有限公司</div>
<div>
	联系人：何先生</div>
<div>
	电话:13530864552</div>
<div>
	QQ：1038469303</div>
<div>
	地址：深圳市龙华区大浪街道高峰社区天诚路汇益达科技楼5楼512室</div>
</TD></TR></TBODY></TABLE></TD><td valign="top"><table align="right" border="0" cellpadding="0" cellspacing="0" width="778"><tbody><tr><td><table align="center" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td align="left" height="32" background="/Uimg/web/images/right.gif" valign="top" width="171"><table align="left" border="0" cellpadding="0" cellspacing="0" width="80"><tbody><tr><td class="STYLE2" align="right" height="27" valign="bottom">产品展示</td></tr></tbody></table></td><td align="right" background="/Uimg/web/images/right_1.gif" valign="middle"></td><td width="10"><img src="/Uimg/web/images/right_2.gif" height="32" width="10"></td></tr></tbody></table></td></tr><tr><td style="border:#dbdbdb 1px solid;"><table align="center" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="padding:0px;" align="center"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><br><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1820"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1820">克鲁勃NONTROP ZB 91 DIN</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1821"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1821">克鲁勃NOSOL GBY 2</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1822"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1822">克鲁勃METALSTAR 820</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1823"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1823">克鲁勃MICROLUBE GB 0、GB 00</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1824"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1824">克鲁勃MICROLUBE GBU-Y131</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1825"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1825">克鲁勃MICROLUBE GLY 92</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1826"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1826">克鲁勃MICROLUBE GNY 202</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1827"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1827">克鲁勃ISOFLEX PDL 300 A</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1828"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1828">克鲁勃ISOFLEX SUPER LDS 1825 S</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1829"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1829">克鲁勃Klubertop TG04-1121，克鲁勃Klubertop TH05</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1703"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1703">Kluberfluid B-F 2 Ultra</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1704"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1704">Kluberflex Modul 2、3、4</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1705"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1705">Kluberflex 300-0</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1706"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1706">克鲁勃Kluberflex 100-0、100-1、120-1</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1707"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1707">克鲁勃Kluberlub EM 41-92</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1708"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1708">克鲁勃Kluberplex EM 31-102</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1709"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1709">Kluberplex BEM 34-131 N、BEM 34-132</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1710"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1710">克鲁勃Kluberplex BE 11-462</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1711"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1711">Kluberplex AG 11-461、AG 11-462</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1712"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1712">克鲁勃Kluberpaste 46 MR 401</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1713"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1713">克鲁勃Kluberlub EM 41-142</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1714"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1714">克鲁勃Kluberlub EM 41-111</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1715"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1715">克鲁勃Kluberlub BVH 71-461</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1716"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1716">Kluberspeed BF 72-23、BF 72-22</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1717"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1717">克鲁勃Kluberpaste R 11-502</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1718"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1718">克鲁勃Kluberlub BEM 41-122</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1719"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1719">Kluberfluid DH 7-2000</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1720"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1720">Kluberlectric R 64-401</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1721"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1721">Kluberfluid D-F 1 Ultra</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1722"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1722">Kluberlub BE 41-1002</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1723"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1723">Kluberlub BE 41-542</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1724"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1724">克鲁勃Kluberlub BE 71-501</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1725"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1725">克鲁勃Kluberlub BEH 71-461</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1726"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1726">克鲁勃Kluberlectric BE 44-152</a></div></td></tr></tbody></table><br></div></td><tr><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1727"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1727">克鲁勃Klubersynth MR 96-31</a></div></td></tr></tbody></table><br></div></td><td><link href="../images/css.css" rel="stylesheet" type="text/css"><div align="center"><style>/*
                            <a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1728"><!--<img src="/wwwimg/Upload/" style="border:1px solid #ccc" height="140" width="180">--></a><a href="productShow.asp?id=735"></a>*/
</style><table border="0" cellpadding="0" cellspacing="0" width="300px"><tbody><tr><td height="22" bgcolor="#EBEAEA"><div align="left" style="width:100%"><img src="/Uimg/web/images/ico.gif"><a href="/index.php/Web/tuwen_de/tid/81/id/311/iid/1728">克鲁勃Klubersynth LE 44-31</a></div></td></tr></tbody></table><br></div></td><tr></tbody></table><table border="0" cellpadding="2" cellspacing="0" width="100%"><tbody><tr><td align="center">[1/4]   &nbsp;<span class='current'>1</span>&nbsp;<a class='currenta' href='/index.php/Web/tuwen/tid/81/id/131/iid/311/images/css.css/p/2'>&nbsp;2&nbsp;</a>&nbsp;<a class='currenta' href='/index.php/Web/tuwen/tid/81/id/131/iid/311/images/css.css/p/3'>&nbsp;3&nbsp;</a>&nbsp;<a class='currenta' href='/index.php/Web/tuwen/tid/81/id/131/iid/311/images/css.css/p/4'>&nbsp;4&nbsp;</a> <a class='currenta' href='/index.php/Web/tuwen/tid/81/id/131/iid/311/images/css.css/p/2'>>></a> <a class='currenta' href='/index.php/Web/tuwen/tid/81/id/131/iid/311/images/css.css/p/4' >>|</a></td></tr></tbody></table></td></tr></tbody></table></td></tr></tbody></table></td></TR></TBODY></TABLE><LINK 

href="/Uimg/web/images/css.css" rel="stylesheet" type="text/css"><TABLE width="1000" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD height="10"></TD></TR></TBODY></TABLE><TABLE width="1000" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD valign="top" style="border: 1px solid rgb(214, 213, 208); border-image: none;"><TABLE width="100%" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD width="119"><IMG width="120" height="76" src="/Uimg/web/images/links.gif"></TD><TD background="/Uimg/web/images/links_bg.gif" style="padding-right: 10px; padding-left: 10px;"><a href="http://www.yqmobil168.com/" style="text-decoration:none">润滑油</a>&nbsp;&nbsp;<a href="/www/index.php/Web/tuwen/tid/81/id/132" style="text-decoration:none">福斯润滑油</a>&nbsp;&nbsp;<a href="/www/index.php/Web/tuwen/tid/81/id/94" style="text-decoration:none">壳牌润滑油</a>&nbsp;&nbsp;<a href="/www/index.php/Web/tuwen/tid/81/id/98" style="text-decoration:none">美孚润滑油</a>&nbsp;&nbsp;<a href="/www/index.php/Web/tuwen/tid/81/id/124" style="text-decoration:none">嘉实多润滑油</a>&nbsp;&nbsp;<a href="/www/index.php/Web/tuwen/tid/81/id/129" style="text-decoration:none">bp润滑油</a>&nbsp;&nbsp;<a href="/www/index.php/Web/tuwen/tid/81/id/130" style="text-decoration:none">道达尔润滑油</a>&nbsp;&nbsp;<a href="/www/index.php/Web/tuwen/tid/81/id/131" style="text-decoration:none">克鲁勃润滑油</a>&nbsp;&nbsp;<a href="/www/index.php/Web/tuwen/tid/81/id/206" style="text-decoration:none">好富顿润滑油</a>&nbsp;&nbsp;<a href="/www/index.php/Web/tuwen/tid/81/id/207" style="text-decoration:none">倍可润滑油</a>&nbsp;&nbsp;</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><TABLE width="1000" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD><IMG width="1000" height="23" 
  src="/Uimg/web/images/links_bg1.gif"></TD></TR></TBODY></TABLE><TABLE width="100%" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD height="28" bgcolor="#0dbf21"><TABLE width="60%" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD align="center" class="STYLE6" valign="middle"><A href="/index.php">网站首页</A></TD><TD align="center" class="STYLE6" valign="middle"><A href="/index.php/Web/danye/tid/114">关于我们</A></TD><TD align="center" class="STYLE6" valign="middle"><A href="/index.php/Web/tuwen/tid/81">产品展示</A></TD><TD align="center" class="STYLE6" valign="middle"><A href="/index.php/Web/leibiao/tid/78">新闻中心</A></TD><!--TD align="center" class="STYLE6" valign="middle"><A href="/index.php/Web/tuwen/tid/125">成功案例</A></TD--><!--TD align="center" class="STYLE6" valign="middle"><A href="/index.php/Web/tuwen/tid/118">荣誉资质</A></TD--><TD align="center" class="STYLE6" valign="middle"><A href="/index.php/Web/biaodan/tid/79">客户留言</A></TD><!--TD align="center" class="STYLE6" valign="middle"><A href="/index.php/Web/leibiao/tid/119">人才招聘</A></TD--><TD align="center" class="STYLE6" valign="middle"><A href="/index.php/Web/danye/tid/84">联系我们</A></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><TABLE width="1000" align="center" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD align="center" valign="top"><TABLE width="98%" align="right" border="0" cellspacing="0" cellpadding="0"><TBODY><TR><TD height="100" align="center" valign="middle"><p style="text-align: center;">
	&nbsp; &nbsp; 深圳市艺桥贸易有限公司&nbsp;&nbsp;<a href="https://beian.miit.gov.cn/" target="_blank">粤ICP备19029557号-1</a></p>
</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><DIV id="tesi"><STRONG style="font-weight: 400;"></STRONG></DIV><script>var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?ed454139d39b93d2889d83c46d55fcd9";
  var s = document.getElementsByTagName("script")[0]; 
  s.parentNode.insertBefore(hm, s);
})();
</script></BODY></HTML>