-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathb2b-supplier-edit.html
2035 lines (1937 loc) · 169 KB
/
b2b-supplier-edit.html
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 lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome</title>
<!-- Bootstrap CSS-->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<!-- Custom CSS -->
<link href="css/global-style.css" rel="stylesheet" type="text/css">
<!-- Media queries CSS -->
<link href="css/media-queries.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- Wrapper start -->
<div class="wrapper">
<!-- Header start -->
<div class="headerTopWide">
<div class="container headerTop">
<div class="row">
<div class="col-sm-4">
<div class="row">
<div class="col-sm-12 col-xs-9">
<ul class="signInJoin">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-user"></i>Sign in</a>
<div style="padding: 15px;" class="dropdown-menu">
<form>
<div class="form-group">
<label>Email address <em>*</em></label>
<input type="email" class="form-control">
</div>
<div class="form-group">
<label>Password <em>*</em></label>
<input type="password" class="form-control">
</div>
<div class="form-group">
<p><a href="#">Forgot your password?</a></p>
</div>
<button type="submit" class="btn btn-block"><i class="fa fa-lock"></i> Sign in</button>
</form>
</div>
</li>
<li><a href="#">Join Free</a></li>
</ul>
</div>
<div class="col-xs-3 visible-xs">
<button type="button" data-target="#headerOption" data-toggle="collapse" class="btn btn-default pull-right">
<i class="fa fa-bars"></i>
</button>
</div>
</div>
</div>
<div class="headerOption collapse" id="headerOption">
<div class="col-sm-8">
<ul class="byuerSuppliersDropdown">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">For Buyer <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu">
<li><a href="#">Buyer Membership</a></li>
<li><a href="#">Learning Center</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">For Suppliers <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu">
<li><a href="#">Seller Membership</a></li>
<li><a href="#">Learning Center</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Help <i class="fa fa-angle-down"></i></a>
<ul class="dropdown-menu lastDropdown">
<li><a href="#">Help center</a></li>
<li><a href="#">Contact deals support</a></li>
</ul>
</li>
<li><a href="#">About us</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="headerBottomWide">
<div class="container headerBottom">
<div class="row">
<!-- Logo start -->
<div class="col-sm-5 col-md-4 col-lg-3">
<h1 class="logo"><a href="index.html" title="The Sweetest Deal">The <span>Sweetest</span> Deal</a></h1>
</div>
<!-- Logo end -->
<!-- Search / Favorites start -->
<div class="col-sm-7 col-md-8 col-lg-9">
<div class="row">
<div class="col-sm-10">
<div class="searchOption">
<form class="form-inline">
<div class="input-group">
<div class="input-group-addon">
<div class="searchOptiondropdown">
<button class="selectbtn" type="button" id="searchOptiondropdownMenu" data-toggle="dropdown" aria-expanded="true">
All Categories
<i class="fa fa-angle-down"></i>
</button>
<ul class="dropdown-menu" role="menu" aria-labelledby="searchOptiondropdownMenu">
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">Whole Sale Products</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">Liquidation Products</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="#">Suppliers</a></li>
</ul>
</div>
</div>
<input type="text" placeholder="Search...">
<span class="input-group-btn">
<button type="submit" class="btn fa-input"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</div>
</div>
<div class="col-sm-2 text-center">
<p class="headerFavorites"><a href="#"><i class="fa fa-heart"></i>Favorites</a></p>
</div>
</div>
</div>
<!-- Search / Favorites end -->
</div>
</div>
</div>
<!-- Header end -->
<!-- B2B Supplier edit page start -->
<!-- Breadcrumb start -->
<div class="containerWide btobSupplierWide">
<div class="container btobSupplier">
<div class="row">
<div class="col-sm-7 hidden-xs">
<ol class="breadcrumb disabled">
<li><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Timepieces, Jewelry, Eyewear</a></li>
<li><a href="#">Watches</a></li>
<li class="active"><strong>"Wristwatches"</strong> <a href="#"><i class="fa fa-times"></i></a></li>
</ol>
</div>
<div class="col-sm-5">
<div class="right-contact-supplier clearfix disabled">
<span class="heart"><i class="fa fa-heart-o"></i></span>
<span class="add"><a href="#s">Add Supplier to Favorite</a></span>
<span class="building"><i class="fa fa-building-o"></i></span>
<span class="botton"><button type="button" class="btn btn-md orange"><strong>Contact Supplier</strong></button></span>
</div>
</div>
</div>
</div>
</div>
<!-- Breadcrumb end -->
<!-- verify panel start -->
<div class="containerWide verifyWide">
<div class="container">
<div class="row">
<div class="col-sm-10">
<h4 class="text-left"><a href="#"><i class="fa fa-pencil"></i></a> Verify Credentials <span>(displays a 'Verified Supplier' badge to your profile)</span></h4>
</div>
<div class="col-sm-2">
<p class="text-right skip"><a href="#">Skip <i class="fa fa-times"></i></a></p>
</div>
</div>
</div>
</div>
<!-- verify panel end -->
<!-- Supplier Banner start -->
<div class="containerWide btobSupplierBannerWide">
<div class="container btobSupplierBanner">
<div class="row">
<div class="col-sm-12 supplierBannerContent">
<div class="ribon-container">
<div class="ribon-gray">
<i class="fa fa-check-circle"></i><br>
VERIFIED<br>SUPPLIER
</div>
</div>
<div class="company-name">
<h2><i class="fa fa-picture-o"></i> Add Background Image</h2>
<h1><strong>Shishi Xinjia Electronics Co. Ltd.</strong> <a href="#" class="editIconLarge"><i class="fa fa-pencil"></i></a></h1>
<p class="text-center"><small><span class="disabled">thesweetestdeal.com/suppliers/</span>shishi-xinjia-electronics-co-ltd</small> <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></p>
</div>
</div>
</div>
</div>
</div>
<!-- Supplier Banner end -->
<!-- B2B Supplier content start -->
<div class="containerWide supplierWide">
<div class="container btobsupplier">
<!-- Nav tabs start-->
<div class="row">
<div class="col-sm-12 productSuppliersTab">
<ul class="nav nav-tabs">
<li class="active"><a href="#CompanyInformation" role="tab" data-toggle="tab"><strong>CompanyInformation</strong></a></li>
<li class="searchOptiondropdown">
<a href="#products" role="tab" data-toggle="tab" ><strong>Products</strong> <i class="fa fa-caret-down"></i></a>
<ul class="dropdown-menu" role="menu" aria-labelledby="products">
<li><p>Close Out & Liquidations <i class="fa fa-tags"></i></p></li>
<li><h4>Categories</h4></li>
<li><a href="#">5ATM waterproof digital sport watch</a></li>
<li><a href="#">Desk clock</a></li>
<li><a href="#">Keychain talking clock</a></li>
<li><a href="#">LCD talking clock</a></li>
<li><a href="#">LCD multifunction digital clock</a></li>
<li><a href="#">Analog-digital talking watch</a></li>
<li><a href="#">5ATM waterproof analog-digital watch</a></li>
<li><a href="#">3ATM waterproof digital sport watch</a></li>
<li><a href="#">2ATM waterproof digital sport watch</a></li>
<li><a href="#">Quartz Analog Watch</a></li>
<li><a href="#">LED watch With Water 30M Resistant</a></li>
<li><a href="#">LCD Talking Watch</a></li>
<li><a href="#">LCD Sport Watch with 7-Color Backlight</a></li>
<li><a href="#">Calculator Watch</a></li>
<li><span><a href="#"><strong>View All Products</strong> <i class="fa fa-angle-double-right"></i></a></span></li>
</ul>
</li>
<li><a href="#contact" role="tab" data-toggle="tab"><strong>Contact</strong></a></li>
<li><a data-toggle="tab" role="tab" href="#Add"><i class="fa fa-plus"></i></a></li>
</ul>
</div>
</div>
<!-- Nav tabs end-->
<!-- Tab content start -->
<div class="row">
<div class="col-sm-12 btobSuppliersTabContent">
<div class="tab-content">
<!--Co. infor tab start-->
<div class="tab-pane active" id="CompanyInformation">
<div class="row pt-1 pb-1">
<!-- Left Content Panel Start -->
<div class="col-sm-9">
<div class="row">
<div class="col-sm-12 mb-1">
<div class="collapseHeading edit panel-heading">
<h2><a data-toggle="collapse" href="#CompanyOverview"><i class="fa fa-building-o"></i> <strong>Company Overview</strong></a> <a href="#" class="edit pull-right">Edit</a></h2>
</div>
<div class="panel-collapse collapse in" id="CompanyOverview">
<div class="panel-body">
<div class="row">
<div class="col-sm-4">
<div class="row">
<div class="col-lg-12">
<div class="coInfoSlideshowWraper">
<div id="coInfoSlideshow"></div>
<h3 class="changeImage"><a href="#"><i class="fa fa-camera"></i> Change Picture</a></h3>
</div>
</div>
</div>
<div class="row">
<article class="col-lg-12">
<ul id="coInfoSlideshow_thumbs" class="desoslide-thumbs-horizontal list-inline text-center">
<li>
<a href="img/coInfo/large/house-large.jpg">
<img src="img/coInfo/thumb/house-thumb.jpg" class="img-responsive" alt="Co Image">
</a>
<a class="remove" href="#"><i class="fa fa-times"></i><br>Remove</a>
</li>
<li>
<a href="img/coInfo/large/house-large1.jpg">
<img src="img/coInfo/thumb/house-thumb1.jpg" class="img-responsive" alt="Co Image">
</a>
<a class="remove" href="#"><i class="fa fa-times"></i><br>Remove</a>
</li>
<li>
<a href="img/coInfo/large/house-large2.jpg">
<img src="img/coInfo/thumb/house-thumb2.jpg" class="img-responsive" alt="Co Image">
</a>
<a class="remove" href="#"><i class="fa fa-times"></i><br>Remove</a>
</li>
</ul>
</article>
</div>
<div class="row">
<div class="col-sm-12">
<ul class="desoslide-thumbs-horizontal list-inline">
<li class="addNew text-center">
<a href="#">
<i class="fa fa-camera"></i><br>
<small>Add New</small>
</a>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-sm-12 drag-reorder"><i class="fa fa-arrows "></i> Drag to reorder</div>
</div>
</div>
<div class="col-sm-8">
<div class="supplier-details">
<h3><strong>Shishi Xinjia Electronics Co. Ltd.</strong> <a href="#" class="editIconMedium"><i class="fa fa-pencil"></i></a></h3>
<p><strong>Shishi Xinjia Electronics Co., Ltd.</strong> was established in July 1997, with a construction area of over 30,000 square meters of garden-style standard factory located in Baogai Technology Industrial Zone, Shishi City, Fujian Province, China. It is a private enterprise integrated development, manufacture and trade of cold light sports watch, talking watch, calculator watch, electronic watch and electronic clock, analog digital watches, quartz watches, etc. <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></p>
<table width="100%" border="0">
<tbody>
<tr>
<td width="30%"><strong>Business Type:</strong></th>
<td>Manufacturer, Trading Company <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Location:</strong></th>
<td>Fujian, China (Mainland) <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Year Established:</strong></th>
<td>2001 <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Total Revenue:</strong></th>
<td>US$10 Million - US$50 Million <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Main Products:</strong></th>
<td>XINJIA brand LCD sport watch,LCD digital clock <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Main Markets:</strong></th>
<td>Domestic Market, Central America, Western Europe, Mid East, South America, North America <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
</tbody>
</table>
<div class="contact-supplier-box">
<div class="row">
<div class="col-sm-6 disabled">
<button class="btn btn-md orange" type="button"><strong>Contact Supplier</strong></button>
</div>
<div class="col-sm-6">
<p><a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a> <strong>Ms. Vanessa Du</strong></p>
<p class="disabled"><span><i class="fa fa-headphones"></i> Customer Service</span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 mb-1">
<div class="collapseHeading edit panel-heading">
<h2><a data-toggle="collapse" href="#LanguageSpoken"><i class="fa fa-globe"></i> <strong>Language(s) Spoken</strong></a> <a href="#" class="edit pull-right"><i class="fa fa-plus"></i> Add Language</a></h2>
</div>
<div class="panel-collapse collapse in" id="LanguageSpoken">
<div class="panel-body language-body">
<ul class="language">
<li>
<div class="img"><img src="img/languages/china-flag.jpg"><span class="cross"><a href="#"><i class="fa fa-times"></i></a></span></div>
<p>Chinese</p>
</li>
<li>
<div class="img"><img src="img/languages/korean-flag.jpg"><span class="cross"><a href="#"><i class="fa fa-times"></i></a></span></div>
<p>Korean</p>
</li>
<li>
<div class="img"><img src="img/languages/english-flag.jpg"><span class="cross"><a href="#"><i class="fa fa-times"></i></a></span></div>
<p>English</p>
</li>
<li>
<div class="img"><img src="img/languages/spanish-flag.jpg"><span class="cross"><a href="#"><i class="fa fa-times"></i></a></span></div>
<p>Spanish</p>
</li>
<li>
<div class="img"><img src="img/languages/arabic-flag.jpg"><span class="cross"><a href="#"><i class="fa fa-times"></i></a></span></div>
<p>Arabic</p>
</li>
<li>
<div class="img"><img src="img/languages/italian-flag.jpg"><span class="cross"><a href="#"><i class="fa fa-times"></i></a></span></div>
<p>Italian</p>
</li>
<li>
<div class="img"><img src="img/languages/russian-flag.jpg"><span class="cross"><a href="#"><i class="fa fa-times"></i></a></span></div>
<p>Russian</p>
</li>
<li>
<div class="img"><img src="img/languages/hindi-flag.jpg"><span class="cross"><a href="#"><i class="fa fa-times"></i></a></span></div>
<p>Hindi</p>
</li>
<li>
<div class="img"><img src="img/languages/german-flag.jpg"><span class="cross"><a href="#"><i class="fa fa-times"></i></a></span></div>
<p>German</p>
</li>
</ul>
<div class="drag-reorder"><i class="fa fa-arrows "></i> Drag to reorder</div>
<ul class="language_edit">
<li><strong>Language</strong></li>
<li><input type="text"></li>
<li><input type="text"></li>
<li><input type="text"></li>
<li><input type="text"></li>
<li><a href="#">Add another language</a></li>
<li><button class="save" type="button"><strong>Save</strong></button>
<a class="cancel" href="#">Cancel</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 mb-1">
<div class="collapseHeading edit panel-heading">
<h2><a data-toggle="collapse" href="#TradeCapacity"><i class="fa fa-refresh"></i> <strong>Trade Capacity</strong></a> <a href="#" class="edit pull-right">Edit</a></h2>
</div>
<div class="panel-collapse collapse in" id="TradeCapacity">
<div class="panel-body">
<div class="row">
<div class="col-md-6">
<table class="trade-table">
<tr>
<th>Main Markets:</td>
<th colspan="2">Total Revenue (%)</td>
</tr>
<tr>
<td width="30%">Domestic Market</td>
<td width="55%"><div class="growth-bar"><span class="growth-12"></span></div></td> <td width="15%">12% <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td>Central America</td>
<td><div class="growth-bar"><span class="growth-12"></span></div></td>
<td>12% <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td>Western Europe</td>
<td><div class="growth-bar"><span class="growth-16"></span></div></td>
<td>16% <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td>Mid East</td>
<td><div class="growth-bar"><span class="growth-12"></span></div></td>
<td>12% <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td>Southeast Asia</td>
<td><div class="growth-bar"><span class="growth-12"></span></div></td>
<td>12% <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td>Eastern Europe</td>
<td><div class="growth-bar"><span class="growth-12"></span></div></td>
<td>12% <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td>South America</td>
<td><div class="growth-bar"><span class="growth-12"></span></div></td>
<td>12% <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td>North America</td>
<td><div class="growth-bar"><span class="growth-12"></span></div></td>
<td>12% <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
</table>
<p><strong>Total Annual Sales Volume:</strong></p>
<p>US$10 Million - US$50 Million <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></p>
<p><strong>Export Percentage:</strong></p>
<p>71% - 80% <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></p>
</div>
<div class="col-md-6 disabled">
<div class="trade "><img src="img/map.jpg"></div>
<div class="enlarge-btn">
<a href="#">enlarge <i class="fa fa-plus"></i></a>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4 col-sm-push-8 buttonHolder text-right">
<button type="button" class="save"><strong>Save</strong></button>
<a href="#" class="cancel">Cancel</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 mb-1">
<div class="collapseHeading edit panel-heading">
<h2><a data-toggle="collapse" href="#FactoryInformation"><i class="fa fa-cogs"></i> <strong>Factory Information</strong></a> <a href="#" class="edit pull-right">Edit</a></h2>
</div>
<div class="panel-collapse collapse in" id="FactoryInformation">
<div class="panel-body">
<div class="factoryinformation">
<h3>Production Capacity</h3>
<table width="100%" border="0">
<tbody>
<tr>
<td width="40%"><strong>Average lead time:</strong></th>
<td>2 Days <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Units produced per month:</strong></th>
<td>22,000 <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Factory Size (Sq.meters):</strong> </th>
<td>10,000-30,000 square meters <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Factory Location:</strong> </th>
<td>Baogai Technology Industrial Zone, Shishi City, Fujian Province, China <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Number of Production Lines:</strong> </th>
<td>Above 10 <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Number of R&D Staff:</strong> </th>
<td>5 - 10 People <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Number of QC Staff:</strong></th>
<td>11 - 20 People <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Management Certification:</strong></th>
<td>ISO9001 ISO9001 BSCI <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Contract Manufacturing:</strong></th>
<td>OEM Service Offered <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
</tbody>
</table>
</div>
<div class="row">
<div class="col-sm-4 col-sm-push-8 buttonHolder text-right">
<button type="button" class="save"><strong>Save</strong></button>
<a href="#" class="cancel">Cancel</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 mb-1">
<div class="contactSupplier disabled">
<h2><i class="fa fa-envelope-o"></i> Contact Supplier</h2>
<form class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label">To:</label>
<div class="col-sm-10">
<p><strong>Vanessa Du, Shishi Xinjia Electronics Co. Ltd.</strong></p>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Message: <em>*</em></label>
<div class="col-sm-10">
<textarea placeholder="Enter your enquiry details such as product style, color, etc. For a better quotation, include a self introduction and special requests, if any." rows="8" class="form-control"></textarea>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label hidden-xs"> </label>
<div class="col-sm-10">
<button class="btn btn-md orange" type="submit">Send</button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 mb-1">
<div class="collapseHeading edit panel-heading">
<h2><a data-toggle="collapse" href="#CustomerService"><i class="fa fa-headphones"></i> <strong>Customer Service</strong></a> <a href="#" class="edit pull-right">Edit</a></h2>
</div>
<div class="panel-collapse collapse in" id="CustomerService">
<div class="panel-body">
<div class="row">
<div class="col-sm-12"><h3>Contact Information</h3></div>
</div>
<div class="row">
<div class="col-md-6">
<table width="100%" border="0">
<tbody>
<tr>
<td width="40%"><strong>Company Name:</strong></th>
<td >Shishi Xinjia Electronics Co., Ltd. <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Address:</strong></th>
<td>Baogai Technology Industrial Zone <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Zip:</strong></th>
<td>362700 <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Country/Region:</strong></th>
<td>China (Mainland) <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>Province/State:</strong></th>
<td>Fujian <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong>City:</strong></th>
<td>Shishi <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6">
<table width="100%" border="0">
<tbody>
<tr>
<td width="40%"><strong><i class="fa fa-phone"></i> Telephone:</strong></th>
<td>86-595-88712610, 83027866 <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong><i class="fa fa-print"></i> Fax:</strong></th>
<td>86-595-88712611, 88712615 <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
<tr>
<td><strong><i class="fa fa-desktop"></i> Website:</strong></th>
<td>http://www.xin-jia.com <a href="#" class="editIconSmall"><i class="fa fa-pencil"></i></a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Left Content Panel End -->
<!-- Right Sidebar Start -->
<div class="col-sm-3">
<div class="feature-product-wrapper disabled">
<h3><strong>Featured Products</strong></h3>
<div class="feature-product">
<div class="slide">
<div class="item">
<div class="premiumProductsImage">
<span class="productTag"><i class="fa fa-tags"></i></span>
<a href="#">
<img src="img/featureProducts/p1.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">Analog-digital watch</a></p>
<p class="oldPrice">US $4-5 / Piece</p>
<h3>US $3-4 / <small>Piece</small></h3>
</div>
</div>
<div class="slide">
<div class="item">
<div class="premiumProductsImage">
<a href="#">
<img src="img/featureProducts/p2.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
</div>
<div class="slide">
<div class="item">
<div class="premiumProductsImage">
<a href="#">
<img src="img/featureProducts/p3.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
</div>
<div class="slide">
<div class="item">
<div class="premiumProductsImage">
<span class="productTag"><i class="fa fa-tags"></i></span>
<a href="#">
<img src="img/featureProducts/p4.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
</div>
<div class="slide">
<div class="item">
<div class="premiumProductsImage">
<a href="#">
<img src="img/featureProducts/p4.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
</div>
<div class="slide">
<div class="item">
<div class="premiumProductsImage">
<a href="#">
<img src="img/featureProducts/p5.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
</div>
<div class="slide">
<div class="item">
<div class="premiumProductsImage">
<a href="#">
<img src="img/featureProducts/p1.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
</div>
<div class="slide">
<div class="item">
<div class="premiumProductsImage">
<a href="#">
<img src="img/featureProducts/p2.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
</div>
<div class="slide">
<div class="item">
<div class="premiumProductsImage">
<a href="#">
<img src="img/featureProducts/p3.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
</div><div class="slide">
<div class="item">
<div class="premiumProductsImage">
<a href="#">
<img src="img/featureProducts/p4.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
</div>
</div>
</div>
<div class="row hidden-xs">
<div class="col-sm-12">
<a href="#">
<img src="img/leftSidebarAdd.png" class="img-responsive">
</a>
</div>
</div>
</div>
<!-- Right Sidebar End -->
<!-- Premium products start -->
<div class="row">
<div class="col-sm-12">
<div class="grayBorder premiumProducts disabled">
<div class="row">
<div class="col-sm-12 text-center">
<h2><strong>Close Out & Liquidations</strong></h2>
</div>
</div>
<div id="premiumProductsFullWidth" class="owl-carousel">
<div class="item">
<a class="tag" href="#"><i class="fa fa-tags"></i></a>
<div class="premiumProductsImage">
<a href="#">
<img src="img/premiumProducts/premium1.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">clocks and watches/watch clock/clock watch</a></p>
<h3>US $14.92 <small>/ Piece</small></h3>
</div>
<div class="item">
<a class="tag" href="#"><i class="fa fa-tags"></i></a>
<div class="premiumProductsImage">
<a href="#">
<img src="img/premiumProducts/premium2.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">K20 solid carbide dies for fabricating stamping dies</a></p>
<h3>US $8.10 <small>/ Piece</small></h3>
</div>
<div class="item">
<a class="tag" href="#"><i class="fa fa-tags"></i></a>
<div class="premiumProductsImage">
<a href="#">
<img src="img/premiumProducts/premium3.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
<div class="item">
<a class="tag" href="#"><i class="fa fa-tags"></i></a>
<div class="premiumProductsImage">
<a href="#">
<img src="img/premiumProducts/premium4.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">Luxury China watch winder storage box 9+10 watches</a></p>
<h3>US $9.17 <small>/ Piece</small></h3>
</div>
<div class="item">
<a class="tag" href="#"><i class="fa fa-tags"></i></a>
<div class="premiumProductsImage">
<a href="#">
<img src="img/premiumProducts/premium1.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">clocks and watches/watch clock/clock watch</a></p>
<h3>US $14.92 <small>/ Piece</small></h3>
</div>
<div class="item">
<a class="tag" href="#"><i class="fa fa-tags"></i></a>
<div class="premiumProductsImage">
<a href="#">
<img src="img/premiumProducts/premium2.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">K20 solid carbide dies for fabricating stamping dies</a></p>
<h3>US $8.10 <small>/ Piece</small></h3>
</div>
<div class="item">
<a class="tag" href="#"><i class="fa fa-tags"></i></a>
<div class="premiumProductsImage">
<a href="#">
<img src="img/premiumProducts/premium3.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">47 display touch frame touch screen watch</a></p>
<h3>US $5.45 <small>/ Piece</small></h3>
</div>
<div class="item">
<a class="tag" href="#"><i class="fa fa-tags"></i></a>
<div class="premiumProductsImage">
<a href="#">
<img src="img/premiumProducts/premium4.jpg" alt="Premium Products" title="Premium Products" class="img-responsive"/>
</a>
</div>
<p><a href="#">Luxury China watch winder storage box 9+10 watches</a></p>
<h3>US $9.17 <small>/ Piece</small></h3>
</div>
</div>
<a class="btn prev"><i class="fa fa-caret-left"></i></a>
<a class="btn next"><i class="fa fa-caret-right"></i></a>
</div>
</div>
</div>
<!-- Premium products end -->
</div>
</div>
<!--Co. infor tab end-->
<!--product tab start-->
<div class="tab-pane" id="products">
<div class="row pt-1">
<div class="col-sm-3">
<!-- Sidebar search start -->
<div class="row">
<div class="col-sm-10 col-xs-9">
<div class="input-group sidebarSearch">
<input type="text" placeholder="Search" class="form-control">
<span class="input-group-btn">
<button type="button" class="btn btn-default"><i class="fa fa-search"></i></button>
</span>
</div>
</div>
<div class="col-sm-2 col-xs-3">
<button type="button" data-target="#sidebarFilter" data-toggle="collapse" class="btn btn-default pull-right visible-xs">
<i class="fa fa-filter"></i>
</button>
</div>
</div>
<!-- Sidebar search end -->
<div class="sidebarFilter collapse" id="sidebarFilter">
<!-- Sidebar filter start -->
<div class="row">
<!-- Categories start -->
<div class="col-sm-12 sidebarFilter">
<p><strong>Close Out & Liquidations <i class="fa fa fa-tags"></i></strong></p>
<h5><strong>Categories</strong></h5>
<div class="sidebarFilterOption">
<ul>
<li class="active"><a href="#">5ATM waterproof digital sport watch</a> <small>(15)</small></li>
<li><a href="#">Desk clock</a> <small>(1)</small></li>
<li><a href="#">Keychain talking clock</a> <small>(13)</small></li>
<li><a href="#">LCD talking clock <small>(5)</small> <span class="caret"></span></a></li>
<li><a href="#">LCD multifunction digital clock <small>(2)</small></a></li>
<li><a href="#">Analog-digital talking watch <small>(46)</small></a></li>
<li><a href="#">5ATM waterproof analog-digital watch <small>(22)</small></a></li>
<li><a href="#">3ATM waterproof digital sport watch <small>(8)</small></a></li>
<li><a href="#">2ATM waterproof digital sport watch <small>(2)</small></a></li>
<li><a href="#">Quartz Analog Watch <small>(67)</small></a></li>
<li><a href="#">LED watch With Water 30M Resistant <small>(16)</small></a></li>
<li><a href="#">LCD Talking Watch <small>(3)</small></a></li>
<li><a href="#">LCD Sport Watch with 7-Color Backlight <small>(25)</small></a></li>
<li><a href="#">Calculator Watch <small>(11)</small></a></li>
</ul>
</div>
</div>
<!-- Categories end -->
</div>
<!-- Sidebar filter end -->
</div>
<!-- Left Sidebar Advertisement start -->
<div class="row hidden-xs">
<div class="col-sm-12 googleAdd">
<a href="#">
<img src="img/leftSidebarAdd.png"/>
</a>
</div>
</div>
<!-- Left Sidebar Advertisement end -->
</div>
<div class="col-sm-9">
<!-- Result title start-->
<div class="row productSearchResult">
<div class="col-xs-9">
<h2><strong>All Products (236)</strong></h2>
</div>
<div class="col-xs-3 productSearchNumbers">
<p><strong>1 - 15</strong> of 2454</p>
</div>
</div>
<!-- Result title end-->
<!-- Tab content start -->
<div class="row">
<div class="col-sm-12 btobSuppliersTabContent">
<div class="tab-content">
<div class="tab-pane active">
<!-- Product filter start-->
<div class="row">
<div class="col-sm-12">
<div class="productFilter btobSuppliersproductFilter clearfix">
<div class="col-sm-8">
<div class="select-products">
<span><i class="fa fa-check-square"></i></span> Select products and contact the supplier
</div>
</div>
<div class="productView form-inline">
<div class="form-group">
<label>View:</label>
<ul class="viewTabs">
<li class="active"><a href="#productsListView" role="tab" data-toggle="tab"><i class="fa fa-th-list"></i></a></li>
<li><a href="#productsGridView" role="tab" data-toggle="tab"><i class="fa fa-th"></i></a></li>
</ul>
</div>
<div class="form-group">
<label>Per Page:</label>
<select class="selectpicker form-control">
<option>15</option>
<option>25</option>
<option>35</option>
<option>50</option>
</select>
</div>
</div>
</div>
</div>