<!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">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
    <title>中国日报网-传播中国，影响世界</title>
    <meta content="中国日报网,中国日报,国内新闻,国际快讯,评论,财经,体育,军事,图片,文化娱乐,时尚生活,视频" name="keywords" />
    <meta content="中国日报网是中国最优质的新闻发布平台,热点实时新闻发布,提供国内新闻,国际快讯,评论,财经,体育,军事,图片,文化娱乐,时尚生活,视频及互动等综合新闻资讯!" name="description" />
    <link rel="canonical" href="https://cn.chinadaily.com.cn" />
    <link rel="stylesheet" href="//img3.chinadaily.com.cn/static/2022cn_index/css/swiper.min.css" />
    <link rel="stylesheet" href="//img3.chinadaily.com.cn/static/2022cn_index/css/swiper-bundle.min.css" />
    <link rel="stylesheet" charset="utf-8" href="//img3.chinadaily.com.cn/static/2022cn_index/css/publicstyle.css?ver=2" />
    <!--头部和尾部右侧二维码-->
    <link rel="stylesheet" charset="utf-8" href="//img3.chinadaily.com.cn/static/2022cn_index/css/instyle.css?ver=5" />
    <!--首页单独css-->

    <link rel="stylesheet" href="//img3.chinadaily.com.cn/static/2022cn_index/css/public.css" />
    <link rel="stylesheet" href="//img3.chinadaily.com.cn/static/2022cn_index/css/main.css?ver=45" />
    <link rel="stylesheet" charset="utf-8" href="//img3.chinadaily.com.cn/static/2022cn_index/css/mobiletop.css?ver=5" />

    <script type="text/javascript" charset="utf-8" rel="stylesheet" xml:space="preserve" src="//img3.chinadaily.com.cn/static/common/js/jquery.min.js"></script>
    <script xml:space="preserve" src="//img3.chinadaily.com.cn/static/2022cn_index/js/swiper.min.js"></script>
    <script xml:space="preserve" src="//img3.chinadaily.com.cn/static/2022cn_index/js/swiper-bundle.min.js"></script>
    <!-- <script src="js/main.js"></script> -->
    <script type="text/javascript" charset="utf-8" rel="stylesheet" xml:space="preserve" src="//img3.chinadaily.com.cn/static/2022cn_index/js/ewm2.js"></script>
    <!--返回顶部-->
    <script type="text/javascript" charset="utf-8" rel="stylesheet" xml:space="preserve" src="//img3.chinadaily.com.cn/static/common/js/adloading.js?ver=5"></script>
    <!--天润统计代码 Start-->
    <META name="filetype" content="1" />
    <META name="publishedtype" content="1" />
    <META name="pagetype" content="2" />
    <meta name="catalogs" content="cn" />
    <!--天润统计代码 End-->

  </head>

  <body>
    <div class="pc">
      <!--ad A1 广告-中文首页 6080eb05a3101e7ce974b2c5-->
      <div class="TopAD_Banner Cen1200" data-ad-id="22">
      </div>
      <!-- Top_Banner -->
      <div class="Top_Banner Cen1200">
        <div class="Top_Banner_logo">
          <a href="https://cn.chinadaily.com.cn" target="_top" shape="rect"><img src="https://cn.chinadaily.com.cn/image/2025/logo_cntop.png" /></a>
        </div>
        <div class="Top_Banner_Search">
          <div class="search radius6">
            <form name="searchform" method="post" action="" id="searchform" enctype="application/x-www-form-urlencoded">
              <input name="ecmsfrom" type="hidden" value="9" />
              <input type="hidden" name="show" value="title,newstext" />
              <div class="select_box">
                <div class="select_showbox" style="cursor:pointer;"></div>
                <ul class="select_option">
                  <li class="option-item" data-value="1">站内搜索</li>
                  <li class="option-item" data-value="2">搜狗搜索</li>
                  <li class="option-item" data-value="0">中国搜索</li>
                </ul>
              </div>
              <input class="inp_srh" type="text" id="searchtxt" value="" onfocus="clearword(this)" />
              <img id="searchimg" style="width:30px;height:30px;" src="//img3.chinadaily.com.cn/static/2022cn_index/img/j-q.jpg" />
            </form>
            <script xml:space="preserve">
              //<![CDATA[
              var selectBox = document.getElementsByClassName('select_box')[0];
              var selectShowBox = document.getElementsByClassName('select_showbox');
              var selectOption = document.getElementsByClassName('select_option')[0];
              var optionItem = document.getElementsByClassName('option-item');
              /*var optionNum = 1 ;	*/
              /*默认是第一个选项*/
              selectShowBox[0].innerHTML = optionItem[0].innerHTML;
              /*点击后出现下拉框*/ 
              selectBox.addEventListener('click', function () {
                selectOption.style.display = 'block';
                selectShowBox[0].style.background = 'url("https://cn.chinadaily.com.cn/image/2015/j-x.jpg") no-repeat right center';
              }, true);
              /*点击选项后出现在下拉框*/
              var len = optionItem.length;
              for (var i = 0; i < len; i++) {
                optionItem[i].index = i;
                optionItem[i].addEventListener('click', function () {
                  selectShowBox[0].innerHTML = optionItem[this.index].innerHTML;
                  selectOption.style.display = 'none';
                  selectShowBox[0].style.background = 'url("https://cn.chinadaily.com.cn/image/2015/j-s.jpg") no-repeat right center';
                  /*  optionNum = optionItem[this.index].getAttribute('data-value');	*/
                }, true);
              }
              /*点击其他地方时，select会收起来*/
              document.body.addEventListener('click', function () {
                selectOption.style.display = 'none';
                selectShowBox[0].style.background = 'url("https://cn.chinadaily.com.cn/image/2015/j-s.jpg") no-repeat right center';
              }.true);
              var oSearchForm = document.getElementById('searchform');
              var oSearchImg = document.getElementById('searchimg');
              var oSearchTxt = document.getElementById('searchtxt');
              var reg = /^\s*$/g;
              document.onkeydown = keyevent;
              oSearchImg.onclick = In_search;
              function clearword(obj) {
                obj.value = '';
              }
              function keyevent(ev) {
                var oEv = ev || window.event;
                if (oEv.keyCode == 13) {
                  In_search();
                }
                else { }
              }
              function In_search() {
                if (!reg.test(oSearchTxt.value)) {
                  if(selectShowBox[0].innerHTML == '中国搜索'){
                    oSearchForm.action = 'http://www.chinaso.com/search/pagesearch.htm?q='+oSearchTxt.value;
                    oSearchForm.target = '_blank';
                    oSearchForm.submit();
                  }
                  else if(selectShowBox[0].innerHTML == '站内搜索'){
                    oSearchForm.action = '//newssearch.chinadaily.com.cn/cn/search?query='+oSearchTxt.value;
                    oSearchForm.target = '_blank';
                    oSearchForm.submit();
                  }
                  else if(selectShowBox[0].innerHTML == '搜狗搜索'){
                    oSearchForm.action = 'https://www.sogou.com/web?query=' + oSearchTxt.value + '&amp;insite=chinadaily.com.cn&amp;pid=sogou-wsse-04f19115dfa286fb';
                    oSearchForm.target = '_blank';
                    oSearchForm.submit();
                  }
                }
                else {
                  alert('请输入搜索内容');
                }
              }
              //]]>
            </script>
          </div>
        </div>
        <div class="Top_Banner_Links">
          <!-- <a href="javascript:void(0)" onclick="aria.start()"><em></em></a>	-->
          <span><a href="https://www.chinadaily.com.cn/e/subscribe" target="_blank" shape="rect">订阅</a></span>
          <span><a href="https://www.chinadaily.com.cn/e/static_e/newmedia" target="_blank" shape="rect">移动</a></span>
          <span><a href="https://www.chinadaily.com.cn/" target="_blank" shape="rect">English</a></span>
        </div>
      </div>
      <!-- Top_Menu_Box -->
      <div class="Top_Menu_Box">
        <div class="Top_Menu_Div Cen1200">
          <ul>
            <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn">首页</a></li>
            <li>
              <a target="_blank" shape="rect" href="//china.chinadaily.com.cn">时评</a>
              <em></em>
              <div class="Top_MenuLevel_Div" id="Top_MenuLevel1">
                <div class="Top_MenuLevel_Item">
                  <a target="_blank" shape="rect" href="//china.chinadaily.com.cn/5bd5639ca3101a87ca8ff636">时政要闻</a>
                  </div>
                <div class="Top_MenuLevel_Item"> 
                  <a target="_blank" shape="rect" href="//china.chinadaily.com.cn/5bd5639ca3101a87ca8ff634">评论频道</a>
                  </div>
                <div class="Top_MenuLevel_Item"> 
                  <a target="_blank" shape="rect" href="//china.chinadaily.com.cn/theory">理论频道</a>
                  </div>
                <div class="Top_MenuLevel_Item">
                  <a target="_blank" shape="rect" href="//china.chinadaily.com.cn/xuexi">学习时代</a>
                  </div>
                <div class="Top_MenuLevel_Item">
                  <a target="_blank" shape="rect" href="//tw.chinadaily.com.cn">两岸频道</a>
                  </div>
              </div>
            </li>
            <li>
              <a target="_blank" shape="rect" href="//world.chinadaily.com.cn">资讯</a>
              <em></em>
              <div class="Top_MenuLevel_Div" id="Top_MenuLevel2">
                <div class="Top_MenuLevel_Item">  
                  <a target="_blank" shape="rect" href="//world.chinadaily.com.cn/5bd55927a3101a87ca8ff618">独家</a>
                  </div>
                <div class="Top_MenuLevel_Item">
                  <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54dd6a3101a87ca8ff5f8/5bd54e59a3101a87ca8ff606">中国日报专稿</a>
                  </div>
                <div class="Top_MenuLevel_Item"> 
                  <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd549f1a3101a87ca8ff5e0">传媒动态</a>
                   </div>
                <div class="Top_MenuLevel_Item"><a href="https://cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/Word" target="_blank" shape="rect">每日一词</a></div>
                <div class="Top_MenuLevel_Item">
                  <a href="https://fygg.chinadaily.com.cn/" target="_blank" shape="rect">法院公告</a>
                </div>
              </div>
            </li>
            <li>
              <a target="_blank" shape="rect" href="//caijing.chinadaily.com.cn">C财经</a>
              <em></em>
              <div class="Top_MenuLevel_Div" id="Top_MenuLevel3">
                <div class="Top_MenuLevel_Item"> 
                  <a target="_blank" shape="rect" href="//caijing.chinadaily.com.cn/stock">证券</a>
                  </div>
                <div class="Top_MenuLevel_Item">  
                  <a target="_blank" shape="rect" href="//caijing.chinadaily.com.cn/5b7620c4a310030f813cf452">独家</a>
                  </div>
                <div class="Top_MenuLevel_Item">  
                  <a target="_blank" shape="rect" href="//tech.chinadaily.com.cn">科技</a>
                  </div>
                <div class="Top_MenuLevel_Item"> 
                  <a target="_blank" shape="rect" href="//qiye.chinadaily.com.cn">产业</a>
                  </div>
              </div>
            </li>

            <li><a href="//kan.chinadaily.com.cn/" target="_blank" shape="rect">视频</a> </li>
            <li><a href="http://column.chinadaily.com.cn/" target="_blank" shape="rect">专栏</a>
            </li>
            <!-- <li><a href="//language.chinadaily.com.cn/" target="_blank">双语</a><em></em>
