-
Notifications
You must be signed in to change notification settings - Fork 1
/
online_pcb_quote.html
2793 lines (2659 loc) · 201 KB
/
online_pcb_quote.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>
<title>Instant PCB Quote Online - PCB Cost Calculator - ALLPCB.com</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
<meta name="keywords" content="pcb quote, pcb quote online, instant pcb quote, pcb calculator, pcb cost calculator"/>
<meta name="description" content="The instant online pcb quote calculator helps you estimate the pricing of your standard printed circuit boards manufacturing. Quote Now!"/>
<meta http-equiv="Pragma" content="public">
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="google-site-verification" content="XNE5qH9_Odx-8pk7VkeHWk62joNlbqzlBa4DzkhC1U4"/>
<link href="./css/pcb/newbase_v1.css" rel="stylesheet"/>
<link href="./css/pcb/pcbonlineNew.css" rel="stylesheet" type="text/css"/>
<link href="./css/pcb/index.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!--头部-->
<div class="common-header common-header-w">
<div class="header-width-1180 width-1180 clr">
<span class="title-logo fl"></span>
<div class="header-nav fl lbBox">
<a href="" class="lineBlock boxsiz active">Home</a>
<a href="" class="lineBlock boxsiz">PCB Prototype
</a>
<a href="" class="lineBlock boxsiz">PCB Assembly
</a>
<a href="" class="lineBlock boxsiz">SMT-Stencil
</a>
<a href="" class="lineBlock boxsiz">Membrane Switch
</a>
</div>
<div class="fr lbBox">
<a class="car lineBlock">
<span class="car-msg lineBlock boxsiz">1</span>
</a>
<div class="account-btn lineBlock lbBox boxsiz">
<span class="user-icon lineBlock"></span>
<span class="lineBlock account-text">Account</span>
<span class="arrow-down-icon lineBlock"></span>
<div class="drop-down-menu">
<div class="arrow-top-div">
<i class="arrow-top lineBlock"></i>
</div>
<div class="menu-div">
<h3 class="menu-title">Get started now</h3>
<a href="" class="sign-in-btn menu-btn">Sign In</a>
<a href="" class="join-free-btn menu-btn">Join Free</a>
<ul>
<li><a href="" class="active">My PCBbuy</a></li>
<li><a href="">My Orders</a></li>
<li><a href="">Shipping Address</a></li>
<li><a href="">Balance</a></li>
<li><a href="">Account Settings</a></li>
<li><a href="">My SNS Profile</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!--头部end-->
<!--section-->
<div class="content">
<div class="main" style="min-width:1300px;">
<div class="quote-box">
<ul class="tab-quote clearfix">
<li class="active"><a href="/online_pcb_quote.html"><i class="i-ico ico-pcb"></i>PCB Instant Quote</a></li>
<li class=""><a href="/pcba_quote.html"><i class="i-ico ico-pcba"></i>PCB Assembly Quote</a></li>
<li class=""><a href="/smt_stencil_quote.html"><i class="i-ico ico-stencil"></i>SMD-Stencil Quote</a></li>
</ul>
</div>
<div class="w1180" style="margin-top:16px;">
<div class="clearfix rel">
<div class="main-l fl">
<div class="pcb mb20 pcbonline-options pcbonline-box" for-group="pcb">
<form class="form-inline rel dis" id="fm" action="">
<input value="2" name="ProType" type="checkbox" class="chkQutoItem undis" id="PCBSpecifications">
<div class="dvConvertSizebox undis">
<p>If you enter in units of inches and press the [Convert] button, it will be converted into units of millimeters in the quotation form.</p>
<div class="dvConvertSizeboxdata clearfix">
<div class="fl"> Y<input class="inchx" value="">inch</div>
<div class="fl"> X<input class="inchy" value="">inch</div>
</div>
<input type="button" id="btnConvert" class="btn-yellow" value="Submit">
</div>
<div class="pcb-con pcbonline-options">
<div class="bg-fff Product-option">
<h3 class="mb10">Product Type</h3>
<div class="option clearfix">
<div class="title fl">Product Type: </div>
<div class="option-con fl">
<ul class="option-choose clearfix">
<li>
<label class="item choose rel">
<i class="jp-ico subscript-ico"></i>
<input class="undis" name="proCategory" type="radio" value="fr4Item" checked="checked">
FR-4
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="proCategory" type="radio" value="cem1Item">
CEM-1
</label>
</li>
<li>
<label class="item rel not-selectable">
<input class="undis" name="proCategory" type="radio" value="aluminumItem">
Aluminum Board
</label>
</li>
</ul>
</div>
</div>
<div class="option rel clearfix option-sizebox">
<div class="title fl">
Dimensions:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="Dimensions refer to the maximum horizontal and vertical distance while its tolerance is ±0.2mm as default. Any special requirement for tolerance, please leave a note. Please choose either Keep-out layer or Mechanical layer as outline.*The dimension can be accurate to one decimal places,for any deviation ,we will refer to the file.">
<i class="tipscon" tipshtml="true" style="display: none;">Dimensions refer to the maximum vertical and horizontal distance while its tolerance is ±0.2mm as default. Any special requirement for tolerance, please leave a note. Please choose either Keep-out layer or Mechanical layer as outline.</i>
</span>
</a>
</div>
<div class="option-con fl" style="width:500px;">
<div class="clearfix">
<div class="option-size fl">
<input type="number" step="0.1" min="0.1" max="650" value="" class="form-control b-bradius0 f12" name="hidLength" id="hidLength" title=" " oninput="if (value.length > 5) value = value.slice(0, 5)" onkeyup="QC.ValidNumberHight(this, 1)" placeholder="Height">
<label class="ml5 mr5 cl-666 normal">X</label>
<input type="number" step="0.1" min="0.1" max="650" value="" class="form-control b-bradius0 f12" name="hidWidth" id="hidWidth" title=" " oninput="if (value.length > 5) value = value.slice(0, 5)" onkeyup="QC.ValidNumberWidth(this, 1)" placeholder="Width">
<label class="cl-666 normal">mm</label>
</div>
<span class="cl-b16a00 fl mt5 ml5" id="unitpricedesc">*size of pc</span>
<input value="inch'↔mm" type="button" style="" id="dvConvertSize">
</div>
</div>
<div class="xy-sizepanelpic">
<img src="./images/pcbonline/demo03.png?v=" alt="Size Example" class="otherban_pic">
<img src="./images/pcbonline/demo04.png?v=" alt="Size Example" class="lvjiban undis" style="display: none;">
</div>
</div>
<div class="option clearfix">
<div class="title fl">
Quantity:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="Length*Width*Quantity">
<i class="tipscon" tipshtml="true" style="display: none;">Length*Width*Quantity</i>
</span>
</a>
</div>
<div class="option-con rel fl">
<input class="form-control option-number" id="hidNum" name="hidNum" type="number" value="" readonly="readonly" placeholder=" "><span class="cl-b16a00 ml5" id="unit">*pcs</span>
<div class="boardnumber undis" id="boardnumber" style="display: none;">
<ul>
<li>
<label>
<input type="radio" name="countNumer" value="5">5
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="10">10
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="15">15
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="20">20
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="25">25
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="30">30
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="50">
50
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="75">
75
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="100">
100
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="125">
125
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="150">
150
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="200">
200
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="250">
250
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="300">
300
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="350">
350
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="400">
400
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="450">
450
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="500">
500
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="600">
600
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="700">
700
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="800">
800
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="900">
900
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="1000">
1000
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="1500">
1500
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="2000">
2000
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="2500">
2500
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="3000">
3000
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="3500">
3500
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="4000">
4000
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="4500">
4500
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="5000">
5000
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="5500">
5500
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="6000">
6000
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="6500">
6500
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="7000">
7000
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="7500">
7500
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="8000">
8000
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="9000">
9000
</label>
</li>
<li>
<label>
<input type="radio" name="countNumer" value="10000">
10000
</label>
</li>
</ul>
<div class="boardnumberbtn">
Other:
<input type="text" name="txtSelNum" id="txtSelNum" class="txt-input ">
<a class="cl-454545">
<input name="setInputNum" type="button" value="Submit" id="btn" onclick="Pcb.SetInputNum()">
</a>
<a class="cl-454545" onclick="Pcb.CloseSelectNumDiv();">
<input type="button" value="Cancel" id="btn3">
</a>
<br>
<span class="f12 cl-f90 ml5">(Quantity must be the multiple of 50!)</span>
</div>
</div>
</div>
</div>
</div>
<div class="pcb-con bg-fff pcb-message">
<h3 class="mb10">PCB Specifications</h3>
<div class="option clearfix">
<div class="title fl">
Layers:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="Typically, 1 layer PCBs are manufactured with 2 layer PCBs in panel for efficiency. For the same processes as 2 layer PCBs, some 1 layer PCBs will have copper plated vias with better performance. If your PCBs are 1 layer with copper plated vias, please choose 2 layers.">
<i class="tipscon" tipshtml="true" style="display: none;">Typically, 1 layer PCBs are manufactured with 2 layer PCBs in panel for efficiency. For the same processes as 2 layer PCBs, some 1 layer PCBs will have copper plated vias with better performance. If your PCBs are 1 layer with copper plated vias, please choose 2 layers.</i>
</span>
</a>
</div>
<div class="option-con fl">
<ul class="option-choose clearfix">
<li>
<label class="item unifyitem rel">
<input class="undis" name="hidLayers" type="radio" value="1">
1
</label>
</li>
<li>
<label class="item unifyitem rel choose">
<i class="jp-ico subscript-ico"></i><input class="undis" name="hidLayers" type="radio" value="2" checked=""'checked'"">
2
</label>
</li>
<li>
<label class="item unifyitem rel">
<input class="undis" name="hidLayers" type="radio" value="4">
4
</label>
</li>
<li>
<label class="item unifyitem rel">
<input class="undis" name="hidLayers" type="radio" value="6">
6
</label>
</li>
<li>
<label class="item unifyitem rel">
<input class="undis" name="hidLayers" type="radio" value="8">
8
</label>
</li>
<li>
<label class="item unifyitem rel">
<input class="undis" name="hidLayers" type="radio" value="10">
10
</label>
</li>
<li>
<label class="item unifyitem rel">
<input class="undis" name="hidLayers" type="radio" value="12">
12
</label>
</li>
<li>
<label class="item unifyitem rel">
<input class="undis" name="hidLayers" type="radio" value="14">
14
</label>
</li>
</ul>
<div class="multilayer-board layersortzone undis" style="">
<div class="clearfix">
<span class="fl mt15">
Layers Order:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="Gerber file extension name. e.g. L1:GTL L2:G1 L3:G2 L4:GBL ">
<i class="tipscon" tipshtml="true" style="width: 390px; display: none;">Gerber file extension name. e.g. L1:GTL L2:G1 L3:G2 L4:GBL </i>
</span>
</a>
</span>
<ul class="layersort fl ml5 clearfix"></ul>
</div>
</div>
</div>
</div>
<div class="option clearfix">
<div class="title fl">
Order Type:
</div>
<div class="option-con fl">
<ul class="option-choose clearfix">
<li>
<label class="item rel choose">
<i class="jp-ico subscript-ico"></i><input class="undis" name="boadtype" type="radio" value="Single PCB" checked="checked">
Single PCB
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="boadtype" type="radio" value="Panel PCB as design">
Panel PCB As Design
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="boadtype" type="radio" value="Panel by ALLPCB">
Panel By ALLPCB
</label>
</li>
</ul>
</div>
</div>
<div class="option clearfix undis" id="acceptCrossedzone" style="display: none;">
<div class="title fl">
X-out Allowance in Panel:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="If you do not accept the X-out Allowance in Panel, the cost will increase the cost of 30%">
<i class="tipscon" tipshtml="true" style="display: none;">If you do not accept the X-out Allowance in Panel, the cost will increase the cost of 30%</i>
</span>
</a>
</div>
<div class="option-con fl">
<ul class="option-choose clearfix">
<li>
<label class="item choose rel">
<i class="jp-ico subscript-ico"></i>
<input type="radio" value="Yes" name="acceptCrossed" class="noml undis" checked="checked">
Accept
</label>
</li>
<li>
<label class="item rel">
<input type="radio" value="No" name="acceptCrossed" class="noml undis">
Not Accept
</label>
</li>
</ul>
</div>
</div>
<div class="imitation-customer imitation-requirements undis" for="set" id="pinbanzone" style="display: none;">
<div class="option rel clearfix pbsizezone">
<div class="title fl">
Panel Way:
</div>
<div class="option-con fl">
<div class="clearfix">
<div class="fl">
<input type="number" value="1" class="input-default w65 h30 b-bradius0 f12" name="pinban_x" min="1" placeholder="Vertical Qty">
<label class="ml5 mr5 cl-666 normal">X</label>
<input type="number" value="1" class="input-default w65 h30 b-bradius0 f12" name="pinban_y" min="1" placeholder="Horizontal Qty">
</div>
<span class="cl-b16a00 fl ml5 mt5">*order:Vertical X Horizontal</span>
<div class="imposition-information-example rel fl ml10 mt5" style="display: none;">
<a class="f14 cl-b16a00">*Panelization Detail</a>
<div class="imposition-information imposition-informationExample rel">
<div class="imposition-information-item mt5 rel">
<p class="f12 cl-999 text-center mb10">Image for panelized board ↓ (for reference only)<span class="cl-b16a00 ml10">Scaling:<em class="proportion"></em>/1</span></p>
<div class="panel-x mb10">
<p class="number f12"><span><em class="panel-width">0.00</em> mm</span></p>
</div>
<div class="panel-box">
<div class="edgerailwidth edgerailwidth-top undis"></div>
<div class="panel-item clearfix">
<div class="edgerailwidth edgerailwidth-left fl undis"></div>
<div class="example-createpanel fl"></div>
<div class="edgerailwidth edgerailwidth-right fl undis"></div>
</div>
<div class="edgerailwidth edgerailwidth-bottom undis"></div>
</div>
<div class="panel-y" style="top: 73px;">
<p class="number f12">
<span>
<em class="panel-height">0.00</em><br>
mm
</span>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="imposition-requires-presentation rel b-bradius4 mt10 undis">
<p class="tptsinfo"></p>
</div>
<div class="request-item mt10 clearfix undis rel" for2="jpset">
<div class="title fl">Edge Rail:</div>
<div class="option-con fl rel">
<ul class="option-choose clearfix">
<li>
<label class="item choose rel">
<i class="jp-ico subscript-ico"></i>
<input class="undis" type="radio" value="none" checked="checked" name="processeEdge_x">
None
</label>
</li>
<li>
<label class="item rel">
<input class="undis" type="radio" value="updown" name="processeEdge_x">
Up & Down
</label>
</li>
<li>
<label class="item rel">
<input class="undis" type="radio" value="leftright" name="processeEdge_x">
Left & Right
</label>
</li>
<li>
<label class="item rel">
<input class="undis" type="radio" value="both" name="processeEdge_x">
All 4 sides
</label>
</li>
</ul>
</div>
<div class="example-diagram ml10 mt5 fl rel" style="position: absolute; right: 65px; top: 9px;">
<a class="cl-b16a00">eg</a>
<div class="example-diagram-con b-bradius4 undis" style="display: none;">
<img src="./images/pcbonline/ex_craftside.png" alt="工艺边-示例">
</div>
</div>
</div>
<div class="request-item mt10 clearfix" for2="jpset" style="display: none;">
<div class="title fl">Edge-Rail Width:</div>
<div class="option-con fl clearfix">
<div class="craft-edge-width fl mr10">
<input class="input-default w80" type="number" min="4" name="processeEdge_y" value="4" max="100">mm
</div>
<span class="cl-b16a00 fl ml5 mt5">*min 4mm</span>
</div>
</div>
<div class="request-item mt10 clearfix">
<div class="title fl">Panel Separating Way:</div>
<div class="option-con fl">
<select class="panel-separatingWay option-number form-control b-bradius0" name="VCut" style="width: auto;">
<option value="none" selected="selected">None</option>
<option value="vcut">Panel as V-Scoring</option>
<option value="luocao">Panel as Tab-routing</option>
<option value="vcutluocao">Both V-Scoring&Tab-routing</option>
</select>
</div>
</div>
<div class="luocao-state undis mt10" style="display: none;">
<div class="slot-spacing clearfix">
<div class="pull-left">
<label class="pull-left mt5" for="Length" style="width:100px;">routing width in Y level:</label>
<div class="pull-left" style="background:#eee;width:105px;padding:1px;">
<input type="number" id="cao_x" class="form-control b-bradius0 f12" style="height: 24px;padding: 2px 10px;width:50px;border:1px solid #e7e7e7;" name="cao_x" value="0" min="0" placeholder="routing width in Y level" oninput="if(this.value.length >2) value = this.value.slice(0, 3)">
<label class="cl-666 normal">mm</label>
</div>
</div>
<div class="pull-left ml20">
<label class="pull-left mt5" for="Width" style="width:100px;">routing width in X level:</label>
<div class="pull-left" style="background:#eee;width:105px;padding:1px;">
<input type="number" id="cao_y" class="form-control b-bradius0 f12" style="height: 24px;padding: 2px 10px;width:50px;border:1px solid #e7e7e7;" name="cao_y" value="0" min="0" placeholder="routing width in X level" oninput="if(this.value.length >2) value = this.value.slice(0, 3)">
<label class="cl-666 normal">mm</label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="option clearfix pinbanzone undis">
<div class="title fl">
Panel Rule:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="Panel boards refer to different boards put in one folder or compression package. So $8.7 is charged for one panel, regardless of the panel methods by stamp hole, long slot or directly milling.">
<i class="tipscon" tipshtml="true" style="display: none;">
Panel boards refer to different boards put in one folder or compression package. So $8.7 is charged for one panel, regardless of the panel methods by stamp hole, long slot or directly milling.
</i>
</span>
</a>
</div>
<div class="option-con fl ">
<div class="mb5">
<label class="f12 normal">Delivered As: </label>
<input class="input-default w80" type="number" min="1" value="1" id="pinban_x">X
<input class="input-default w80" type="number" min="1" value="1" id="pinban_y">pcs
<div class="example-diagram ml10 rel">
<a class="cl-b16a00">For Example</a>
<div class="example-diagram-con b-bradius4 undis" style="display: none;">
<img src="./images/pcbonline/ex_pbrule.png" alt="Panel Design-For Example">
</div>
</div>
</div>
<div>
<label class="f12 normal">Edge Rail: </label>
<select class="select-default f12" id="processeEdge_x">
<option value="">None</option>
<option value="updown">Top and Bottom</option>
<option value="leftright">Left and Right</option>
<option value="both">Four Sides</option>
</select>
<input class="input-default w80" type="number" min="0" value="0" id="processeEdge_y">mm
<div class="example-diagram ml10 rel">
<a class="cl-b16a00">For Example</a>
<div class="example-diagram-con b-bradius4 undis" style="display: none;">
<img src="./images/pcbonline/ex_craftside.png" alt="Edge Rail-For Example">
</div>
</div>
</div>
</div>
</div>
<div class="option clearfix">
<div class="title fl">
Material Type:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="The FR-4 material is TG130 with 0.4-3.0mm thickness. The thermal conductivity of Aluminum board is 1.0/1.5/2.0W with 1.0-2.0mm thickness." id="tips11">
<i class="tipscon" tipshtml="true" style="display: none;">The FR-4 material is TG130 with 0.4-3.0mm thickness. The thermal conductivity of Aluminum board is 1.0/1.5/2.0W with 1.0-2.0mm thickness.</i>
</span>
</a>
</div>
<div class="option-con fl clearfix">
<ul class="option-choose clearfix">
<li class="mb10" style="display: list-item;">
<label class="item rel choose">
<i class="jp-ico subscript-ico"></i><input class="undis" name="FR4Type" type="radio" value="Normal FR-4 Board" checked="checked">
FR-4(Shengyi)
</label>
</li>
<li class="mb10" style="display: list-item;">
<label class="item rel">
<input class="undis" name="FR4Type" type="radio" value="fr4jt">
FR-4(Kingboard)
</label>
</li>
<li class="mb10" style="display: list-item;">
<label class="item rel">
<input class="undis" name="FR4Type" type="radio" value="gj">
FR-4(Goldenmax)
</label>
</li>
<li class="mb10" style="display: none;">
<label class="item rel">
<input class="undis" name="FR4Type" type="radio" value="cem1">
CEM-1
</label>
</li>
<li style="display: none;">
<label class="item rel">
<input class="undis" name="FR4Type" type="radio" value="gzaluminum">
Guangzhou Aluminum Board
</label>
</li>
<li style="display: none;">
<label class="item rel">
<input class="undis" name="FR4Type" type="radio" value="Aluminum Board">
Goldenmax Aluminum Board
</label>
</li>
</ul>
</div>
</div>
<div class="option clearfix fr4-tg" style="">
<div class="title fl">
FR4-TG:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="The glass transition temperature for FR-4, TG130-170 is available">
<i class="tipscon" tipshtml="true" style="display: none;">The glass transition temperature for FR-4, TG130-170 is available</i>
</span>
</a>
</div>
<div class="option-con fl clearfix">
<ul class="option-choose clearfix">
<li class="mb10">
<label class="item rel choose"><i class="jp-ico subscript-ico"></i><input class="undis" name="FR4Tg" type="radio" value="TG130" checked="checked">TG140</label>
</li>
<li class="mb10">
<label class="item rel">
<input class="undis" name="FR4Tg" type="radio" value="TG150">
TG150
</label>
</li>
<li class="mb10">
<label class="item rel">
<input class="undis" name="FR4Tg" type="radio" value="TG170">
TG170
</label>
</li>
</ul>
</div>
</div>
<div class="option clearfix undis" id="daorexishu" style="">
<div class="title fl">Heat Conductivity:</div>
<div class="option-con fl">
<ul class="option-choose clearfix">
<li>
<label class="item choose rel">
<i class="jp-ico subscript-ico"></i>
<input class="undis" name="Invoice" type="radio" value="1" checked="checked">
1.0W
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="Invoice" type="radio" value="2">
1.5W
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="Invoice" type="radio" value="3">
2.0W
</label>
</li>
</ul>
</div>
</div>
<div class="option clearfix undis" id="naiyazhi" style="">
<div class="title fl">
Withstanding Voltage Value:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="The withstand voltage of aluminum board is 2500v by default, 3500v and 4000v are available when the heat conductivity is 1.0 w, the finished copper is 1oz and the thickness within 1.0mm to 2,0mm.">
<i class="tipscon" tipshtml="true" style="display: none;">
The withstand voltage of aluminum board is 2500v by default, 3500v and 4000v are available when the heat conductivity is 1.0 w, the finished copper is 1oz and the thickness within 1.0mm to 2,0mm.
</i>
</span>
</a>
</div>
<div class="option-con fl">
<ul class="option-choose clearfix">
<li>
<label class="item rel choose">
<i class="jp-ico subscript-ico"></i><input class="undis" name="WithstandVoltage" type="radio" value="2500" checked="checked">
2500V
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="WithstandVoltage" type="radio" value="3500">
3500V
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="WithstandVoltage" type="radio" value="4000">
4000V
</label>
</li>
</ul>
</div>
</div>
<div class="option clearfix ">
<div class="title fl">
PCB Kinds:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="Differrent PCB kinds are merged in 1 design. This is not related to the panel separating way. Usually, 1 PCB order is for 1 kind PCB as default. If there are other kinds, extra costs will be charged.">
<i class="tipscon" tipshtml="true" style="display: none;">Differrent PCB kinds are merged in 1 design. This is not related to the panel separating way. Usually, 1 PCB order is for 1 kind PCB as default. If there are other kinds, extra costs will be charged.</i>
</span>
</a>
</div>
<div class="option-con fl">
<input class="input-default w80" type="number" min="1" value="1" name="txtPinBanNum" style="border: 1px solid #e7e7e7;">
<label class="f12 cl-454545 normal ml5">(Numbers of board types in documents)</label>
<div class="example-diagram ml10 rel">
<a class="cl-b16a00 f12">For Example</a>
<div class="example-diagram-con b-bradius4 undis" style="display: none;">
<img src="./images/pcbonline/ex_pbnum.png" alt="Panel For Example">
</div>
</div>
</div>
</div>
<div class="option clearfix">
<div class="title fl">
Thickness:
<a class="item-tips rel">
<span class="jp-ico optiontip-ico" item-tips="Thickness refers to the thickness of circuit board. We adopt Level A KB military materials with default 10% tolerance caused by solder mask and copper plating. Any special requirement for tolerance, please leave a note.*V-cut is not acceptable for 0.4mm board thickness.">
<i class="tipscon" tipshtml="true" style="display: none;">Thickness refers to the thickness of circuit board. We adopt Level A KB military materials with default 10% tolerance caused by solder mask and copper plating. Any special requirement for tolerance, please leave a note.</i>
</span>
</a>
</div>
<div class="option-con fl clearfix">
<ul class="option-choose fl clearfix">
<li>
<label class="item rel">
<input class="undis" name="BoardThickness" type="radio" value="0.4">
0.4
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="BoardThickness" type="radio" value="0.6">
0.6
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="BoardThickness" type="radio" value="0.8">
0.8
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="BoardThickness" type="radio" value="1">
1.0
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="BoardThickness" type="radio" value="1.2">
1.2
</label>
</li>
<li>
<label class="item rel choose">
<i class="jp-ico subscript-ico"></i><input class="undis" name="BoardThickness" type="radio" value="1.6" checked=""'checked'"">
1.6
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="BoardThickness" type="radio" value="2">
2.0
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="BoardThickness" type="radio" value="2.4">
2.4
</label>
</li>
</ul>
<img class="ml10 fl otherban_pic mb5" src="./images/pcbonline/pic_thickness.png" alt="thickness">
<img class="ml10 fl lvjiban undis mb5" src="./images/pcbonline/lvthickness.jpg" alt="thickness" style="display: none;">
<span class="cl-b16a00 fl mt5">*0.4mm board can't be separated by V-cut</span>
</div>
</div>
<div class="option clearfix">
<div class="title fl">
Finished Copper (outer):
</div>
<div class="option-con fl clearfix">
<ul class="option-choose fl clearfix">
<li style="display: none;">
<label class="item rel">
<input class="undis" name="radCopperThickness" type="radio" value="0.5 oz Cu">
0.5oz
</label>
</li>
<li style="display: none;">
<label class="item rel">
<input class="undis" name="radCopperThickness" type="radio" value="0.75 oz Cu">
0.75oz
</label>
</li>
<li>
<label class="item rel choose">
<i class="jp-ico subscript-ico"></i><input class="undis" name="radCopperThickness" type="radio" value="1 oz Cu" checked="checked">
1oz
</label>
</li>
<li>
<label class="item rel">
<input class="undis" name="radCopperThickness" type="radio" value="2 oz Cu">
2oz
</label>
</li>
</ul>
<img class="ml10 mt5 fl otherban_pic" src="./images/pcbonline/pic_copper.png" alt="copper">
<img class="ml10 mt5 fl lvjiban undis" src="./images/pcbonline/lvcopper.jpg" alt="copper" style="display: none;">
</div>
</div>
<div class="option clearfix inner-copper" style="display: none;">
<div class="title fl">
Inner Copper:
</div>
<div class="option-con fl clearfix">
<ul class="option-choose fl clearfix">
<li>
<label class="item rel choose">
<i class="jp-ico subscript-ico"></i><input class="undis" name="InnerCopperThickness" type="radio" value="1" checked="checked">
1oz
</label>