-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathccb_content_str.txt
3742 lines (2267 loc) · 203 KB
/
ccb_content_str.txt
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>欢迎访问中国建设银行网站</title>
<meta name="keywords" content="建行官网、建设银行官方网站、建行、中国建设银行、存贷及银行卡、悦享生活、优智规划、账户查询、网点直通、便利服务、业务申请、电子银行开通、电话银行菜单定制、快搜快购、存款、贷款、闲钱也能增值、莘莘学子馆、积分圆梦微公益、不一样的建行、我的.com、优惠直通、分行推荐、快速帮助、最近访问银行、金融、建设银行、网上银行、电子银行、手机银行、电话银行、微信银行、基金、理财、保险、贵金属、信用卡、悦生活、学生惠、房e通、e账户、小微企业、公司机构、私人银行、善融商务、投资理财、企业商城、个人商城、在线客服、95533、CCB、建行集团、国内分行、网点及ATM。">
<meta name="description" content="中国建设银行,在全球范围内为台湾、香港、美国、澳大利亚等国家或地区提供全面金融服务,主要经营公司银行业务、个人银行业务和资金业务,包括居民储蓄存款、信贷资金贷款、住房类贷款、外汇、信用卡,以及投资理财等多种业务。">
<script type="text/javascript" src="/cn/v3/js/jquery-1.7.2.min.js"></script>
<link href="/cn/v3/css/reset.css" rel="stylesheet" type="text/css" />
<link href="/cn/v3/css/public.css" rel="stylesheet" type="text/css" />
<link href="/cn/v3/css/style.css" rel="stylesheet" type="text/css" />
<link href="/cn/v3/css/index.css" rel="stylesheet" type="text/css" />
<link href="/cn/v3/css/vcc-css.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
if(!window.console){
var method;
var noop=function(){};
var methods=['assert','clear','count','debug','dir','dirxml','error','exception','group','groupCollapsed','groupEnd','info','log','markTimeline','profile','profileEnd','table','time','timeEnd','timeline','timelineEnd','timeStamp','trace','warn'];
var length=methods.length;
var console={};
while(length--){
method=methods[length];
console[method]=noop;
}
}
</script>
<script type="text/javascript" src="/cn/v3/js/jquery.Xslider.js"></script>
<script type="text/javascript" src="/cn/v3/js/jquery.scroll.js"></script>
<script type="text/javascript" src="/cn/v3/js/jquery.cookie.js"></script>
<script type="text/javascript" src="/cn/v3/js/main.js"></script>
<script type="text/javascript" src="/cn/v3/js/koala.min.1.5.js"></script>
<script type="text/javascript" src="/cn/v3/js/city_changer.js"></script>
<script type="text/javascript" src="/cn/v3/js/comm.js"></script>
<script type="text/javascript" src="/cn/v3/js/adv.js"></script>
<script type="text/javascript" src="/cn/v3/js/header_box.js"></script>
<script type="text/javascript" src="/cn/v3/js/switch.js"></script>
<script src="http://www.ccb.com/cn/js/dataacquisition.header.ccb.js"></script>
<script type="text/javascript" src="/cn/home/v3/js/index_scroll.js"></script>
<script type="text/javascript">
$(function(){
var topNum = 0;
$(".header_top_box .header_top_main .header_top_left li").each(function(i){
if(topNum == i){
$(this).addClass("se");
}else{
$(this).removeClass("se");
}
});
//$(".header_top_box .header_top_main .header_top_left li").eq(topNum).addClass("se");
})
</script>
<script type="text/javascript">
var pageid = '13505';
</script>
<script type="text/javascript" src="http://www.ccb.com/cn/v3/js/net_gift.js"></script>
<script type="text/javascript">
$(function(){
$('.btn_close2').click(function(){
$('.notice').hide();
});
$('.header_top_right_a').click(function(){
$(this).parent("li").addClass("se");
$(this).parent("li").siblings("li").removeClass("se");
});
$('.header_top_right_a:eq(5)').unbind();
$('#sus_btn').click(function(){
$('#button1').click();
});
//菜单悬浮
$(window).scroll(function(){
var top_jl =$(document).scrollTop();
if(top_jl<343){
$(".header_box_3").hide();
$(".header_box_shadow").hide();
$(".header_box").removeClass("header_box_2");
$("#header_box").attr("style","");
}else{
$(".header_box_3").show();
$(".header_box_shadow").show();
$("#header_box").addClass("header_box_2").slideDown("slow");
}
});
//默认状态下左右滚动
$("#s2").xslider({
unitdisplayed:3,
movelength:3,
unitlen:266,
autoscroll:null
});
//默认状态下左右滚动
$("#s3").xslider({
unitdisplayed:3,
movelength:3,
unitlen:266,
autoscroll:null
});
//默认状态下左右滚动
$("#s4").xslider({
unitdisplayed:3,
movelength:3,
unitlen:266,
autoscroll:null
});
//默认状态下左右滚动
$("#s5").xslider({
unitdisplayed:3,
movelength:3,
unitlen:266,
autoscroll:null
});
//默认状态下左右滚动
$("#s6").xslider({
unitdisplayed:3,
movelength:3,
unitlen:266,
autoscroll:null
});
//默认状态下左右滚动
$("#s7").xslider({
unitdisplayed:1,
movelength:1,
unitlen:460,
autoscroll:null
});
$("#s8").xslider({
unitdisplayed:3,
movelength:3,
unitlen:256,
autoscroll:null
});
var suspendTime;
//侧栏加载动画
function run(){
suspendTime=setTimeout(suspendShow,800);
suspendTime=setTimeout(suspendHide,1600);
suspendTime=setTimeout(suspendShow,2400);
suspendTime=setTimeout(suspendHide,3200);
function suspendShow(){
$("#suspend").animate({width: 120}, 400);
}
function suspendHide(){
$("#suspend").animate({width: 40}, 400);
}
}
run();
//insertIndexBigPictureAdv();
})
</script>
</head>
<body>
<script type="text/javascript">
var prev_top_news_idx = $.cookie("prev_top_news_idx");
var this_top_news_idx = $("body>div.notice li.notice-li2>a").attr("idx");
if(prev_top_news_idx!=this_top_news_idx){
$("body>div.notice").show();
}
$("body>div.notice li.notice-li2>a, body>div.notice span.btn_close2").click(function(){
var cookieOptions={expires:30};
$.cookie("prev_top_news_idx", this_top_news_idx,cookieOptions);
});
</script>
<script type="text/javascript" src="http://www.ccb.com/cn/v3/include/mycom/mycom.js"></script>
<!--<div id="fadee" class="shade" ></div> -->
<div class="sidebar">
<div class="suspend susp_nav" id="suspend">
<ul>
<li class="sus_li1">我的.com</li>
<li class="sus_li3">优惠直通</li>
<li class="sus_li4">分行推荐</li>
<li class="sus_li5">快速帮助</li>
</ul>
</div>
<div id="fadee" class="shade"></div>
<div class="susp_show">
<div class="susp_l susp_nav">
<ul>
<li class="sus_li1 sus">我的.com</li>
<li class="sus_li3 sus">优惠直通</li>
<li class="sus_li4 sus">分行推荐</li>
<li class="sus_li5 sus">快速帮助</li>
</ul>
</div>
<div id="mycom" class="susp_r"><div class="w810"><div class="susp_tit"><div class="uesr_info"> <img src="http://image4.ccb.com/cn/home/v3/images/user/defult.png"><p>尊敬的用户,您还未登录,登录之后更精彩</p><div class="btn-user-login"><a href="http://login.ccb.com/tran/WCCMainPlatV5?CCB_IBSVersion=V5&SERVLET_NAME=WCCMainPlatV5&TXCODE=NHY010&tourl=http://www.ccb.com/cn/mycom/user_center.html" target="_blank">马上去登录 ></a></div></div> <span class="btn_close"><img src="http://image3.ccb.com/cn/home/v3/images/ico/close2.png"></span> </div><div class="susp_cont"><dl class="nologin-user"><dt>•个性应用,常用功能,自主定制</dt><dt>•交易记录,申请进度一站式查询</dt><dt>•消息提醒,重要事项不遗漏</dt><dt>•还有更多专享优惠</dt></dl><div class="ab_img"><img src="http://image4.ccb.com/cn/home/v3/images/sus_r1.jpg"></div></div></div></div>
<div class="susp_r"><div class="w850"><div class="susp_tit3"><ul><li class="hover_susp sus-li2">善融商务</li><li class="sus-li2">金融生活</li></ul><span class="btn_close"><img src="http://image3.ccb.com/cn/v3/images/ico/close2.png"></span> </div><div class="susp_cont3 switch1"><div class="scrolllist" id="s4"> <a class="abtn aleft"></a><div class="imglist_w"><ul class="imglist"><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170601_1496301237.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170601_1496301237/20170601151823807403.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170601_1496301237.html" target="_blank" >【善融商务】荔鲜记</a></dt><dt class="dt-con">善融好鲜 原产地直供</dt></dl></li><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170525_1495680838.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170525_1495680838/20170525105931307516.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170525_1495680838.html" target="_blank" >【善融商务】善融外联以心深交</a></dt><dt class="dt-con">前进路上,你我同行</dt></dl></li><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170525_1495681033.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170525_1495681033/20170525110154815878.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170525_1495681033.html" target="_blank" >【善融商务】购享原产地之广式干货专场</a></dt><dt class="dt-con">购享原产地 周周有惊喜</dt></dl></li><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170525_1495673326.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170525_1495673326/20170525085309855249.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170525_1495673326.html" target="_blank" >【善融商务】三星S8|S8+现货发售</a></dt><dt class="dt-con">免息分期 0压力</dt></dl></li><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170519_1495161159.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170519_1495161159/20170519104115311430.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170519_1495161159.html" target="_blank" >【善融商务】询惊喜 抢好礼(第三期)</a></dt><dt class="dt-con">采购上建行,善融帮您忙</dt></dl></li><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170512_1494550687.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170512_1494550687/20170512090525047333.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170512_1494550687.html" target="_blank" >【善融商务】众享健康 天然好蜜</a></dt><dt class="dt-con">前进路上,你我同行</dt></dl></li></ul></div><a class="abtn aright" ></a> </div> <div class="sus_more fr"><a href="/cn/v3/include/favorable/all_1.html" target="_blank">更多优惠 ></a></div></div><div class="susp_cont3 switch2 hide"><div class="scrolllist" id="s5"> <a class="abtn aleft"></a><div class="imglist_w"><ul class="imglist"><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170526_1495789098.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170526_1495789098/20170526170245795153.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170526_1495789098.html" target="_blank" >【信用卡】玩转世界 热购全球 境外消费返现</a></dt><dt class="dt-con">境外刷卡消费返现及线上消费返现</dt></dl></li><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170510_1494406533.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170510_1494406533/20170510170101762784.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170510_1494406533.html" target="_blank" >【个人电子银行】乐享龙支付</a></dt><dt class="dt-con">龙支付日全场1折起</dt></dl></li><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170503_1493791371.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170503_1493791371/20170503140711716949.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170503_1493791371.html" target="_blank" >【信用卡】现金分期 手续费最优7折</a></dt><dt class="dt-con">幸福生活,无需等“贷”。龙卡现金分期,手续费最优7折!</dt></dl></li><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170315_1489569318.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170315_1489569318/20170315171806352798.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170315_1489569318.html" target="_blank" >【信用卡】龙卡信用卡VISA卡</a></dt><dt class="dt-con">消费满5000泰铢 赠送1000泰铢</dt></dl></li><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20170119_1484813926.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20170119_1484813926/20170119162119778072.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20170119_1484813926.html" target="_blank" >【信用卡】美国梅西百货双重礼</a></dt><dt class="dt-con">美国梅西百货双重礼</dt></dl></li><li class="scroll-li"><dl><dd><a href="http://www.ccb.com/cn/v3/include/favorable/20160907_1473238368.html" target="_blank"><img src="http://image3.ccb.com/cn/v3/upload/photo/20160907_1473238368/2016907165727030927.jpg"></a></dd><dt class="dt-tit"><a href="http://www.ccb.com/cn/v3/include/favorable/20160907_1473238368.html" target="_blank" >【个人电子银行】2亿用户 移动先行</a></dt><dt class="dt-con">建行手机银行用户突破2亿,做移动金融先行者</dt></dl></li></ul></div><a class="abtn aright" ></a> </div> <div class="sus_more fr"><a href="/cn/v3/include/favorable/all_1.html" target="_blank">更多优惠 ></a></div></div></div></div>
<script language="javascript" type="text/javascript">
// thisCity.change(function(){
// var bankCode=thisCity.bankCode;
// var xmlhttp;
// if(window.XMLHttpRequest){
// xmlhttp=new XMLHttpRequest();
// }else{
// xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
// }
// xmlhttp.onreadystatechange=function(){
// if(xmlhttp.readyState==4&&xmlhttp.status==200){
// var values=xmlhttp.responseText;
// values=values.replace(/[\r\n]/g,"");
// $('#change').html(values);
// $('.btn_close').click(function(){
// $('.notice').fadeOut(250);
// $("#fadee").hide();
// $(".susp_show").animate({width: 0}, 400);
// $("#suspend").show(650);
// });
// $("#s6").xslider({
// unitdisplayed:3,
// movelength:3,
// unitlen:266,
// autoscroll:null
// });
// }
// }
// xmlhttp.open("GET","/cn/v3/include/branch/"+bankCode+".html",true);
// xmlhttp.send(null);
// });
$('#qa_input_serach').blur(function(){
if($(this).val()==''){$(this).val('请输入关键字');$(this).css('color','#bbb');}
});
$('#qa_input_serach').focus(function(){
$(this).val('');
$(this).css('color','#333');
});
</script>
<div class="susp_r">
<div class="w850">
<div class="susp_tit4">
<ul>
<li class="sus-li2"><a href="#" target="_blank" id="rightBranchName">北京市分行 ></a></li>
</ul>
<span class="btn_close"><img src="/cn/v3/images/ico/close2.png"></span>
</div>
<div class="susp_cont4 switchBranch">
<div class="scrolllist" id="s6">
<a class="abtn aleft"></a>
<script language="javascript">
var bankCode = $.cookie("bankCode");
if(bankCode!=null && bankCode.length==9){
var bankCodeParam = '_000028='+bankCode.substr(0,3);
advParam('10119','a',bankCodeParam);
}else{
adv('10119','a');
}
</script>
<a class="abtn aright"></a>
</div>
<div class="sus_more fr"><a href="#" target="_blank" id="rightBranchMore">更多推荐 ></a></div>
</div>
</div>
</div>
<div class="susp_r"><div class="w850"><div class="sus_left"><div class="susp_tit5">服务指南</div> <div class="susp_cont5"><ul> <li><a href="http://creditcard.ccb.com/cn/creditcard/serveiceDirect.html">信用卡</a></li><li><a href="http://ebank.ccb.com/cn/home/purchaseFlow/20120218_1329571261_channel_1.html">贵金属</a></li><li><a href="http://finance.ccb.com/cn/finance/service/handbook.html">理财产品</a></li><li><a href="http://life.ccb.com/cn/paymentv3/v3/handbook/life_guide.html">悦生活</a></li><li><a href="http://insurance.ccb.com/cn/insurance/insurance_guide.html">保险</a></li><li><a href="http://sale.mall.ccb.com/sale/zh/sczhsyzn/index.html">商城账户</a></li><li><a href="http://www.ccb.com/cn/public/20160323_1458714342.html">金融知识</a></li></ul></div><div class="sus_questions"><div class="fl sus_q"><img src="http://image3.ccb.com/cn/home/company/v3/images/img/20150828_1440745919/20151201084541599666.png"><a href="http://ebank.ccb.com/cn/home/question/lst-001001001-1.html" target="_blank">常见问题</a></div><div class="sus_seach fl"><form action="http://ebank.ccb.com/cn/home/question/include/searchquestion.html" target="_blank"><input type="text" value="请输入关键字" name="qa_input_serach" id="qa_input_serach" class="sus_txt" maxlength="70" style="color:#bbb"/><input class="sus_seach_btn" type="submit" value="搜索" onclick="LinkClickFunction(this)"/></form></div></div><div class="clear"></div> <div class="sus_help"> <ul> <li class="fl"><img src="http://image3.ccb.com/cn/v3/upload/photo/20151211_1449816426/20151211160230431154.png"><a href="http://ebank.ccb.com/cn/ebank/personal/downloadcenter/201306071370593615.html" target="_blank">下载中心</a></li><li class="fl"><img src="http://image3.ccb.com/cn/v3/upload/photo/20151211_1449816426/20151211160331307600.png"><a href="http://echat.ccb.com/rolsvc/vservice.html?userType=17" target="_blank">我要留言</a></li><li class="fl"><img src="http://image3.ccb.com/cn/v3/upload/photo/20151211_1449816426/20151211160357367194.png"><a href="http://bbs.ccb.com/index.fhtml" target="_blank">网站论坛</a></li><li class="fr"><img src="http://image3.ccb.com/cn/home/company/v3/images/img/20150828_1440745919/20151201084711112509.png"><a href="/cn/v3/include/help/kstd_lxwm.html" target="_blank">联系方式</a></li></ul></div></div><div class="sus_right"><div class="sus_tit6"> <a href="#" target="_blank">实用工具 ></a> <span class="btn_close"><img src="http://image3.ccb.com/cn/home/company/v3/images/img/20150828_1440745919/20151201084800496220.png"></span> </div><ul class="sus_item1"><h3><img src="http://image3.ccb.com/cn/home/company/v3/images/img/20151211_1449816426/20151211150010835954.png">理财计算器</h3><li><a href="http://www.ccb.com/cn/personal/interestv3/calculator_dk.html" target="_blank" >贷款计算器</a></li><li><a href="http://www.ccb.com/cn/personal/interestv3/rate-tool-cunkuan.html" target="_blank" >存款计算器</a></li><li><a href="http://accounts.ccb.com/tran/WCCMainPlatV5?CCB_IBSVersion=V5&SERVLET_NAME=WCCMainPlatV5&TXCODE=YL0030" target="_blank" >养老金计算器</a></li><li><a href="http://accounts.ccb.com/tran/WCCMainPlatV5?CCB_IBSVersion=V5&SERVLET_NAME=WCCMainPlatV5&TXCODE=YL0035" target="_blank" title="养老金递延税计算器 " >养老金递延税计...</a></li></ul><ul class="sus_item1"><h3><img src="http://image3.ccb.com/cn/home/company/v3/images/img/20151211_1449816426/20160325152208865658.png">产品决策器</h3><li><a href="http://creditcard.ccb.com/cn/creditcard/card_list.html" target="_blank" >信用卡选择器</a></li><li><a href="http://fund.ccb.com/cn/fund/guide/fund_guide.html" target="_blank" >基金对比</a></li><li><a href="http://ebank.ccb.com/cn/ebank/personal/include/compare_201306081608070.html?201306081608070_0,201306081608070_1,201306081608070_2,201306081608070_3,201306081608070_4" target="_blank" title="电子银行服务对比" >电子银行服务对...</a></li></ul><ul class="sus_item1"><h3><img src="http://image3.ccb.com/cn/home/company/v3/images/img/20151211_1449816426/20160325152228845858.png">诊断规划工具</h3><li><a href="http://ehome.ccb.com/searcher.gsp" target="_blank" >购房规划</a></li><li><a href="http://finance.ccb.com/cn/finance/selfservice/FinancialPlanning.html" target="_blank" >理财规划</a></li><li><a href="http://insurance.ccb.com/cn/insurance/guide/baoxianceping.html" target="_blank" >保险需求规划</a></li><li><a href="http://fund.ccb.com/Channel/3220656" target="_blank" title="风险承受能力自测" >风险承受能力自...</a></li></ul><ul class="sus_item1"><h3><img src="http://image3.ccb.com/cn/home/company/v3/images/img/20151211_1449816426/20151211155501204955.png">金融信息</h3><li><a href="http://www.ccb.com/cn/personal/interestv3/rmbdeposit.html" target="_blank" >人民币存款利率</a></li><li><a href="http://www.ccb.com/cn/personal/interestv3/sshq.html" target="_blank" >外币存款利率</a></li><li><a href="http://www.ccb.com/cn/personal/interestv3/ccblpr.html" target="_blank" >贷款利率</a></li><li><a href="http://forex.ccb.com/cn/forex/exchange-quotations.html" target="_blank" >外汇牌价</a></li><li><a href="http://fund.ccb.com/cn/fund/news/news_index.html" target="_blank" >基金行情</a></li><li><a href="http://gold.ccb.com/cn/gold/hjhq.html" target="_blank" >贵金属行情</a></li></ul></div></div></div>
</div>
</div>
<script language="javascript" type="text/javascript">
$('#qa_input_serach').blur(function(){
if($(this).val()==''){$(this).val('请输入关键字');$(this).css('color','#bbb');}
});
$('#qa_input_serach').focus(function(){
$(this).val('');
$(this).css('color','#333');
});
</script>
<!--include header-->
<div class="header_top_box">
<div class="header_top_main">
<div class="header_top_left">
<ul>
<li class="se"><a href="http://www.ccb.com/cn/home/indexv3.html">个人客户</a></li>
<li><a href="http://privatebank.ccb.com">私人银行</a></li><!-- privatebank.ccb.com -->
<li><a href="http://company.ccb.com/cn/home/company_indexv3.html">公司机构</a></li>
<li><a href="http://scompany.ccb.com/cn/home/s_company_indexv3.html">小微企业</a></li>
<li class="Business_box">
<div class="Business"><span><img src="/cn/home/v3/images/sr_icon.png"></span>
<div class="Business_text"><a href="http://buy.ccb.com" target="_blank">个人商城</a> <a href="http://mall.ccb.com" target="_blank">企业商城</a></div>
</div>
</li>
</ul>
</div>
<div class="header_top_right">
<ul>
<li class="padding_13 header_top_right_a">客服热线:95533</li>
<li><a href="#" class="header_top_right_a" id="kefu"><img src="/cn/home/v3/images/zx_icon.png">在线客服</a>
<!--在线客服业务维护部分-->
<script type="text/javascript">
$(function(){
$('.zxkf_btn').click(function(){
var noteservice=$('.r_on').next().val();
openWinPop(noteservice,'新窗口');
})
})
function openWinPop(url,name){var nWinLeft = (screen.width-757)/2;var nWinTop = (screen.height-570)/2;var win_style="menubar=no,toolbar=no,location=no,directories=no,status=yes,resizable=yes,scrollbars=no,width=953,height=554,top="+nWinTop+",left="+nWinLeft;window.open(url,name,win_style);}
</script>
<div class="kefu">
<div class="zxkf">
<div class="jqr"><img src="http://image4.ccb.com/cn/home/include/20151206_1449362101/20151211142640524357.png"/></div>
<div class="zxkf_li">
<div class="zz_top_right fr"> <a href="#" id="button2"><img src="/cn/home/v3/images/shutdown.png"></a> </div>
<div class="zxkf_top1">在线客服</div>
<div class="zxkf_con">
<label class="label_radio r_on"><input name="onlineService" checked="checked" class="checked" type="radio" >电子银行与信用卡业务</label>
<input type="hidden" name="onlineServiceRadio" value="http://echat.ccb.com/rolsvc/vservice.html?userType=16"/>
<label class="label_radio"><input name="onlineService" type="radio" >个人业务及其他</label>
<input type="hidden" name="onlineServiceRadio" value="http://echat.ccb.com/rolsvc/vservice.html?userType=17"/>
<label class="label_radio"><input name="onlineService" type="radio" >善融商务</label>
<input type="hidden" name="onlineServiceRadio" value="http://echat.ccb.com/colsvc/vservice.html?userType=18&IMType=02"/>
<label class="label_radio"><input name="onlineService" type="radio" >公司机构及小微企业</label>
<input type="hidden" name="onlineServiceRadio" value="http://echat.ccb.com/rolsvc/vservice.html?userType=20"/>
</div>
<div class="clear"></div>
<div class="zxkf_btn" >在线对话</div>
</div>
<div class="clear"></div>
</div>
</div>
</li>
<li class="padding_13 header_top_right_a">|</li>
<li><a id="jhjt" href="#" class="header_top_right_a">建行集团</a>
<!--建行集团业务维护部分-->
<div class="jhjt">
<div class="zhezhao">
<div class="zz_top1">
<div class="zz_top_left fl">
<ul>
<li class="zz_top_lii hover">境外分支机构</li>
<li class="zz_top_lii">境内附属公司</li>
<div class="clear"></div>
</ul>
</div>
<div class="zz_top_right1 fr"> <a href="#" id="button2" class="but2"><img src="/cn/home/v3/images/shutdown.png"></a> </div>
<div class="clear"></div>
</div>
<div class="jhjt_tab_main">
<div class="showshow">
<div class="showj">
<div class="in_s"> <a href="http://group.ccb.com/cn/group/index.html" target="_blank">进入建行集团网站 ></a> </div>
<div class="showj_in">
<img src="http://image3.ccb.com/cn/home/include/20151206_1449369972/jt.jpg">
<div class="showj_info">
<ul>
<li class="showj_tit"><a href="http://group.ccb.com/cn/ccbtoday/indexv3.html" target="_blank" >今日建行 ></a></li>
<li class="showj_li"><a href="http://www.ccb.com/cn/ccbtoday/newsv3/20170526_1495783484.html" target="_blank">• 一心一意拥有 成其...</a></li><li class="showj_li"><a href="http://www.ccb.com/cn/ccbtoday/newsv3/20170526_1495783457.html" target="_blank">• 中国建设银行龙卡信用卡发卡量...</a></li>
<li class="showj_tit"><a href="http://group.ccb.com/cn/investor/indexv3.html" target="_blank">投资者关系 ></a></li>
<li class="showj_li"><a href="http://www.ccb.com/cn/investor/announcement/20170601_1496290874.html" target="_blank">• 截至2017年5月31日止股份发行...</a></li><li class="showj_li"><a href="http://www.ccb.com/cn/investor/announcement/20170502_1493689676.html" target="_blank">• 截至2017年4月30日止股份发行...</a></li>
<li class="showj_tit"><a href="http://job.ccb.com" target="_blank">诚聘英才 ></a></li>
</ul>
</div>
</div>
<div class="showj_r" style="display:block;">
<div class="world_map">
<img src="http://image4.ccb.com/cn/home/v3/images/map.png" border="0" usemap="#Map">
<map name="Map" id="Map">
<area shape="rect" coords="373,81,409,103" href="#">
<div class="area_city" style="left: 265px; top: 101px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">建欧华沙分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="345,63,413,81" href="#">
<div class="area_city" style="left: 248px; top: 80px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a onclick="LinkClickFunction(this)" target="_blank">建欧阿姆斯特丹分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="306,63,338,81" href="#">
<div class="area_city" style="left: 195px; top: 82px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a onclick="LinkClickFunction(this)" target="_blank" href="http://www.uk.ccb.com">建行伦敦</a></li>
<li><a onclick="LinkClickFunction(this)" target="_blank" href="http://www.uk.ccb.com">伦敦分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="261,84,306,101" href="#"><div class="area_city" style="left: 156px; top: 101px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">建信租赁国际</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="261,109,295,124" href="#">
<div class="area_city" style="left: 149px; top: 121px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">建欧巴黎分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="434,88,478,107" href="#">
<div class="area_city" style="left: 328px; top: 107px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://ru.ccb.com" target="_blank" onclick="LinkClickFunction(this)">建行俄罗斯</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="257,130,302,147" href="#">
<div class="area_city" style="left: 151px; top: 146px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a onclick="LinkClickFunction(this)" target="_blank" href="http://eu.ccb.com">建行欧洲</a></li>
<li><a href="http://lu.ccb.com" target="_blank" onclick="LinkClickFunction(this)">卢森堡分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="361,105,414,123" href="#">
<div class="area_city" style="left: 258px; top: 123px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://de.ccb.com/" target="_blank" onclick="LinkClickFunction(this)">法兰克福分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="361,123,403,141" href="#">
<div class="area_city" style="left: 254px; top: 143px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://ch.ccb.com/" target="_blank" onclick="LinkClickFunction(this)">苏黎世分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="340,141,372,158" href="#">
<div class="area_city" style="left: 224px; top: 156px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">建欧米兰分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="279,150,335,167" href="#">
<div class="area_city" style="left: 177px; top: 167px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">建欧巴塞罗那分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="185,111,220,130" href="#">
<div class="area_city" style="left: 71px; top: 129px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://us.ccb.com" target="_blank" onclick="LinkClickFunction(this)">纽约分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="154,148,187,167" href="#">
<div class="area_city" style="left: 40px; top: 169px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">建行巴西开曼分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="204,227,248,246" href="#">
<div class="area_city" style="left: 96px; top: 247px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://www.br.ccb.com" target="_blank" onclick="LinkClickFunction(this)">建行巴西</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="161,250,219,268" href="#">
<div class="area_city" style="left: 60px; top: 267px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">智利分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="303,261,353,278" href="#">
<div class="area_city" style="left: 197px; top: 278px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">开普敦分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="343,222,413,243" href="#">
<div class="area_city" style="left: 248px; top: 244px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://za.ccb.com" target="_blank" onclick="LinkClickFunction(this)">约堡分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="421,180,454,198" href="#">
<div class="area_city" style="left: 311px; top: 199px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://ae.ccb.com" target="_blank" onclick="LinkClickFunction(this)">迪拜国际金融中心分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area href="#" coords="460,186,514,203" shape="rect">
<div class="area_city" style="left: 359px; top: 202px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://vn.ccb.com" target="_blank" onclick="LinkClickFunction(this)">胡志明市分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="488,164,525,183" href="#">
<div class="area_city" style="left: 374px; top: 184px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://www.asia.ccb.com/macau/personal/" target="_blank" onclick="LinkClickFunction(this)">澳门分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="528,146,558,163" href="#">
<div class="area_city" style="left: 413px; top: 166px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://www.asia.ccb.com" target="_blank" onclick="LinkClickFunction(this)">建行亚洲</a></li>
<li><a href="http://hk.ccb.com" target="_blank" onclick="LinkClickFunction(this)">香港分行</a></li><li><a href="http://www.ccbintl.com" target="_blank" onclick="LinkClickFunction(this)">建银国际</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="555,105,588,124" href="#">
<div class="area_city" style="left: 445px; top: 126px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://kr.ccb.com" target="_blank" onclick="LinkClickFunction(this)">首尔分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="592,114,624,132" href="#">
<div class="area_city" style="left: 479px; top: 133px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://jp.ccb.com" target="_blank" onclick="LinkClickFunction(this)">东京分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div><area shape="rect" coords="584,154,617,171" href="#">
<div class="area_city" style="left: 473px; top: 171px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">大阪分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div><area shape="rect" coords="560,177,590,173" href="#">
<div class="area_city" style="left: 538px; top: 320px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://nz.ccb.com/" target="_blank" onclick="LinkClickFunction(this)">中国建设银行(新西兰)有限公司</a></li>
</ul>
<div class="area_city_bottom"></div>
</div><area shape="rect" coords="533,195,598,213" href="#">
<div class="area_city" style="left: 440px; top: 213px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">建行马来西亚</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="542,216,590,235" href="#">
<div class="area_city" style="left: 437px; top: 235px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://sg.ccb.com" target="_blank" onclick="LinkClickFunction(this)">新加坡分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div><area shape="rect" coords="586,240,646,258" href="#">
<div class="area_city" style="left: 485px; top: 263px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">布里斯班分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="553,301,598,321" href="#">
<div class="area_city" style="left: 445px; top: 320px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a target="_blank" onclick="LinkClickFunction(this)">墨尔本分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="617,291,651,311" href="#">
<div class="area_city" style="left: 507px; top: 311px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://au.ccb.com" target="_blank" onclick="LinkClickFunction(this)">悉尼分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="661,300,705,318" href="#">
<div class="area_city" style="left: 554px; top: 320px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://nz.ccb.com" target="_blank" onclick="LinkClickFunction(this)">建行新西兰</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="125,101,168,121" href="#">
<div class="area_city" style="left: 20px; top: 120px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://ca.ccb.com" target="_blank" onclick="LinkClickFunction(this)">多伦多分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="560,177,590,193" href="#">
<div class="area_city" style="left: 450px; top: 195px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://tw.ccb.com" target="_blank" onclick="LinkClickFunction(this)">台北分行</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
<area shape="rect" coords="453,224,523,242" href="#">
<div class="area_city" style="left: 366px; top: 241px; display: none;">
<div class="area_city_up"></div>
<ul>
<li><a href="http://idn.ccb.com" target="_blank" onclick="LinkClickFunction(this)">建行印度尼西亚</a></li>
</ul>
<div class="area_city_bottom"></div>
</div>
</map>
</div>
</div>
<div class="showj_r">
<div class="list_one1 fl">
<ul>
<li class="list_li"><a href="http://group.ccb.com/cn/group/include/20160106_1452056483.html" title="建信基金管理有限责任公司" target="_blank"> 建信基金管理有限责任公司</a></li>
<li class="list_li"><a href="http://group.ccb.com/cn/group/include/20160203_1454464973.html" title="建信金融租赁有限公司" target="_blank"> 建信金融租赁有限公司</a></li>
<li class="list_li"><a href="http://group.ccb.com/cn/group/include/20160106_1452057278.html" title="建信信托有限责任公司" target="_blank"> 建信信托有限责任公司</a></li>
<li class="list_li"><a href="http://group.ccb.com/cn/group/include/20160112_1452577123.html" title="建信人寿保险有限公司" target="_blank"> 建信人寿保险有限公司</a></li>
<li class="list_li"><a href="http://group.ccb.com/cn/group/include/20160106_1452055545.html" title="建信期货有限责任公司" target="_blank"> 建信期货有限责任公司</a></li>
<li class="list_li"><a href="http://group.ccb.com/cn/group/include/20160112_1452576547.html" title="中德住房储蓄银行有限责任公司" target="_blank"> 中德住房储蓄银行有限责任公司</a></li>
<li class="list_li"><a href="http://group.ccb.com/cn/group/company/company.html?churchyard#none" title="村镇银行" target="_blank"> 村镇银行</a></li>
</ul>
</div>
<a class="fR f_blue" href="http://group.ccb.com/cn/group/company/company.html?churchyard#none" target="_blank">查看更多></a>
</div>
</div>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</li>
<li><a href="#" id="white_content3" class="header_top_right_a">国内分行</a>
<!--国内分行业务维护部分-->
<div id="MyDiv" class="white_content3" >
<div class="zhezhao">
<div class="zz_top">
<div class="zz_top_left fl">
<ul>
<li class="zz_top_li hover">地图模式</li>
<li class="zz_top_li">列表模式</li>
<div class="clear"></div>
</ul>
</div>
<div class="zz_top_right1 fr"> <a href="#" id="button2" class="btn3"><img src="http://image4.ccb.com/cn/home/v3/images/shutdown.png"></a> </div>
<div class="clear"></div>
</div>
<div class="tab_jt">
<div class="zz_info">
<div class="map_info">
<span class="big_china_map" style="background:url(http://image3.ccb.com/cn/v3/images/map/china_map.png) no-repeat;width:647px; height:478px;" ></span>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/xinjiang.png) no-repeat;width:241px; height:212px;left:153px; top:75px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/xj/index.html" style="left:317px; top:136px;">新疆</a>
</div>
<div class="map_style">
<span style="background:url(http://image4.ccb.com/cn/home/v3/images/map/xizhang.png) no-repeat;width:219px; height:121px;left:204px; top:256px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/xz/index.html" style="left:350px; top:318px;">西藏</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/qinghai.png) no-repeat;width:145px; height:101px;left:319px; top:221px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/qh/index.html" style="left:423px; top:246px;">青海</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/gansu.png) no-repeat;width:173px; height:137px;left:350px; top:171px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/gs/index.html" style="left:464px; top:254px;">甘肃</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/ningxia.png) no-repeat;width:36px; height:57px;left:476px; top:217px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/nx/index.html" style="left:485px; top:215px;">宁夏</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/neimenggu.png) no-repeat;width:306px; height:241px;left:399px; top:5px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/nm/index.html" style="left:537px; top:158px;">内蒙古</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/heilongjiang.png) no-repeat;width:147px; height:163px;left:652px; top:1px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/hl/index.html" style="left:714px; top:97px;">黑龙江</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/jiling.png) no-repeat;width:104px; height:82px;left:657px; top:119px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/jl/index.html" style="left:698px; top:134px;">吉林</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/liaoning.png) no-repeat;width:74px; height:68px;left:629px; top:161px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/ln/index.html" style="left:672px; top:169px;">辽宁</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/dalian.png) no-repeat;width:76px; height:70px;left:628px; top:160px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/dl/index.html" style="left:674px; top:190px;">大连</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/hebei.png) no-repeat;width:68px; height:91px;left:571px; top:173px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/he/index.html" style="left:587px; top:210px;">河北</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/beijing.png) no-repeat;width:23px; height:22px;left:592px; top:196px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/bj/index.html" style="left:608px; top:181px;">北京</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/tianjing.png) no-repeat;width:17px; height:23px;left:605px; top:207px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/tj/index.html" style="left:619px; top:200px;">天津</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/shanxi_right.png) no-repeat;width:47px; height:83px;left:538px; top:200px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/sx/index.html" style="left:546px; top:228px;">山西</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/shanxi_left.png) no-repeat;width:62px; height:104px;left:488px; top:215px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/sn/index.html" style="left:514px; top:253px;">陕西</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/sc.png) no-repeat;width:119px; height:101px;left:402px; top:284px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/sc/index.html" style="left:468px; top:299px;">四川</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/yunnan.png) no-repeat;width:94px; height:96px;left:404px; top:346px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/yn/index.html" style="left:446px; top:385px;">云南</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/guizhou.png) no-repeat;width:64px; height:55px;left:468px; top:346px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/gz/index.html" style="left:497px; top:349px;">贵州</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/chongqin.png) no-repeat;width:52px; height:51px;left:485px; top:310px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/cq/index.html" style="left:506px; top:318px;">重庆</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/guangxi.png) no-repeat;width:81px; height:59px;left:477px; top:380px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/gx/index.html" style="left:528px; top:392px;">广西</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/hunan.png) no-repeat;width:61px; height:66px;left:522px; top:335px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/hn/index.html" style="left:540px; top:344px;">湖南</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/hainan.png) no-repeat;width:28px; height:24px;left:519px; top:451px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/hi/index.html" style="left:546px; top:433px;">海南</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/hubei.png) no-repeat;width:85px; height:53px;left:517px; top:296px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/hb/index.html" style="left:552px; top:300px;">湖北</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/henan.png) no-repeat;width:68px; height:64px;left:538px; top:258px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/ha/index.html" style="left:562px; top:268px;">河南</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/shandong.png) no-repeat;width:85px; height:54px;left:585px; top:232px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/sd/index.html" style="left:624px; top:235px;">山东</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/qingdao.png) no-repeat;width:87px; height:56px;left:585px; top:232px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/qd/index.html" style="left:660px; top:226px;">青岛</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/anhui.png) no-repeat;width:51px; height:66px;left:585px; top:279px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/ah/index.html" style="left:600px; top:304px;">安徽</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/shanghai.png) no-repeat;width:15px; height:18px;left:649px; top:315px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/sh/index.html" style="left:668px; top:301px;">上海</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/jiangshu.png) no-repeat;width:61px; height:56px;left:601px; top:273px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/js/index.html" style="left:623px; top:271px;">江苏</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/shuzhou.png) no-repeat;width:63px; height:58px;left:601px; top:273px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/su/index.html" style="left:654px; top:279px;">苏州</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/jiangxi.png) no-repeat;width:54px; height:66px;left:572px; top:336px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/jx/index.html" style="left:579px; top:345px;">江西</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/zhejiang.png) no-repeat;width:47px; height:49px;left:619px; top:324px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/zj/index.html" style="left:624px; top:325px;">浙江</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/ningbo.png) no-repeat;width:49px; height:51px;left:619px; top:324px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/nb/index.html" style="left:662px; top:330px;">宁波</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/fujian.png) no-repeat;width:49px; height:59px;left:596px; top:357px;"></span>
<a target="_blank" onclick="LinkClickFunction(this)" href="http://www.ccb.com/fj/index.html" style="left:603px; top:361px;">福建</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/xiamen.png) no-repeat;width:51px; height:61px;left:596px; top:357px;"></span>
<a target="_blank" href="http://www.ccb.com/xm/index.html" style="left:629px; top:378px;">厦门</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/guangdong.png) no-repeat;width:83px; height:61px;left:531px; top:390px;"></span>
<a target="_blank" href="http://www.ccb.com/gd/index.html" style="left:580px; top:388px;">广东</a>
</div>
<div class="map_style">
<span style="background:url(http://image3.ccb.com/cn/home/v3/images/map/shenzhen.png) no-repeat;width:85px; height:63px;left:531px; top:390px;"></span>
<a target="_blank" href="http://www.ccb.com/sz/index.html" style="left:585px; top:411px;">深圳</a>
</div>
</div>
</div>
<div class="zz_info">
<ul class="map_list clearfix">
<li>
<div>ABCDF</div>
<a href="http://www.ccb.com/ah/index.html" target="_blank">安徽省分行</a><a href="http://www.ccb.com/bj/index.html" target="_blank">北京市分行</a><a href="http://www.ccb.com/cq/index.html" target="_blank">重庆市分行</a><a href="http://www.ccb.com/dl/index.html" target="_blank">大连市分行</a><a href="http://www.ccb.com/fj/index.html" target="_blank">福建省分行</a>
</li>
<li>
<div>G</div>
<a href="http://www.ccb.com/gd/index.html" target="_blank">广东省分行</a><a href="http://www.ccb.com/gx/index.html" target="_blank">广西区分行</a><a href="http://www.ccb.com/gz/index.html" target="_blank">贵州省分行</a><a href="http://www.ccb.com/gs/index.html" target="_blank">甘肃省分行</a>
</li>
<li>
<div>H</div>
<a href="http://www.ccb.com/ha/index.html" target="_blank">河南省分行</a><a href="http://www.ccb.com/he/index.html" target="_blank">河北省分行</a><a href="http://www.ccb.com/hl/index.html" target="_blank">黑龙江省分行</a><a href="http://www.ccb.com/hb/index.html" target="_blank">湖北省分行</a><a href="http://www.ccb.com/hn/index.html" target="_blank">湖南省分行</a><a href="http://www.ccb.com/hi/index.html" target="_blank">海南省分行</a>
</li>
<li>
<div>JL</div>
<a href="http://www.ccb.com/ln/index.html" target="_blank">辽宁省分行</a><a href="http://www.ccb.com/jl/index.html" target="_blank">吉林省分行</a><a href="http://www.ccb.com/js/index.html" target="_blank">江苏省分行</a><a href="http://www.ccb.com/jx/index.html" target="_blank">江西省分行</a>
</li>
<li>
<div>NQ</div>
<a href="http://www.ccb.com/nm/index.html" target="_blank">内蒙古分行</a><a href="http://www.ccb.com/nb/index.html" target="_blank">宁波市分行</a><a href="http://www.ccb.com/nx/index.html" target="_blank">宁夏区分行</a><a href="http://www.ccb.com/qd/index.html" target="_blank">青岛市分行</a><a href="http://www.ccb.com/qh/index.html" target="_blank">青海省分行</a>
</li>
<li>
<div>S</div>
<a href="http://www.ccb.com/sd/index.html" target="_blank">山东省分行</a><a href="http://www.ccb.com/sn/index.html" target="_blank">陕西省分行</a><a href="http://www.ccb.com/sx/index.html" target="_blank">山西省分行</a><a href="http://www.ccb.com/sh/index.html" target="_blank">上海市分行</a><a href="http://www.ccb.com/sz/index.html" target="_blank">深圳市分行</a><a href="http://www.ccb.com/sc/index.html" target="_blank">四川省分行</a><a href="http://www.ccb.com/su/index.html" target="_blank">苏州分行</a>
</li>
<li>
<div>TXYZ</div>
<a href="http://www.ccb.com/tj/index.html" target="_blank">天津市分行</a><a href="http://www.ccb.com/xm/index.html" target="_blank">厦门市分行</a><a href="http://www.ccb.com/xj/index.html" target="_blank">新疆区分行</a><a href="http://www.ccb.com/xz/index.html" target="_blank">西藏区分行</a><a href="http://www.ccb.com/yn/index.html" target="_blank">云南省分行</a><a href="http://www.ccb.com/zj/index.html" target="_blank">浙江省分行</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
</div>
</div>
</li>
<li><a href="http://www.ccb.com/cn/home/map/branchSearch.html" class="header_top_right_a" target="_blank">网点及ATM</a></li>
</ul>
</div>
</div>
</div>
<div class="header_box" id="header_box"><div class="header"><div class="logo"><a href="http://www.ccb.com/cn/home/indexv3.html"><img src="http://image4.ccb.com/cn/home/company/v3/images/img/20150828_1440745919/20151201084052927594.png" alt="中国建设银行" /></a></div><div class="chengshixuanze"> <div class="select-city"><a href="javascript:void(0)" id="txt" class="toggle_btn pointer">北京市</a></div> <div class="select_hide" style="background:#fff;"> <div class="place_list"> <div id="arrow1" class="toggle_city"> <div class="change_city_bg hide"> <div class="change_city_box"> <div class="change_city_head"> <div class="beijing"><a href="javascript:void(0)" id="shouqi">北京市</a></div> <div class="city-seach"> <input type="text" class="abc_input" value="快速搜索城市(支持全拼/简拼)"> <input type="hidden" id="city_code_id" value=""> <button type="button">确定</button> </div> </div> <div class="change_city_body clearfix"> <div class="change_city_tishi"> 请选择省份(按首字拼音排序): </div> <div class="pro_city3"> <div class="pro_city3_list1"><div class="pro_city3_data"> <a id="340000" name="安徽省" href="javascript:void(0)">安徽省</a> <a id="110000" name="北京市" href="javascript:void(0)" class="off">北京市</a> <a id="500000" name="重庆市" href="javascript:void(0)" class="off">重庆市</a> <a id="350000" name="福建省" href="javascript:void(0)">福建省</a> <a id="620000" name="甘肃省" href="javascript:void(0)">甘肃省</a> <a id="440000" name="广东省" href="javascript:void(0)">广东省</a> <a id="450000" name="广西区" href="javascript:void(0)">广西区</a> <a id="520000" name="贵州省" href="javascript:void(0)">贵州省</a> </div><div class="pro_city3_data"> <a id="460000" name="海南省" href="javascript:void(0)">海南省</a> <a id="130000" name="河北省" href="javascript:void(0)">河北省</a> <a id="410000" name="河南省" href="javascript:void(0)">河南省</a> <a id="230000" name="黑龙江" href="javascript:void(0)">黑龙江</a> <a id="420000" name="湖北省" href="javascript:void(0)">湖北省</a> <a id="430000" name="湖南省" href="javascript:void(0)">湖南省</a> <a id="220000" name="吉林省" href="javascript:void(0)">吉林省</a> <a id="320000" name="江苏省" href="javascript:void(0)">江苏省</a> </div><div class="pro_city3_data"> <a id="360000" name="江西省" href="javascript:void(0)">江西省</a> <a id="210000" name="辽宁省" href="javascript:void(0)">辽宁省</a> <a id="150000" name="内蒙古" href="javascript:void(0)">内蒙古</a> <a id="640000" name="宁夏区" href="javascript:void(0)">宁夏区</a> <a id="630000" name="青海省" href="javascript:void(0)">青海省</a> <a id="370000" name="山东省" href="javascript:void(0)">山东省</a> <a id="610000" name="陕西省" href="javascript:void(0)">陕西省</a> <a id="140000" name="山西省" href="javascript:void(0)">山西省</a> </div><div class="pro_city3_data"> <a id="310000" name="上海市" href="javascript:void(0)" class="off">上海市</a> <a id="510000" name="四川省" href="javascript:void(0)">四川省</a> <a id="120000" name="天津市" href="javascript:void(0)" class="off">天津市</a> <a id="650000" name="新疆区" href="javascript:void(0)">新疆区</a> <a id="540000" name="西藏区" href="javascript:void(0)">西藏区</a> <a id="530000" name="云南省" href="javascript:void(0)">云南省</a> <a id="330000" name="浙江省" href="javascript:void(0)">浙江省</a> </div><div class="limiter"><div class="pro_city3_list2 hide" id="city340000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="340800">安庆市</span> <span id="340300">蚌埠市</span> <span id="341400">巢湖市</span> <span id="341700">池州市</span> <span id="341100">滁州市</span> <span id="341200">阜阳市</span> <span id="340100">合肥市</span> <span id="340600">淮北市</span> <span id="340400">淮南市</span> <span id="341000">黄山市</span> <span id="341500">六安市</span> <span id="340500">马鞍山市</span> <span id="341300">宿州市</span> <span id="340700">铜陵市</span> <span id="340200">芜湖市</span> <span id="341800">宣城市</span> <span id="341600">亳州市</span> </div></div> <div class="pro_city3_list2 hide" id="city350000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="350100">福州市</span> <span id="350800">龙岩市</span> <span id="350700">南平市</span> <span id="350900">宁德市</span> <span id="350300">莆田市</span> <span id="350500">泉州市</span> <span id="350400">三明市</span> <span id="350200">厦门市</span> <span id="350600">漳州市</span> </div></div> <div class="pro_city3_list2 hide" id="city620000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="620400">白银市</span> <span id="621100">定西市</span> <span id="623000">甘南藏族</span> <span id="620200">嘉峪关市</span> <span id="620300">金昌市</span> <span id="620900">酒泉市</span> <span id="620100">兰州市</span> <span id="622900">临夏回族</span> <span id="622600">陇南地区</span> <span id="621200">陇南市</span> <span id="620800">平凉市</span> <span id="621000">庆阳市</span> <span id="620500">天水市</span> <span id="620600">武威市</span> <span id="620700">张掖市</span> </div></div> <div class="pro_city3_list2 hide" id="city440000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="445100">潮州市</span> <span id="441900">东莞市</span> <span id="440600">佛山市</span> <span id="440100">广州市</span> <span id="441600">河源市</span> <span id="441300">惠州市</span> <span id="440700">江门市</span> <span id="445200">揭阳市</span> <span id="440900">茂名市</span> <span id="441400">梅州市</span> <span id="441800">清远市</span> <span id="440500">汕头市</span> <span id="441500">汕尾市</span> <span id="440200">韶关市</span> <span id="440300">深圳市</span> <span id="441700">阳江市</span> <span id="445300">云浮市</span> <span id="440800">湛江市</span> <span id="441200">肇庆市</span> <span id="442000">中山市</span> <span id="440400">珠海市</span> </div></div> <div class="pro_city3_list2 hide" id="city450000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="451000">百色市</span> <span id="450500">北海市</span> <span id="451400">崇左市</span> <span id="450600">防城港市</span> <span id="450300">桂林市</span> <span id="450800">贵港市</span> <span id="451200">河池市</span> <span id="451100">贺州市</span> <span id="451300">来宾市</span> <span id="450200">柳州市</span> <span id="450100">南宁市</span> <span id="450700">钦州市</span> <span id="450400">梧州市</span> <span id="450900">玉林市</span> </div></div> <div class="pro_city3_list2 hide" id="city520000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="520400">安顺</span> <span id="522400">毕节</span> <span id="520100">贵阳</span> <span id="520200">六盘水</span> <span id="522600">黔东南</span> <span id="522700">黔南</span> <span id="522300">黔西南</span> <span id="522200">铜仁</span> <span id="520300">遵义</span> </div></div> <div class="pro_city3_list2 hide" id="city460000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="469030">白沙黎族</span> <span id="469035">保亭黎族</span> <span id="469031">昌江黎族</span> <span id="469027">澄迈县</span> <span id="469025">定安县</span> <span id="469007">东方市</span> <span id="460100">海口市</span> <span id="469033">乐东黎族</span> <span id="469028">临高县</span> <span id="469034">陵水黎族</span> <span id="469038">南沙群岛</span> <span id="469002">琼海市</span> <span id="469036">琼中黎族</span> <span id="460200">三亚市</span> <span id="469026">屯昌县</span> <span id="469006">万宁市</span> <span id="469005">文昌市</span> <span id="469001">五指山市</span> <span id="469037">西沙群岛</span> <span id="469039">中沙群岛</span> <span id="469003">儋州市</span> </div></div> <div class="pro_city3_list2 hide" id="city130000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="130600">保定市</span> <span id="130900">沧州市</span> <span id="130800">承德市</span> <span id="130400">邯郸市</span> <span id="131100">衡水市</span> <span id="131000">廊坊市</span> <span id="130300">秦皇岛市</span> <span id="130100">石家庄市</span> <span id="130200">唐山市</span> <span id="130500">邢台市</span> <span id="130700">张家口市</span> </div></div> <div class="pro_city3_list2 hide" id="city410000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="410500">安阳市</span> <span id="410600">鹤壁市</span> <span id="410800">焦作市</span> <span id="410200">开封市</span> <span id="410300">洛阳市</span> <span id="411300">南阳市</span> <span id="410400">平顶山市</span> <span id="411200">三门峡市</span> <span id="411400">商丘市</span> <span id="410700">新乡市</span> <span id="411500">信阳市</span> <span id="411000">许昌市</span> <span id="410100">郑州市</span> <span id="411600">周口市</span> <span id="411700">驻马店市</span> <span id="411100">漯河市</span> <span id="410900">濮阳市</span> <span id="410881">济源市</span> </div></div> <div class="pro_city3_list2 hide" id="city230000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="230600">大庆市</span> <span id="232700">大兴安岭</span> <span id="230100">哈尔滨市</span> <span id="230400">鹤岗市</span> <span id="231100">黑河市</span> <span id="230300">鸡西市</span> <span id="230800">佳木斯市</span> <span id="231000">牡丹江市</span> <span id="230900">七台河市</span> <span id="230200">齐齐哈尔</span> <span id="230500">双鸭山市</span> <span id="231200">绥化市</span> <span id="230700">伊春市</span> </div></div> <div class="pro_city3_list2 hide" id="city420000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="420700">鄂州市</span> <span id="422800">恩施州</span> <span id="421100">黄冈市</span> <span id="420200">黄石市</span> <span id="420800">荆门市</span> <span id="421000">荆州市</span> <span id="429005">潜江市</span> <span id="429021">神农架林区</span> <span id="420300">十堰市</span> <span id="421300">随州市</span> <span id="429006">天门市</span> <span id="420100">武汉市</span> <span id="429004">仙桃市</span> <span id="421200">咸宁市</span> <span id="420600">襄樊市</span> <span id="420900">孝感市</span> <span id="420500">宜昌市</span> </div></div> <div class="pro_city3_list2 hide" id="city430000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="430700">常德市</span> <span id="430100">长沙市</span> <span id="431000">郴州市</span> <span id="430400">衡阳市</span> <span id="431200">怀化市</span> <span id="431300">娄底市</span> <span id="430500">邵阳市</span> <span id="430300">湘潭市</span> <span id="433100">湘西</span> <span id="430900">益阳市</span> <span id="431100">永州市</span> <span id="430600">岳阳市</span> <span id="430800">张家界市</span> <span id="430200">株洲市</span> </div></div> <div class="pro_city3_list2 hide" id="city220000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="220800">白城市</span> <span id="220600">白山市</span> <span id="220100">长春市</span> <span id="220200">吉林市</span> <span id="220400">辽源市</span> <span id="220300">四平市</span> <span id="220700">松原市</span> <span id="220500">通化市</span> <span id="222400">延边朝鲜</span> </div></div> <div class="pro_city3_list2 hide" id="city320000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="320400">常州市</span> <span id="320800">淮安市</span> <span id="320700">连云港市</span> <span id="320100">南京市</span> <span id="320600">南通市</span> <span id="320500">苏州市</span> <span id="321300">宿迁市</span> <span id="321200">泰州市</span> <span id="320200">无锡市</span> <span id="320300">徐州市</span> <span id="320900">盐城市</span> <span id="321000">扬州市</span> <span id="321100">镇江市</span> </div></div> <div class="pro_city3_list2 hide" id="city360000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="361000">抚州市</span> <span id="360700">赣州市</span> <span id="360800">吉安市</span> <span id="360200">景德镇市</span> <span id="360400">九江市</span> <span id="360100">南昌市</span> <span id="360300">萍乡市</span> <span id="361100">上饶市</span> <span id="360500">新余市</span> <span id="360900">宜春市</span> <span id="360600">鹰潭市</span> </div></div> <div class="pro_city3_list2 hide" id="city210000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="210300">鞍山市</span> <span id="210500">本溪市</span> <span id="211300">朝阳市</span> <span id="210600">丹东市</span> <span id="210400">抚顺市</span> <span id="210900">阜新市</span> <span id="211400">葫芦岛市</span> <span id="210700">锦州市</span> <span id="211000">辽阳市</span> <span id="211100">盘锦市</span> <span id="210100">沈阳市</span> <span id="211200">铁岭市</span> <span id="210800">营口市</span> <span id="210200">大连市</span> </div></div> <div class="pro_city3_list2 hide" id="city150000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="152900">阿拉善盟</span> <span id="150800">巴彦淖尔</span> <span id="150200">包头市</span> <span id="150400">赤峰市</span> <span id="150600">鄂尔多斯</span> <span id="150100">呼和浩特</span> <span id="150700">呼伦贝尔</span> <span id="150500">通辽市</span> <span id="150300">乌海市</span> <span id="150900">乌兰察布</span> <span id="152500">锡林郭勒</span> <span id="152200">兴安盟</span> </div></div> <div class="pro_city3_list2 hide" id="city640000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="640400">固原市</span> <span id="640200">石嘴山市</span> <span id="640300">吴忠市</span> <span id="640100">银川市</span> <span id="640500">中卫市</span> </div></div> <div class="pro_city3_list2 hide" id="city630000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="632600">果洛藏族</span> <span id="632200">海北藏族</span> <span id="632100">海东地区</span> <span id="632500">海南藏族</span> <span id="632800">海西蒙古</span> <span id="632300">黄南藏族</span> <span id="630100">西宁市</span> <span id="632700">玉树藏族</span> </div></div> <div class="pro_city3_list2 hide" id="city370000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="371600">滨州市</span> <span id="371400">德州市</span> <span id="370500">东营市</span> <span id="371700">菏泽市</span> <span id="370100">济南市</span> <span id="370800">济宁市</span> <span id="371200">莱芜市</span> <span id="371500">聊城市</span> <span id="371300">临沂市</span> <span id="371100">日照市</span> <span id="370900">泰安市</span> <span id="371000">威海市</span> <span id="370700">潍坊市</span> <span id="370600">烟台市</span> <span id="370400">枣庄市</span> <span id="370300">淄博市</span> <span id="370200">青岛市</span> </div></div> <div class="pro_city3_list2 hide" id="city610000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="610900">安康市</span> <span id="610300">宝鸡市</span> <span id="610700">汉中市</span> <span id="611000">商洛市</span> <span id="610200">铜川市</span> <span id="610500">渭南市</span> <span id="610100">西安市</span> <span id="610400">咸阳市</span> <span id="610600">延安市</span> <span id="610800">榆林市</span> </div></div> <div class="pro_city3_list2 hide" id="city140000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="140400">长治市</span> <span id="140200">大同市</span> <span id="140500">晋城市</span> <span id="140700">晋中市</span> <span id="141000">临汾市</span> <span id="141100">吕梁市</span> <span id="140600">朔州市</span> <span id="140100">太原市</span> <span id="140900">忻州市</span> <span id="140300">阳泉市</span> <span id="140800">运城市</span> </div></div> <div class="pro_city3_list2 hide" id="city510000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="513200">阿坝</span> <span id="511900">巴中市</span> <span id="510100">成都市</span> <span id="511700">达州市</span> <span id="510600">德阳市</span> <span id="513300">甘孜</span> <span id="511600">广安市</span> <span id="510800">广元市</span> <span id="511100">乐山市</span> <span id="513400">凉山市</span> <span id="511400">眉山市</span> <span id="510700">绵阳市</span> <span id="511300">南充市</span> <span id="511000">内江市</span> <span id="510400">攀枝花市</span> <span id="510900">遂宁市</span> <span id="511800">雅安市</span> <span id="511500">宜宾市</span> <span id="512000">资阳市</span> <span id="510300">自贡市</span> <span id="510500">泸州市</span> </div></div> <div class="pro_city3_list2 hide" id="city650000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="652900">阿克苏</span> <span id="659002">阿拉尔</span> <span id="654300">阿勒泰</span> <span id="652800">巴音郭楞</span> <span id="652700">博尔塔拉</span> <span id="652300">昌吉回族</span> <span id="652200">哈密</span> <span id="653200">和田</span> <span id="653100">喀什</span> <span id="650200">克拉玛依</span> <span id="653000">克孜勒苏</span> <span id="659001">石河子</span> <span id="654200">塔城</span> <span id="659003">图木舒克</span> <span id="652100">吐鲁番</span> <span id="650100">乌鲁木齐</span> <span id="659004">五家渠</span> <span id="654000">伊犁哈萨</span> </div></div> <div class="pro_city3_list2 hide" id="city540000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="542500">阿里</span> <span id="542100">昌都</span> <span id="540100">拉萨</span> <span id="542600">林芝地区</span> <span id="542400">那曲</span> <span id="542300">日喀则</span> <span id="542200">山南</span> </div></div> <div class="pro_city3_list2 hide" id="city530000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="530500">保山市</span> <span id="532300">楚雄州</span> <span id="532900">大理州</span> <span id="533100">德宏州</span> <span id="533400">迪庆藏族</span> <span id="532500">红河州</span> <span id="530100">昆明市</span> <span id="530700">丽江市</span> <span id="530900">临沧市</span> <span id="533300">怒江州</span> <span id="530300">曲靖市</span> <span id="530800">思茅市</span> <span id="532600">文山州</span> <span id="532800">西双版纳</span> <span id="530400">玉溪市</span> <span id="530600">昭通市</span> </div></div> <div class="pro_city3_list2 hide" id="city330000"><div class="top_arrow"></div><div class="top_arrow top_arrow1"></div><div class="pro_body_bg"> <span id="330100">杭州市</span> <span id="330200">宁波市</span> <span id="330500">湖州市</span> <span id="330400">嘉兴市</span> <span id="330700">金华市</span> <span id="331100">丽水市</span> <span id="330600">绍兴市</span> <span id="331000">台州市</span> <span id="330300">温州市</span> <span id="330900">舟山市</span> <span id="330800">衢州市</span> </div></div></div></div> </div> </div> <div class="change_city_footer"></div> <div class="city1_box hide"> <div class="city1_box_body"> <ul class="clearfix"> </ul> </div> </div> </div> </div> </div> </div> </div></div><div class="nav"><ul><li><a href="javascript:void(0)" class="nav_a">信用卡</a>
<div class="mnavL" style="display: none;"> <div class="mnavL_info"> <div class="mnavL_left fl clearfix"><div class="tz_1"><table class="cell" width="100%"><tbody><tr><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206092048/m1.png"></td><td class="mt_td2">业务办理</td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206092048/m2.png"></td><td class="mt_td2">人气产品</td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206092048/m3.png"></td><td class="mt_td2">热门推荐</td></tr></tbody></table></td></tr></tbody></table></div><div class="nav_two_1"><a href="http://creditcard.ccb.com" target="_blank">信用卡 ></a></div><div class="mn_box fl mn_box1"><div class="m_box_info"><table class="cell" width="100%"><tbody><tr><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/apply/apply.html" target="_blank" title="信用卡申请">信用卡申请</a></td><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/apply_process3.html" target="_blank" title="办卡进度查询">办卡进度查询</a></td></tr><tr><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/crd_activation.html" target="_blank" title="在线开卡">在线开卡<span class="hot"><img src="http://image3.ccb.com/cn/home/v3/images/hot.png"></span></a></td><td class="m_b_td1"><a href="http://jf.ccb.com/" target="_blank" title="积分商城">积分商城<span class="hot"><img src="http://image3.ccb.com/cn/home/v3/images/hot.png"></span></a></td></tr><tr><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/jf_query_login.html" target="_blank" title="账单查询">账单查询</a></td><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/installment/tab_check.html" target="_blank" title="分期理财">分期理财</a></td></tr><tr><td class="m_b_td1"><a href="https://ibsbjstar.ccb.com.cn/app/V5/CN/STY1/login.jsp" target="_blank" title="额度调整">额度调整</a></td><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/crd_lost_mycard.html" target="_blank" title="在线挂失">在线挂失</a></td></tr></tbody></table></div></div><div class="mn_box fl mn_box2"><div class="m_box_info"><table class="cell" width="100%"><tbody><tr><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/card_list.html" target="_blank" title="龙卡热购卡">龙卡热购卡<span class="hot"><img src="http://image3.ccb.com/cn/home/v3/images/hot.png"></span></a></td><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/cards/20110906_1315300801.html" target="_blank" title="全球支付信用卡">全球支付信用卡</a></td></tr><tr><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/cards/20100825_1282697438.html" target="_blank" title="欧洲旅行信用卡">欧洲旅行信用卡</a></td><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/cards/20150212_1423704279.html" target="_blank" title="EMV信用卡">EMV信用卡<span class="new"><img src="http://image3.ccb.com/cn/home/v3/images/new.png"></span></a></td></tr><tr><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/cards/20150108_1420704810.html" target="_blank" title="日本旅行信用卡">日本旅行信用卡</a></td><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/card_list.html" target="_blank" title="更多">更多</a></td></tr></tbody></table></div></div><div class="mn_box fl mn_box3"><div class="m_box_info"><table class="cell" width="100%"><tbody><tr><td class="m_b_td1"><a href="http://www.ccb.com/cn/html1/office/xyk/subject/15/0701lkxql/index.html" target="_blank" title="龙卡星期六">龙卡星期六<span class="new"><img src="http://image3.ccb.com/cn/home/v3/images/new.png"></span></a></td></tr><tr><td class="m_b_td1"><a href="http://www.ccb.com/cn/html1/office/xyk/subject/17/0526jtzaweb/index.html" target="_blank" title="家庭挚爱 月月赠礼">家庭挚爱 月...</a></td></tr><tr><td class="m_b_td1"><a href="http://www.ccb.com/cn/html1/office/xyk/subject/15/0701lkxql/hdl.html" target="_blank" title="海底捞200减60">海底捞200减60</a></td></tr><tr><td class="m_b_td1"><a href="http://creditcard.ccb.com/cn/creditcard/thhd.html" target="_blank" title="更多特惠活动">更多特惠活动</a></td></tr></tbody></table></div></div><div class="clear"></div></div> <div class="clear"></div> <div class="nm_bottom"><ul><li class="bott_li bott_li_1"><dl><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206092048/b1.png"/></dd><dt><a href="http://creditcard.ccb.com/cn/creditcard/service/card_zhangcheng.html" target="_blank">信用卡章程</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206092048/b2.png"/></dd><dt><a href="http://www.ccb.com/cn/html1/office/xyk/subject/16/1222yjhk/index.html" target="_blank">还款方式</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206092048/b3.png"/></dd><dt><a href="http://creditcard.ccb.com/cn/creditcard/serveiceDirect.html" target="_blank">常见问题</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206092048/b4.png"/></dd><dt><a href="http://creditcard.ccb.com/cn/creditcard/service/card_shoufei.html" target="_blank">收费标准 </a></dt></dl></li></ul></div> </div></div>
</li><li><a href="javascript:void(0)" class="nav_a">投资理财</a>
<div class="mnavL" style="display: none;"> <div class="mnavL_info"> <div class="mnavL_left_LL fl"><div class="tz_1"><table class="cell" width="100%"><tbody><tr><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206094026/m1.png"></td><td class="mt_td2">业务办理</td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206094026/m2.png"></td><td class="mt_td2">产品介绍</td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206094026/m3.png"></td><td class="mt_td2">热门推荐</td></tr></tbody></table></td></tr></tbody></table></div><div class="tz_2"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://fund.ccb.com/cn/fund/index.html" target="_blank">基金 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://fund.ccb.com/cn/fund/product/product_index.html" target="_blank" title="基金交易">基金交易<span class="hot"><img src="http://image3.ccb.com/cn/home/v3/images/hot.png"></span></a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://fund.ccb.com/cn/fund/news/fundNews_list.html?index=3" target="_blank" title="基金公告">基金公告</a></td><td class="mtt_td2"><a href="http://fund.ccb.com/cn/fund/index.html" target="_blank" title="新发基金">新发基金</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://fund.ccb.com/cn/fund/index.html" target="_blank" title="热销基金">热销基金</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_2"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://finance.ccb.com/cn/finance/index.html" target="_blank">理财 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://finance.ccb.com/cn/finance/product.html" target="_blank" title="理财产品">理财产品</a></td><td class="mtt_td2"><a href="http://finance.ccb.com/cn/mycom/myfinance.html" target="_blank" title="持有产品查询">持有产品查询</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://finance.ccb.com/cn/finance/product.html" target="_blank" title="理财产品一览">理财产品一览</a></td><td class="mtt_td2"><a href="http://finance.ccb.com/cn/finance/productnews/zxgg/zxgg_1.html" target="_blank" title="新产品公告">新产品公告</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_2"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://insurance.ccb.com/cn/insurance/indexv3.html" target="_blank">保险 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://insurance.ccb.com/cn/insurance/guide/chanpinsousuo.html" target="_blank" title="保险产品购买">保险产品购买</a></td><td class="mtt_td2"><a href="http://insurance.ccb.com/cn/insurance/my_insurance.html" target="_blank" title="保单查询">保单查询</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://insurance.ccb.com/cn/insurance/guide/chanpinsousuo.html" target="_blank" title="保险产品分类">保险产品分类</a></td><td class="mtt_td2"><a href="http://insurance.ccb.com/cn/insurance/insurance_guide.html" target="_blank" title="保险知识">保险知识</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_2"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://forex.ccb.com/cn/forex/indexv3.html" target="_blank">外汇投资 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://forex.ccb.com/cn/forex/myself/20170419_169483788.html" target="_blank" title="个人外汇买卖">个人外汇买卖</a></td><td class="mtt_td2"><a href="http://forex.ccb.com/cn/forex/myself/20170411_925295278.html" target="_blank" title="账户外汇">账户外汇</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://forex.ccb.com/cn/forex/myself/20170419_786487708.html" target="_blank" title="结售汇与外汇买卖">结售汇与外汇...</a></td><td class="mtt_td2"><a href="http://forex.ccb.com/cn/forex/exchange-quotations.html" target="_blank" title="外汇行情">外汇行情</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://forex.ccb.com/cn/forex/myself/20170419_675225052.html" target="_blank" title="外汇理财">外汇理财</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_2"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://www.ccb.com/cn/home/company/zqcp/246978.html" target="_blank">国债/证券 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/home/company/zqcp/246978.html" target="_blank" title="国债业务介绍">国债业务介绍</a></td><td class="mtt_td2"><a href="http://www.ccb.com/cn/personal/securities/3rddepository.html" target="_blank" title="鑫存管业务介绍">鑫存管业务介绍</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/home/company/zqcp/246980.html" target="_blank" title="记账式国债">记账式国债</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_2"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://gold.ccb.com/cn/gold/index.html" target="_blank">贵金属/商品 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://gold.ccb.com/cn/gold/accountgoldlist.html" target="_blank" title="账户贵金属买卖">账户贵金属买卖</a></td><td class="mtt_td2"><a href="http://gold.ccb.com/cn/gold/20111126_1322318556.html" target="_blank" title="代理个人金交所业务">代理个人金交...</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://gold.ccb.com/cn/gold/ldjjs.html" target="_blank" title="贵金属及商品业务">贵金属及商品...</a></td><td class="mtt_td2"><a href="http://gold.ccb.com/cn/gold/hjhq.html" target="_blank" title="贵金属行情">贵金属行情</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://gold.ccb.com/cn/gold/swjzs.html" target="_blank" title="建行实物金">建行实物金</a></td></tr></tbody></table></td></tr></tbody></table></div></div> <div class="clear"></div> <div class="nm_bottom"><ul><li class="bott_li bott_li_1"><dl><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206094026/tz.png"/></dd><dt><a href="http://fund.ccb.com/cn/fund/product/include/detail_0.html" target="_blank">流程指南:基金</a></dt><dd></dd><dt><a href="http://finance.ccb.com/cn/finance/helpcenter/20151225_1451005660.html" target="_blank">理财</a></dt><dd></dd><dt><a href="http://insurance.ccb.com/cn/insurance/insurance_guide.html" target="_blank">保险</a></dt><dd></dd><dt><a href="http://gold.ccb.com/cn/home/purchaseFlow/20120218_1329571261_channel_1.html" target="_blank">贵金属/商品</a></dt><dd></dd><dt><a href="http://forex.ccb.com/cn/forex/exchange-quotations.html" target="_blank">小贴士: 外汇行情查询</a></dt></dl></li></ul></div> </div></div>
</li><li><a href="javascript:void(0)" class="nav_a">存贷及银行卡</a>
<div class="mnavL" style="display: none;"> <div class="mnavL_info"> <div class="mnavL_left_LL fl"><div class="tz_1"><table class="cell" width="100%"><tbody><tr><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102052/m1.png"></td><td class="mt_td2">业务办理</td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102052/m2.png"></td><td class="mt_td2">产品介绍</td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102052/m3.png"></td><td class="mt_td2">热门推荐</td></tr></tbody></table></td></tr></tbody></table></div><div class="tz_3"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://www.ccb.com/cn/personal/deposit/mini_set.html" target="_blank">存款服务 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ebank.ccb.com/cn/OtherResource/rpretreatment/index.html" target="_blank" title="预约开户">预约开户<span class="hot"><img src="http://image3.ccb.com/cn/home/v3/images/hot.png"></span></a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/personal/deposit/rmbdeposits.html" target="_blank" title="存款业务介绍">存款业务介绍</a></td><td class="mtt_td2"><a href="http://www.ccb.com/cn/personal/interestv3/rmbdeposit.html" target="_blank" title="存款利率">存款利率</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/personal/convenient/safekeep.html" target="_blank" title="保管箱">保管箱</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="tz_3"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/personal/deposit/noticedeposit.html" target="_blank" title="通知存款一户通">通知存款一户通</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/personal/deposit/certificate.html" target="_blank" title="个人存款证明">个人存款证明</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_3"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://www.ccb.com/cn/personal/credit/mini_set.html" target="_blank">贷款服务 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ehome.ccb.com/Channel/34202182" target="_blank" title="我要贷款">我要贷款</a></td><td class="mtt_td2"><a href="http://ehome.ccb.com/tran/WCCMainB1L1?CCB_IBSVersion=V5&SERVLET_NAME=WCCMainB1L1&TXCODE=FA0016" target="_blank" title="贷款进度查询">贷款进度查询</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ehome.ccb.com/Channel/22804995" target="_blank" title="贷款产品介绍">贷款产品介绍</a></td><td class="mtt_td2"><a href="http://www.ccb.com/cn/personal/interestv3/rmbcredit.html" target="_blank" title="贷款利率">贷款利率</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/personal/credit/jyyw.html" target="_blank" title="建行“快贷”">建行“快贷”</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="tz_3"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ehome.ccb.com/tran/WCCMainB1L1?CCB_IBSVersion=V5&SERVLET_NAME=WCCMainB1L1&TXCODE=FA0005" target="_blank" title="贷款归还">贷款归还</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ehome.ccb.com/Channel/22805972?marker=4" target="_blank" title="住房贷款">住房贷款</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ehome.ccb.com/Info/79228280" target="_blank" title="借贷通">借贷通</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_3"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://www.ccb.com/cn/personal/debitcard/mini_set.html" target="_blank">银行卡 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ebank.ccb.com/cn/OtherResource/rpretreatment/index.html" target="_blank" title="预约办卡">预约办卡</a></td><td class="mtt_td2"><a href="http://www.ccb.com/cn/home/apply/card_apply.html" target="_blank" title="借记卡申请">借记卡申请</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/personal/debitcard/dragoncard.html" target="_blank" title="龙卡业务介绍">龙卡业务介绍</a></td><td class="mtt_td2"><a href="http://ccb.com/cn/personal/debitcard/201611091478665443.html" target="_blank" title="龙支付">龙支付</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/personal/debitcard/finance.html" target="_blank" title="建行理财卡">建行理财卡</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="tz_3"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/home/cards/process_query.html" target="_blank" title="办卡进度查询">办卡进度查询</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_2"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://forex.ccb.com/cn/forex/indexv3.html" target="_blank">个人外汇 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ebank.ccb.com/cn/OtherResource/rpretreatment/index.html" target="_blank" title="预约外汇兑换">预约外汇兑换</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://forex.ccb.com/cn/forex/myself/personal-forex.html" target="_blank" title="外汇业务介绍">外汇业务介绍</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://forex.ccb.com/cn/forex/myself/20170321_641796608.html" target="_blank" title="外汇汇款">外汇汇款</a></td></tr></tbody></table></td></tr></tbody></table></div></div> <div class="clear"></div> <div class="nm_bottom"><ul><li class="bott_li bott_li_1"><dl><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102052/dk_1.png"/></dd><dt><a href="http://tool.ccb.com/queryPersonalLoanOrgan.gsp?provinceCode=110000&cityCode=110000" target="_blank">个贷网点</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102052/dk_2.png"/></dd><dt><a href="http://www.ccb.com/cn/personal/debitcard/20120314_1331707326.html" target="_blank">银行卡安全用卡常识 </a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102052/dk_3.382411751461449623648.png"/></dd><dt><a href="http://www.ccb.com/cn/personal/debitcard/personal.html" target="_blank">个人业务章程和协议下载</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102052/b5.png"/></dd><dt><a href="http://www.ccb.com/cn/html1/office/ebank/subject/14/1023xzs/index.html" target="_blank">小贴士:金融IC卡电子现金 </a></dt></dl></li></ul></div> </div></div>
</li><li><a href="javascript:void(0)" class="nav_a">电子银行</a>
<div class="mnavL" style="display: none;"> <div class="mnavL_info"> <div class="mnavL_left fl clearfix"><div class="tz_1"><table class="cell" width="100%"><tbody><tr><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102553/m1.png"></td><td class="mt_td2">业务办理</td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102553/m2.png"></td><td class="mt_td2">产品介绍</td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102553/m3.png"></td><td class="mt_td2">热门推荐</td></tr></tbody></table></td></tr></tbody></table></div><div class="nav_two_1"><a href="http://ebank.ccb.com" target="_blank">电子银行 ></a></div><div class="mn_box fl mn_box1"><div class="m_box_info"><table class="cell" width="100%"><tbody><tr><td class="m_b_td1"><a href="https://ibsbjstar.ccb.com.cn/CCBIS/V6/STY1/CN/FB30101_notice.jsp" target="_blank" title="开通网上银行">开通网上银行</a></td><td class="m_b_td1"><a href="https://ibsbjstar.ccb.com.cn/CCBIS/B2CMainPlatP1?CCB_IBSVersion=V6&TXCODE=B50101" target="_blank" title="开通手机银行">开通手机银行</a></td></tr><tr><td class="m_b_td1"><a href="http://accounts.ccb.com/tran/WCCMainPlatV5?CCB_IBSVersion=V5&SERVLET_NAME=WCCMainPlatV5&TXCODE=EX7001" target="_blank" title="消息服务定制">消息服务定制</a></td><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/OtherResource/account_pay/html/account_pay.html" target="_blank" title="开通账号支付">开通账号支付</a></td></tr><tr><td class="m_b_td1"><a href="http://accounts.ccb.com/tran/WCCMainPlatV5?CCB_IBSVersion=V5&SERVLET_NAME=WCCMainPlatV5&TXCODE=EZ6010" target="_blank" title="开通e账户">开通e账户</a></td><td class="m_b_td1"><a href="http://tool.ccb.com/tran/WCCMainPlatV5?CCB_IBSVersion=V5&SERVLET_NAME=WCCMainPlatV5&TXCODE=ZF1101" target="_blank" title="管理快捷支付">管理快捷支付</a></td></tr></tbody></table></div></div><div class="mn_box fl mn_box2"><div class="m_box_info"><table class="cell" width="100%"><tbody><tr><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/tdys/201306071370568393.html" target="_blank" title="网上银行">网上银行</a></td><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/tdys/201306071370568804.html" target="_blank" title="手机银行">手机银行</a></td></tr><tr><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/tdys/201306071370568992.html" target="_blank" title="短信金融">短信金融</a></td><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/tdys/201306071370569179.html" target="_blank" title="电话银行">电话银行</a></td></tr><tr><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/ktzn/201306071370590364.html" target="_blank" title="家居银行">家居银行</a></td><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/detail/201306161371323952.html" target="_blank" title="自助银行">自助银行</a></td></tr><tr><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/tdys/201306081370664945.html" target="_blank" title="电子支付">电子支付</a></td><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/tdys/201501251422121366.html" target="_blank" title="微信银行">微信银行</a></td></tr></tbody></table></div></div><div class="mn_box fl mn_box3"><div class="m_box_info"><table class="cell" width="100%"><tbody><tr><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/detail/201501251422140463.html" target="_blank" title="微客服">微客服</a></td></tr><tr><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/detail/201306071370606877.html" target="_blank" title="手机到手机转账">手机到手机转账</a></td></tr><tr><td class="m_b_td1"><a href="http://ebank.ccb.com/cn/ebank/personal/detail/201306071370606256.html" target="_blank" title="特约取款">特约取款</a></td></tr></tbody></table></div></div><div class="clear"></div></div> <div class="clear"></div> <div class="nm_bottom"><ul><li class="bott_li bott_li_1"><dl><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102553/set.11133171631449462380.png"/></dd><dt><a href="http://ebank.ccb.com/cn/ebank/personal/demoCenter/index.html" target="_blank">演示中心</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102553/b2.png"/></dd><dt><a href="http://www.ccb.com/cn/html1/office/nkc/aqxcs/index.html" target="_blank">安全小常识</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206092048/b3.png"/></dd><dt><a href="http://ebank.ccb.com/cn/ebank/personal/question/answerquestion.html" target="_blank">常见问题</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206102553/b6.png"/></dd><dt><a href="http://ebank.ccb.com/cn/ebank/personal/ebankintro/201306071370581744.html" target="_blank">关于电子银行</a></dt><dd><img src="http://image3.ccb.com/cn/v3/upload/20160812_1470966689/b2.png"/></dd><dt><a href="http://www.ccb.com/cn/public/20131127_1385539891.html" target="_blank">下载中心</a></dt></dl></li></ul></div> </div></div>
</li><li><a href="javascript:void(0)" class="nav_a">悦享生活</a>
<div class="mnavL" style="display: none;"> <div class="mnavL_info"> <div class="mnavL_left_LL fl"><div class="tz_1"><table class="cell" width="100%"><tbody><tr><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103024/m1.png"></td><td class="mt_td2">业务办理</td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103024/m2.png"></td><td class="mt_td2">产品介绍</td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103024/m3.png"></td><td class="mt_td2">热门推荐</td></tr></tbody></table></td></tr></tbody></table></div><div class="tz_3"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://buy.ccb.com" target="_blank">善融商务 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://sale.buy.ccb.com/channel/sjsr_0506/index.html" target="_blank" title="手机善融">手机善融</a></td><td class="mtt_td2"><a href="http://sale.buy.ccb.com/channel/ak_20160924/index.html" target="_blank" title="积分购物">积分购物</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://shop.ccb.com/" target="_blank" title="分期优选">分期优选</a></td><td class="mtt_td2"><a href="http://buy.ccb.com/crossborder/nb/index.jhtml" target="_blank" title="跨境购">跨境购</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://buy.ccb.com/products/pbl_1_1_1.jhtml" target="_blank" title="限时抢购">限时抢购</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="tz_3"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://buy.ccb.com/financing/indexPage.jhtml" target="_blank" title="融资中心">融资中心</a></td><td class="mtt_td2"><a href="http://buy.ccb.com/member/memberBegin.jhtml?returnUrl=687474703a2f2f6275792e6363622e636f6d2f" target="_blank" title="查看订单">查看订单</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://trip.ccb.com/index.jhtml" target="_blank" title="商旅服务">商旅服务</a></td><td class="mtt_td2"><a href="http://buy.ccb.com/branchsale/allPage.jhtml" target="_blank" title="地方特色">地方特色</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://buy.ccb.com/groupbuy/index.jhtml" target="_blank" title="今日团购">今日团购</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_2"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://life.ccb.com" target="_blank">悦生活 ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://life.ccb.com/cn/paymentv3/v3/include/login_search.html" target="_blank" title="交易记录查询">交易记录查询</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://life.ccb.com/cn/paymentv3/bill_item/2012032220243191063788.html" target="_blank" title="应用服务">应用服务</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://life.ccb.com/cn/paymentv3/v3/favorable/1_1.html" target="_blank" title="优惠资讯">优惠资讯</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_3"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"><a href="http://ehome.ccb.com" target="_blank">建行“房e通” ></a></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ehome.ccb.com/searchProject.gsp?paramMap.li=1¶mMap.hotFlag=1" target="_blank" title="我要买房">我要买房</a></td><td class="mtt_td2"><a href="http://ehome.ccb.com/toBuyHousePublish.gsp" target="_blank" title="我要卖房">我要卖房</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ehome.ccb.com/Channel/37044120" target="_blank" title="房屋交易资金托管">房屋交易资金...</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ehome.ccb.com/Channel/44302238?marker=1" target="_blank" title="新房团购">新房团购</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="tz_3"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td"></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ehome.ccb.com/Channel/34202182" target="_blank" title="我要贷款">我要贷款</a></td><td class="mtt_td2"><a href="http://ehome.ccb.com/tran/WCCMainB1L1?CCB_IBSVersion=V5&SERVLET_NAME=WCCMainB1L1&TXCODE=FA0005" target="_blank" title="提前还款">提前还款</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://ehome.ccb.com/searchHouseSell.gsp?paramMap.sunHouse=1" target="_blank" title="阳光房源">阳光房源</a></td></tr></tbody></table></td></tr></tbody></table></div><div class="xian"></div><div class="tz_2"><table class="cell" width="100%"><tbody><tr><td class="tz_td1"><table class="cell" width="100%"><tbody><tr><td class="blue_td">综合积分 ></td></tr></tbody></table></td><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/home/integration/integration_use_nolog.html" target="_blank" title="用积分">用积分</a></td><td class="mtt_td2"><a href="http://www.ccb.com/cn/home/integration/integration_login.html" target="_blank" title="综合积分查询">综合积分查询</a></td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mtt_td1"><a href="http://www.ccb.com/cn/home/integration/index_integration_description.html" target="_blank" title="星级服务介绍">星级服务介绍</a></td><td class="mtt_td2"><a href="http://www.ccb.com/cn/home/integration/index_integration_menu.html" target="_blank" title="星级服务目录">星级服务目录</a></td></tr></tbody></table></td><td class="tz_td4"><table class="cell" width="100%"><tbody><tr></tr></tbody></table></td></tr></tbody></table></div></div> <div class="clear"></div> <div class="nm_bottom"><ul><li class="bott_li bott_li_1"><dl><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103024/b3.png"/></dd><dt><a href="http://buy.ccb.com/helpCenter.jhtml" target="_blank">善融个人帮助中心</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103024/b2.png"/></dd><dt><a href="http://life.ccb.com/cn/paymentv3/v3/handbook/life_guide.html" target="_blank">悦生活服务指南 </a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103024/yue3.png"/></dd><dt><a href="http://www.ccb.com/cn/html/office/ehome/subject/11/0519manual/ehome_khyz.htm" target="_blank">建行“房e通”新手上路</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103024/b5.png"/></dd><dt><a href="http://finance.ccb.com/cn/finance/selfservice/riskTesting.html" target="_blank">风险能力自测</a></dt></dl></li></ul></div> </div></div>
</li><li><a href="javascript:void(0)" class="nav_a">优智规划</a>
<div class="mnavL" style="display: none;"> <div class="mnavL_info"> <div class="mnavL_left_LL fl"><div class="tz_1"><table class="cell" width="100%"><tbody><tr><td class="tz_td2"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103928/m1.png"></td><td class="mt_td2">服务介绍</td></tr></tbody></table></td><td class="tz_td3"><table class="cell" width="100%"><tbody><tr><td class="mt_td1"><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103928/m2.png"></td><td class="mt_td2">优智推荐</td></tr></tbody></table></td></tr></tbody></table></div><div class="tz_3"><div class="tz_3_box"><ul class="tz_3_box_main"><li ><dl class="tz_3_box_t"><dt><a href="http://www.ccb.com/cn/html1/office/yzgh/subject/16/0622ssxz/index.html" target="_blank"><table class="cell" width="100%"><tbody><tr><td width="86" align="center">我是学生</br>莘莘学子馆</td><td class="f_blue">></td></tr></tbody></table></a></dt></dl><dl class="dl_01"><dd><a href="http://www.ccb.com/cn/html1/office/yzgh/subject/16/0622ssxz/scene-01.html" target="_blank" title="最“惠”校园生活">最“惠”校园生活</a></dd><dd><a href="http://www.ccb.com/cn/html1/office/yzgh/subject/16/0622ssxz/scene-02.html" target="_blank" title="吃喝玩乐攻略">吃喝玩乐攻略</a></dd><dd><a href="http://www.ccb.com/cn/html1/office/yzgh/subject/16/0622ssxz/scene-03.html" target="_blank" title="留学助业">留学助业</a></dd></dl><dl class="dl_02"><dd><a href="http://creditcard.ccb.com/cn/creditcard/thhd.html" target="_blank" title="信用卡--特惠活动惊喜不断">信用卡--特惠活动惊喜不断</a></dd><dd><a href="/cn/paymentv3/indexv3.html" target="_blank" title="悦生活--娱乐出行生活好帮手">悦生活--娱乐出行生活好帮手</a></dd><dd><a href="http://buy.ccb.com/" target="_blank" title="善融商务--多彩主题购活动">善融商务--多彩主题购活动</a></dd></dl></li></ul></div></div><div class="line_box"></div><div class="tz_3"><div class="tz_3_box"><ul class="tz_3_box_main"><li ><dl class="tz_3_box_t"><dt><a href="http://www.ccb.com/cn/html1/office/yzgh/subject/16/0622xqzz/index.html" target="_blank"><table class="cell" width="100%"><tbody><tr><td width="86" align="center">我要理财</br>闲钱也能增值</td><td class="f_blue">></td></tr></tbody></table></a></dt></dl><dl class="dl_01"><dd><a href="http://www.ccb.com/cn/html1/office/yzgh/subject/16/0622xqzz/index.html" target="_blank" title="“闲”钱理财入门">“闲”钱理财入门</a></dd><dd><a href="http://www.ccb.com/cn/html1/office/yzgh/subject/16/0622xqzz/scene-02.html" target="_blank" title="投资有方,理财有道">投资有方,理财有道</a></dd><dd><a href="http://www.ccb.com/cn/html1/office/yzgh/subject/16/0622xqzz/scene-03.html" target="_blank" title="案例分享">案例分享</a></dd></dl><dl class="dl_02"><dd><a href="/cn/finance/product.html" target="_blank" title="理财产品--保值增值,提升财富">理财产品--保值增值,提升财富</a></dd><dd><a href="/cn/insurance/indexv3.html" target="_blank" title="保险精品--在您身边,伴您同行">保险精品--在您身边,伴您同行</a></dd><dd><a href="http://fund.ccb.com/cn/fund/product/product_index.html" target="_blank" title="基金超市--小投入,大收益">基金超市--小投入,大收益</a></dd></dl></li></ul></div></div></div> <div class="clear"></div> <div class="nm_bottom"><ul><li class="bott_li bott_li_1"><dl><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103928/y.png"/></dd><dt><a href="/cn/finance/selfservice/tool.html?param=" target="_blank">理财计算器</a></dt><dd><img src="http://image3.ccb.com/cn/home/v3/upload/channel_bar/20151206103928/b5.png"/></dd><dt><a href="http://www.ccb.com/cn/html1/office/yzgh/subject/16/0111xqzz/scene-02.html" target="_blank">小测试:测试你的理财观念和盲点</a></dt></dl></li></ul></div> </div></div>
</li></ul></div><div class="search_tow"><div class="search_nav_line"></div><a href="javascript:void(0)" class="search_tow_a"></a><div class="search_nav"><div class="gb_btn"><a href="javascript:void(0);" class="sd_sn"><img src="/cn/home/v3/images/gb.png"></a></div><div class="search_sn"><form name="SearchForm" class="AcqStep" action="http://www.ccb.com/cn/home/search.html" method="GET" target="_blank"><table width="100%" style="position: relative;"><tbody><tr><td class="sn_td1"><input type="text" class="search_input" name="keyword" /></td><td class="sn_td2"><input class="search_btn " type="submit" value="搜索"></td></tr><tr><td class="hot-words" colspan="2" align="left"><span>热门关键字:</span> <a href="http://www.ccb.com/cn/home/search.html?keyword=电子银行" class="h-words" target="_blank">电子银行</a><a href="http://www.ccb.com/cn/home/search.html?keyword=信用卡" class="h-words" target="_blank">信用卡</a><a href="http://www.ccb.com/cn/home/search.html?keyword=悦生活" class="h-words" target="_blank">悦生活</a><a href="http://www.ccb.com/cn/home/search.html?keyword=贵金属" class="h-words" target="_blank">贵金属</a></td></tr></tbody></table><div class="tixing" style=" width: 160px; height: 36px; float: right; position: absolute; right: 88px; top: 34px; text-align: center; line-height: 36px;display:none;"><span style="color:red;">请输入搜索关键字</span></div></form></div></div></div><script type="text/javascript">$(function(){$('.sn_td2').mouseover(function(){if($('.sn_td1 input').val() == ""){$('.sn_td2 input').attr('type','button');}else{$('.sn_td2 input').attr('type','submit');}});$('.sn_td2').mouseout(function(){$('.tixing').hide();});});$('.sn_td2').click(function(){if($('.sn_td2 input').attr('type') == 'button'){$('.tixing').show();}else{$('.tixing').hide();}}) </script><script type="text/javascript" src="http://www.ccb.com/cn/v3/include/login/login.js"></script><style>.hm_bott { height: 30px; line-height: 30px; background: url(/cn/v3/upload/photo/20151206_1449372202/20160309190542866975.png) no-repeat 21px center;}</style><div class="Quick_Link"><iframe id="loginByWyIframe" src="" style="height:0px;width:0px;display:none;"></iframe><div class="Quick_Link_top"><div class="select"></div><div class="select_list w_160 lfloat"><span class="select_value">个人网上银行</span><div class="select_ul"><ul><li class="choose">个人网上银行</li><li class="choose">商户服务平台</li><li class="choose">网站</li><li class="choose">善融商务</li></ul></div></div><a id="http://www.ccb.com/cn/jump/personal_loginbank.html" style="cursor:pointer" class="Quick_Link_top_button" target="_blank">登录</a><a id="http://www.ccb.com/cn/home/tysh/tysh_index.html" style="cursor:pointer" class="Quick_Link_top_button hide" target="_blank">登录</a><a id="http://login.ccb.com/tran/WCCMainPlatV5?CCB_IBSVersion=V5&SERVLET_NAME=WCCMainPlatV5&TXCODE=NHY010" style="cursor:pointer" class="Quick_Link_top_button hide" target="_blank">登录</a><a id="http://buy.ccb.com/member/memberBegin.jhtml" style="cursor:pointer" class="Quick_Link_top_button hide" target="_blank">登录</a></div><div class="Quick_Link_bottom"></div><div class="Quick_Link_box"><div class="Quick_Link_m"> <a target="_blank" id="http://ebank.ccb.com/cn/jump/secure.html" class="zhuce" style="cursor:pointer">安全指引</a><a target="_blank" id="http://ebank.ccb.com/cn/ebank/personal/downloadcenter/201306071370593615.html" class="zhuce" style="cursor:pointer">下载中心</a><a target="_blank" id="http://ebank.ccb.com/cn/jump/demo.html" class="zhuce" style="cursor:pointer">功能演示</a><a target="_blank" id="http://www.ccb.com/cn/home/register/kstd_zhuce.html" class="zhuce" style="cursor:pointer">注册开通</a></div><div class="hm_bott" ><ul><li class="hm_li"><a href="http://www.ccb.com/cn/mycom/user_center.html" target="_blank">进入我的.com</a></li><li class="hm_li1"><a href="http://buy.ccb.com/" target="_blank">善融商务</a></li></ul></div></div></div><div class="hidemenu" style="display:none"><div class="leftUseimg"><a href="#" onclick="toMyHead4LoginArea();"></a></div><div class="right_message"><ul><li class="message_img"> <ul><li class="name_widyh"></li></ul></li><li><dl><dd class="m_r_d"><a href="#" onclick="toMyCom4LoginArea();">我的.com</a></dd><dd class="m_r_d"><a class="number" href="#" onclick="toMyMsg4LoginArea();"></a></dd><dd><a style="cursor:pointer" onclick="out();" class="close_window">安全退出</a></dd> </dl></li></ul></div><div class="down_nemu_login"><ul style="margin-top:3px;"><li><a href="http://www.ccb.com/cn/jump/personal_loginbank.html" target="_blank" onclick="toWangYin4LoginArea();">进入个人网上银行</a></li></ul></div></div></div></div>
<div class="header_box_shadow"></div>
<div class="header_box_3"></div>