<div class="Top_MenuLevel_Div" id="Top_MenuLevel6">
<div class="Top_MenuLevel_Item"><a href="https://language.chinadaily.com.cn/news_bilingual/sycx" target="_blank">双语财讯</a></div>
<div class="Top_MenuLevel_Item"><a href="https://language.chinadaily.com.cn/news_hotwords/word_of_the_day" target="_blank">每日一词</a></div>
<div class="Top_MenuLevel_Item"><a href="https://language.chinadaily.com.cn/news_bilingual/" target="_blank">双语新闻</a></div>
<div class="Top_MenuLevel_Item"><a href="https://language.chinadaily.com.cn/news_hotwords/" target="_blank">新闻热词</a></div>
<div class="Top_MenuLevel_Item"><a href="https://language.chinadaily.com.cn/trans_collect" target="_blank">译词课堂</a></div>
</div>
</li>	-->
            <li><a href="http://cartoon.chinadaily.com.cn/" target="_blank" shape="rect">漫画</a></li>
            <li>
              <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/gtx">观天下</a>
              <em></em>
              <div class="Top_MenuLevel_Div" id="Top_MenuLevel7">
                <div class="Top_MenuLevel_Item"><a href="https://cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/ChinaWatch" target="_blank" shape="rect">中国观察</a></div>
                <div class="Top_MenuLevel_Item"><a href="https://cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/wangping" target="_blank" shape="rect">中国日报网评</a></div>
                <div class="Top_MenuLevel_Item"><a href="https://cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/Teahouse" target="_blank" shape="rect">中国那些事儿</a></div>
                <div class="Top_MenuLevel_Item"><a href="https://cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/Overseas" target="_blank" shape="rect">海外手记</a></div>
                <div class="Top_MenuLevel_Item"><a href="https://cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/qyq" target="_blank" shape="rect">侨一瞧</a></div>
              </div>
            </li>
            <li>
              
                <a target="_blank" shape="rect" href="//cnews.chinadaily.com.cn">地方</a>
              
            </li>
            <li>
              <a href="https://wenchuang.chinadaily.com.cn/" target="_blank" shape="rect">文创</a>
              <em></em>
              <div class="Top_MenuLevel_Div" id="Top_MenuLevel4">
                <div class="Top_MenuLevel_Item"> 
                  <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/wenlv">文旅</a>
                  </div>
                <div class="Top_MenuLevel_Item">
                  <a href="https://culturepedia.chinadaily.com.cn/#/homePage" target="_blank" shape="rect">文化知识库</a>
                </div>
                <div class="Top_MenuLevel_Item">
                  <a target="_blank" shape="rect" href="//world.chinadaily.com.cn/Chinadata">中国有约</a>
                  </div>
                <div class="Top_MenuLevel_Item"> 
                  <a target="_blank" shape="rect" href="//fashion.chinadaily.com.cn">生活</a>
                  </div>


              </div>
            </li>
          </ul>
        </div>
      </div>

      <!-- Home_content -->
      <div class="Home_content_Div Cen1200">
        <div class="Home_content_Left_Title_Div">
          <!-- 中文首页-时政要闻-头条 5bd54e0aa3101a87ca8ff5fe -->
          
            
              <h1><a target="_blank" class="thbt" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f8a2d1a310942cc49aab25.html">追光的你丨青春正当时</a></h1>
            
          
          
            <h2>
              
              
              
                <span>&nbsp;<a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f8a386a310942cc49aab27.html">总书记寄语广大青年建功奋进新征程</a>&nbsp;</span>
              
              
                <span>&nbsp;<a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f8a40ba310942cc49aab29.html">习言道｜为青年取得的成就和成绩点赞 喝彩</a>&nbsp;</span>
              
              
                <span>&nbsp;<a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f8a4bca310942cc49aab2b.html">学习原声·开局“十五五”｜勤于创造 勇于奋斗</a>&nbsp;</span>
              
              
                <span>&nbsp;<a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f87567a310942cc49aab03.html">拾光纪·“以实现中华民族伟大复兴为己任”</a>&nbsp;</span>
              
              
                <span>&nbsp;<a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f8766ba310942cc49aab07.html">时政微周刊丨总书记的一周</a>&nbsp;</span>
              
              
                <span>&nbsp;<a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f877fda310942cc49aab09.html">学习进行时｜习近平总书记关心劳动者的故事</a>&nbsp;</span>
              
            </h2>
          
        </div>
        <div class="Home_content_Core_Div">
          <!--	中文首页-时政要闻-头条小图 5bd54e0aa3101a87ca8ff5fc-->
          
            
              <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202506/04/WS5bdab06ba3101a87ca906ef4.html"><img src="//img3.chinadaily.com.cn/images/202306/25/6497f79ea310ba946e350571.jpg" /></a>
            
          
        </div>
      </div>
      <div class="Home_content_Div Cen1200" style="margin-top:10px;">
        <!-- Home_content_Left -->
        <div class="Home_content_Left">
          <!--中文首页-当日要闻-头图 5bd54bdea3101a87ca8ff5f4-->
          <div class="Home_content_Left_Swiper">
            <div class="swiper-wrapper">
              
                
                  <div class="swiper-slide">
                    <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80458a310942cc49aaa8a.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f80458a310942c0d5fea27.jpeg" /></a></p>
                    <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80458a310942cc49aaa8a.html">青年朋友的知心人</a></h1>
                  </div>
                
                
                  <div class="swiper-slide">
                    <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f934b7a310942cc49aab39.html"><img src="//img3.chinadaily.com.cn/images/202605/05/69f934b7a310942c0d5fec86.jpeg" /></a></p>
                    <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f934b7a310942cc49aab39.html">立夏·呼伦贝尔</a></h1>
                  </div>
                
                
                  <div class="swiper-slide">
                    <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f829b8a310942cc49aaaa0.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f829b8a310942c0d5fea4d.jpeg" /></a></p>
                    <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f829b8a310942cc49aaaa0.html">韩国驻华大使：露比还是拉布布？年轻人全喜欢</a></h1>
                  </div>
                
                
                  <div class="swiper-slide">
                    <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f75745a310942cc49aaa75.html"><img src="//img3.chinadaily.com.cn/images/202605/03/69f75745a310942c0d5fe9d2.jpeg" /></a></p>
                    <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f75745a310942cc49aaa75.html">新时代我国基础研究实现新飞跃</a></h1>
                  </div>
                
                
                  <div class="swiper-slide">
                    <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f6ff1aa310942cc49aaa05.html"><img src="//img3.chinadaily.com.cn/images/202605/03/69f6ff1aa310942c0d5fe84a.jpeg" /></a></p>
                    <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f6ff1aa310942cc49aaa05.html">80年前的今天，这场正义的审判首次开庭</a></h1>
                  </div>
                
              
            </div>
            <div class="Home_content_pagination swiper-pagination"></div>
          </div>
          <!--左边列表-->
          <!--中文首页-当日要闻-要闻5bd54bdea3101a87ca8ff5f0-->
          <div class="Home_content_Block1">
            
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7ed30a310942cc49aaa7a.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f7ed30a310942c0d5fe9e1.png" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7ed30a310942cc49aaa7a.html">中国青年，风华正茂</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7ed30a310942cc49aaa7a.html">和中国日报数字员工元曦一起，庆祝“五四”青年节，今天的我们，风华正茂。</a></h2>
                    </div>
                    <div style="display:none;">5bd54e59a3101a87ca8ff606</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54dd6a3101a87ca8ff5f8/5bd54e59a3101a87ca8ff606">中国日报专稿</a>
                      </span>
                  </div>
                </div>
              
            
            
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933bfa310942cc49aab36.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/05/69f933bfa310942c0d5fec7b.png" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933bfa310942cc49aab36.html">伊朗第一副总统：管控霍尔木兹海峡是伊朗的合法权利</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933bfa310942cc49aab36.html">伊朗不寻求战争，但如果战争被强加，将作出果断回应。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933bfa310942cc49aab37.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/05/69f933bfa310942c0d5fec80.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933bfa310942cc49aab37.html">俄罗斯国防部宣布5月8日至9日停火</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933bfa310942cc49aab37.html">俄国防部称，如乌克兰方面破坏红场阅兵，俄军将打击基辅市中心。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
            
          </div>
          <!--中文首页 专题推荐	5bd54ba2a3101a87ca8ff5ec-->
          <div class="Home_content_Special_Div">
            <div class="Home_content_Special_Title">
              
                <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ec">专题 · 推荐</a>
              
            </div>
            <div class="Home_content_Special_Swiper swiper-container">
              <div class="swiper-wrapper">
                
                  
                    <div class="swiper-slide">
                      <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/15/WS69dece3da310942cc49a799d.html"><img style="width:241px;height:137px;" src="//img3.chinadaily.com.cn/images/202604/15/69dece3da310942c0d5f4c92.jpeg" /></a></p>
                    </div>
                  
                  
                    <div class="swiper-slide">
                      <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/14/WS69ddfa66a310942cc49a78a9.html"><img style="width:241px;height:137px;" src="//img3.chinadaily.com.cn/images/202604/14/69ddfa66a310942c0d5f48da.jpeg" /></a></p>
                    </div>
                  
                  
                    <div class="swiper-slide">
                      <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202603/30/WS69ca33f3a310942cc49a59d6.html"><img style="width:241px;height:137px;" src="//img3.chinadaily.com.cn/images/202603/30/69ca33f3a310942c0d5eeeb4.jpeg" /></a></p>
                    </div>
                  
                  
                    <div class="swiper-slide">
                      <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202602/27/WS69a148cea310942cc49a0cbc.html"><img style="width:241px;height:137px;" src="//img3.chinadaily.com.cn/images/202602/27/69a148cea310942c0d5df563.jpeg" /></a></p>
                    </div>
                  
                  
                    <div class="swiper-slide">
                      <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202602/02/WS69806039a310942cc499ddb3.html"><img style="width:241px;height:137px;" src="//img3.chinadaily.com.cn/images/202602/02/69806039a310942c0d5d4cb8.jpeg" /></a></p>
                    </div>
                  
                  
                    <div class="swiper-slide">
                      <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202511/28/WS692912a8a310942cc4993d4b.html"><img style="width:241px;height:137px;" src="//img3.chinadaily.com.cn/images/202511/28/692912a8a310942c0d5b6d0a.png" /></a></p>
                    </div>
                  
                
              </div>
            </div>
            <div class="Home_content_Special_BTPrev"></div>
            <div class="Home_content_Special_BTNext"></div>
          </div>
          <div class="Home_content_Block1">
            
              
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933c0a310942cc49aab38.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/05/69f933c0a310942c0d5fec83.png" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933c0a310942cc49aab38.html">泽连斯基宣布乌方6日零时起实施单方面停火</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933c0a310942cc49aab38.html">乌方尚未收到俄方任何有关实施停火的正式呼吁，但乌方决定自6日零时起单方面实施停火。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8745da310942cc49aab02.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f8745da310942c0d5febcf.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8745da310942cc49aab02.html">广西贵港通报一户房屋被拆除：成立专项工作组</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8745da310942cc49aab02.html">广西贵港市港北区工作组5月4日发布情况通报：近日，网络平台出现反映贵港市港北区布山街道蓝田社区卢某某户房屋被拆除的相关信息，引发社会关注。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8744da310942cc49aab01.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f8744da310942c0d5febcc.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8744da310942cc49aab01.html">外交部发言人就孟加拉国外长卡利勒访华答记者问</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8744da310942cc49aab01.html">孟加拉国外交部长卡利勒将于5月5日至7日访问中国。外交部发言人4日就卡利勒访华回答记者提问。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743fa310942cc49aab00.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f8743fa310942c0d5febc7.png" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743fa310942cc49aab00.html">古巴感谢哥伦比亚总统声援</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743fa310942cc49aab00.html">古巴国家主席迪亚斯-卡内尔3日在社交媒体发文，感谢哥伦比亚总统佩特罗反对美国对古巴军事威胁的声援。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
            <!--广告-中文首页-B(608*100)区块 6080eb05a3101e7ce974b2c5  B1-->
            <!--            <cms:storylist th:attr="channelId=|${site.dirname}|,type='block',columnId='6080eb05a3101e7ce974b2c5',blocktag='102',count='1'">
