function InitData(depth,parent,id)
{
    var ele = document.getElementById(id);
    if(depth==1)
    {
        for(var i=0;i<firstSort.length;i++)
        {
        if(firstSort[i][0]==parent)
        ele.options.add(new Option(firstSort[i][2],firstSort[i][1]));
        }
    }
    else if(depth==2)
    {
        ele.options.length=0;
        for(var i=0;i<secondSort.length;i++)
        {
        if(secondSort[i][0]==parent)
        ele.options.add(new Option(secondSort[i][2],secondSort[i][1]));
        }
        ele.options.selectedIndex=0;
    }
    else if(depth==3)
    {
        ele.options.length=0;
        for(var i=0;i<thirdSort.length;i++)
        {
        if(thirdSort[i][0]==parent)
        ele.options.add(new Option(thirdSort[i][2],thirdSort[i][1]));
        }
        ele.options.selectedIndex=0;
    }
}
InitData("1","0","LbFirst");
function secondSelect()
{
    var tempSecIndex="";
    var tempThirIndex="";
    try{
     tempSecIndex = document.getElementById("LbFirst").options[document.getElementById("LbFirst").selectedIndex].value;
    }
    catch(e){
    tempSecIndex=0;
    }
    try{
     tempThirIndex = document.getElementById("LbSecond").options[document.getElementById("LbSecond").selectedIndex].value;
    }
    catch(e){
    tempThirIndex=0;
    }
    InitData("2",tempSecIndex,"LbSecond");
    InitData("3",tempThirIndex,"LbThird");
}
function thirdSelect()
{
    var tempSecIndex;
    try{
    tempSecIndex =  document.getElementById("LbSecond").options[document.getElementById("LbSecond").selectedIndex].value;
    }
    catch(e){
    tempSecIndex=0;
    }
    InitData("3",tempSecIndex,"LbThird")
}

 

