-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathzby.html
1819 lines (1584 loc) · 146 KB
/
zby.html
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
<title>直播点播</title>
<meta name="keywords" content="直播点播" />
<meta name="description" content="直播点播" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="referrer" content="always"> <script>var maccms={"path":"","mid":"1","url":"yanetflix.com","wapurl":"yanetflix.com","mob_status":"2"};</script>
<link rel="icon" href="https://ugc.hitv.com/3/22040215100116D5902FA5F85F30A2245E0DAAAAFMjky/uyu3xI0.png" type="image/png" />
<link href="https://netflix.mom//mxstatic/css/style.css" rel="stylesheet" type="text/css">
<link href="/mxstatic/css/aliicon.css" rel="stylesheet" type="text/css">
<link type="text/css" rel="stylesheet" href="https://netflix.mom//mxstatic/css/mxhtmlblack.css">
<link disabled="" class="theme_white" type="text/css" rel="stylesheet" href="https://netflix.mom//mxstatic/css/white.css">
<script src="https://netflix.mom//mxstatic/js/jquery.js"></script>
<script type="text/javascript" src="https://netflix.mom//mxstatic/js/jquery.lazyload.js"></script>
<script src="https://netflix.mom//mxstatic/js/jquery.autocomplete.js"></script>
<script src="https://netflix.mom//mxstatic/js/jquery.cookie.js"></script>
<script src="https://netflix.mom//mxstatic/js/home.js"></script>
<script type="text/javascript" src="https://netflix.mom//mxstatic/js/jquery.clipboard.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/layer/3.1.1/layer.js"></script>
<script src="https://netflix.mom//mxstatic/js/script.js"></script>
<script>
var clothes = $.cookie('clothes');
if (clothes) {
if (clothes == 'black') {
$('.theme_white').removeAttr('disabled');
} else {
$('.theme_white').attr('disabled', '');
}
} else {
$.cookie('clothes', 'white', { expires: 365, path: '/' })
}
</script>
<script>
function clothesChange(){
var clothes = $.cookie('clothes');
if (clothes == 'white') {
$.cookie('clothes','black', {expires: 365, path: '/'});
$('.theme_white').each(function(){
$(this).removeAttr('disabled');
});
} else {
$.cookie('clothes','white', {expires: 365, path: '/'});
$('.theme_white').each(function(){
$(this).attr('disabled', '');
});
}
clothes = $.cookie('clothes');
}
</script>
<!-- 全局广告位 -->
</head>
<body class="view page">
<header id="header" class="wrapper" >
<div class="header-content ">
<div class="content">
<div class="brand">
<a href="/" class="logo" title="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧"><img src="https://ugc.hitv.com/3/22040215100116D5902FA5F85F30A2245E0DAAAAFMjky/uyu3xI0.png" alt="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧"></a>
</div>
<div class="nav-search">
<form action="/index.php/vod/search.html" class="search-dh">
<div class="search-box"><input class="search-input ac_wd txtKeywords" type="text" name="wd" autocomplete="off" placeholder="PC端使用火狐或穀歌瀏覽器,移動端使用誇克瀏覽器!">
<div class="search-drop">
<div class="drop-content-items ac_hot none">
<div class="list-item list-item-title"><strong>大家都在搜这些影片</strong></div>
<div class="search-tag">
<a href="/index.php/vod/search/wd/%E6%B5%B4%E8%A1%80%E9%BB%91%E5%B8%AE%E7%AC%AC%E5%85%AD%E5%AD%A3.html" class="hot "><i class="icon-hot"></i>浴血黑帮第六季</a>
<a href="/index.php/vod/search/wd/%E5%83%B5%E5%B0%B8%E6%A0%A1%E5%9B%AD.html" class="hot "><i class="icon-hot"></i>僵尸校园</a>
<a href="/index.php/vod/search/wd/%E8%AF%AF%E6%9D%802.html" class="hot "><i class="icon-hot"></i>误杀2</a>
<a href="/index.php/vod/search/wd/%E6%B3%A2%E5%B7%B4%26middot%3B%E8%B4%B9%E7%89%B9%E4%B9%8B%E4%B9%A6.html" class="hot "><i class="icon-hot"></i>波巴·费特之书</a>
<a href="/index.php/vod/search/wd/%E6%B8%85%E6%B4%81%E5%B7%A5.html" class=""><i class="icon-hot"></i>清洁工</a>
<a href="/index.php/vod/search/wd/%E4%BA%A2%E5%A5%8B%E7%AC%AC%E4%BA%8C%E5%AD%A3.html" class=""><i class="icon-hot"></i>亢奋第二季</a>
</div>
</div>
</div>
<a href="/index.php/label/top.html" class="search-btn search-cupfox" id="search-cupfox" title="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧排行榜" ><i class="icon-happy phb"></i></a> <button class="search-btn search-go" type="submit"><i class="icon-search"></i></button>
<button class="cancel-btn" type="button">取消</button>
</div>
</form>
</div>
<div class="nav">
<ul class="nav-menu-items">
<li class="nav-menu-item ">
<a href="/" title="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧首页">
<i class="icon-home nav-menu-item-name-white"></i> <span class="nav-menu-item-name">首页</span></a>
</li>
<li class="nav-menu-item ">
<a href="/index.php/vod/type/id/1.html" title="电影">
<i class="icon-cate-dy nav-menu-item-name-white"></i>
<span class="nav-menu-item-name">电影</span></a>
</li>
<li class="nav-menu-item selected">
<a href="/index.php/vod/type/id/2.html" title="连续剧">
<i class="icon-cate-ds nav-menu-item-name-white"></i>
<span class="nav-menu-item-name">连续剧</span></a>
</li>
<li class="nav-menu-item ">
<a href="/index.php/vod/type/id/3.html" title="综艺">
<i class="icon-cate-zy nav-menu-item-name-white"></i>
<span class="nav-menu-item-name">综艺</span></a>
</li>
<li class="nav-menu-item ">
<a href="/index.php/vod/type/id/4.html" title="动漫">
<i class="icon-cate-dm nav-menu-item-name-white"></i>
<span class="nav-menu-item-name">动漫</span></a>
</li>
<li class="nav-menu-item">
<a target="_blank" href="/index.php/vod/show/id/1.html" class="nav-link" >
<i class="icon-tv nav-menu-item-name-white"></i>
<span class="nav-menu-item-name"> 片库</span>
</a>
</li>
<li class="nav-menu-item domain plus">
<a href="javascript:;" title="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧最新域名">
<i class="icon-domain nav-menu-item-name-white"></i>
<span class="nav-menu-item-name">网址</span><em>+</em></a>
</li>
<li class="nav-menu-item ">
<a href="/index.php/label/app.html" title="下载鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧APP"><i class="icon-app pc"></i><span class="nav-menu-item-name">APP</span></a>
</li>
</ul>
</div>
<div class="header-module">
<ul class="nav-menu-items">
<li class="nav-menu-item drop"><span class="nav-menu-icon"><i class="icon-all"></i></span>
<div class="drop-content sub-block">
<div class="drop-content-box grid-box">
<ul class="drop-content-items grid-items">
<li class="grid-item">
<a href="/"><i class="icon-home"></i>
<div class="grid-item-name" title="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧首页">首页</div>
</a>
</li>
<li class="grid-item">
<a href="/index.php/vod/type/id/1.html" title="电影">
<i class="icon-cate-dy"></i> <div class="grid-item-name">电影</div>
</a>
</li>
<li class="grid-item">
<a href="/index.php/vod/type/id/2.html" title="连续剧">
<i class="icon-cate-ds"></i> <div class="grid-item-name">连续剧</div>
</a>
</li>
<li class="grid-item">
<a href="/index.php/vod/type/id/3.html" title="综艺">
<i class="icon-cate-zy"></i> <div class="grid-item-name">综艺</div>
</a>
</li>
<li class="grid-item">
<a href="/index.php/vod/type/id/4.html" title="动漫">
<i class="icon-cate-dm"></i> <div class="grid-item-name">动漫</div>
</a>
</li>
<li class="grid-item">
<a href="/index.php/label/web.html"><i class="icon-domain"></i>
<div class="grid-item-name" title="网址">网址</div>
</a>
</li>
<li class="grid-item grid-more">
<a class="grid-more-link" href="/index.php/vod/show/id/13.html" title="查看全部影片">
<div class="grid-item-name">全部影片</div>
</a>
</li>
<li class="grid-item grid-more android">
<a href="/index.php/label/app.html" class="grid-more-link" title="下载鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧APP">
<div class="grid-item-name">下载客户端</div>
</a>
</li>
</ul>
</div>
</div>
<div class="shortcuts-mobile-overlay"></div>
</li>
<li class="nav-menu-item nav-menu-search"><i class="icon-search"></i></li>
<li class="space-line-bold"></li>
<li class="nav-menu-item drop"><span class="nav-menu-icon"><i class="icon-watch-history"></i></span>
<div class="drop-content drop-history">
<div class="drop-content-box">
<ul class="drop-content-items" id="history">
<li class="list-item list-item-title">
<a href="" class="playlist historyclean"><i class="icon-clear"></i></a>
<strong>我的观影记录</strong></li>
</ul>
</div>
</div>
<div class="shortcuts-mobile-overlay"></div>
</li>
</ul>
</div>
</div>
</div>
</header>
<script>
$(".nav-menu-search").click(function () {
$(".nav-search").addClass("block");
});
$(document).scroll(function() {
var H = $(document).scrollTop();
if(H > 20) {
$(".header-content").addClass("header-bg");
} else {
$(".header-content").removeClass("header-bg");
}
if(H > 140) {
$(".header-content").addClass("header-bg");
$(".search-dh").append($(".search-box"));
$(".nav-menu-search").click(function () {
$(".nav-search").addClass("block");
});
} else {
$(".header-content").removeClass("header-bg");
$(".search-main").append($(".search-box"));
}
});
</script>
<!-- 头部 -->
<main id="main" class="wrapper">
<div class="content">
<div class="box view-heading">
<div class="mobile-play">
<div class="module-item-cover">
<div class="module-item-pic"><img class="lazyload" data-src="https://www.kongbuya.com/img.php?url=https://img1.doubanio.com/view/photo/s_ratio_poster/public/p2871686979.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg"></div>
</div>
</div>
<div class="video-cover">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/play/id/54076/sid/1/nid/1.html" title="立刻播放风起陇西"><i class="icon-play"></i></a><img class="lazyload" alt="风起陇西" data-src="https://www.kongbuya.com/img.php?url=https://img1.doubanio.com/view/photo/s_ratio_poster/public/p2871686979.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg">
<div class="loading"></div>
</div>
</div>
</div>
<div class="video-info">
<div class="video-info-header">
<h1 class="page-title">风起陇西</h1>
<h2 class="video-subtitle" title="又名:fengqilongxi">fengqilongxi</h2>
<div class="scroll-box">
<div class="video-info-aux scroll-content">
<a href="/index.php/vod/type/id/2.html" title="连续剧" class="tag-link">
<span class="video-tag-icon">
<i class="icon-cate-ds"></i>
连续剧 </span>
</a>
<div class="tag-link">
<span class="slash">/</span>
<a href="/index.php/vod/show/class/%E5%89%A7%E6%83%85/id/13.html">剧情</a><span class="slash">/</span>
<a href="/index.php/vod/show/class/%E6%82%AC%E7%96%91/id/13.html">悬疑</a><span class="slash">/</span>
<a href="/index.php/vod/show/class/%E5%8E%86%E5%8F%B2/id/13.html">历史</a><span class="slash">/</span>
<a href="/index.php/vod/show/class/%E5%8F%A4%E8%A3%85/id/13.html">古装</a><span class="slash">/</span>
<a href="/index.php/vod/show/class/%E5%9B%BD%E4%BA%A7/id/13.html">国产</a><span class="slash">/</span>
</div>
<a class="tag-link" href="/index.php/vod/show/id/13/year/2022.html">2022 </a>
<a class="tag-link" href="/index.php/vod/show/area/%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86/id/13.html">中国大陆 </a>
</div>
</div>
<a href="/index.php/vod/play/id/54076/sid/1/nid/1.html" class="btn-important btn-large shadow-drop video-info-play" title="立刻播放风起陇西"><i class="icon-play"></i><strong>立即播放</strong></a>
</div>
<div class="video-info-main">
<div class="video-info-items"><span class="video-info-itemtitle">导演:</span>
<div class="video-info-item video-info-actor"><span class="slash">/</span>
<a href="/index.php/vod/search/director/%E8%B7%AF%E9%98%B3.html" target="_blank">路阳</a><span class="slash">/</span> </div>
</div>
<div class="video-info-items"><span class="video-info-itemtitle">主演:</span>
<div class="video-info-item video-info-actor"><span class="slash">/</span>
<a href="/index.php/vod/search/actor/%E9%99%88%E5%9D%A4.html" target="_blank">陈坤</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E7%99%BD%E5%AE%87.html" target="_blank">白宇</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E8%81%82%E8%BF%9C.html" target="_blank">聂远</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E5%B0%B9%E9%93%B8%E8%83%9C.html" target="_blank">尹铸胜</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E5%B8%B8%E8%BF%9C.html" target="_blank">常远</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E6%9D%A8%E9%A2%96.html" target="_blank">杨颖</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E5%AD%99%E6%80%A1.html" target="_blank">孙怡</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E4%BF%9E%E7%81%8F%E6%98%8E.html" target="_blank">俞灏明</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E7%8E%8B%E9%AA%81.html" target="_blank">王骁</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E6%9D%A8%E8%BD%B6.html" target="_blank">杨轶</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E5%BC%A0%E6%99%93%E6%99%A8.html" target="_blank">张晓晨</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E5%88%98%E4%BA%AD%E4%BD%9C.html" target="_blank">刘亭作</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E8%B5%B5%E5%B3%A5.html" target="_blank">赵峥</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E4%BB%8E%E7%91%9E%E9%BA%9F.html" target="_blank">从瑞麟</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E5%BC%A0%E6%88%88.html" target="_blank">张戈</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E4%BE%AF%E7%8E%AE%E6%B6%9B.html" target="_blank">侯玮涛</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E5%BD%AD%E4%B9%89%E7%A8%8B.html" target="_blank">彭义程</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E9%99%88%E5%87%AF%E6%96%87.html" target="_blank">陈凯文</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E8%91%A3%E5%AD%90%E5%81%A5.html" target="_blank">董子健</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E9%83%AD%E4%BA%AC%E9%A3%9E.html" target="_blank">郭京飞</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E6%9D%8E%E5%85%89%E6%B4%81.html" target="_blank">李光洁</a><span class="slash">/</span><a href="/index.php/vod/search/actor/%E5%BC%BA%E5%B7%B4%E6%89%8D%E4%B8%B9.html" target="_blank">强巴才丹</a><span class="slash">/</span> </div>
</div>
<div class="video-info-items"><span class="video-info-itemtitle">上映:</span>
<div class="video-info-item">2022-04-27(中国大陆)</div>
</div>
<div class="video-info-items"><span class="video-info-itemtitle"> 集数:</span>
<div class="video-info-item">全24集</div>
</div>
<p class="data video-info-items"><span class="text-muted"><img src="https://img3.doubanio.com/favicon.ico" style="width:15px; height:15px"></span><a href="https://search.douban.com/movie/subject_search?search_text=风起陇西" target="_blank" title="到豆瓣页面查看" rel="nofollow"><font color="#007711"> :风起陇西</font></a></p>
<div class="video-info-items"><span class="video-info-itemtitle">TAG:</span>
<div class="video-info-item"><a href="/index.php/vod/search/tag/%E9%A3%8E%E8%B5%B7%E9%99%87%E8%A5%BF.html" target="_blank">风起陇西</a> <a href="/index.php/vod/search/tag/%E9%99%88%E6%81%AD.html" target="_blank">陈恭</a> <a href="/index.php/vod/search/tag/%E8%B0%8D%E6%88%98.html" target="_blank">谍战</a> <a href="/index.php/vod/search/tag/%E8%8D%80%E8%AF%A9.html" target="_blank">荀诩</a> <a href="/index.php/vod/search/tag/ddd.html" target="_blank">ddd</a> <a href="/index.php/vod/search/tag/%E8%8B%B1%E9%9B%84%E4%BC%A0.html" target="_blank">英雄传</a> <a href="/index.php/vod/search/tag/%E8%B0%B1%E5%86%99.html" target="_blank">谱写</a> </div>
</div>
<div class="video-info-items"><span class="video-info-itemtitle">剧情:</span>
<div class="video-info-item video-info-content vod_content">
<span>天下三分,烽火四起,在这个英雄辈出的时代,战争不仅有刀光剑影,亦不只是血肉搏杀。秘密情报线上的生死角逐,正涌动于滚滚洪流的阴影当中。两个不被乱世聚焦的“小人物”——陈恭(陈坤饰)与荀诩(白宇饰),他们生死相依的兄弟情在惊心动魄的谍战中爆发出夺目光辉,谱写出一段英雄传奇。</span>
<a href="javaScript:;" class="shrink">收起</a>
</div>
</div>
</div>
<div class="video-info-footer display">
<div class="video-info-share">
<button class="share-btn" data-clipboard-text="yanetflix.com/index.php/vod/detail/id/54076.html 我正在鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧观看《风起陇西》,推荐给你一起看!">好影片,与好朋友一起分享<i class="icon-happy"></i></button>
</div>
<a href="/index.php/vod/play/id/54076/sid/1/nid/1.html" class="btn-important btn-large shadow-drop" title="立刻播放风起陇西"><i class="icon-play"></i><strong>立即播放</strong></a>
</div>
</div>
</div> <!-- 简介 -->
<div class="module">
<div class="module-heading">
<h2 class="module-title" title="风起陇西在线观看列表">在线观看</h2>
倒序
<div class="module-tab module-player-tab ">
<input type="hidden" name="tab" id="tab" class="module-tab-input">
<label class="module-tab-name"><span class="module-tab-value">切换节点</span><i class="icon-arrow-bottom-o"></i></label>
<div class="module-tab-items">
<div class="module-tab-title">播放节点列表<span class="close-drop"><i class="icon-close-o"></i></span></div>
<div class="module-tab-content">
<div class="module-tab-item tab-item" data-dropdown-value="主用WD"><span>主用WD</span><small>24</small></div>
<div class="module-tab-item tab-item" data-dropdown-value="备用蓝光RX"><span>备用蓝光RX</span><small>24</small></div>
<div class="module-tab-item tab-item" data-dropdown-value="备用蓝光RR"><span>备用蓝光RR</span><small>24</small></div>
</div>
</div>
</div>
<div class="shortcuts-mobile-overlay"></div>
</div>
<div class="module-list module-player-list tab-list sort-list " id="glist-3">
<div class="module-tab module-sorttab">
<input type="hidden" name="tab-sort" id="tab-sort" class="module-tab-input">
<label class="module-tab-name"><i class="icon-sort"></i></label>
<div class="module-tab-items">
<div class="module-tab-title">选集<span class="close-drop"><i class="icon-close-o"></i></span><a class="desc sort-button" href="javascript:void(0);" to="#sort-item-3"><i class="icon-sort"></i>排序</a></div>
<div class="module-tab-content">
<div class="module-blocklist">
<div class="sort-item" id="sort-item-3">
<a href="/index.php/vod/play/id/54076/sid/3/nid/1.html" title="播放风起陇西第01集"><span>第01集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/2.html" title="播放风起陇西第02集"><span>第02集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/3.html" title="播放风起陇西第03集"><span>第03集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/4.html" title="播放风起陇西第04集"><span>第04集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/5.html" title="播放风起陇西第05集"><span>第05集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/6.html" title="播放风起陇西第06集"><span>第06集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/7.html" title="播放风起陇西第07集"><span>第07集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/8.html" title="播放风起陇西第08集"><span>第08集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/9.html" title="播放风起陇西第09集"><span>第09集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/10.html" title="播放风起陇西第10集"><span>第10集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/11.html" title="播放风起陇西第11集"><span>第11集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/12.html" title="播放风起陇西第12集"><span>第12集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/13.html" title="播放风起陇西第13集"><span>第13集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/14.html" title="播放风起陇西第14集"><span>第14集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/15.html" title="播放风起陇西第15集"><span>第15集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/16.html" title="播放风起陇西第16集"><span>第16集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/17.html" title="播放风起陇西第17集"><span>第17集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/18.html" title="播放风起陇西第18集"><span>第18集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/19.html" title="播放风起陇西第19集"><span>第19集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/20.html" title="播放风起陇西第20集"><span>第20集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/21.html" title="播放风起陇西第21集"><span>第21集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/22.html" title="播放风起陇西第22集"><span>第22集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/23.html" title="播放风起陇西第23集"><span>第23集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/24.html" title="播放风起陇西第24集"><span>第24集</span></a>
</div>
</div>
</div>
</div>
</div>
<div class="shortcuts-mobile-overlay"></div>
<div class="module-blocklist scroll-box scroll-box-y">
<div class="scroll-content">
<a href="/index.php/vod/play/id/54076/sid/3/nid/1.html" title="播放风起陇西第01集"><span>第01集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/2.html" title="播放风起陇西第02集"><span>第02集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/3.html" title="播放风起陇西第03集"><span>第03集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/4.html" title="播放风起陇西第04集"><span>第04集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/5.html" title="播放风起陇西第05集"><span>第05集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/6.html" title="播放风起陇西第06集"><span>第06集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/7.html" title="播放风起陇西第07集"><span>第07集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/8.html" title="播放风起陇西第08集"><span>第08集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/9.html" title="播放风起陇西第09集"><span>第09集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/10.html" title="播放风起陇西第10集"><span>第10集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/11.html" title="播放风起陇西第11集"><span>第11集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/12.html" title="播放风起陇西第12集"><span>第12集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/13.html" title="播放风起陇西第13集"><span>第13集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/14.html" title="播放风起陇西第14集"><span>第14集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/15.html" title="播放风起陇西第15集"><span>第15集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/16.html" title="播放风起陇西第16集"><span>第16集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/17.html" title="播放风起陇西第17集"><span>第17集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/18.html" title="播放风起陇西第18集"><span>第18集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/19.html" title="播放风起陇西第19集"><span>第19集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/20.html" title="播放风起陇西第20集"><span>第20集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/21.html" title="播放风起陇西第21集"><span>第21集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/22.html" title="播放风起陇西第22集"><span>第22集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/23.html" title="播放风起陇西第23集"><span>第23集</span></a>
<a href="/index.php/vod/play/id/54076/sid/3/nid/24.html" title="播放风起陇西第24集"><span>第24集</span></a>
</div>
</div>
</div>
<div class="module-list module-player-list tab-list sort-list " id="glist-2">
<div class="module-tab module-sorttab">
<input type="hidden" name="tab-sort" id="tab-sort" class="module-tab-input">
<label class="module-tab-name"><i class="icon-sort"></i></label>
<div class="module-tab-items">
<div class="module-tab-title">选集<span class="close-drop"><i class="icon-close-o"></i></span><a class="desc sort-button" href="javascript:void(0);" to="#sort-item-2"><i class="icon-sort"></i>排序</a></div>
<div class="module-tab-content">
<div class="module-blocklist">
<div class="sort-item" id="sort-item-2">
<a href="/index.php/vod/play/id/54076/sid/2/nid/1.html" title="播放风起陇西第1集"><span>第1集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/2.html" title="播放风起陇西第2集"><span>第2集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/3.html" title="播放风起陇西第3集"><span>第3集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/4.html" title="播放风起陇西第4集"><span>第4集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/5.html" title="播放风起陇西第5集"><span>第5集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/6.html" title="播放风起陇西第6集"><span>第6集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/7.html" title="播放风起陇西第7集"><span>第7集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/8.html" title="播放风起陇西第8集"><span>第8集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/9.html" title="播放风起陇西第9集"><span>第9集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/10.html" title="播放风起陇西第10集"><span>第10集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/11.html" title="播放风起陇西第11集"><span>第11集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/12.html" title="播放风起陇西第12集"><span>第12集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/13.html" title="播放风起陇西第13集"><span>第13集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/14.html" title="播放风起陇西第14集"><span>第14集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/15.html" title="播放风起陇西第15集"><span>第15集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/16.html" title="播放风起陇西第16集"><span>第16集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/17.html" title="播放风起陇西第17集"><span>第17集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/18.html" title="播放风起陇西第18集"><span>第18集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/19.html" title="播放风起陇西第19集"><span>第19集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/20.html" title="播放风起陇西第20集"><span>第20集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/21.html" title="播放风起陇西第21集"><span>第21集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/22.html" title="播放风起陇西第22集"><span>第22集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/23.html" title="播放风起陇西第23集"><span>第23集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/24.html" title="播放风起陇西第24集"><span>第24集</span></a>
</div>
</div>
</div>
</div>
</div>
<div class="shortcuts-mobile-overlay"></div>
<div class="module-blocklist scroll-box scroll-box-y">
<div class="scroll-content">
<a href="/index.php/vod/play/id/54076/sid/2/nid/1.html" title="播放风起陇西第1集"><span>第1集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/2.html" title="播放风起陇西第2集"><span>第2集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/3.html" title="播放风起陇西第3集"><span>第3集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/4.html" title="播放风起陇西第4集"><span>第4集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/5.html" title="播放风起陇西第5集"><span>第5集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/6.html" title="播放风起陇西第6集"><span>第6集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/7.html" title="播放风起陇西第7集"><span>第7集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/8.html" title="播放风起陇西第8集"><span>第8集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/9.html" title="播放风起陇西第9集"><span>第9集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/10.html" title="播放风起陇西第10集"><span>第10集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/11.html" title="播放风起陇西第11集"><span>第11集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/12.html" title="播放风起陇西第12集"><span>第12集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/13.html" title="播放风起陇西第13集"><span>第13集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/14.html" title="播放风起陇西第14集"><span>第14集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/15.html" title="播放风起陇西第15集"><span>第15集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/16.html" title="播放风起陇西第16集"><span>第16集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/17.html" title="播放风起陇西第17集"><span>第17集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/18.html" title="播放风起陇西第18集"><span>第18集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/19.html" title="播放风起陇西第19集"><span>第19集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/20.html" title="播放风起陇西第20集"><span>第20集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/21.html" title="播放风起陇西第21集"><span>第21集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/22.html" title="播放风起陇西第22集"><span>第22集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/23.html" title="播放风起陇西第23集"><span>第23集</span></a>
<a href="/index.php/vod/play/id/54076/sid/2/nid/24.html" title="播放风起陇西第24集"><span>第24集</span></a>
</div>
</div>
</div>
<div class="module-list module-player-list tab-list sort-list " id="glist-1">
<div class="module-tab module-sorttab">
<input type="hidden" name="tab-sort" id="tab-sort" class="module-tab-input">
<label class="module-tab-name"><i class="icon-sort"></i></label>
<div class="module-tab-items">
<div class="module-tab-title">选集<span class="close-drop"><i class="icon-close-o"></i></span><a class="desc sort-button" href="javascript:void(0);" to="#sort-item-1"><i class="icon-sort"></i>排序</a></div>
<div class="module-tab-content">
<div class="module-blocklist">
<div class="sort-item" id="sort-item-1">
<a href="/index.php/vod/play/id/54076/sid/1/nid/1.html" title="播放风起陇西第01集"><span>第01集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/2.html" title="播放风起陇西第02集"><span>第02集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/3.html" title="播放风起陇西第03集"><span>第03集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/4.html" title="播放风起陇西第04集"><span>第04集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/5.html" title="播放风起陇西第05集"><span>第05集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/6.html" title="播放风起陇西第06集"><span>第06集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/7.html" title="播放风起陇西第07集"><span>第07集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/8.html" title="播放风起陇西第08集"><span>第08集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/9.html" title="播放风起陇西第09集"><span>第09集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/10.html" title="播放风起陇西第10集"><span>第10集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/11.html" title="播放风起陇西第11集"><span>第11集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/12.html" title="播放风起陇西第12集"><span>第12集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/13.html" title="播放风起陇西第13集"><span>第13集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/14.html" title="播放风起陇西第14集"><span>第14集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/15.html" title="播放风起陇西第15集"><span>第15集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/16.html" title="播放风起陇西第16集"><span>第16集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/17.html" title="播放风起陇西第17集"><span>第17集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/18.html" title="播放风起陇西第18集"><span>第18集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/19.html" title="播放风起陇西第19集"><span>第19集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/20.html" title="播放风起陇西第20集"><span>第20集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/21.html" title="播放风起陇西第21集"><span>第21集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/22.html" title="播放风起陇西第22集"><span>第22集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/23.html" title="播放风起陇西第23集"><span>第23集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/24.html" title="播放风起陇西第24集"><span>第24集</span></a>
</div>
</div>
</div>
</div>
</div>
<div class="shortcuts-mobile-overlay"></div>
<div class="module-blocklist scroll-box scroll-box-y">
<div class="scroll-content">
<a href="/index.php/vod/play/id/54076/sid/1/nid/1.html" title="播放风起陇西第01集"><span>第01集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/2.html" title="播放风起陇西第02集"><span>第02集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/3.html" title="播放风起陇西第03集"><span>第03集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/4.html" title="播放风起陇西第04集"><span>第04集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/5.html" title="播放风起陇西第05集"><span>第05集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/6.html" title="播放风起陇西第06集"><span>第06集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/7.html" title="播放风起陇西第07集"><span>第07集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/8.html" title="播放风起陇西第08集"><span>第08集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/9.html" title="播放风起陇西第09集"><span>第09集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/10.html" title="播放风起陇西第10集"><span>第10集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/11.html" title="播放风起陇西第11集"><span>第11集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/12.html" title="播放风起陇西第12集"><span>第12集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/13.html" title="播放风起陇西第13集"><span>第13集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/14.html" title="播放风起陇西第14集"><span>第14集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/15.html" title="播放风起陇西第15集"><span>第15集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/16.html" title="播放风起陇西第16集"><span>第16集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/17.html" title="播放风起陇西第17集"><span>第17集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/18.html" title="播放风起陇西第18集"><span>第18集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/19.html" title="播放风起陇西第19集"><span>第19集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/20.html" title="播放风起陇西第20集"><span>第20集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/21.html" title="播放风起陇西第21集"><span>第21集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/22.html" title="播放风起陇西第22集"><span>第22集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/23.html" title="播放风起陇西第23集"><span>第23集</span></a>
<a href="/index.php/vod/play/id/54076/sid/1/nid/24.html" title="播放风起陇西第24集"><span>第24集</span></a>
</div>
</div>
</div>
</div>
<script type="text/javascript">$(".tab-item:first,.module-list:first").addClass("selected");</script> <!-- 播放列表 -->
<div class="module-blocklist module-player-list" style="padding: 35px;border-radius: 10px;margin-bottom: 20px;"> <h3 style="text-align: center;">關注微信公眾號 📨 鴨奈飛影視 📨 每天更新熱門網飛下載資源 😝
鴨奈飛電影 📽️ YaNetflix. com新功能變數名稱 🆕 Netflix. Mom歡迎大家分享給身邊朋友! 🚨 為確保正常觀看 💻 PC端請使用穀歌瀏覽器 📱 移動端請使用誇克瀏覽器 😎 廣告合作聯系TG @YaChangZhu</h3></div>
<div class="player-recommend recommend-two recommend-list"><a href="https://ihezu.run/yUw8Kz" target="_blank"><img src="https://sf1-scmcdn-tos.pstatp.com/obj/ad-tetris-site/file/1643005765028/d5fb42bf87a8786ef57b75b686b394c8"></a></div>
<style>
.recommend-two a {
margin: 0 5px;
display: inline-block;
width: calc(100% - 10px);
}
.recommend-list img {
display: block;
width: 100%;
border-radius: 10px;
}
</style> <!-- 广告位 --> <!-- 相关话题 -->
<!-- 系列影片 -->
<div class="module">
<div class="module-heading">
<h2 class="module-title" title="与风起陇西相关的影片列表">相关影片</h2>
</div>
<div class="module-list module-lines-list">
<div class="module-items">
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/54343.html" title="明天,会更好" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="https://www.kongbuya.com/img.php?url=https://img9.doubanio.com/view/photo/l_ratio_poster/public/p2872044464.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="明天,会更好">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2022</span>
<span class="video-class">国产剧</span>
<span>中国大陆</span>
</div>
<div class="module-item-content">
<div class="module-item-style video-name">
<a href="/index.php/vod/detail/id/54343.html" title="明天,会更好">明天,会更好</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E6%9F%B4%E7%A2%A7%E4%BA%91.html" target="_blank">柴碧云</a> <a href="/index.php/vod/search/actor/%E6%9D%8E%E5%80%A9.html" target="_blank">李倩</a> <a href="/index.php/vod/search/actor/%E4%BD%95%E6%98%8E%E7%BF%B0.html" target="_blank">何明翰</a> </div>
<div class="module-item-style video-text"> 刘小怜与丁格尔是情同手足的好姐妹,格尔因意外错过大学面试,与小怜一起上了护校。毕业后两人被分到同一所医院,科主任郝湘宁的儿子吴南,被开朗的小怜所吸引。曾被小怜拒绝的夏天退伍归来,格尔对夏天展开攻势</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/54343.html" class="module-item-title" title="明天,会更好">明天,会更好</a>
</div>
<div class="module-item-text">更新至20集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/54280.html" title="运河风流" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="https://www.kongbuya.com/img.php?url=https://img1.doubanio.com/view/photo/l_ratio_poster/public/p2547488647.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="运河风流">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2022</span>
<span class="video-class">国产剧</span>
<span>中国大陆</span>
</div>
<div class="module-item-content">
<div class="module-item-style video-name">
<a href="/index.php/vod/detail/id/54280.html" title="运河风流">运河风流</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E5%B7%A9%E5%B3%A5.html" target="_blank">巩峥</a> <a href="/index.php/vod/search/actor/%E7%8E%8B%E5%AA%9B%E5%8F%AF.html" target="_blank">王媛可</a> <a href="/index.php/vod/search/actor/%E6%9D%8E%E4%B9%83%E6%96%87.html" target="_blank">李乃文</a> <a href="/index.php/vod/search/actor/%E6%9D%8E%E4%B8%9E%E5%B3%B0.html" target="_blank">李丞峰</a> <a href="/index.php/vod/search/actor/%E5%AE%8B%E4%BD%B3%E4%BC%A6.html" target="_blank">宋佳伦</a> <a href="/index.php/vod/search/actor/%E8%90%A8%E6%97%A5%E5%A8%9C.html" target="_blank">萨日娜</a> <a href="/index.php/vod/search/actor/%E5%B2%B3%E6%97%B8.html" target="_blank">岳旸</a> <a href="/index.php/vod/search/actor/%E6%A2%81%E6%9E%97%E7%90%B3.html" target="_blank">梁林琳</a> <a href="/index.php/vod/search/actor/%E5%88%98%E5%A8%81.html" target="_blank">刘威</a> <a href="/index.php/vod/search/actor/%E7%8E%8B%E8%B6%85%E5%B8%8F.html" target="_blank">王超帏</a> </div>
<div class="module-item-style video-text"> 山东济宁,南临微山,东辖曲阜,大运河穿城而过,得交通之便,浸孔孟之风,自古以来政要商贾云集、文人雅士汇聚,是北方赫赫有名的水陆大码头,被冠以“运河之都”的美名。</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/54280.html" class="module-item-title" title="运河风流">运河风流</a>
</div>
<div class="module-item-text">更新至28集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/54151.html" title="高兴的酸甜苦辣" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="http://1img.hitv.com/preview/sp_images/2022/04/25/202204251812314963031.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="高兴的酸甜苦辣">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2022</span>
<span class="video-class">国产剧</span>
<span>中国大陆</span>
</div>
<div class="module-item-content">
<div class="module-item-style video-name">
<a href="/index.php/vod/detail/id/54151.html" title="高兴的酸甜苦辣">高兴的酸甜苦辣</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E6%9C%B1%E6%A2%93%E9%AA%81.html" target="_blank">朱梓骁</a> <a href="/index.php/vod/search/actor/%E5%A8%84%E8%89%BA%E6%BD%87.html" target="_blank">娄艺潇</a> <a href="/index.php/vod/search/actor/%E5%88%98%E4%B8%80%E5%90%AB.html" target="_blank">刘一含</a> </div>
<div class="module-item-style video-text">该剧讲述了北京女孩李飒飒因缘巧合下结识了北漂的陕北男孩常高兴,两人从陌生到熟悉,遭遇了情感、事业上的诸多考验,一路互相扶持、共同成长的故事。</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/54151.html" class="module-item-title" title="高兴的酸甜苦辣">高兴的酸甜苦辣</a>
</div>
<div class="module-item-text">更新至23集/40集全</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/51232.html" title="又是努力的一天呢第二季" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="http://0img.hitv.com/preview/sp_images/2022/04/12/202204121544253582178.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="又是努力的一天呢第二季">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2022</span>
<span class="video-class">国产剧</span>
<span>内地</span>
</div>
<div class="module-item-content">
<div class="module-item-style video-name">
<a href="/index.php/vod/detail/id/51232.html" title="又是努力的一天呢第二季">又是努力的一天呢第二季</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E4%B8%81%E6%95%AC%E4%B8%80.html" target="_blank">丁敬一</a> <a href="/index.php/vod/search/actor/%E5%BC%A0%E5%BF%83%E6%80%A1.html" target="_blank">张心怡</a> <a href="/index.php/vod/search/actor/%E5%88%9D%E4%BF%8A%E8%BE%B0.html" target="_blank">初俊辰</a> <a href="/index.php/vod/search/actor/%E6%9F%A5%E7%A5%8E%E7%90%9B.html" target="_blank">查祎琛</a> <a href="/index.php/vod/search/actor/%E7%99%BD%E6%9D%B0.html" target="_blank">白杰</a> <a href="/index.php/vod/search/actor/%E5%8F%B2%E9%9B%85%E6%AC%A3.html" target="_blank">史雅欣</a> </div>
<div class="module-item-style video-text">延续第一季的剧情,讲述了立志35岁“提前退休”的辛凡才刚踏出第一步就被现实打败了,花千金也面临店铺经营困扰无暇顾及感情......越来越多有趣的人,加入了这个热闹的小团体,这群年轻人依旧续写着他们的生</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/51232.html" class="module-item-title" title="又是努力的一天呢第二季">又是努力的一天呢第二季</a>
</div>
<div class="module-item-text">更新至28集/共45集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/50413.html" title="与君初相识·恰似故人归" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="http://m.ykimg.com/05340000616F794A13EB66095E2F698D" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="与君初相识·恰似故人归">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2022</span>
<span class="video-class">国产剧</span>
<span>内地</span>
</div>
<div class="module-item-content">
<div class="module-item-style video-name">
<a href="/index.php/vod/detail/id/50413.html" title="与君初相识·恰似故人归">与君初相识·恰似故人归</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E8%BF%AA%E4%B8%BD%E7%83%AD%E5%B7%B4.html" target="_blank">迪丽热巴</a> <a href="/index.php/vod/search/actor/%E4%BB%BB%E5%98%89%E4%BC%A6.html" target="_blank">任嘉伦</a> <a href="/index.php/vod/search/actor/%E8%82%96%E9%A1%BA%E5%B0%A7.html" target="_blank">肖顺尧</a> <a href="/index.php/vod/search/actor/%E9%83%AD%E6%99%93%E5%A9%B7.html" target="_blank">郭晓婷</a> <a href="/index.php/vod/search/actor/%E8%8C%83%E6%A1%A2.html" target="_blank">范桢</a> <a href="/index.php/vod/search/actor/%E6%AD%A4%E6%B2%99.html" target="_blank">此沙</a> <a href="/index.php/vod/search/actor/%E7%8E%8B%E5%AD%90%E8%85%BE.html" target="_blank">王子腾</a> <a href="/index.php/vod/search/actor/%E7%8E%8B%E4%B8%9C.html" target="_blank">王东</a> <a href="/index.php/vod/search/actor/%E6%B5%B7%E4%B8%80%E5%A4%A9.html" target="_blank">海一天</a> <a href="/index.php/vod/search/actor/%E8%83%A1%E6%84%8F%E6%97%8B.html" target="_blank">胡意旋</a> <a href="/index.php/vod/search/actor/%E7%AB%A5%E8%95%BE.html" target="_blank">童蕾</a> <a href="/index.php/vod/search/actor/%E6%9C%B1%E9%94%90%E6%96%8C.html" target="_blank">朱锐斌</a> <a href="/index.php/vod/search/actor/%E4%B9%9D%E9%B9%AD%E9%9D%9E%E9%A6%99.html" target="_blank">九鹭非香</a> </div>
<div class="module-item-style video-text">《与君初相识·恰似故人归》分为上下两部。上部《与君初相识》,下部《恰似故人归》。故事讲述了御灵师纪云禾自幼被谷主以毒药所控,梦想不惜一切代价出逃,寻找自由,为此她决定利用被送入谷中的鲛人长意。但长意的</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/50413.html" class="module-item-title" title="与君初相识·恰似故人归">与君初相识·恰似故人归</a>
</div>
<div class="module-item-text">42集全</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/54342.html" title="杠杆" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="https://www.kongbuya.com/img.php?url=https://img1.doubanio.com/view/photo/l_ratio_poster/public/p2619334828.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="杠杆">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2022</span>
<span class="video-class">国产剧</span>
<span>中国大陆</span>
</div>
<div class="module-item-content">
<div class="module-item-style video-name">
<a href="/index.php/vod/detail/id/54342.html" title="杠杆">杠杆</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E9%83%AD%E4%BA%AC%E9%A3%9E.html" target="_blank">郭京飞</a> <a href="/index.php/vod/search/actor/%E4%BA%8E%E6%AF%85.html" target="_blank">于毅</a> <a href="/index.php/vod/search/actor/%E4%BD%9F%E4%B8%BD%E5%A8%85.html" target="_blank">佟丽娅</a> <a href="/index.php/vod/search/actor/%E5%BC%A0%E4%B8%B0%E6%AF%85.html" target="_blank">张丰毅</a> <a href="/index.php/vod/search/actor/%E9%92%B1%E6%99%93%E8%95%B4.html" target="_blank">钱晓蕴</a> <a href="/index.php/vod/search/actor/%E7%86%8A%E9%BB%9B%E6%9E%97.html" target="_blank">熊黛林</a> <a href="/index.php/vod/search/actor/%E5%BC%A0%E6%99%9E%E4%B8%B4.html" target="_blank">张晞临</a> <a href="/index.php/vod/search/actor/%E9%BB%84%E4%BF%8A%E9%B9%8F.html" target="_blank">黄俊鹏</a> <a href="/index.php/vod/search/actor/%E5%88%98%E5%AE%89%E5%BA%B7.html" target="_blank">刘安康</a> <a href="/index.php/vod/search/actor/%E9%82%93%E5%87%AF%E5%8C%80.html" target="_blank">邓凯匀</a> <a href="/index.php/vod/search/actor/%E6%9D%9C%E5%8A%9F%E6%B5%B7.html" target="_blank">杜功海</a> <a href="/index.php/vod/search/actor/%E7%9F%B3%E5%BB%B7%E5%82%B2.html" target="_blank">石廷傲</a> <a href="/index.php/vod/search/actor/%E9%AB%98%E6%89%AC%E6%A3%8B.html" target="_blank">高扬棋</a> <a href="/index.php/vod/search/actor/%E5%90%B4%E6%B3%B3%E9%9D%93.html" target="_blank">吴泳靓</a> <a href="/index.php/vod/search/actor/%E7%8E%8B%E7%87%95%E9%98%B3.html" target="_blank">王燕阳</a> </div>
<div class="module-item-style video-text"> 该剧以经侦处长萧剑(于毅 饰)侦查离奇车祸案开始,通过对“海翔集团”违法操控股市的调查深入,引发对神秘商业大鳄胥枫(郭京飞 饰)过去的创业史探究。而关键性证人的丧失、社会舆论的施压、死亡的主谋、胥</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/54342.html" class="module-item-title" title="杠杆">杠杆</a>
</div>
<div class="module-item-text">更新至15集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/54233.html" title="良辰好景知几何" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="https://www.kongbuya.com/img.php?url=https://img2.doubanio.com/view/photo/l_ratio_poster/public/p2609583651.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="良辰好景知几何">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2022</span>
<span class="video-class">国产剧</span>
<span>中国大陆</span>
</div>
<div class="module-item-content">
<div class="module-item-style video-name">
<a href="/index.php/vod/detail/id/54233.html" title="良辰好景知几何">良辰好景知几何</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E7%AA%A6%E9%AA%81.html" target="_blank">窦骁</a> <a href="/index.php/vod/search/actor/%E9%99%88%E9%83%BD%E7%81%B5.html" target="_blank">陈都灵</a> <a href="/index.php/vod/search/actor/%E8%83%A1%E5%86%9B.html" target="_blank">胡军</a> <a href="/index.php/vod/search/actor/%E7%8E%8B%E5%8A%B2%E6%9D%BE.html" target="_blank">王劲松</a> <a href="/index.php/vod/search/actor/%E8%A2%81%E6%98%8A.html" target="_blank">袁昊</a> <a href="/index.php/vod/search/actor/%E8%B5%B5%E6%A8%B1%E5%AD%90.html" target="_blank">赵樱子</a> <a href="/index.php/vod/search/actor/%E8%B5%96%E8%89%BA.html" target="_blank">赖艺</a> <a href="/index.php/vod/search/actor/%E8%91%A3%E7%92%87.html" target="_blank">董璇</a> <a href="/index.php/vod/search/actor/%E4%BD%95%E6%98%8E%E7%BF%B0.html" target="_blank">何明翰</a> <a href="/index.php/vod/search/actor/%E5%A7%9A%E5%AE%89%E6%BF%82.html" target="_blank">姚安濂</a> <a href="/index.php/vod/search/actor/%E5%88%98%E8%90%8C%E8%90%8C.html" target="_blank">刘萌萌</a> <a href="/index.php/vod/search/actor/%E5%85%B3%E8%8A%AF.html" target="_blank">关芯</a> <a href="/index.php/vod/search/actor/%E5%86%89%E6%97%AD.html" target="_blank">冉旭</a> <a href="/index.php/vod/search/actor/%E5%BC%A0%E5%BC%93.html" target="_blank">张弓</a> </div>
<div class="module-item-style video-text"> 民国时期军阀割据,豆蔻才女林杭景因父亲被害入狱,投奔父亲好友萧大帅,虽寄人篱下却不卑不亢,萧家的霸道三少萧北辰从起先对她极尽欺负到逐渐被其坚强独立吸引。萧大帅为锻炼儿子派其到军校学习,七姨娘允诺等</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/54233.html" class="module-item-title" title="良辰好景知几何">良辰好景知几何</a>
</div>
<div class="module-item-text">更新至19集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/54214.html" title="新居之约" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="https://www.kongbuya.com/img.php?url=https://img9.doubanio.com/view/photo/l_ratio_poster/public/p2872007374.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="新居之约">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2022</span>
<span class="video-class">国产剧</span>
<span>中国大陆</span>
</div>
<div class="module-item-content">
<div class="module-item-style video-name">
<a href="/index.php/vod/detail/id/54214.html" title="新居之约">新居之约</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E6%BD%98%E7%B2%A4%E6%98%8E.html" target="_blank">潘粤明</a> <a href="/index.php/vod/search/actor/%E7%8E%8B%E9%B8%A5.html" target="_blank">王鸥</a> <a href="/index.php/vod/search/actor/%E5%AD%99%E5%9D%9A.html" target="_blank">孙坚</a> <a href="/index.php/vod/search/actor/%E6%9D%8E%E8%89%BA%E5%BD%A4.html" target="_blank">李艺彤</a> <a href="/index.php/vod/search/actor/%E5%88%98%E5%A4%A9%E4%BD%90.html" target="_blank">刘天佐</a> <a href="/index.php/vod/search/actor/%E4%BB%A3%E6%96%AF.html" target="_blank">代斯</a> <a href="/index.php/vod/search/actor/%E5%BC%A0%E5%87%AF%E4%B8%BD.html" target="_blank">张凯丽</a> <a href="/index.php/vod/search/actor/%E8%91%A3%E7%92%87.html" target="_blank">董璇</a> <a href="/index.php/vod/search/actor/%E9%99%88%E5%AD%90%E7%94%B1.html" target="_blank">陈子由</a> <a href="/index.php/vod/search/actor/%E5%BC%A0%E6%A3%AA%E7%90%B0.html" target="_blank">张棪琰</a> <a href="/index.php/vod/search/actor/%E9%9B%B7%E7%89%A7.html" target="_blank">雷牧</a> <a href="/index.php/vod/search/actor/%E6%9C%B1%E8%BF%91%E6%A1%90.html" target="_blank">朱近桐</a> <a href="/index.php/vod/search/actor/%E8%B5%B5%E9%BE%99%E8%B1%AA.html" target="_blank">赵龙豪</a> <a href="/index.php/vod/search/actor/%E5%B2%B3%E8%B7%83%E5%88%A9.html" target="_blank">岳跃利</a> <a href="/index.php/vod/search/actor/%E5%86%AF%E5%8D%83.html" target="_blank">冯千</a> </div>
<div class="module-item-style video-text"> 杨光是一家小型装饰公司的经理,通透世故的他只想和气生财,照顾好亲人,可他对自家人的过分包容导致引火烧身,只好挂靠到大型装饰公司赢家,成为一名项目经理,也因此与天才设计师陈曦冤家聚头。杨光陈曦两人完</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/54214.html" class="module-item-title" title="新居之约">新居之约</a>
</div>
<div class="module-item-text">更新至15集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/51414.html" title="没有工作的一年" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="http://2img.hitv.com/preview/sp_images/2022/04/06/202204061902540777158.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="没有工作的一年">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>1</span>
<span class="video-class">国产剧</span>
<span>内地</span>
</div>
<div class="module-item-content">
<div class="module-item-style video-name">
<a href="/index.php/vod/detail/id/51414.html" title="没有工作的一年">没有工作的一年</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E8%BE%A3%E7%9B%AE%E6%B4%8B%E5%AD%90.html" target="_blank">辣目洋子</a> <a href="/index.php/vod/search/actor/%E4%B8%87%E9%B9%8F.html" target="_blank">万鹏</a> <a href="/index.php/vod/search/actor/%E7%BF%9F%E5%AD%90%E8%B7%AF.html" target="_blank">翟子路</a> <a href="/index.php/vod/search/actor/%E8%92%8B%E9%9B%AA%E9%B8%A3.html" target="_blank">蒋雪鸣</a> </div>
<div class="module-item-style video-text">何雨因不满上司灰色操作惨遭“被离职”,被迫跟同名同姓的青年小雨住到了同一屋檐下。在没有工作的一年中,两个理念迥异的女孩互相依靠,互相改变,抛弃打鸡血的生活方式,找到了内心的平静。两人从对方身上领悟到生</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/51414.html" class="module-item-title" title="没有工作的一年">没有工作的一年</a>
</div>
<div class="module-item-text">更新至14集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/54836.html" title="女士的法则" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="https://www.kongbuya.com/img.php?url=https://img1.doubanio.com/view/photo/l_ratio_poster/public/p2872549179.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="女士的法则">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2022</span>
<span class="video-class">国产剧</span>
<span>中国大陆</span>
</div>
<div class="module-item-content">
<div class="module-item-style video-name">
<a href="/index.php/vod/detail/id/54836.html" title="女士的法则">女士的法则</a>
</div>