<th:block th:each="story,iterStat:${storyList}" th:if="${iterStat.count == 1}">
<div class="Home_content_AD">
<th:block th:if="${story.storyType == 'HREF'}"><a th:href="${story.prUrl}" target="_blank"><img th:unless="${#lists.isEmpty(story.thumbnails)}" th:src="${story.thumbnails[0].prUrl}" /></a></th:block>
<th:block th:if="${story.storyType != 'HREF'}"><img th:unless="${#lists.isEmpty(story.thumbnails)}" th:src="${story.thumbnails[0].prUrl}" /></th:block>
</div>
</th:block>
</cms:storylist>	-->
            <div class="Home_content_AD" data-ad-id="18">
            </div>
            <!--文字广告6条 广告-中文首页 6080eb05a3101e7ce974b2c5 -->
            <div class="left-huikuang" data-ad-w-id="1">
              <div class="kua-left">
                <p data-ad-id="38"></p>
                <p data-ad-id="39"></p>
                <p data-ad-id="40"></p>
                <p data-ad-id="41"></p>
              </div>
              <div class="kua-right">
                <p data-ad-id="42"></p>
                <p data-ad-id="43"></p>
                <p data-ad-id="44"></p>
                <p data-ad-id="45"></p>
              </div>
            </div>
            <!-- 广告完 -->
            
              
              
              
              
              
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743da310942cc49aaaff.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f8743da310942c0d5febc4.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743da310942cc49aaaff.html">一艘被美扣押伊朗货船上的22名船员转移至巴基斯坦</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743da310942cc49aaaff.html">巴基斯坦外交部4日发表声明说，一艘被美国扣押的伊朗货船上的22名船员已转移至巴基斯坦。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743ba310942cc49aaafe.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f8743ba310942c0d5febc1.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743ba310942cc49aaafe.html">波音因737 MAX坠机事故再遭民事起诉</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743ba310942cc49aaafe.html">美国波音公司将于4日在芝加哥联邦法院出庭，就一起与2019年埃塞俄比亚航空公司波音737 MAX客机坠机事故有关的民事诉讼应诉。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f87438a310942cc49aaafd.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f87438a310942c0d5febbc.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f87438a310942cc49aaafd.html">伊朗公布伊控制下的霍尔木兹海峡地区新地图</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f87438a310942cc49aaafd.html">当地时间5月4日，伊朗伊斯兰革命卫队海军当天公布了一份霍尔木兹海峡地区的新地图。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f837bfa310942cc49aaaaa.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f837bfa310942c0d5fea72.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f837bfa310942cc49aaaaa.html">菲律宾马荣火山喷发大量火山灰 致超10万人受灾</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f837bfa310942cc49aaaaa.html">菲律宾国家减灾委5月4日说，5月2日马荣火山活动加剧，出现由熔岩流坍塌引发的火山碎屑密度流，继而产生大量火山灰，导致附近87个村受到影响，受灾人数超过10万人。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
            
            <div class="Home_content_AD" data-ad-id="54">
            </div>
            
              
              
              
              
              
              
              
              
              
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f83799a310942cc49aaaa8.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f83799a310942c0d5fea6f.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f83799a310942cc49aaaa8.html">英国海事贸易组织说一艘油轮在阿联酋附近被击中</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f83799a310942cc49aaaa8.html">英国海事贸易组织4日发表声明说，一艘油轮在阿联酋富查伊拉以北78海里（约144公里）处遭到不明飞弹袭击，所有船员均安全无恙，尚未收到对环境造成影响的报告。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f81b32a310942cc49aaa9e.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f81b32a310942c0d5fea47.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f81b32a310942cc49aaa9e.html">台湾青年：大陆容得下我们的梦想 发展机会多多</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f81b32a310942cc49aaa9e.html">五四青年节之际，正在大陆奋斗的几位台湾青年，向中国日报记者讲述了他们在这里扎根、成长的真实经历。</a></h2>
                    </div>
                    <div style="display:none;">5bd54e59a3101a87ca8ff606</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54dd6a3101a87ca8ff5f8/5bd54e59a3101a87ca8ff606">中国日报专稿</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f81350a310942cc49aaa97.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f81350a310942c0d5fea3e.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f81350a310942cc49aaa97.html">中国驻美大使谢锋：遇见大美陕西，感受机遇中国——中国驻美国大使馆举办开放日暨陕西省推介活动</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f81350a310942cc49aaa97.html">5月2日，中国驻美国大使馆举办开放日暨陕西省推介活动。</a></h2>
                    </div>
                    <div style="display:none;">5bd54e59a3101a87ca8ff606</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54dd6a3101a87ca8ff5f8/5bd54e59a3101a87ca8ff606">中国日报专稿</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80c0ea310942cc49aaa96.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f80c0ea310942c0d5fea37.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80c0ea310942cc49aaa96.html">“五一”假期首日新能源汽车充电量同比增长55.6%</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80c0ea310942cc49aaa96.html">“五一”假期首日，高速公路新能源汽车充电量达到2303.39万千瓦时，同比增长55.6%，充电服务次数超94.63万次，刷新“五一”假期首日充电量历史纪录。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
            <div class="Home_content_AD" data-ad-id="55">
            </div>
            
              
              
              
              
              
              
              
              
              
              
              
              
              
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80a19a310942cc49aaa95.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f80a19a310942c0d5fea34.png" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80a19a310942cc49aaa95.html">亚行将为亚太地区两项新倡议提供700亿美元支持</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80a19a310942cc49aaa95.html">亚洲开发银行3日宣布，到2035年，亚行将为“泛亚电网倡议”和“亚太数字高速公路”两项新倡议提供700亿美元资金支持，推动亚太地区电网互联、扩大地区跨境电力贸易并改进宽带接入状况。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7efe3a310942cc49aaa7d.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f7efe3a310942c0d5fe9ee.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7efe3a310942cc49aaa7d.html">中国队3-1战胜法国队 夺得第12个汤姆斯杯冠军</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7efe3a310942cc49aaa7d.html">北京时间5月4日，2026汤姆斯杯世界男子羽毛球团体锦标赛决赛，中国队3-1战胜法国队，中国队夺得第12个汤姆斯杯冠军。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7ee64a310942cc49aaa7c.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/04/69f7f001a310942c0d5fe9f1.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7ee64a310942cc49aaa7c.html">伦敦世乒赛团体赛：中国男队遭两连败 女队迎三连胜</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7ee64a310942cc49aaa7c.html">伦敦世乒赛团体赛3日结束了种子队排位赛。中国男队以2:3不敌瑞典队，遭遇两连败；中国女队3:0战胜韩国队，取得连续第三场胜利。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
              
                <div class="Home_content_Item">
                  <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f75831a310942cc49aaa78.html"> <img width="200" height="130" src="//img3.chinadaily.com.cn/images/202605/03/69f75831a310942c0d5fe9d8.jpeg" /></a></div>
                  <div class="Home_content_Item_Right">
                    <div class="Home_content_Item_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f75831a310942cc49aaa78.html">主要产油国宣布6月增产</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f75831a310942cc49aaa78.html">当地时间3日，“欧佩克”发表声明，沙特阿拉伯、俄罗斯、伊拉克、科威特、哈萨克斯坦、阿尔及利亚和阿曼调整产量，并重申对稳定市场的承诺。</a></h2>
                    </div>
                    <div style="display:none;">5bd54bdea3101a87ca8ff5f0</div>
                    <span>
                      <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">要闻</a>
                      </span>
                  </div>
                </div>
              
            <style xml:space="preserve">
              /*加载更多*/
              .jiazai{
                margin:20px 0px 0px 0px;
                padding:0px;
                text-align:center;
              }
              .jiazai a:link,.jiazai a:visited{
                margin:0px;
                padding:10px 0px;
                font-size:14px; 
                color:#666;
                text-decoration:none;
                background:#F6F6F6;
                display:block;
              }
              .jiazai a:hover{
                background:#0F416B;
                color:#fff;
              }
            </style>
            <div class="jiazai">
              <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5ee/5bd54bdea3101a87ca8ff5f0">更多&gt;&gt;</a>
              </div>
          </div>
        </div>
        <!-- Home_content_Right -->
        <div class="Home_content_Right">

          <div class="Home_content_Focus_List">
            <ul>

              <li class="Home_content_Focus_List_Title">
                <!--中文首页-时政要闻-头条 5bd54e0aa3101a87ca8ff5fe-->
                
                  
                  
                    <a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f8a541a310942cc49aab2d.html">壹视界·微视频｜温暖的握手</a>
                  </li>
              <!--中文首页-时政要闻-权威发布 5bd54e0aa3101a87ca8ff600-->
              
                
              
              <!--中文首页-时政要闻-权威发布 5bd54e0aa3101a87ca8ff600-->
              
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f92842a310942cc49aab34.html">感受“五一”假期里的书香氤氲</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f8923da310942cc49aab1d.html">多重焕新优惠激发假日消费活力</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f891e0a310942cc49aab1b.html">在“十五五”火热实践中书写青春华章</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f92894a310942cc49aab35.html">东京审判80年 日本军国主义潜滋暗长</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f890dda310942cc49aab14.html">五一档票房破6亿 “电影+”激活假日经济新活力</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f893aea310942cc49aab21.html">国际人士：警惕日本军国主义死灰复燃</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f89340a310942cc49aab1f.html">跨越国界的寻证 法国友人移交一批日本侵华资料</a></li>
                
              
              <!--中文首页-时政要闻-推荐位 	5bd54e0aa3101a87ca8ff5fa-->
              
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/17/WS69e1cc45a310942cc49a8154.html">树立和践行正确政绩观学习教育专题</a></li>
                
              
            </ul>
            <p>
              
                <a target="_blank" shape="rect" href="//china.chinadaily.com.cn/5bd5639ca3101a87ca8ff636">更多&gt;</a>
              </p>
          </div>

          <div class="Home_FourType_Div">
            <div class="Home_FourType_Title">
              <ul>
                <li class="Now" id="FourType1">
                  <p>时政</p>
                </li>
                <li id="FourType2">
                  <p>C财经</p>
                </li>
                <li id="FourType3">
                  <p>资讯</p>
                </li>

              </ul>
            </div>
            <div class="Home_FourType_Item_Div">
              <!--中文首页-栏目推荐-时政 	5bd549b9a3101a87ca8ff5d8-->
              <div class="FourType_Item TypeItem1 ShowItem">
                
                  
                    <div class="FourType_Block FourType_Block1"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202206/24/WS5c0a3e95a3101a87ca947cf3.html">核心观</a></div>
                    
                    
                    
                    
                  
                  
                    
                    <div class="FourType_Block FourType_Block2"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202305/04/WS5f113b6fa310a859d09d881d.html">中部崛起</a></div>
                    
                    
                    
                  
                  
                    
                    
                    <div class="FourType_Block FourType_Block1"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202007/17/WS5f113e8da310a859d09d8835.html">中国日报网评</a></div>
                    
                    
                  
                  
                    
                    
                    
                    <div class="FourType_Block FourType_Block2"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202007/17/WS5f113c4aa310a859d09d8820.html">两岸同心</a></div>
                    
                  
                  
                    
                    
                    
                    
                    <div class="FourType_Block FourType_Block3"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202005/16/WS5ebfdd72a310eec9c72b96e8.html">新时代我在中国</a></div>
                  
                
              </div>
              <!--中文首页-栏目推荐-财经 5bd549b9a3101a87ca8ff5dc-->
              <div class="FourType_Item TypeItem2">
                
                  
                    <div class="FourType_Block FourType_Block1"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202511/19/WS691d24f2a310942cc4992275.html">中国有约</a></div>
                    
                    
                    
                    
                  
                  
                    
                    <div class="FourType_Block FourType_Block2"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202305/04/WS5c0a1e62a3101a87ca947bef.html">证券</a></div>
                    
                    
                    
                  
                  
                    
                    
                    <div class="FourType_Block FourType_Block1"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202305/04/WS5c0a1f39a3101a87ca947bf4.html">独好会昌</a></div>
                    
                    
                  
                  
                    
                    
                    
                    <div class="FourType_Block FourType_Block2"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202108/20/WS611f6bbba3101e7ce975fa8f.html">传媒动态</a></div>
                    
                  
                  
                    
                    
                    
                    
                    <div class="FourType_Block FourType_Block3"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202010/14/WS5f86aff6a3101e7ce97293ed.html">微观中国</a></div>
                  
                
              </div>
              <!--中文首页-栏目推荐-资讯 5bd549b9a3101a87ca8ff5de-->
              <div class="FourType_Item TypeItem3">
                
                  
                    <div class="FourType_Block FourType_Block1"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202007/17/WS5f113d3da310a859d09d882b.html">新时代大讲堂</a></div>
                    
                    
                    
                    
                  
                  
                    
                    <div class="FourType_Block FourType_Block2"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202205/20/WS5be56adca3101a87ca91fe19.html">海外手记</a></div>
                    
                    
                    
                  
                  
                    
                    
                    <div class="FourType_Block FourType_Block1"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202007/17/WS5f1139a0a310a859d09d8819.html">侨一瞧</a></div>
                    
                    
                  
                  
                    
                    
                    
                    <div class="FourType_Block FourType_Block2"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202007/17/WS5f113927a310a859d09d87f4.html">新闻热词</a></div>
                    
                  
                  
                    
                    
                    
                    
                    <div class="FourType_Block FourType_Block3"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202008/06/WS5bebd450a3101a87ca93778c.html">中国那些事儿</a></div>
                  
                
              </div>

            </div>
          </div>
          <div style="margin-top:30px;" data-ad-id="59">
          </div>
          <!--专栏	5bd5681fa3101a87ca8ff674 中国日报网评 5da42f19a31099ab995e554d-->
          <div class="Home_ZhuanLan_Div">
            <div class="Home_LanMu_Title">
              <a href="javascript:void(0)" shape="rect"><span onclick="javascript:window.open('https://column.chinadaily.com.cn/','_blank')">专栏</span> · <span onclick="javascript:window.open('http://cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/wangping','_blank')">网评</span></a>
            </div>
            <div class="Home_ZhuanLan">
              
                
                  <div class="Home_ZhuanLan_Pic">
                    <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/19/WS69e43586a310942cc49a8406.html">
                      <img src="//img3.chinadaily.com.cn/images/202604/23/69e9ecc3a310942c0d5f9a08.jpeg" /></a>
                  </div>
                  <div class="Home_ZhuanLan_Text_Div">
                    <div class="Home_ZhuanLan_Text">
                      <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/19/WS69e43586a310942cc49a8406.html">机器人跑起来，更像人类的伙伴</a></h1>
                      <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/19/WS69e43586a310942cc49a8406.html">4月19日上午，2026北京亦庄半程马拉松暨人形机器人半程马拉松正式开跑。</a></h2>
                    </div>
                    <p style="display:none;"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/19/WS69e43586a310942cc49a8406.html">更多&gt;</a></p>
                  </div>
                
              


            </div>
          </div>
          <!-- 中国日报网评 5da42f19a31099ab995e554d-->
          <div class="Home_WangPing_Div" style="margin-top:5px;">
            <!--观天下-中国日报-中国日报网评	5da42f19a31099ab995e554d-->
            <div class="Home_RightList">
              
                <ul>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/15/WS69df9ad3a310942cc49a7d0f.html">四点主张：照亮中东和平之路的一盏明灯</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202604/14/WS69de334fa310942cc49a796a.html">西班牙观察家：首相四年四访华，尽显马德里的务实与自主</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//column.chinadaily.com.cn/a/202603/23/WS69c0f1f7a310942cc49a479c.html">京津冀协同创新 擘画科创与产业融合新图景</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202603/12/WS69b21657a310942cc49a2a95.html">还中东以秩序，还人民以安宁，还世界以和平</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//column.chinadaily.com.cn/a/202603/05/WS69a8df2aa310942cc49a18bd.html">资本共振下，中国具身智能开启产业革命新征程</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202602/10/WS698a960ea310942cc499f02f.html">【漫评】车厢“动静”分区温暖春运回家路</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202602/09/WS69893d13a310942cc499ed38.html">高铁夜宵暖心登场，让返乡之路体验更美好</a></li>
                  
                </ul>
              
            </div>
          </div>
          <!--右侧广告 E1-->
          <script type="text/javascript" charset="utf-8" rel="stylesheet" src="https://www.chinadaily.com.cn/js/2023/lunbo_ad.js" xml:space="preserve"></script> 
          <div style="min-height:700px;">
            <!-- AdSame ShowCode: 中国日报中文网首页擎天柱广告 start -->
          <script type="text/javascript" src="https://ads.chinadaily.com.cn/advertising/api/web/wadStatistic/17.js" xml:space="preserve"> </script>		
            <!-- AdSame ShowCode: 中国日报中文网首页擎天柱广告 end --> 

          </div>
          <!--中文首页-中国日报漫画 5bd54ba2a3101a87ca8ff5e8-->
          <div class="Home_ManHua_Div">
            <div class="Home_LanMu_Title">
              
                <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5e8">中国日报漫画</a>
              
            </div>
            <div class="Home_ManHua">
              
                
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f2cd77a310942cc49aa472.html">美国政府往往是事件发生后再想办法“找理由”</a></h1>
                  <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f2cd77a310942cc49aa472.html"><img src="//img3.chinadaily.com.cn/images/202604/30/69f2cd77a310942c0d5fd272.jpeg" /></a></p>
                 
              
            </div>
          </div>
          <!--中国那些事 5d639563a31099ab995dbb57-->
          <div class="Home_ChinaInfo_Div">
            <div class="Home_LanMu_Title">
              
                <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/Teahouse">中国那些事儿</a>
              
            </div>
            <div class="Home_ChinaInfo">
              <div class="Home_ManHua">
                
                  
                    <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f31f32a310942cc49aa73b.html">【中国那些事儿】数字科技搭建中美青年交流新桥梁：中国比想象中更潮、更有趣</a></h1>
                    <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f31f32a310942cc49aa73b.html"><img src="//img3.chinadaily.com.cn/images/202604/30/69f31f32a310942c0d5fda36.png" /></a></p>
                    <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f31f32a310942cc49aa73b.html">如同当年的“乒乓外交”打破中美关系的“坚冰”，为两国关系正常化奠定基础。如今日新月异的新兴数字技术，正在为两国民间人文交流打开全新大门。</a></h2>
                  
                  
                    <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f30919a310942cc49aa5f6.html">【中国那些事儿】外媒：长期稳定政策构筑中国科研全球领先优势</a></h1>
                    <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f30919a310942cc49aa5f6.html"><img src="//img3.chinadaily.com.cn/images/202604/30/69f30a7ca310942c0d5fd6e9.jpeg" /></a></p>
                    <h2><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f30919a310942cc49aa5f6.html">中国近年来在基础科学和教育领域持续加大投入，展现出对长期科研稳定的高度重视，取得了显著成就。</a></h2>
                  
                
              </div>
            </div>
          </div>

          <!--中文首页-地方新闻联播	5bd549f1a3101a87ca8ff5e2-->
          <div class="Home_Local_Div">
            <div class="Home_LanMu_Title">
              
                <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd549f1a3101a87ca8ff5e2">地方新闻联播</a>
              
            </div>
            <div class="Home_RightList">
              
                <ul>
                  
                    <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f32e04a310942cc49aa78e.html">CD记录|发力“词元经济”，贵州打造AI时代新增长极</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cnews.chinadaily.com.cn/a/202604/30/WS69f2b9a8a310942cc49aa401.html">深圳进一步优化调整房地产政策</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cnews.chinadaily.com.cn/a/202604/30/WS69f2b9a7a310942cc49aa3ff.html">2026年中国网络文明大会将在广西南宁举办</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cnews.chinadaily.com.cn/a/202604/30/WS69f2b9a7a310942cc49aa3fd.html">2025年度全国十大考古新发现揭晓</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cnews.chinadaily.com.cn/a/202604/30/WS69f2b99ca310942cc49aa3fb.html">4月全国经济社会发展观察：春深行稳蓄势能</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/22/WS69e8218fa310942cc49a8c3f.html">从中小学春假看教育和文旅“双向奔赴”</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cnews.chinadaily.com.cn/a/202604/22/WS69e8220ea310942cc49a8c44.html">赴亚沙之约 展开放风采——写在第六届亚洲沙滩运动会开幕之际</a></li>
                  
                </ul>
              
            </div>
          </div>
          <div style="margin-top:10px; "><a href="http://www.12377.cn/node_548446.htm" target="_blank" shape="rect"><img border="0" src="//img3.chinadaily.com.cn/static/2022cn_index/img/ad.jpg" /></a></div>
          <!-- 右侧广告C1 -->
          
            
          
          <!-- 右侧广告D1 -->
          
            
          
          <!--中文首页 中文原创新闻 			5bd54dd6a3101a87ca8ff5f8-->
          <div class="Home_Express_Div">
            <div class="Home_LanMu_Title">
              
                <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54dd6a3101a87ca8ff5f8">新闻速递</a>
              
            </div>
            <div class="Home_RightList">
              
                <ul>
                  
                    <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f934b7a310942cc49aab39.html">立夏·呼伦贝尔</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//yn.chinadaily.com.cn/a/202605/04/WS69f8986aa310942cc49aab24.html">云南绥江：干部常态化下访 走心服务走进群众心坎</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//yn.chinadaily.com.cn/a/202605/04/WS69f89868a310942cc49aab23.html">多民族盛装巡游 万人欢捉神鱼 第二十届孟连娜允神鱼节燃动边城</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//xj.chinadaily.com.cn/a/202605/04/WS69f8820ea310942cc49aab13.html">“福在呼图壁”第五届福禄文化主题活动启幕：文旅融合点亮幸福乡村</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//xj.chinadaily.com.cn/a/202605/04/WS69f8730aa310942cc49aaafc.html">五四精神传薪火 万米高空致青春</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f86fffa310942cc49aaafa.html">【世界说】美媒揭美国制造AI舆论套路：上亿“暗钱”织网，网红成“隐形游说工具”</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f86fcba310942cc49aaaf9.html">王紫莹：“世界冠军”无需附加前缀</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f86eb8a310942cc49aaaf8.html">第六届北京市健身瑜伽公开赛圆满落幕</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//shx.chinadaily.com.cn/a/202605/04/WS69f8613fa310942cc49aaae7.html">绥德检察开展知识产权普法宣传 赋能西部知识产权强省建设</a></li>
                  
                  
                    <li><a target="_blank" shape="rect" href="//hain.chinadaily.com.cn/a/202605/04/WS69f84ea1a310942cc49aaad1.html">七人接力救助溺水游客，海南万宁表彰见义勇为先进典型</a></li>
                  
                </ul>
              
            </div>
          </div>
          <!--国传嵌入广告-->

          <iframe src="//regional.chinadaily.com.cn/cn/n_19228.htm" style="width:100%;height:128px;" frameborder="0" scrolling="no"></iframe> 
        </div>
        <div class="clearBoth"></div>
      </div>
      <!--show mobile手机显示pc页面返回mobile部分-->
      <div class="mobileView" id="mobileView">
        <div class="mobileView-language">
          <div class="mobileView-button mvl-english">
            <a href="//www.chinadaily.com.cn" target="_blank" style="color:#5077aa; text-decoration:none;" shape="rect">English</a>
          </div>
          <div class="mobileView-button mvl-chinese">
            <a href="//cn.chinadaily.com.cn" target="_blank" shape="rect">中文</a>
          </div></div>
        <div class="mobileView-button mobileView-phone" onclick="transView()"><img src="//img3.chinadaily.com.cn/static/2022cn_index/img/cn-mo.png" /></div>
      </div>
      <!--show mobile手机显示pc页面返回mobile部分- end -->
      <!--底部 -->
      
      <div class="dibu">
        <div class="foot">
          <div class="foot-left">
            <div class="en-lo"><a href="https://cn.chinadaily.com.cn" target="_blank"><img src="https://cn.chinadaily.com.cn/image/2025/logo_cnbottom.png" style="width:165px;" /></a></div>

            <div class="foot-lian"><span><a href="https://cn.chinadaily.com.cn/5b753f9fa310030f813cf408/5f59c820a31009ff9fddf6bc/5f59c843a31009ff9fddf6bf/" target="_blank">关于我们</a></span> 

              <span>|</span> 

              <span><a href="https://cn.chinadaily.com.cn/5b753f9fa310030f813cf408/5f59c820a31009ff9fddf6bc/5f59c843a31009ff9fddf6c2/" target="_blank">联系我们</a></span></div>
          </div>
          <div class="foot-right">
            <div class="foot-one">
              <ul>
                <li><a href="https://cn.chinadaily.com.cn/" target="_blank">首页</a></li>

                <li><a href="https://china.chinadaily.com.cn/" target="_blank">时评</a></li>

                <li><a href="https://world.chinadaily.com.cn/" target="_blank">资讯</a></li>

                <li><a href="https://caijing.chinadaily.com.cn/" target="_blank">财经</a></li>

                <li><a href="https://fashion.chinadaily.com.cn/" target="_blank">生活</a></li>


                <li><a href="https://kan.chinadaily.com.cn/" target="_blank">视频</a></li>

                <li><a href="https://column.chinadaily.com.cn/" target="_blank">专栏</a></li>

                <li><a href="http://cartoon.chinadaily.com.cn/index.shtml" target="_blank">漫画</a></li>
                <li>
                  <a href="https://cn.chinadaily.com.cn/yuanchuang/" target="_blank">独家</a>
                </li>
                <li><a href="https://cn.chinadaily.com.cn/5b753f9fa310030f813cf408/5f59c820a31009ff9fddf6bc/5f59c843a31009ff9fddf6c5" target="_blank">招聘</a></li>
              </ul>
            </div>
            <div class="foot-two">
              
                <ul>
                  <li>地方频道：</li>
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202008/03/WS5bf649baa3101a87ca945947.html">北京</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202008/03/WS5bf649a5a3101a87ca945946.html">天津</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201912/31/WS5bf6490da3101a87ca945945.html">河北</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201911/27/WS5bf6490ca3101a87ca945944.html">山西</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201910/09/WS5bf6490ba3101a87ca945943.html">辽宁</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201909/03/WS5bf6490aa3101a87ca945942.html">吉林</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201908/08/WS5bf64909a3101a87ca945941.html">黑龙江</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201907/24/WS5bf64908a3101a87ca945940.html">上海</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201906/18/WS5bf64908a3101a87ca94593f.html">江苏</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/31/WS5bf64906a3101a87ca94593e.html">浙江</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/30/WS5bf64904a3101a87ca94593d.html">福建</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/29/WS5bf61df6a3101a87ca94593c.html">江西</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/28/WS5bf61df5a3101a87ca94593b.html">山东</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/27/WS5bf61d80a3101a87ca94593a.html">河南</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/26/WS5bf61d7fa3101a87ca945939.html">湖北</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/25/WS5bf61d7ea3101a87ca945938.html">湖南</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/24/WS5bf61d7da3101a87ca945937.html">广东</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/23/WS5bf61d7ca3101a87ca945936.html">广西</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/22/WS5bf61d7ba3101a87ca945935.html">海南</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/21/WS5bf61d7aa3101a87ca945934.html">重庆</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/20/WS5bf61c86a3101a87ca945933.html">四川</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/19/WS5bf61c2fa3101a87ca945931.html">贵州</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/19/WS5bf61c85a3101a87ca945932.html">云南</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/17/WS5bf61b9aa3101a87ca945930.html">西藏</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/16/WS5bf61b6ca3101a87ca94592f.html">陕西</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/15/WS5bf61b2ba3101a87ca94592e.html">新疆</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/201901/14/WS5bf619efa3101a87ca94592c.html">深圳</a></li>

                  
                </ul>
              
            </div>
            <div class="foot-two">
              
                <ul>
                  <li>友情链接：</li>
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a0aefa3101a87ca947bd1.html">人民网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a2718a3101a87ca947c12.html">新华网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a2716a3101a87ca947c11.html">中国网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a2712a3101a87ca947c0f.html">国际在线</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a2713a3101a87ca947c10.html">央视网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a27cfa3101a87ca947c17.html">中国青年网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a2709a3101a87ca947c0e.html">中国经济网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a27cda3101a87ca947c16.html">中国台湾网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a27cba3101a87ca947c15.html">中国西藏网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202411/26/WS67456ec2a310b59111da591c.html">央广网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a27fea3101a87ca947c18.html">光明网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202411/26/WS67456ca6a310b59111da590d.html">中国军网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202009/02/WS5c0a27c7a3101a87ca947c13.html">中国新闻网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202411/26/WS67456ca4a310b59111da590c.html">人民政协网</a></li>

                  
                  
                    <li><a target="_blank" href="https://cn.chinadaily.com.cn/a/202411/26/WS67456554a310b59111da58a2.html">法治网</a></li>

                  
                </ul>


            </div>
            <div class="foot-three">
              <div class="foot-three-left"><a href=""><img src="https://cn.chinadaily.com.cn/image/2016/p-20.jpg" /></a></div>
              <div class="foot-three-right">
                <ul>
                  <!--  <li><a href="//www.12377.cn/" target="_blank">网上有害信息举报专区</a></li>