var firstSort = new Array();firstSort[0] = new Array("0","B2130B","电子、电工、电气");
firstSort[1] = new Array("0","5E0EA9","玩具、工艺品、饰品");
firstSort[2] = new Array("0","4CC1DF","冶金、矿产、能源");
firstSort[3] = new Array("0","7D709F","纺织、皮革");
firstSort[4] = new Array("0","6A726A","五金工具");
firstSort[5] = new Array("0","AC3D13","运动、休闲");
firstSort[6] = new Array("0","40B777","建筑、建材");
firstSort[7] = new Array("0","916DC2","环保");
firstSort[8] = new Array("0","0796CE","安全、防护");
firstSort[9] = new Array("0","9671CF","办公、文教");
firstSort[10] = new Array("0","8A62FE","商务服务");
firstSort[11] = new Array("0","74F0CB","印刷、包装、纸业");
firstSort[12] = new Array("0","6F71B0","家用电器");
firstSort[13] = new Array("0","67235C","电脑、数码、通信");
firstSort[14] = new Array("0","82F523","食品、饮料、农林牧副渔");
firstSort[15] = new Array("0","70B5BD","交通、汽摩及配件");
firstSort[16] = new Array("0","88992B","服装服饰");
firstSort[17] = new Array("0","32D670","机械及行业设备");
firstSort[18] = new Array("0","493C9E","家居用品");
firstSort[19] = new Array("0","2516EC","化工");
var secondSort = new Array();secondSort[0] = new Array("0796CE","B661C4","防身用具");
secondSort[1] = new Array("0796CE","F86A1B","自然灾害防护产品");
secondSort[2] = new Array("0796CE","09C608","防雷避雷产品");
secondSort[3] = new Array("0796CE","D84FAF","军需用品");
secondSort[4] = new Array("0796CE","72369D","电子巡更系统");
secondSort[5] = new Array("0796CE","CA729B","救生器材");
secondSort[6] = new Array("0796CE","E51CCF","安全防护用品");
secondSort[7] = new Array("0796CE","4B63E5","锁具");
secondSort[8] = new Array("0796CE","95CDC3","防伪技术产品");
secondSort[9] = new Array("0796CE","E7FD31","防盗、报警装置");
secondSort[10] = new Array("0796CE","2A86AF","门禁考勤器材及系统");
secondSort[11] = new Array("0796CE","2CB230","楼宇对讲设备");
secondSort[12] = new Array("0796CE","D038BD","保险柜");
secondSort[13] = new Array("0796CE","8BBD27","运动护具");
secondSort[14] = new Array("0796CE","66F135","监控器材及系统");
secondSort[15] = new Array("0796CE","CF3458","智能卡");
secondSort[16] = new Array("0796CE","BFC2E2","防静电产品");
secondSort[17] = new Array("0796CE","919A00","消防器材");
secondSort[18] = new Array("0796CE","9A44CB","交通安全设备");
secondSort[19] = new Array("0796CE","AF238F","防弹、防暴器材");
secondSort[20] = new Array("0796CE","1C055D","安全检查设备");
secondSort[21] = new Array("2516EC","49BBB1","塑料及制品");
secondSort[22] = new Array("2516EC","D15E13","日用化学品");
secondSort[23] = new Array("2516EC","4F9E91","橡胶及制品");
secondSort[24] = new Array("2516EC","518BBB","生物化工");
secondSort[25] = new Array("2516EC","38E742","陶瓷");
secondSort[26] = new Array("2516EC","6DBF95","化学助剂、化学试剂");
secondSort[27] = new Array("2516EC","E3EB57","化学肥料");
secondSort[28] = new Array("2516EC","B71A37","聚合物");
secondSort[29] = new Array("2516EC","B6B620","农药");
secondSort[30] = new Array("2516EC","1776A2","油墨");
secondSort[31] = new Array("2516EC","0E1317","无机化工原料");
secondSort[32] = new Array("2516EC","5B4904","化工机械");
secondSort[33] = new Array("2516EC","8EB844","涂料、染料");
secondSort[34] = new Array("2516EC","E82779","实验室用品");
secondSort[35] = new Array("2516EC","92BA18","表面处理");
secondSort[36] = new Array("2516EC","F032AE","玻璃");
secondSort[37] = new Array("2516EC","3C2582","化工废料");
secondSort[38] = new Array("2516EC","A95947","有机化工原料");
secondSort[39] = new Array("2516EC","A3C9F6","火工产品");
secondSort[40] = new Array("32D670","693064","通用机械");
secondSort[41] = new Array("32D670","C8E3EB","包装、印刷、纸业设备");
secondSort[42] = new Array("32D670","30563C","其他未分类");
secondSort[43] = new Array("32D670","31ED42","电子、电工、电气设备");
secondSort[44] = new Array("32D670","921032","橡塑设备");
secondSort[45] = new Array("32D670","829227","建筑设备");
secondSort[46] = new Array("32D670","8237F9","化工设备");
secondSort[47] = new Array("32D670","57621B","矿业、冶金设备");
secondSort[48] = new Array("32D670","42EFD0","节能环保设备");
secondSort[49] = new Array("32D670","475C05","纺织、服装、鞋帽设备");
secondSort[50] = new Array("32D670","C4CF1B","农业、食品设备");
secondSort[51] = new Array("32D670","D3B367","行业专用设备");
secondSort[52] = new Array("40B777","9CB43B","建筑、建材机械及用具");
secondSort[53] = new Array("40B777","BAC118","厨卫设施");
secondSort[54] = new Array("40B777","713526","建筑门窗及五金");
secondSort[55] = new Array("40B777","EFF40A","建筑材料");
secondSort[56] = new Array("40B777","4CAEA3","建筑装潢工程承包");
secondSort[57] = new Array("40B777","5D1AC6","建筑配套设施及其他");
secondSort[58] = new Array("40B777","5DDFC7","管件管材");
secondSort[59] = new Array("40B777","227D81","装饰材料");
secondSort[60] = new Array("493C9E","4888D1","箱包、袋、皮具");
secondSort[61] = new Array("493C9E","305424","个人用品");
secondSort[62] = new Array("493C9E","F381BD","卫浴设施");
secondSort[63] = new Array("493C9E","86399D","家具");
secondSort[64] = new Array("493C9E","4A74F8","厨房用品");
secondSort[65] = new Array("493C9E","B4E676","照明与灯具");
secondSort[66] = new Array("493C9E","F2F6DE","家用各类制品");
secondSort[67] = new Array("493C9E","E546DE","常用家居");
secondSort[68] = new Array("493C9E","0670AA","家纺");
secondSort[69] = new Array("493C9E","29B371","日用化学品");
secondSort[70] = new Array("4CC1DF","F84569","金属粉末");
secondSort[71] = new Array("4CC1DF","27B0BA","稀土及稀土制品");
secondSort[72] = new Array("4CC1DF","8387A2","金属丝、绳、网");
secondSort[73] = new Array("4CC1DF","7A27CE","有色金属及加工材");
secondSort[74] = new Array("4CC1DF","D17E8B","金属加工材");
secondSort[75] = new Array("4CC1DF","90F374","矿业");
secondSort[76] = new Array("4CC1DF","5F5BEC","钢材");
secondSort[77] = new Array("4CC1DF","9C1393","能源");
secondSort[78] = new Array("4CC1DF","B57386","废金属");
secondSort[79] = new Array("4CC1DF","EAC429","黑色金属及制品");
secondSort[80] = new Array("4CC1DF","7C7FEA","冶金设备");
secondSort[81] = new Array("4CC1DF","ED5C45","铁合金及制品");
secondSort[82] = new Array("4CC1DF","1B19FB","矿业设备");
secondSort[83] = new Array("4CC1DF","EFAA8D","磁性材料");
secondSort[84] = new Array("5E0EA9","48B1D6","雕塑");
secondSort[85] = new Array("5E0EA9","398284","鲜花、盆景");
secondSort[86] = new Array("5E0EA9","4240C5","珠宝首饰、金银器");
secondSort[87] = new Array("5E0EA9","BDE2C2","乐器");
secondSort[88] = new Array("5E0EA9","2A6479","熏香及熏香炉");
secondSort[89] = new Array("5E0EA9","E221C6","玩具");
secondSort[90] = new Array("5E0EA9","0E5987","旗帜");
secondSort[91] = new Array("5E0EA9","7A622A","礼品袋、装饰盒");
secondSort[92] = new Array("5E0EA9","D282CB","广告礼品");
secondSort[93] = new Array("5E0EA9","7A1BA5","工艺用五金工具");
secondSort[94] = new Array("5E0EA9","AEE629","时尚饰品");
secondSort[95] = new Array("5E0EA9","F95F0B","婚庆、节日用品");
secondSort[96] = new Array("5E0EA9","3B5B4C","殡葬用品");
secondSort[97] = new Array("5E0EA9","5ED049","工艺品");
secondSort[98] = new Array("5E0EA9","430649","钟表");
secondSort[99] = new Array("5E0EA9","5891A0","古董、收藏品、纪念品");
secondSort[100] = new Array("5E0EA9","D607D4","字画、工艺画");
secondSort[101] = new Array("5E0EA9","FEEC6C","工艺原料");
secondSort[102] = new Array("5E0EA9","A03414","蜡烛及烛台");
secondSort[103] = new Array("5E0EA9","F9C361","相框、画框");
secondSort[104] = new Array("67235C","E35788","软件");
secondSort[105] = new Array("67235C","A6A8A5","综合布线产品");
secondSort[106] = new Array("67235C","149ADF","电脑配件");
secondSort[107] = new Array("67235C","D15FCF","通讯终端");
secondSort[108] = new Array("67235C","DBCEE9","光存储技术及设备");
secondSort[109] = new Array("67235C","D08ABB","电脑周边产品");
secondSort[110] = new Array("67235C","CA3020","电脑整机及服务器");
secondSort[111] = new Array("67235C","7E5E90","通信器材");
secondSort[112] = new Array("67235C","5CB526","耗材");
secondSort[113] = new Array("67235C","13F6FE","办公设备");
secondSort[114] = new Array("67235C","7DD0A4","网络工程");
secondSort[115] = new Array("67235C","369B81","网络设备、配件");
secondSort[116] = new Array("67235C","EA3BB4","存储设备");
secondSort[117] = new Array("67235C","6675B1","数码产品及配件");
secondSort[118] = new Array("6A726A","AF249E","模具");
secondSort[119] = new Array("6A726A","B5C380","密封件");
secondSort[120] = new Array("6A726A","FD4FC5","起重工具");
secondSort[121] = new Array("6A726A","8FAE0F","农用工具");
secondSort[122] = new Array("6A726A","3A88A3","传动件");
secondSort[123] = new Array("6A726A","5BE53F","其他未分类");
secondSort[124] = new Array("6A726A","47E3B5","水暖五金");
secondSort[125] = new Array("6A726A","22F038","日用五金");
secondSort[126] = new Array("6A726A","523CB7","锁具");
secondSort[127] = new Array("6A726A","68497C","卫浴五金");
secondSort[128] = new Array("6A726A","F42D82","船用五金配件");
secondSort[129] = new Array("6A726A","3F91D0","气动工具及元件");
secondSort[130] = new Array("6A726A","D32EE8","手动工具");
secondSort[131] = new Array("6A726A","8F88CC","电动工具");
secondSort[132] = new Array("6A726A","5404C7","液压元件");
secondSort[133] = new Array("6A726A","924042","衡器量具");
secondSort[134] = new Array("6A726A","8488F0","刀具夹具");
secondSort[135] = new Array("6A726A","A48F7C","匠作工具");
secondSort[136] = new Array("6A726A","C1D3DA","磨具、磨料");
secondSort[137] = new Array("6A726A","9EC76D","紧固件、连接件");
secondSort[138] = new Array("6A726A","EF040F","管件");
secondSort[139] = new Array("6A726A","520A0B","门窗五金");
secondSort[140] = new Array("6A726A","C85B01","轴承");
secondSort[141] = new Array("6A726A","C4E8FB","通用五金配件");
secondSort[142] = new Array("6A726A","11B307","焊接材料与附件");
secondSort[143] = new Array("6A726A","9A5F03","气焊、气割器材");
secondSort[144] = new Array("6A726A","64DC20","电子五金件");
secondSort[145] = new Array("6A726A","7934F8","弹簧");
secondSort[146] = new Array("6F71B0","4FDCF5","热水器");
secondSort[147] = new Array("6F71B0","593A45","家电制造设备");
secondSort[148] = new Array("6F71B0","05B325","电器包装");
secondSort[149] = new Array("6F71B0","B9A2F8","冰箱、冷柜");
secondSort[150] = new Array("6F71B0","42424D","视听器材            ");
secondSort[151] = new Array("6F71B0","8628E2","生活小家电");
secondSort[152] = new Array("6F71B0","DDB850","空调");
secondSort[153] = new Array("6F71B0","B23965","视听周边产品");
secondSort[154] = new Array("6F71B0","302E8E","娱乐视听设备");
secondSort[155] = new Array("6F71B0","C49190","厨卫家电");
secondSort[156] = new Array("6F71B0","ED98DB","洗衣机、干衣机");
secondSort[157] = new Array("6F71B0","762DFB","电风扇");
secondSort[158] = new Array("6F71B0","A061EC","家电附件");
secondSort[159] = new Array("70B5BD","CFF698","车身及附件");
secondSort[160] = new Array("70B5BD","506189","汽车通讯");
secondSort[161] = new Array("70B5BD","CF677B","交通配套设施");
secondSort[162] = new Array("70B5BD","102D11","汽车配件");
secondSort[163] = new Array("70B5BD","9F154A","汽车装潢用品");
secondSort[164] = new Array("70B5BD","E88042","交通运输工具");
secondSort[165] = new Array("70B5BD","8B54EA","其他未分类");
secondSort[166] = new Array("70B5BD","1DFE86","汽车用品");
secondSort[167] = new Array("70B5BD","ABA2FA","汽车维修与保养");
secondSort[168] = new Array("74F0CB","FE6DE9","色标、色卡");
secondSort[169] = new Array("74F0CB","B9E6FD","防伪包装");
secondSort[170] = new Array("74F0CB","C41BBD","生活用纸");
secondSort[171] = new Array("74F0CB","E7BC57","包装制品");
secondSort[172] = new Array("74F0CB","0CAB83","包装用纸");
secondSort[173] = new Array("74F0CB","0C75A1","包装材料");
secondSort[174] = new Array("74F0CB","EB3AC6","造纸原料及助剂");
secondSort[175] = new Array("74F0CB","503A60","行业包装");
secondSort[176] = new Array("74F0CB","745C8D","文化、印刷用纸");
secondSort[177] = new Array("74F0CB","03480E","印刷材料");
secondSort[178] = new Array("74F0CB","726A8C","特种印刷");
secondSort[179] = new Array("74F0CB","5A84D4","印刷设备");
secondSort[180] = new Array("74F0CB","F60400","纸类设备及服务");
secondSort[181] = new Array("74F0CB","490C02","印刷服务");
secondSort[182] = new Array("74F0CB","62A721","包装设备");
secondSort[183] = new Array("74F0CB","B78D16","办公用纸");
secondSort[184] = new Array("74F0CB","0DFA02","工业用纸");
secondSort[185] = new Array("74F0CB","6A4656","壁纸、壁布");
secondSort[186] = new Array("7D709F","3B3D31","化学纤维、新型纤维");
secondSort[187] = new Array("7D709F","BC8224","纺织面料");
secondSort[188] = new Array("7D709F","EA8E00","天然纺织原料");
secondSort[189] = new Array("7D709F","64AEE9","坯布");
secondSort[190] = new Array("7D709F","7A9C6B","纺织、编结工艺品");
secondSort[191] = new Array("7D709F","E6C931","合成革");
secondSort[192] = new Array("7D709F","B9780A","皮革");
secondSort[193] = new Array("7D709F","1B2BF4","色织、扎染、印花布");
secondSort[194] = new Array("7D709F","455073","皮革化学品");
secondSort[195] = new Array("7D709F","AF88FB","家纺");
secondSort[196] = new Array("7D709F","6804B3","纱线");
secondSort[197] = new Array("7D709F","7AB113","箱包、袋、皮具");
secondSort[198] = new Array("7D709F","20E309","皮革废料");
secondSort[199] = new Array("7D709F","F67B76","人造革");
secondSort[200] = new Array("7D709F","A77FC9","纺织废料");
secondSort[201] = new Array("7D709F","67D03B","生皮、毛皮");
secondSort[202] = new Array("7D709F","A169F1","非织造及工业用布");
secondSort[203] = new Array("7D709F","44210D","纺织辅料");
secondSort[204] = new Array("82F523","7752FC","牲畜");
secondSort[205] = new Array("82F523","633632","农业");
secondSort[206] = new Array("82F523","B2D4A0","渔业");
secondSort[207] = new Array("82F523","5AE580","食品");
secondSort[208] = new Array("82F523","1AC505","林业");
secondSort[209] = new Array("82F523","C85775","副业");
secondSort[210] = new Array("82F523","F5AC09","饮料");
secondSort[211] = new Array("88992B","08DD83","鞋材、鞋件");
secondSort[212] = new Array("88992B","DA53BF","大衣、风衣");
secondSort[213] = new Array("88992B","36A88F","休闲装");
secondSort[214] = new Array("88992B","A159DC","童装");
secondSort[215] = new Array("88992B","906BA1","服装辅料");
secondSort[216] = new Array("88992B","A0CFA8","羊毛衫、针织衫");
secondSort[217] = new Array("88992B","1D65ED","女装");
secondSort[218] = new Array("88992B","246D73","男装");
secondSort[219] = new Array("88992B","992D28","内衣");
secondSort[220] = new Array("88992B","7C92AA","服装展示道具");
secondSort[221] = new Array("88992B","CDCB02","服饰");
secondSort[222] = new Array("88992B","B5246E","运动装");
secondSort[223] = new Array("88992B","CBC145","鞋类");
secondSort[224] = new Array("88992B","CFC7DC","制服、工作服");
secondSort[225] = new Array("88992B","9793A4","特殊用途服装");
secondSort[226] = new Array("88992B","9AAE04","羽绒服装、防寒服");
secondSort[227] = new Array("88992B","E11EC3","西服");
secondSort[228] = new Array("88992B","42ABE9","礼服、婚纱");
secondSort[229] = new Array("88992B","9945FB","皮革、毛皮服装");
secondSort[230] = new Array("8A62FE","29F295","超市、百货、便利店");
secondSort[231] = new Array("8A62FE","2F228D","商旅服务");
secondSort[232] = new Array("8A62FE","2E5F0E","知识产权");
secondSort[233] = new Array("8A62FE","18FBFE","法律服务");
secondSort[234] = new Array("8A62FE","8D7C58","策划、设计、广告");
secondSort[235] = new Array("8A62FE","46A06F","教育、培训");
secondSort[236] = new Array("8A62FE","A809A3","金融、保险");
secondSort[237] = new Array("8A62FE","B9B084","租赁、典当");
secondSort[238] = new Array("8A62FE","5EAE03","翻译服务");
secondSort[239] = new Array("8A62FE","E85950","宾馆、餐饮");
secondSort[240] = new Array("8A62FE","3E81FB","家政服务");
secondSort[241] = new Array("8A62FE","D54D34","物流");
secondSort[242] = new Array("8A62FE","E9DD30","美容美体服务");
secondSort[243] = new Array("8A62FE","8C3287","医疗服务");
secondSort[244] = new Array("8A62FE","F04E68","招聘");
secondSort[245] = new Array("8A62FE","A200F9","其他服务");
secondSort[246] = new Array("8A62FE","1FE74E","中介服务");
secondSort[247] = new Array("8A62FE","90311B","招标、投标、拍卖");
secondSort[248] = new Array("8A62FE","3D0D05","商展、会议");
secondSort[249] = new Array("8A62FE","1694DD","代理报关");
secondSort[250] = new Array("8A62FE","9D1CB8","公司注册服务");
secondSort[251] = new Array("8A62FE","D86603","认证、检测服务");
secondSort[252] = new Array("916DC2","5AB8C2","空气处理化学品");
secondSort[253] = new Array("916DC2","3803C8","分析仪器");
secondSort[254] = new Array("916DC2","D70A5B","填料");
secondSort[255] = new Array("916DC2","AAC69B","水文仪器");
secondSort[256] = new Array("916DC2","829848","空气净化装置");
secondSort[257] = new Array("916DC2","908CA9","风机、排风设备");
secondSort[258] = new Array("916DC2","5D4160","水处理化学品");
secondSort[259] = new Array("916DC2","347D51","公共环卫设施");
secondSort[260] = new Array("916DC2","FA20B5","过滤器、过滤设备");
secondSort[261] = new Array("916DC2","F8B343","节能设备");
secondSort[262] = new Array("916DC2","CB4547","节能环保材料");
secondSort[263] = new Array("916DC2","095A52","消音降噪设备");
secondSort[264] = new Array("916DC2","829593","废料回收");
secondSort[265] = new Array("916DC2","C733E6","环境检测仪器");
secondSort[266] = new Array("916DC2","F9633C","水处理设施");
secondSort[267] = new Array("916DC2","AFD2B3","清洗、清理设备");
secondSort[268] = new Array("9671CF","27BDE3","光学及摄像");
secondSort[269] = new Array("9671CF","434FDC","办公设备");
secondSort[270] = new Array("9671CF","401445","文具");
secondSort[271] = new Array("9671CF","932380","出版");
secondSort[272] = new Array("9671CF","FA0C11","教学用具、器材");
secondSort[273] = new Array("9671CF","4F75E3","办公耗材");
secondSort[274] = new Array("AC3D13","1B3B8A","宾馆酒店用品");
secondSort[275] = new Array("AC3D13","38E703","娱乐休闲用品");
secondSort[276] = new Array("AC3D13","508DA7","体育用品");
secondSort[277] = new Array("AC3D13","472A56","旅游、户外用品");
secondSort[278] = new Array("AC3D13","2AD2BA","舞蹈、戏剧用品");
secondSort[279] = new Array("AC3D13","5860E6","运动服饰");
secondSort[280] = new Array("AC3D13","643559","宠物及用品");
secondSort[281] = new Array("B2130B","B85D60","工控系统及装备");
secondSort[282] = new Array("B2130B","9EED34","电子材料");
secondSort[283] = new Array("B2130B","670260","电线、电缆、天线");
secondSort[284] = new Array("B2130B","3D6307","电声器件");
secondSort[285] = new Array("B2130B","3EAD08","电源及配套");
secondSort[286] = new Array("B2130B","4CF616","低压电器");
secondSort[287] = new Array("B2130B","D72C40","电子元器件组件");
secondSort[288] = new Array("B2130B","E29ED6","电工电器成套设备");
secondSort[289] = new Array("B2130B","2DA4FD","废电子电器");
secondSort[290] = new Array("B2130B","EA0DE4","电动工具");
secondSort[291] = new Array("B2130B","C161C7","仪器仪表");
secondSort[292] = new Array("B2130B","B8AACA","发电机、发电机组");
secondSort[293] = new Array("B2130B","8F8A04","配电、输电设备及材料");
secondSort[294] = new Array("B2130B","570B7A","高压电器");
secondSort[295] = new Array("B2130B","D8C495","电热设备");
secondSort[296] = new Array("B2130B","12AE29","电动机");
secondSort[297] = new Array("B2130B","AC7D21","电子、电工产品制造设备");
secondSort[298] = new Array("B2130B","A4EE96","防静电产品");
secondSort[299] = new Array("B2130B","AE9744","灯具灯饰");
var thirdSort = new Array();thirdSort[0] = new Array("03480E","73B2B7","版材");
thirdSort[1] = new Array("03480E","565F8C","印刷耗材");
thirdSort[2] = new Array("03480E","E5DD3D","文化、印刷用纸");
thirdSort[3] = new Array("03480E","4904C2","橡皮布");
thirdSort[4] = new Array("03480E","F872FE","塑料薄膜");
thirdSort[5] = new Array("03480E","52B41E","镀锡板卷(马口铁)");
thirdSort[6] = new Array("03480E","68A3EA","胶片、胶卷");
thirdSort[7] = new Array("03480E","D9439C","油墨");
thirdSort[8] = new Array("0670AA","7B07DD","床上用品");
thirdSort[9] = new Array("0670AA","6D57AC","毯子");
thirdSort[10] = new Array("0670AA","1A70D9","毛巾");
thirdSort[11] = new Array("0670AA","6B6225","厨房用纺织品");
thirdSort[12] = new Array("0670AA","D81500","装饰用纺织品");
thirdSort[13] = new Array("095A52","B6BFBC","汽车消声器");
thirdSort[14] = new Array("095A52","2142DF","工业噪声控制设备");
thirdSort[15] = new Array("095A52","F92954","其他消音降噪设备");
thirdSort[16] = new Array("095A52","C5169E","隔音、吸声材料");
thirdSort[17] = new Array("0E1317","E8732E","无机酸");
thirdSort[18] = new Array("0E1317","4383A1","无机盐");
thirdSort[19] = new Array("0E1317","921579","其他");
thirdSort[20] = new Array("0E1317","EBEB6F","工业气体");
thirdSort[21] = new Array("0E1317","2E6458","无机碱");
thirdSort[22] = new Array("0E1317","BBDC6E","氧化物");
thirdSort[23] = new Array("0E1317","4EC12F","过氧化物");
thirdSort[24] = new Array("0E1317","1DA16E","单质");
thirdSort[25] = new Array("102D11","E4C475","燃油系统");
thirdSort[26] = new Array("102D11","499A4C","车用仪表");
thirdSort[27] = new Array("102D11","230523","转向系统");
thirdSort[28] = new Array("102D11","AAF6BF","其他");
thirdSort[29] = new Array("102D11","31F863","行驶系统");
thirdSort[30] = new Array("102D11","54C502","电源、点火系统");
thirdSort[31] = new Array("102D11","BF631A","减震系统");
thirdSort[32] = new Array("102D11","975570","轮胎");
thirdSort[33] = new Array("102D11","BB4CD7","制动系统");
thirdSort[34] = new Array("102D11","D47808","传动系统");
thirdSort[35] = new Array("102D11","BB5BCA","冷却系统");
thirdSort[36] = new Array("102D11","E3E3F8","车灯");
thirdSort[37] = new Array("102D11","12097B","发动系统");
thirdSort[38] = new Array("12AE29","304D54","交流电机");
thirdSort[39] = new Array("12AE29","FE783B","直流电机");
thirdSort[40] = new Array("12AE29","7187C2","其他未分类");
thirdSort[41] = new Array("12AE29","C6E39E","特殊电机");
thirdSort[42] = new Array("12AE29","F9EBBC","微电机");
thirdSort[43] = new Array("13F6FE","6E4FF7","碎纸机");
thirdSort[44] = new Array("13F6FE","634074","投影机");
thirdSort[45] = new Array("13F6FE","CB9FE3","传真机");
thirdSort[46] = new Array("13F6FE","FA8BE1","扫描仪");
thirdSort[47] = new Array("13F6FE","3624E4","视讯会议系统");
thirdSort[48] = new Array("13F6FE","5B32EF","打字机、刻字机");
thirdSort[49] = new Array("13F6FE","82A872","打印机");
thirdSort[50] = new Array("13F6FE","78FE7A","复印机");
thirdSort[51] = new Array("13F6FE","7F605A","绘图机");
thirdSort[52] = new Array("13F6FE","437F47","其他文化办公设备");
thirdSort[53] = new Array("1AC505","67B798","保鲜植物");
thirdSort[54] = new Array("1AC505","E315CC","仿真植物");
thirdSort[55] = new Array("1AC505","406FD6","肠衣");
thirdSort[56] = new Array("1AC505","62F108","园艺用具");
thirdSort[57] = new Array("1AC505","D380EC","植物生长调节剂");
thirdSort[58] = new Array("1AC505","B726AA","苗木");
thirdSort[59] = new Array("1AC505","71AD84","花卉");
thirdSort[60] = new Array("1C055D","A97F63","安检门");
thirdSort[61] = new Array("1C055D","A491C8","反偷拍、反材");
thirdSort[62] = new Array("1C055D","0EC86F","其他安全检查设备");
thirdSort[63] = new Array("1C055D","434E4A","安检探测器");
thirdSort[64] = new Array("1D65ED","D4C191","女上装 ");
thirdSort[65] = new Array("1D65ED","01A4BB","孕妇装 ");
thirdSort[66] = new Array("1D65ED","06AAF8","泳装");
thirdSort[67] = new Array("1D65ED","DC4605","其他");
thirdSort[68] = new Array("1D65ED","0880BB","女套装 ");
thirdSort[69] = new Array("1D65ED","1EA52C","女裙 ");
thirdSort[70] = new Array("1D65ED","6CF48A","女裤 ");
thirdSort[71] = new Array("1DFE86","6EA0FF","汽车影音");
thirdSort[72] = new Array("1DFE86","2E74A4","汽车小电器");
thirdSort[73] = new Array("1DFE86","A8BE73","其他");
thirdSort[74] = new Array("1DFE86","0AE872","汽车安全用品");
thirdSort[75] = new Array("1DFE86","72160D","汽车锁");
thirdSort[76] = new Array("1DFE86","3710C2","汽车户外用品");
thirdSort[77] = new Array("227D81","B56B5A","地板");
thirdSort[78] = new Array("227D81","A00E90","建筑陶瓷");
thirdSort[79] = new Array("227D81","955217","壁纸、壁布");
thirdSort[80] = new Array("227D81","DDE396","建筑玻璃");
thirdSort[81] = new Array("227D81","B110F1","窗帘");
thirdSort[82] = new Array("227D81","9EC553","建筑涂料");
thirdSort[83] = new Array("227D81","B22DDD","木质材料");
thirdSort[84] = new Array("227D81","939CFB","其他");
thirdSort[85] = new Array("227D81","4D87E3","装饰线板");
thirdSort[86] = new Array("227D81","9D57D6","地毯");
thirdSort[87] = new Array("227D81","BC4CC6","建筑用粘合剂");
thirdSort[88] = new Array("246D73","BEDEE1","泳裤");
thirdSort[89] = new Array("246D73","D36E02","男裤 ");
thirdSort[90] = new Array("246D73","2FBB20","男上装 ");
thirdSort[91] = new Array("27BDE3","2267B6","胶片、胶卷");
thirdSort[92] = new Array("27BDE3","F7F43F","相纸");
thirdSort[93] = new Array("27BDE3","8CE664","光学仪器");
thirdSort[94] = new Array("27BDE3","B2CF32","光学摄像器材");
thirdSort[95] = new Array("27BDE3","C34A3F","眼镜及配件");
thirdSort[96] = new Array("27BDE3","5FCAFF","光学计量标准器具");
thirdSort[97] = new Array("27BDE3","6C458A","光学摄影器材");
thirdSort[98] = new Array("29B371","D56EF5","丰胸化学品");
thirdSort[99] = new Array("29B371","E25140","香味剂、除臭剂");
thirdSort[100] = new Array("29B371","7C82C2","清洁用品");
thirdSort[101] = new Array("29B371","6EAF01","其他");
thirdSort[102] = new Array("29B371","D52F71","瘦身化学品");
thirdSort[103] = new Array("29B371","4CEE17","毛发用品");
thirdSort[104] = new Array("29B371","37906A","驱虫灭害");
thirdSort[105] = new Array("29B371","5E1142","护肤用品");
thirdSort[106] = new Array("29B371","EB6C1D","彩妆用品");
thirdSort[107] = new Array("2A86AF","E85ACF","一卡通管理系统");
thirdSort[108] = new Array("2A86AF","0D70AD","其他门禁考勤器材及系统");
thirdSort[109] = new Array("2A86AF","E55B91","考勤机");
thirdSort[110] = new Array("2A86AF","CAEDFC","门禁机");
thirdSort[111] = new Array("2A86AF","3C1BE0","门禁控制器");
thirdSort[112] = new Array("2A86AF","FBB0FD","闭门器、开门器");
thirdSort[113] = new Array("2A86AF","CDA1A7","指纹采集仪");
thirdSort[114] = new Array("2A86AF","BFA2C6","门禁考勤系统");
thirdSort[115] = new Array("2A86AF","313DE9","门禁读卡器");
thirdSort[116] = new Array("302E8E","D06893","卡拉OK机");
thirdSort[117] = new Array("302E8E","D3574B","收音、录音机");
thirdSort[118] = new Array("302E8E","9602A4","录像机");
thirdSort[119] = new Array("302E8E","E5C1E9","卡带机");
thirdSort[120] = new Array("302E8E","DE4282","家庭影院");
thirdSort[121] = new Array("305424","886108","钟表");
thirdSort[122] = new Array("305424","EE843C","生活用纸");
thirdSort[123] = new Array("305424","69B71D","婴幼儿用品");
thirdSort[124] = new Array("305424","32BF77","个人护理用具");
thirdSort[125] = new Array("305424","E848F8","清洁用具");
thirdSort[126] = new Array("305424","944C37","雨具、太阳伞");
thirdSort[127] = new Array("305424","6E930B","保温容器");
thirdSort[128] = new Array("305424","CA3CC3","保健用品");
thirdSort[129] = new Array("305424","77D6AA","打火机及烟具");
thirdSort[130] = new Array("31ED42","F8561C","低压电器");
thirdSort[131] = new Array("31ED42","AE5F77","工控系统及装备");
thirdSort[132] = new Array("31ED42","2F82CF","配电输电设备");
thirdSort[133] = new Array("31ED42","90A66B","电动机");
thirdSort[134] = new Array("31ED42","E6B925","高压电器");
thirdSort[135] = new Array("31ED42","7415B1","电子产品制造设备");
thirdSort[136] = new Array("31ED42","CF97B7","发电机、发电机组");
thirdSort[137] = new Array("347D51","EF4AE8","环保厕所 ");
thirdSort[138] = new Array("347D51","61D99E","环卫垃圾桶");
thirdSort[139] = new Array("347D51","483B9B","其他公共环卫设施");
thirdSort[140] = new Array("347D51","17C730","喷洒车");
thirdSort[141] = new Array("347D51","5CB267","垃圾车");
thirdSort[142] = new Array("347D51","7780E0","垃圾处理机");
thirdSort[143] = new Array("347D51","987F3E","垃圾焚烧炉");
thirdSort[144] = new Array("347D51","F45F04","道路清扫车");
thirdSort[145] = new Array("369B81","606B22","无线网络设备");
thirdSort[146] = new Array("369B81","BDE4D6","网络交换机");
thirdSort[147] = new Array("369B81","5C7FF0","中继器");
thirdSort[148] = new Array("369B81","D5EFA9","调制解调器");
thirdSort[149] = new Array("369B81","BFF778","路由器");
thirdSort[150] = new Array("369B81","CA739A","VPN设备");
thirdSort[151] = new Array("369B81","DEE505","网关");
thirdSort[152] = new Array("369B81","B2DA83","光纤设备");
thirdSort[153] = new Array("369B81","EF4346","其他网络设备、配件");
thirdSort[154] = new Array("369B81","1BB78F","网络测试设备");
thirdSort[155] = new Array("369B81","3C78A4","集线器");
thirdSort[156] = new Array("38E703","FAD6C3","棋牌");
thirdSort[157] = new Array("38E703","E84E22","其他");
thirdSort[158] = new Array("38E703","8F0C47","垂钓用品");
thirdSort[159] = new Array("38E703","86B339","旅游服务");
thirdSort[160] = new Array("38E703","E71EC7","乐器");
thirdSort[161] = new Array("38E703","FA1565","游艺设施");
thirdSort[162] = new Array("3B3D31","D08D22","氨纶");
thirdSort[163] = new Array("3B3D31","B6FED9","功能纤维");
thirdSort[164] = new Array("3B3D31","5BF6A6","锦纶");
thirdSort[165] = new Array("3B3D31","F93DA4","人造纤维");
thirdSort[166] = new Array("3B3D31","BE3ADB","其他");
thirdSort[167] = new Array("3B3D31","964B87","涤纶");
thirdSort[168] = new Array("3B3D31","0B7E91","丙纶");
thirdSort[169] = new Array("3B3D31","BB06A1","切片");
thirdSort[170] = new Array("3B3D31","5E9145","腈纶");
thirdSort[171] = new Array("3C2582","3CE593","贵金属盐废料");
thirdSort[172] = new Array("3C2582","57236D","废尼龙");
thirdSort[173] = new Array("3C2582","5BE788","废催化剂");
thirdSort[174] = new Array("3C2582","EFF3BF","废橡胶");
thirdSort[175] = new Array("3C2582","FA9762","废塑料");
thirdSort[176] = new Array("3C2582","1FFDD1","废海绵");
thirdSort[177] = new Array("3D6307","C3C532","传声器");
thirdSort[178] = new Array("3D6307","A35AC7","录音磁头");
thirdSort[179] = new Array("3D6307","93D393","受话器");
thirdSort[180] = new Array("3D6307","817BAB","电声配件");
thirdSort[181] = new Array("3D6307","6278A0","其他");
thirdSort[182] = new Array("3D6307","370196","蜂鸣器");
thirdSort[183] = new Array("3D6307","0F9666","扬声器");
thirdSort[184] = new Array("3EAD08","543FCE","电池");
thirdSort[185] = new Array("3EAD08","A272ED","充电器");
thirdSort[186] = new Array("3EAD08","E6BA1C","开关");
thirdSort[187] = new Array("3EAD08","2CACB2","插座、插头");
thirdSort[188] = new Array("3EAD08","7F1B7D","电源");
thirdSort[189] = new Array("401445","A92CE1","装订用品");
thirdSort[190] = new Array("401445","9504FB","会计用品");
thirdSort[191] = new Array("401445","EE67FC","胶粘用品");
thirdSort[192] = new Array("401445","FD579B","笔类");
thirdSort[193] = new Array("401445","6C60D4","收纳用品");
thirdSort[194] = new Array("401445","18375E","美术用品");
thirdSort[195] = new Array("401445","CBBB7F","绘图文具");
thirdSort[196] = new Array("401445","E6F947","学习文具");
thirdSort[197] = new Array("401445","081E69","簿、本、册");
thirdSort[198] = new Array("401445","7BC104","涂改用品");
thirdSort[199] = new Array("42424D","A2EB87","电视机");
thirdSort[200] = new Array("42424D","CF4E95","其他");
thirdSort[201] = new Array("42424D","E0D76A","碟机");
thirdSort[202] = new Array("42424D","F4F7A6","音响产品");
thirdSort[203] = new Array("42EFD0","6FE7B2","消音降噪设备");
thirdSort[204] = new Array("42EFD0","A6CE5B","污水处理设备");
thirdSort[205] = new Array("42EFD0","B0943B","其他");
thirdSort[206] = new Array("42EFD0","AD65CF","节能设备");
thirdSort[207] = new Array("42EFD0","943762","垃圾焚烧炉");
thirdSort[208] = new Array("434FDC","537FFD","办公用纸");
thirdSort[209] = new Array("434FDC","7DFC02","文化办公设备");
thirdSort[210] = new Array("434FDC","52F9FF","办公家具");
thirdSort[211] = new Array("44210D","4674B1","流苏、穗");
thirdSort[212] = new Array("44210D","979AA0","纺织、印染助剂");
thirdSort[213] = new Array("44210D","C8CBF8","带、绳、线");
thirdSort[214] = new Array("44210D","F93F5D","染料");
thirdSort[215] = new Array("472A56","B0C092","其他");
thirdSort[216] = new Array("472A56","89DD97","健身器材");
thirdSort[217] = new Array("472A56","C77667","休闲家具");
thirdSort[218] = new Array("472A56","6C2EFE","户外用品");
thirdSort[219] = new Array("472A56","92C5BA","行李车");
thirdSort[220] = new Array("472A56","068DDA","烧烤用具");
thirdSort[221] = new Array("472A56","C5DCBE","票务服务");
thirdSort[222] = new Array("472A56","67FF1C","拉杆箱、行李箱");
thirdSort[223] = new Array("475C05","F95E72","制鞋机械");
thirdSort[224] = new Array("475C05","407B1D","整熨洗涤设备");
thirdSort[225] = new Array("475C05","0AA0D9","纺织设备");
thirdSort[226] = new Array("475C05","D3CC94","皮革加工设备");
thirdSort[227] = new Array("475C05","39575F","服装加工设备");
thirdSort[228] = new Array("47E3B5","19F5F1","水龙头");
thirdSort[229] = new Array("47E3B5","A51A43","其他水暖五金");
thirdSort[230] = new Array("47E3B5","EB7D7A","阀门");
thirdSort[231] = new Array("49BBB1","B79236","其他");
thirdSort[232] = new Array("49BBB1","4A47DB","通用塑料");
thirdSort[233] = new Array("49BBB1","A50815","塑料容器");
thirdSort[234] = new Array("49BBB1","2F8663","工程塑料");
thirdSort[235] = new Array("49BBB1","B9C043","塑料薄膜");
thirdSort[236] = new Array("49BBB1","EED646","再生料");
thirdSort[237] = new Array("49BBB1","FCB2AE","色母");
thirdSort[238] = new Array("49BBB1","F644A1","塑料包装用品");
thirdSort[239] = new Array("49BBB1","48EBC6","塑料管");
thirdSort[240] = new Array("49BBB1","FCD8CA","填料");
thirdSort[241] = new Array("4A74F8","803D5C","其他");
thirdSort[242] = new Array("4A74F8","19F861","灶具");
thirdSort[243] = new Array("4A74F8","F7B778","炊具");
thirdSort[244] = new Array("4A74F8","6DA2E0","厨具");
thirdSort[245] = new Array("4A74F8","1A3C3A","餐具");
thirdSort[246] = new Array("4CAEA3","FBB205","其他工程承包");
thirdSort[247] = new Array("4CAEA3","EEAC6D","绿化工程");
thirdSort[248] = new Array("4CAEA3","82D45C","装潢设计");
thirdSort[249] = new Array("4CAEA3","16C636","工程规划");
thirdSort[250] = new Array("4CAEA3","AD32D1","工程施工");
thirdSort[251] = new Array("4CAEA3","3B0E2E","建筑图纸、模型设计");
thirdSort[252] = new Array("4CAEA3","93D836","工程监理");
thirdSort[253] = new Array("4CF616","D4591D","其他低压电器");
thirdSort[254] = new Array("4CF616","0BA7C7","起动器");
thirdSort[255] = new Array("4CF616","2D6520","继电器");
thirdSort[256] = new Array("4CF616","7986D6","低压开关柜");
thirdSort[257] = new Array("4CF616","A421E2","低压接触器");
thirdSort[258] = new Array("4CF616","532C4E","电磁铁");
thirdSort[259] = new Array("4CF616","9ECB8D","低压熔断器");
thirdSort[260] = new Array("4CF616","00D27B","主令电器");
thirdSort[261] = new Array("4CF616","19DEEA","低压断路器");
thirdSort[262] = new Array("4CF616","AC5E2F","电抗器");
thirdSort[263] = new Array("4CF616","F66B61","低压控制器");
thirdSort[264] = new Array("4F75E3","A0A985","裁剪用品");
thirdSort[265] = new Array("4F75E3","85C3A7","书写板、擦");
thirdSort[266] = new Array("4F75E3","3624E6","文具配件");
thirdSort[267] = new Array("4F75E3","860D76","计算器");
thirdSort[268] = new Array("4F75E3","605C22","证卡、奖品");
thirdSort[269] = new Array("4F9E91","15C6F7","橡胶板");
thirdSort[270] = new Array("4F9E91","260DAF","工业用橡(乳)胶制品");
thirdSort[271] = new Array("4F9E91","107690","橡胶片");
thirdSort[272] = new Array("4F9E91","7472A7","文教用橡(乳)胶制品");
thirdSort[273] = new Array("4F9E91","BCA743","合成橡胶");
thirdSort[274] = new Array("4F9E91","3DB816","密封圈");
thirdSort[275] = new Array("4F9E91","7DEE1E","天然橡胶");
thirdSort[276] = new Array("4F9E91","2770EC","医用橡(乳)胶制品");
thirdSort[277] = new Array("4F9E91","BEAD3C","农业用橡(乳)胶制品");
thirdSort[278] = new Array("4F9E91","B584E3","橡胶管");
thirdSort[279] = new Array("4F9E91","E84657","轮胎");
thirdSort[280] = new Array("4F9E91","CF36C7","家用橡(乳)胶制品");
thirdSort[281] = new Array("4F9E91","92DDAB","其他");
thirdSort[282] = new Array("503A60","FCB8A7","环保包装");
thirdSort[283] = new Array("503A60","E9BDB1","礼品包装");
thirdSort[284] = new Array("503A60","20CAAA","日用包装");
thirdSort[285] = new Array("503A60","649573","服装包装");
thirdSort[286] = new Array("503A60","D6A624","食品包装");
thirdSort[287] = new Array("506189","C08354","车载对讲机");
thirdSort[288] = new Array("506189","345752","其他汽车通讯");
thirdSort[289] = new Array("506189","D00D16","车载免提");
thirdSort[290] = new Array("506189","5E350A","GPS定位导航");
thirdSort[291] = new Array("508DA7","0F9F54","武术、拳击、体操");
thirdSort[292] = new Array("508DA7","624B9B","运动护具");
thirdSort[293] = new Array("508DA7","7B6CEE","水上运动用品");
thirdSort[294] = new Array("508DA7","23E8B4","溜冰、滑板、滑雪");
thirdSort[295] = new Array("508DA7","5D4202","球类用品");
thirdSort[296] = new Array("508DA7","C6C426","其他体育用品");
thirdSort[297] = new Array("508DA7","01DFE2","极限运动用品");
thirdSort[298] = new Array("508DA7","6E52D5","体育运动配套产品");
thirdSort[299] = new Array("520A0B","B90446","门夹");
thirdSort[300] = new Array("520A0B","D2830D","门碰、门吸");
thirdSort[301] = new Array("520A0B","26C2A2","其他");
thirdSort[302] = new Array("520A0B","B10750","地弹簧");
thirdSort[303] = new Array("520A0B","1EDE86","拉手");
thirdSort[304] = new Array("520A0B","11BA7C","门窗挂钩");
thirdSort[305] = new Array("520A0B","0A72D5","滑轨、合页、铰链");
thirdSort[306] = new Array("520A0B","365DF5","窗轨、窗帘杆");
thirdSort[307] = new Array("570B7A","AA4768","高压成套电器");
thirdSort[308] = new Array("570B7A","A9135E","高压接触器");
thirdSort[309] = new Array("570B7A","2DDC81","高压断路器");
thirdSort[310] = new Array("570B7A","0E4A9A","高压熔断器");
thirdSort[311] = new Array("570B7A","86A52E","其他高压电器");
thirdSort[312] = new Array("570B7A","F45D71","防雷避雷产品");
thirdSort[313] = new Array("570B7A","91DB6D","高压开关柜");
thirdSort[314] = new Array("5A84D4","0D4C54","印前处理设备");
thirdSort[315] = new Array("5A84D4","39E7BE","印刷配套设备");
thirdSort[316] = new Array("5A84D4","68398A","印刷设备");
thirdSort[317] = new Array("5A84D4","11045E","印后加工设备");
thirdSort[318] = new Array("5AE580","7243F3","淀粉");
thirdSort[319] = new Array("5AE580","DBC855","蜜制品");
thirdSort[320] = new Array("5AE580","41FF23","食品添加剂");
thirdSort[321] = new Array("5AE580","CF2213","面包");
thirdSort[322] = new Array("5AE580","B5A384","果肉、粉、原浆");
thirdSort[323] = new Array("5AE580","7459BA","方便食品");
thirdSort[324] = new Array("5AE580","DB6FDA","咖啡豆、可可");
thirdSort[325] = new Array("5AE580","49D0BF","休闲食品");
thirdSort[326] = new Array("5AE580","00BF5F","保健食品");
thirdSort[327] = new Array("5AE580","FE55C5","土特产");
thirdSort[328] = new Array("5AE580","D827DC","调味品");
thirdSort[329] = new Array("5AE580","AD4D48","乳制品");
thirdSort[330] = new Array("5AE580","C606F5","肉制品");
thirdSort[331] = new Array("5AE580","D74258","豆制品");
thirdSort[332] = new Array("5AE580","C2C155","罐头食品");
thirdSort[333] = new Array("5D1AC6","AAE44F","活动房");
thirdSort[334] = new Array("5D1AC6","3E0166","信报箱");
thirdSort[335] = new Array("5D1AC6","401211","室内照明灯具");
thirdSort[336] = new Array("5D1AC6","505C7F","楼宇设施");
thirdSort[337] = new Array("5D1AC6","3AEC55","不动产");
thirdSort[338] = new Array("5D1AC6","F68381","管道系统");
thirdSort[339] = new Array("5DDFC7","3230B1","建筑、建材类管材");
thirdSort[340] = new Array("5DDFC7","9135EE","建筑、建材类管件");
thirdSort[341] = new Array("5DDFC7","5A08D7","其他");
thirdSort[342] = new Array("5ED049","C9C9F3","仿生仿真工艺品");
thirdSort[343] = new Array("5ED049","FE6904","塑料工艺品");
thirdSort[344] = new Array("5ED049","A872AD","陶瓷工艺品");
thirdSort[345] = new Array("5ED049","013B3C","金属工艺品");
thirdSort[346] = new Array("5ED049","3F0E40","竹木工艺品");
thirdSort[347] = new Array("5ED049","5008AF","民间工艺品");
thirdSort[348] = new Array("5ED049","2F2235","石料工艺品");
thirdSort[349] = new Array("5ED049","B20EEC","雕刻工艺品");
thirdSort[350] = new Array("5ED049","BC7828","水晶工艺品");
thirdSort[351] = new Array("5ED049","9E7FF4","玻璃工艺品");
thirdSort[352] = new Array("5ED049","A692E3","宝石玉石工艺品");
thirdSort[353] = new Array("5ED049","143A5D","其他");
thirdSort[354] = new Array("5F5BEC","1B9DAD","炉料");
thirdSort[355] = new Array("5F5BEC","FA86C5","板(卷)材");
thirdSort[356] = new Array("5F5BEC","05A17D","型材");
thirdSort[357] = new Array("5F5BEC","E7DDFE","钢坯");
thirdSort[358] = new Array("5F5BEC","6671FF","优特钢");
thirdSort[359] = new Array("5F5BEC","23B537","不锈钢材");
thirdSort[360] = new Array("5F5BEC","0B3291","其他");
thirdSort[361] = new Array("5F5BEC","78D382","建筑钢材");
thirdSort[362] = new Array("5F5BEC","2F9198","涂镀产品");
thirdSort[363] = new Array("5F5BEC","66E7C0","管材");
thirdSort[364] = new Array("62A721","984FD8","包装成型机械");
thirdSort[365] = new Array("62A721","B3FECA","包装相关设备");
thirdSort[366] = new Array("62A721","0D5664","包装测试设备");
thirdSort[367] = new Array("633632","B12B94","食用油");
thirdSort[368] = new Array("633632","007E89","植物提取物");
thirdSort[369] = new Array("633632","2775E3","木炭");
thirdSort[370] = new Array("633632","B149D6","蔬菜及制品");
thirdSort[371] = new Array("633632","B24865","竹木、藤苇、干草");
thirdSort[372] = new Array("633632","0F53B6","茶叶及制品");
thirdSort[373] = new Array("633632","EA230C","禽畜肉蛋");
thirdSort[374] = new Array("633632","AD5690","烟草及制品");
thirdSort[375] = new Array("633632","8398DC","化肥、农药");
thirdSort[376] = new Array("633632","28C6C2","坚果、干果");
thirdSort[377] = new Array("633632","839A40","含油子仁、果仁、籽");
thirdSort[378] = new Array("633632","9279D5","米面类");
thirdSort[379] = new Array("633632","18DC2B","粮食");
thirdSort[380] = new Array("633632","B37021","种子、种苗");
thirdSort[381] = new Array("633632","E5EC7D","食用菌");
thirdSort[382] = new Array("633632","B5E576","水果及制品");
thirdSort[383] = new Array("6675B1","68B45A","随身听");
thirdSort[384] = new Array("6675B1","21093F","数码相机、摄像机");
thirdSort[385] = new Array("6675B1","7F7498","便携式碟机");
thirdSort[386] = new Array("6675B1","B9AA53","复读机、学习机");
thirdSort[387] = new Array("6675B1","6F02FA","电子辞典");
thirdSort[388] = new Array("6675B1","AA105E","数码录音笔");
thirdSort[389] = new Array("6675B1","A121C4","MP3、MP4");
thirdSort[390] = new Array("6675B1","4C7DEF","其他");
thirdSort[391] = new Array("6675B1","E82A7B","PDA");
thirdSort[392] = new Array("6675B1","6CD2DA","数码配件");
thirdSort[393] = new Array("66F135","60CDAE","护罩、球罩");
thirdSort[394] = new Array("66F135","93F547","红外线灯");
thirdSort[395] = new Array("66F135","6E92CF","集成监控系统");
thirdSort[396] = new Array("66F135","09346B","解码器");
thirdSort[397] = new Array("66F135","02C1F6","其他监控器材及系统");
thirdSort[398] = new Array("66F135","6A6D7E","记录设备");
thirdSort[399] = new Array("66F135","D6F682","监控摄像机");
thirdSort[400] = new Array("66F135","767CC4","监视器");
thirdSort[401] = new Array("66F135","6AA79B","编码器");
thirdSort[402] = new Array("66F135","8493DF","监控器支架");
thirdSort[403] = new Array("66F135","171305","矩阵");
thirdSort[404] = new Array("66F135","33E1C8","镜头");
thirdSort[405] = new Array("66F135","96E203","画面处理器");
thirdSort[406] = new Array("66F135","8AD859","监控主机");
thirdSort[407] = new Array("66F135","DF19D0","云台");
thirdSort[408] = new Array("66F135","CF062C","光端机");
thirdSort[409] = new Array("693064","C9E76D","过滤设备");
thirdSort[410] = new Array("693064","4E25B1","粉碎设备");
thirdSort[411] = new Array("693064","985AC8","内燃机");
thirdSort[412] = new Array("693064","F1E2C4","清洗、清理设备");
thirdSort[413] = new Array("693064","8AE63E","输送设备");
thirdSort[414] = new Array("693064","3C964E","电热设备");
thirdSort[415] = new Array("693064","418DD3","换热、制冷空调设备");
thirdSort[416] = new Array("693064","BB624A","机床");
thirdSort[417] = new Array("693064","736DB3","电焊、切割设备");
thirdSort[418] = new Array("693064","739757","泵");
thirdSort[419] = new Array("693064","B46F3D","其他");
thirdSort[420] = new Array("693064","A72868","减速机、变速机");
thirdSort[421] = new Array("693064","C47748","制冷设备");
thirdSort[422] = new Array("693064","392568","压缩、分离设备");
thirdSort[423] = new Array("693064","1F2B9A","干燥设备");
thirdSort[424] = new Array("693064","1687B6","风机、排风设备");
thirdSort[425] = new Array("693064","2D8622","液压机械及部件");
thirdSort[426] = new Array("693064","45CD6E","工业锅炉及配件");
thirdSort[427] = new Array("6DBF95","682071","其他");
thirdSort[428] = new Array("6DBF95","252D36","催化剂");
thirdSort[429] = new Array("6DBF95","C98EC8","饲料添加剂");
thirdSort[430] = new Array("6DBF95","DC1CC9","胶粘剂");
thirdSort[431] = new Array("6DBF95","1EF838","塑料助剂");
thirdSort[432] = new Array("6DBF95","63B6FE","吸附剂");
thirdSort[433] = new Array("6DBF95","5FE9CF","合成材料助剂");
thirdSort[434] = new Array("6DBF95","1C4D8D","食品添加剂");
thirdSort[435] = new Array("6DBF95","F89AAC","橡胶助剂");
thirdSort[436] = new Array("713526","A80533","门");
thirdSort[437] = new Array("713526","30E1D5","门窗五金");
thirdSort[438] = new Array("713526","D697D5","窗");
thirdSort[439] = new Array("713526","DF50B7","锁具");
thirdSort[440] = new Array("7752FC","820C9C","生皮、毛皮");
thirdSort[441] = new Array("7752FC","C03B41","禽业");
thirdSort[442] = new Array("7752FC","B67400","饲料添加剂");
thirdSort[443] = new Array("7752FC","C61196","饲料");
thirdSort[444] = new Array("7752FC","768157","动物毛鬃");
thirdSort[445] = new Array("7752FC","A97055","牲畜");
thirdSort[446] = new Array("7752FC","8BFB14","畜用药");
thirdSort[447] = new Array("7752FC","498A75","宠物");
thirdSort[448] = new Array("7752FC","787FB1","动物提取物");
thirdSort[449] = new Array("7752FC","1D9EFF","羽毛、羽绒");
thirdSort[450] = new Array("7A1BA5","1FC563","其他工艺用五金工具");
thirdSort[451] = new Array("7A1BA5","776639","雕刻工具");
thirdSort[452] = new Array("7A1BA5","2264F8","钟表工具");
thirdSort[453] = new Array("7A1BA5","D5C9D9","陶艺器具");
thirdSort[454] = new Array("7A27CE","129502","铝制品");
thirdSort[455] = new Array("7A27CE","ADEAAA","其他");
thirdSort[456] = new Array("7A27CE","218E8F","铜制品");
thirdSort[457] = new Array("7A27CE","514F08","有色金属合金");
thirdSort[458] = new Array("7E5E90","DD4638","通信线缆");
thirdSort[459] = new Array("7E5E90","967D85","其他");
thirdSort[460] = new Array("7E5E90","CE739C","接入设备");
thirdSort[461] = new Array("7E5E90","D18533","接续设备");
thirdSort[462] = new Array("7E5E90","9A3999","传输、交换设备");
thirdSort[463] = new Array("8237F9","B16860","化工管道及配件");
thirdSort[464] = new Array("8237F9","BEF5E3","储运设备");
thirdSort[465] = new Array("8237F9","D7B059","其他");
thirdSort[466] = new Array("8237F9","DD1FC9","传热设备");
thirdSort[467] = new Array("8237F9","789164","反应设备");
thirdSort[468] = new Array("8237F9","A453A9","传质设备");
thirdSort[469] = new Array("8237F9","0CF9EF","混合设备");
thirdSort[470] = new Array("8237F9","5ECAFA","结晶设备");
thirdSort[471] = new Array("829227","E00A69","建材生产加工机械");
thirdSort[472] = new Array("829227","1FDCB0","工程与建筑机械");
thirdSort[473] = new Array("829227","61D04A","其他");
thirdSort[474] = new Array("829593","D9CEE9","化工废料");
thirdSort[475] = new Array("829593","5FF927","纺织废料");
thirdSort[476] = new Array("829593","710D87","皮革废料");
thirdSort[477] = new Array("829593","907A24","废电子电器");
thirdSort[478] = new Array("829593","964FD9","废纸");
thirdSort[479] = new Array("829593","BEC723","其他");
thirdSort[480] = new Array("829848","D5CCC0","空气净化器");
thirdSort[481] = new Array("829848","8F1D6A","废气处理成套设备");
thirdSort[482] = new Array("829848","F9820A","尾气处理装置");
thirdSort[483] = new Array("829848","757558","脱硫除尘设备");
thirdSort[484] = new Array("829848","730DC2","其他");
thirdSort[485] = new Array("829848","18103A","酸雾净化器");
thirdSort[486] = new Array("829848","EAEB8E","废气吸附装置");
thirdSort[487] = new Array("829848","561ACF","油烟净化设备");
thirdSort[488] = new Array("8628E2","DEE30D","其他");
thirdSort[489] = new Array("8628E2","C4509D","湿度调节器");
thirdSort[490] = new Array("8628E2","DF9877","垃圾处理机");
thirdSort[491] = new Array("8628E2","454FFE","电吹风");
thirdSort[492] = new Array("8628E2","DA4504","电驱蚊器");
thirdSort[493] = new Array("8628E2","BEF631","电暖器、取暖器");
thirdSort[494] = new Array("8628E2","601E76","空气净化器");
thirdSort[495] = new Array("8628E2","FA0BCB","电熨斗");
thirdSort[496] = new Array("8628E2","C1851F","理发器");
thirdSort[497] = new Array("8628E2","F3909D","电热毯");
thirdSort[498] = new Array("8628E2","371C02","吸尘器");
thirdSort[499] = new Array("86399D","8E32E8","办公家具");
thirdSort[500] = new Array("86399D","3870F5","室内家具");
thirdSort[501] = new Array("86399D","A4A394","学校家具");
thirdSort[502] = new Array("86399D","91F2B2","公共场所家具");
thirdSort[503] = new Array("86399D","59EABC","庭院、户外休闲家具");
thirdSort[504] = new Array("86399D","69DCB6","儿童家具");
thirdSort[505] = new Array("86399D","6A278E","酒店家具");
thirdSort[506] = new Array("86399D","74D398","家具配件附件");
thirdSort[507] = new Array("906BA1","2F83E1","皮带及配件");
thirdSort[508] = new Array("906BA1","02FF2C","流苏、穗 ");
thirdSort[509] = new Array("906BA1","E58360","花边 ");
thirdSort[510] = new Array("906BA1","E3DC1C","衬料 ");
thirdSort[511] = new Array("906BA1","631E1E","肩垫 ");
thirdSort[512] = new Array("906BA1","8E91FA","带、绳、线 ");
thirdSort[513] = new Array("906BA1","C0A0BB","纽扣 ");
thirdSort[514] = new Array("906BA1","9CBCD6","其他服装辅料 ");
thirdSort[515] = new Array("906BA1","1AA177","洗涤标、商标 ");
thirdSort[516] = new Array("906BA1","39F9B4","拉链 ");
thirdSort[517] = new Array("90F374","8E1550","有色金属矿产");
thirdSort[518] = new Array("90F374","0DC0E2","黑色金属矿产");
thirdSort[519] = new Array("90F374","434B45","非金属矿物制品");
thirdSort[520] = new Array("90F374","0B6197","非金属矿产");
thirdSort[521] = new Array("90F374","FDB9FC","其他");
thirdSort[522] = new Array("919A00","145326","防火设备");
thirdSort[523] = new Array("919A00","3E0FC4","其他消防设备");
thirdSort[524] = new Array("919A00","727B40","消防警示标志");
thirdSort[525] = new Array("919A00","C73B14","灭火器材");
thirdSort[526] = new Array("919A00","B2F6EA","火警探测、报警设备");
thirdSort[527] = new Array("921032","0DC082","橡胶机械");
thirdSort[528] = new Array("921032","254C30","塑料机械");
thirdSort[529] = new Array("921032","E67F4C","其他");
thirdSort[530] = new Array("92BA18","72BFC5","电镀");
thirdSort[531] = new Array("92BA18","F1F21A","化学镀");
thirdSort[532] = new Array("92BA18","302469","前处理液");
thirdSort[533] = new Array("932380","BE0C4A","书籍");
thirdSort[534] = new Array("932380","C59872","台历");
thirdSort[535] = new Array("932380","C2646E","图片、画册");
thirdSort[536] = new Array("932380","10DFEE","挂历");
thirdSort[537] = new Array("932380","C032EF","电子读物");
thirdSort[538] = new Array("932380","51C268","期刊、报纸");
thirdSort[539] = new Array("932380","D2200E","音像制品");
thirdSort[540] = new Array("992D28","EEEAA5","文胸");
thirdSort[541] = new Array("992D28","EB5F4A","睡衣");
thirdSort[542] = new Array("992D28","4CA646","内裤");
thirdSort[543] = new Array("992D28","301EA1","浴衣");
thirdSort[544] = new Array("9A44CB","44FF33","道路减速设备");
thirdSort[545] = new Array("9A44CB","B5F33F","交通指挥设备");
thirdSort[546] = new Array("9A44CB","D0E727","反光材料");
thirdSort[547] = new Array("9A44CB","F4598E","其他交通安全设备");
thirdSort[548] = new Array("9A44CB","CBC558","交通安全标志");
thirdSort[549] = new Array("9A44CB","54CBCE","隔离栅、栏、网");
thirdSort[550] = new Array("9A44CB","8D5555","交通安全服装");
thirdSort[551] = new Array("9A44CB","B9B6C4","交通警示灯");
thirdSort[552] = new Array("9A44CB","844EF8","防撞设施");
thirdSort[553] = new Array("9A44CB","ED854B","路障");
thirdSort[554] = new Array("9A44CB","2E0000","安全凸面镜");
thirdSort[555] = new Array("9C1393","BD617C","太阳能及再生能源");
thirdSort[556] = new Array("9C1393","115158","天然气");
thirdSort[557] = new Array("9C1393","CEE93A","煤及制品");
thirdSort[558] = new Array("9C1393","DE667F","发电机、发电机组");
thirdSort[559] = new Array("9C1393","BBF6B0","润滑油(脂)");
thirdSort[560] = new Array("9C1393","59B324","石油及制品");
thirdSort[561] = new Array("9C1393","31668B","电池、充电器");
thirdSort[562] = new Array("9C1393","FD78EE","沼气设备");
thirdSort[563] = new Array("9C1393","31EBB4","燃气设备");
thirdSort[564] = new Array("9C1393","E3FFB0","风能设备");
thirdSort[565] = new Array("9C1393","50B5AB","UPS与电源");
thirdSort[566] = new Array("9C1393","5A31C5","生物能源");
thirdSort[567] = new Array("9CB43B","DC50A8","匠作工具");
thirdSort[568] = new Array("9CB43B","4C0F5D","超市购物车");
thirdSort[569] = new Array("9CB43B","F26510","建材生产加工机械");
thirdSort[570] = new Array("9CB43B","059B90","陶瓷生产加工机械");
thirdSort[571] = new Array("9CB43B","D259A2","作业保护");
thirdSort[572] = new Array("9CB43B","956636","其他未分类");
thirdSort[573] = new Array("9CB43B","D03661","工程与建筑机械");
thirdSort[574] = new Array("9EED34","D5F654","半导体材料");
thirdSort[575] = new Array("9EED34","72B633","压电晶体材料");
thirdSort[576] = new Array("9EED34","75593C","屏蔽材料");
thirdSort[577] = new Array("9EED34","47E4F3","绝缘材料");
thirdSort[578] = new Array("9EED34","45C9EC","磁性材料");
thirdSort[579] = new Array("9EED34","38E354","覆铜板材料");
thirdSort[580] = new Array("9EED34","0AE7DC","电子浆料");
thirdSort[581] = new Array("9EED34","768197","焊接材料与附件");
thirdSort[582] = new Array("9EED34","5F2A55","电子工业用助剂");
thirdSort[583] = new Array("9EED34","C7CE3A","电工陶瓷材料");
thirdSort[584] = new Array("9EED34","163B63","电子五金件");
thirdSort[585] = new Array("9F154A","D865C8","汽车装潢外饰用品");
thirdSort[586] = new Array("9F154A","F9A00E","汽车装潢内饰用品");
thirdSort[587] = new Array("A061EC","D6E72F","遥控器");
thirdSort[588] = new Array("A061EC","294687","电源连接器");
thirdSort[589] = new Array("A061EC","53ACC2","插座");
thirdSort[590] = new Array("A061EC","B82FD3","插头");
thirdSort[591] = new Array("A6A8A5","FDC134","跳线架");
thirdSort[592] = new Array("A6A8A5","E3F297","水晶头");
thirdSort[593] = new Array("A6A8A5","5CB642","理线架");
thirdSort[594] = new Array("A6A8A5","4064D4","穿线管");
thirdSort[595] = new Array("A6A8A5","4D8BA7","信息面板");
thirdSort[596] = new Array("A6A8A5","FB8ED2","配线架");
thirdSort[597] = new Array("A6A8A5","4E8A79","网络机柜");
thirdSort[598] = new Array("A6A8A5","2CD4E2","线槽");
thirdSort[599] = new Array("A6A8A5","219816","线卡、线扣");
thirdSort[600] = new Array("A95947","941030","酚类");
thirdSort[601] = new Array("A95947","659C34","酮类");
thirdSort[602] = new Array("A95947","D0415E","醇类");
thirdSort[603] = new Array("A95947","486D5D","醛及衍生物");
thirdSort[604] = new Array("A95947","ADFE01","烷烃及衍生物");
thirdSort[605] = new Array("A95947","7D5CFB","芳香烃衍生酸酐");
thirdSort[606] = new Array("A95947","08E02F","其他");
thirdSort[607] = new Array("A95947","8E5397","炔烃及衍生物");
thirdSort[608] = new Array("A95947","10B0F5","醚类");
thirdSort[609] = new Array("A95947","A99FAA","砜");
thirdSort[610] = new Array("A95947","2B33B8","酐类");
thirdSort[611] = new Array("A95947","8AF43F","羧酸盐");
thirdSort[612] = new Array("A95947","656EC1","酯类");
thirdSort[613] = new Array("ABA2FA","02F6E2","检测设备");
thirdSort[614] = new Array("ABA2FA","A1FD0A","防护保养品");
thirdSort[615] = new Array("ABA2FA","F5C631","维护工具");
thirdSort[616] = new Array("ABA2FA","77D985","维修设备");
thirdSort[617] = new Array("AEE629","D8FF42","手机饰品");
thirdSort[618] = new Array("AEE629","D139B8","时尚配饰");
thirdSort[619] = new Array("AEE629","DD2978","钥匙扣、链、绳带");
thirdSort[620] = new Array("AEE629","755FAD","其他");
thirdSort[621] = new Array("AEE629","41E092","摆(挂)件饰品");
thirdSort[622] = new Array("AF88FB","173B01","装饰用纺织品");
thirdSort[623] = new Array("AF88FB","E2FB7C","毯子");
thirdSort[624] = new Array("AF88FB","785FA2","厨房用纺织品");
thirdSort[625] = new Array("AF88FB","E521C0","毛巾、浴巾");
thirdSort[626] = new Array("AF88FB","28B84A","床上用品");
thirdSort[627] = new Array("B23965","F98312","其他");
thirdSort[628] = new Array("B23965","868825","音频、视频插座");
thirdSort[629] = new Array("B23965","EDBC64","电源、线材");
thirdSort[630] = new Array("B23965","454528","解码器");
thirdSort[631] = new Array("B23965","6E173E","音频线、视频线");
thirdSort[632] = new Array("B23965","FC92A5","麦克风、话筒");
thirdSort[633] = new Array("B23965","59C6E3","音频、视频插头");
thirdSort[634] = new Array("B23965","211A8C","耳机");
thirdSort[635] = new Array("B2D4A0","15A128","鲜活水产品");
thirdSort[636] = new Array("B2D4A0","37BA3F","水产制品");
thirdSort[637] = new Array("B71A37","AE5F6A","合成树脂");
thirdSort[638] = new Array("B71A37","A2B95B","其他");
thirdSort[639] = new Array("B71A37","0742AC","化学纤维");
thirdSort[640] = new Array("B71A37","DBB5CE","天然树脂");
thirdSort[641] = new Array("BAC118","62F41A","水暖五金");
thirdSort[642] = new Array("BAC118","4A22DB","台面");
thirdSort[643] = new Array("BAC118","0E2628","座厕及配件");
thirdSort[644] = new Array("BAC118","8AA2DD","浴缸及配件");
thirdSort[645] = new Array("BAC118","3C9203","面盆及配件");
thirdSort[646] = new Array("BAC118","27CE8A","厨房设施");
thirdSort[647] = new Array("BAC118","2873F4","镜台");
thirdSort[648] = new Array("BAC118","7C6E39","其他");
thirdSort[649] = new Array("BAC118","7A80B3","淋浴房、淋浴器");
thirdSort[650] = new Array("BAC118","413460","浴室柜");
thirdSort[651] = new Array("BAC118","BEC30F","卫浴用五金件");
thirdSort[652] = new Array("BC8224","A37823","麻类系列面料");
thirdSort[653] = new Array("BC8224","8E9D5F","棉类系列面料");
thirdSort[654] = new Array("BC8224","42929E","混纺、交织类面料");
thirdSort[655] = new Array("BC8224","D75BED","毛纺系列面料");
thirdSort[656] = new Array("BC8224","59B213","丝绸系列面料");
thirdSort[657] = new Array("BC8224","344B77","化纤面料");
thirdSort[658] = new Array("BC8224","B855A9","其他面料");
thirdSort[659] = new Array("BC8224","A6B19D","针织面料");
thirdSort[660] = new Array("C161C7","0F630D","测量仪器仪表");
thirdSort[661] = new Array("C161C7","B551C9","分析仪器");
thirdSort[662] = new Array("C161C7","2CCD5B","其他");
thirdSort[663] = new Array("C161C7","DF033E","光学仪器");
thirdSort[664] = new Array("C161C7","981E6A","检测仪器仪表");
thirdSort[665] = new Array("C161C7","58D29E","仪器仪表配附件");
thirdSort[666] = new Array("C161C7","A15956","专用仪器仪表");
thirdSort[667] = new Array("C161C7","F5BFD8","电工仪器仪表");
thirdSort[668] = new Array("C49190","CBA4B3","咖啡机");
thirdSort[669] = new Array("C49190","BA437A","搅拌机、榨汁机");
thirdSort[670] = new Array("C49190","4A1F37","电饭煲、电饭锅");
thirdSort[671] = new Array("C49190","F221C8","微波炉、烤箱");
thirdSort[672] = new Array("C49190","A87158","饮水机、家用净水器");
thirdSort[673] = new Array("C49190","BA76C2","干手机");
thirdSort[674] = new Array("C49190","E8EE25","消毒柜、洗碗机");
thirdSort[675] = new Array("C49190","99DF49","其他");
thirdSort[676] = new Array("C49190","DE731B","热得快");
thirdSort[677] = new Array("C49190","AD10F6","排气、换气扇");
thirdSort[678] = new Array("C49190","D6C2CA","浴霸");
thirdSort[679] = new Array("C49190","8BD095","给皂液机");
thirdSort[680] = new Array("C49190","4B0C42","抽油烟机");
thirdSort[681] = new Array("C49190","5C9BDE","电热壶、电热杯");
thirdSort[682] = new Array("C49190","9A4C69","电磁炉、电热炉");
thirdSort[683] = new Array("C4CF1B","3CFF3C","农业机械");
thirdSort[684] = new Array("C4CF1B","7A9F8C","食品、饮料加工设备");
thirdSort[685] = new Array("C4E8FB","A4CC9A","齿轮");
thirdSort[686] = new Array("C4E8FB","3D6974","滑轮");
thirdSort[687] = new Array("C4E8FB","E469CE","滚筒");
thirdSort[688] = new Array("C4E8FB","717F26","接头");
thirdSort[689] = new Array("C4E8FB","6C1CDB","脚轮、万向轮");
thirdSort[690] = new Array("C4E8FB","6EE4C8","喷嘴、喷头");
thirdSort[691] = new Array("C4E8FB","4F67E7","吊钩、抓钩");
thirdSort[692] = new Array("C4E8FB","82474E","钢珠、滚珠");
thirdSort[693] = new Array("C4E8FB","479E97","其他五金配件");
thirdSort[694] = new Array("C4E8FB","850CA6","索具");
thirdSort[695] = new Array("C85775","D66777","工业用动植物油");
thirdSort[696] = new Array("C85775","EF7428","特种养殖动物");
thirdSort[697] = new Array("C85775","5C6EFF","农副产品加工");
thirdSort[698] = new Array("C8E3EB","E0FBDA","包装相关设备");
thirdSort[699] = new Array("C8E3EB","A8316B","其他");
thirdSort[700] = new Array("C8E3EB","883A42","造纸设备");
thirdSort[701] = new Array("C8E3EB","076C74","印刷机");
thirdSort[702] = new Array("C8E3EB","4CADB9","纸加工机械");
thirdSort[703] = new Array("CA3020","7667B1","工控电脑产品");
thirdSort[704] = new Array("CA3020","8D82FD","笔记本电脑");
thirdSort[705] = new Array("CA3020","0E2F2D","台式机");
thirdSort[706] = new Array("CA3020","0ACDFF","服务器、工作站");
thirdSort[707] = new Array("CDCB02","901830","袜子");
thirdSort[708] = new Array("CDCB02","04F43B","领带");
thirdSort[709] = new Array("CDCB02","5272A8","披肩");
thirdSort[710] = new Array("CDCB02","3C3908","帽子");
thirdSort[711] = new Array("CDCB02","6367A5","围巾");
thirdSort[712] = new Array("CDCB02","0595AB","腰带");
thirdSort[713] = new Array("CDCB02","EF0E64","手套");
thirdSort[714] = new Array("CDCB02","A4D37A","箱包");
thirdSort[715] = new Array("CDCB02","03C8A2","眼镜");
thirdSort[716] = new Array("CDCB02","78D212","丝巾");
thirdSort[717] = new Array("CF677B","E577D6","停车场设备");
thirdSort[718] = new Array("CF677B","42B183","轨道交通设备器材");
thirdSort[719] = new Array("CF677B","4994DC","交通安全设备");
thirdSort[720] = new Array("CFF698","EC5910","汽车玻璃");
thirdSort[721] = new Array("CFF698","7AE34D","其他");
thirdSort[722] = new Array("CFF698","68C0B3","座椅");
thirdSort[723] = new Array("CFF698","1242D8","汽车天窗");
thirdSort[724] = new Array("CFF698","984FF9","雨刮片");
thirdSort[725] = new Array("CFF698","03770E","遮阳板");
thirdSort[726] = new Array("CFF698","E8F045","镜类");
thirdSort[727] = new Array("CFF698","370B9E","内饰件");
thirdSort[728] = new Array("CFF698","0A2B6C","安全气囊");
thirdSort[729] = new Array("CFF698","91830D","安全带");
thirdSort[730] = new Array("D15E13","88FA4B","其他");
thirdSort[731] = new Array("D15E13","B67D14","洗涤用品");
thirdSort[732] = new Array("D15E13","185F15","香精/香料");
thirdSort[733] = new Array("D15E13","7AA07D","护肤、化妆品");
thirdSort[734] = new Array("D15E13","2419A2","驱虫灭害化学品");
thirdSort[735] = new Array("D15FCF","0DAFA9","电话卡");
thirdSort[736] = new Array("D15FCF","6F8823","RF模块");
thirdSort[737] = new Array("D15FCF","6A0419","移动电话");
thirdSort[738] = new Array("D15FCF","E63F7B","固定电话");
thirdSort[739] = new Array("D15FCF","05E354","传真机");
thirdSort[740] = new Array("D15FCF","95B38A","对讲机");
thirdSort[741] = new Array("D15FCF","DAC836","天线");
thirdSort[742] = new Array("D15FCF","02DFA1","电话机配附件");
thirdSort[743] = new Array("D15FCF","9FA1DA","GPS系统");
thirdSort[744] = new Array("D15FCF","611D75","移动电话配附件");
thirdSort[745] = new Array("D32EE8","C48286","喷涂工具");
thirdSort[746] = new Array("D32EE8","4BBA5C","工具包、工具箱");
thirdSort[747] = new Array("D32EE8","91AA5C","钳子");
thirdSort[748] = new Array("D32EE8","9EF8AE","其他钳工工具");
thirdSort[749] = new Array("D32EE8","D48C18","其他未分类");
thirdSort[750] = new Array("D32EE8","CC654A","防爆工具");
thirdSort[751] = new Array("D32EE8","A6B513","丝锥、板牙");
thirdSort[752] = new Array("D32EE8","E83418","扳手");
thirdSort[753] = new Array("D32EE8","C7E347","螺丝刀");
thirdSort[754] = new Array("D32EE8","A83070","打气筒");
thirdSort[755] = new Array("D32EE8","25D6F2","组合工具");
thirdSort[756] = new Array("D3B367","3FB1EB","其他");
thirdSort[757] = new Array("D3B367","9FF5BF","玻璃机械");
thirdSort[758] = new Array("D3B367","22882C","金融专用设备");
thirdSort[759] = new Array("D3B367","823956","玩具加工设备");
thirdSort[760] = new Array("D3B367","DFFDAF","涂装设备");
thirdSort[761] = new Array("D3B367","8A8A7C","家具制造机械");
thirdSort[762] = new Array("D3B367","8C54D2","工艺礼品加工设备");
thirdSort[763] = new Array("D3B367","F01E01","商业专业设备");
thirdSort[764] = new Array("D72C40","FBA1B4","变频器、分频器");
thirdSort[765] = new Array("D72C40","BCFA94","变压器、稳压器");
thirdSort[766] = new Array("D72C40","F5D18A","连接器");
thirdSort[767] = new Array("D72C40","D11591","保险元器件");
thirdSort[768] = new Array("D72C40","165162","电位器");
thirdSort[769] = new Array("D72C40","FD33D8","继电器");
thirdSort[770] = new Array("D72C40","ED79EA","频率元件");
thirdSort[771] = new Array("D72C40","18325B","开关元件");
thirdSort[772] = new Array("D72C40","615AD7","二极管、三极管");
thirdSort[773] = new Array("D72C40","28F501","集成电路");
thirdSort[774] = new Array("D72C40","0904B2","电感器、传感器");
thirdSort[775] = new Array("D72C40","C9BB2E","电容器");
thirdSort[776] = new Array("D72C40","803098","其他未分类");
thirdSort[777] = new Array("D72C40","98A796","场效应管");
thirdSort[778] = new Array("D72C40","221A7E","线路板、线圈");
thirdSort[779] = new Array("D72C40","6C86B7","工业编码器");
thirdSort[780] = new Array("D72C40","887D3E","显示器件");
thirdSort[781] = new Array("D72C40","CAB84A","电阻器");
thirdSort[782] = new Array("D72C40","FB9431","光电子、激光器件");
thirdSort[783] = new Array("D72C40","DC4DE2","整流器、逆变器");
thirdSort[784] = new Array("D72C40","59156A","放大器");
thirdSort[785] = new Array("DBCEE9","70C2B9","光驱元组件");
thirdSort[786] = new Array("DBCEE9","5996C7","光盘材料");
thirdSort[787] = new Array("DBCEE9","B9FD40","光盘检测设备");
thirdSort[788] = new Array("DBCEE9","66F359","光驱检测设备");
thirdSort[789] = new Array("E221C6","371535","玩具车");
thirdSort[790] = new Array("E221C6","1383CE","童车及配件");
thirdSort[791] = new Array("E221C6","00774C","电子玩具");
thirdSort[792] = new Array("E221C6","7536A0","木制玩具");
thirdSort[793] = new Array("E221C6","D5E291","玩具配件");
thirdSort[794] = new Array("E221C6","ED5DE5","娃娃");
thirdSort[795] = new Array("E221C6","08FF39","填充、绒毛玩具");
thirdSort[796] = new Array("E221C6","5BF32B","塑料玩具");
thirdSort[797] = new Array("E221C6","151884","电动玩具");
thirdSort[798] = new Array("E221C6","0F2A91","其他未分类");
thirdSort[799] = new Array("E221C6","621906","模型玩具");
thirdSort[800] = new Array("E221C6","10B1B7","玩具枪");
thirdSort[801] = new Array("E221C6","08B416","玩具珠、球");
thirdSort[802] = new Array("E221C6","D92F52","益智玩具");
thirdSort[803] = new Array("E51CCF","7A7A92","防护鞋");
thirdSort[804] = new Array("E51CCF","050287","软梯、逃生梯");
thirdSort[805] = new Array("E51CCF","324715","防护耳塞耳罩");
thirdSort[806] = new Array("E51CCF","FFF682","防护面罩面具");
thirdSort[807] = new Array("E51CCF","2140EF","安全带、安全绳");
thirdSort[808] = new Array("E51CCF","AB8FBB","防护手套");
thirdSort[809] = new Array("E51CCF","605983","其他作业保护");
thirdSort[810] = new Array("E51CCF","3E78D0","防护服");
thirdSort[811] = new Array("E51CCF","7701AF","安全网");
thirdSort[812] = new Array("E51CCF","916D8B","安全帽");
thirdSort[813] = new Array("E51CCF","FDADD2","防护眼镜眼罩");
thirdSort[814] = new Array("E546DE","3AE438","家用衡器");
thirdSort[815] = new Array("E546DE","F9D384","其他");
thirdSort[816] = new Array("E546DE","1BDE29","缝纫编织");
thirdSort[817] = new Array("E546DE","8A1078","收纳用具");
thirdSort[818] = new Array("E546DE","802D8B","衣架、衣夹");
thirdSort[819] = new Array("E88042","4CC3D1","商用车");
thirdSort[820] = new Array("E88042","950DCA","乘用车");
thirdSort[821] = new Array("E88042","50FE0E","摩托车及配附件");
thirdSort[822] = new Array("E88042","6250F0","船舶及配件");
thirdSort[823] = new Array("E88042","78773D","电动车及配件");
thirdSort[824] = new Array("E88042","148DD7","非机动车及配件");
thirdSort[825] = new Array("E88042","C58D82","拖拉机及配件");
thirdSort[826] = new Array("E88042","FBEB7D","其他专用汽车");
thirdSort[827] = new Array("EA3BB4","28289D","硬盘");
thirdSort[828] = new Array("EA3BB4","982663","U盘");
thirdSort[829] = new Array("EA3BB4","BD4EDF","移动硬盘");
thirdSort[830] = new Array("EA3BB4","888DD6","闪存卡");
thirdSort[831] = new Array("EA3BB4","9D6A87","光盘、磁盘");
thirdSort[832] = new Array("EA8E00","5B1D9C","麻类");
thirdSort[833] = new Array("EA8E00","5C7D54","羽毛、羽绒");
thirdSort[834] = new Array("EA8E00","7DE0DF","棉类");
thirdSort[835] = new Array("EA8E00","DBFF65","蚕茧、蚕丝");
thirdSort[836] = new Array("EA8E00","12127F","其他天然纺织原料");
thirdSort[837] = new Array("EB3AC6","2C026F","造纸助剂");
thirdSort[838] = new Array("EB3AC6","2A1F80","纸浆");
thirdSort[839] = new Array("EB3AC6","A2548E","废纸");
thirdSort[840] = new Array("EFF40A","3A4D09","水泥");
thirdSort[841] = new Array("EFF40A","5A27F1","保温、隔热材料");
thirdSort[842] = new Array("EFF40A","506178","塑料建材");
thirdSort[843] = new Array("EFF40A","EE339B","工地施工材料");
thirdSort[844] = new Array("EFF40A","96F2E8","石材石料");
thirdSort[845] = new Array("EFF40A","974404","金属建材");
thirdSort[846] = new Array("EFF40A","C3187C","防水、防潮材料");
thirdSort[847] = new Array("EFF40A","00CBE8","其他");
thirdSort[848] = new Array("EFF40A","9D6724","钢结构");
thirdSort[849] = new Array("EFF40A","D5355A","耐火、防火材料");
thirdSort[850] = new Array("EFF40A","6C0746","砖瓦及砌块");
thirdSort[851] = new Array("EFF40A","8E9448","砂浆");
thirdSort[852] = new Array("EFF40A","AE001D","隔音、吸声材料");
thirdSort[853] = new Array("EFF40A","6A9AE7","沥青");
thirdSort[854] = new Array("EFF40A","E07373","特种建材");
thirdSort[855] = new Array("EFF40A","22FAB3","隔断与吊顶");
thirdSort[856] = new Array("EFF40A","34C387","绝缘材料");
thirdSort[857] = new Array("EFF40A","F04EF0","石灰、石膏");
thirdSort[858] = new Array("F2F6DE","6E4037","其他");
thirdSort[859] = new Array("F2F6DE","32E5D3","家用陶瓷、搪瓷制品");
thirdSort[860] = new Array("F2F6DE","0F4634","家用金属制品");
thirdSort[861] = new Array("F2F6DE","8CDF10","家用竹、木制品");
thirdSort[862] = new Array("F2F6DE","6A2C1D","家用塑料制品");
thirdSort[863] = new Array("F5AC09","F8FBE2","冲饮品");
thirdSort[864] = new Array("F5AC09","76F0E5","酒类");
thirdSort[865] = new Array("F5AC09","CABFE9","饮料、冷饮");
thirdSort[866] = new Array("F9633C","DCF4A9","污水处理设备");
thirdSort[867] = new Array("F9633C","F654BC","原水处理设备");
thirdSort[868] = new Array("F9633C","0FF4F7","其他");
thirdSort[869] = new Array("FA0C11","294043","教育教学软件");
thirdSort[870] = new Array("FA0C11","ABBB7E","文教用橡胶制品");
thirdSort[871] = new Array("FA0C11","D3BF8D","实验室专用设备");
thirdSort[872] = new Array("FA0C11","0692AA","教学模型、器材");
thirdSort[873] = new Array("FA0C11","F64CF9","学校家具");
thirdSort[874] = new Array("FA0C11","C4BB6E","PDA");
thirdSort[875] = new Array("FA0C11","555BBB","实验室器皿");
thirdSort[876] = new Array("FA0C11","FA0FD1","实验仪器装置");
thirdSort[877] = new Array("FA0C11","CDDD1B","复读机、学习机");

posted on 2009-03-28 17:29  bestsaler  阅读(835)  评论(0编辑  收藏  举报