{"id":41,"date":"2021-12-20T06:54:41","date_gmt":"2021-12-20T06:54:41","guid":{"rendered":"https:\/\/mi-technovation.com\/cn\/?page_id=41"},"modified":"2025-05-28T04:02:29","modified_gmt":"2025-05-28T04:02:29","slug":"esg-commitments","status":"publish","type":"page","link":"https:\/\/mi-technovation.com\/cn\/esg-commitments\/","title":{"rendered":"\u73af\u5883\u3001\u793e\u4f1a\u8d23\u4efb\u3001\u4f01\u4e1a\u6cbb\u7406\u548c\u6c38\u7eed\u8425\u8fd0"},"content":{"rendered":"<div id=\"pl-41\"  class=\"panel-layout\" ><div id=\"pg-41-0\"  class=\"panel-grid panel-no-style\" ><div id=\"pgc-41-0-0\"  class=\"panel-grid-cell\" ><div id=\"panel-41-0-0-0\" class=\"widget_text so-panel widget widget_custom_html panel-first-child panel-last-child\" data-index=\"0\" ><div class=\"textwidget custom-html-widget\"><a name=\"enviroment\"><\/a><\/div><\/div><\/div><\/div><div id=\"pg-41-1\"  class=\"panel-grid panel-no-style\" ><div id=\"pgc-41-1-0\"  class=\"panel-grid-cell panel-grid-cell-empty\" ><\/div><div id=\"pgc-41-1-1\"  class=\"panel-grid-cell panel-grid-cell-mobile-last\" ><div id=\"panel-41-1-1-0\" class=\"so-panel widget widget_text panel-first-child panel-last-child\" data-index=\"1\" >\t\t\t<div class=\"textwidget\"><h3 style=\"text-align: center;\">\u6c38\u7eed\u4eea\u8868\u677f<\/h3>\n<\/div>\n\t\t<\/div><\/div><div id=\"pgc-41-1-2\"  class=\"panel-grid-cell panel-grid-cell-empty\" ><\/div><\/div><div id=\"pg-41-2\"  class=\"panel-grid panel-no-style\" ><div id=\"pgc-41-2-0\"  class=\"panel-grid-cell panel-grid-cell-empty\" ><\/div><div id=\"pgc-41-2-1\"  class=\"panel-grid-cell panel-grid-cell-mobile-last\" ><div id=\"panel-41-2-1-0\" class=\"widget_text so-panel widget widget_custom_html panel-first-child panel-last-child\" data-index=\"2\" ><div class=\"textwidget custom-html-widget\">\t\t<script src=\"https:\/\/kit.fontawesome.com\/12b8ae151b.js\" crossorigin=\"anonymous\"><\/script>\n    <title>Image Slider with Dots and Arrows<\/title>\n    <style>\n        .slider-container {\n            max-width: 1000px;\n            margin: auto;\n            overflow: hidden;\n            position: relative;\n        }\n        .slider-wrapper {\n            display: flex;\n            transition: transform 0.5s ease-in-out;\n        }\n        .slider-image {\n            width: 100%;\n            flex-shrink: 0;\n        }\n        .dot-container {\n            text-align: center;\n        }\n        .dot {\n            height: 10px;\n            width: 10px;\n            margin: 0 5px;\n            background-color: #ddd;\n            border-radius: 50%;\n            display: inline-block;\n            transition: background-color 0.6s ease;\n            cursor: pointer;\n        }\n        .dot.active {\n            background-color: #717171;\n        }\n        .arrow {\n            position: absolute;\n            top: 50%;\n            transform: translateY(-50%);\n            width: 25px;\n            height: 90px;\n            background-color: rgba(0, 0, 0, 0.1);\n            color: rgba(0, 0, 0, 0.1);\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 24px;\n            cursor: pointer;\n            transition: background-color 0.3s ease;\n            user-select: none;\n            margin: 0 0 0 10px;\n            border-radius:5px;\n        }\n        .arrow:hover {\n            background-color: rgba(0, 0, 0, 0.2);\n            color: rgba(0, 0, 0, 0.2);\n        }\n        .arrow-left {\n            left: 15px;\n\t\t\t\t\t\tpadding-left: 5px;\n        }\n        .arrow-right {\n            right: 15px;\n\t\t\t\t\t\tpadding-right: 5px;\n        }\n        .arrow.hidden {\n            display: none;\n        }\n    <\/style>\n    <div class=\"slider-container\">\n        <div class=\"slider-wrapper\">\n\t\t\t\t<img decoding=\"async\" src=\"https:\/\/mi-technovation.com\/cn\/wp-content\/uploads\/2025\/05\/\u6c38\u7eed\u4eea\u8868\u677f_2024_CN_1.png\" alt=\"\u6c38\u7eed\u4eea\u8868\u677f 2024\" class=\"slider-image active\">\n        <img decoding=\"async\" src=\"https:\/\/mi-technovation.com\/cn\/wp-content\/uploads\/2023\/08\/\u6c38\u7eed\u4eea\u8868\u677f2.jpg\" alt=\"\u6c38\u7eed\u4eea\u8868\u677f 2022\" class=\"slider-image\">\n        <\/div>\n        <div class=\"arrow arrow-left hidden\" onclick=\"navigate(-1)\"><i class=\"fas fa-chevron-left\"><\/i><\/div>\n        <div class=\"arrow arrow-right\" onclick=\"navigate(1)\"><i class=\"fas fa-chevron-right\"><\/i><\/div>\n    <\/div>\n    <div class=\"dot-container\">\n        <span class=\"dot active\" onclick=\"currentSlide(0)\"><\/span>\n        <span class=\"dot\" onclick=\"currentSlide(1)\"><\/span>\n    <\/div>\n\n    <script>\n        const sliderWrapper = document.querySelector('.slider-wrapper');\n        const dots = document.querySelectorAll('.dot');\n        const leftArrow = document.querySelector('.arrow-left');\n        const rightArrow = document.querySelector('.arrow-right');\n        let currentIndex = 0;\n        const totalSlides = dots.length;\n\n        function currentSlide(n) {\n            showSlide(n);\n        }\n\n        function navigate(direction) {\n            showSlide(currentIndex + direction);\n        }\n\n        function showSlide(index) {\n            if (index < 0 || index >= totalSlides) return;\n            \n            currentIndex = index;\n            sliderWrapper.style.transform = `translateX(-${index * 100}%)`;\n            \n            dots.forEach((dot, i) => {\n                dot.classList.toggle('active', i === index);\n            });\n\n            updateArrowVisibility();\n        }\n\n        function updateArrowVisibility() {\n            leftArrow.classList.toggle('hidden', currentIndex === 0);\n            rightArrow.classList.toggle('hidden', currentIndex === totalSlides - 1);\n        }\n\n        \/\/ Initialize arrow visibility\n        updateArrowVisibility();\n    <\/script>\n<\/div><\/div><\/div><div id=\"pgc-41-2-2\"  class=\"panel-grid-cell panel-grid-cell-empty\" ><\/div><\/div><div id=\"pg-41-3\"  class=\"panel-grid panel-no-style\" ><div id=\"pgc-41-3-0\"  class=\"panel-grid-cell\" ><div id=\"panel-41-3-0-0\" class=\"widget_text so-panel widget widget_custom_html panel-first-child panel-last-child\" data-index=\"3\" ><div class=\"textwidget custom-html-widget\"><a name=\"core\"><\/a>\n<p>\n\t&nbsp;<\/p>\n<\/div><\/div><\/div><\/div><div id=\"pg-41-4\"  class=\"panel-grid panel-no-style\" ><div id=\"pgc-41-4-0\"  class=\"panel-grid-cell\" ><div id=\"panel-41-4-0-0\" class=\"widget_text so-panel widget widget_custom_html panel-first-child panel-last-child\" data-index=\"4\" ><div class=\"textwidget custom-html-widget\"><h3 style=\"text-align: center;\">\u6c38\u7eed\u8425\u8fd0\u7684\u6838\u5fc3\u91cd\u70b9\n<\/h3><\/div><\/div><\/div><\/div><div id=\"pg-41-5\"  class=\"panel-grid panel-no-style\" ><div id=\"pgc-41-5-0\"  class=\"panel-grid-cell\" ><div id=\"panel-41-5-0-0\" class=\"widget_text so-panel widget widget_custom_html panel-first-child panel-last-child\" data-index=\"5\" ><div class=\"textwidget custom-html-widget\"><p style=\"text-align: center;\" align=\"center\">\u5728\u6b63\u9f50\u96c6\u56e2\uff0c\u6c38\u7eed\u53d1\u5c55\u5df2\u6210\u4e3a\u96c6\u56e2\u4e1a\u52a1\u6218\u7565\u548c\u76ee\u6807\u7684\u4e00\u90e8\u5206\u3002\u4e3a\u4e86\u4fdd\u6301\u9886\u5148\u4f18\u52bf\uff0c\u6211\u4eec\u901a\u8fc7\u4ee5\u4e0b\u4e09\uff083\uff09\u4e2a\u6838\u5fc3\u91cd\u70b9\u79ef\u6781\u63a8\u52a8\u6c38\u7eed\u7ecf\u8425\uff1a\n<\/p><\/div><\/div><\/div><\/div><div id=\"pg-41-6\"  class=\"panel-grid panel-no-style\" ><div id=\"pgc-41-6-0\"  class=\"panel-grid-cell panel-grid-cell-empty\" ><\/div><div id=\"pgc-41-6-1\"  class=\"panel-grid-cell\" ><div id=\"panel-41-6-1-0\" class=\"widget_text so-panel widget widget_custom_html panel-first-child panel-last-child\" data-index=\"6\" ><div class=\"textwidget custom-html-widget\"><div style=\"width:300px; height:410px; background:#A62502; border: 1px solid #900000; border-radius:10px\">\n     <div style=\"width:50px; height:50px; background:#CCCCCC; border-radius:25px; margin:auto; position: relative; top:20px; text-align:center; line-height:50px; border: 1px solid #900000;\">\n        <span style=\"font-family:Arial; font-size:30px; color:#A62502\">\n            1\n        <\/span>\n    <\/div>\n    <div style=\"width:240px; height:70px; margin:auto; position: relative; top:30px; text-align:center; margin: auto; \">\n        <span style=\"font-family:Arial; font-size:22px; color:#FFFFFF; line-height:30px\">\n            \u6c38\u7eed\u53d1\u5c55\u7684\u4f01\u4e1a\n        <\/span>\n    <\/div>\n    <div style=\"width:260px; height:180px; text-align:center; background:#FFFFFF; position: relative; top:35px; border-radius:10px; margin:auto; padding: 15px; border: 1px solid #900000; line-height: 1.2;\">\n        <span style=\"font-size: 17px;\">\n            \u6211\u4eec\u81f4\u529b\u4e8e\u5b9e\u884c\u201c\u5e73\u8861\u5206\u914d\u76f8\u5173\u5229\u76ca\u201d\u7684\u7406\u5ff5\u3002\u6211\u4eec\u575a\u6301\u4ee5\u8d1f\u8d23\u4efb\u7684\u6001\u5ea6\u53bb\u521b\u9020\u53ca\u516c\u5e73\u5206\u914d\u6240\u5f97\u7684\u7ecf\u6d4e\u6548\u76ca\uff0c\u4ece\u800c\u8fbe\u5230\u53ef\u6301\u7eed\u6027\u3001\u6210\u529f\u7684\u8425\u8fd0\u4e0e\u4e1a\u52a1\u6a21\u5f0f\u3002 \n        <\/span>\n    <\/div>\n    <div style=\"width:260px; height: 40px; position: relative; top:25px; border-radius:10px; margin:auto; \">\n        <a href=\"https:\/\/mi-technovation.com\/cn\/about-us\/#philosophy\" style=\"display: block; width: 260px; height: 40px; position: relative; top:25px; text-align: center; background: #FFFFFF; border: 2px solid #00B0F0; border-radius: 10px; line-height: 40px; color: black; text-decoration: none;\">\n            \u6df1\u5165\u4e86\u89e3 &gt&gt&gt\n        <\/a>\n    <\/div>\n<\/div>\n<\/div><\/div><\/div><div id=\"pgc-41-6-2\"  class=\"panel-grid-cell\" ><div id=\"panel-41-6-2-0\" class=\"widget_text so-panel widget widget_custom_html panel-first-child panel-last-child\" data-index=\"7\" ><div class=\"textwidget custom-html-widget\"><div style=\"width:300px; height:410px; background:#002060; border: 1px solid #000066; border-radius:10px\">\n    <div style=\"width:50px; height:50px; background:#CCCCCC; border-radius:25px; margin:auto; position: relative; top:20px; text-align:center; line-height:50px; border: 1px solid #000066;\">\n        <span style=\"font-family:Arial; font-size:30px; color:#002060\">\n            2\n        <\/span>\n    <\/div>\n    <div style=\"width:240px; height:70px; margin:auto; position: relative; top:30px; text-align:center; margin: auto;\">\n        <span style=\"font-family:Arial; font-size:22px; color:#FFFFFF; line-height:30px\">\n            \u8d1f\u8d23\u4efb\u7684\u4f01\u4e1a\u884c\u4e3a\n        <\/span>\n    <\/div>\n    <div style=\"width:260px; height:180px; text-align:center; background:#FFFFFF; position: relative; top:35px; border-radius:10px; margin:auto; padding: 15px; border: 1px solid #000066; line-height: 1.2;\">\n        <span style=\"font-size: 17px;\">\n           \u6211\u4eec\u5c06\u826f\u597d\u7684\u6cbb\u7406\u9053\u5fb7\u878d\u5165\u6211\u4eec\u7684\u4f01\u4e1a\u8fd0\u8425\u548c\u7b56\u7565\u4e2d\uff0c\u540c\u65f6\u6211\u4eec\u5728\u7ba1\u7406\u6211\u4eec\u7684\u4e1a\u52a1\u65f6\u5927\u529b\u63d0\u5021\u9ad8\u8bda\u4fe1\u3001\u9ad8\u900f\u660e\u5ea6\u3001\u4ee5\u53ca\u5f3a\u800c\u6709\u6548\u7684\u95ee\u8d23\u5236\u548c\u5e94\u53d8\u80fd\u529b\u3002 \n        <\/span>\n    <\/div>\n\t<div style=\"width:260px; height: 40px; position: relative; top:25px; border-radius:10px; margin:auto; \">\n        <a href=\"https:\/\/mi-technovation.com\/cn\/\u6211\u4eec\u7684\u627f\u8bfa\/#corporate\" style=\"display: block; width: 260px; height: 40px; position: relative; top:25px; text-align: center; background: #FFFFFF; border: 2px solid #00B0F0; border-radius: 10px; line-height: 40px; color: black; text-decoration: none;\">\n            \u6df1\u5165\u4e86\u89e3 &gt&gt&gt\n        <\/a>\n    <\/div>\n<\/div>\n<\/div><\/div><\/div><div id=\"pgc-41-6-3\"  class=\"panel-grid-cell panel-grid-cell-mobile-last\" ><div id=\"panel-41-6-3-0\" class=\"widget_text so-panel widget widget_custom_html panel-first-child panel-last-child\" data-index=\"8\" ><div class=\"textwidget custom-html-widget\"><div style=\"width:300px; height:410px; background:#254113; border: 1px solid #004d00; border-radius:10px\">\n    <div style=\"width:50px; height:50px; background:#CCCCCC; border-radius:25px; margin:auto; position: relative; top:20px; text-align:center; line-height:50px; border: 1px solid #004d00;\">\n        <span style=\"font-family:Arial; font-size:30px; color:#254113\">\n            3\n        <\/span>\n    <\/div>\n    <div style=\"width:240px; height:70px; margin:auto; position: relative; top:30px; text-align:center; margin: auto;\">\n        <span style=\"font-family:Arial; font-size:22px; color:#FFFFFF; line-height: 30px\">\n            \u5bf9\u7ecf\u8425\u6240\u5728\u5730\u7684\u73af\u5883\u548c\u793e\u533a\u7684\u5f71\u54cd\n        <\/span>\n    <\/div>\n    <div style=\"width:260px; height:180px; text-align:center;background:#FFFFFF; position: relative; top:35px; border-radius:10px; margin:auto; padding: 15px; border: 1px solid #004d00; line-height: 1.2;\">\n        <span style=\"font-size: 17px;\">\n            \u6211\u4eec\u627f\u8bfa\u5c65\u884c\u5bf9\u6211\u4eec\u7684\u7ecf\u8425\u6240\u5728\u5730\u7684\u73af\u5883\u548c\u793e\u533a\u7684\u76f8\u5173\u8d23\u4efb\u3002\u6211\u4eec\u652f\u6301\u6539\u5584\u6559\u80b2\u548c\u533b\u7597\u8d28\u91cf\u5e76\u4e3b\u52a8\u8fdb\u4e00\u6b65\u7684\u6269\u5927\u4fdd\u62a4\u751f\u7269\u591a\u6837\u6027\u7684\u4e3e\u63aa\u3002\n        <\/span>\n    <\/div>\n\t\t<div style=\"width:260px; height: 40px; position: relative; top:25px; border-radius:10px; margin:auto; \">\n        <a href=\"https:\/\/mi-technovation.com\/cn\/\u6211\u4eec\u7684\u627f\u8bfa\/#protection\" style=\"display: block; width: 260px; height: 40px; position: relative; top:25px; text-align: center; background: #FFFFFF; border: 2px solid #00B0F0; border-radius: 10px; line-height: 40px; color: black; text-decoration: none;\">\n            \u6df1\u5165\u4e86\u89e3 &gt&gt&gt\n        <\/a>\n    <\/div>\n<\/div>\n<\/div><\/div><\/div><div id=\"pgc-41-6-4\"  class=\"panel-grid-cell panel-grid-cell-empty\" ><\/div><\/div><div id=\"pg-41-7\"  class=\"panel-grid panel-no-style\" ><div id=\"pgc-41-7-0\"  class=\"panel-grid-cell\" ><div id=\"panel-41-7-0-0\" class=\"widget_text so-panel widget widget_custom_html panel-first-child\" data-index=\"9\" ><div class=\"textwidget custom-html-widget\"><a name=\"report\"><\/a>\n<p>\n\t&nbsp;<\/p>\n<\/div><\/div><div id=\"panel-41-7-0-1\" class=\"widget_text so-panel widget widget_custom_html panel-last-child\" data-index=\"10\" ><div class=\"textwidget custom-html-widget\"><style>\n  body {\n    margin: 0;\n    padding: 0;\n  }\n  .container {\n    width: 100%;\n    padding: 20px;\n    background-color: #eff9ff; \/* Lighter shade of blue *\/\n  }\n  h3, p {\n    text-align: left;\n  }\n<\/style>\n<div class=\"container\">\n<h3>\u6c38\u7eed\u62a5\u544a<\/h3>\n\u6211\u4eec\u5728\u6b64\u5206\u4eab\u6b63\u9f50\u96c6\u56e2\u5728\u6c38\u7eed\u53d1\u5c55\u65b9\u9762\u53d6\u5f97\u7684\u8fdb\u5c55\u548c\u8868\u73b0\u3002\u672a\u6765\u51e0\u5e74\uff0c\u6211\u4eec\u5c06\u7ee7\u7eed\u6309\u7167\u96c6\u56e2\u89c4\u5212\u7684\u8def\u7ebf\u63a8\u52a8\u76f8\u5173\u7684\u6c38\u7eed\u53d1\u5c55\u3002\n\n<p><a href=\"https:\/\/mi-technovation.com\/investor-relations\/sustainability-report\/\">\u9605\u8bfb\u5b8c\u6574\u62a5\u544a &gt;&gt;&gt;<\/a><\/p>\n\n<\/div><\/div><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>\u6c38\u7eed\u4eea\u8868\u677f<\/p>\n","protected":false},"author":1,"featured_media":42,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":"","_links_to":"","_links_to_target":""},"class_list":["post-41","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v16.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u73af\u5883\u3001\u793e\u4f1a\u8d23\u4efb\u3001\u4f01\u4e1a\u6cbb\u7406\u548c\u6c38\u7eed\u8425\u8fd0 - Mi Technovation<\/title>\n<link rel=\"canonical\" href=\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u73af\u5883\u3001\u793e\u4f1a\u8d23\u4efb\u3001\u4f01\u4e1a\u6cbb\u7406\u548c\u6c38\u7eed\u8425\u8fd0 - Mi Technovation\" \/>\n<meta property=\"og:description\" content=\"\u6c38\u7eed\u4eea\u8868\u677f\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/\" \/>\n<meta property=\"og:site_name\" content=\"Mi Technovation\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-28T04:02:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mi-technovation.com\/cn\/wp-content\/uploads\/2021\/12\/esg-header.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2400\" \/>\n\t<meta property=\"og:image:height\" content=\"1799\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\">\n\t<meta name=\"twitter:data1\" content=\"1 minute\">\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mi-technovation.com\/cn\/#website\",\"url\":\"https:\/\/mi-technovation.com\/cn\/\",\"name\":\"Mi Technovation\",\"description\":\"Home\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":\"https:\/\/mi-technovation.com\/cn\/?s={search_term_string}\",\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/mi-technovation.com\/cn\/wp-content\/uploads\/2021\/12\/esg-header.jpg\",\"contentUrl\":\"https:\/\/mi-technovation.com\/cn\/wp-content\/uploads\/2021\/12\/esg-header.jpg\",\"width\":2400,\"height\":1799},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/#webpage\",\"url\":\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/\",\"name\":\"\\u73af\\u5883\\u3001\\u793e\\u4f1a\\u8d23\\u4efb\\u3001\\u4f01\\u4e1a\\u6cbb\\u7406\\u548c\\u6c38\\u7eed\\u8425\\u8fd0 - Mi Technovation\",\"isPartOf\":{\"@id\":\"https:\/\/mi-technovation.com\/cn\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/#primaryimage\"},\"datePublished\":\"2021-12-20T06:54:41+00:00\",\"dateModified\":\"2025-05-28T04:02:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"item\":{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mi-technovation.com\/cn\/\",\"url\":\"https:\/\/mi-technovation.com\/cn\/\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"position\":2,\"item\":{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/\",\"url\":\"https:\/\/mi-technovation.com\/cn\/esg-commitments\/\",\"name\":\"\\u73af\\u5883\\u3001\\u793e\\u4f1a\\u8d23\\u4efb\\u3001\\u4f01\\u4e1a\\u6cbb\\u7406\\u548c\\u6c38\\u7eed\\u8425\\u8fd0\"}}]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","_links":{"self":[{"href":"https:\/\/mi-technovation.com\/cn\/wp-json\/wp\/v2\/pages\/41","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mi-technovation.com\/cn\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/mi-technovation.com\/cn\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/mi-technovation.com\/cn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mi-technovation.com\/cn\/wp-json\/wp\/v2\/comments?post=41"}],"version-history":[{"count":64,"href":"https:\/\/mi-technovation.com\/cn\/wp-json\/wp\/v2\/pages\/41\/revisions"}],"predecessor-version":[{"id":1193,"href":"https:\/\/mi-technovation.com\/cn\/wp-json\/wp\/v2\/pages\/41\/revisions\/1193"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mi-technovation.com\/cn\/wp-json\/wp\/v2\/media\/42"}],"wp:attachment":[{"href":"https:\/\/mi-technovation.com\/cn\/wp-json\/wp\/v2\/media?parent=41"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}