<li><a href="//about.58.com/fqz/fpzn1.html" target="_blank">防范网络诈骗</a></li> -->
                  <li><a href="https://cn.chinadaily.com.cn/a/202206/16/WS62aaab37a3101c3ee7adad52.html" target="_blank">违法和不良信息举报</a></li> 
                  <li><a href="https://cn.chinadaily.com.cn/image/2025/xwxxfwxkz2025.jpg" target="_blank">互联网新闻信息服务许可证10120170006</a></li>
                  <li>信息网络传播视听节目许可证0108263号</li>	
                  <li><a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502032503" target="_blank">京公网安备11010502032503号</a></li>
                  <li>京网文[2011]0283-097号</li>
                  <li><a href="https://beian.miit.gov.cn" target="_blank">京ICP备13028878号-6</a></li>
                  <!-- <li>12300电信用户申诉受理中心</li>
<li><a>12318全国文化市场举报</a></li>
<li><a href="//www.bj.cyberpolice.cn/index.do" target="_blank">网站网络110报警网站</a></li>	
<li><img cms:pr-src="common/img/wza-logo.png" style="width:150px;height:auto;"/></li> -->
                </ul>
              </div>

            </div>
            <div class="foot-four">
              <div class="foot-four-one">中国日报网版权说明：凡注明来源为“中国日报网：XXX（署名）”，除与中国日报网签署内容授权协议的网站外，其他任何网站或单位未经允许禁止转载、使用，违者必究。如需使用，请与010-84883777联系；凡本网注明“来源：XXX（非中国日报网）”的作品，均转载自其它媒体，目的在于传播更多信息，其他媒体如需转载，请与稿件来源方联系，如产生任何问题与本网无关。</div>
            </div>
            <div class="foot-four">
              <div class="foot-four-one">版权保护：本网登载的内容（包括文字、图片、多媒体资讯等）版权属中国日报网（中报国际文化传媒（北京）有限公司）独家所有使用。 未经中国日报网事先协议授权，禁止转载使用。给中国日报网提意见：rx@chinadaily.com.cn</div>
            </div>

          </div>
        </div>
      </div>
    
      <!--二维码-->
      <div id="identifier-pannel2"><a href="#" shape="rect">C财经客户端 <img height="94" width="94" src="//img3.chinadaily.com.cn/static/2022cn_index/img/C-caijingerweima.png" /> 扫码下载</a></div>
      <div id="identifier-pannel3"><a href="#" shape="rect">Chinadaily-cn <img height="94" width="94" src="//img3.chinadaily.com.cn/static/2022cn_index/img/rwm_cn.png" />中文网微信</a></div>
      <div id="zd" class="abs"><a id="totop" title="" style="display: block;" shape="rect"></a></div>
    </div>
    <div class="mobile">
      <div class="top_phone">
        <div class="header_top Cen1200">
          <div class="header_img">
            <img class="nav_phone_logo" src="//img3.chinadaily.com.cn/static/2022cn_index/img/Icon_Menu.png" />
          </div>
          <div class="header_top_Logo">
            <a href="https://cn.chinadaily.com.cn" target="_top" shape="rect">
              <img src="https://cn.chinadaily.com.cn/image/2025/logo_cntop.png" />
            </a>
          </div>
          <div class="Artical_Share_BT2"><EM></EM>
          </div>
        </div>
      </div>
      <div class="Menu_div">
        <div class="Menu">
          <p><a href="#" shape="rect"><img class="navClose" src="//img3.chinadaily.com.cn/static/2022cn_index/img/Icon_MenuClose.png" /></a></p>
          <ul>
            <li class="nav_Latest"><a href="https://www.chinadaily.com.cn" target="_top" shape="rect">China Daily Homepage</a></li>
            <li><a href="https://cn.chinadaily.com.cn/" target="_top" shape="rect">中文网首页</a></li>
            <li><a href="https://china.chinadaily.com.cn/" target="_top" shape="rect">时评</a></li>
            <li><a href="https://world.chinadaily.com.cn/" target="_top" shape="rect">资讯</a></li>
            <li><a href="https://caijing.chinadaily.com.cn/" target="_top" shape="rect">C财经</a></li>
            <li><a href="https://fashion.chinadaily.com.cn/" target="_top" shape="rect">生活</a></li>
            <li><a href="https://kan.chinadaily.com.cn/" target="_top" shape="rect">视频</a></li>
            <li><a href="https://column.chinadaily.com.cn/" target="_top" shape="rect">专栏</a></li>
            <!--   <li><a href="https://language.chinadaily.com.cn/" target="_top" shape="rect">双语</a></li>	-->
            <li><a href="https://cartoon.chinadaily.com.cn/" target="_top" shape="rect">漫画</a></li>
            <li><a href="https://cn.chinadaily.com.cn/yuanchuang/" target="_top" shape="rect">原创</a></li>
            <li><a href="https://cn.chinadaily.com.cn/gtx/" target="_top" shape="rect">观天下</a></li>
            <li><a href="https://cnews.chinadaily.com.cn" target="_blank" shape="rect">地方频道</a></li>
          </ul>
        </div>
      </div>
      <div class="Share_Box">
        <ul>
          <li>
            <a href="https://cn.chinadaily.com.cn/a/202407/01/WS66823b37a3107cd55d2694da.html" target="_blank" shape="rect"><img src="//img3.chinadaily.com.cn/static/2022cn_index/img/Artical_Share_Icon1.png" /></a>
          </li>
          <li><a href="https://service.weibo.com/share/share.php?appkey=2152474398&amp;type=3&amp;title=中国日报网-传播中国，影响世界&amp;pic=https://www.chinadaily.com.cn/image_e/2020/logo21.jpg&amp;url=http://cn.chinadaily.com.cn" target="_blank" shape="rect"><img alt="weibo" src="//img3.chinadaily.com.cn/static/2022cn_index/img/Artical_Share_Icon2.png" /></a></li>
          <li><a href="https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?title=中国日报网-传播中国，影响世界&amp;pics=https://www.chinadaily.com.cn/image_e/2020/logo21.jpg&amp;url=http://cn.chinadaily.com.cn" target="_blank" shape="rect"><img alt="qqzone" src="//img3.chinadaily.com.cn/static/2022cn_index/img/Artical_Share_Icon3.png" /></a></li>
          <!--  <li><a th:href="'https://www.facebook.com/sharer.php?title=' + ${story.title} + '&amp;u=' + ${story.url}" target="_blank"><img cms:pr-src="img/Artical_Share_Icon4.png" alt="facebook"/></a></li>
