103.html 245 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <!-- Mirrored from ndjsxh.dianpar.com:8888/zhengcefagui/178.html by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 25 May 2020 09:53:57 GMT -->
  4. <!-- Added by HTTrack -->
  5. <meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
  6. <head>
  7. <meta charset="UTF-8">
  8. <meta name="renderer" content="webkit|ie-comp|ie-stand">
  9. <meta http-equiv="X-UA-Compatible" content="IE=Edge">
  10. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
  11. <meta http-equiv="Cache-Control" content="no-transform" />
  12. <meta name="applicable-device" content="pc,wap">
  13. <meta name="MobileOptimized" content="width" />
  14. <meta name="HandheldFriendly" content="true" />
  15. <title>交通运输部2021年立法计划s-宁德市建筑工程技术服务行业协会</title>
  16. <meta name="keywords" content="关于拟公布的批福建省装配式钢结构生产基地的公示 ">
  17. <meta name="description" content="各有关单位:  省建筑业协会根据《关于组织推荐装配式钢结构生产基地的函》(闽建办筑函〔2019〕39号)的要求组织推荐,共计26家企业(详见附件)提出申请,经现场核实,共有24个生产基地符合要求,另有2个暂不符合,现予以公示。公示时间为发布之日起5个工作日。  任何单位和个人对公示名单有异议的,均可在公示期间内以书面形...">
  18. <script type="text/javascript" src="../template/default/index/js/jquery-1.12.4.min.js"></script>
  19. <link rel="stylesheet" href="../template/default/index/css/yunu.css">
  20. <link rel="stylesheet" href="../template/default/index/css/swiper.min.css">
  21. <script type="text/javascript" src="../template/default/index/js/yunu.js"></script>
  22. <script type="text/javascript" src="../template/default/index/js/Superslide.js"></script>
  23. <script type="text/javascript" src="../template/default/index/js/swiper.min.js"></script>
  24. </head>
  25. <body>
  26. <div id="pheader"></div>
  27. <div class="main">
  28. <div class="center">
  29. <div class="currson mhide clearfix">
  30. <p>
  31. <a href="../index.html">首页</a>&gt;&gt;<a href="index.html">政策法规</a> </p>
  32. </div>
  33. <div class="page_content clearfix">
  34. <div class="page_tit">
  35. <h3>政策法规</h3>s
  36. </div>
  37. <div class="cat_tit">
  38. <h3>交通运输部2021年立法计划 </h3>
  39. </div>
  40. <div class="content clearfix pt20">
  41. <div class="news-info"><b>
  42. <p style="text-indent: 2em; text-align: center;"><strong>第一类:年内完成部内工作或者公布的立法项目</strong></p>
  43. <p style="text-indent: 2em; text-align: justify;">一、法律、行政法规草案</p>
  44. <p style="text-indent: 2em; text-align: justify;">1.海上交通安全法(修订):法制司会同海事局、水运局、国际合作司、搜救中心、救捞局、中国交通通信信息中心,配合全国人大常委会法工委开展审议修改工作。</p>
  45. <p style="text-indent: 2em; text-align: justify;">2.公路法(修订):法制司会同公路局、综合规划司、财务审计司,配合司法部开展审核修改工作。</p>
  46. <p style="text-indent: 2em; text-align: justify;">3.收费公路管理条例(修订):法制司会同公路局、综合规划司、财务审计司,配合司法部开展审核修改工作。</p>
  47. <p style="text-indent: 2em; text-align: justify;">4.农村公路条例:法制司会同公路局、运输服务司,配合司法部开展审核修改工作。</p>
  48. <p style="text-indent: 2em; text-align: justify;">5.城市公共交通条例:法制司会同运输服务司,配合司法部开展审核修改工作。</p>
  49. <p style="text-indent: 2em; text-align: justify;">6.海商法(修订):法制司会同水运局、国际合作司、海事局、救捞局、大连海事大学,配合司法部开展审核修改工作。</p>
  50. <p style="text-indent: 2em; text-align: justify;">7.铁路法(修订):法制司会同国家铁路局,配合司法部开展审核修改工作。</p>
  51. <p style="text-indent: 2em; text-align: justify;">8.民用航空法(修订):法制司会同中国民用航空局,配合司法部开展审核修改工作。</p>
  52. <p style="text-indent: 2em; text-align: justify;">9.铁路交通事故应急救援和调查处理条例(修订):法制司会同国家铁路局,配合司法部开展审核修改工作。</p>
  53. <p style="text-indent: 2em; text-align: justify;">10.道路运输条例(修订):法制司会同运输服务司,报送国务院后配合司法部开展审核修改工作。</p>
  54. <p style="text-indent: 2em; text-align: justify;">11.内河交通安全管理条例(修订):安全与质量监督管理司负责起草,水运局、搜救中心、海事局、长江航务管理局、珠江航务管理局、中国船级社、中国交通通信信息中心参加,法制司负责部内审核工作,形成送审稿后适时报送国务院。</p>
  55. <p style="text-indent: 2em; text-align: justify;">12.港口法(修订):水运局负责起草,综合规划司、安全与质量监督管理司、海事局、长江航务管理局、珠江航务管理局参加,法制司负责部内审核工作,形成送审稿后适时报送国务院。</p>
  56. <p style="text-indent: 2em; text-align: justify;">二、年内由交通运输部公布或者联合公布的规章</p>
  57. <table width="0" align="center" cellspacing="0" cellpadding="0">
  58. <tbody style="box-sizing: border-box;">
  59. <tr class="firstRow" style="box-sizing: border-box; height: 80px;">
  60. <td width="80" height="60" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black; background-color: transparent;">
  61. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;">
  62. <span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">序号</span></p>
  63. </td>
  64. <td width="250" height="60" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  65. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">规章名称</span></p>
  66. </td>
  67. <td width="180" height="60" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  68. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">送法制司审核时间</span></p>
  69. </td>
  70. <td width="180" height="60" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  71. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">报部务会审议时间</span></p>
  72. </td>
  73. <td width="200" height="60" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  74. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">承办单位</span></p>
  75. </td>
  76. <td width="120" height="60" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  77. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">司局负责人</span></p>
  78. </td>
  79. <td width="120" height="60" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  80. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">责任处室</span></p>
  81. </td>
  82. </tr>
  83. <tr style="box-sizing: border-box; height: 57px;">
  84. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  85. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">1</span></p>
  86. </td>
  87. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  88. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">邮件快件包装管理办法</span></p>
  89. </td>
  90. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  91. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  92. </td>
  93. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  94. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">2</span><span
  95. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  96. </td>
  97. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  98. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">国家邮政局</span></p>
  99. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">市场监管司</span></p>
  100. </td>
  101. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  102. <p style="box-sizing: border-box; margin-bottom: 13px; font-size: 16px; line-height: 27px; vertical-align: middle;"><span
  103. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">管爱光</span></p>
  104. </td>
  105. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  106. <p style="box-sizing: border-box; margin-bottom: 13px; font-size: 16px; line-height: 27px; vertical-align: middle;"><span
  107. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">环境保护处</span></p>
  108. </td>
  109. </tr>
  110. <tr style="box-sizing: border-box; height: 57px;">
  111. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  112. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">2</span></p>
  113. </td>
  114. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  115. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">铁路运输服务质量</span></p>
  116. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">监督管理办法</span></p>
  117. </td>
  118. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  119. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  120. </td>
  121. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  122. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  123. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  124. </td>
  125. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  126. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">国家铁路局</span></p>
  127. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">运输监管司</span></p>
  128. </td>
  129. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  130. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">白晓春</span></p>
  131. </td>
  132. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  133. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">客运监管处</span></p>
  134. </td>
  135. </tr>
  136. <tr style="box-sizing: border-box; height: 57px;">
  137. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  138. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span></p>
  139. </td>
  140. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  141. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">铁路危险货物运输</span></p>
  142. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">安全监督管理规定(修订)</span></p>
  143. </td>
  144. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  145. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  146. </td>
  147. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  148. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  149. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  150. </td>
  151. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  152. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">国家铁路局</span></p>
  153. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">运输监管司</span></p>
  154. </td>
  155. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  156. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">白晓春</span></p>
  157. </td>
  158. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  159. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">货运监管处</span></p>
  160. </td>
  161. </tr>
  162. <tr style="box-sizing: border-box; height: 57px;">
  163. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  164. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">4</span></p>
  165. </td>
  166. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  167. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">公共航空运输旅客服务</span></p>
  168. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">管理规定(修订)</span></p>
  169. </td>
  170. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  171. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  172. </td>
  173. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  174. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  175. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  176. </td>
  177. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  178. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  179. <p style="box-sizing: border-box; margin-bottom: 13px; font-size: 16px; line-height: 27px; vertical-align: middle;"><span
  180. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">运输司</span></p>
  181. </td>
  182. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  183. <p style="box-sizing: border-box; margin-bottom: 13px; font-size: 16px; line-height: 27px; vertical-align: middle;"><span
  184. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">于  彪</span></p>
  185. </td>
  186. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  187. <p style="box-sizing: border-box; margin-bottom: 13px; font-size: 16px; line-height: 27px; vertical-align: middle;"><span
  188. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">综合业务处</span></p>
  189. </td>
  190. </tr>
  191. <tr style="box-sizing: border-box; height: 57px;">
  192. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  193. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">5</span></p>
  194. </td>
  195. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  196. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">民用航空导航设备开放与运行管理规定(修订)</span></p>
  197. </td>
  198. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  199. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  200. </td>
  201. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  202. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  203. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  204. </td>
  205. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  206. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  207. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">空管行业管理办公室</span></p>
  208. </td>
  209. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  210. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">许 
  211. 浩</span></p>
  212. </td>
  213. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  214. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">通信导航</span></p>
  215. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">监视处</span></p>
  216. </td>
  217. </tr>
  218. <tr style="box-sizing: border-box; height: 57px;">
  219. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  220. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span></p>
  221. </td>
  222. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  223. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">大型飞机公共航空运输承运人运行合格审定规则(修正案)</span></p>
  224. </td>
  225. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  226. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  227. </td>
  228. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  229. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  230. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  231. </td>
  232. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  233. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  234. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">飞行标准司</span></p>
  235. </td>
  236. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  237. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">朱 
  238. 涛</span></p>
  239. </td>
  240. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  241. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">运输飞行</span></p>
  242. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">标准处</span></p>
  243. </td>
  244. </tr>
  245. <tr style="box-sizing: border-box; height: 57px;">
  246. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  247. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">7</span></p>
  248. </td>
  249. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  250. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">民用航空通信导航监视设备</span></p>
  251. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">飞行校验管理规则(修订)</span></p>
  252. </td>
  253. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  254. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  255. </td>
  256. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  257. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  258. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  259. </td>
  260. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  261. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  262. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">空管行业管理办公室</span></p>
  263. </td>
  264. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  265. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">许 
  266. 浩</span></p>
  267. </td>
  268. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  269. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">通信导航</span></p>
  270. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">监视处</span></p>
  271. </td>
  272. </tr>
  273. <tr style="box-sizing: border-box; height: 57px;">
  274. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  275. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">8</span></p>
  276. </td>
  277. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  278. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">通用航空安全保卫规则</span></p>
  279. </td>
  280. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  281. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  282. </td>
  283. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  284. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  285. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  286. </td>
  287. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  288. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  289. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">公安局</span></p>
  290. </td>
  291. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  292. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">魏亚军</span></p>
  293. </td>
  294. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  295. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">一处</span></p>
  296. </td>
  297. </tr>
  298. <tr style="box-sizing: border-box; height: 57px;">
  299. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  300. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">9</span></p>
  301. </td>
  302. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  303. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">民用航空器维修单位</span></p>
  304. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">合格审定规定(修订)</span></p>
  305. </td>
  306. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  307. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  308. </td>
  309. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  310. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">4</span><span
  311. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  312. </td>
  313. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  314. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  315. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">飞行标准司</span></p>
  316. </td>
  317. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  318. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">薛世俊</span></p>
  319. </td>
  320. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  321. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">持续适航</span></p>
  322. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">维修处</span></p>
  323. </td>
  324. </tr>
  325. <tr style="box-sizing: border-box; height: 57px;">
  326. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  327. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">10</span></p>
  328. </td>
  329. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  330. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">民航专业工程质量和安全生产管理规定(修订)</span></p>
  331. </td>
  332. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  333. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  334. </td>
  335. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  336. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">4</span><span
  337. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  338. </td>
  339. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  340. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  341. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">机场司</span></p>
  342. </td>
  343. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  344. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">刘春晨</span></p>
  345. </td>
  346. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  347. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">工程监督处</span></p>
  348. </td>
  349. </tr>
  350. <tr style="box-sizing: border-box; height: 57px;">
  351. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  352. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">11</span></p>
  353. </td>
  354. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  355. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">仿印邮票图案管理办法(修订)</span></p>
  356. </td>
  357. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  358. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  359. </td>
  360. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  361. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">4</span><span
  362. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  363. </td>
  364. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  365. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">国家邮政局</span></p>
  366. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">普遍服务司</span></p>
  367. </td>
  368. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  369. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">马旭林</span></p>
  370. </td>
  371. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  372. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">邮票处</span></p>
  373. </td>
  374. </tr>
  375. <tr style="box-sizing: border-box; height: 57px;">
  376. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  377. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">12</span></p>
  378. </td>
  379. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  380. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">一般运行和飞行规则(修订)</span></p>
  381. </td>
  382. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  383. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  384. </td>
  385. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  386. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span><span
  387. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  388. </td>
  389. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  390. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  391. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">飞行标准司</span></p>
  392. </td>
  393. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  394. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">薛世俊</span></p>
  395. </td>
  396. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  397. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">持续适航</span></p>
  398. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">维修处</span></p>
  399. </td>
  400. </tr>
  401. <tr style="box-sizing: border-box; height: 57px;">
  402. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  403. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">13</span></p>
  404. </td>
  405. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  406. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">特殊运营人运行合格审定规则</span></p>
  407. </td>
  408. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  409. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  410. </td>
  411. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  412. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span><span
  413. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  414. </td>
  415. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  416. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  417. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">飞行标准司</span></p>
  418. </td>
  419. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  420. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">韩光祖</span></p>
  421. </td>
  422. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  423. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">通用飞行</span></p>
  424. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">标准处</span></p>
  425. </td>
  426. </tr>
  427. <tr style="box-sizing: border-box; height: 68px;">
  428. <td width="80" height="68" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  429. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">14</span></p>
  430. </td>
  431. <td width="219" height="68" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  432. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">民用航空器驾驶员学校</span></p>
  433. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">合格审定规则(修订)</span></p>
  434. </td>
  435. <td width="68" height="68" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  436. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">已报</span></p>
  437. </td>
  438. <td width="67" height="68" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  439. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span><span
  440. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  441. </td>
  442. <td width="150" height="68" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  443. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  444. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">飞行标准司</span></p>
  445. </td>
  446. <td width="100" height="68" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  447. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">韩光祖</span></p>
  448. </td>
  449. <td width="92" height="68" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  450. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">通用飞行</span></p>
  451. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">标准处</span></p>
  452. </td>
  453. </tr>
  454. <tr style="box-sizing: border-box; height: 57px;">
  455. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  456. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">15</span></p>
  457. </td>
  458. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  459. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">铁路安全质量监督检查办法</span></p>
  460. </td>
  461. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  462. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  463. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  464. </td>
  465. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  466. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span><span
  467. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  468. </td>
  469. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  470. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">国家铁路局</span></p>
  471. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">安全监察司</span></p>
  472. </td>
  473. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  474. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">韩晓根</span></p>
  475. </td>
  476. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  477. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">监察二处</span></p>
  478. </td>
  479. </tr>
  480. <tr style="box-sizing: border-box; height: 57px;">
  481. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  482. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">16</span></p>
  483. </td>
  484. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  485. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">道路危险货物运输</span></p>
  486. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">管理规定(修订)</span></p>
  487. </td>
  488. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  489. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  490. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  491. </td>
  492. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  493. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span><span
  494. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  495. </td>
  496. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  497. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  498. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">运输服务司</span></p>
  499. </td>
  500. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  501. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">李华强</span></p>
  502. </td>
  503. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  504. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">货运与物流</span></p>
  505. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">管理处</span></p>
  506. </td>
  507. </tr>
  508. <tr style="box-sizing: border-box; height: 57px;">
  509. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  510. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">17</span></p>
  511. </td>
  512. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  513. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">一般商业运输和空中游览</span></p>
  514. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">运营人合格审定规则(修订)</span></p>
  515. </td>
  516. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  517. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  518. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  519. </td>
  520. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  521. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span><span
  522. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  523. </td>
  524. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  525. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  526. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">飞行标准司</span></p>
  527. </td>
  528. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  529. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">朱 
  530. 涛</span></p>
  531. </td>
  532. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  533. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">通用飞行</span></p>
  534. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">标准处</span></p>
  535. </td>
  536. </tr>
  537. <tr style="box-sizing: border-box; height: 57px;">
  538. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  539. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">18</span></p>
  540. </td>
  541. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  542. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">民用航空器维修培训机构</span></p>
  543. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">合格审定规定(修订)</span></p>
  544. </td>
  545. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  546. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  547. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  548. </td>
  549. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  550. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span><span
  551. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  552. </td>
  553. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  554. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  555. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">飞行标准司</span></p>
  556. </td>
  557. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  558. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">薛世俊</span></p>
  559. </td>
  560. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  561. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">持续适航</span></p>
  562. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">维修处</span></p>
  563. </td>
  564. </tr>
  565. <tr style="box-sizing: border-box; height: 57px;">
  566. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  567. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">19</span></p>
  568. </td>
  569. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  570. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">正常类飞机适航规定(修订)</span></p>
  571. </td>
  572. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  573. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">3</span><span
  574. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  575. </td>
  576. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  577. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span><span
  578. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  579. </td>
  580. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  581. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  582. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">航空器适航审定司</span></p>
  583. </td>
  584. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  585. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">杨桢梅</span></p>
  586. </td>
  587. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  588. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">适航法规</span></p>
  589. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">标准处</span></p>
  590. </td>
  591. </tr>
  592. <tr style="box-sizing: border-box; height: 57px;">
  593. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  594. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">20</span></p>
  595. </td>
  596. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  597. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输行政执法程序规定</span></p>
  598. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">(修正案)</span></p>
  599. </td>
  600. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  601. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">4</span><span
  602. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  603. </td>
  604. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  605. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">7</span><span
  606. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  607. </td>
  608. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  609. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  610. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">法制司</span></p>
  611. </td>
  612. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  613. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">王海峰</span></p>
  614. </td>
  615. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  616. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">执法监督处</span></p>
  617. </td>
  618. </tr>
  619. <tr style="box-sizing: border-box; height: 57px;">
  620. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  621. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">21</span></p>
  622. </td>
  623. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  624. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">公共航空危险品运输管理规定(修订)</span></p>
  625. </td>
  626. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  627. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">4</span><span
  628. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  629. </td>
  630. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  631. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">7</span><span
  632. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  633. </td>
  634. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  635. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  636. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">运输司</span></p>
  637. </td>
  638. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  639. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">于 
  640. 彪</span></p>
  641. </td>
  642. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  643. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">航空物流处</span></p>
  644. </td>
  645. </tr>
  646. <tr style="box-sizing: border-box; height: 57px;">
  647. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  648. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">22</span></p>
  649. </td>
  650. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  651. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">快递市场管理办法(修订)</span></p>
  652. </td>
  653. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  654. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">4</span><span
  655. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  656. </td>
  657. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  658. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">7</span><span
  659. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  660. </td>
  661. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  662. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">国家邮政局</span></p>
  663. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">市场监管司</span></p>
  664. </td>
  665. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  666. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">边作栋</span></p>
  667. </td>
  668. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  669. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">快递管理处</span></p>
  670. </td>
  671. </tr>
  672. <tr style="box-sizing: border-box; height: 57px;">
  673. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  674. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">23</span></p>
  675. </td>
  676. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  677. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">港口和船舶岸电管理办法</span></p>
  678. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">(修正案)</span></p>
  679. </td>
  680. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  681. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">4</span><span
  682. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  683. </td>
  684. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  685. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">7</span><span
  686. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  687. </td>
  688. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  689. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  690. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">水运局</span></p>
  691. </td>
  692. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  693. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">郑清秀</span></p>
  694. </td>
  695. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  696. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">技术管理处</span></p>
  697. </td>
  698. </tr>
  699. <tr style="box-sizing: border-box; height: 94px;">
  700. <td width="80" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  701. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">24</span></p>
  702. </td>
  703. <td width="219" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  704. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">道路运输车辆动态监督</span></p>
  705. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">管理办法(修正案,与公安部、应急管理部联合发布)</span></p>
  706. </td>
  707. <td width="68" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  708. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span><span
  709. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  710. </td>
  711. <td width="67" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  712. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">9</span><span
  713. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  714. </td>
  715. <td width="150" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  716. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  717. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">运输服务司</span></p>
  718. </td>
  719. <td width="100" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  720. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">李华强</span></p>
  721. </td>
  722. <td width="92" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  723. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">车辆管理处</span></p>
  724. </td>
  725. </tr>
  726. <tr style="box-sizing: border-box; height: 57px;">
  727. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  728. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">25</span></p>
  729. </td>
  730. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  731. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">引航员管理办法(修正案)</span></p>
  732. </td>
  733. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  734. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">6</span><span
  735. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  736. </td>
  737. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  738. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">9</span><span
  739. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  740. </td>
  741. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  742. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  743. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">海事局</span></p>
  744. </td>
  745. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  746. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">寿 
  747. 涛</span></p>
  748. </td>
  749. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  750. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">船员管理处</span></p>
  751. </td>
  752. </tr>
  753. <tr style="box-sizing: border-box; height: 57px;">
  754. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  755. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">26</span></p>
  756. </td>
  757. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  758. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">铁路安全监督管理办法</span></p>
  759. </td>
  760. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  761. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">9</span><span
  762. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  763. </td>
  764. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  765. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">12</span><span
  766. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  767. </td>
  768. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  769. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">国家铁路局</span></p>
  770. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">安全监察司</span></p>
  771. </td>
  772. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  773. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">范宝链</span></p>
  774. </td>
  775. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  776. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">监察一处</span></p>
  777. </td>
  778. </tr>
  779. <tr style="box-sizing: border-box; height: 57px;">
  780. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  781. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">27</span></p>
  782. </td>
  783. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  784. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">铁路建设管理办法(修订)</span></p>
  785. </td>
  786. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  787. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">9</span><span
  788. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  789. </td>
  790. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  791. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">12</span><span
  792. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  793. </td>
  794. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  795. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">国家铁路局</span></p>
  796. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">工程监管司</span></p>
  797. </td>
  798. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  799. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">米 
  800. 隆</span></p>
  801. </td>
  802. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  803. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">建设市场</span></p>
  804. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">监管处</span></p>
  805. </td>
  806. </tr>
  807. <tr style="box-sizing: border-box; height: 57px;">
  808. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  809. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">28</span></p>
  810. </td>
  811. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  812. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">内地与港澳间水路运输</span></p>
  813. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">管理规定</span></p>
  814. </td>
  815. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  816. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">9</span><span
  817. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  818. </td>
  819. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  820. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">12</span><span
  821. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  822. </td>
  823. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  824. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  825. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">水运局</span></p>
  826. </td>
  827. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  828. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">易继勇</span></p>
  829. </td>
  830. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  831. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">国际航运</span></p>
  832. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">管理处</span></p>
  833. </td>
  834. </tr>
  835. <tr style="box-sizing: border-box; height: 57px;">
  836. <td width="80" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  837. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">29</span></p>
  838. </td>
  839. <td width="219" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  840. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">船舶内河污染损害民事责任</span></p>
  841. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">保险实施办法</span></p>
  842. </td>
  843. <td width="68" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  844. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">9</span><span
  845. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  846. </td>
  847. <td width="67" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  848. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">12</span><span
  849. style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">月</span></p>
  850. </td>
  851. <td width="150" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  852. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  853. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">海事局</span></p>
  854. </td>
  855. <td width="100" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  856. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">杨新宅</span></p>
  857. </td>
  858. <td width="92" height="57" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  859. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">危管防污处</span></p>
  860. </td>
  861. </tr>
  862. <tr style="box-sizing: border-box; height: 62px;">
  863. <td width="80" height="62" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  864. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">30</span></p>
  865. </td>
  866. <td width="219" height="62" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  867. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">船舶引航管理规定(修订)</span></p>
  868. </td>
  869. <td width="135" height="62" rowspan="7" colspan="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  870. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">依海上交通安全法修订时间确定</span></p>
  871. </td>
  872. <td width="150" height="62" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  873. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  874. <p style="box-sizing: border-box; margin-bottom: 13px; font-size: 16px; line-height: 30px;"><span style="box-sizing: border-box; line-height: 16.1px; font-family: 宋体; font-size: 14px;">水运局、海事局</span></p>
  875. </td>
  876. <td width="100" height="62" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  877. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">柳 
  878. 鹏</span></p>
  879. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">杨新宅</span></p>
  880. </td>
  881. <td width="92" height="62" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  882. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">港口管理处</span></p>
  883. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">通航管理处</span></p>
  884. </td>
  885. </tr>
  886. <tr style="box-sizing: border-box; height: 53px;">
  887. <td width="80" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  888. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">31</span></p>
  889. </td>
  890. <td width="219" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  891. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事行政许可条件规定</span></p>
  892. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">(修正案)</span></p>
  893. </td>
  894. <td width="150" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  895. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  896. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">海事局</span></p>
  897. </td>
  898. <td width="100" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  899. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">李宏印</span></p>
  900. </td>
  901. <td width="92" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  902. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">政策法规处</span></p>
  903. </td>
  904. </tr>
  905. <tr style="box-sizing: border-box; height: 52px;">
  906. <td width="80" height="52" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  907. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">32</span></p>
  908. </td>
  909. <td width="219" height="52" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  910. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海上海事行政处罚规定(修订)</span></p>
  911. </td>
  912. <td width="150" height="52" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  913. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  914. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">海事局</span></p>
  915. </td>
  916. <td width="100" height="52" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  917. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">李宏印</span></p>
  918. </td>
  919. <td width="92" height="52" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  920. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">政策法规处</span></p>
  921. </td>
  922. </tr>
  923. <tr style="box-sizing: border-box; height: 53px;">
  924. <td width="80" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  925. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">33</span></p>
  926. </td>
  927. <td width="219" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  928. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">水上水下活动通航安全</span></p>
  929. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">管理规定(修订)</span></p>
  930. </td>
  931. <td width="150" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  932. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  933. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">海事局</span></p>
  934. </td>
  935. <td width="100" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  936. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">杨新宅</span></p>
  937. </td>
  938. <td width="92" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  939. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">通航管理处</span></p>
  940. </td>
  941. </tr>
  942. <tr style="box-sizing: border-box; height: 53px;">
  943. <td width="80" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  944. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">34</span></p>
  945. </td>
  946. <td width="219" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  947. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">船舶检验管理规定(修订)</span></p>
  948. </td>
  949. <td width="150" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  950. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  951. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">海事局</span></p>
  952. </td>
  953. <td width="100" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  954. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">李宏印</span></p>
  955. </td>
  956. <td width="92" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  957. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">船舶检验</span></p>
  958. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">管理处</span></p>
  959. </td>
  960. </tr>
  961. <tr style="box-sizing: border-box; height: 53px;">
  962. <td width="80" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  963. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">35</span></p>
  964. </td>
  965. <td width="219" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  966. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">渔业船舶检验管理规定</span></p>
  967. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">(修订)</span></p>
  968. </td>
  969. <td width="150" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  970. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  971. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">海事局</span></p>
  972. </td>
  973. <td width="100" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  974. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">李宏印</span></p>
  975. </td>
  976. <td width="92" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  977. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">船舶检验</span></p>
  978. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">管理处</span></p>
  979. </td>
  980. </tr>
  981. <tr style="box-sizing: border-box; height: 53px;">
  982. <td width="80" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  983. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">36</span></p>
  984. </td>
  985. <td width="219" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  986. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">水上交通事故统计办法(修订,与应急管理部联合发布)</span></p>
  987. </td>
  988. <td width="150" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  989. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  990. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">海事局</span></p>
  991. </td>
  992. <td width="100" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  993. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">杨新宅</span></p>
  994. </td>
  995. <td width="92" height="53" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  996. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">安全管理处</span></p>
  997. </td>
  998. </tr>
  999. </tbody>
  1000. </table>
  1001. <p style="box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; font-size: 16px; line-height: 30px; text-indent: 2em; text-align: justify;">三、因改革要求需要制定或者修订的规章</p>
  1002. <table width="0" align="center" cellspacing="0" cellpadding="0">
  1003. <tbody style="box-sizing: border-box;">
  1004. <tr class="firstRow" style="box-sizing: border-box; height: 47px;">
  1005. <td width="40" height="47" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black; background-color: transparent;">
  1006. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">序号</span></p>
  1007. </td>
  1008. <td width="139" height="47" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1009. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">规章名称</span></p>
  1010. </td>
  1011. <td width="144" height="47" colspan="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1012. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">报法制司审核时间</span></p>
  1013. </td>
  1014. <td width="75" height="47" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1015. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">承办单位</span></p>
  1016. </td>
  1017. <td width="62" height="47" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1018. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">司局负责人</span></p>
  1019. </td>
  1020. <td width="83" height="47" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1021. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">责任处室</span></p>
  1022. </td>
  1023. <td width="157" height="47" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1024. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">制定或者修订原因</span></p>
  1025. </td>
  1026. </tr>
  1027. <tr style="box-sizing: border-box; height: 94px;">
  1028. <td width="40" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1029. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">1</span></p>
  1030. </td>
  1031. <td width="139" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1032. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">公路水运工程监理企业资质管理规定(修订)</span></p>
  1033. </td>
  1034. <td width="144" height="94" colspan="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1035. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">6</span><span
  1036. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">月</span></p>
  1037. </td>
  1038. <td width="75" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1039. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1040. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">公路局、</span></p>
  1041. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">水运局</span></p>
  1042. </td>
  1043. <td width="62" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1044. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">汪 
  1045. 洋</span></p>
  1046. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">郑清秀</span></p>
  1047. </td>
  1048. <td width="83" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1049. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">建设市场</span></p>
  1050. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">监管处</span></p>
  1051. </td>
  1052. <td width="157" height="94" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1053. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">精简公路水运工程</span></p>
  1054. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">监理企业资质等级</span></p>
  1055. </td>
  1056. </tr>
  1057. <tr style="box-sizing: border-box; height: 102px;">
  1058. <td width="40" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1059. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">2</span></p>
  1060. </td>
  1061. <td width="139" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1062. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国际海运条例实施细则(修正案)</span></p>
  1063. </td>
  1064. <td width="144" height="102" colspan="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1065. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">依国际海运条例</span></p>
  1066. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">修订时间确定</span></p>
  1067. </td>
  1068. <td width="75" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1069. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1070. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">水运局</span></p>
  1071. </td>
  1072. <td width="62" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1073. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">易继勇</span></p>
  1074. </td>
  1075. <td width="83" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1076. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国际航运管理处</span></p>
  1077. </td>
  1078. <td width="157" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1079. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国际集装箱船、普通货船运输业务,无船承运业务审批改为备案</span></p>
  1080. </td>
  1081. </tr>
  1082. <tr style="box-sizing: border-box; height: 78px;">
  1083. <td width="40" height="78" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1084. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">3</span></p>
  1085. </td>
  1086. <td width="139" height="78" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1087. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国际道路运输管理规定(修正案)</span></p>
  1088. </td>
  1089. <td width="144" height="78" colspan="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1090. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">依道路运输条例</span></p>
  1091. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">修订时间确定</span></p>
  1092. </td>
  1093. <td width="75" height="78" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1094. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1095. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输服务司</span></p>
  1096. </td>
  1097. <td width="62" height="78" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1098. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">徐亚华</span></p>
  1099. </td>
  1100. <td width="83" height="78" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1101. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">综合处</span></p>
  1102. </td>
  1103. <td width="157" height="78" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1104. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国际道路货物运输</span></p>
  1105. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">许可改为备案</span></p>
  1106. </td>
  1107. </tr>
  1108. <tr style="box-sizing: border-box; height: 50px;">
  1109. <td width="40" height="50" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1110. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">4</span></p>
  1111. </td>
  1112. <td width="139" height="50" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1113. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">道路货物运输及站场管理规定(修正案)</span></p>
  1114. </td>
  1115. <td width="144" height="50" colspan="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1116. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">依道路运输条例</span></p>
  1117. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">修订时间确定</span></p>
  1118. </td>
  1119. <td width="75" height="50" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1120. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1121. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输服务司</span></p>
  1122. </td>
  1123. <td width="62" height="50" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1124. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">李华强</span></p>
  1125. </td>
  1126. <td width="83" height="50" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1127. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">货运与物流</span></p>
  1128. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">管理处</span></p>
  1129. </td>
  1130. <td width="157" height="50" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1131. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">取消道路货物运输站(场)经营许可</span></p>
  1132. </td>
  1133. </tr>
  1134. <tr style="box-sizing: border-box; height: 102px;">
  1135. <td width="40" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1136. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">5</span></p>
  1137. </td>
  1138. <td width="139" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1139. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">机动车驾驶员培训管理规定(修订)</span></p>
  1140. </td>
  1141. <td width="144" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1142. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">依道路交通安全法、道路运输条例</span></p>
  1143. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">修订时间确定</span></p>
  1144. </td>
  1145. <td width="75" height="102" colspan="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1146. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1147. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输</span></p>
  1148. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">服务司</span></p>
  1149. </td>
  1150. <td width="62" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1151. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">李华强</span></p>
  1152. </td>
  1153. <td width="83" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1154. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">车辆</span></p>
  1155. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">管理处</span></p>
  1156. </td>
  1157. <td width="157" height="102" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1158. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">拟将机动车驾驶员</span></p>
  1159. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">培训许可改为备案</span></p>
  1160. </td>
  1161. </tr>
  1162. <tr style="box-sizing: border-box; height: 86px;">
  1163. <td width="40" height="86" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1164. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">6</span></p>
  1165. </td>
  1166. <td width="139" height="86" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1167. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空国内航线经营许可规定(修订)</span></p>
  1168. </td>
  1169. <td width="144" height="86" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1170. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">依国务院文件</span></p>
  1171. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">下发时间确定</span></p>
  1172. </td>
  1173. <td width="75" height="86" colspan="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1174. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  1175. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输司</span></p>
  1176. </td>
  1177. <td width="62" height="86" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1178. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">于 
  1179. 彪</span></p>
  1180. </td>
  1181. <td width="83" height="86" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1182. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国内航空</span></p>
  1183. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输处</span></p>
  1184. </td>
  1185. <td width="157" height="86" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1186. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">“</span><span
  1187. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">证照分离”改革</span></p>
  1188. </td>
  1189. </tr>
  1190. </tbody>
  1191. </table>
  1192. <p style="text-indent: 2em; text-align: center;"><strong>第二类:研究起草,适时报审的立法项目</strong></p>
  1193. <p style="text-indent: 2em; text-align: justify;">一、法律、行政法规草案</p>
  1194. <p style="text-indent: 2em; text-align: justify;">1.交通运输法:综合规划司负责起草,国家铁路局、中国民用航空局、国家邮政局和部内相关司局参加。</p>
  1195. <p style="text-indent: 2em; text-align: justify;">2.铁路运输条例:国家铁路局负责起草,法制司参加。</p>
  1196. <p style="text-indent: 2em; text-align: justify;">3.航道管理条例(修订):水运局负责起草,法制司、海事局参加。</p>
  1197. <p style="text-indent: 2em; text-align: justify;">4.船舶和海上设施检验条例(修订):海事局负责起草,法制司、中国船级社参加。</p>
  1198. <p style="text-indent: 2em; text-align: justify;">5.水上交通事故调查处理和沉船打捞清除管理条例:海事局负责起草,法制司、搜救中心、救捞局参加。</p>
  1199. <p style="text-indent: 2em; text-align: justify;">6.航标条例(修订):海事局负责起草,法制司、水运局参加。</p>
  1200. <p style="text-indent: 2em; text-align: justify;">7.潜水条例:救捞局负责起草,法制司、海事局参加。</p>
  1201. <p style="text-indent: 2em; text-align: justify;">8.民用航空器事故调查条例:中国民用航空局负责起草,法制司参加。</p>
  1202. <p style="text-indent: 2em; text-align: justify;">9.民用航空飞行标准条例:中国民用航空局负责起草,法制司参加。</p>
  1203. <p style="text-indent: 2em; text-align: justify;">二、规章草案</p>
  1204. <table width="0" align="center" cellspacing="0" cellpadding="0">
  1205. <tbody style="box-sizing: border-box;">
  1206. <tr class="firstRow" style="box-sizing: border-box; height: 25px;">
  1207. <td width="45" height="25" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black; background-color: transparent;">
  1208. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">序号</span></p>
  1209. </td>
  1210. <td width="316" height="25" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1211. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">规章名称</span></p>
  1212. </td>
  1213. <td width="171" height="25" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1214. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">承办单位</span></p>
  1215. </td>
  1216. <td width="133" height="25" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: black black black rgb(0, 0, 0); border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1217. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">责任处室</span></p>
  1218. </td>
  1219. </tr>
  1220. <tr style="box-sizing: border-box; height: 34px;">
  1221. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1222. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">1</span></p>
  1223. </td>
  1224. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1225. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">铁路车站及线路名称管理办法</span></p>
  1226. </td>
  1227. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1228. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国家铁路局运输监管司</span></p>
  1229. </td>
  1230. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1231. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">货运监管处</span></p>
  1232. </td>
  1233. </tr>
  1234. <tr style="box-sizing: border-box; height: 34px;">
  1235. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1236. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">2</span></p>
  1237. </td>
  1238. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1239. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">铁路运输企业准入许可办法(修订)</span></p>
  1240. </td>
  1241. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1242. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国家铁路局运输监管司</span></p>
  1243. </td>
  1244. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1245. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输监管处</span></p>
  1246. </td>
  1247. </tr>
  1248. <tr style="box-sizing: border-box; height: 34px;">
  1249. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1250. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">3</span></p>
  1251. </td>
  1252. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1253. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">铁路旅客运输规程</span></p>
  1254. </td>
  1255. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1256. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国家铁路局运输监管司</span></p>
  1257. </td>
  1258. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1259. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">客运监管处</span></p>
  1260. </td>
  1261. </tr>
  1262. <tr style="box-sizing: border-box; height: 34px;">
  1263. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1264. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">4</span></p>
  1265. </td>
  1266. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1267. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">铁路货物运输规程</span></p>
  1268. </td>
  1269. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1270. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国家铁路局运输监管司</span></p>
  1271. </td>
  1272. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1273. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">货运监管处</span></p>
  1274. </td>
  1275. </tr>
  1276. <tr style="box-sizing: border-box; height: 34px;">
  1277. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1278. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">5</span></p>
  1279. </td>
  1280. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1281. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">铁路建设工程勘察设计管理办法(修订)</span></p>
  1282. </td>
  1283. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1284. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国家铁路局工程监管司</span></p>
  1285. </td>
  1286. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1287. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">建设市场监管处</span></p>
  1288. </td>
  1289. </tr>
  1290. <tr style="box-sizing: border-box; height: 34px;">
  1291. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1292. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">6</span></p>
  1293. </td>
  1294. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1295. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">铁路工程竣工验收管理办法</span></p>
  1296. </td>
  1297. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1298. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国家铁路局工程监管司</span></p>
  1299. </td>
  1300. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1301. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">质量安全监管处</span></p>
  1302. </td>
  1303. </tr>
  1304. <tr style="box-sizing: border-box; height: 34px;">
  1305. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1306. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">7</span></p>
  1307. </td>
  1308. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1309. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">公路水运公共交通企事业单位信息公开规定</span></p>
  1310. </td>
  1311. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1312. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1313. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">办公厅</span></p>
  1314. </td>
  1315. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1316. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">督查室</span></p>
  1317. </td>
  1318. </tr>
  1319. <tr style="box-sizing: border-box; height: 34px;">
  1320. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1321. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">8</span></p>
  1322. </td>
  1323. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1324. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">交通运输信用管理规定</span></p>
  1325. </td>
  1326. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1327. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1328. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">政策研究室</span></p>
  1329. </td>
  1330. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1331. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">综合处</span></p>
  1332. </td>
  1333. </tr>
  1334. <tr style="box-sizing: border-box; height: 34px;">
  1335. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1336. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">9</span></p>
  1337. </td>
  1338. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1339. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">交通运输行政执法证件管理规定(修订)</span></p>
  1340. </td>
  1341. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1342. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1343. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">法制司</span></p>
  1344. </td>
  1345. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1346. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">执法监督处</span></p>
  1347. </td>
  1348. </tr>
  1349. <tr style="box-sizing: border-box; height: 34px;">
  1350. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1351. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">10</span></p>
  1352. </td>
  1353. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1354. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">收费公路权益转让办法(修订)</span></p>
  1355. </td>
  1356. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1357. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1358. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">财务审计司</span></p>
  1359. </td>
  1360. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1361. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">资产管理处</span></p>
  1362. </td>
  1363. </tr>
  1364. <tr style="box-sizing: border-box; height: 34px;">
  1365. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1366. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">11</span></p>
  1367. </td>
  1368. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1369. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国际海运条例实施细则(修订)</span></p>
  1370. </td>
  1371. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1372. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1373. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">水运局</span></p>
  1374. </td>
  1375. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1376. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国际航运管理处</span></p>
  1377. </td>
  1378. </tr>
  1379. <tr style="box-sizing: border-box; height: 34px;">
  1380. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1381. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">12</span></p>
  1382. </td>
  1383. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1384. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国际国境河流运输管理规定</span></p>
  1385. </td>
  1386. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1387. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1388. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">水运局</span></p>
  1389. </td>
  1390. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1391. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国际航运管理处</span></p>
  1392. </td>
  1393. </tr>
  1394. <tr style="box-sizing: border-box; height: 34px;">
  1395. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1396. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">13</span></p>
  1397. </td>
  1398. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1399. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">水运工程建设项目招标投标管理办法(修订)</span></p>
  1400. </td>
  1401. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1402. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1403. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">水运局</span></p>
  1404. </td>
  1405. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1406. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">建设市场监管处</span></p>
  1407. </td>
  1408. </tr>
  1409. <tr style="box-sizing: border-box; height: 34px;">
  1410. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1411. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">14</span></p>
  1412. </td>
  1413. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1414. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">水运工程施工监理规定(试行)(修订)</span></p>
  1415. </td>
  1416. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1417. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1418. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">水运局</span></p>
  1419. </td>
  1420. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1421. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">建设市场监管处</span></p>
  1422. </td>
  1423. </tr>
  1424. <tr style="box-sizing: border-box; height: 34px;">
  1425. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1426. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">15</span></p>
  1427. </td>
  1428. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1429. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">港口基础设施维护管理规定</span></p>
  1430. </td>
  1431. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1432. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1433. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">水运局</span></p>
  1434. </td>
  1435. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1436. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">工程管理处</span></p>
  1437. </td>
  1438. </tr>
  1439. <tr style="box-sizing: border-box; height: 34px;">
  1440. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1441. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">16</span></p>
  1442. </td>
  1443. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1444. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">道路运输从业人员管理规定(修订)</span></p>
  1445. </td>
  1446. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1447. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1448. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输服务司</span></p>
  1449. </td>
  1450. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1451. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">综合处</span></p>
  1452. </td>
  1453. </tr>
  1454. <tr style="box-sizing: border-box; height: 34px;">
  1455. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1456. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">17</span></p>
  1457. </td>
  1458. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1459. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">道路货物运输及站场管理规定(修订)</span></p>
  1460. </td>
  1461. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1462. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1463. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输服务司</span></p>
  1464. </td>
  1465. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1466. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">货运与物流管理处</span></p>
  1467. </td>
  1468. </tr>
  1469. <tr style="box-sizing: border-box; height: 50px;">
  1470. <td width="45" height="50" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1471. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">18</span></p>
  1472. </td>
  1473. <td width="316" height="50" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1474. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">乏燃料运输管理办法(与工业和信息化部、</span></p>
  1475. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">公安部、生态环境部联合发布)</span></p>
  1476. </td>
  1477. <td width="171" height="50" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1478. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1479. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输服务司</span></p>
  1480. </td>
  1481. <td width="133" height="50" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1482. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">货运与物流管理处</span></p>
  1483. </td>
  1484. </tr>
  1485. <tr style="box-sizing: border-box; height: 34px;">
  1486. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1487. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">19</span></p>
  1488. </td>
  1489. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1490. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">道路运输车辆技术管理规定(修订)</span></p>
  1491. </td>
  1492. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1493. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1494. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输服务司</span></p>
  1495. </td>
  1496. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1497. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">车辆管理处</span></p>
  1498. </td>
  1499. </tr>
  1500. <tr style="box-sizing: border-box; height: 59px;">
  1501. <td width="45" height="59" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1502. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">20</span></p>
  1503. </td>
  1504. <td width="316" height="59" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1505. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">交通运输安全生产监督管理规定</span></p>
  1506. </td>
  1507. <td width="171" height="59" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1508. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  1509. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">安全与质量监督管理司</span></p>
  1510. </td>
  1511. <td width="133" height="59" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1512. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">安全监察处</span></p>
  1513. </td>
  1514. </tr>
  1515. <tr style="box-sizing: border-box; height: 54px;">
  1516. <td width="45" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1517. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">21</span></p>
  1518. </td>
  1519. <td width="316" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1520. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">公路水运工程质量监督管理规定(修订)</span></p>
  1521. </td>
  1522. <td width="171" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1523. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span></p>
  1524. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">安全与质量监督管理司</span></p>
  1525. </td>
  1526. <td width="133" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1527. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">公路处</span></p>
  1528. </td>
  1529. </tr>
  1530. <tr style="box-sizing: border-box; height: 34px;">
  1531. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1532. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">22</span></p>
  1533. </td>
  1534. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1535. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">水上无线电管理规定</span></p>
  1536. </td>
  1537. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1538. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1539. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事局</span></p>
  1540. </td>
  1541. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1542. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">通航管理处</span></p>
  1543. </td>
  1544. </tr>
  1545. <tr style="box-sizing: border-box; height: 34px;">
  1546. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1547. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">23</span></p>
  1548. </td>
  1549. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1550. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">水上移动卫星通信管理规则(修订)</span></p>
  1551. </td>
  1552. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1553. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1554. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事局</span></p>
  1555. </td>
  1556. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1557. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">通航管理处</span></p>
  1558. </td>
  1559. </tr>
  1560. <tr style="box-sizing: border-box; height: 34px;">
  1561. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1562. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">24</span></p>
  1563. </td>
  1564. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1565. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">游艇安全管理规定(修订)</span></p>
  1566. </td>
  1567. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1568. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1569. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事局</span></p>
  1570. </td>
  1571. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1572. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">船舶监督处</span></p>
  1573. </td>
  1574. </tr>
  1575. <tr style="box-sizing: border-box; height: 34px;">
  1576. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1577. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">25</span></p>
  1578. </td>
  1579. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1580. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">船舶载运危险货物安全监督管理规定(修订)</span></p>
  1581. </td>
  1582. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1583. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1584. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事局</span></p>
  1585. </td>
  1586. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1587. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">危管防污处</span></p>
  1588. </td>
  1589. </tr>
  1590. <tr style="box-sizing: border-box; height: 34px;">
  1591. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1592. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">26</span></p>
  1593. </td>
  1594. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1595. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海运固体散装货物安全监督管理规定(修订)</span></p>
  1596. </td>
  1597. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1598. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1599. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事局</span></p>
  1600. </td>
  1601. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1602. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">危管防污处</span></p>
  1603. </td>
  1604. </tr>
  1605. <tr style="box-sizing: border-box; height: 34px;">
  1606. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1607. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">27</span></p>
  1608. </td>
  1609. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1610. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事劳工条件管理办法</span></p>
  1611. </td>
  1612. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1613. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1614. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事局</span></p>
  1615. </td>
  1616. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1617. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">船员管理处</span></p>
  1618. </td>
  1619. </tr>
  1620. <tr style="box-sizing: border-box; height: 34px;">
  1621. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1622. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">28</span></p>
  1623. </td>
  1624. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1625. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海员外派管理规定(修订)</span></p>
  1626. </td>
  1627. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1628. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1629. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事局</span></p>
  1630. </td>
  1631. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1632. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">船员管理处</span></p>
  1633. </td>
  1634. </tr>
  1635. <tr style="box-sizing: border-box; height: 34px;">
  1636. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1637. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">29</span></p>
  1638. </td>
  1639. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1640. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">航运公司安全监督管理规定</span></p>
  1641. </td>
  1642. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1643. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1644. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事局</span></p>
  1645. </td>
  1646. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1647. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">安全管理处</span></p>
  1648. </td>
  1649. </tr>
  1650. <tr style="box-sizing: border-box; height: 2px;">
  1651. <td width="45" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1652. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">30</span></p>
  1653. </td>
  1654. <td width="316" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1655. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">航运公司安全营运与防治船舶污染管理体系审核发证管理规定</span></p>
  1656. </td>
  1657. <td width="171" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1658. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1659. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事局</span></p>
  1660. </td>
  1661. <td width="133" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1662. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">安全管理处</span></p>
  1663. </td>
  1664. </tr>
  1665. <tr style="box-sizing: border-box; height: 34px;">
  1666. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1667. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">31</span></p>
  1668. </td>
  1669. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1670. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海区航标管理办法</span></p>
  1671. </td>
  1672. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1673. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; font-family: 宋体; font-size: 14px;">交通运输部</span><span
  1674. style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">海事局</span></p>
  1675. </td>
  1676. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1677. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">航海保障管理处</span></p>
  1678. </td>
  1679. </tr>
  1680. <tr style="box-sizing: border-box; height: 2px;">
  1681. <td width="45" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1682. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">32</span></p>
  1683. </td>
  1684. <td width="316" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1685. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">民航监管数据管理规定</span></p>
  1686. </td>
  1687. <td width="171" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1688. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  1689. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">政策法规司</span></p>
  1690. </td>
  1691. <td width="133" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1692. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">法律事务处</span></p>
  1693. </td>
  1694. </tr>
  1695. <tr style="box-sizing: border-box; height: 34px;">
  1696. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1697. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">33</span></p>
  1698. </td>
  1699. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1700. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">非经营性通用航空登记管理规定(修订)</span></p>
  1701. </td>
  1702. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1703. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局运输司</span></p>
  1704. </td>
  1705. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1706. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">通用航空处</span></p>
  1707. </td>
  1708. </tr>
  1709. <tr style="box-sizing: border-box; height: 34px;">
  1710. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1711. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">34</span></p>
  1712. </td>
  1713. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1714. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空货物国内运输规则(修订)</span></p>
  1715. </td>
  1716. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1717. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局运输司</span></p>
  1718. </td>
  1719. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1720. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国内处</span></p>
  1721. </td>
  1722. </tr>
  1723. <tr style="box-sizing: border-box; height: 54px;">
  1724. <td width="45" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1725. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">35</span></p>
  1726. </td>
  1727. <td width="316" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1728. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">民用无人机运行管理规定</span></p>
  1729. </td>
  1730. <td width="171" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1731. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  1732. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">飞行标准司</span></p>
  1733. </td>
  1734. <td width="133" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1735. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">通用飞行标准处</span></p>
  1736. </td>
  1737. </tr>
  1738. <tr style="box-sizing: border-box; height: 54px;">
  1739. <td width="45" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1740. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">36</span></p>
  1741. </td>
  1742. <td width="316" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1743. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">民用航空标准化管理规定(修订)</span></p>
  1744. </td>
  1745. <td width="171" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1746. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  1747. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">航空器适航审定司</span></p>
  1748. </td>
  1749. <td width="133" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1750. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">适航法规标准处</span></p>
  1751. </td>
  1752. </tr>
  1753. <tr style="box-sizing: border-box; height: 54px;">
  1754. <td width="45" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1755. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">37</span></p>
  1756. </td>
  1757. <td width="316" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1758. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">涡轮发动机飞机燃油排泄和</span></p>
  1759. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">排气排出物规定(修订)</span></p>
  1760. </td>
  1761. <td width="171" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1762. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  1763. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">航空器适航审定司</span></p>
  1764. </td>
  1765. <td width="133" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1766. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">适航法规标准处</span></p>
  1767. </td>
  1768. </tr>
  1769. <tr style="box-sizing: border-box; height: 54px;">
  1770. <td width="45" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1771. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">38</span></p>
  1772. </td>
  1773. <td width="316" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1774. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">民用航空产品和零部件</span></p>
  1775. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">合格审定规定(修订)</span></p>
  1776. </td>
  1777. <td width="171" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1778. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  1779. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">航空器适航审定司</span></p>
  1780. </td>
  1781. <td width="133" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1782. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">适航法规标准处</span></p>
  1783. </td>
  1784. </tr>
  1785. <tr style="box-sizing: border-box; height: 54px;">
  1786. <td width="45" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1787. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">39</span></p>
  1788. </td>
  1789. <td width="316" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1790. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">载人自由气球适航规定(修订)</span></p>
  1791. </td>
  1792. <td width="171" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1793. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  1794. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">航空器适航审定司</span></p>
  1795. </td>
  1796. <td width="133" height="54" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1797. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">适航法规标准处</span></p>
  1798. </td>
  1799. </tr>
  1800. <tr style="box-sizing: border-box; height: 34px;">
  1801. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1802. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">40</span></p>
  1803. </td>
  1804. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1805. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输机场建设管理规定(修订)</span></p>
  1806. </td>
  1807. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1808. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局机场司</span></p>
  1809. </td>
  1810. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1811. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">建设处</span></p>
  1812. </td>
  1813. </tr>
  1814. <tr style="box-sizing: border-box; height: 34px;">
  1815. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1816. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">41</span></p>
  1817. </td>
  1818. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1819. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">通用机场管理规定</span></p>
  1820. </td>
  1821. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1822. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局机场司</span></p>
  1823. </td>
  1824. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1825. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">标准资质处</span></p>
  1826. </td>
  1827. </tr>
  1828. <tr style="box-sizing: border-box; height: 34px;">
  1829. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1830. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">42</span></p>
  1831. </td>
  1832. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1833. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">民用机场专用设备管理规定(修订)</span></p>
  1834. </td>
  1835. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1836. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局机场司</span></p>
  1837. </td>
  1838. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1839. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">标准资质处</span></p>
  1840. </td>
  1841. </tr>
  1842. <tr style="box-sizing: border-box; height: 34px;">
  1843. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1844. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">43</span></p>
  1845. </td>
  1846. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1847. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">运输机场运行安全管理规定(修订)</span></p>
  1848. </td>
  1849. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1850. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局机场司</span></p>
  1851. </td>
  1852. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1853. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">安全处</span></p>
  1854. </td>
  1855. </tr>
  1856. <tr style="box-sizing: border-box; height: 2px;">
  1857. <td width="45" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1858. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">44</span></p>
  1859. </td>
  1860. <td width="316" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1861. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">民航无线电管理规定(修订)</span></p>
  1862. </td>
  1863. <td width="171" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1864. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局</span></p>
  1865. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">空管行业管理办公室</span></p>
  1866. </td>
  1867. <td width="133" height="2" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1868. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">无线电管理委员会办公室</span></p>
  1869. </td>
  1870. </tr>
  1871. <tr style="box-sizing: border-box; height: 34px;">
  1872. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1873. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">45</span></p>
  1874. </td>
  1875. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1876. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">外国航空运输企业安全保卫规则</span></p>
  1877. </td>
  1878. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1879. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">中国民用航空局公安局</span></p>
  1880. </td>
  1881. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1882. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">一处</span></p>
  1883. </td>
  1884. </tr>
  1885. <tr style="box-sizing: border-box; height: 34px;">
  1886. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1887. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">46</span></p>
  1888. </td>
  1889. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1890. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">邮政业标准化管理办法(修订)</span></p>
  1891. </td>
  1892. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1893. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国家邮政局政策法规司</span></p>
  1894. </td>
  1895. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1896. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">科技与标准处</span></p>
  1897. </td>
  1898. </tr>
  1899. <tr style="box-sizing: border-box; height: 34px;">
  1900. <td width="45" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black; border-image: none 100% / 1 / 0 stretch; background-color: transparent;">
  1901. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">47</span></p>
  1902. </td>
  1903. <td width="316" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1904. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">邮件快件收寄验视和安全检查管理办法</span></p>
  1905. </td>
  1906. <td width="171" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1907. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">国家邮政局市场监管司</span></p>
  1908. </td>
  1909. <td width="133" height="34" style="box-sizing: border-box; padding: 1px 1px 0px; border-color: rgb(0, 0, 0) black black rgb(0, 0, 0); background-color: transparent;">
  1910. <p style="box-sizing: border-box; font-size: 16px; line-height: 27px; vertical-align: middle;"><span style="box-sizing: border-box; color: black; font-family: 宋体; font-size: 14px;">安全监管处</span></p>
  1911. </td>
  1912. </tr>
  1913. </tbody>
  1914. </table>
  1915. <ol start="1" style="list-style-type: none;" class=" list-paddingleft-2"></ol>
  1916. <p><br></p>
  1917. <p>(转载自交通运输部官网<a href="http://xxgk.mot.gov.cn/2020/jigou/fgs/202103/t20210302_3529259.html" target="_blank">http://xxgk.mot.gov.cn/2020/jigou/fgs/202103/t20210302_3529259.html</a>)</p>
  1918. <p><span style="font-size: 14px;">(责任编辑:吴增涛)</span></p>
  1919. </b></div>
  1920. </div>
  1921. </div>
  1922. </div>
  1923. </div>
  1924. <div id="footer"></div>
  1925. <script src="../public/public.js"></script>
  1926. </body>
  1927. </html>