about.html
68.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CCDC</title>
<!-- 引入jQuery -->
<script src="../../../../node_modules/jquery/dist/jquery.js"></script>
<script src="../../../static/js/slide.js"></script>
<link rel="stylesheet" href="../../../static/common/index.css">
<!-- 引入 element-ui 的样式, -->
<!-- <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css"> -->
<!-- 必须先引入vue,后使用element-ui -->
<!-- <script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script> -->
<!-- 引入element 的组件库-->
<!-- <scrip src="https://unpkg.com/element-ui/lib/index.js"> -->
<script src="../../../static/js/public.js"></script>
<link rel="stylesheet" href="../../../static/common/swiper.css">
<link rel="stylesheet" href="../../../static/css/about/about.css">
<link rel="stylesheet" href="../../../static/css/public/footer.css">
<link rel="stylesheet" href="../../../static/css/about/communication.css">
<script src="../../../static/js/include.js"></script>
</head>
<body>
<div id="app">
<!-- 头部导航栏和标题 -->
<div class="head">
<!-- logo -->
<h1><img src="../../../static/imgs/home/logo.png" alt=""></h1>
<!-- 导航栏 -->
<ul>
<span></span>
<li><a href="../index.html" target="_self">HOME</a></li>
<li><a href="../about/about.html" class="red_bold" target="_self">ABOUT US</a></li>
<li><a href="../product/product.html" target="_self">PRODUCT</a></li>
<li><a href="../system/system.html" target="_self">SYSTEM</a></li>
<li><a href="../technology/technology.html" target="_self">TECHNOLOGY</a></li>
<li><a href="../team_lab/t_l_centers.html" target="_self">LABORATORY/TEAM</a></li>
<li><a href="../manu/manu.html" target="_self">MANUFACTURE</a></li>
<li><a href="../contact/contact.html" target="_self">CONTACT US</a></li>
</ul>
<!-- 后方标志 -->
<ol>
<li><img src="../../../static/imgs/home/search.png" alt=""></li>
<li><img src="../../../static/imgs/home/translate.png" alt=""></li>
<li>
<span class="lan_change" data-title="English">EN</span>
<span class="lan_change" data-title="Russian">RU</span>
<span class="lan_change" data-title="Spain">ES</span>
<span class="lan_change" data-title="Chinese">CN</span>
</li>
</ol>
</div>
</div>
<div class="banner">
<div>
<p>ABOUT US</p>
<p>A PIONEER FOR COMPLEX OIL & GASFIELD SERVICE</p>
</div>
<img src="../../../static/imgs/about/pic2.jpg" alt="">
</div>
<!-- 切换地方 -->
<div class="change">
<div class="tab-container">
<!-- 标签页选项卡 -->
<div class="tag">
<div class="main">
<span class="tab_to"></span>
<div class="tab active" onclick="openTab(event,'tab1')">COMPANY PROFILE</div>
<div class="tab" onclick="openTab(event,'tab5')">QUALIFICATION</div>
<div class="tab" onclick="openTab(event,'tab6')">PATENT and R&D</div>
<div class="tab" onclick="openTab(event,'tab2')">HONOR</div>
<div class="tab" onclick="openTab(event,'tab4')">SERVICE AREA</div>
<div class="tab" onclick="openTab(event,'tab3')">CULTURE</div>
<div class="tab" onclick="openTab(event,'tab7')">INTL COMMUNICATION</div>
</div>
</div>
<!-- 标签页内容 -->
<div class="content">
<!-- 企业介绍 -->
<div id="tab1" class="tab-content" style="display:block;">
<div class="out_cont">
<!-- 主要区域一 -->
<div class="fir">
<p class="title">CCDC OVERSEAS DRILLING & COMPLETION FLUID SERVICE PROFILE</p>
<div class="detail">
<p>CNPC Chuanqing Drilling Engineering Co.,
LTD. abbr. CCDC, formerly known as Sichuan
Petroleum Administration, was established
in June 1958 and merged with the former
Changqing Petroleum Exploration Bureau to
form CCDC under CNPC in 2007.
</p>
</div>
<img src="../../../static/imgs/about/pic1.jpg" alt="" class="sys_pic">
</div>
<!-- 主要区域2 -->
<div class="sec">
<img src="../../../static/imgs/about/pic3.jpg" alt="">
<div>
<p class="show" style="height: 517px;">
The company has consistently adhered to an
international development strategy,
proactively addressing challenges posed by
fluctuations in global oil prices, political
and economic instability within project
countries, and complex geological issues
encountered during drilling. Since embarking
on its international drilling & completion
fluid services in 1995, the company has
expanded into 15 countries across five
regions including Central Asia, South Asia,
South America, the Middle East and Africa.
It has also undertaken five international
cooperation projects with globally renowned
oil and gas companies such as SHELL,
CHEVRON and BP. With a strong presence
in Turkmenistan as well as other countries
like Afghanistan, Pakistan and Ecuador for
drilling operations along with integrated
professional technical service that have
enabled it to capture larger market shares;
it has successfully entered new markets
such as Iraq, Iran, Sudan, Peru, Bolivia,
Kyrgyzstan, Congo while demonstrating
comprehensive capabilities for delivering
oil & gas field engineering solutions while
integrating technology services across
various resource-rich nations.
</p>
</div>
</div>
<!-- 主要区域3 -->
<div class="sec">
<div>
<p class="show" style="height: 561px;">
CCDC has successfully accomplished a series of
remarkable projects, including the engineering
and construction of the FUXING Gas Field with
an impressive production capacity of 10 billion
cubic meters. This project stands as a significant
energy collaboration between China and Turkmenistan
at the national level. Currently, our overseas
operations have emerged as a pivotal driving force
in propelling CCDC towards its aspiration to become
an internationally renowned engineering and technical
service enterprise. Among these endeavors, our drilling
& completion fluid service shines brightly as a highly
esteemed overseas technical brand that plays an indispensable
role in providing cutting-edge technical support and services.
The overseas drilling & completion fluid technical service of
CCDC is primarily undertaken by the Drilling and Production
Engineering Technology Research Institute (DPRI), organized
and managed by the International Engineering Company.
The business of drilling & completion fluid in the institute
started in 1965, covering products and technology R&D,
product manufacturing, quality testing, design of drilling
& completion fluid systems, field test, as well as technical
services within the professional fields.
</p>
</div>
<img src="../../../static/imgs/about/pic4.jpg" alt="">
</div>
<!-- 主要区域四 -->
<div class="fou">
<img src="../../../static/imgs/about/pic5.jpg" alt="">
<div class="cun">
<p class="show">
CCDCDF®, affiliated CCDC, is a comprehensive drilling & completion fluid service
company that integrates R&D, manufacturing, testing, application, and service across
the entire chain. Since its inception in 1995 for overseas mud services specifically
tailored to geological characteristics and engineering requirements of different
structures in various regions worldwide; it has developed 16 categories comprising
120 types of chemical products. Additionally establishing two modern chemicals
manufacturing bases with eight production lines capable of producing up to 60k
MTs annually; all certified under ISO 9001, ISO 14001, and ISO 45001 standards.
Furthermore developing 18 sets of proprietary drilling fluid systems such as
AMPOLDRIL®,
INHIBDRIL®, OBMDRIL®, AKUADRIL® along with other advanced drilling fluid systems.
The company prides itself on possessing a comprehensive array of 20 cutting-edge
drilling fluid technologies, including UlTRADEDRIL® for ultra-deep drilling fluid,
BORENHANTEC® for borehole strengthening, HIPRESATEC® for high-pressure brine
treatment,
and LCMENHANTEC® and HIFL-PLUGTEC® for complex loss treatment, etc. Furthermore,
it has developed 2 sets of advanced drilling fluid and hydraulics calculation
software,
established two state-of-the-art R&D centers, three highly skilled technical support
teams,
and six regional laboratories, among those, the DPRI mud lab is CNAS certificated,
which
was accredited in accordance with ISO/IEC 17025 general requirements for the
competence
of testing and calibration, and multiple well-equipped Liquid & Mud Plants (LMP),
and
With a team comprising 1,383 Chinese drilling fluid professionals and 210 foreign
mud engineers,
CCDCDF® is fully capable of providing unparalleled drilling & completion fluid
services
to over 280 domestic and international drilling rigs. <br>
Over the past 60 years, CCDCDF® has provided more than 12,000 wells of
drilling & completion fluid services in Sichuan, Chongqing, Xinjiang,
Changqing, Qinghai, Central Asia, South Asia, South America, the Middle
East, Africa and other regions in China, with an annual average footage
of more than 2 million meters. In recent years, CCDCDF® has achieved
remarkable progresses, including attaining a minimum drilling fluid
density of 0.75g/cm<sup>3</sup> , the highest recorded density of 2.85g/cm<sup>3</sup>, an
impressive well with TD drilled to 9026m, and another well with horizontal
section extended to 5256m. Additionally, they have encountered the highest
bottom hole temperature measured at 240℃ and successfully penetrated through
a salt-gypsum bed measuring 1444m in thickness. Furthermore, they have effectively
tackled over 60 high-pressure saltwater wells with the highest pressure coefficient
up to 2.40. The company boasts an impeccable track record in effectively addressing
severe lost circulation issues in 120 wells, showcasing a mountain of experiences in
drilling operations and mud services for oil and gas reservoirs characterized by the
trifecta of high pressure, high productivity, and high H<sub>2</sub> (3H), as well
as low
permeability,
low pressure, and low productivity (3L). Moreover, they excel in drilling &
completion
operations and services including chemicals& mud service for wells with
characteristics
of high temperature, high pressure, high H<sub>2</sub>S, high CO<sub>2</sub>, high
salinity, high
productivity (6H).<br>
Over the past decade, our company has successfully accomplished a total of
205 national, provincial, and ministerial level scientific and technological
innovation projects. We take great pride in having acquired 65 authorized invention
patents and receiving 50 scientific and technological awards at various levels.
Furthermore, we have been bestowed with 72 accolades from esteemed oil companies
and other stakeholders, including 30 prestigious honorary medals as well as 42
letters of appreciation or gratitude from clients. Our unwavering commitment to
international academic conferences such as ADIPEC, GOTECH, APDTCE, ECF is evident
through the active participation of our drilling fluid experts. Additionally, we
have
published an impressive number of papers (24 in total) in renowned journals like SPE
and
SCI. Moreover, we have fostered extensive technical communications with prominent
oil and
gas companies along with world-renowned drilling fluid contractors such as HLB, SLB,
BHI among others. It is worth mentioning that CCDCDF® has also played an influential
role in academic communications within China's oil & gas engineering technical
fields.
Overall, CCDCDF® stands out as a distinguished professional service company
specializing in
drilling & completion fluid due to its robust research capabilities coupled with
high
technical proficiency, comprehensive product portfolio, exceptional service quality,
innovative mindset, and unwavering determination to overcome challenges.
</p>
<!-- <p class="com_more innerCtn">MORE</p> -->
</div>
</div>
</div>
</div>
<!-- 资质QUALIFICATION -->
<div id="tab5" class="tab-content">
<div class="out_cont">
<div class="fir">
<p class="title">QUALIFICATION</p>
<div class="qulity">
<div><img src="../../../static/imgs/about/shu16.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu17.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu18.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu19.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu20.jpg" alt=""></div>
</div>
</div>
</div>
</div>
<!-- 公司专利 -->
<div id="tab6" class="tab-content">
<div class="out_cont">
<div class="fir">
<p class="title">PATENT and R&D</p>
<div class="qulity">
<div><img src="../../../static/imgs/about/shu22.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu23.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu24.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu25.JPG" alt=""></div>
<div><img src="../../../static/imgs/about/shu26.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu27.png" alt=""></div>
<div><img src="../../../static/imgs/about/shu28.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu29.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/zhuanbu6.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/zhuanbu5.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/zhuanbu4.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/zhuanbu3.png" alt=""></div>
<div><img src="../../../static/imgs/about/zhuanbu2.png" alt=""></div>
<div><img src="../../../static/imgs/about/zhuanbu1.jpg" alt=""></div>
<!-- 证书 -->
<div><img src="../../../static/imgs/about/shu1.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu2.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu3.png" alt=""></div>
<div><img src="../../../static/imgs/about/shu4.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu5.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu6.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu7.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu8.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu9.png" alt=""></div>
<div><img src="../../../static/imgs/about/shu10.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu11.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu12.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu13.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu14.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu15.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/shu30.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/patent1.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/patent2.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/patent3.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/patent4.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/patent5.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/patent6.jpg" alt=""></div>
</div>
</div>
</div>
</div>
<!-- 荣誉区域 -->
<div id="tab2" class="tab-content">
<div class="out_cont">
<div class="fir">
<p class="title">HONORARY AWARDS</p>
<div class="text_cont">
<p class="hor_text">
Over the past decade, our company has successfully accomplished a total of 205
national, provincial,
and ministerial level scientific and technological innovation projects.
We take great pride in having acquired 65 authorized invention patents
and receiving 50 scientific and technological awards at various levels. Furthermore,
we have been bestowed with 72 accolades from esteemed oil companies and other
stakeholders, including 30 prestigious honorary medals as well as 42 letters of
appreciation or gratitude from clients.
</p>
</div>
<div class="project_hor">
<p class="title">PAKISTAN PROJECT</p>
<div class="honor1">
<div><img src="../../../static/imgs/about/ba8.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/ba7.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/ba1.png" alt=""></div>
<div><img src="../../../static/imgs/about/ba2.png" alt=""></div>
<div><img src="../../../static/imgs/about/ba3.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/ba4.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/ba5.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/ba6.jpg" alt=""></div>
</div>
</div>
<div class="project_hor">
<p class="title">TURKMENISTAN PROJECT</p>
<div class="honor1">
<div><img src="../../../static/imgs/about/tu/tu6.png" alt=""></div>
<div><img src="../../../static/imgs/about/tu/tu7.png" alt=""></div>
<div><img src="../../../static/imgs/about/tu/tu8.png" alt=""></div>
<div><img src="../../../static/imgs/about/tu/tu9.png" alt=""></div>
<div><img src="../../../static/imgs/about/tu/tu5.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/tu/tu10.png" alt=""></div>
<div><img src="../../../static/imgs/about/tu/tu4.png" alt=""></div>
<div><img src="../../../static/imgs/about/tu/tu1.jpg" alt=""></div>
</div>
</div>
<div class="project_hor">
<p class="title">ECUADOR PROJECT</p>
<div class="honor1">
<div><img src="../../../static/imgs/about/egua/eg3.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg12.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg4.png" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg5.png" alt=""></div>
</div>
<div class="honor2">
<div><img src="../../../static/imgs/about/egua/eg11.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg13.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg14.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg1.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg2.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg7.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg8.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg9.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/egua/eg10.jpg" alt=""></div>
</div>
</div>
<div class="project_hor">
<p class="title">OTHER PROJECT</p>
<div class="honor1">
<div><img src="../../../static/imgs/about/other_project/other4.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/other_project/other5.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/other_project/other1.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/other_project/other2.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/other_project/other3.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/other_project/other6.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/other_project/other7.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/other_project/other8.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/other_project/other9.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/other_project/other10.jpg" alt=""></div>
</div>
</div>
<!-- <div class="honor2">
<div><img src="../../static/imgs/about/heng1.jpg" alt=""></div>
<div><img src="../../static/imgs/about/heng2.jpg" alt=""></div>
<div><img src="../../static/imgs/about/heng3.jpg" alt=""></div>
<div><img src="../../static/imgs/about/heng4.jpg" alt=""></div>
<div><img src="../../static/imgs/about/heng5.jpg" alt=""></div>
<div><img src="../../static/imgs/about/heng6.jpg" alt=""></div>
<div><img src="../../static/imgs/about/heng7.jpg" alt=""></div>
<div><img src="../../static/imgs/about/heng8.jpg" alt=""></div>
</div> -->
</div>
</div>
</div>
<!-- 企业文化 -->
<div id="tab3" class="tab-content">
<include src="./culture.html"></include>
</div>
<!-- 服务区域 -->
<div id="tab4" class="tab-content">
<div class="out_cont">
<div class="fir">
<div class="head">
<p class="title service1">SERVICE AREA</p>
<p class="title service2" style="display: none;">INTERNATIONAL COOPERATION PROJECTS</p>
<div class="right_two">
<div class="two_new clearfix">
<ul class="clearfix lf rz_query_right_header">
<li class="two_active lf " data-value="1">INTERNATIONAL</li>
<li class="lf " data-value="2">CHINA</li>
</ul>
</div>
</div>
</div>
<!-- region -->
<!-- <div class="article_content first_lc">
<div class="region">
<img src="../../static/imgs/about/map_bg.png" class="map">
</div>
</div> -->
<!-- projects -->
<div class="article_content two_lc" style="display: none;">
<div class="p_one">
<p class="one_fir">
including cooperation with internationally
renowned oil and gas companies such as Shell
and Chevron in the field of drilling and completion
fluids in China
</p>
</div>
<div class="p_pic">
<a href="#">
<img src="../../../static/imgs/about/in6.jpg" alt="">
</a>
<div class="p_text">
<div class="lef">
<p class="top">SHELL SICHUAN SHALE GAS PROJECT</p>
<p class="center">
From 2011 to 2014, we provided on-site technical services for
polymer water-based drilling fluids and synthetic drilling
fluids for over 30 wells. The upper well section adopts water-based
drilling fluid technology with high environmental acceptance and
biodegradability, combined with the use of barite recovery system
to remove medium and low density solids, achieving efficient utilization
of drilling fluid. The lower section adopts synthetic drilling fluid
technology to under balance or balance drilling with lower drilling
fluid density, which is conducive to timely discovery of reservoirs
and protection of oil and gas reservoirs. The first batch of onshore
oil based drilling fluid recovery and treatment plants (Shehong Mud
Station) of PetroChina have been built, achieving full reuse of oil
based drilling fluids and achieving the HSE goal of "non-emissions
and non-pollution".
</p>
<!-- <p class="com_more innerCtn1 wid1">MORE</p> -->
</div>
</div>
</div>
<div class="p_pic">
<a href="#">
<img src="../../../static/imgs/about/in8.jpg" alt="">
</a>
<div class="p_text">
<div class="lef">
<p class="top">SHELL CHANGBEI PROJECT</p>
<p class="center">
Using KCL polymer system and CQ-NDW/NWP soil free low damage drilling
fluid technology, 59 dual branch horizontal well drilling fluid
technologies were successfully completed from 2005 to 2023. Among
them, CQ-NWP soil free waterproof lock low damage drilling fluid
system, which suppresses collapse, lubricates, and prevents reservoir
water lock, has excellent reservoir protection performance, significant
production increase effect, and achieves the goal of efficiently
protecting
low permeability oil and gas reservoirs, Open hole completion and direct
gas lift production, with 24 wells producing over 100 per well ×
10<sup style="font-size: 12px;">4</sup>m³/d,
with significant reservoir protection effect, helping the project achieve
its production target of 3 billion cubic meters per year two years ahead
of schedule. ETI's drilling fluid services have been highly recognized
by Shell, establishing the "ETI MUD" brand and becoming Shell China's
preferred reverse contracting option in China.
</p>
<!-- <p class="com_more innerCtn2 wid1">MORE</p> -->
</div>
</div>
</div>
<div class="p_pic">
<a href="#">
<img src="../../../static/imgs/about/in3.jpg" alt="">
</a>
<div class="p_text">
<div class="lef">
<p class="top">CHEVRON LUOJIAZHAI PROJECT</p>
<p class="center">
Using harmless well killing fluid technology and clean salt water
and filtration technology, successfully completed 5 well workover
fluid and filtration technology services from 2012 to 2013, including
well site A of Chevron Longchuan Northeast Project. 390 cubic meters
of sodium bromide saline working fluid and 737 cubic meters of harmless
well killing fluid (NDKF) were successfully recovered, saving over 4.8
million yuan in the preparation cost of workover fluid, achieving the
goal of safe completion, and achieving significant environmental
protection
effects.
</p>
<!-- <p class="com_more innerCtn3 wid1">MORE</p> -->
</div>
</div>
</div>
<div class="p_pic">
<a href="#">
<img src="../../../static/imgs/about/in7.jpg" alt="">
</a>
<div class="p_text">
<div class="lef">
<p class="top">THE SICHUAN PROJECT OF EMPEROR ENERGY</p>
<p class="center">
From 2007 to 2008, the YX1 and YX2 wells of Yixin 1 and
Yixin 2 in Sichuan were successfully drilled to 4045m and
4165m respectively, with the highest density of drilling
fluid used reaching 2.45g/cm³, setting a record for the
highest density of polymer drilling fluid. After completing
the drilling and cementing of YX1 well, due to measures
taken by Party A, the density of 2.20g/m³ polymer mud
remained stable at the bottom of the well for a month,
ensuring the smooth progress of Party A's next operation.
</p>
<!-- <p class="com_more innerCtn3 wid1">MORE</p> -->
</div>
</div>
</div>
<div class="p_pic">
<a href="#">
<img src="../../../static/imgs/about/in5.jpg" alt="">
</a>
<div class="p_text">
<div class="lef">
<p class="top">DOMESTIC COMPLEX BLOCKS</p>
<p class="center">
Covering Tarim Oilfield, Southwest Oil and Gas Field, Changqing
Oilfield,
and shale gas tight gas blocks in Sichuan Chongqing region.
</p>
</div>
</div>
</div>
<div class="p_pic">
<a href="#">
<img src="../../../static/imgs/about/in4.jpg" alt="">
</a>
<div class="p_text">
<div class="lef">
<p class="top">TARIM AND SICHUAN CHONGQING ULTRA DEEP WELL DRILLING FLUID
PROJECTS</p>
<p class="center">
Including drilling fluid completion fluid services for deep wells,
ultra deep wells, and complex wells in Tarim Oilfield, Southwest
Oil and Gas Field, Changqing Oilfield, and Sichuan Chongqing area
shale gas tight gas blocks. In 1998, it completed the "Asia's First
Deep Well" (Tacan 1 Well at 7200 meters), in 2006, it was drilled
into the "Asia's First Deep Well" (Tashen 1 Well at 8408 meters),
in 2007, it was drilled into the "China Petroleum First Deep Well"
(Fenshui 1 Well at 7353.84 meters), and in 2008, it was drilled
into the "longest small hole section in China" (Jianmen 1 Well at
7009 meters, with a small hole section of 2006 meters), winning
the first prize for bureau level scientific and technological
progress, helping to push the drilling fluid technology of ultra
deep wells in China to a new level.
</p>
<!-- <p class="com_more innerCtn3 wid1">MORE</p> -->
</div>
</div>
</div>
<div class="p_pic">
<a href="#">
<img src="../../../static/imgs/about/projects3.jpg" alt="">
</a>
<div class="p_text">
<div class="lef">
<p class="top">SICHUAN CHONGQING UNCONVENTIONAL GAS DRILLING FLUID PROJECT
</p>
<p class="center">
The first trial of domestically produced oil-based drilling fluid
(with a temperature resistance of 180℃) in Well H3-1 in
Weiyuan was successful, completely breaking the technological
monopoly of foreign companies. Build an integrated service model
that integrates "drilling fluid, drilling cuttings treatment, and
recycling", promote the application of over 100 wells in Sichuan
Chongqing shale gas, tight gas, and other regions, and help
drilling set multiple new indicators and records. High performance
water-based drilling fluid INHIBDRIL® The first test of Well Yang
102H34-1 was successful, and 88 wells were promoted and applied in
unconventional gas areas such as Sichuan Chongqing and Changqing,
achieving dual economic and environmental benefits.
</p>
<!-- <p class="com_more innerCtn3 wid1">MORE</p> -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="article_content first_lc">
<div class="region">
<img src="../../../static/imgs/about/map_bg.png" class="map">
<img src="../../../static/imgs/about/eguaduoer.png" alt="Ecuador" id="175" class="egua area">
<img src="../../../static/imgs/about/nirier.png" alt="Niger" id="180" class="nirier area">
<img src="../../../static/imgs/about/sudan.png" alt="sultan" id="179" class="sudan area">
<img src="../../../static/imgs/about/wuganda.png" alt="Uganda" id="181" class="wuganda area">
<img src="../../../static/imgs/about/yilake.png" alt="Iraq" id="178" class="yilake area">
<img src="../../../static/imgs/about/yillang.png" alt="Iran" id="177" class="yilang area">
<img src="../../../static/imgs/about/tukuman.png" alt="Turkmenistan" id="146" class="tukuman area">
<img src="../../../static/imgs/about/wuzi.png" alt="Uzbekistan" id="171" class="wuzi area">
<img src="../../../static/imgs/about/hasake.png" alt="Kazakhstan" id="170" class="hasake area">
<img src="../../../static/imgs/about/afuhan.png" alt="Afghanistan" id="174" class="afuhan area">
<img src="../../../static/imgs/about/bajisitan.png" alt="Pakistan" id="173" class="bajisitan area">
<img src="../../../static/imgs/about/yidunixiya.png" alt="Indonesia" id="172" class="yidunixiya area">
<img src="../../../static/imgs/about/zhade.png" alt="Chad" id="288" class="zhade area">
<img src="../../../static/imgs/about/milu.png" alt="Peru" id="176" class="milu area">
<img src="../../../static/imgs/about/boliweiya.png" alt="Bolivia" id="289" class="boliweiya area">
</div>
<div class="detail_cont">
<!-- <img src="../../static/imgs/about/meeting.png" class="kuang" alt="">
<p class="area_name">THE TURKMENISTAN</p>
<p class="pro_time">April 2007 to now</p>
<div class="area_detail">
<img src="../../static/imgs/about/map_img/tukjumansitan.jpg" class="area_img" alt="">
<p class="text">
Project is scheduled from April 2007 to the present.
The drilling and completion fluid service business
covers five oil and gas companies which are including
Amu Darya Natural Gas Company CNPCI, Natural Gas Konzern
TURKMENGGAS STATE CONCERN, Oil Konzern TURKMENNEBIT STATE
CONCERN, Geological Company TURKMENGEOLOGY STATE CORPORATION,
and Italian Eni Company ENI, including the Geological
Company South Yolotan "10+2" drilling general contracting
project, the Natural Gas Konzern Renaissance Gas Field Phase
I 10 billion production capacity turnkey (EPC) project The
drilling and completion fluid business includes the 5500
meters exploratory well drilling general contracting project
of the geological company Naganaqi Gas Field, the first to
fifth round drilling general contracting project of the.
</p>
</div> -->
</div>
</div>
</div>
<!-- 学术交流 -->
<div id="tab7" class="tab-content">
<div class="out_cont">
<!-- 主要区域一 -->
<div class="fir">
<div class="detail">
<p>
Our unwavering commitment to international academic conferences such as ADIPEC,
GOTECH, APDTCE, ECF is evident through the active participation of our drilling
fluid experts. Additionally, we have published an impressive number of papers (24 in
total) in renowned journals like SPE and SCI. Moreover, we have fostered extensive
technical communications with prominent oil and gas companies along with
world-renowned drilling fluid contractors such as HLB, SLB, BHI among others. It is
worth mentioning that CCDCDF® has also played an influential role in academic
communications within China's oil & gas engineering technical fields.
</p>
</div>
<div class="rig_swiper sys_pic">
<div class="swiper2">
<div class="swiper Swiper1">
<div class="swiper-wrapper">
<div class="swiper-slide"><img
src="../../../static/imgs/about/communication_detail/swiper3.jpg"
alt=""></div>
<div class="swiper-slide"><img
src="../../../static/imgs/about/communication_detail/swiper5.jpg"
alt=""></div>
<div class="swiper-slide"><img
src="../../../static/imgs/about/communication_detail/swiper2.jpg"
alt=""></div>
<div class="swiper-slide"><img
src="../../../static/imgs/about/communication_detail/swiper7.jpg"
alt=""></div>
<div class="swiper-slide"><img
src="../../../static/imgs/about/communication_detail/swiper4.jpg"
alt=""></div>
<div class="swiper-slide"><img
src="../../../static/imgs/about/communication_detail/swiper6.jpg"
alt=""></div>
<div class="swiper-slide"><img
src="../../../static/imgs/about/communication_detail/swiper8.jpg"
alt=""></div>
<div class="swiper-slide"><img
src="../../../static/imgs/about/communication_detail/swiper9.jpg"
alt=""></div>
</div>
<div class="swiper-pagination" style="bottom: 30px;"></div>
</div>
</div>
</div>
<p class="title">INTERNATIONAL COMMUNICATION</p>
</div>
<!-- 主要区域2 -->
<div class="sec">
<img src="../../../static/imgs/about/communication_detail/1.jpg" alt="">
<div>
<p class="show">
CCDCDF® attach great importance to international academic and technical
communication. In recent years, we have organized mud experts to participate in “Abu
Dhabi Interactional Petroleum Exhibition & Conference 21ADIPEC,23ADIPEC”, “Gas and
Oil Technology Exhibition & Conference Hub 2018GOTECH,2021GOTECH”,“Asia Pacific Drilling Technology Conference and Exhibition 2012APDTCE”, The 6th
ECF International Shale Gas Forum “ENERGYCHINAFORUM”,In 2007, we participated in
international academic conferences such as "Drilling Technology Seminar" organized
by Kazakhstan CNPC Akigibin Oil and Gas Co., LTD, and actively published in
international academic journals such as "SPE Journal" and "JPT" (Journal of
Petroleum Technology) paper. A total of 24 papers were published in SPE, SCI and
technical communication conferences.
</p>
</div>
</div>
<!-- 主要区域3 -->
<div class="sec">
<div>
<p class="show" style="height: 388px;">
Based on the needs of the host country's projects, a large number of technical
communication activities have also been organized, including with Pakistani oil and
gas companies such as OGDCL, PPL, POL, MOL, POGC, OPI and MPCL, Turkmenistan's oil
and gas companies Turkmengeology State Corporation, Turkmennebit State Concern and
Turkmengas State Concern , Ecuador Andes Petroleum Company, Rio Napo Company, PAM
National Oil Company and National Iranian Oil Co (NIOC), Iraq Rumaila Operating
Organization (ROO), Halfaya Oil Field and Missan Oil Company (MOC), Ahdeb
Oilfield.In addition, conducted a large number of technical exchanges with
world-renowned drilling fluid service contractors such as Halliburton, Schlumberger
and Baker Hughes, as well as partners in project countries.
</p>
</div>
<img src="../../../static/imgs/about/communication_detail/2.jpg" alt="">
</div>
<!-- 主要区域四 -->
<div class="fou">
<div class="cun">
<p class="show" style="height: 260px;">
CCDCDF® is also very active in academic communications within China. A large number
of professional and technical personnel were selected to participate in the previous
"National Drilling Fluid and Completion Fluid Technology Communicate Seminars",
"Future-oriented Wellbore Working Fluid Technology Innovation Forum", "Petroleum
Engineering There have been hundreds of academic and technical seminars such as the
“Drilling Fluid and Completion Fluid New Technology Seminar”, the “National
Environmentally Friendly Drilling Fluid and Drilling Waste Treatment Technology
Seminar” and the “China National Petroleum Corporation Institute Directors’Meeting”.
There are lots of outstanding Papers were awarded.
</p>
<!-- <p class="com_more innerCtn">MORE</p> -->
</div>
<img src="../../../static/imgs/about/communication_detail/fou.jpg" style="margin-top: 20px;"
alt="">
</div>
<p class="title" style="margin-top: 60px;">Partial papers published as follows</p>
<img src="../../../static/imgs/about/communication_detail/com_1.jpg"
style="width: 100%; margin-top: 20px;" alt="">
<div class="honor2" >
<div><img src="../../../static/imgs/about/communication_detail/comunication1.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/communication_detail/comunication2.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/communication_detail/comunication3.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/communication_detail/comunication4.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/communication_detail/comunication5.jpg" alt=""></div>
<div><img src="../../../static/imgs/about/communication_detail/comunication6.jpg" alt=""></div>
<!-- <div><img src="../../static/imgs/about/egua/eg8.jpg" alt=""></div>
<div><img src="../../static/imgs/about/egua/eg9.jpg" alt=""></div>
<div><img src="../../static/imgs/about/egua/eg10.jpg" alt=""></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 尾部区域 -->
<div class="fot">
<!-- 尾部列表区域 -->
<div class="all_ul">
<div class="ul1">
<span>PRODUCT</span>
<ul>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/product/product_type.html?data=35&title=SECTION8">DRILDETER<sup>® </sup></a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/product/product_type.html?data=37&title=SECTION8_SERIES">DRILDETER<sup>® </sup> ABB PLUS</a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/product/product_type.html?data=36&title=SECTION8_SERIES">DRILDETER<sup>® </sup> ABB</a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/product/product_type.html?data=36&title=SECTION9">FOAMDRIL<sup>® </sup></a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/product/product_type.html?data=37&title=SECTION10">GERMCI<sup>® </sup></a>
</li>
</ul>
</div>
<div class="ul1">
<span>SYSTEM</span>
<ul>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/system/system_detail.html?data=121">AMPOLDRIL<sup>® </sup> Amphoteric <br> Polymer Drilling Flui</a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/system/system_detail.html?data=122">SOLITOLERDRIL<sup>® </sup> High Solid-Tolerated <br> Water-Based Drilling Fluid System</a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/system/system_detail.html?data=123">INHIBDRIL<sup>® </sup> High performance <br> water-based drilling fluid system</a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/system/system_detail.html?data=126">AKUAFAST<sup>® </sup> Fast Drilling Environmental <br> Protection Drilling Fluid System</a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/system/system_detail.html?data=127">AKUADRIL<sup>® </sup> Anti-Collapse and Environmental <br> Protection Drilling Fluid System</a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/system/system_detail.html?data=128">AKUASEAL<sup>® </sup> Low Harm Environmental <br> Protection Drilling Fluid System</a>
</li>
</ul>
</div>
<div class="ul1">
<span>TECHNOLOGY</span>
<ul>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/technology/technology_detail.html?data=124">LONGLARTEC<sup>® </sup>Drilling Fluid Technology <br> for Long Section with Large Size</a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/technology/technology_detail.html?data=139">HIPRESATEC<sup>® </sup>A Special Controling <br> Technology for Salt Water with Hgh Pressure</a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/technology/technology_detail.html?data=140">BORENHANTEC<sup>® </sup>Wellbore Strengthening <br> Technology</a>
</li>
<li>
<a href="http://www.ccdcdf.com:6080/pc/app/pages/English/technology/technology_detail.html?data=141">HIFL-PLUGTEC<sup>® </sup>High Fluid-Loss Curing and <br> Plugging Technology</a>
</li>
</ul>
</div>
<div class="ul1">
<span>LABORATORY/TEAM</span>
<ul>
<li><a href="http://www.ccdcdf.com:6080/pc/app/pages/English/team_lab/t_l_centers.html">R&D centers</a></li>
<li><a href="http://www.ccdcdf.com:6080/pc/app/pages/English/team_lab/t_l_lab.html">LABORATORY</a></li>
<li><a href="http://www.ccdcdf.com:6080/pc/app/pages/English/team_lab/t_l_team.html">SERVICE TEAM</a></li>
<li><a href="http://www.ccdcdf.com:6080/pc/app/pages/English/team_lab/t_l_station.html">LIQUID MUD PLANTS</a></li>
<!-- <li>Academic exchange</li> -->
</ul>
</div>
<div class="ul1">
<span>MANUFACTURE</span>
<ul>
<li><a href="http://www.ccdcdf.com:6080/pc/app/pages/English/manu/manu.html">Production base</a></li>
<li><a href="http://www.ccdcdf.com:6080/pc/app/pages/English/manu/manu.html">Workshop</a></li>
<li><a href="http://www.ccdcdf.com:6080/pc/app/pages/English/manu/manu.html">Quality Inspection Laboratory</a></li>
<li><a href="http://www.ccdcdf.com:6080/pc/app/pages/English/manu/manu.html">Warehouse</a></li>
</ul>
</div>
<div class="ul1">
<span>CONTACT US</span>
<ul>
<li>Tel: +86-028-86011661</li>
<li>Fax: +86-028-86013997</li>
<li>Emal: cqswc@cnpc.com.cn</li>
<li>No. 6, Meng Zhui Wan St <br> Chengdu, P. R .China</li>
</ul>
</div>
</div>
<!-- 尾部logo区域 -->
<div class="bot_logo">
<div class="logo_text">
<div class="lef">
<img src="../../../static/imgs/logowhite.png" alt="">
<!-- <span>©2023 这里有文字这里有文字</span> -->
</div>
<p>ICP备20230200号-1</p>
</div>
</div>
</div>
</body>
<script>
//切换50
function openTab(event, tabName) {
// 获取所有标签页内容元素
var tabContent = document.getElementsByClassName("tab-content");
// 隐藏所有标签页内容
for (var i = 0; i < tabContent.length; i++) {
tabContent[i].style.display = "none";
}
// 移除所有标签页选项卡的 active 类
var tabs = document.getElementsByClassName("tab");
for (var i = 0; i < tabs.length; i++) {
tabs[i].className = tabs[i].className.replace(" active", "");
}
// 显示当前选中标签页内容
document.getElementById(tabName).style.display = "block";
// 添加 active 类到当前选中标签页选项卡
event.currentTarget.className += " active";
}
// 显示隐藏部分
$(function () {//显示三行 多余隐藏 点击展开
$('.innerCtn1').click(function () {
$('.show').removeClass('out');
$('.innerCtn1').css("display", "none")
});
$('.innerCtn2').click(function () {
$('.show').removeClass('out');
$('.innerCtn2').css("display", "none")
});
$('.innerCtn3').click(function () {
$('.show').removeClass('out');
$('.innerCtn3').css("display", "none")
});
});
// 服务区域切换
$(".rz_query_right_header li").on('click', function () {
var type = $(this).attr("data-value");
console.log(type)
$(this).addClass('two_active').siblings().removeClass('two_active');
if (type == "1") {
$(".first_lc").toggle();
$(".two_lc").toggle();
$(".service1").toggle();
$(".service2").toggle();
} else {
$(".two_lc").toggle();
$(".first_lc").toggle();
$(".service2").toggle();
$(".service1").toggle();
}
})
$('.tab').click(function () {
let left_distance = $(this).position().left + 16 + $(this).width() / 2 - 20
$('.tab_to').css("left", left_distance)
})
</script>
<link rel="stylesheet" href="../../../../node_modules/swiper/swiper-bundle.min.css">
<script src="../../../../node_modules/swiper/swiper-bundle.min.js"></script>
<script>
var swiper = new Swiper('.Swiper1', {
loop: true,
autoplay: {
delay: 2000,
},
pagination: {
el: ".swiper-pagination",
clickable: true,
}
})
</script>
<!-- 点击显示地区详情 -->
<script src="../../../static/js/area.js"></script>
</html>