culture.html 6.93 KB
<!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>