forked from BetaStreetOmnis/xhs_ai_publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.html
More file actions
1892 lines (1540 loc) · 112 KB
/
Copy pathpage.html
File metadata and controls
1892 lines (1540 loc) · 112 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1 ">
<title>重庆市人民政府办公厅关于印发《2025年度重庆市人民政府重大行政决策事项目录》的通知_重庆市人民政府网</title>
<!--站点类-->
<meta name="SiteName" content="重庆市人民政府">
<meta name="SiteDomain" content="http://www.cq.gov.cn">
<meta name="SiteIDCode" content="5000000095">
<!--栏目类-->
<meta name="ColumnName" content="其他文件">
<meta name="ColumnDescription" content="其他文件">
<meta name="ColumnKeywords" content="其他文件">
<meta name="ColumnType" content="其他文件">
<!--文章类-->
<meta name="ArticleTitle" content="重庆市人民政府办公厅关于印发《2025年度重庆市人民政府重大行政决策事项目录》的通知">
<meta name="PubDate" content="2025-06-06 15:44">
<meta name="ContentSource" content="市政府办公厅">
<meta name="Keywords" content="">
<meta name="Author" content="市政府办公厅">
<meta name="Description" content="重庆市人民政府办公厅
关于印发《2025年度重庆市人民政府
重大行政决策事项目录》的通知
渝府办发〔2025〕34号
各区县(自治县)人民政府,市政府各部门,有关单位:
《2025年度重庆市人民政府重大行政决策事项目录》已经市委、市政府同意,现予印发,请结合实际抓好贯彻落实。
重庆市人民政府办公厅
2025年5月30日
(此件公开发布)
2025年度重庆市人民政府
重大行政决策事项目录
序号
决策事项
承办单位
决策时间
1
重庆市...">
<meta name="Image" content="">
<meta name="Url" content="//www.cq.gov.cn/zwgk/zfxxgkml/szfwj/qtgw/202506/t20250606_14692232.html">
<link rel="stylesheet" href="../../../../../images/public.css">
<link rel="stylesheet" href="../../../../../images/common.css">
<link rel="stylesheet" href="../../../../../images/c-gov-file-detail.css">
<script src="../../../../../images/jquery.min.js"></script>
<style>
.detail_fj li a {
word-break: break-all;
}
.content .left{
width: 100%;
padding-right: 15px;
padding-right: .15rem;
border-right: none;
}
.content .right{
display: block;
}
.content .right .item .title, .content .left .item .title {
font-size: 18px;
font-size: .18rem;
}
.justify-space-between {
margin-top: 30px;
margin-top: .30rem;
}
.gkxl-bar {
width: 100%;
line-height: 36px;
line-height: .36rem;
}
.justify-02 {
display: inline-block;
width: 48px;
width: .48rem;
text-align: justify!important;
letter-spacing: 24px;
letter-spacing: .24rem;
}
.justify-03 {
display: inline-block;
width: 48px;
width: .48rem;
text-align: justify!important;
letter-spacing: 6px;
letter-spacing: .06rem;
}
.justify-04 {
display: inline-block;
width: 48px;
width: .48rem;
text-align: justify!important;
}
.table td{
box-sizing: border-box;
}
.table .td-w35{
width: 43%;
}
</style>
</head>
<body class="common-detail">
<link rel="stylesheet" href="/images/xcConfirm.css">
<script type="text/javascript" src="/images/md5_2022.js"></script>
<script src="/images/xcConfirm.js"></script>
<link rel="stylesheet" href="/images/mdialog.css">
<script type="text/javascript" src="/images/zepto.min.js"></script>
<script type="text/javascript" src="/images/mdialog.js"></script>
<div class="szf-header">
<div class="centerWidth1220">
<script type="text/javascript" src="/images/jianorfan.js"></script>
<div class="szf-head-topbox centerWidth1220">
<div class="head-top clearfix">
<div class="lf">
<div class="head-login cq-logined-hide">
<a id="login" class="cq-login" href="javascript:void(0)" tabindex="0">登录</a>
<span class="line cq-logined-hide"></span>
<a id="register" class="cq-register cq-register-gr" href="javascript:void(0)" tabindex="0">注册</a>
</div>
<div class="head-logined cq-logined-show"><a id="loginusername" href="https://zwykb.cq.gov.cn/v2/grzx/" target="_blank" tabindex="0" class="ariaskiptheme cq-user-name"></a><span>(欢迎您)</span><a id="logout" class="cq-logout" href="javascript:void(0)" tabindex="0">注销</a></div>
</div>
<script type="text/javascript">
$(function() {
function isPC() {
var userAgentInfo = navigator.userAgent;
var Agents = new Array("Android", "iPhone", "SymbianOS", "Windows Phone", "iPad", "iPod");
var flag = true;
for (var v = 0; v < Agents.length; v++) {
if (userAgentInfo.indexOf(Agents[v]) > 0) {
flag = false;
break;
}
}
return flag;
}
});
</script>
<div class="rt">
<a href="javascript: void(0);" id="ST_translate" onclick="do_simple_to_traditional()">繁體版</a>
<span class="line"></span>
<a href="//www.cq.gov.cn/dhc/cq/index.html" target="_blank">智能机器人</a>
<span class="line"></span>
<a href="javascript:void(0)" id="cniil_wza" onclick="aria.start()" for="wza">无障碍</a>
<span class="line"></span>
<a href="javascript:;" onclick="aria.oldFixedStart()" for="ariaslh">关怀版</a>
<span class="line"></span>
<a class="phonecode">手机版<img src="/images/c-szf-wap-qrcode.png" alt="" /></a>
<span class="ipv6">网站支持IPv6</span>
</div>
</div>
<div class="wza">
<a href="//www.cq.gov.cn/_config.html"><img src="/images/ghbbtnh5.png" /></a>
</div>
</div>
<link rel="stylesheet" href="/images/ykb-base.css">
<script src="/images/crypto-js.min.js"></script>
<script src="/images/DECRYPT.js"></script>
<script src="/images/ykb-request.js"></script>
<script src="/images/ykb-api.js"></script>
<script src="/images/ykb-base.js?v=1.10"></script>
<script>
$(function () {
//获取用户信息-有额外的操作可以在回调中使用
getUserInfo(function (res) {
if(res!=200){
// 校验国家政务网登录 start
checkLoginGj()
// 校验国家政务网登录 end
}
})
})
</script>
<div class="head-con clearfix">
<a class="head-logo" href="/"><img src="/images/2024logo.png" /></a>
<div class="head-search rt">
<div>
<input id="searchWord" oninput="changeKeywords(event)" onfocus="changeKeywords(event)" onblur="closeSearchXL()" type="text" placeholder="搜索您想了解的政策/资讯/服务" />
<span class="i-search-btn" id="toSearch"><img src="/images/2024index-ic3.png" /></span>
</div>
</div>
</div>
</div>
</div>
<div class="szf-nav">
<div class="centerWidth1220">
<div class="item">
<a class="tit" href="/">首页</a>
</div>
<div class="item zwgk">
<a class="tit" href="//www.cq.gov.cn/zwgk/">政务公开</a>
<div class="list">
<a href="//www.cq.gov.cn/zwgk/szfld/">市政府领导</a>
<a href="//www.cq.gov.cn/zwgk/zfxxgkzl/fdzdgknr/jgjj/jgzn/">机构职能</a>
<a href="//www.cq.gov.cn/zwgk/zfxxgkzl/">政府信息公开</a>
<a href="//www.cq.gov.cn/zwgk/zfxxgkml/szfwj/">政策文件库</a>
<a href="//www.cq.gov.cn/zwgk/zfxxgkml/zcjd_120614/">政策解读</a>
<a href="//www.cq.gov.cn/zwgk/zfxxgkzt/">公开专题</a>
</div>
</div>
<div class="item zwfw">
<a class="tit i-nav-more" href="https://zwykb.cq.gov.cn/" target="_blank"><span>政务服务</span><img src="/images/2024nav-zwfw.png" /></a>
<div class="list">
<a href="https://zwykb.cq.gov.cn/v2/gxbcyjs/" target="_blank">高效办成一件事</a>
<a href="https://zwykb.cq.gov.cn/v2/grbs/" target="_blank">个人服务</a>
<a href="https://zwykb.cq.gov.cn/v2/frfw/" target="_blank">法人服务</a>
<a href="https://zwykb.cq.gov.cn/v2/tscx/" target="_blank">特色专栏</a>
<a href="https://zwykb.cq.gov.cn/v2/fwqd/" target="_blank">服务清单</a>
<a href="https://zwykb.cq.gov.cn/v2/hcp/" target="_blank">好差评</a>
</div>
</div>
<div class="item hdjl">
<a class="tit" href="//www.cq.gov.cn/hdjl/">互动交流</a>
<div class="list">
<a href="https://dc.cq.gov.cn/hlwdc-pc/msgtodo" target="_blank">我要留言</a>
<a href="//www.cq.gov.cn/hdjl/zjdc/">征集调查</a>
<a href="//www.cq.gov.cn/zwgk/zfxxgkml/zcwd/">政策问答库</a>
<a href="//www.cq.gov.cn/hdjl/xwfbh/">新闻发布会</a>
<a href="//www.cq.gov.cn/hdjl/hdjl_fyrll/">发言人来了</a>
<a href="//www.cq.gov.cn/hdjl/zxft/">在线访谈</a>
<a href="//www.cq.gov.cn/hdjl/zwxmtjz/">政务微博微信</a>
</div>
</div>
<div class="item zjcq">
<a class="tit" href="//www.cq.gov.cn/zjcq/">走进重庆</a>
<div class="list">
<a href="//www.cq.gov.cn/zjcq/#cqgk">重庆概况</a>
<a href="//www.cq.gov.cn/zjcq/#mlcq">美丽重庆</a>
<a href="//www.cq.gov.cn/zjcq/#bywh">巴渝文化</a>
<a href="//www.cq.gov.cn/zjcq/#cycq">畅游重庆</a>
<a href="//www.cq.gov.cn/zjcq/#ydss">运动赛事</a>
<a href="//www.cq.gov.cn/zjcq/#tcms">特产美食</a>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var curUrl = window.location.pathname;
if ( curUrl.indexOf("/zwgk/") >= 0 ) { // 政务公开
$(".szf-nav .item").eq(1).addClass('cur line');
$(".firlm-body .szf-nav .item").eq(1).children('.list').addClass('show');
} else if ( curUrl.indexOf("/zwfw/") >= 0 ) { // 政务服务
$(".szf-nav .item").eq(2).addClass('cur line');
$(".firlm-body .szf-nav .item").eq(2).children('.list').addClass('show');
} else if ( curUrl.indexOf("/hdjl/") >= 0 || curUrl.indexOf("/igixmj/") >= 0) { // 互动交流
$(".szf-nav .item").eq(3).addClass('cur line');
$(".firlm-body .szf-nav .item").eq(3).children('.list').addClass('show');
} else if ( curUrl.indexOf("/zjcq/") >= 0 ) { // 走进重庆
$(".szf-nav .item").eq(4).addClass('cur line');
$(".firlm-body .szf-nav .item").eq(4).children('.list').addClass('show');
} else {
$(".szf-nav .item").eq(0).addClass('cur line');
}
$(".firlm-body .szf-nav .item").on("mouseover", function() {
if ($(this).children('.list').length > 0) {
$(this).children('.list').addClass('show').css('z-index', '2');
$(this).siblings().removeClass('line');
$(this).siblings().children('.list').removeClass('show');
$(this).addClass('line');
}
});
$(".firlm-body .szf-nav .item").on("mouseout", function() {
if (!$(this).hasClass('cur')) {
$(this).children('.list').removeClass('show').removeAttr('style');
}
$(this).removeClass('line');
$(".szf-nav .item").each(function(){
if ($(this).hasClass('cur')) {
$(this).addClass('line');
$(this).children('.list').addClass('show');
}
})
});
</script>
<section class="container" style="padding-bottom:5px;padding-bottom:.05rem;">
<!--当前位置-->
<div class="section-detail-wrap clearfix">
<div class="lf sdw-lf">
<!-- <section class="bread-crumbs" style="position:relative;">
<img src="../../../../../images/common-weizhi.png" />
<p><a href="../../../../../" title="首页" class="CurrChnlCls">首页</a><span>></span><a href="../../../../" title="政务公开" class="CurrChnlCls">政务公开</a><span>></span><a href="../../" title="政策文件库" class="CurrChnlCls">政策文件库</a><span>></span><a href="../" title="其他文件" class="CurrChnlCls">其他文件</a></p>
<div id="guidangCon" style="display: none;position: absolute;width: 1.48rem;height: 1.48rem;background: url(/images/guidang.png) no-repeat;background-size:100% 100%; right: 0; top: .1rem;z-index:999;">
<p style=" display: block;font-size: 16px;font-size:.16rem;color: #DA5857; margin-top: 100px;margin-top:1rem;font-weight: bold;text-align:center;"></p>
</div>
</section> -->
<div class="local-crumbs">
<img src="../../../../../images/2024local.png" />
<span class="sp">当前位置:</span>
<a href="../../../../../" title="首页" class="CurrChnlCls">首页</a><span class="arrow">></span><a href="../../../../" title="政务公开" class="CurrChnlCls">政务公开</a><span class="arrow">></span><a href="../../" title="政策文件库" class="CurrChnlCls">政策文件库</a><span class="arrow">></span><a href="../" title="其他文件" class="CurrChnlCls">其他文件</a>
<!--<span class="arrow">></span>
<a class="cur" href="../">其他文件</a>-->
<div id="guidangCon" style="display: none;position: absolute;width: 1.48rem;height: 1.48rem;background: url(/images/guidang.png) no-repeat;background-size:100% 100%; right: 0; top: .1rem;z-index:999;"><p style=" display: block;font-size: 16px;font-size:.16rem;color: #DA5857; margin-top: 100px;margin-top:1rem;font-weight: bold;text-align:center;"></p></div>
</div>
<script>
if(window.location.href.indexOf("/szfld/gzdt/") > -1){
$(".bread-crumbs>p").html('<a href="/" title="首页" class="CurrChnlCls">首页</a><span>></span><a href="/zwgk/" title="政务公开" class="CurrChnlCls">政务公开</a><span>></span>重要活动')
}
// if(window.location.href.indexOf("/cslm_sgaegsergserg/") > -1){
// $('.bread-crumbs').hide();
// $('.local-crumbs').show();
// }
</script>
<script>
var xlguidang = '0';
if (xlguidang=="") {
var guidang = '0';
if(guidang == 1){
$("#guidangCon").css("display","block");
}else{
$("#guidangCon").css("display","none");
}
}
else{
var xlgdtime = '';
$('#guidangCon p').text(xlgdtime);
if(xlguidang == 1){
$("#guidangCon").css("display","block");
}else{
$("#guidangCon").css("display","none");
}
}
</script>
</div>
<div class="rt sdw-rt">
<div class="d-flex justify-space-between">
<div class="gkxl-bar">
<span>【字体:</span><a href="javascript:;" data-power-command="reducefont" >小 </a><a href="javascript:;" data-power-command="enlargefont">大</a><span>】</span>
<div class="gkxl-share rt">
<span class="lf">分享到:</span><div class="bdsharebuttonbox" style="float: right;"><a class="bds_weixin" data-cmd="weixin" title="分享到微信" ></a><!--<a class="bds_tsina" data-cmd="tsina" title="分享到新浪微博" ></a>--></div>
</div>
<script>
window._bd_share_config = {
"common": {
"bdSnsKey": {},
"bdText": "",
"bdMini": "2",
"bdMiniList": false,
"bdPic": "",
"bdStyle": "1",
"bdSize": "24"
},
"share": {}
};
with (document) {
0[(getElementsByTagName('head')[0] || body)
.appendChild(createElement('script'))
.src = '/baiduShare/static/api/js/share.js?v=89860593.js?cdnversion=' +
~(-new Date() / 36e5)];
}
</script>
</div>
</div>
</div>
</div>
<div class="content clearfix">
<div class="left">
<img class="seal" src="../../../../../images/seal.png" />
<table class="table">
<tbody>
<tr>
<td class="gray text-align-right td-w8"><span class="justify-03">索引号</span> :</td>
<td class="td-w35" colspan="3">11500000009275780L/2025-00047</td>
<td class="gray text-align-right td-w8"><span class="justify-04">主题分类</span> :</td>
<td class="td-w35" colspan="3">行政事务</td>
</tr>
<tr>
<td class="gray text-align-right td-w8"><span class="justify-04">发布机构</span> :</td>
<script>
if(""!=""){
document.write('<td class="td-w35" colspan="3"></td>')
}else{
document.write('<td class="td-w35" colspan="3">市政府办公厅</td>')
}
</script>
<td class="gray text-align-right td-w8"><span class="justify-04">成文日期</span> :</td>
<td style="width: 18%;">2025-05-30</td>
<td class="gray text-align-right td-w8"><span class="justify-04">发布日期</span> :</td>
<td style="width: 18%;">2025-06-06</td>
</tr>
<tr>
<td class="gray text-align-right"><span class="justify-02">标题</span> :</td>
<td colspan="7">重庆市人民政府办公厅关于印发《2025年度重庆市人民政府重大行政决策事项目录》的通知</td>
</tr>
<tr>
<td class="gray text-align-right td-w8"><span class="justify-04">发文字号</span> :</td>
<td class="td-w35" colspan="3">渝府办发〔2025〕34号</td>
<td class="gray text-align-right td-w8"><span class="justify-04">有 效 性</span> :</td>
<td class="td-w35" colspan="3"><span id="yxxVal"></span></td>
<!--<td class="gray text-align-right"><span class="justify-03">主题词</span> :</td>
<td colspan="3"></td>-->
</tr>
</tbody>
</table>
<table class="table table-wap">
<tbody>
<tr>
<td class="gray text-align-right">索引号 :</td>
<td class="t-t">11500000009275780L/2025-00047</td>
</tr>
<tr>
<td class="gray text-align-right">主题分类 :</td>
<td>行政事务</td>
</tr>
<tr>
<td class="gray text-align-right">发布机构 :</td>
<script>
if(""!=""){
document.write('<td class="ly"></td>')
}else{
document.write('<td class="ly">市政府办公厅</td>')
}
</script>
</tr>
<tr>
<td class="gray text-align-right">成文日期 :</td>
<td>2025-05-30</td>
</tr>
<tr>
<td class="gray text-align-right">发布日期 :</td>
<td>2025-06-06</td>
</tr>
<tr>
<td class="gray text-align-right">标题 :</td>
<td>重庆市人民政府办公厅关于印发《2025年度重庆市人民政府重大行政决策事项目录》的通知</td>
</tr>
<tr>
<td class="gray text-align-right">发文字号 :</td>
<td class="t-t">渝府办发〔2025〕34号</td>
</tr>
<!--<tr>
<td class="gray text-align-right">主题词 :</td>
<td></td>
</tr>-->
</tbody>
</table>
<script>
$(".content>.left>.table td").each(function(){
if($.trim($(this).html()) == ""){
$(this).html("无")
}
})
</script>
<div class="document mt-1 mt-12" data-power-defaultFontSize="16" data-power-defaultLineHeight="2" data-power-imgMaxWidth="800" style="margin-top:45px;margin-top:.45rem;margin-bottom:40px;margin-bottom:.40rem;">
<div style="margin:20px auto; margin: .2rem auto; background-color: rgb(0, 0, 0); cursor: pointer; display:none;">
<video class="a1_video" style="width: 100%;" poster="" src="" controls="controls"></video>
<script>
var size = "";
if(size.length > 5)$(".a1_video").parent().show();
$(".a1_video").css("height", $(".a1_video").width()*0.534 + "px");
</script>
</div>
<div class="trs_editor_view TRS_UEDITOR trs_paper_default trs_word"><p style="text-align: center; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 29px;"><span data-index="4" style="font-family: 方正小标宋_GBK; font-size: 29px;">重庆市人民政府办公厅</span></p><p style="text-align: center; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 29px;"><span data-index="4" style="font-family: 方正小标宋_GBK; font-size: 29px;">关于印发《2025年度重庆市人民政府</span></p><p style="text-align: center; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 29px;"><span data-index="4" style="font-family: 方正小标宋_GBK; font-size: 29px;">重大行政决策事项目录》的通知</span></p><p style="text-align: center; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 21px;"><span style="font-size: 21px; font-family: 方正楷体_GBK;">渝府办发〔2025〕34号</span></p><p style="text-align: center; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 21px;"><span style="font-size: 21px; font-family: 方正楷体_GBK;"><br/></span></p><p style="text-align: justify; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 21px;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">各区县(自治县)人民政府,市政府各部门,有关单位:</span></p><p style="text-align: justify; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; font-size: 21px; text-indent: 2em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">《2025年度重庆市人民政府重大行政决策事项目录》已经市委、市政府同意,现予印发,请结合实际抓好贯彻落实。</span></p><p style="text-align: justify; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; font-size: 21px; text-indent: 2em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;"><br/></span></p><p style="text-align: right; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 21px;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市人民政府办公厅 </span></p><p style="text-align: right; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 21px;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">2025年5月30日 </span></p><p style="text-align: right; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 21px;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;"><br/></span></p><p style="text-align: justify; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; font-size: 21px; text-indent: 2em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">(此件公开发布)</span></p><p style="text-align: justify; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 21px;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;"><br/></span></p><p style="text-align: center; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 29px;"><span data-index="4" style="font-family: 方正小标宋_GBK; font-size: 29px;">2025年度重庆市人民政府</span></p><p style="text-align: center; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 29px;"><span data-index="4" style="font-family: 方正小标宋_GBK; font-size: 29px;">重大行政决策事项目录</span></p><p style="text-align: center; font-family: 宋体, SimSun; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em; font-size: 29px;"><span data-index="4" style="font-family: 方正小标宋_GBK; font-size: 29px;"><br/></span></p><div style="text-indent: 42px; text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em;" data-index="-2"><div style="text-indent: 2em; text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em;" data-index="-2"><table cellspacing="0" border="1" cellpadding="0" align="center" width="727">
<tbody>
<tr class="firstRow">
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">序号</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">决策事项</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">承办单位</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">决策时间</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">1</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市提升农村饮水质量专项行动方案(2025—2027年)</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市水利局</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第一季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">2</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">促进农民工就近就业三年行动实施方案(2025—2027年)</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市人力社保局</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第一季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">3</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市公共数据资源登记管理实施办法(试行)</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市大数据发展局</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第一季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">4</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市公共数据资源授权运营管理实施办法(试行)</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市大数据发展局</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第一季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">5</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市建设新型能源算力枢纽实施方案(2025—2027年)</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市大数据发展局</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第二季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">6</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">中新(重庆)战略性互联互通示范项目总体发展规划(2026—2030年)</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市商务委</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第二季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">7</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市加快建设西部医学中心实施方案</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市卫生健康委</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第二季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">8</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">关于加强临床研究能力建设的实施意见</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市卫生健康委</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第二季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">9</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市进一步强化食品安全全链条监管若干措施</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市市场监管局</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第二季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">10</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市推进空中丝绸之路建设实施方案</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市发展改革委</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第三季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">11</span></p></td>
<td valign="center" style="padding: 5px; word-break: break-all; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">四山“多规合一”优化治理实施方案</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市规划自然资源局</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第三季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">12</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市国民经济和社会发展第十五个五年规划纲要</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市发展改革委</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第四季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">13</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">2026年市级重点民生实事工作计划</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市发展改革委</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第四季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">14</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市心理咨询机构及从业人员管理办法</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市卫生健康委</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第四季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">15</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">建设农业强市规划(2025—2035年)</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市农业农村委</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第四季度</span></p></td></tr>
<tr>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="47">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">16</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="471">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">重庆市普通省道公路网规划(2025—2035年)</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="133">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">市交通运输委</span></p></td>
<td valign="center" style="padding: 5px; border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0);" width="75">
<p style="text-align: justify; font-family: 宋体, SimSun; font-size: 16px; margin-top: 10px; margin-bottom: 10px; line-height: 1.8em; text-indent: 0em;"><span data-index="6" style="font-family: 方正仿宋_GBK; font-size: 21px;">第四季度</span></p></td></tr></tbody></table></div></div></div>
<div class="item">
<div class="title mb-4"><i></i>文件下载</div>
<ul class="detail_fj">
<li><img style="display: inline-block;margin-right: 6px;" src="../../../../../images/ll-fujian.png" /><a href='./W020250606570117979372.doc' target="_blank" download='重庆市人民政府办公厅关于印发《2025年度重庆市人民政府重大行政决策事项目录》的通知.doc'>重庆市人民政府办公厅关于印发《2025年度重庆市人民政府重大行政决策事项目录》的通知.doc</a></li>
</ul>
</div>
<div class="item">
<div class="title mb-4"><i></i>文件下载(图片版)</div>
<ul class="detail_fj">
<li><img style="display: inline-block;margin-right: 6px;" src="../../../../../images/ll-fujian.png" /><a href='./W020250606570117537088.pdf' target="_blank">重庆市人民政府办公厅关于印发《2025年度重庆市人民政府重大行政决策事项目录》的通知.pdf</a></li>
</ul>
</div>
</div>
<!--<div class="d-flex justify-space-between">
<div class="gkxl-bar">
<span>【字体:</span><a href="javascript:;" data-power-command="reducefont" >小 </a><a href="javascript:;" data-power-command="enlargefont">大</a><span>】</span>
<div class="gkxl-share rt">
<span class="lf">分享到:</span><div class="bdsharebuttonbox" style="float: right;"><a class="bds_weixin" data-cmd="weixin" title="分享到微信" ></a><a class="bds_tsina" data-cmd="tsina" title="分享到新浪微博" ></a></div>
</div>
<script>
window._bd_share_config = {
"common": {
"bdSnsKey": {},
"bdText": "",
"bdMini": "2",
"bdMiniList": false,
"bdPic": "",
"bdStyle": "1",
"bdSize": "24"
},
"share": {}
};
with (document) {
0[(getElementsByTagName('head')[0] || body)
.appendChild(createElement('script'))
.src = '/baiduShare/static/api/js/share.js?v=89860593.js?cdnversion=' +
~(-new Date() / 36e5)];
}
</script>
</div>
</div>-->
</div>
<div class="right">
<div class="item">
<div class="title mb-4"><i></i>部门解读</div>
<ul>
<li><i></i><a href="../../../zcjd_120614/bmjd/202506/t20250612_14708196.html" target="_blank">《2025年度重庆市人民政府重大行政决策事项目录》政策解读</a></li>
</ul>
</div>
<style>
.content .left{
width: 7.7rem;
padding-right: .15rem;
border-right: 1px solid #eee;
}
.content .right{
display: block;
}
</style>
</div>
</div>
</section>
<script>
var fzTime = "";
var now = Date.now();
if(fzTime != ""){
fzTime = new Date(fzTime.replace(/-/g, '/'));
if(fzTime.getTime() < now){
$(".seal").css("display","block");
$('#yxxVal').html('废止')
}else {
$('#yxxVal').html('有效')
}
}else {
$('#yxxVal').html('有效')
}
</script>
<script>
//表格处理
$(".document.mt-1.mt-12 table, .c-txt.left table").each(function(index) {
$(this).after("<div class='table-c-index-" + index + "' style='width:100%;overflow-x:auto;'></div>");
$(".table-c-index-" + index).append(this.outerHTML)
$(this).remove();
})
</script>
<!--无障碍-->
<script src="https://wza.cq.gov.cn/dist/aria.js?appid=a4d6c89d9fe4c42057b618bf0c68d12d" charset="utf-8"></script>
<script src="/images/metahuman.js" async="async" defer="defer"></script>
<!--[if IE 8]>
<link rel="stylesheet" href="//www.cq.gov.cn/images/ietip.css">
<![endif]-->
<link rel="stylesheet" href="/images/metahuman.css">
<style>
.document.mt-1.mt-12 table, .c-txt.left table{max-width:100%;}
header #head-pc .head-nav .nav li a#nav-ykb img,
.i-nav a#nav-ykb img {
image-rendering: -moz-crisp-edges;
/* Firefox */
image-rendering: -o-crisp-edges;
/* Opera */
image-rendering: -webkit-optimize-contrast;
/* Webkit (non-standard naming) */
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
/* IE (non-standard property) */
}
.content .left.c-txt {
padding-bottom: 15px !important;
}
.human-wrap {
display: none;
position: fixed;
right: 73px;
right: 0.73rem;
bottom: 305px;
bottom: 3.05rem;
z-index: 555;
}
.human-container {
width: 155px;
height: 165px;
}
.human-default-img {
width: 210px;
width: 2.1rem;
display: block;
position: relative;
z-index: 10;
left: 30px;
left: 0.3rem;
}
.humanwrap-close{
position: absolute;
right: -4px;
right: -.4rem;
top: 0;
width: 2px;
width: .2rem;
cursor: pointer;
z-index: 11;
}
.metahuman-section {
position: absolute;
z-index: 99;
right: -8px;
top: 0;
opacity: 0;
visibility: hidden;
}
.metahuman-section .metahuman-section-tip {
background-image: url(/images/metahuman-tipbg.png);
background-size: 100% 100%;
background-repeat: no-repeat;
box-sizing: border-box;
padding: 8px 17px 17px;
padding: 0.08rem 0.17rem 0.17rem;
line-height: 1.6;
color: #fff;
font-size: 16px;
font-size: 0.16rem;
position: absolute;
left: -10px;
left: -0.1rem;
top: -80px;
top: -0.8rem;
white-space: nowrap;
}
.metahuman-section .metahuman-section-tip.jitter {
animation: jitter 800ms ease-in-out;
}
.metahuman-section .metahuman-section-close {
position: absolute;
z-index: 5;
width: 19px;
height: 19px;
left: 50%;
margin-left: -9.5px;
bottom: -20px;
}
.mh-loading {
background-color: unset;
}
/* #docContentTxt {
display: none;
opacity: 0;
width: 0;
height: 0;
} */
body.useOldFixed .human-wrap,
body.UseInMobile .human-wrap {
display: none !important;
}
@keyframes jitter {
10%,
90% {
transform: translate3d(-1px, 0, 0);
}
20%,
80% {
transform: translate3d(+2px, 0, 0);
}
30%,
70% {
transform: translate3d(-4px, 0, 0);
}
40%,
60% {
transform: translate3d(+4px, 0, 0);
}
50% {
transform: translate3d(-4px, 0, 0);
}
}
@media screen and (max-width: 768px) {
.document.mt-1.mt-12 table, .c-txt.left table{max-width:initial;}
.human-wrap {
bottom: 1rem;
right: 1rem;
}
.human-default-img {
left: 0.6rem;
}
.humanwrap-close{
right: -.75rem;
width: .3rem;
top: -.1rem;
}
.metahuman-section .metahuman-section-tip {
left: -0.4rem;
top: -0.9rem;
margin-left: 0;
}
.metahuman-section {
right: -25px;
display: flex;
flex-direction: column;
align-items: center;
}
.human-container {
width: 100px;
height: 115px;
}
}
</style>
<!--数字人开始-->
<div class="human-wrap">
<img src="/images/metahuman-default.png" alt="" class="human-default-img" />
<img class="humanwrap-close" src="/images/humanwrap-close.png" />
<div class="metahuman-section">
<div class="metahuman-section-tip">
我是“渝快小宝”<br />点击我,为您语音播报
</div>
<div class="human-container"></div>
<img src="/images/metahuman-close.png" class="metahuman-section-close" alt="" />
</div>
</div>
<script>
$(function() {
var metaReg = /(?=.*[A-Za-z])(?=.*[\d])(?=.*_)/;
var hrefStr = location.href.substring(location.href.lastIndexOf('/') + 1, location.href.lastIndexOf('.'))
if (metaReg.test(hrefStr) && hrefStr.indexOf('.cn') == -1) { //判断是否详情页
if (location.href.indexOf('/zwgk/szfld/ld/') != -1 || location.href.indexOf('/zwgk/szfld/msz/') != -1 || location.href.indexOf('/zwgk/szfld/sz/') != -1 || location.href.indexOf('/szfwj/xzgfxwj/') != -1 || location.href.indexOf('/fzhsxgz/fzhsxxzgfxwj/') != -1 || hrefStr.indexOf('index_') != -1 || location.href.indexOf('/zcwd/bmlist') != -1 || location.href.indexOf('/hdjl/cqhlwdc/lyxd1') != -1 || location.href.indexOf('/igixmj/gkzxft/') != -1 || location.href.indexOf('/igixmj/gkzxdc/') != -1 || location.href.indexOf('/igixmj/gkyjzj/') != -1) {
//判断是否领导详情,行政规章不显示数字人,互动交流模块内容
$(".human-wrap").remove()
} else {
try {
$(".human-wrap").show()
var canShowHuman = false;
// 数字人实例化
var humanContainer = document.querySelector('.human-container')
var human = new Metahuman({
container: humanContainer,
voice: 'Aishuo',
voiceSpeed: -100,
speakKwReplace: {
'○': '零'
},
// 数字人准备完毕回调
onReady: function() {
canShowHuman = true
}
})
var humanPlayStatus = false;
var humanCanDone = true
//文档纯文字内容去掉空格
// var docContentTxt = $("#docContentTxt").text().replace(/\s/g, '')
var docContentTxt = '';
if ($("div").hasClass("TRS_UEDITOR")) {
docContentTxt = $(".TRS_UEDITOR").html().replace(/<[^>]+>/g, "").replace(/\s/g, '').replace(/ /g, '')
} else {
if ($("div").hasClass("document mt-1 mt-12")) {
docContentTxt = $(".document.mt-1.mt-12").html().replace(/<[^>]+>/g, "").replace(/\s/g, '').replace(/ /g, '')
}
}
//改变提示文字
function changeShowInfo(type) {
if (type == 'stop') {
humanCanDone = true
$(".metahuman-section-tip").html('我是“渝快小宝”</br>点击我,关闭语音播报')
$('.metahuman-section-tip').css("background-image", "url(//www.cq.gov.cn/images/metahuman-tipbg.png)");
} else if (type == 'play') {
humanCanDone = true
$(".metahuman-section-tip").html('我是“渝快小宝”</br>点击我,为您语音播报')
$('.metahuman-section-tip').css("background-image", "url(//www.cq.gov.cn/images/metahuman-tipbg.png)");
} else {
humanCanDone = false
$(".metahuman-section-tip").html('我是“渝快小宝”</br>正在读取播报内容...')
$('.metahuman-section-tip').css("background-image", "url(//www.cq.gov.cn/images/metahuman-tipbg-load.png)");