culture.html
6.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="../../../static/css/about/culture.css">
</head>
<body>
<div class="cont">
<!-- OUR VISION -->
<div class="vision">
<div class="vision_text">
<p class="title">VISION</p>
<P class="text">
To Become a World-Class Integrated International Energy Company Built To Last.
</P>
</div>
<img src="../../../static/imgs/about/culture/vision.jpg" alt="">
</div>
<!-- Our Strategies -->
<div class="strategies">
<div class="strategies_text">
<p class="title">STRATEGIES</p>
</div>
<div class="img_cont">
<div>
<img src="../../../static/imgs/about/culture/strategies1.jpg" alt="">
<p>Innovation</p>
</div>
<div>
<img src="../../../static/imgs/about/culture/strategies2.jpg" alt="">
<p>Resource</p>
</div>
<div>
<img src="../../../static/imgs/about/culture/strategies3.jpg" alt="">
<p>Market</p>
</div>
<div>
<img src="../../../static/imgs/about/culture/strategies4.jpg" alt="">
<p>Internationalization</p>
</div>
<div>
<img src="../../../static/imgs/about/culture/strategies5.jpg" alt="">
<p>Green & Low Carbon</p>
</div>
</div>
</div>
<!-- Our Values -->
<div class="values">
<div class="values_text">
<p class="title">VALUES</p>
</div>
<div class="img_cont">
<div>
<img src="../../../static/imgs/about/culture/values1.jpg" alt="">
<p>Pursuing Green Development and Providing Reliable Energy</p>
</div>
<div>
<img src="../../../static/imgs/about/culture/values2.jpg" alt="">
<p>Supply to Fuel Our Customers' Growth and Power People's Happy Life</p>
</div>
</div>
</div>
<!-- CHUANQING SPIRIT -->
<div class="values">
<div class="values_text">
<p class="title">CHUANQING SPIRIT</p>
</div>
<div class="img_cont">
<div>
<img src="../../../static/imgs/about/culture/spirit1.jpg" alt="">
<p>Tackle challenges & problems</p>
</div>
<div>
<img src="../../../static/imgs/about/culture/spirit2.jpg" alt="">
<p>Dare to be the first</p>
</div>
</div>
</div>
<!-- COOPERATION -->
<div class="cooperation">
<div class="cooperation_text">
<p class="title">CONCEPT OF INTERNATIONAL COOPERATION</p>
<P class="text">
Mutual benefit and win-win cooperation
</P>
</div>
<img src="../../../static/imgs/about/culture/cooperation.jpg" alt="">
</div>
<!-- Quality, health, safety and environmental -->
<div class="six">
<div class="six_text">
<p class="title">QUALITY, HEALTH, SAFETY AND ENVIRONMENTAL PROTECTION CONCEPT</p>
</div>
<div class="img_cont">
<div>
<img src="../../../static/imgs/about/culture/six1.jpg" alt="">
<p>People-oriented</p>
</div>
<div>
<img src="../../../static/imgs/about/culture/six2.jpg" alt="">
<p>Quality First</p>
</div>
<div>
<img src="../../../static/imgs/about/culture/six3.jpg" alt="">
<p>Safety first</p>
</div>
<div>
<img src="../../../static/imgs/about/culture/six4.jpg" alt="">
<p>Environmental protection first</p>
</div>
</div>
</div>
<!-- 7.A pioneer for Complex Oil & Gasfield Service -->
<div class="seven">
<div class="seven_text">
<p class="title">A PIONEER FOR COMPLEX OIL & GASFIELD SERVICE</p>
</div>
<div class="img_cont">
<div>
<img src="../../../static/imgs/about/culture/seven.jpg" alt="">
</div>
</div>
</div>
<!-- Social Responsibility -->
<div class="eight">
<p class="title">SOCIAL RESPONSIBILITY</p>
<div class="img_text">
<div class="content">
<img src="../../../static/imgs/about/culture/eight1.jpg" alt="">
<p style="text-align: justify;">
In the summer of 2022, the huge flood in Pakistan caused 1061 people killed and More than 1,575 people were injured. As a responsible enterprise, Pakistan Branch actively contributed to Chuanqing's power in the local flood relief.
</p>
</div>
<div class="content" style="margin-top: 20px;">
<img src="../../../static/imgs/about/culture/eight2.jpg" alt="">
<p>
Pakistan Branch participated in the local locust plague donation activity.
</p>
</div>
<div class="content" style="margin-top: 20px;">
<img src="../../../static/imgs/about/culture/eight3.jpg" alt="">
<p>
CCDC Turkmenstan Branch repairing 30Km road for local residents.
</p>
</div>
<div class="content" style="margin-top: 20px;">
<img src="../../../static/imgs/about/culture/eight4.jpg" style="height: 481px !important;" alt="">
<p>
Mud engineers from Peru Project extended greetings to the local kindergarten on Children's Day.
</p>
</div>
</div>
</div>
</div>
</body>
<script>
function convertToSuperscript(str) {
var regex = /[!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?]+/; // 定义特殊符号的正则表达式
if (regex.test(str)) {
return str.replace(/([!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?])/g, '<sup>$1</sup>'); // 使用正则表达式全局替换特殊符号并添加上标样式
} else {
return str;
}
}
var inputStr = "Hello World!";
console.log(convertToSuperscript(inputStr));
</script>
</html>