<li><a th:href="'http://www.linkedin.com/shareArticle?mini=true&amp;title='+ ${story.title} + '&amp;url=' + ${story.url}" target="_blank"><img cms:pr-src="img/Artical_Share_Icon5.png" alt="linkedin"/></a></li>
<li><a th:href="'https://twitter.com/share?text='+ ${story.title} + '&amp;url=' + ${story.url}" target="_blank"><img cms:pr-src="img/Artical_Share_Icon6.png" alt="x"/></a></li>	-->
        </ul>
        <p>
          <Span class="Share_Close">关闭</Span>
        </p>
      </div>
      <!-- Home_content -->
      <div class="Home_content_Div Cen1200">
        <div class="Home_content_Left_Title_Div">
          <!-- 中文首页-时政要闻-头条 5bd54e0aa3101a87ca8ff5fe -->
          
            
              <h1>
                <a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f8a2d1a310942cc49aab25.html">追光的你丨青春正当时</a>
              </h1>

            
          
        </div>
        <div class="mHome_content_Left_Swiper">
          <div class="swiper-wrapper">
            
              
                <div class="swiper-slide">
                  <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80458a310942cc49aaa8a.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f80458a310942c0d5fea27.jpeg" /></a></p>
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80458a310942cc49aaa8a.html">青年朋友的知心人</a></h1>
                </div>
              
              
                <div class="swiper-slide">
                  <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f934b7a310942cc49aab39.html"><img src="//img3.chinadaily.com.cn/images/202605/05/69f934b7a310942c0d5fec86.jpeg" /></a></p>
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f934b7a310942cc49aab39.html">立夏·呼伦贝尔</a></h1>
                </div>
              
              
                <div class="swiper-slide">
                  <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f829b8a310942cc49aaaa0.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f829b8a310942c0d5fea4d.jpeg" /></a></p>
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f829b8a310942cc49aaaa0.html">韩国驻华大使：露比还是拉布布？年轻人全喜欢</a></h1>
                </div>
              
              
                <div class="swiper-slide">
                  <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f75745a310942cc49aaa75.html"><img src="//img3.chinadaily.com.cn/images/202605/03/69f75745a310942c0d5fe9d2.jpeg" /></a></p>
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f75745a310942cc49aaa75.html">新时代我国基础研究实现新飞跃</a></h1>
                </div>
              
              
                <div class="swiper-slide">
                  <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f6ff1aa310942cc49aaa05.html"><img src="//img3.chinadaily.com.cn/images/202605/03/69f6ff1aa310942c0d5fe84a.jpeg" /></a></p>
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f6ff1aa310942cc49aaa05.html">80年前的今天，这场正义的审判首次开庭</a></h1>
                </div>
              
            
          </div>
          <div class="mHome_content_pagination swiper-pagination"></div>
        </div>
        <!-- 11111 -->

        <!-- 中文首页-时政要闻-头条 5bd54e0aa3101a87ca8ff5fe -->
        
          
          
            <div class="Home_ManHua">
              <h1><a target="_blank" style="font-weight:bold;" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f8a541a310942cc49aab2d.html">壹视界·微视频｜温暖的握手</a></h1>
            </div>
          
        
        <!--中文首页-时政要闻-权威发布 5bd54e0aa3101a87ca8ff600-->
        
          
        
        
          
            <div class="Home_ManHua">
              <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f92842a310942cc49aab34.html">感受“五一”假期里的书香氤氲</a></h1>
            </div>
          
          
            <div class="Home_ManHua">
              <h1><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f8923da310942cc49aab1d.html">多重焕新优惠激发假日消费活力</a></h1>
            </div>
          
          
            <div class="Home_ManHua">
              <h1><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f891e0a310942cc49aab1b.html">在“十五五”火热实践中书写青春华章</a></h1>
            </div>
          
          
            <div class="Home_ManHua">
              <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f92894a310942cc49aab35.html">东京审判80年 日本军国主义潜滋暗长</a></h1>
            </div>
          
          
            <div class="Home_ManHua">
              <h1><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f890dda310942cc49aab14.html">五一档票房破6亿 “电影+”激活假日经济新活力</a></h1>
            </div>
          
          
            <div class="Home_ManHua">
              <h1><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f893aea310942cc49aab21.html">国际人士：警惕日本军国主义死灰复燃</a></h1>
            </div>
          
          
            <div class="Home_ManHua">
              <h1><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202605/04/WS69f89340a310942cc49aab1f.html">跨越国界的寻证 法国友人移交一批日本侵华资料</a></h1>
            </div>
          
        
        <!--中文首页-时政要闻-推荐位 	5bd54e0aa3101a87ca8ff5fa-->
        
          
            <div class="Home_ManHua">
              <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/17/WS69e1cc45a310942cc49a8154.html">树立和践行正确政绩观学习教育专题</a></h1>
            </div>
          
        
        <div class="Home_Right_Ad" style="margin-bottom:10px;">
          <a href="https://cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/Overseas" target="_top" shape="rect"><img src="//img3.chinadaily.com.cn/static/2022cn_index/img/ad20250905.jpg" /></a>
        </div>
        <div class="Home_content_Focus_List">
          <div class="Home_LanMu_Title">
            <a href="https://china.chinadaily.com.cn/5bd5639ca3101a87ca8ff636" target="_top" shape="rect">要闻</a>
          </div>
        </div>

        <!--中文首页-当日要闻-要闻5bd54bdea3101a87ca8ff5f0-->
        
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7ed30a310942cc49aaa7a.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f7ed30a310942c0d5fe9e1.png" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7ed30a310942cc49aaa7a.html">中国青年，风华正茂</a></h1>
                </div>
              </div>
            </div>
          

        
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933bfa310942cc49aab36.html"><img src="//img3.chinadaily.com.cn/images/202605/05/69f933bfa310942c0d5fec7b.png" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933bfa310942cc49aab36.html">伊朗第一副总统：管控霍尔木兹海峡是伊朗的合法权利</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933bfa310942cc49aab37.html"><img src="//img3.chinadaily.com.cn/images/202605/05/69f933bfa310942c0d5fec80.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933bfa310942cc49aab37.html">俄罗斯国防部宣布5月8日至9日停火</a></h1>
                </div>
              </div>
            </div>
          
        
      </div>

      <div class="Home_content_Div Cen1200">
        <!--中文首页-当日要闻-要闻5bd54bdea3101a87ca8ff5f0-->
        
          
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933c0a310942cc49aab38.html"><img src="//img3.chinadaily.com.cn/images/202605/05/69f933c0a310942c0d5fec83.png" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f933c0a310942cc49aab38.html">泽连斯基宣布乌方6日零时起实施单方面停火</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8745da310942cc49aab02.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f8745da310942c0d5febcf.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8745da310942cc49aab02.html">广西贵港通报一户房屋被拆除：成立专项工作组</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8744da310942cc49aab01.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f8744da310942c0d5febcc.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8744da310942cc49aab01.html">外交部发言人就孟加拉国外长卡利勒访华答记者问</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743fa310942cc49aab00.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f8743fa310942c0d5febc7.png" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743fa310942cc49aab00.html">古巴感谢哥伦比亚总统声援</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743da310942cc49aaaff.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f8743da310942c0d5febc4.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743da310942cc49aaaff.html">一艘被美扣押伊朗货船上的22名船员转移至巴基斯坦</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743ba310942cc49aaafe.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f8743ba310942c0d5febc1.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f8743ba310942cc49aaafe.html">波音因737 MAX坠机事故再遭民事起诉</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f87438a310942cc49aaafd.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f87438a310942c0d5febbc.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f87438a310942cc49aaafd.html">伊朗公布伊控制下的霍尔木兹海峡地区新地图</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f837bfa310942cc49aaaaa.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f837bfa310942c0d5fea72.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f837bfa310942cc49aaaaa.html">菲律宾马荣火山喷发大量火山灰 致超10万人受灾</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f83799a310942cc49aaaa8.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f83799a310942c0d5fea6f.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f83799a310942cc49aaaa8.html">英国海事贸易组织说一艘油轮在阿联酋附近被击中</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f81b32a310942cc49aaa9e.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f81b32a310942c0d5fea47.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f81b32a310942cc49aaa9e.html">台湾青年：大陆容得下我们的梦想 发展机会多多</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f81350a310942cc49aaa97.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f81350a310942c0d5fea3e.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f81350a310942cc49aaa97.html">中国驻美大使谢锋：遇见大美陕西，感受机遇中国——中国驻美国大使馆举办开放日暨陕西省推介活动</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80c0ea310942cc49aaa96.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f80c0ea310942c0d5fea37.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80c0ea310942cc49aaa96.html">“五一”假期首日新能源汽车充电量同比增长55.6%</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80a19a310942cc49aaa95.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f80a19a310942c0d5fea34.png" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f80a19a310942cc49aaa95.html">亚行将为亚太地区两项新倡议提供700亿美元支持</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7efe3a310942cc49aaa7d.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f7efe3a310942c0d5fe9ee.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7efe3a310942cc49aaa7d.html">中国队3-1战胜法国队 夺得第12个汤姆斯杯冠军</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7ee64a310942cc49aaa7c.html"><img src="//img3.chinadaily.com.cn/images/202605/04/69f7f001a310942c0d5fe9f1.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f7ee64a310942cc49aaa7c.html">伦敦世乒赛团体赛：中国男队遭两连败 女队迎三连胜</a></h1>
                </div>
              </div>
            </div>
          
          
            <div class="Home_content_Item">
              <div class="Home_content_Item_Left"><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f75831a310942cc49aaa78.html"><img src="//img3.chinadaily.com.cn/images/202605/03/69f75831a310942c0d5fe9d8.jpeg" /></a></div>
              <div class="Home_content_Item_Right">
                <div class="Home_content_Item_Text">
                  <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/03/WS69f75831a310942cc49aaa78.html">主要产油国宣布6月增产</a></h1>
                </div>
              </div>
            </div>
          
        
        <!--中文首页 中国日报漫画 5bd54ba2a3101a87ca8ff5e8-->
        <div class="Home_ManHua_Div">
          <div class="Home_LanMu_Title">
            
              <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54ba2a3101a87ca8ff5e8">中国日报漫画</a>
            
          </div>
          
            
              <div class="Home_ManHua">
                <p><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f2cd77a310942cc49aa472.html"><img src="//img3.chinadaily.com.cn/images/202604/30/69f2cd77a310942c0d5fd272.jpeg" /></a></p>
                <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/30/WS69f2cd77a310942cc49aa472.html">美国政府往往是事件发生后再想办法“找理由”</a></h1>
              </div>
            
          
        </div>


        <!--专栏	5bd5681fa3101a87ca8ff674 -->
        <!--观天下-中国日报-中国日报网评	5da42f19a31099ab995e554d-->
        <div class="Home_ZhuanLan_Div">
          <div class="Home_LanMu_Title">
            <a href="javascript:void(0)" shape="rect"><span onclick="javascript:window.open('https://column.chinadaily.com.cn/','_blank')">专栏</span> · <span onclick="javascript:window.open('http://cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/wangping','_blank')">网评</span></a>
          </div>
          
            
              <div class="Home_ZhuanLan">
                <div class="Home_ZhuanLan_Pic">
                  <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/19/WS69e43586a310942cc49a8406.html"><img src="//img3.chinadaily.com.cn/images/202604/23/69e9ecc3a310942c0d5f9a08.jpeg" /></a>
                </div>
                <div class="Home_ZhuanLan_Text_Div">
                  <div class="Home_ZhuanLan_Text">
                    <h1><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/19/WS69e43586a310942cc49a8406.html">机器人跑起来，更像人类的伙伴</a></h1>
                  </div>
                </div>
              </div>
            
          
        </div>

        <div class="Home_WangPing_Div">
          <!--观天下-中国日报-中国日报网评	5da42f19a31099ab995e554d-->
          <div class="Home_RightList">
            
              <ul>
                
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202604/15/WS69df9ad3a310942cc49a7d0f.html">四点主张：照亮中东和平之路的一盏明灯</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//china.chinadaily.com.cn/a/202604/14/WS69de334fa310942cc49a796a.html">西班牙观察家：首相四年四访华，尽显马德里的务实与自主</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//column.chinadaily.com.cn/a/202603/23/WS69c0f1f7a310942cc49a479c.html">京津冀协同创新 擘画科创与产业融合新图景</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202603/12/WS69b21657a310942cc49a2a95.html">还中东以秩序，还人民以安宁，还世界以和平</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//column.chinadaily.com.cn/a/202603/05/WS69a8df2aa310942cc49a18bd.html">资本共振下，中国具身智能开启产业革命新征程</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202602/10/WS698a960ea310942cc499f02f.html">【漫评】车厢“动静”分区温暖春运回家路</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202602/09/WS69893d13a310942cc499ed38.html">高铁夜宵暖心登场，让返乡之路体验更美好</a></li>
                
              </ul>
            
          </div>
        </div>
        <div class="Home_Right_Ad" style="margin-bottom:10px;"> 
          <a href="https://cn.chinadaily.com.cn/gtx/5d63917ba31099ab995dbb29/Teahouse" target="_blank" shape="rect">
            <img src="//img3.chinadaily.com.cn/static/2022cn_index/img/mAD.jpg" />
          </a>
        </div>
        <!--中文首页 中文原创新闻 			5bd54dd6a3101a87ca8ff5f8-->
        <div class="Home_Express_Div">
          <div class="Home_LanMu_Title">
            
              <a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/c/5bd54dd6a3101a87ca8ff5f8">新闻速递</a>
            
          </div>
          <div class="Home_RightList">
            
              <ul>
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/05/WS69f934b7a310942cc49aab39.html">立夏·呼伦贝尔</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//yn.chinadaily.com.cn/a/202605/04/WS69f8986aa310942cc49aab24.html">云南绥江：干部常态化下访 走心服务走进群众心坎</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//yn.chinadaily.com.cn/a/202605/04/WS69f89868a310942cc49aab23.html">多民族盛装巡游 万人欢捉神鱼 第二十届孟连娜允神鱼节燃动边城</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//xj.chinadaily.com.cn/a/202605/04/WS69f8820ea310942cc49aab13.html">“福在呼图壁”第五届福禄文化主题活动启幕：文旅融合点亮幸福乡村</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//xj.chinadaily.com.cn/a/202605/04/WS69f8730aa310942cc49aaafc.html">五四精神传薪火 万米高空致青春</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f86fffa310942cc49aaafa.html">【世界说】美媒揭美国制造AI舆论套路：上亿“暗钱”织网，网红成“隐形游说工具”</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f86fcba310942cc49aaaf9.html">王紫莹：“世界冠军”无需附加前缀</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//cn.chinadaily.com.cn/a/202605/04/WS69f86eb8a310942cc49aaaf8.html">第六届北京市健身瑜伽公开赛圆满落幕</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//shx.chinadaily.com.cn/a/202605/04/WS69f8613fa310942cc49aaae7.html">绥德检察开展知识产权普法宣传 赋能西部知识产权强省建设</a></li>
                
                
                  <li><a target="_blank" shape="rect" href="//hain.chinadaily.com.cn/a/202605/04/WS69f84ea1a310942cc49aaad1.html">七人接力救助溺水游客，海南万宁表彰见义勇为先进典型</a></li>
                
              </ul>
            
          </div>
        </div>
      </div>

      <!-- Mobile_Footer -->
      <div class="Mobile_Footer_Box">
        <div class="Mobile_Footer_Lanmu_Div">
          <ul class="Cen1200">
            <li><a href="//cn.chinadaily.com.cn" target="_top" shape="rect">首页</a></li>
            <li><a href="//china.chinadaily.com.cn" target="_top" shape="rect">时评</a></li>
            <li><a href="//world.chinadaily.com.cn" target="_top" shape="rect">资讯</a></li>
            <li><a href="//caijing.chinadaily.com.cn" target="_top" shape="rect">C财经</a></li>
            <li><a href="//fashion.chinadaily.com.cn/" target="_top" shape="rect">生活</a></li>
            <li><a href="//kan.chinadaily.com.cn" target="_top" shape="rect">视频</a></li>
            <li><a href="//column.chinadaily.com.cn/" target="_top" shape="rect">专栏</a></li>
            <li><a href="https://cnews.chinadaily.com.cn/" target="_top" shape="rect">地方</a></li>
            <li><a href="//cartoon.chinadaily.com.cn/index.shtml" target="_top" shape="rect">漫画</a></li>
            <li><a href="//cn.chinadaily.com.cn/gtx" target="_top" shape="rect">观天下</a></li>
          </ul>
        </div>
        <div class="Mobile_Footer_Lang_Box">
          <div class="Mobile_Footer_Lang_Div Cen1200">
            <span class="LangNow" onclick="transView()" id="showpc">PC版</span>
            <span class="LangNowLine"><a href="https://cn.chinadaily.com.cn" target="_blank" shape="rect">中文</a></span>
            <span><a href="https://www.chinadaily.com.cn" target="_blank" shape="rect">English</a></span>
          </div>
        </div>
        <div class="Mobiel_Footer_Logo_Div">
          <div class="Mobiel_Footer_Logo">
            <a href="https://cn.chinadaily.com.cn" shape="rect"><img src="https://cn.chinadaily.com.cn/image/2025/logo_cnbottom.png" /></a>
          </div>
          <div class="copyright">
            中国日报版权所有<br clear="none" />Content@chinadaily.com.cn
          </div>
        </div>
      </div>


    </div>
    
      <div style="display:none">
        <script type="text/javascript">
          //<![CDATA[
          document.write(unescape("%3Cscript src='//cl2.webterren.com/webdig.js?z=16' type='text/javascript'%3E%3C/script%3E"));
          //]]>
        </script>
        <script type="text/javascript">
          //<![CDATA[
          wd_paramtracker("_wdxid=000000000000000000000000000000000000000000")
          //]]>
        </script>
      </div>
      <!--心动统计系统 -->
      <script src="https://xd.cdurl.cn/xdsens/autotrack.js" type="text/javascript" data-config="{'host':'//xd.cdurl.cn/receiver', 'project':'Chinadailyvideo','token':'a5a00812e91149238d371a308cb61e40'}"></script>
    
    
      <div style="display:none;">
        <!-- CNZZ统计  开始 -->
        <script src="https://s86.cnzz.com/stat.php?id=1975683&amp;web_id=1975683&amp;show=pic1" language="JavaScript"></script>
        <!-- CNZZ统计  结束 --> 
      </div>
    <!--  <script defer="defer" async="async" type="text/javascript" src="https://img2.chinadaily.com.cn/wza/aria.js?appid=0b4dcc17c875352af6dc428bb129ec78" charset="utf-8"></script>	-->
    

  </body>
  <script xml:space="preserve">
    //<![CDATA[
    $(".Home_FourType_Title li").hover(function () {
      var myId = $(this).attr("id");
      var myNum = myId.charAt(8);
      console.log("myNum=" + myNum);
      $(".Home_FourType_Title li").removeClass("Now");
      $(this).addClass("Now");
      $(".FourType_Item").removeClass("ShowItem");
      $(".TypeItem" + myNum).addClass("ShowItem");
    });



    if ($(window).width() <= 600) {
      //移动端
      Mobile_init();
    } else {
      //转pc端
      PC_init();
    }


    function Mobile_init() {
      var swiper1 = new Swiper('.mHome_content_Left_Swiper', {
        slidesPerView: 1,
        centeredSlides: false,

        spaceBetween: 0,
        loop: true,
        pagination: {
          el: '.mHome_content_pagination',
          clickable: true,
        },
        navigation: {
          // nextEl: '.MainBlock_BTNext',
          // prevEl: '.MainBlock_BTPrev',
        },
      });

    }
    // 前移动Menu点击
    $('.nav_phone_logo').click(function () {
      if ($('.top_phone .nav').hasClass('navShow')) {
        // console.log("removeClass");
        $('.top_phone .nav').removeClass('navShow');
      } else {
        // console.log("addClass");
        $('.top_phone .nav').addClass('navShow');
      }
    })

    function PC_init() {
      var swiper1 = new Swiper('.Home_content_Left_Swiper', {
        slidesPerView: 1,
        centeredSlides: false,

        spaceBetween: 0,
        loop: true,
        pagination: {
          el: '.Home_content_pagination',
          clickable: true,
        },
        navigation: {
          // nextEl: '.MainBlock_BTNext',
          // prevEl: '.MainBlock_BTPrev',
        },
      });
      var swiper2 = new Swiper('.Home_content_Special_Swiper', {
        slidesPerView: 3,
        centeredSlides: false,
        paginationClickable: true,
        spaceBetween: 0,
        loop: true,
        pagination: {
          // el: '.Home_content_pagination',
        },
        navigation: {
          nextEl: '.Home_content_Special_BTNext',
          prevEl: '.Home_content_Special_BTPrev',
        },
      });
    }

    //]]>
  </script>
  <script xml:space="preserve" src="//img3.chinadaily.com.cn/static/2022cn_index/js/pubControl.js"></script>
  <script xml:space="preserve">

    //<![CDATA[
    /*var desTime = "2023-10-02 00:00:00";
      var desTimetrap = new Date(desTime).getTime();
      var curTimetrap = new Date().getTime();
      if(curTimetrap<desTimetrap){
        $("#adE1").css("display","block");
      }
      else{$("#adE1").css("display","none");}	*/
    //]]>

  </script>
</html>