xiaoyong931011
2022-08-09 489b38cff851af79c1908c7493e9025eec87be7c
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=1200">
    <meta name="keywords" content="湖南省安化县人民法院">
    <meta name="description" content="湖南省安化县人民法院">
    <title>湖南省安化县人民法院</title>
    <link rel="stylesheet" href="http://120.27.238.55:8000/cms/css/reset.css">
    <link rel="stylesheet" href="http://120.27.238.55:8000/cms/css/common.css">
    <link rel="stylesheet" href="http://120.27.238.55:8000/cms/css/lib/swiper-3.4.2.min.css">
    <style>
        
        /* 头条推荐 */
        .recommen-box{
            background: #E5E5E5;
            font-size: 0;
        }
        .recommen-box .left-img{
            width: 126px;
            vertical-align: middle;
        }
        .recommen-box .right{
            display: inline-block;
            vertical-align: middle;
            max-width: calc(100% - 126px);
            padding: 0 24px;
            box-sizing: border-box;
        }
        .recommen-box .title{
            font-size: 36px;
            font-weight: bold;
        }
        .recommen-box .desc{
            font-size: 14px;
            margin: 6px 0;
            word-wrap: break-word;
        }
        /* 新闻 */
        .news-box{
            margin: 16px 0;
        }
        .news-swiper .swiper-container {
            width: 100%;
            height: 315px;
        }
        .news-swiper .swiper-slide{
            position: relative;
        }
        .news-swiper img{
            display: block;
            max-width: 100%;
            height: 100%;
            margin: 0 auto;
        }
        .news-swiper .title{
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 16px 4px;
            box-sizing: border-box;
            background: rgba(47, 47, 47, 0.5);
            color: #ffffff;
            font-size: 16px;
        }
        .news-swiper .swiper-pagination{
            bottom: 18px;
            padding-right: 12px;
            box-sizing: border-box;
            text-align: right;
        }
        .news-swiper .swiper-pagination .swiper-pagination-bullet{
            width: 6px;
            height: 6px;
            border-radius: 0;
            opacity: 1;
            background: #ffffff;
            vertical-align: middle;
        }
        .news-swiper .swiper-pagination .swiper-pagination-bullet-active{
            width: 10px;
            height: 10px;
            background: #1B6FB8;
        }
        .news-box .article-list>li>a{
            display: block;
        }
        .news-box .article-list li .desc{
            display: none;
            text-indent: 2em;
            padding-top: 4px;
            padding-bottom: 12px;
            color: #808080;
            border-bottom: 1px solid #E5E5E5;
        }
        .news-box .article-list li:nth-last-of-type(1) .desc{
            border-bottom-color: #ffffff;
        }
        .news-box .article-list li.active .title{
            font-size: 16px;
            font-weight: bold;
        }
        .news-box .article-list li.active .desc{
            display: block;
        }
        .system-list{
            background: #ffffff;
            margin: 0 -8px 0;
            overflow: hidden;
        }
        .system-list .item{
            float: left;
            display: table;
            width: 186px;
            height: 95px;
            margin: 0 8px 16px;
            padding: 0 12px;
            box-sizing: border-box;
            background: rgba(27, 111, 184, 0.05);
            border: 1px solid #1B6FB8;
            text-align: center;
            font-weight: bold;
            cursor: pointer;
            font-size: 16px;
        }
        .system-list .item>div{
            vertical-align:middle;
            display:table-cell;
        }
        .system-list .item span{
            display: block;
            line-height: 24px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }
        .system-list .item:hover span{
            color: #1B6FB8;
        }
        .system-list .item:nth-child(1) p{
            font-size: 14px;
            color: #1B6FB8;
            margin-bottom: 4px;
        }
        .system-list .item:nth-child(1) span{
            font-size: 22px;
            color: #1B6FB8;
        }
        .banner-list{
            overflow: hidden;
            margin: 0 -8px 8px;
        }
        .banner-list .item{
            float: left;
            width: calc(50% - 16px);
            margin: 0 8px 8px 8px;
        }
        .banner-list .item img{
            max-width: 100%;
            max-height: 100%;
        }
        .img-list{
            margin-top: 8px;
            margin-bottom: 24px;
        }
        .img-list .swiper-container {
            width: 100%;
            height: 151px;
        }
        .img-list .swiper-slide{
            position: relative;
        }
        .img-list img{
            max-width: 100%;
            height: 100%;
            display: block;
            margin: 0 auto;
        }
        .img-list .title{
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 10px 5px;
            box-sizing: border-box;
            background: rgba(47, 47, 47, 0.5);
            color: #ffffff;
            font-size: 14px;
            overflow: hidden;
            text-overflow:ellipsis;
            white-space: nowrap;
        }
        .links{
            border: 1px solid #E5E5E5;
            font-size: 0;
            background: linear-gradient(180deg, #3398CC 0%, #1B6FB8 100%);
        }
        .links .left{
            display: inline-block;
            width: 80px;
            color: #ffffff;
            text-align: center;
            vertical-align: middle;
        }
        .links .left .title{
            font-size: 14px;
        }
        .links .right{
            background: #ffffff;
            vertical-align: middle;
            display: inline-block;
            width: calc(100% - 80px);
            padding: 12px 20px;
            font-size: 14px;
            box-sizing: border-box;
        }
        .links .right a{
            display: inline-block;
            margin: 6px 20px;
            text-align: center;
        }
    </style>
</head>
<body>
    <div class="header">
        <div class="box">
            <div class="container clearfix">
                <div class="fl">
                    <span>2022年5月12日</span>
                    <span class="ml-5">星期四</span>
                </div>
                <div class="fr clearfix">
                    <a href="#" onclick="setHomePage(this,window.location)">设为首页</a>
                    <span class="line"></span>
                    <a href="#" onclick="addToBookMark(window.location,document.title)">加入收藏</a>
                    <span class="line"></span>
                    <div class="search-box fr">
                        <form method="POST" action="/article/essearch.shtml">
                            <input name="keyword" type="text" class="input fl" placeholder="请输入关键字">     
                            <input type="submit" name="button" value="搜索" class="btn fl">
                        </form>
                    </div>
                </div>
            </div>
        </div>
        <div class="banner">
            <img src="http://120.27.238.55:8000/cms/images/banner.png" alt="">
        </div>
        <div class="nav">
            <ul class="container">
                <li class="active">
                    <a href="index.html">首页</a>
                </li>
                <li>
                    <a href="news.html">法院要闻</a>
                    <div class="layout">
                        <div class="item"><a href="">法院新闻</a></div>
                        <div class="item"><a href="">图片新闻</a></div>
                        <div class="item"><a href="">媒体报道</a></div>
                    </div>
                </li>
                <li><a href="">综合信息</a></li>
                <li><a href="">公文发布</a></li>
                <li><a href="">规章制度</a></li>
                <li><a href="">司法管理</a></li>
                <li><a href="">工作经验</a></li>
                <li><a href="">调查研究</a></li>
                <li><a href="">裁判文书</a></li>
                <li><a href="">法院文化</a></li>
                <li>
                    <a href="">特色栏目</a>
                    <div class="layout">
                        <div class="item"><a href="">典型案例</a></div>
                        <div class="item"><a href="">工作经验</a></div>
                        <div class="item"><a href="">调查研究</a></div>
                        <div class="item"><a href="">法学论文</a></div>
                        <div class="item"><a href="">法律法规</a></div>
                        <div class="item"><a href="">本院简报</a></div>
                        <div class="item"><a href="">地方法规</a></div>
                    </div>
                </li>
            </ul>
        </div>
    </div>
    <div class="container">
        <div class="recommen-box">
            <img src="http://120.27.238.55:8000/cms/images/recommend-icon.png" alt="头条推荐" class="left-img">
            <div class="right">
                <a href="detail.html">
                    <h3 class="title text-overflow">建一流队伍,创一流业绩,奋力开创安化县法院工作新局面</h3>
                    <p class="desc text-overflow-2">全市法院工作暨党风廉政建设和反腐败工作会议召开</p>
                </a>
            </div>
        </div>
        <div class="news-box row">
            <div class="col-4">
                <div class="news-swiper">
                    <div class="swiper-container">
                        <div class="swiper-wrapper">
                            <div class="swiper-slide">
                                <a href="detail.html">
                                    <img src="http://120.27.238.55:8000/cms/images/news.png" alt="">
                                    <p class="title">为群众办实事 | 院长接访听诉求 释法说理解民忧</p>
                                </a>
                            </div>
                            <div class="swiper-slide">
                                <a href="detail.html">
                                    <img src="http://120.27.238.55:8000/cms/images/icon2.png" alt="">
                                    <p class="title">院长接访听诉求 释法说理解民忧</p>
                                </a>
                            </div>
                            <div class="swiper-slide">
                                <a href="detail.html">
                                    <img src="http://120.27.238.55:8000/cms/images/news.png" alt="">
                                    <p class="title">为群众办实事 | </p>
                                </a>
                            </div>
                            <div class="swiper-slide">
                                <a href="detail.html">
                                    <img src="http://120.27.238.55:8000/cms/images/news.png" alt="">
                                    <p class="title">为群众办实事 | </p>
                                </a>
                            </div>
                            <div class="swiper-slide">
                                <a href="detail.html">
                                    <img src="http://120.27.238.55:8000/cms/images/news.png" alt="">
                                    <p class="title">为群众办实事 | </p>
                                </a>
                            </div>
                        </div>
                        <div class="swiper-pagination"></div>
                    </div>
                </div>
            </div>
            <div class="col-6">
                <div class="c-title-box">
                    <h2 class="title active">法院要闻</h2>
                    <a class="more" href="">更多>></a>
                </div>
                <ul class="article-list" id="newsList">
                    <li>
                        <a href="detail.html">
                            <div>
                                <span class="title text-overflow-2">优化营商环境 | 法庭送法入企 助力乡村振兴</span>
                                <span class="time">2022-01-01</span>
                            </div>
                            <div class="desc"> 这是新中国成立以来第一部以法典命名的法律,这是一部被誉为“社会生活的百科全书”的法典。民法典涉
                                及社会生活的方方面面,贯穿你我他的一生。值此民法典颁布两周年之际,最高人民法院新闻局特别推出《学法
                                典读案例答问题》栏目,邀请中央广播电视总台主持人李修平、贺红梅、崔志刚、张仲......<span class="color-blue">【详细】</span></div>
                        </a>
                    </li>
                    <li>
                        <a href="detail.html">
                            <div>
                                <span class="title text-overflow-2">优化营商环境 | 法庭送法入企 助力乡村振兴</span>
                                <span class="time">2022-01-01</span>
                            </div>
                            <div class="desc"> 这是新中国成立以来第一部以法典命名的法律,这是一部被誉为“社会生活的百科全书”的法典。民法典涉
                                及社会生活的方方面面,贯穿你我他的一生。值此民法典颁布两周年之际,最高人民法院新闻局特别推出《学法
                                典读案例答问题》栏目,邀请中央广播电视总台主持人李修平、贺红梅、崔志刚、张仲......<span class="color-blue">【详细】</span></div>
                        </a>
                    </li>
                    <li>
                        <a href="detail.html">
                            <div>
                                <span class="title text-overflow-2">优化营商环境 | 法庭送法入企 助力乡村振兴</span>
                                <span class="time">2022-01-01</span>
                            </div>
                            <div class="desc"> 这是新中国成立以来第一部以法典命名的法律,这是一部被誉为“社会生活的百科全书”的法典。民法典涉
                                及社会生活的方方面面,贯穿你我他的一生。值此民法典颁布两周年之际,最高人民法院新闻局特别推出《学法
                                典读案例答问题》栏目,邀请中央广播电视总台主持人李修平、贺红梅、崔志刚、张仲......<span class="color-blue">【详细】</span></div>
                        </a>
                    </li>
                    <li>
                        <a href="detail.html">
                            <div>
                                <span class="title text-overflow-2">优化营商环境 | 法庭送法入企 助力乡村振兴</span>
                                <span class="time">2022-01-01</span>
                            </div>
                            <div class="desc"> 这是新中国成立以来第一部以法典命名的法律,这是一部被誉为“社会生活的百科全书”的法典。民法典涉
                                及社会生活的方方面面,贯穿你我他的一生。值此民法典颁布两周年之际,最高人民法院新闻局特别推出《学法
                                典读案例答问题》栏目,邀请中央广播电视总台主持人李修平、贺红梅、崔志刚、张仲......<span class="color-blue">【详细】</span></div>
                        </a>
                    </li>
                    <li>
                        <a href="detail.html">
                            <div>
                                <span class="title text-overflow-2">优化营商环境 | 法庭送法入企 助力乡村振兴</span>
                                <span class="time">2022-01-01</span>
                            </div>
                            <div class="desc"> 这是新中国成立以来第一部以法典命名的法律,这是一部被誉为“社会生活的百科全书”的法典。民法典涉
                                及社会生活的方方面面,贯穿你我他的一生。值此民法典颁布两周年之际,最高人民法院新闻局特别推出《学法
                                典读案例答问题》栏目,邀请中央广播电视总台主持人李修平、贺红梅、崔志刚、张仲......<span class="color-blue">【详细】</span></div>
                        </a>
                    </li>
                </ul>
            </div>
        </div>
        <div class="row">
            <div class="col-4 box enable--edit--column">
                <div class="tab-title c-title-box">
                    <h2 class="title active">本院公告</h2>
                    <h2 class="title">公文发布</h2>
                    <a class="more enable--edit--txt" href="./news.html">更多>></a>
                </div>
                <div class="tab-content">
                    <!-- 本院公告 -->
                    <ul class="article-list">
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 法庭送法入企 助力乡村振兴</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 南县人民法院召开优化营商环境、推进破产案件审理工作联...</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">是否该交物业费?业主与物业公司对簿公堂,法院判了</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">普通程序中的“独任”——新规定跑出新速度</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">资阳区人民法院少年法庭开讲啦!</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                    <!-- 公文发布 -->
                    <ul class="article-list hide">
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            <div class="col-6">
                <div class="row">
                    <div class="col-5-7 box enable--edit--column">
                        <div class="tab-title c-title-box">
                            <h2 class="title active">综合信息</h2>
                            <a class="more enable--edit--txt" href="./news.html">更多>></a>
                        </div>
                        <div class="tab-content">
                            <ul class="article-list">
                                <li>
                                    <a href="">
                                        <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                        <span class="time">2022-01-01</span>
                                    </a>
                                </li>
                                <li>
                                    <a href="">
                                        <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                        <span class="time">2022-01-01</span>
                                    </a>
                                </li>
                                <li>
                                    <a href="">
                                        <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                        <span class="time">2022-01-01</span>
                                    </a>
                                </li>
                                <li>
                                    <a href="">
                                        <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                        <span class="time">2022-01-01</span>
                                    </a>
                                </li>
                                <li>
                                    <a href="">
                                        <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                        <span class="time">2022-01-01</span>
                                    </a>
                                </li>
                            </ul>
                        </div>
                    </div>
                    <div class="col-4-2 box">
                        <div class="c-title-box">
                            <h2 class="title">开庭公告</h2>
                            <a class="more">更多>></a>
                        </div>
                        <ul class="article-list">
                            <li>
                                <a href="">
                                    <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                    <span class="time">2022-01-01</span>
                                </a>
                            </li>
                            <li>
                                <a href="">
                                    <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                    <span class="time">2022-01-01</span>
                                </a>
                            </li>
                            <li>
                                <a href="">
                                    <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                    <span class="time">2022-01-01</span>
                                </a>
                            </li>
                            <li>
                                <a href="">
                                    <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                    <span class="time">2022-01-01</span>
                                </a>
                            </li>
                            <li>
                                <a href="">
                                    <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                    <span class="time">2022-01-01</span>
                                </a>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
        
        <div class="system-list">
            <a class="item" href="">
                <div>
                    <p>欢迎使用</p>
                    <span>业务系统</span>
                </div>
            </a>
            <a class="item">
                <div>
                    <span>法律法规查询系统</span>
                </div>
            </a>
            <a class="item">
                <div>
                    <span>邮件系统</span>
                </div>
            </a>
            <a class="item">
                <div>
                    <span>视频资料</span>
                </div>
            </a>
            <a class="item">
                <div>
                    <span>办公自动化系统</span>
                </div>
            </a>
            <a class="item">
                <div>
                    <span>数字法院审判系统</span>
                </div>
            </a>
            <a class="item">
                <div>
                    <span>知网数据库(法律)</span>
                </div>
            </a>
            <a class="item">
                <div>
                    <span>庭审直播点播</span>
                </div>
            </a>
        </div>
        <div class="row">
            <div class="col-4 box">
                <div class="tab-title c-title-box">
                    <h2 class="title active">质量绩效</h2>
                    <h2 class="title">廉政教育</h2>
                    <a class="more">更多>></a>
                </div>
                <div class="tab-content">
                    <!-- 质量绩效 -->
                    <ul class="article-list">
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 法庭送法入企 助力乡村振兴</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 南县人民法院召开优化营商环境、推进破产案件审理工作联...</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">是否该交物业费?业主与物业公司对簿公堂,法院判了</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">普通程序中的“独任”——新规定跑出新速度</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">资阳区人民法院少年法庭开讲啦!</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                    <!-- 廉政教育 -->
                    <ul class="article-list hide">
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            <div class="col-6 box">
                <div class="tab-title c-title-box">
                    <h2 class="title active">典型人物</h2>
                    <h2 class="title">先进集体</h2>
                    <h2 class="title">表彰奖励</h2>
                    <h2 class="title">荣誉集锦</h2>
                    <a class="more">更多>></a>
                </div>
                <div class="tab-content">
                    <!-- 典型人物 -->
                    <ul class="article-list">
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 法庭送法入企 助力乡村振兴</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 南县人民法院召开优化营商环境、推进破产案件审理工作联...</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">是否该交物业费?业主与物业公司对簿公堂,法院判了</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">普通程序中的“独任”——新规定跑出新速度</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">资阳区人民法院少年法庭开讲啦!</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                    <!-- 先进集体 -->
                    <ul class="article-list hide">
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                    <!-- 表彰奖励 -->
                    <ul class="article-list hide">
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                     <!-- 荣誉集锦 -->
                     <ul class="article-list hide">
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
        <div class="banner-list">
            <div class="item">
                <img src="http://120.27.238.55:8000/cms/images/shce.jpg" alt="" class="enable--edit--img">
            </div>
            <div class="item">
                <img src="http://120.27.238.55:8000/cms/images/bwcx.jpg" alt="" class="enable--edit--img">
            </div>
        </div>
        <div class="row">
            <div class="col-7 box">
                <div class="tab-title c-title-box">
                    <h2 class="title active">法律法规</h2>
                    <h2 class="title">规章制度</h2>
                    <a class="more">更多>></a>
                </div>
                <div class="tab-content">
                    <!-- 法律法规 -->
                    <ul class="article-list">
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 法庭送法入企 助力乡村振兴</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 南县人民法院召开优化营商环境、推进破产案件审理工作联...</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">是否该交物业费?业主与物业公司对簿公堂,法院判了</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">普通程序中的“独任”——新规定跑出新速度</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">资阳区人民法院少年法庭开讲啦!</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                    <!-- 规章制度 -->
                    <ul class="article-list hide">
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            <div class="col-3">
                <div class="c-title-box"></div>
                <ul class="quick-list">
                    <li>
                        <a href="mailto:942534046@qq.com">
                            <img src="http://120.27.238.55:8000/cms/images/icon3.png" alt="" class="enable--edit--img">
                            <span class="txt">院长信箱</span>
                        </a>
                    </li>
                    <li>
                        <a href="onlineMsg.html">
                            <img src="http://120.27.238.55:8000/cms/images/icon1.png" alt="" class="enable--edit--img">
                            <span class="txt">在线留言</span>
                        </a>
                    </li>
                    <li>
                        <a href="">
                            <img src="http://120.27.238.55:8000/cms/images/icon2.png" alt="" class="enable--edit--img">
                            <span class="txt">法官论坛</span>
                        </a>
                    </li>
                    
                </ul>
            </div>
        </div>
        <div class="row">
            <div class="col-7 box">
                <div class="tab-title c-title-box">
                    <h2 class="title active">党务公开</h2>
                    <h2 class="title">本院简报</h2>
                    <h2 class="title">公文信息</h2>
                    <a class="more">更多>></a>
                </div>
                <div class="tab-content">
                    <!-- 党务公开 -->
                    <ul class="article-list">
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 法庭送法入企 助力乡村振兴</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 南县人民法院召开优化营商环境、推进破产案件审理工作联...</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">是否该交物业费?业主与物业公司对簿公堂,法院判了</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">普通程序中的“独任”——新规定跑出新速度</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">资阳区人民法院少年法庭开讲啦!</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                    <!-- 本院简报 -->
                    <ul class="article-list hide">
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                    <!-- 公文信息 -->
                    <ul class="article-list hide">
                        <li>
                            <a href="">
                                <p class="title">南县人民法院南县人民法院“两个确立”主题教育学习集锦“两个确立”主题教育学习集锦</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
            <div class="col-3 box">
                <div class="tab-title c-title-box">
                    <h2 class="title active">法学论文</h2>
                    <a class="more">更多>></a>
                </div>
                <div class="tab-content">
                    <!-- 法学论文 -->
                    <ul class="article-list">
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 法庭送法入企 助力乡村振兴</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                        <li>
                            <a href="">
                                <p class="title">优化营商环境 | 南县人民法院召开优化营商环境、推进破产案件审理工作联...</p>
                                <span class="time">2022-01-01</span>
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
        <div class="row">
            <div class="img-list">
                <div class="swiper-container">
                    <div class="swiper-wrapper">
                        <div class="swiper-slide">
                            <a href="detail.html">
                                <img src="http://120.27.238.55:8000/cms/images/news.png" alt="">
                                <p class="title">1</p>
                            </a>
                        </div>
                        <div class="swiper-slide">
                            <a href="detail.html">
                                <img src="http://120.27.238.55:8000/cms/images/news.png" alt="">
                                <p class="title">2</p>
                            </a>
                        </div>
                        <div class="swiper-slide">
                            <a href="detail.html">
                                <img src="http://120.27.238.55:8000/cms/images/news.png" alt="">
                                <p class="title">3</p>
                            </a>
                        </div>
                        <div class="swiper-slide">
                            <a href="detail.html">
                                <img src="http://120.27.238.55:8000/cms/images/news.png" alt="">
                                <p class="title">4</p>
                            </a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div class="links">
            <div class="left">
                <p class="title">友情链接</p>
            </div>
            <div class="right">
                <a href="">湖南省高级人民法院</a>
                <a href="">长沙市中级人民法院</a>
                <a href="">株洲市中级人民法院</a>
                <a href="">株洲市中级人民法院</a>
                <a href="">株洲市中级人民法院</a>
                <a href="">株洲市中级人民法院</a>
                <a href="">株洲市中级人民法院</a>
                <a href="">株洲市中级人民法院</a>
                <a href="">株洲市中级人民法院</a>
                <a href="">株洲市中级人民法院</a>
                <a href="">株洲市中级人民法院</a>
            </div>
        </div>
    </div>
    <div class="footer">
        <img src="http://120.27.238.55:8000/cms/images/footer-icon.png" alt="">
        <p class="enable--edit--txt">湖南省安化县人民法院版权所有</p>
        <a href="">后台管理</a>
    </div>
 
    <script src="http://120.27.238.55:8000/cms/js/lib/jquery-2.1.1.min.js"></script>
    <script src="http://120.27.238.55:8000/cms/js/lib/swiper-3.4.2.min.js"></script>
    <script src="http://120.27.238.55:8000/cms/js/common.js"></script>
    <script>
        var newsListItemEl = document.getElementById('newsList').getElementsByTagName('li');
        var newsSwiper = new Swiper ('.news-swiper .swiper-container', {
            autoplay: 5000,
            loop: true,
            pagination: '.swiper-pagination',
            paginationClickable: true,
            onSlideChangeStart: function(swiper){
                var preIndex = swiper.previousIndex;
                if(preIndex) {
                    newsListItemEl[preIndex-1].className = '';
                }
                var index = swiper.activeIndex ==6 ? 0: swiper.activeIndex-1
                newsListItemEl[index].className = 'active';
            }
        })    
        // for(var i = 0; i < newsListItemEl.length; i++) {
        //     (function (index) {
        //         newsListItemEl[index].onmouseenter = function () {
        //             newsListItemEl[0].className = '';
        //             newsListItemEl[index].className = 'active';
        //             newsSwiper.slideTo(index+1, 800, false);
        //         };
        //         newsListItemEl[index].onmouseleave = function () {
        //             newsListItemEl[index].className = '';
        //         };
        //     })(i)
        // }
        
        $('.tab-title .title').click(function () {
            var index = $(this).index()
            $(this).addClass('active').siblings().removeClass('active');
            $(this).parent().next().children().eq(index).siblings().hide()
            $(this).parent().next().children().eq(index).show()
        })
        var swiper = new Swiper('.img-list .swiper-container', {
            autoplay: 5000,
            speed: 1000,
            loop: true,
            spaceBetween: 16,
            slidesPerView: 5
        });
    </script>
</body>
</html>