-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp
5235 lines (4585 loc) · 434 KB
/
temp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Hemp-Hemp Manufacturers, Suppliers and Exporters on Alibaba.comMen's T-Shirts</title>
<meta name="keywords" content="Hemp Manufacturers, Hemp Suppliers, Hemp, Manufacturer Directory, Exporters, Sellers" />
<meta name="description" content="Hemp Manufacturers & Hemp Suppliers Directory - Find a Hemp Manufacturer and Supplier. Choose Quality Hemp Manufacturers, Suppliers, Exporters at Alibaba.com.Men's T-Shirts" />
<meta name="google-translate-customization" content="9de59014edaf3b99-22e1cf3b5ca21786-g00bb439a5e9e5f8f-f"/>
<meta name="data-spm" content="a2700"/>
<link rel="shortcut icon" href="http://i02.i.aliimg.com/simg/single/icon/favicon.ico" type="image/x-icon" />
<base href="http://www.alibaba.com/" />
<script>
window.AFFILIATE_ESCODE = '';
</script>
<!--[if lte IE 6]></base><![endif]-->
<link href="http://style.aliunicorn.com/css/6v/??run/list/common/default.css,apollo/mod/header/header-v4-sc.css,run/common/top-reached/top-reached.css,apollo/mod/feedback/feedback-sc.css,run/list/product/my-buying-request/my-buying-request.css,run/list/common/tab/tab.css,run/list/product/transaction-tags/transaction-tags.css,run/list/product/item/item-en.css,run/list/common/pagination/pagination-dpl2.css,run/list/common/recommend-supplier/recommend-supplier.css,run/list/common/market/market.css,run/list/common/bottominfo/bottominfo.css,run/list/common/postseller/postseller.css,run/list/common/refine/refine-cate.css,run/list/common/refine/refine-base.css,run/list/common/refine/refine-country.css,run/list/common/refine/refine-auth-service.css,run/list/common/rfqwithkeyword/rfqwithkeyword.css,run/list/common/history-recommend/history-recommend.css,run/list/common/p4p/p4p.css,run/list/common/pagetool/pagetool.css,apollo/mod/footer/footer-v4-sc.css?t=158d2be91_3a68ff3fc1" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="http://style.aliunicorn.com/js/6v/atom/??atom-sc.js?t=8e2771a7_1121726851"></script>
</head>
<body data-spm="7724838" class="alibaba ns-biz-en ns-lang-english"><script type=text/javascript src="http://img.alibaba.com/js/beacon_en.js"></script>
<script type=text/javascript>var dmtrack_c='{ali_resin_trace=is_merge_supplier=0|is_broadquery=0|ser=1001|pageId=78d508ec50714014bd4027a10ac09922|set=3|is_escrow_filt=0|sc_ab_test=new_version|sn_cat_type=1|is_onsite_check=0|sc_qp_ab=mlr_cate_a|is_gs_filt=0|proxy_ip=0|is_direct_cate=0|beaconId=6cf8c57abd114425bb9af6c440e5c107|is_av_filt=0|sek_sepd=hemp|is_as_filt=0|is_f0_test=1|industry_id=100003071|bran_ab_test=0|sq_type=a|kw_type=0|sc_ab_test_vm=new_version|isAtmOnline=0|semi=0|se_rst=128703|isGalleryList=0|se_pn=1|is_chinasuppliers=0|s_abtest=01_M_R|p4pid=b8838eb6-0424-4088-bdc4-4e30e967598d|sek=hemp}'; var dmtrack_pageid='60e0f1d70ab0ac291439940969'; sk_dmtracking();</script>
<noscript><img src="http://dmtracking2.alibaba.com/b.jpg?cD0xJnU9e3VzLm1hZ2VsbGFuLnZpcC50YnNpdGUubmV0JTJmcHJvZHVjdCUyZm9sZGVyUHJvZHVjdEtleXdvcmQlMmV2aHRtbD9zZWFyY2h3ZWI9WSUyNmZzYj15JTI2SW5kZXhBcmVhPXByb2R1Y3RfZW4lMjZDYXRJZD0lMjZTZWFyY2hUZXh0PWhlbXAlMjZmc2I9eSUyNkluZGV4QXJlYT1wcm9kdWN0X2VuJTI2Q2F0SWQ9JTI2U2VhcmNoVGV4dD1oZW1wfSZtPXtHRVR9JnM9ezIwMH0mcj17LX0mYT17LX0mYj0tJmM9e2FsaV9yZXNpbl90cmFjZT1pc19tZXJnZV9zdXBwbGllcj0wfGlzX2Jyb2FkcXVlcnk9MHxzZXI9MTAwMXxwYWdlSWQ9NzhkNTA4ZWM1MDcxNDAxNGJkNDAyN2ExMGFjMDk5MjJ8c2V0PTN8aXNfZXNjcm93X2ZpbHQ9MHxzY19hYl90ZXN0PW5ld192ZXJzaW9ufHNuX2NhdF90eXBlPTF8aXNfb25zaXRlX2NoZWNrPTB8c2NfcXBfYWI9bWxyX2NhdGVfYXxpc19nc19maWx0PTB8cHJveHlfaXA9MHxpc19kaXJlY3RfY2F0ZT0wfGJlYWNvbklkPTZjZjhjNTdhYmQxMTQ0MjViYjlhZjZjNDQwZTVjMTA3fGlzX2F2X2ZpbHQ9MHxzZWtfc2VwZD1oZW1wfGlzX2FzX2ZpbHQ9MHxpc19mMF90ZXN0PTF8aW5kdXN0cnlfaWQ9MTAwMDAzMDcxfGJyYW5fYWJfdGVzdD0wfHNxX3R5cGU9YXxrd190eXBlPTB8c2NfYWJfdGVzdF92bT1uZXdfdmVyc2lvbnxpc0F0bU9ubGluZT0wfHNlbWk9MHxzZV9yc3Q9MTI4NzAzfGlzR2FsbGVyeUxpc3Q9MHxzZV9wbj0xfGlzX2NoaW5hc3VwcGxpZXJzPTB8c19hYnRlc3Q9MDFfTV9SfHA0cGlkPWI4ODM4ZWI2LTA0MjQtNDA4OC1iZGM0LTRlMzBlOTY3NTk4ZHxzZWs9aGVtcH0K&ver=40&pageid=60e0f1d70ab0ac291439940969&time=1439940969" width="1" height="1" style="display:none"></noscript>
<script>
/* <![CDATA[ */
var PAGE_TIMING = {
pageType: 'SOURCING_PRODUCT_KEYWORD_SEARCH_LIST',
rate: 1
};
PAGE_TIMING.startRenderImage = new Image();
PAGE_TIMING.startRenderImage.onload = function() {
PAGE_TIMING.startRender = new Date().getTime();
};
PAGE_TIMING.startRenderImage.src = 'http://i02.i.aliimg.com/wimg/monitor/start-render.png';
/* ]]> */
</script>
<script>
seajs.use(['http://style.aliunicorn.com/js/6v/lib/icbu/gdata/??gdata.js?t=66132cea_d3949ad8', 'http://style.aliunicorn.com/js/6v/biz/common/domdot/??domdot.js?t=4a7ed5f4_184e51975'], function(gdata, domdot){
gdata.set('domdot-datainit', 'load');
domdot.setCommonParams('ext', {ckw: 'hemp'});
gdata.define('URL', 'http://www.alibaba.com/');
gdata.define('LIST_BIZ_TYPE', 'en');
gdata.define('LIST_CURRENT_TYPE', 'products');
gdata.define('keyword', 'hemp');
gdata.define('isShowQrCode', 'true');
});
seajs.use(['http://style.aliunicorn.com/js/6v/biz/list/common/??top.js?t=786d1348_108a8de505']);
</script>
<div class="l-wrap" id="J-l-wrap">
<script>
seajs.use("gdata", function(gdata) {
var isFixed = true;
gdata.define("sc-header-config", {
fixed: isFixed,
mod : {
searchbar : ['type','dynamic','static', 'related']
},
searchbar: {
'currentType' : 'products',
'currentKeyword' : 'hemp',
'aisnServer': 'http://www.alibaba.com/',
'autoSuggestionCateId' : '100003071',
'bucketTest' : ''
},
sundry : {
action: {
keyword: 'hemp',
categoryId: '3'
}
}
});
});
</script>
<div class="ui-header-dynamic ui-header-biz-list">
<!--TMS:1283323-->
<style>
/* header css */
.skin-default .mm-sc-new-header {
color: #333333;
}
</style>
<div class="skin-default" data-name="mm-sc-new-header" data-skin="default" data-guid="1409720357634" id="guid-1409720357634" data-version="126" data-type="3"><div class="module" data-spm="a271qf"><div class="mm-sc-new-header">
<!--[if lte IE 8]>
<script>document.createElement('header');document.createElement('footer');</script>
<![endif]-->
<header id="header2012" class="ui-header util-clearfix ui-header-full " data-banner-src="//img.alicdn.com/tps/i3/TB1MYlzIpXXXXcXXpXXDGMLVXXX-1200-70.jpeg" data-banner-link="http://activities.alibaba.com/alibaba/317/warming-up.phptracelog=from_home_header_pre_20150310" data-banner-store="mm-banner-wc-12031442" data-banner-color="">
<div class="ui-header-beacon-wrapper">
<div class="ui-beacon notranslate ui-beacon-loc-top util-clearfix">
<div class="ui-beacon-user">Hi,</div>
<span class="ui-beacon-nav-toggle">
<span class="bar"></span><span class="bar"></span><span class="bar"></span>
</span>
<span class="ui-beacon-user-toggle">
<a href="https://login.alibaba.com/"><i class="ui-beacon-person-icon"></i></a>
</span>
<ul class="ui-beacon-nav">
<li class="ui-beacon-message ui-beacon-item ui-beacon-drop">
<a class="ui-beacon-item-link" rel="nofollow" href="http://sh.vip.alibaba.com?tracelog=nav_ma">My Alibaba<span class="ui-beacon-message-count"></span><i class="ui-beacon-hollow-arrow"><em></em><b></b></i></a>
<ul class="ui-beacon-subs">
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://message.alibaba.com/feedback/default.htm?routeto=inbox&tracelog=nav_ma_mc">Message Center</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://hz.favorite.alibaba.com/favorite/favorite_home.htm?tracelog=nav_ma_fav">My Favorites</a>
</li>
<li class="ui-beacon-sub-split">
Buy
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://hz.sourcing.alibaba.com/rfq/request/post_buy_request.htm?tracelog=new_guide_0418_newschp">Get Quotations Now</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://hz.sourcing.alibaba.com/rfq/request/rfq_manage_list.htm?tracelog=nav_ma_mana_rfq">Manage Buying Requests</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://biz.alibaba.com/generalorders/list_orders.htm?tracelog=ma_mana_orders">Manage Orders</a>
</li>
<li class="ui-beacon-sub-split">
Sell
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://sh.vip.alibaba.com/product/post_product_interface.htm?tracelog=newschp_nav_madp">Display New Products</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://sh.vip.alibaba.com/product/manage_products.htm?tracelog=newschp_nav_mamng">Manage Products</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://hz.sourcing.alibaba.com/rfq/quotation/rfq_not_quoted_manage_list.htm?nav_ma_rec_rfqs">Received RFQs</a>
</li>
</ul>
</li>
</ul>
<ul class="ui-beacon-main ui-beacon-nav">
<li class="ui-beacon-item ui-beacon-drop ui-beacon-for-buyer">
<a class="ui-beacon-item-link" rel="nofollow" href="javascript:;">For Buyers<i class="ui-beacon-hollow-arrow"><em></em><b></b></i></a>
<ul class="ui-beacon-subs">
<li class="ui-beacon-sub-split" style="margin-top:0; padding-top:0; border-top:none;">
Source Products & Suppliers
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://www.alibaba.com/Products?tracelog=beacon_cate_140704">By Category</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://sourcing.alibaba.com/buyermarket/buyer_market_home.htm?tracelog=beacon_asp_140704">Get Quotations</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://wholesale.alibaba.com?tracelog=nav_ws">Wholesale</a>
</li>
<li class="ui-beacon-sub-split">
Trade Services
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://buyer.alibaba.com/bizid_buyer?tracelog=nav_bi">Business Identity</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://tradeassurance.alibaba.com/bao/buyer_advertise.htm?tracelog=from_home_menu">Trade Assurance</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://activities.alibaba.com/alibaba/secure-payment.php?tracelog=beacon_payment_150114">Secure Payment</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://credit.alibaba.com/ecl/buyer.htm?tracelog=beacon_credit_140704">e-Credit Line</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://inspection.alibaba.com/?tracelog=beacon_is_140704">Inspection Service</a>
</li>
<li class="ui-beacon-sub-split">
Community
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://buyer.alibaba.com/intelligence?tracelog=beacon_ti_140704">Trade Intelligence</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://buyer.alibaba.com/forum?tracelog=beacon_df_140704">Discussion Forums</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://ask.alibaba.com/?tracelog=beacon_ta_140704">Trade Answers</a>
</li>
</ul>
</li>
<li class="ui-beacon-item ui-beacon-drop ui-beacon-for-suppliers">
<a class="ui-beacon-item-link" rel="nofollow" href="javascript:;">For Suppliers<i class="ui-beacon-hollow-arrow"><em></em><b></b></i></a><span class="ui-beacon-item-split"></span>
<ul class="ui-beacon-subs">
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://seller.alibaba.com/memberships/index.html?tracelog=seller_channel_member_hp_header">Supplier Memberships</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://seller.alibaba.com/learningcenter?tracelog=seller_channel_lc_hp_header">Learning Center</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://seller.alibaba.com/training.htm?tracelog=seller_channel_training_hp_header">Training Center</a>
</li>
<li class="ui-beacon-sub-split">
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://sourcing.alibaba.com/rfq_search_list.htm?availability=y&tracelog=newschp_nav_narfq">AliSourcePro</a>
</li>
</ul>
</li>
<li class="ui-beacon-item ui-beacon-help ui-beacon-drop">
<a class="ui-beacon-item-link" rel="nofollow" href="javascript:;">Customer Service<i class="ui-beacon-hollow-arrow"><em></em><b></b></i></a>
<ul class="ui-beacon-subs">
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://service.alibaba.com/buyer?tracelog=head">I Am a Buyer</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://service.alibaba.com/home/to_supplier.htm?tracelog=nav_help_supplier">I Am a Supplier</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://www.alibaba.com/new_user_guide.html?tracelog=nav_guide">I Am a New User</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://channel.alibaba.com/complaint/home.htm?tracelog=newschp_help_complaint">Submit a Dispute</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://legal.alibaba.com/index.htm?site_type=international&language_id=english&tracelog=nav_ipr">Report IPR Infringement</a>
</li>
<li class="ui-beacon-sub">
<a rel="nofollow" href="http://channel.alibaba.com/complaint/home.htm?tab=2">Report Suspicious Behavior</a>
</li>
</ul>
</li>
<li class="ui-beacon-sa ui-beacon-item">
<a class="ui-beacon-item-link" rel="nofollow" href="http://tradeassurance.alibaba.com/bao/buyer_advertise.htm?tracelog=from_home_menu">Trade Assurance</a>
</li>
<li class="ui-beacon-translate ui-beacon-item">
</li>
<li class="ui-beacon-group ui-beacon-item ui-beacon-item-last">
<a class="ui-beacon-item-link" href="http://www.alibabagroup.com/en/global/home?tracelog=nav_ali_group" target="_blank">About Alibaba Group</a>
</li>
</ul>
</div>
</div>
<div class="ui-header-main-wrapper">
<div class="ui-header-main util-clearfix">
<div class="ui-header-logo">
<a title="Manufacturers" href="http://www.alibaba.com/">Alibaba.com</a>
</div>
<div class="ui-header-extend">
</div>
<div class="ui-header-anchor">
</div>
<div class="ui-header-lan"></div>
<div class="ui-header-categories">
<h3>
<a href="http://www.alibaba.com/Products">Categories<i class="ui-header-hollow-arrow"><em></em><b></b></i></a>
</h3>
</div>
<div class="ui-header-action util-clearfix">
<a rel="nofollow" class="ui-header-action-rfq" href="http://us.sourcing.alibaba.com/rfq/request/post_buy_request.htm?tracelog=47609_hp_post_botton&source=searchbar" target="_blank">Get Quotations <i class="ui-header-hollow-arrow"><em></em><b></b></i></a>
<div class="ui-header-rfq-popup" style="display:none;">
<span class="ui-header-rfq-text">Save <span class="ui-header-rfq-text-percentage">40%</span> off your time to get quotes</span>
<div id="header-tag-cloud" class="header-tag-cloud"></div>
<div id="ui-header-rfq-loading" style="display: none;"></div>
<ul id="header-rfq-list" class="ui-header-rfq-list">
</ul>
<a rel="nofollow" class="ui-button ui-button-primary ui-button-medium ui-header-rfq-button" href="http://us.sourcing.alibaba.com/rfq/request/post_buy_request.htm?tracelog=header_action_popup_rfq&source=header" target="_blank">
Get Quotations Now
</a>
<a rel="nofollow" target="_blank" href="http://sourcing.alibaba.com/buyer.htm?tracelog=header_action_popup_pro" class="ui-header-rfq-logo"><i class="ui-header-rfq-pro-icon"></i></a>
</div>
</div>
<div class="ui-searchbar ui-searchbar-size-middle ui-header-searchbar ">
<div class="ui-searchbar-body">
<form method="get" action="http://www.alibaba.com/trade/search">
<input type="hidden" name="fsb" value="y"/>
<input class="ui-searchbar-field-type" type="hidden" name="IndexArea" value="product_en"/>
<input class="ui-searchbar-field-category" type="hidden" name="CatId" value=""/>
<div class="ui-searchbar-type"></div>
<div class="ui-searchbar-main">
<input type="text" class="ui-searchbar-keyword" name="SearchText" autocomplete="off" x-webkit-speech="x-webkit-speech" x-webkit-grammar="builtin:translate" lang="en" />
</div>
<input type="submit" class="ui-searchbar-submit" value="Search" />
<span class="ui-searchbar-advanced"><a class="ui-searchbar-advanced-link" href="javascript:;">Advanced Search</a></span>
</form>
</div>
<div class="ui-searchbar-related"><dl class='ui-header-relatedsearch'>
<dt class='title'>Related Searches: </dt>
<dd class='words'>
<a data-domdot='id:2604,ext:'rs_kw_c={{text}}|pos=1'' href='http://www.alibaba.com/products/F0/hemp_oil.html'><strong class="keywords">hemp</strong> oil</a>
<a data-domdot='id:2604,ext:'rs_kw_c={{text}}|pos=2'' href='http://www.alibaba.com/products/F0/hemp_seeds.html'><strong class="keywords">hemp</strong> seeds</a>
<a data-domdot='id:2604,ext:'rs_kw_c={{text}}|pos=3'' href='http://www.alibaba.com/products/F0/hemp_fabric.html'><strong class="keywords">hemp</strong> fabric</a>
<a data-domdot='id:2604,ext:'rs_kw_c={{text}}|pos=4'' href='http://www.alibaba.com/products/F0/hemp_t_shirts_wholesale.html'><strong class="keywords">hemp</strong> t shirts wholesale</a>
<a data-domdot='id:2604,ext:'rs_kw_c={{text}}|pos=5'' href='http://www.alibaba.com/products/F0/hemp_clothing.html'><strong class="keywords">hemp</strong> clothing</a>
<a data-domdot='id:2604,ext:'rs_kw_c={{text}}|pos=6'' href='http://www.alibaba.com/products/F0/hemp_fiber.html'><strong class="keywords">hemp</strong> fiber</a>
</dd>
</dl></div>
</div>
</div>
</div>
</header>
<script>
seajs.use(['$', 'gdata', 'http://style.aliunicorn.com/js/6v/biz/common/header/??header-v4-sc.js?t=43590df3_44b566fe12',
'http://style.aliunicorn.com/js/6v/biz/common/top-reached/??top-reached.js?t=9a7fe0c7_79a590c06',
'http://style.aliunicorn.com/js/6v/biz/common/url/??url.js?t=7273ad7f_fffb973a',
'http://style.aliunicorn.com/js/6v/lib/gallery/store/??store.js?t=66ea0bf6_0',
'http://style.aliunicorn.com/js/6v/biz/common/cookie-info/??cookie-info.js?t=d81524d_5b39aefe8'
], function(jq, gdata, header, TopReached, Url, Store, CookieInfo){
var config = jq.extend( (gdata.get('sc-header-config') || {}) , {
containerId : '#header2012'
});
header.run( config );
var targetBanner={
"bannerUrl": "//img.alicdn.com/tps/i4/TB1g.UEGVXXXXcbapXXBLvlJVXX-990-70.png",
"href": "http://activities.alibaba.com/alibaba/activities-trade-assurance-event.php?tracelog=from_home_header_main_20150317&spm=a2700.1000001.1.1",
"color": "#1c6dc8",
"time": "2015-02-06~2015-04-08"
};
function shouldShowBanner() {
var filterList = ['offer.alibaba.com', 'ptsid', 'http://www.alibaba.com/catalogs/premium', 'http://www.alibaba.com/premiumsupplier/', 'http://www.alibaba.com/premium', 'http://m.alibaba.com/premium', 'http://m.alibaba.com/catalogs/premium/'];
var href = window.location.href;
for (var i = 0, len = filterList.length; i < len; i++) {
if (href.indexOf(filterList[i]) !== -1) {
return false;
}
}
return true;
}
function requestUserArea() {
jq.ajax({
url: 'http://www.alibaba.com/detail/ajax/queryIpAjax.do',
dataType: 'jsonp',
jsonp: 'jsonp',
data: {
ip: ''
}
}).done(function(data) {
var countryCode = '';
// modify
if(data && data.countryCode) {
countryCode = data.countryCode;
showTopReached(countryCode);
}else{
showTopReached('');
}
var currentTime = (new Date()).getTime();
Store.set('lastTopBannerTime', currentTime);
Store.set('topBannerUserArea', countryCode);
}).fail(function() {
showTopReached('');
});
}
function showTopReached(countryCode) {
var banners = [];
// modify
switch(countryCode) {
case 'AU':
case 'NZ':
case 'US':
banners = [{
bannerUrl: '//is.alicdn.com/tps/i3/TB1XVFoIXXXXXaYaXXXYK2lJVXX-990-70.jpg',
href: 'http://tradeassurance.alibaba.com/?tracelog=ta20',
color: '#df3909',
time: '2015-07-15~2015-08-01'
}];
break;
default:
banners = [{
bannerUrl: '//is.alicdn.com/tps/i2/TB1xHQ0IFXXXXXaapXXBLvlJVXX-990-70.png',
href: 'http://activities.alibaba.com/alibaba/summerevent.php?tracelog=hotsourcing_dingtong_new',
color: '#1d88cc',
time: '2015-07-15~2015-07-29'
}];
break;
}
if(banners.length > 0) {
new TopReached({
type: 'small',
urlList: banners
});
}
}
function showBanner() {
var storedArea = Store.get('topBannerUserArea');
if(!storedArea) {
requestUserArea();
}else{
var lastTopBannerTime = parseInt(Store.get('lastTopBannerTime'));
var currentTime = (new Date()).getTime();
if(currentTime - lastTopBannerTime > 24*3600*1000){
requestUserArea();
}else{
showTopReached(storedArea);
}
}
}
if(shouldShowBanner()) {
showBanner();
}
});
</script>
</div>
</div></div>
<script>
seajs.Module.define('mm-sc-new-header', function(require, exports) {
exports.init = function(box, module) {};
});
</script>
<script>(function(f){var e,d,c;e=f.replace(/#/ig,"").split(",");for(var b=0,a=e.length;b<a;b++){d=document.getElementById(e[b]);c=d.getAttribute("data-name");seajs.use(c,function(g){g.init(d,c)})}})('#guid-1409720357634');</script>
</div>
<div class="l-content" id="J-l-content">
<!--[if lte IE 8]>
<p class="ui-feedback ui-feedback-addon ui-feedback-alert ui-feedback-body m-ie6" data-spm="7">
<a rel="nofollow" href="http://www.microsoft.com/ie" target="_blank">Old browser</a> version detected. Please update your <a rel="nofollow" href="http://www.microsoft.com/ie" target="_blank">browser</a>. We suggest using <a rel="nofollow" href="https://www.google.com/chrome" target="_blank">Google Chrome</a> or <a rel="nofollow" href="http://www.mozilla.org/firefox/" target="_blank">Mozilla Firefox</a>.
</p>
<![endif]-->
<div class="grid grid-c3-s5e6">
<div class="col-main">
<div class="main-wrap">
<div id="J-items-content">
<div class="m-my-buying-request f-icon" id="J-m-my-buying-request">
<div class="ui-tab ui-tab-primary m-tab" data-spm="28">
<ul class="ui-tab-nav">
<li class="ui-tab-active">
<a rel="nofollow" href="javascript:void(0);">Products</a>
</li>
<li>
<a href="corporations/hemp.html" rel="nofollow" data-domdot="id:2626">Suppliers</a>
</li>
<!--TMS:1870686-->
</ul>
</div>
<div class="request-wrapper">
<div class="request-header">
<span class="request-title">Your Buying Request</span>
<div class="util-right" data-role="matchedSupplier">
<strong class="matched-num"></strong>
<span class="request-result"></span>
<a href="javascript:void(0);" rel="nofollow" data-domdot="id:21369, ext:'type=board'" class="quotations" data-role="quotation">Get Quotations
<i class="arrow"></i>
</a>
</div>
</div>
<div class="filter-list filter-breadcrumb util-clearfix">
<div class="filter-item filter-item-l">
<label class="field-name">Products Name:</label>
<div class="field-target swrap" id="J-bc-search">
<input class="textfield" data-role="keyword" type="text" value="hemp" maxlength="30"/>
<input class="ico-sch search" data-role="search" type="submit" value=""/>
</div>
</div>
<script>
seajs.use(['http://style.aliunicorn.com/js/6v/biz/list/common/bcsearch/??bcsearch.js?t=d464325d_4b3d51b3'], function(bcsearch){
bcsearch({url: 'http://www.alibaba.com/trade/search?IndexArea=product_en&atm=&f0=y'});
});
</script>
<div class="filter-item filter-item-r filter-category">
<label class="field-name">Category:</label>
<div class="field-target ui-breadcrumb">
<h1 class="active">All Categories</h1>
</div>
</div>
</div>
<div class="filter-list filter-location util-clearfix">
<div class="filter-item filter-item-l">
<label class="field-name">Supplier Location:</label>
<div class="field-target m-geo-filter-trigger" id="J-geo-filter-trigger">
<span class="geo-history">All Location</span>
<span class="arrow down"></span>
</div>
<div id="J-m-geo-filter-container">
<div class="m-geo-filter" id="J-m-geo-filter" data-mode="single">
<div class="switch">Select Multiple</div>
<div class="ui2-toggle-button ui2-toggle-button-small ui2-toggle-button-off" id="switch_toggle">
<span class="ui2-toggle-button-block"></span>
<span class="ui2-toggle-button-label" data-role="label">OFF</span>
</div>
<div class="tags single" id="J-none-child">
<a href="javascript:void(0);" class="ui2-tag ui2-tag-functional ui2-tag-close animated hinge">All countries & regions
<i class="ui2-icon ui2-icon-cross"></i>
</a>
</div>
<div class="tags continent">
</div>
<div class="tags" id="J-has-children"></div>
<div class="q-box">
<input type="text" id="J-find-region" class="ui-textfield ui-textfield-system" placeholder="Type to find a country or region">
<div class="q-btn ico-sch"></div>
<div class="clear util-hide">✕</div>
</div>
<div class="result-box util-hide">
<div class="region-body">
<div class="zero-result util-hide">
No Matching region Found
</div>
<ul class="areas util-clearfix">
</ul>
</div>
</div>
<div class="region-box">
<ul class="region-list util-clearfix"></ul>
<div class="region-body">
<ul class="sub-areas areas util-clearfix util-hide"></ul>
<div class="region-body-main">
</div>
<div class="pull-up">
<span class="arrow up"></span>
</div>
</div>
</div>
<div class="btn-group">
<button id="geo_confirm" class="ui2-button ui2-button-primary ui2-button-small ">Confirm</button>
<button id="geo_cancel" class="ui2-button ui2-button-normal ui2-button-small">Cancel</button>
</div>
</div>
</div>
</div>
<div class="filter-item m-filter-ext filter-item-r">
<label class="field-name">Supplier Types:</label>
<div class="field-target items util-clearfix">
<div class="item type-ta with-xtip">
<a id="J-filter-ta" data-domdot="id:17083" onclick="location.href='http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------y.html';" href="javascript:void(0);" rel="nofollow" class="ic type-ta">
<input type="checkbox" class="ui-checkbox ui-checkbox-system" />
<label>
<span class="ico ico-ta"></span> Trade Assurance
</label>
</a>
<a class="ico-tip" target="_blank" rel="nofollow" href="http://tradeassurance.alibaba.com/bao/buyer_advertise.htm?tracelog=from_list_item"></a>
<div class="xtip">
<div class="ta">
<a id="J-filter-xtip-ta" class="xtip-ta" data-domdot="id:" onclick="location.href='http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------y.html';" href="javascript:void(0);" rel="nofollow">
<span class="ico ico-ta"></span> With Trade Assurance, you'll enjoy:
</a>
<a class="ico-tip" target="_blank" rel="nofollow" href="http://tradeassurance.alibaba.com/bao/buyer_advertise.htm?tracelog=from_list_item"></a>
</div>
<ul class="xtip-tips">
<li>100% product quality protection</li>
<li>100% on-time shipment protection</li>
<li>100% payment protection for your covered amount</li>
<li class="xtip-lm"><a target="_blank" rel="nofollow" href="http://tradeassurance.alibaba.com/bao/buyer_advertise.htm?tracelog=from_list_item">Learn More ></a>
</li>
</ul>
</div>
</div>
<div class="item type-ggs">
<a data-domdot="id:2616" onclick="location.href='http://www.alibaba.com/products/F0/hemp/--------------------GGS.html';" title="Gold Suppliers are pre-qualified suppliers." href="javascript:void(0);" rel="nofollow" class="ic type-ggs">
<input type="checkbox" class="ui-checkbox ui-checkbox-system" />
<label>
<span class="ico ico-gs"></span> Gold Supplier
</label>
</a>
</div>
<div class="item type-ass">
<a data-domdot="id:2618" onclick="location.href='http://www.alibaba.com/products/F0/hemp/------------ASS.html';" title="Assessed by a third party inspection company. An Assessment Report is available for download." href="javascript:void(0);" rel="nofollow" class="ic type-ass">
<input type="checkbox" class="ui-checkbox ui-checkbox-system" />
<label>
<span class="ico ico-as"></span> Assessed Supplier
</label>
</a>
</div>
</div>
</div>
</div>
<div class="result util-clearfix" id="J-m-filter">
<div class="util-left">View <strong>
128,703
</strong>
Product(s) below
</div>
<div class="items util-right">
<div class="item moc">
<div class="mo" data-role="minOrder">
<span>Minimum Order:</span>
<input class="ui-textfield ui-textfield-system" type="text" data-role="moNum" value="" maxlength="30" />
<a class="ui-button ui-button-primary ui-button-small" data-role="moOk" data-url="http://www.alibaba.com/trade/search?IndexArea=product_en&SearchText=hemp&atm=&f0=y" href="javascript:void(0);" rel="nofollow">OK</a>
</div>
</div>
<div class="item">
<a class="atm" data-domdot="id:2619" onclick="location.href='http://www.alibaba.com/products/F0/hemp/------------------ATM.html'" title="Members currently online on TradeManager." href="javascript:void(0);" rel="nofollow">
<input type="checkbox" class="ui-checkbox ui-checkbox-system" />
<label for="">
<span class="ico ico-natm"></span> Online
</label>
</a>
</div>
<div class="item right">
<div class="view">
<span>View as:</span>
<span class="ico-lv cur" title="List View"></span>
<a class="ico-gv" href="http://www.alibaba.com/products/F0/hemp/----------------------------G.html?tracelog=productdetails_9708" rel="nofollow" title="Gallery View" data-domdot="id:2622"></a>
</div>
</div>
</div>
</div>
<script>
seajs.use(['http://style.aliunicorn.com/js/6v/biz/list/product/my-buying-request/??my-buying-request-en.js?t=42e71d68_66effab24d'], function(request) {
var config;
if(true) {
config = {
'url': 'trade/search?IndexArea=product_en&SearchText=hemp&atm=&f0=y',
'urlAsync':'trade/search?IndexArea=product_en&SearchText=hemp&atm=&f0=y&async_reg=y',
'counHistory': '',
'provHistory': '',
'contHistory': '',
'productAttrs': [],
'keyword': 'hemp',
'productCount': '128,703'
}
}
request(config);
});
</script>
</div>
</div>
<div class="m-transaction-tags buying-request ">
<span class="name">Selected Supplier:</span>
<a href="http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------------38654705667.html" data-domdot="id:24826" class="tag ">Payment protection</a>
<a href="http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------------38654705723.html" data-domdot="id:24826" class="tag ">Exported to United States</a>
<a href="http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------------38654705671.html" data-domdot="id:24826" class="tag ">Exported to Canada</a>
<a href="http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------------38654705665.html" data-domdot="id:24826" class="tag ">On-time shipment</a>
<a href="http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------------38654705796.html" data-domdot="id:24826" class="tag ">Exported to Australia</a>
<a href="http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------------38654705666.html" data-domdot="id:24826" class="tag ">Product quality protection</a>
<a href="http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------------38654705739.html" data-domdot="id:24826" class="tag ">Exported to United Kingdom</a>
<a href="http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------------38654705883.html" data-domdot="id:24826" class="tag ">Exported to Germany</a>
<a href="http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------------38654705899.html" data-domdot="id:24826" class="tag ">Exported to Spain</a>
<a href="http://www.alibaba.com/products/F0/hemp/--------------------------------------------------------------------------38654705860.html" data-domdot="id:24826" class="tag ">Exported to Italy</a>
</div>
<div data-spm="35" class="f-icon m-item " data-ctrdot="60288240104" data-ctrdot_f="IDX1XkFj9qlkW0OI85QVRoh4p_HzvMqQfc70fz_XAiu7A-jUWLJ-6omRGRsbdVDVjx70" >
<div class="item-main item-main-180 util-clearfix">
<div class="content">
<div class="cwrap">
<div class="cleft">
<div class="lwrap" data-role="lwrap">
<h2 class="title"><a href="http://www.alibaba.com/product-detail/Suitable-for-finishing-of-cotton-hemp_60288240104.html?s=p" data-hislog="60288240104" data-pid="60288240104" data-domdot="id:2678,pid:60288240104,ext:'|n=1|s=p|t={{attr target}}'" target="_blank" data-p4plog="60288240104">Suitable for finishing of cotton <strong>hemp</strong> silk professional silicone oil emulsions</a>
</h2>
<div class="attr">
US $7-10 / <em>Kilogram</em> <em>( FOB Price)</em> </div>
<div class="attr">
200 Kilograms <em>(Min. Order)</em>
</div>
<div class="kv-prop util-clearfix">
<div class="kv" title="Classification: Chemical Auxiliary Agent">Classification: <b>Chemical Auxiliary Agent</b></div>
<div class="kv" title="Place of Origin: CN;GUA;Guangdong, China (Mainland)">Place of Origin: <b>CN;GUA;Guangdong, China (Mainland)</b></div>
<div class="kv" title="Brand Name: CHUYING;CHUYING">Brand Name: <b>CHUYING;CHUYING</b></div>
<div class="kv" title="Model Number: CY-349">Model Number: <b>CY-349</b></div>
<div class="kv" title="PH: 6.5~8">PH: <b>6.5~8</b></div>
<div class="kv" title="Appearance: Milky white liquid, can also be white sticky">Appearance: <b>Milky white liquid, can also be white sticky</b></div>
</div>
<div class="vm">
<span class="ico-ssl"></span>
</div>
</div>
</div>
<div class="cright">
<div class="rwrap">
<div class="attrs">
<div class="attr company" data-role="ccardWrap">
<span class="yr">
<a class="ico-year" target="_blank" rel="nofollow" title="What is Gold Supplier?" href="http://static.alibaba.com/hermes/goldsuppliers.html" data-domdot="id:2639,pid:60288240104,ext:'|n=1|s=p|t={{attr target}}'"><span class="gs1"></span></a>
</span>
<div class="cbrand ellipsis" data-domdot="id:14670,event:mouseover,pid:60288240104">
<span class="vf"> <span class="unverified">Verified Supplier</span> - </span><a class="ctitle" target="_blank" data-domdot="id:2679,pid:60288240104,ext:'|n=1|s=p|t={{attr target}}'" href="http://cnchuying.en.alibaba.com/company_profile.html#top-nav-bar" data-p4plog="60288240104">Shenzhen Chuying New Material Co., Ltd.</a>
</div>
</div>
<div class="attr loc">
<span class="location">China (Mainland)</span>
<a class="cd" target="_blank" href="http://cnchuying.en.alibaba.com/contactinfo.html" data-domdot="id:2680,pid:60288240104,ext:'|n=1|s=p|t={{attr target}}'" rel="nofollow" data-p4plog="60288240104">Contact Details<i></i></a>
</div>
<div class="attr" title="100% protection for product quality and on-time shipment. Supplier's Trade Assurance Limit: US $10,000">
<span class="ico-ta"></span> <a class="ta" data-domdot="id:17084" href="http://tradeassurance.alibaba.com/bao/buyer_advertise.htm?tracelog=from_list_item" rel="nofollow" target="_blank">Trade Assurance</a>
</div>
<div class="attr qr"><span class="sts" rel="nofollow">24h-48h</span> Average Response Time </div>
<div class="attr qr" title="84.6% of buyer's inquiries have been responded to in time"><span class="ico-sts"></span><a class="sts" data-domdot="id:7440,ext:'|n=1|s=p|t={{attr target}}'" data-p4plog="60288240104" target="_blank" href="http://cnchuying.en.alibaba.com/company_profile/trade_history.html#fbbuyer" rel="nofollow">84.6%</a> Response Rate</div>
</div>
<div class="contact">
<a class="button csp" target="_blank" href="http://message.alibaba.com/msgsend/contact.htm?action=contact_action&appForm=s_en&chkProductIds=60288240104&chkProductIds_f=IDX1XkFj9qlkW0OI85QVRoh4p_HzvMqQfc70fz_XAiu7A-jUWLJ-6omRGRsbdVDVjx70&tracelog=contactOrg" data-domdot="id:2675,pid:60288240104,ext:'|n=1|s=p|t={{attr target}}'" data-p4plog="60288240104"><span class="ico-cs"></span>Contact Supplier</a>
<a data-p4plog="60288240104" data-cid="60288240104" data-cid_f="IDX1XkFj9qlkW0OI85QVRoh4p_HzvMqQfc70fz_XAiu7A-jUWLJ-6omRGRsbdVDVjx70" data-tmlid="8pctgRBMALML9ejZorA60csEYdtyoOSD" data-status="33" data-role="atm" href="javascript:void(0);" class="cico" data-domdot="id:2676,pid:60288240104,ext:'|n=1|s=p|t={{attr target}}'"></a>
</div>
</div>
</div>
</div>
</div>
<div class="image">
<div class="img-thumb">
<a href="http://www.alibaba.com/product-detail/Suitable-for-finishing-of-cotton-hemp_60288240104.html?s=p" target="_blank" data-hislog="60288240104" data-domdot="id:2677,pid:60288240104,ext:'|n=1|s=p|t={{attr target}}'" data-p4plog="60288240104">
<img src="http://g02.s.alicdn.com/kf/HTB1wezoIFXXXXcrXVXXq6xXFXXX4/Suitable-for-finishing-of-cotton-hemp-silk.jpg_220x220.jpg" alt="Suitable for finishing of cotton hemp silk professional silicone oil emulsions"/>
</a>
</div>
<div class="fn">
<a class="fc" href="javascript:;" data-role="favorite" data-domdot="id:2659,pid:60288240104,ext:'|n=1|s=p|t={{attr target}}'" data-pid="60288240104" data-cid="231638784"><span class="ico ico-fav"></span><span class="ico ico-dh dfav"></span>Favorites</a>
<a class="fc" href="javascript:;" data-role="compare" data-pid="60288240104" data-domdot="id:2686,pid:60288240104,ext:'|n=1|s=p|t={{attr target}}'" data-p4p="true"><span class="ico ico-add" data-role="cpadd"></span><span class="ico ico-dh" data-role="cpadded"></span>Compare</a>
</div>
</div>
<div class="item-links">
</div>
</div>
</div>
<div data-spm="35" class="f-icon m-item " data-ctrdot="60177683150" data-ctrdot_f="IDX1UAvApzu0jl_uPxYepGPKkuGoAGcWNWCB9ABK4zxBbvF_EieZcqcDxPxDFQCj1w_F" >
<div class="item-main item-main-180 util-clearfix">
<div class="content">
<div class="cwrap">
<div class="cleft">
<div class="lwrap" data-role="lwrap">
<h2 class="title"><a href="http://www.alibaba.com/product-detail/The-super-fine-hemp-twine-hemp_60177683150.html?s=p" data-hislog="60177683150" data-pid="60177683150" data-domdot="id:2678,pid:60177683150,ext:'|n=2|s=p|t={{attr target}}'" target="_blank" data-p4plog="60177683150">The super fine <strong>hemp</strong> twine <strong>hemp</strong> rope made of best natural sisal yarn</a>
</h2>
<div class="attr">
1 Ton <em>(Min. Order)</em>
</div>
<div class="kv-prop util-clearfix">
<div class="kv" title="Place of Origin: CN;GUN">Place of Origin: <b>CN;GUN</b></div>
<div class="kv" title="Type: Twist Rope">Type: <b>Twist Rope</b></div>
<div class="kv" title="Brand Name: Rijiang hemp rope">Brand Name: <b>Rijiang hemp rope</b></div>
<div class="kv" title="Material: Fiber;100% sisal fiber hemp rope">Material: <b>Fiber;100% sisal fiber hemp rope</b></div>
<div class="kv" title="Model Number: 3-40mm diameter hemp rope">Model Number: <b>3-40mm diameter hemp rope</b></div>
<div class="kv" title="Diameter: 3-40mm hemp rope">Diameter: <b>3-40mm hemp rope</b></div>
</div>
<div class="vm">
<span class="ico-ssl"></span>
</div>
</div>
</div>
<div class="cright">
<div class="rwrap">
<div class="attrs">
<div class="attr company" data-role="ccardWrap">
<span class="yr">
<a class="ico-year" target="_blank" rel="nofollow" title="What is Gold Supplier?" href="http://static.alibaba.com/hermes/goldsuppliers.html" data-domdot="id:2639,pid:60177683150,ext:'|n=2|s=p|t={{attr target}}'"><span class="gs2"></span></a>
</span>
<div class="cbrand ellipsis" data-domdot="id:14670,event:mouseover,pid:60177683150">
<span class="vf"> <span class="unverified">Verified Supplier</span> - </span><a class="ctitle" target="_blank" data-domdot="id:2679,pid:60177683150,ext:'|n=2|s=p|t={{attr target}}'" href="http://rijiang1688.en.alibaba.com/company_profile.html#top-nav-bar" data-p4plog="60177683150">Nanning Rijiang Import And Export Trading Co., Ltd.</a>
</div>
</div>
<div class="attr loc">
<span class="location">China (Mainland)</span>
<a class="cd" target="_blank" href="http://rijiang1688.en.alibaba.com/contactinfo.html" data-domdot="id:2680,pid:60177683150,ext:'|n=2|s=p|t={{attr target}}'" rel="nofollow" data-p4plog="60177683150">Contact Details<i></i></a>
</div>
<div class="attr" title="100% protection for product quality and on-time shipment. Supplier's Trade Assurance Limit: US $15,000">
<span class="ico-ta"></span> <a class="ta" data-domdot="id:17084" href="http://tradeassurance.alibaba.com/bao/buyer_advertise.htm?tracelog=from_list_item" rel="nofollow" target="_blank">Trade Assurance</a>
</div>
<div class="attr" title="The supplier's transactions conducted via Alibaba.com in the past 12 months."><b class="sts">4</b> Transactions for <b class="sts">US $60,000+</b></div>
<div class="attr qr"><span class="sts" rel="nofollow">24h-48h</span> Average Response Time </div>
<div class="attr qr" title="84.7% of buyer's inquiries have been responded to in time"><span class="ico-sts"></span><a class="sts" data-domdot="id:7440,ext:'|n=2|s=p|t={{attr target}}'" data-p4plog="60177683150" target="_blank" href="http://rijiang1688.en.alibaba.com/company_profile/trade_history.html#fbbuyer" rel="nofollow">84.7%</a> Response Rate</div>
</div>
<div class="contact">
<a class="button csp" target="_blank" href="http://message.alibaba.com/msgsend/contact.htm?action=contact_action&appForm=s_en&chkProductIds=60177683150&chkProductIds_f=IDX1UAvApzu0jl_uPxYepGPKkuGoAGcWNWCB9ABK4zxBbvF_EieZcqcDxPxDFQCj1w_F&tracelog=contactOrg" data-domdot="id:2675,pid:60177683150,ext:'|n=2|s=p|t={{attr target}}'" data-p4plog="60177683150"><span class="ico-cs"></span>Contact Supplier</a>
<a data-p4plog="60177683150" data-cid="60177683150" data-cid_f="IDX1UAvApzu0jl_uPxYepGPKkuGoAGcWNWCB9ABK4zxBbvF_EieZcqcDxPxDFQCj1w_F" data-tmlid="8pctgRBMALNZLnfMM88xPvnhq88S0U2J" data-status="0" data-role="atm" href="javascript:void(0);" class="cico" data-domdot="id:2676,pid:60177683150,ext:'|n=2|s=p|t={{attr target}}'"></a>
</div>
</div>
</div>
</div>
</div>
<div class="image">
<div class="img-thumb">
<a href="http://www.alibaba.com/product-detail/The-super-fine-hemp-twine-hemp_60177683150.html?s=p" target="_blank" data-hislog="60177683150" data-domdot="id:2677,pid:60177683150,ext:'|n=2|s=p|t={{attr target}}'" data-p4plog="60177683150">
<img src="http://g01.s.alicdn.com/kf/HTB1qqWdHFXXXXc7XVXXq6xXFXXXv/The-super-fine-hemp-twine-hemp-rope.jpg_220x220.jpg" alt="The super fine hemp twine hemp rope made of best natural sisal yarn"/>
</a>
</div>
<div class="fn">
<a class="fc" href="javascript:;" data-role="favorite" data-domdot="id:2659,pid:60177683150,ext:'|n=2|s=p|t={{attr target}}'" data-pid="60177683150" data-cid="230877426"><span class="ico ico-fav"></span><span class="ico ico-dh dfav"></span>Favorites</a>
<a class="fc" href="javascript:;" data-role="compare" data-pid="60177683150" data-domdot="id:2686,pid:60177683150,ext:'|n=2|s=p|t={{attr target}}'" data-p4p="true"><span class="ico ico-add" data-role="cpadd"></span><span class="ico ico-dh" data-role="cpadded"></span>Compare</a>
</div>
</div>
<div class="item-links">
</div>
</div>
</div>
<div data-spm="35" class="f-icon m-item " data-ctrdot="60226837968" data-ctrdot_f="IDX1EcBt0CyXgR8YFimsCsR6I7DxhV5Gc81IhdUoJCd5n2ABME2JyhobzvexoATpj1dr" >
<div class="item-main item-main-180 util-clearfix">
<div class="content">
<div class="cwrap">
<div class="cleft">
<div class="lwrap" data-role="lwrap">
<h2 class="title"><a href="http://www.alibaba.com/product-detail/Wholesale-New-Design-Eco-Friendly-Plain_60226837968.html?s=p" data-hislog="60226837968" data-pid="60226837968" data-domdot="id:2678,pid:60226837968,ext:'|n=3|s=p|t={{attr target}}'" target="_blank" data-p4plog="60226837968">Wholesale New Design Eco Friendly Plain 130GSM 100% <strong>Hemp</strong></a>
</h2>
<div class="attr">
US $6.3-7 / <em>Meter</em> <em>( FOB Price)</em> </div>
<div class="attr">
2000 Meters <em>(Min. Order)</em>
</div>
<div class="kv-prop util-clearfix">
<div class="kv" title="Material: 100% Hemp">Material: <b>100% Hemp</b></div>
<div class="kv" title="Place of Origin: CN;SHX">Place of Origin: <b>CN;SHX</b></div>
<div class="kv" title="Brand Name: Greenland">Brand Name: <b>Greenland</b></div>
<div class="kv" title="Density: 52*56">Density: <b>52*56</b></div>
<div class="kv" title="Technics: Woven">Technics: <b>Woven</b></div>
<div class="kv" title="Use: Garment">Use: <b>Garment</b></div>
</div>
<div class="vm">
<span class="ico-ssl"></span>
</div>
</div>
</div>
<div class="cright">
<div class="rwrap">
<div class="attrs">
<div class="attr company" data-role="ccardWrap">
<span class="yr">
<a class="ico-year" target="_blank" rel="nofollow" title="What is Gold Supplier?" href="http://static.alibaba.com/hermes/goldsuppliers.html" data-domdot="id:2639,pid:60226837968,ext:'|n=3|s=p|t={{attr target}}'"><span class="gs7"></span></a>
</span>
<div class="cbrand ellipsis" data-domdot="id:14670,event:mouseover,pid:60226837968">
<span class="vf"> <span class="unverified">Verified Supplier</span> - </span><a class="ctitle" target="_blank" data-domdot="id:2679,pid:60226837968,ext:'|n=3|s=p|t={{attr target}}'" href="http://organichemp.en.alibaba.com/company_profile.html#top-nav-bar" data-p4plog="60226837968">Shanxi Greenland Textile Co., Ltd.</a>
</div>
</div>
<div class="attr loc">
<span class="location">China (Mainland)</span>
<a class="cd" target="_blank" href="http://organichemp.en.alibaba.com/contactinfo.html" data-domdot="id:2680,pid:60226837968,ext:'|n=3|s=p|t={{attr target}}'" rel="nofollow" data-p4plog="60226837968">Contact Details<i></i></a>
</div>
<div class="attr" title="100% protection for product quality and on-time shipment. Supplier's Trade Assurance Limit: US $20,000">
<span class="ico-ta"></span> <a class="ta" data-domdot="id:17084" href="http://tradeassurance.alibaba.com/bao/buyer_advertise.htm?tracelog=from_list_item" rel="nofollow" target="_blank">Trade Assurance</a>
</div>
<div class="attr qr"><span class="sts" rel="nofollow">24h-48h</span> Average Response Time </div>
<div class="attr qr" title="90.7% of buyer's inquiries have been responded to in time"><span class="ico-sts"></span><a class="sts" data-domdot="id:7440,ext:'|n=3|s=p|t={{attr target}}'" data-p4plog="60226837968" target="_blank" href="http://organichemp.en.alibaba.com/company_profile/trade_history.html#fbbuyer" rel="nofollow">90.7%</a> Response Rate</div>
</div>
<div class="contact">
<a class="button csp" target="_blank" href="http://message.alibaba.com/msgsend/contact.htm?action=contact_action&appForm=s_en&chkProductIds=60226837968&chkProductIds_f=IDX1EcBt0CyXgR8YFimsCsR6I7DxhV5Gc81IhdUoJCd5n2ABME2JyhobzvexoATpj1dr&tracelog=contactOrg" data-domdot="id:2675,pid:60226837968,ext:'|n=3|s=p|t={{attr target}}'" data-p4plog="60226837968"><span class="ico-cs"></span>Contact Supplier</a>
<a data-p4plog="60226837968" data-cid="60226837968" data-cid_f="IDX1EcBt0CyXgR8YFimsCsR6I7DxhV5Gc81IhdUoJCd5n2ABME2JyhobzvexoATpj1dr" data-tmlid="8pctgRBMALOsxcXCrC8N9/Xkqp1t/uCc" data-status="0" data-role="atm" href="javascript:void(0);" class="cico" data-domdot="id:2676,pid:60226837968,ext:'|n=3|s=p|t={{attr target}}'"></a>
</div>
</div>
</div>
</div>
</div>
<div class="image">
<div class="img-thumb">
<a href="http://www.alibaba.com/product-detail/Wholesale-New-Design-Eco-Friendly-Plain_60226837968.html?s=p" target="_blank" data-hislog="60226837968" data-domdot="id:2677,pid:60226837968,ext:'|n=3|s=p|t={{attr target}}'" data-p4plog="60226837968">
<img image-src="http://g02.s.alicdn.com/kf/HTB1VWvTHFXXXXXXXVXXq6xXFXXXg/Wholesale-New-Design-Eco-Friendly-Plain-130GSM.jpg_220x220.jpg" alt="Wholesale New Design Eco Friendly Plain 130GSM 100% Hemp"/>
</a>
</div>
<div class="fn">
<a class="fc" href="javascript:;" data-role="favorite" data-domdot="id:2659,pid:60226837968,ext:'|n=3|s=p|t={{attr target}}'" data-pid="60226837968" data-cid="200274690"><span class="ico ico-fav"></span><span class="ico ico-dh dfav"></span>Favorites</a>
<a class="fc" href="javascript:;" data-role="compare" data-pid="60226837968" data-domdot="id:2686,pid:60226837968,ext:'|n=3|s=p|t={{attr target}}'" data-p4p="true"><span class="ico ico-add" data-role="cpadd"></span><span class="ico ico-dh" data-role="cpadded"></span>Compare</a>
</div>
</div>
<div class="item-links">
</div>
</div>
</div>
<div data-spm="35" class="f-icon m-item " data-ctrdot="60153627403" data-ctrdot_f="IDX1PN3vqBQv-UmiqrEVnkZPHH9X8WsTZTB__4gLSvkgoQh7h29oUfFRdlFSL7-TbhA_" >
<div class="item-main item-main-180 util-clearfix">
<div class="content">
<div class="cwrap">
<div class="cleft">
<div class="lwrap" data-role="lwrap">
<h2 class="title"><a href="http://www.alibaba.com/product-detail/2-28NM-100-wholesale-wool-yarn_60153627403.html?s=p" data-hislog="60153627403" data-pid="60153627403" data-domdot="id:2678,pid:60153627403,ext:'|n=4|s=p|t={{attr target}}'" target="_blank" data-p4plog="60153627403">2/28NM 100% wholesale wool yarn for hand knitting stock, <strong>hemp</strong> yarn</a>
</h2>
<div class="attr">
100 Kilograms <em>(Min. Order)</em>
</div>
<div class="kv-prop util-clearfix">
<div class="kv" title="Product Type: 100% Wool Yarn">Product Type: <b>100% Wool Yarn</b></div>
<div class="kv" title="Place of Origin: CN;JIA">Place of Origin: <b>CN;JIA</b></div>
<div class="kv" title="Brand Name: KAINI">Brand Name: <b>KAINI</b></div>
<div class="kv" title="Twist: testing report offered">Twist: <b>testing report offered</b></div>
<div class="kv" title="Material: 100% Merino Wool">Material: <b>100% Merino Wool</b></div>
<div class="kv" title="Use: Hand Knitting;Knitting;Sewing;Weaving;Knitting,Sewing,Weaving">Use: <b>Hand Knitting;Knitting;Sewing;Weaving;Knitting,Sewing,Weaving</b></div>
</div>
<div class="vm">
<span class="ico-ssl"></span>
</div>
</div>
</div>
<div class="cright">
<div class="rwrap">
<div class="attrs">
<div class="attr company" data-role="ccardWrap">
<span class="yr">