-
Notifications
You must be signed in to change notification settings - Fork 2
/
zb.html
8099 lines (7736 loc) · 620 KB
/
zb.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
<!doctype html>
<html lang="zh-CN">
<head>
<title>鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧</title>
<meta name="keywords" content="鸭奈飞,鸭奈飞电影,鸭奈飞影视,奈飞鸭,奈飞鸭电影,奈飞鸭影视,4K鸭影视,4K鸭奈飞资源站,4K鸭资源站,奈飞影视,奈飞视频,奈飞资源,恐怖鸭资源站,奈飞影视,电影资源网,电影资源,资源站,先锋影音资源站,影音先锋资源站" />
<meta name="description" content="鸭奈飞影视[YaNetflix.com][Netflix.Mom]是专注于为国内用户提供免费的奈飞影剧,在这里您无需翻墙付费即可享受奈飞电影带来的极致视听体验" />
<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":"","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="https://netflix.mom/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="homepage">
<header id="header" class="wrapper" >
<div class="header-content " >
<div class="banyundog-com">
<div class="header-logo">
<h1 class="slogan">奈飛中文電影站</h1>
<div class="fixed-logo">
<a href="/" class="logo" title="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧"><img src="https://ugc.hitv.com/3/220402151026B496B6DF19E25DCB85494B021010BNjEz/RhKS080.png" alt="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧"></a>
</div>
</div>
</div>
<div class="nav-search">
<form action="/index.php/vod/search.html" class="search-dh"></form>
</div>
<div class="nav">
<ul class="nav-menu-items">
<li class="nav-menu-item selected">
<a href="/" title="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧首页"><i class="icon-home"></i> <span>首页</span></a>
</li>
<li class="nav-menu-item ">
<a href="/index.php/vod/type/id/1.html" title="电影">
<i class="icon-cate-dy"></i>
<span>电影</span>
</a>
</li>
<li class="nav-menu-item ">
<a href="/index.php/vod/type/id/2.html" title="连续剧">
<i class="icon-cate-ds"></i>
<span>连续剧</span>
</a>
</li>
<li class="nav-menu-item ">
<a href="/index.php/vod/type/id/3.html" title="综艺">
<i class="icon-cate-zy"></i>
<span>综艺</span>
</a>
</li>
<li class="nav-menu-item ">
<a href="/index.php/vod/type/id/4.html" title="动漫">
<i class="icon-cate-dm"></i>
<span>动漫</span>
</a>
</li>
<li class="nav-menu-item">
<a href="/index.php/vod/show/id/1.html" target="_blank" title="片库">
<i class="icon-tv"></i> <span>片库</span>
</a>
</li>
<li class="nav-menu-item domain plus">
<a href="javascript:;" title="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧最新域名">
<i class="icon-domain"></i>
<span>网址</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>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/1.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 id="search-content">
<div class="index-logo"><span class="logo-s"><img src="https://ugc.hitv.com/3/220402151026B496B6DF19E25DCB85494B021010BNjEz/RhKS080.png" title="鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧"></span></div>
<form action="/index.php/vod/search.html">
<div class="search-main">
<div class="search-box">
<input class="search-input ac_wd" id="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>
</div>
</form>
</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>
<!-- 头部 -->
<div class="app-text">
<a href="/index.php/label/app.html"><i class="icon-download"></i>下载<strong>鸭奈飞电影-专注于为国内用户提供免费的奈飞影剧APP</strong>客户端</a>
<div class="bg-ball">
</div>
</div>
<main id="index-main" class="wrapper">
<div class="content">
<script type="text/javascript" src="/mxstatic/js/swiper-bundle.min.js"></script>
<link rel="stylesheet" href="/mxstatic/css/swiper-bundle.min.css" type="text/css">
<div class="swiper-container" style="margin-bottom: 20px;">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a class="dymrslide banner" href="/index.php/vod/detail/id/42070.html" style="background: url(https://ugc.hitv.com/3/220424112013B496B6DF19E25DCB85494B021010BNjEz/v75gks0.png) center no-repeat; background-size: cover;">
<div class="txt-info">
<p class="gate"><span>欧美剧</span></p>
<p class="name">光环 第一季</p>
<p class="info">更新至07集 </p>
</div>
</a>
</div>
<div class="swiper-slide">
<a class="dymrslide banner" href="/index.php/vod/detail/id/48995.html" style="background: url(https://ugc.hitv.com/3/22041419412116D5902FA5F85F30A2245E0DAAAAFMjky/p22lzz0.png) center no-repeat; background-size: cover;">
<div class="txt-info">
<p class="gate"><span>欧美剧</span></p>
<p class="name">东京罪恶</p>
<p class="info">8集全 </p>
</div>
</a>
</div>
<div class="swiper-slide">
<a class="dymrslide banner" href="/index.php/vod/detail/id/42826.html" style="background: url(https://ugc.hitv.com/3/220331212822B496B6DF19E25DCB85494B021010BNjEz/2bHPVu0.png) center no-repeat; background-size: cover;">
<div class="txt-info">
<p class="gate"><span>欧美剧</span></p>
<p class="name">行尸走肉 第十一季</p>
<p class="info">更新至16集 </p>
</div>
</a>
</div>
<div class="swiper-slide">
<a class="dymrslide banner" href="/index.php/vod/detail/id/42822.html" style="background: url(https://sf1-scmcdn-tos.pstatp.com/obj/ad-tetris-site/file/1645034074079/640f258d0d3243658b4263fa8ee835d5) center no-repeat; background-size: cover;">
<div class="txt-info">
<p class="gate"><span>日韩剧</span></p>
<p class="name">鱿鱼游戏</p>
<p class="info">全9集 </p>
</div>
</a>
</div>
<div class="swiper-slide">
<a class="dymrslide banner" href="/index.php/vod/detail/id/42878.html" style="background: url(https://sf1-scmcdn-tos.pstatp.com/obj/ad-tetris-site/file/1645033960992/28a30d22b2e5a5fe457ef0fe7996892c) center no-repeat; background-size: cover;">
<div class="txt-info">
<p class="gate"><span>日韩剧</span></p>
<p class="name">寂静之海</p>
<p class="info">全8集 </p>
</div>
</a>
</div>
<div class="swiper-slide">
<a class="dymrslide banner" href="/index.php/vod/detail/id/42866.html" style="background: url(https://sf1-scmcdn-tos.pstatp.com/obj/ad-tetris-site/file/1645034240454/42509d9d2199529059c1b75e15a730ed) center no-repeat; background-size: cover;">
<div class="txt-info">
<p class="gate"><span>日韩剧</span></p>
<p class="name">僵尸校园</p>
<p class="info">全12集 </p>
</div>
</a>
</div>
<div class="swiper-slide">
<a class="dymrslide banner" href="/index.php/vod/detail/id/43910.html" style="background: url(https://ugc.hitv.com/3/22040712053216D5902FA5F85F30A2245E0DAAAAFMjky/uVw3bI0.png) center no-repeat; background-size: cover;">
<div class="txt-info">
<p class="gate"><span>恐怖片</span></p>
<p class="name">哭悲</p>
<p class="info">1080P </p>
</div>
</a>
</div>
<div class="swiper-slide">
<a class="dymrslide banner" href="/index.php/vod/detail/id/44320.html" style="background: url(https://img.4kya.com/2021/08/04/d6b8e0804105640.png) center no-repeat; background-size: cover;">
<div class="txt-info">
<p class="gate"><span>恐怖片</span></p>
<p class="name">寂静之地2</p>
<p class="info">蓝光版 </p>
</div>
</a>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<script>
var swiper = new Swiper('.swiper-container', {
direction: 'horizontal',
loop: true,
autoplay: true,
autoplay: {
delay: 3000,
stopOnLastSlide: false,
disableOnInteraction: false,
},
pagination: {
el: '.swiper-pagination',
clickable: true,
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
scrollbar: {
el: '.swiper-scrollbar',
},
})
</script>
<!-- 轮播图 --> <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-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><!-- 广告位01 --><div class="module">
<div class="module-heading">
<h2 class="module-title"><i class="icon-hot" style="color:#FF0000"></i> 正在热播</h2>
<span class="more nonemore">今日更新:<font color="#FF0000">“0”</font> 部</span> </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="https://lqinyli.github.io/v/zby.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/s_ratio_poster/public/p2869751944.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="https://lqinyli.github.io/v/zby.html" title="直播点播">直播点播</a>
</div>
<div class="module-item-style video-tag">
<a href="http://zjstyhls.tianma3600.com/zjsty/zhpd.m3u8" target="_blank">汤姆·赫兰德</a> <a href="/index.php/vod/search/actor/%E9%A9%AC%E5%85%8B%C2%B7%E6%B2%83%E5%B0%94%E4%BC%AF%E6%A0%BC.html" target="_blank">马克·沃尔伯格</a> <a href="/index.php/vod/search/actor/%E7%B4%A2%E8%8F%B2%E5%A8%85%C2%B7%E9%98%BF%E9%87%8C.html" target="_blank">索菲娅·阿里</a> <a href="/index.php/vod/search/actor/%E5%A1%94%E8%92%82%C2%B7%E5%8A%A0%E5%B8%83%E9%87%8C%E5%9F%83.html" target="_blank">塔蒂·加布里埃</a> <a href="/index.php/vod/search/actor/%E5%AE%89%E4%B8%9C%E5%B0%BC%E5%A5%A5%C2%B7%E7%8F%AD%E5%BE%B7%E6%8B%89%E6%96%AF.html" target="_blank">安东尼奥·班德拉斯</a> <a href="/index.php/vod/search/actor/%E5%8F%B2%E8%92%82%E8%8A%AC%C2%B7%E5%A8%81%E4%B8%81%E9%A1%BF.html" target="_blank">史蒂芬·威丁顿</a> <a href="/index.php/vod/search/actor/%E4%B9%94%E6%B2%BB%E5%A8%85%C2%B7%E5%8F%A4%E5%BE%B7%E6%9B%BC.html" target="_blank">乔治娅·古德曼</a> <a href="/index.php/vod/search/actor/%E8%BF%AA%E5%B0%94%E6%A2%85%E5%BE%B7%C2%B7%E9%BB%98%E5%A1%94.html" target="_blank">迪尔梅德·默塔</a> <a href="/index.php/vod/search/actor/%E7%BA%A6%E7%91%9F%E5%A4%AB%C2%B7%E5%B7%B4%E5%BE%B7%E6%8B%89%E7%8E%9B.html" target="_blank">约瑟夫·巴德拉玛</a> <a href="/index.php/vod/search/actor/%E9%98%BF%E6%8B%89%E5%A8%9C%C2%B7%E5%8D%9A%E7%99%BB.html" target="_blank">阿拉娜·博登</a> <a href="/index.php/vod/search/actor/%E7%BD%97%E4%BC%AF%E7%89%B9%E2%80%A7%E9%A9%AC%E7%91%9F.html" target="_blank">罗伯特‧马瑟</a> <a href="/index.php/vod/search/actor/%E5%9F%83%E6%96%AF%E9%87%91%E8%BF%AA%E5%B0%94%C2%B7%E7%89%B9%E6%96%AF%E6%B3%95.html" target="_blank">埃斯金迪尔·特斯法</a> <a href="/index.php/vod/search/actor/%E6%9B%BC%E7%BA%BD%E5%B0%94%C2%B7%E5%BE%B7%C2%B7%E5%B7%B4%E6%8B%89%E6%96%AF.html" target="_blank">曼纽尔·德·巴拉斯</a> <a href="/index.php/vod/search/actor/%E5%B8%95%E7%89%B9%E4%B8%BD%E5%A4%8F%C2%B7%E6%A2%85%E7%99%BB.html" target="_blank">帕特丽夏·梅登</a> <a href="/index.php/vod/search/actor/%E8%AF%BA%E5%85%B0%C2%B7%E8%AF%BA%E6%96%AF.html" target="_blank">诺兰·诺斯</a> <a href="/index.php/vod/search/actor/%E5%90%89%E7%B1%B3%C2%B7%E5%93%88%E7%89%B9.html" target="_blank">吉米·哈特</a> <a href="/index.php/vod/search/actor/%E7%9A%AE%E9%B2%81%C2%B7%E5%9F%83%E6%96%AF%E8%B4%9D%E5%85%8B.html" target="_blank">皮鲁·埃斯贝克</a> <a href="/index.php/vod/search/actor/%E8%8E%8E%E6%8B%89%C2%B7%E4%BD%A9%E7%89%B9%E9%87%8C%E5%85%8B.html" target="_blank">莎拉·佩特里克</a> </div>
<div class="module-item-style video-text">足智多谋的内森·德雷克(汤姆·赫兰德饰)和经验丰富的寻宝者维克多·苏利文(马克·沃尔伯格饰)组成搭档,追寻费迪南·麦哲伦500年前遗失的宝藏。一开始,这似乎只是个简单的寻宝工作,但很快演变成了一场惊险</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="https://lqinyli.github.io/v/zby.html" class="module-item-title" title="直播点播">直播点播</a>
</div>
<div class="module-item-text">1080P</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/39812.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/s_ratio_poster/public/p2868022872.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/39812.html" title="杀死伊芙 第四季">杀死伊芙 第四季</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E5%90%B4%E7%8F%8A%E5%8D%93.html" target="_blank">吴珊卓</a> <a href="/index.php/vod/search/actor/%E6%9C%B1%E8%BF%AA%C2%B7%E7%A7%91%E9%BB%98.html" target="_blank">朱迪·科默</a> <a href="/index.php/vod/search/actor/%E8%B4%B9%E5%A5%A5%E7%BA%B3%C2%B7%E8%82%96.html" target="_blank">费奥纳·肖</a> </div>
<div class="module-item-style video-text">第四季中,Eve、Villanelle和Carolyn处于非常不同的境地。两人在桥上交心之后,Eve踏上了复仇之路,Villanelle找到了一个全新团体,试图证明自己不是一个“怪物”。而Caroly</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/39812.html" class="module-item-title" title="杀死伊芙 第四季">杀死伊芙 第四季</a>
</div>
<div class="module-item-text">全8集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/42961.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/s_ratio_poster/public/p2663220858.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/42961.html" title="黑钱胜地 第四季">黑钱胜地 第四季</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E6%9D%B0%E6%A3%AE%C2%B7%E8%B4%9D%E7%89%B9%E6%9B%BC.html" target="_blank">杰森·贝特曼</a> <a href="/index.php/vod/search/actor/%E5%8A%B3%E6%8B%89%C2%B7%E7%90%B3%E5%A6%AE.html" target="_blank">劳拉·琳妮</a> <a href="/index.php/vod/search/actor/%E7%B4%A2%E8%8F%B2%E5%A8%85%C2%B7%E8%83%A1%E5%B8%83%E5%88%A9%E8%8C%A8.html" target="_blank">索菲娅·胡布利茨</a> <a href="/index.php/vod/search/actor/%E6%96%AF%E5%87%AF%E5%8B%92%C2%B7%E5%8A%A0%E7%89%B9%E7%BA%B3.html" target="_blank">斯凯勒·加特纳</a> <a href="/index.php/vod/search/actor/%E6%9C%B1%E8%8E%89%E5%A8%85%C2%B7%E5%8A%A0%E7%BA%B3.html" target="_blank">朱莉娅·加纳</a> <a href="/index.php/vod/search/actor/%E6%9F%A5%E7%90%86%C2%B7%E5%A1%94%E6%B1%89.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/42961.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/42964.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/p2869517753.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/42964.html" title="月光骑士">月光骑士</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E5%A5%A5%E6%96%AF%E5%8D%A1%C2%B7%E4%BC%8A%E8%90%A8%E5%85%8B.html" target="_blank">奥斯卡·伊萨克</a> <a href="/index.php/vod/search/actor/%E4%BC%8A%E6%A1%91%C2%B7%E9%9C%8D%E5%85%8B.html" target="_blank">伊桑·霍克</a> <a href="/index.php/vod/search/actor/%E5%8A%A0%E6%96%AF%E5%B8%95%E5%BE%B7%C2%B7%E5%B0%A4%E5%88%A9%E5%B0%94.html" target="_blank">加斯帕德·尤利尔</a> <a href="/index.php/vod/search/actor/F%C2%B7%E9%BB%98%E9%87%8C%C2%B7%E4%BA%9A%E4%BC%AF%E6%8B%89%E7%BD%95.html" target="_blank">F·默里·亚伯拉罕</a> <a href="/index.php/vod/search/actor/%E6%A2%85%C2%B7%E5%8D%A1%E6%8B%89%E7%BE%8E%E7%BB%B4.html" target="_blank">梅·卡拉美维</a> <a href="/index.php/vod/search/actor/%E9%9C%B2%E8%A5%BF%C2%B7%E8%90%A8%E5%85%8B%E9%9B%B7.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/42964.html" class="module-item-title" title="月光骑士">月光骑士</a>
</div>
<div class="module-item-text">全6集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/41565.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/s_ratio_poster/public/p2824134004.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/41565.html" title="华灯初上 第三季">华灯初上 第三季</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E6%9E%97%E5%BF%83%E5%A6%82.html" target="_blank">林心如</a> <a href="/index.php/vod/search/actor/%E6%9D%A8%E8%B0%A8%E5%8D%8E.html" target="_blank">杨谨华</a> <a href="/index.php/vod/search/actor/%E6%9D%A8%E7%A5%90%E5%AE%81.html" target="_blank">杨祐宁</a> <a href="/index.php/vod/search/actor/%E9%9C%8D%E5%BB%BA%E5%8D%8E.html" target="_blank">霍建华</a> <a href="/index.php/vod/search/actor/%E5%88%98%E6%95%AC.html" target="_blank">刘敬</a> <a href="/index.php/vod/search/actor/%E5%90%B4%E6%85%B7%E4%BB%81.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/41565.html" class="module-item-title" title="华灯初上 第三季">华灯初上 第三季</a>
</div>
<div class="module-item-text">完结</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/8736.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/p2806778258.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/8736.html" title="亢奋 第二季">亢奋 第二季</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E8%B5%9E%E8%BE%BE%E4%BA%9A.html" target="_blank">赞达亚</a> <a href="/index.php/vod/search/actor/%E4%BA%A8%E7%89%B9%C2%B7%E8%8E%8E%E5%BC%97.html" target="_blank">亨特·莎弗</a> <a href="/index.php/vod/search/actor/%E4%BF%A1%E8%BE%BE%C2%B7%E4%BA%9A%E5%BD%93%E6%96%AF.html" target="_blank">信达·亚当斯</a> <a href="/index.php/vod/search/actor/%E5%8D%A1%E6%A2%85%E9%9A%86%C2%B7%E4%BA%9A%E5%8E%86%E5%B1%B1%E5%A4%A7.html" target="_blank">卡梅隆·亚历山大</a> <a href="/index.php/vod/search/actor/%E8%8C%89%E5%BE%B7%C2%B7%E9%98%BF%E5%B8%95%E5%9B%BE.html" target="_blank">茉德·阿帕图</a> <a href="/index.php/vod/search/actor/%E4%BA%9A%E5%8E%86%E5%85%8B%E8%90%A8%C2%B7%E5%BE%B7%E7%B1%B3.html" target="_blank">亚历克萨·德米</a> <a href="/index.php/vod/search/actor/%E9%9B%85%E5%90%84%E5%B8%83%C2%B7%E8%89%BE%E6%B4%9B%E8%92%82.html" target="_blank">雅各布·艾洛蒂</a> <a href="/index.php/vod/search/actor/%E8%BE%BE%E6%A0%BC%C2%B7%E8%B4%B9%E5%B0%94%E6%A0%BC.html" target="_blank">达格·费尔格</a> <a href="/index.php/vod/search/actor/%E8%8A%AD%E6%AF%94%C2%B7%E8%B4%B9%E9%9B%B7%E6%8B%89.html" target="_blank">芭比·费雷拉</a> <a href="/index.php/vod/search/actor/%E5%A4%9A%E7%B1%B3%E5%B0%BC%E5%85%8B%C2%B7%E8%8F%B2%E5%85%8B.html" target="_blank">多米尼克·菲克</a> <a href="/index.php/vod/search/actor/%E6%95%8F%E5%8D%A1%C2%B7%E5%87%AF%E5%88%A9.html" target="_blank">敏卡·凯利</a> <a href="/index.php/vod/search/actor/%E8%A5%BF%E5%BE%B7%E5%A6%AE%C2%B7%E6%96%AF%E5%A8%81%E5%B0%BC.html" target="_blank">西德妮·斯威尼</a> <a href="/index.php/vod/search/actor/Laphea.html" target="_blank">Laphea</a> <a href="/index.php/vod/search/actor/Coleman.html" target="_blank">Coleman</a> <a href="/index.php/vod/search/actor/Demetrius.html" target="_blank">Demetrius</a> <a href="/index.php/vod/search/actor/%26%23039%3BLil.html" target="_blank">'Lil</a> <a href="/index.php/vod/search/actor/Meech%26%23039%3B.html" target="_blank">Meech'</a> <a href="/index.php/vod/search/actor/Flenory.html" target="_blank">Flenory</a> <a href="/index.php/vod/search/actor/Sophia.html" target="_blank">Sophia</a> <a href="/index.php/vod/search/actor/Rose.html" target="_blank">Rose</a> <a href="/index.php/vod/search/actor/Wilson.html" target="_blank">Wilson</a> </div>
<div class="module-item-style video-text">讲述在一群青少年试图通过毒品﹑性爱和暴力来逃避现实,以应对无法确定的未来。</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/8736.html" class="module-item-title" title="亢奋 第二季">亢奋 第二季</a>
</div>
<div class="module-item-text">完结</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/42671.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/s_ratio_poster/public/p2868580502.webp" 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/42671.html" title="梦魇绝镇">梦魇绝镇</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E5%93%88%E7%BD%97%E5%BE%B7%C2%B7%E4%BD%A9%E9%87%8C%E8%AF%BA.html" target="_blank">哈罗德·佩里诺</a> <a href="/index.php/vod/search/actor/%E5%8D%A1%E5%A1%94%E7%90%B3%E5%A8%9C%C2%B7%E6%A1%91%E5%9C%B0%E8%AF%BA%C2%B7%E8%8E%AB%E9%9B%B7%E8%AF%BA.html" target="_blank">卡塔琳娜·桑地诺·莫雷诺</a> <a href="/index.php/vod/search/actor/%E8%89%BE%E6%81%A9%C2%B7%E8%B4%9D%E5%88%A9.html" target="_blank">艾恩·贝利</a> <a href="/index.php/vod/search/actor/%E6%B1%89%E5%A8%9C%E5%88%87%E5%B0%94%E6%95%8F.html" target="_blank">汉娜切尔敏</a> <a href="/index.php/vod/search/actor/%E7%91%9E%E5%A5%87%C2%B7%E4%BD%95.html" target="_blank">瑞奇·何</a> <a href="/index.php/vod/search/actor/%E8%82%96%E6%81%A9%C2%B7%E6%91%A9%E5%BF%A0%E5%BE%B7.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/42671.html" class="module-item-title" title="梦魇绝镇">梦魇绝镇</a>
</div>
<div class="module-item-text">更新至10集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/20302.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/s_ratio_poster/public/p2868014363.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/20302.html" title="喜鹊谋杀案">喜鹊谋杀案</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E8%8E%B1%E4%B8%9D%E5%88%A9%C2%B7%E6%9B%BC%E7%BB%B4%E5%B0%94.html" target="_blank">莱丝利·曼维尔</a> <a href="/index.php/vod/search/actor/%E8%92%82%E5%A7%86%C2%B7%E8%BF%88%E5%85%8B%E7%A9%86%E5%85%B0.html" target="_blank">蒂姆·迈克穆兰</a> <a href="/index.php/vod/search/actor/%E5%BA%B7%E5%8B%92%E6%96%AF%C2%B7%E5%B8%8C%E5%B0%94.html" target="_blank">康勒斯·希尔</a> <a href="/index.php/vod/search/actor/%E8%BF%88%E5%85%8B%E5%B0%94%C2%B7%E9%A9%AC%E7%BD%97%E5%B0%BC.html" target="_blank">迈克尔·马罗尼</a> <a href="/index.php/vod/search/actor/%E4%BA%9A%E5%8E%86%E5%B1%B1%E5%BE%B7%E7%BD%97%E6%96%AF%C2%B7%E6%B4%9B%E6%88%88%E8%92%82%E6%96%AF.html" target="_blank">亚历山德罗斯·洛戈蒂斯</a> <a href="/index.php/vod/search/actor/%E5%85%8B%E8%8E%B1%E5%B0%94%C2%B7%E6%8B%89%E4%BB%80%E5%B8%83%E9%B2%81%E5%85%8B.html" target="_blank">克莱尔·拉什布鲁克</a> <a href="/index.php/vod/search/actor/%E4%B8%B9%E5%B0%BC%E5%B0%94%C2%B7%E6%A2%85%E6%96%AF.html" target="_blank">丹尼尔·梅斯</a> <a href="/index.php/vod/search/actor/%E9%A9%AC%E4%BF%AE%C2%B7%E6%AF%94%E5%B0%94%E5%BE%B7.html" target="_blank">马修·比尔德</a> <a href="/index.php/vod/search/actor/%E7%BD%97%E8%82%AF%C2%B7%E5%85%8B%E5%85%B0%E5%B0%BC%E5%A5%87.html" target="_blank">罗肯·克兰尼奇</a> <a href="/index.php/vod/search/actor/%E5%A4%9A%E8%90%9D%E8%A5%BF%C2%B7%E9%98%BF%E7%89%B9%E9%87%91%E6%A3%AE.html" target="_blank">多萝西·阿特金森</a> <a href="/index.php/vod/search/actor/%E7%9A%AE%E5%B8%95%C2%B7%E6%B5%B7%E4%BC%8D%E5%BE%B7.html" target="_blank">皮帕·海伍德</a> <a href="/index.php/vod/search/actor/%E5%86%85%E6%A3%AE%C2%B7%E5%85%8B%E6%8B%89%E5%85%8B.html" target="_blank">内森·克拉克</a> <a href="/index.php/vod/search/actor/%E5%93%88%E5%88%A9%C2%B7%E5%8A%B3%E8%92%82.html" target="_blank">哈利·劳蒂</a> <a href="/index.php/vod/search/actor/%E5%B0%BC%E5%A8%85%C2%B7%E8%BF%AA%E8%82%AF.html" target="_blank">尼娅·迪肯</a> <a href="/index.php/vod/search/actor/%E5%87%AF%E4%BC%A6%C2%B7%E9%9F%A6%E6%96%AF%E7%89%B9%E4%BC%8D%E5%BE%B7.html" target="_blank">凯伦·韦斯特伍德</a> </div>
<div class="module-item-style video-text"> 本剧由BritBox UK和美国PBS旗下的Masterpiece联合制作,改编自《战地神探》主创Anthony Horowitz的同名畅销小说。Horowitz本人执笔剧本,共6集。</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/20302.html" class="module-item-title" title="喜鹊谋杀案">喜鹊谋杀案</a>
</div>
<div class="module-item-text">06集全</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/39357.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/s_ratio_poster/public/p2628425414.webp" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="甜蜜家园">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2020</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/39357.html" title="甜蜜家园">甜蜜家园</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E5%AE%8B%E5%BA%B7.html" target="_blank">宋康</a> <a href="/index.php/vod/search/actor/%E6%9D%8E%E9%98%B5%E9%83%81.html" target="_blank">李阵郁</a> <a href="/index.php/vod/search/actor/%E6%9D%8E%E6%98%AF%E8%8B%B1.html" target="_blank">李是英</a> <a href="/index.php/vod/search/actor/%E6%9D%8E%E5%88%B0%E6%99%9B.html" target="_blank">李到晛</a> <a href="/index.php/vod/search/actor/%E9%AB%98%E6%95%8F%E8%AF%97.html" target="_blank">高敏诗</a> <a href="/index.php/vod/search/actor/%E9%AB%98%E5%85%81%E8%B4%9E.html" target="_blank">高允贞</a> </div>
<div class="module-item-style video-text">《Sweet Home》作为惊悚漫画在网路上受到许多读者喜爱,讲述的是悲观地面对绝望世界,并自行孤立的一个少年,走出外界的故事。</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/39357.html" class="module-item-title" title="甜蜜家园">甜蜜家园</a>
</div>
<div class="module-item-text">全10集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/41472.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/s_ratio_poster/public/p2670448229.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/41472.html" title="青春变形记">青春变形记</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E5%A7%9C%E6%99%8B%E5%AE%89.html" target="_blank">姜晋安</a> <a href="/index.php/vod/search/actor/%E5%90%B4%E7%8F%8A%E5%8D%93.html" target="_blank">吴珊卓</a> <a href="/index.php/vod/search/actor/%E8%89%BE%E5%A8%83%C2%B7%E6%91%A9%E5%A3%AB.html" target="_blank">艾娃·摩士</a> <a href="/index.php/vod/search/actor/%E9%BA%A6%E7%89%B9%E9%87%8C%E4%BC%8A%C2%B7%E6%8B%89%E7%8E%9B%E5%85%8B%E9%87%8C%E6%96%AF%E5%8D%97.html" target="_blank">麦特里伊·拉玛克里斯南</a> <a href="/index.php/vod/search/actor/%E5%90%B4%E6%B1%89%E7%AB%A0.html" target="_blank">吴汉章</a> <a href="/index.php/vod/search/actor/%E8%8F%B2%E5%B0%BC%E4%BA%9A%E6%96%AF%C2%B7%E5%A5%A5%E5%BA%B7%E5%A5%88%E5%B0%94.html" target="_blank">菲尼亚斯·奥康奈尔</a> <a href="/index.php/vod/search/actor/%E4%B9%94%E4%B8%B9%C2%B7%E8%B4%B9%E8%88%8D.html" target="_blank">乔丹·费舍</a> <a href="/index.php/vod/search/actor/%E8%90%A8%E6%B2%99%C2%B7%E7%BD%97%E4%BC%8A%E8%8C%A8.html" target="_blank">萨沙·罗伊茨</a> <a href="/index.php/vod/search/actor/%E4%BD%95%E7%82%9C%E6%99%B4.html" target="_blank">何炜晴</a> <a href="/index.php/vod/search/actor/%E6%B4%9B%E7%91%9E%C2%B7%E5%9D%A6%C2%B7%E9%BD%90%E6%81%A9.html" target="_blank">洛瑞·坦·齐恩</a> <a href="/index.php/vod/search/actor/%E5%AE%89%E5%A6%AE-%E7%8E%9B%E4%B8%BD.html" target="_blank">安妮-玛丽</a> <a href="/index.php/vod/search/actor/%E5%A5%A5%E8%B5%96%E6%81%A9%C2%B7%E6%9D%8E.html" target="_blank">奥赖恩·李</a> <a href="/index.php/vod/search/actor/%E7%A8%8B%E5%8F%AF%E4%B8%BA.html" target="_blank">程可为</a> <a href="/index.php/vod/search/actor/HyeinPark.html" target="_blank">HyeinPark</a> <a href="/index.php/vod/search/actor/TristanAllerickChen.html" target="_blank">TristanAllerickChen</a> </div>
<div class="module-item-style video-text"> 正值青春期的13岁华裔女孩小美,当她兴奋或压力过大时,就会变身成为一只巨型红色小熊猫。这一奇妙的超能力,将为成长中的她带来多少烦恼?</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/41472.html" class="module-item-title" title="青春变形记">青春变形记</a>
</div>
<div class="module-item-text">1080P</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/41471.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/s_ratio_poster/public/p2869545761.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/41471.html" title="亚当计划">亚当计划</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E7%91%9E%E5%AE%89%C2%B7%E9%9B%B7%E8%AF%BA%E5%85%B9.html" target="_blank">瑞安·雷诺兹</a> <a href="/index.php/vod/search/actor/%E9%A9%AC%E5%85%8B%C2%B7%E9%B2%81%E5%BC%97%E6%B4%9B.html" target="_blank">马克·鲁弗洛</a> <a href="/index.php/vod/search/actor/%E8%A9%B9%E5%A6%AE%E5%BC%97%C2%B7%E5%8A%A0%E7%BA%B3.html" target="_blank">詹妮弗·加纳</a> <a href="/index.php/vod/search/actor/%E6%B2%83%E5%85%8B%C2%B7%E6%96%AF%E7%A7%91%E8%B4%9D%E5%B0%94.html" target="_blank">沃克·斯科贝尔</a> <a href="/index.php/vod/search/actor/%E4%BD%90%E4%BC%8A%C2%B7%E7%B4%A2%E5%B0%94%E8%BE%BE%E5%A8%9C.html" target="_blank">佐伊·索尔达娜</a> <a href="/index.php/vod/search/actor/%E5%87%AF%E7%91%9F%E7%90%B3%C2%B7%E5%9F%BA%E7%BA%B3.html" target="_blank">凯瑟琳·基纳</a> <a href="/index.php/vod/search/actor/%E5%9F%83%E8%8E%89%C2%B7%E5%93%88%E7%BB%B4.html" target="_blank">埃莉·哈维</a> <a href="/index.php/vod/search/actor/%E9%9C%B2%E8%A5%BF%C2%B7%E6%A0%BC%E6%96%AF%E7%89%B9.html" target="_blank">露西·格斯特</a> <a href="/index.php/vod/search/actor/%E6%A2%85%E6%8B%89%E5%B0%BC%C2%B7%E4%BC%91%E4%BC%AF%E7%89%B9.html" target="_blank">梅拉尼·休伯特</a> <a href="/index.php/vod/search/actor/%E5%B0%8F%E4%BA%9A%E5%8E%86%E5%85%8B%E6%96%AF%C2%B7%E9%A9%AC%E9%87%8C%E4%BA%9A%E9%87%8C.html" target="_blank">小亚历克斯·马里亚里</a> <a href="/index.php/vod/search/actor/%E6%9C%AC%C2%B7%E5%A8%81%E5%B0%94%E9%87%91%E6%A3%AE.html" target="_blank">本·威尔金森</a> <a href="/index.php/vod/search/actor/%E5%B8%83%E6%8B%89%E5%85%8B%E6%96%AF%E9%A1%BF%C2%B7%E6%AF%94%E8%82%AF.html" target="_blank">布拉克斯顿·比肯</a> <a href="/index.php/vod/search/actor/EstherLi.html" target="_blank">EstherLi</a> <a href="/index.php/vod/search/actor/%E6%9D%B0%E8%A5%BF%E5%8D%A1%C2%B7%E5%8D%9A%E5%BE%B7%E7%BA%B3%E9%9B%B7%E5%85%8B.html" target="_blank">杰西卡·博德纳雷克</a> <a href="/index.php/vod/search/actor/%E7%B1%B3%E6%B4%9B%C2%B7%E5%B1%B1%E5%BE%B7%E5%B0%94.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/41471.html" class="module-item-title" title="亚当计划">亚当计划</a>
</div>
<div class="module-item-text">1080P</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/42855.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/s_ratio_poster/public/p2858386555.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/42855.html" title="上载新生 第二季">上载新生 第二季</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E7%BD%97%E6%AF%94%C2%B7%E9%98%BF%E6%A2%85%E5%B0%94.html" target="_blank">罗比·阿梅尔</a> <a href="/index.php/vod/search/actor/%E5%AE%89%E8%BF%AA%C2%B7%E9%98%BF%E6%B4%9B.html" target="_blank">安迪·阿洛</a> <a href="/index.php/vod/search/actor/%E9%98%BF%E8%8E%B1%E6%A0%BC%E6%8B%89%C2%B7%E7%88%B1%E5%BE%B7%E5%8D%8E%E5%85%B9.html" target="_blank">阿莱格拉·爱德华兹</a> <a href="/index.php/vod/search/actor/%E6%89%8E%E4%BC%8A%E7%BA%B3%E5%B8%83%C2%B7%E7%BA%A6%E7%BF%B0%E9%80%8A.html" target="_blank">扎伊纳布·约翰逊</a> <a href="/index.php/vod/search/actor/%E5%87%AF%E6%96%87%C2%B7%E6%AF%94%E6%A0%BC%E5%88%A9.html" target="_blank">凯文·比格利</a> <a href="/index.php/vod/search/actor/%E5%AE%89%E5%BE%B7%E8%8E%89%E4%BA%9A%C2%B7%E7%BD%97%E6%A3%AE.html" target="_blank">安德莉亚·罗森</a> <a href="/index.php/vod/search/actor/%E6%AC%A7%E6%96%87%C2%B7%E4%B8%B9%E5%B0%BC%E5%B0%94%E6%96%AF.html" target="_blank">欧文·丹尼尔斯</a> <a href="/index.php/vod/search/actor/%E4%B9%94%E5%B8%8C%C2%B7%E7%8F%AD%E8%BF%AA.html" target="_blank">乔希·班迪</a> <a href="/index.php/vod/search/actor/%E4%BF%9D%E7%BD%97%C2%B7%E5%8D%A1%E6%96%AF%E5%9D%A6%E4%BD%90.html" target="_blank">保罗·卡斯坦佐</a> <a href="/index.php/vod/search/actor/%E5%A8%81%E5%BB%89%C2%B7B%C2%B7%E6%88%B4%E7%BB%B4%E6%96%AF.html" target="_blank">威廉·B·戴维斯</a> <a href="/index.php/vod/search/actor/%E9%BA%A6%E8%82%AF%E9%BD%90%C2%B7%E5%8D%A1%E5%BE%B7%E5%A8%81%E5%B0%94.html" target="_blank">麦肯齐·卡德威尔</a> <a href="/index.php/vod/search/actor/%E6%9D%B0%E8%A5%BF%E5%8D%A1%C2%B7%E5%A1%94%E5%85%8B.html" target="_blank">杰西卡·塔克</a> <a href="/index.php/vod/search/actor/%E5%85%8B%E6%B4%9B%E4%BC%8A%C2%B7%E7%A7%91%E5%B0%94%E6%9B%BC.html" target="_blank">克洛伊·科尔曼</a> <a href="/index.php/vod/search/actor/%E5%B7%B4%E5%85%8B%E8%8E%B1%C2%B7%E9%9C%8D%E6%99%AE.html" target="_blank">巴克莱·霍普</a> <a href="/index.php/vod/search/actor/%E7%91%9E%E6%96%AF%C2%B7%E6%96%AF%E8%8E%B1%E5%85%8B.html" target="_blank">瑞斯·斯莱克</a> <a href="/index.php/vod/search/actor/%E8%B5%96%E6%81%A9%C2%B7%E8%B4%9D%E5%B0%94.html" target="_blank">赖恩·贝尔</a> <a href="/index.php/vod/search/actor/%E7%A5%9E%E5%A5%88%E5%B7%9D%E5%AE%8F%E5%B9%B8.html" target="_blank">神奈川宏幸</a> <a href="/index.php/vod/search/actor/%E9%A9%AC%E7%89%B9%C2%B7%E6%B2%83%E5%BE%B7.html" target="_blank">马特·沃德</a> <a href="/index.php/vod/search/actor/%E5%85%8B%E9%87%8C%E6%96%AF%C2%B7%E5%A8%81%E5%BB%89%E6%96%AF.html" target="_blank">克里斯·威廉斯</a> </div>
<div class="module-item-style video-text">讲述“如果科技可以帮你拥有‘来生’”:在2033年,科技可以在人死去之时,把其意识和记忆上传到一个数字虚拟世界,也就是你可以在里面永远地“活着”,甚至能通过VR技术与真实人类社会的人接触。</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/42855.html" class="module-item-title" title="上载新生 第二季">上载新生 第二季</a>
</div>
<div class="module-item-text">07集全</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/42840.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/s_ratio_poster/public/p2846094056.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/42840.html" title="异星灾变 第二季">异星灾变 第二季</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E9%98%BF%E6%9B%BC%E8%BE%BE%C2%B7%E7%A7%91%E6%9E%97.html" target="_blank">阿曼达·科林</a> <a href="/index.php/vod/search/actor/%E9%98%BF%E5%B8%83%E5%B7%B4%E5%8D%A1%E5%B0%94%C2%B7%E8%90%A8%E5%88%A9%E5%A7%86.html" target="_blank">阿布巴卡尔·萨利姆</a> <a href="/index.php/vod/search/actor/%E6%96%87%E5%A1%94%C2%B7%E9%BA%A6%E6%A0%BC%E6%8B%89%E6%96%AF.html" target="_blank">文塔·麦格拉斯</a> <a href="/index.php/vod/search/actor/%E5%B0%BC%E8%8A%99%C2%B7%E9%98%BF%E5%B0%94%E6%A0%BC.html" target="_blank">尼芙·阿尔格</a> <a href="/index.php/vod/search/actor/%E5%B4%94%E7%BB%B4%E6%96%AF%C2%B7%E8%B4%B9%E7%B1%B3%E5%B0%94.html" target="_blank">崔维斯·费米尔</a> <a href="/index.php/vod/search/actor/%E4%B9%94%E4%B8%B9%C2%B7%E6%B4%9B%E5%85%8B%E4%BC%A6.html" target="_blank">乔丹·洛克伦</a> <a href="/index.php/vod/search/actor/%E8%B4%B9%E5%88%A9%E5%85%8B%E6%96%AF%C2%B7%E6%9D%B0%E7%B1%B3%E6%A3%AE.html" target="_blank">费利克斯·杰米森</a> <a href="/index.php/vod/search/actor/%E4%BC%8A%E6%A1%91%C2%B7%E5%93%88%E6%89%8E%E5%BE%B7.html" target="_blank">伊桑·哈扎德</a> <a href="/index.php/vod/search/actor/%E9%98%BF%E8%A5%BF%E5%A8%85%C2%B7%E6%B2%99%E9%98%BF.html" target="_blank">阿西娅·沙阿</a> <a href="/index.php/vod/search/actor/%E7%8E%8B%E7%8E%AE%E9%9B%AF.html" target="_blank">王玮雯</a> <a href="/index.php/vod/search/actor/Jagger.html" target="_blank">Jagger</a> <a href="/index.php/vod/search/actor/Cameron.html" target="_blank">Cameron</a> <a href="/index.php/vod/search/actor/%E7%9A%AE%E7%89%B9%C2%B7%E5%85%8B%E9%87%8C%E6%96%AF%E6%89%98%E5%BC%97%E6%A3%AE.html" target="_blank">皮特·克里斯托弗森</a> <a href="/index.php/vod/search/actor/%E9%87%91%C2%B7%E8%8B%B1%E5%90%89%E5%B0%94%E5%B8%83%E7%91%9E%E5%A5%87.html" target="_blank">金·英吉尔布瑞奇</a> <a href="/index.php/vod/search/actor/%E8%A9%B9%E5%A7%86%E6%96%AF%C2%B7%E5%93%88%E5%85%8B%E5%B0%BC%E6%96%AF.html" target="_blank">詹姆斯·哈克尼斯</a> <a href="/index.php/vod/search/actor/%E8%B5%9B%E7%90%B3%E5%A8%9C%C2%B7%E7%90%BC%E6%96%AF.html" target="_blank">赛琳娜·琼斯</a> <a href="/index.php/vod/search/actor/%E7%90%86%E6%9F%A5%E5%BE%B7%C2%B7%E6%B4%9B%E9%94%A1%E5%AE%89.html" target="_blank">理查德·洛锡安</a> <a href="/index.php/vod/search/actor/Bongo.html" target="_blank">Bongo</a> <a href="/index.php/vod/search/actor/Mbutuma.html" target="_blank">Mbutuma</a> <a href="/index.php/vod/search/actor/Michael.html" target="_blank">Michael</a> <a href="/index.php/vod/search/actor/Pennington.html" target="_blank">Pennington</a> <a href="/index.php/vod/search/actor/Jennifer.html" target="_blank">Jennifer</a> <a href="/index.php/vod/search/actor/Saayeng.html" target="_blank">Saayeng</a> <a href="/index.php/vod/search/actor/Morgan.html" target="_blank">Morgan</a> <a href="/index.php/vod/search/actor/Santo.html" target="_blank">Santo</a> </div>
<div class="module-item-style video-text">马库斯、母亲、父亲、坎皮恩、保罗、苏等集体回归!讲述母亲和父亲带着人类的6个孩子在开普勒22b星球神秘热带地区加入了一个新成立的无神论殖民地,但是在这个陌生的新社会中,他们的麻烦才刚刚开始,因为母亲的</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/42840.html" class="module-item-title" title="异星灾变 第二季">异星灾变 第二季</a>
</div>
<div class="module-item-text">更新至08集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/42853.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/s_ratio_poster/public/p2768873523.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/42853.html" title="雪国列车(剧版) 第三季">雪国列车(剧版) 第三季</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E6%88%B4%E7%BB%B4%E5%BE%B7%C2%B7%E8%BF%AA%E6%A0%BC%E6%96%AF.html" target="_blank">戴维德·迪格斯</a> <a href="/index.php/vod/search/actor/%E8%A9%B9%E5%A6%AE%E5%BC%97%C2%B7%E5%BA%B7%E7%BA%B3%E5%88%A9.html" target="_blank">詹妮弗·康纳利</a> <a href="/index.php/vod/search/actor/%E8%82%96%E6%81%A9%C2%B7%E5%AE%BE.html" target="_blank">肖恩·宾</a> <a href="/index.php/vod/search/actor/%E9%9B%85%E5%A5%87%C2%B7%E6%BD%98%E5%98%89%E6%AF%94.html" target="_blank">雅奇·潘嘉比</a> <a href="/index.php/vod/search/actor/%E7%BD%97%E6%B8%A9%C2%B7%E5%B8%83%E5%85%B0%E6%9F%A5%E5%BE%B7.html" target="_blank">罗温·布兰查德</a> <a href="/index.php/vod/search/actor/%E8%89%BE%E8%8E%89%E6%A3%AE%C2%B7%E8%B5%96%E7%89%B9.html" target="_blank">艾莉森·赖特</a> <a href="/index.php/vod/search/actor/%E4%BC%8A%E5%A4%9A%C2%B7%E6%88%88%E5%BE%B7%E5%A0%A1.html" target="_blank">伊多·戈德堡</a> <a href="/index.php/vod/search/actor/%E7%B1%B3%E5%A5%87%C2%B7%E8%90%A8%E5%A7%86%E7%BA%B3.html" target="_blank">米奇·萨姆纳</a> <a href="/index.php/vod/search/actor/%E5%87%AF%E8%92%82%C2%B7%E9%BA%A6%E5%90%89%E5%B0%BC%E6%96%AF.html" target="_blank">凯蒂·麦吉尼斯</a> <a href="/index.php/vod/search/actor/%E5%85%8B%E9%87%8C%E6%96%AF%E8%92%82%E5%AE%89%C2%B7%E5%B8%83%E9%B2%81%E6%81%A9.html" target="_blank">克里斯蒂安·布鲁恩</a> <a href="/index.php/vod/search/actor/%E5%8D%A1%E7%90%B3%C2%B7%E8%80%83%E8%AF%BA%E5%A8%83.html" target="_blank">卡琳·考诺娃</a> <a href="/index.php/vod/search/actor/%E8%8E%89%E5%A8%9C%C2%B7%E9%9C%8D%E5%B0%94.html" target="_blank">莉娜·霍尔</a> <a href="/index.php/vod/search/actor/%E5%88%87%E5%B0%94%E8%A5%BF%E5%93%88%E9%87%8C%E6%96%AF.html" target="_blank">切尔西哈里斯</a> <a href="/index.php/vod/search/actor/Emma.html" target="_blank">Emma</a> <a href="/index.php/vod/search/actor/Oliver.html" target="_blank">Oliver</a> <a href="/index.php/vod/search/actor/Andrea.html" target="_blank">Andrea</a> <a href="/index.php/vod/search/actor/Ware.html" target="_blank">Ware</a> </div>
<div class="module-item-style video-text">一片雪花飘过冰封的地球和列车,刚刚得到的自由又变得混乱,因为肖恩·宾饰演的“雪国列车”创造者Wilford回来了,与Layton针锋相对。</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/42853.html" class="module-item-title" title="雪国列车(剧版) 第三季">雪国列车(剧版) 第三季</a>
</div>
<div class="module-item-text">更新至10集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/42934.html" title="耶路撒冷地" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="https://www.kongbuya.com/img.php?url=https://img3.doubanio.com/view/photo/l_ratio_poster/public/p2670960260.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="耶路撒冷地">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2021</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/42934.html" title="耶路撒冷地">耶路撒冷地</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E8%89%BE%E5%BE%B7%E9%87%8C%E5%AE%89%C2%B7%E5%B8%83%E6%B4%9B%E8%BF%AA.html" target="_blank">艾德里安·布洛迪</a> <a href="/index.php/vod/search/actor/%E5%9F%83%E7%B1%B3%E4%B8%BD%C2%B7%E6%B1%89%E6%99%AE%E5%B8%8C%E5%B0%94.html" target="_blank">埃米丽·汉普希尔</a> <a href="/index.php/vod/search/actor/%E4%BC%8A%E6%81%A9%C2%B7%E9%9C%8D.html" target="_blank">伊恩·霍</a> <a href="/index.php/vod/search/actor/%E6%88%88%E5%BE%B7%C2%B7%E5%85%B0%E5%BE%B7.html" target="_blank">戈德·兰德</a> <a href="/index.php/vod/search/actor/%E5%90%89%E5%A8%9C%E7%BB%B4%E8%8A%99%C2%B7%E8%BF%AA%E6%A0%BC%E9%9B%B7%E5%A4%AB%E6%96%AF.html" target="_blank">吉娜维芙·迪格雷夫斯</a> <a href="/index.php/vod/search/actor/%E9%98%BF%E8%8E%B1%E6%A0%BC%E6%8B%89%C2%B7%E5%AF%8C%E5%B0%94%E9%A1%BF.html" target="_blank">阿莱格拉·富尔顿</a> <a href="/index.php/vod/search/actor/%E8%BF%AA%E6%81%A9%C2%B7%E9%98%BF%E5%A7%86%E6%96%AF%E7%89%B9%E6%9C%97.html" target="_blank">迪恩·阿姆斯特朗</a> <a href="/index.php/vod/search/actor/%E5%8F%B2%E8%92%82%E6%96%87%C2%B7%E9%BA%A6%E5%8D%A1%E9%94%A1.html" target="_blank">史蒂文·麦卡锡</a> <a href="/index.php/vod/search/actor/%E6%9C%B1%E5%88%A9%E5%AE%89%C2%B7%E7%91%9E%E9%92%A6%E6%96%AF.html" target="_blank">朱利安·瑞钦斯</a> <a href="/index.php/vod/search/actor/%E4%B9%94%E5%AE%89%E5%A6%AE%C2%B7%E5%8D%9A%E5%85%B0%E5%BE%B7.html" target="_blank">乔安妮·博兰德</a> <a href="/index.php/vod/search/actor/%E5%85%8B%E9%87%8C%E6%96%AF%E6%89%98%E5%BC%97%C2%B7%E8%B5%AB%E8%80%B6%E8%BE%BE%E5%B0%94.html" target="_blank">克里斯托弗·赫耶达尔</a> <a href="/index.php/vod/search/actor/%E4%BC%91%C2%B7%E6%B1%A4%E6%99%AE%E6%A3%AE.html" target="_blank">休·汤普森</a> <a href="/index.php/vod/search/actor/%E9%A9%AC%E4%BF%AE%C2%B7%E5%BE%B7%E5%B0%94%C2%B7%E8%B4%9D%E5%B0%94%C2%B7%E8%B4%9D%E9%B2%81%E5%85%B9.html" target="_blank">马修·德尔·贝尔·贝鲁兹</a> <a href="/index.php/vod/search/actor/%E8%AF%BA%E6%9E%97%C2%B7%E5%8F%A4%E6%8B%89%E5%A7%86%E9%AB%98%E6%96%AF.html" target="_blank">诺林·古拉姆高斯</a> <a href="/index.php/vod/search/actor/%E9%AB%98%E8%8E%89%E8%8E%89.html" target="_blank">高莉莉</a> </div>
<div class="module-item-style video-text"> 19世纪50年代,船长查尔斯·布恩(艾德里安·布洛迪 Adrien Brody 饰)的妻子于海上去世后,他带着三个孩子回到缅因州名叫“传教士之角”的小镇里定居。在祖传的老宅子里,查尔斯发现了自己家</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/42934.html" class="module-item-title" title="耶路撒冷地">耶路撒冷地</a>
</div>
<div class="module-item-text">全10集</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/42919.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/p2666562292.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="瑞克和莫蒂 第五季">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2021</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/42919.html" title="瑞克和莫蒂 第五季">瑞克和莫蒂 第五季</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E8%B4%BE%E6%96%AF%E6%B1%80%C2%B7%E7%BD%97%E5%85%B0.html" target="_blank">贾斯汀·罗兰</a> <a href="/index.php/vod/search/actor/%E6%B1%A4%E5%A7%86%C2%B7%E8%82%AF%E5%B0%BC.html" target="_blank">汤姆·肯尼</a> <a href="/index.php/vod/search/actor/%E5%A1%94%E4%BC%8A%E5%8A%A0%C2%B7%E7%BB%B4%E8%BF%AA%E6%8F%90.html" target="_blank">塔伊加·维迪提</a> <a href="/index.php/vod/search/actor/%E5%85%8B%E9%87%8C%E6%96%AF%C2%B7%E5%B8%95%E5%86%85%E5%B0%94.html" target="_blank">克里斯·帕内尔</a> <a href="/index.php/vod/search/actor/%E5%B1%B1%E5%A7%86%C2%B7%E5%B0%BC%E5%B0%94.html" target="_blank">山姆·尼尔</a> <a href="/index.php/vod/search/actor/%E4%BF%9D%E7%BD%97%C2%B7%E5%90%89%E4%BA%9A%E7%8E%9B%E6%8F%90.html" target="_blank">保罗·吉亚玛提</a> <a href="/index.php/vod/search/actor/%E5%87%AF%E7%91%9F%E7%90%B3%C2%B7%E7%89%B9%E7%BA%B3.html" target="_blank">凯瑟琳·特纳</a> <a href="/index.php/vod/search/actor/%E9%A9%AC%E4%BF%AE%C2%B7%E5%B8%83%E7%BD%97%E5%BE%B7%E9%87%8C%E5%85%8B.html" target="_blank">马修·布罗德里克</a> <a href="/index.php/vod/search/actor/%E5%88%A9%E4%BA%9A%E5%A7%86%C2%B7%E5%9D%8E%E5%AE%81%E5%AE%89.html" target="_blank">利亚姆·坎宁安</a> <a href="/index.php/vod/search/actor/%E6%96%AF%E5%AE%BE%E7%91%9F%C2%B7%E6%A0%BC%E6%8B%89%E9%BB%98.html" target="_blank">斯宾瑟·格拉默</a> <a href="/index.php/vod/search/actor/%E8%90%A8%E6%8B%89%C2%B7%E4%B9%94%E5%85%8B.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/42919.html" class="module-item-title" title="瑞克和莫蒂 第五季">瑞克和莫蒂 第五季</a>
</div>
<div class="module-item-text">已完结</div>
</div>
</div>
</div>
</div>
<!-- 正在热播 -->
<div class="module module-wrapper">
<div class="module-main" >
<div class="module-heading">
<h2 class="module-title">
<i class="icon-cate-dy" style="color:#FF0000"></i>
电影 </h2>
<a class="more" href="/index.php/vod/type/id/1.html" title="更多电影">更多电影 <i class="icon-arrow-right-o"></i>
</a>
</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/54194.html" title="绝地战警2" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="http://puui.qpic.cn/vcover_vt_pic/0/d968qjcaw9pdld0t1444813903.jpg/220" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="绝地战警2">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2003</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/54194.html" title="绝地战警2">绝地战警2</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E9%A9%AC%E4%B8%81%C2%B7%E5%8A%B3%E4%BC%A6%E6%96%AF.html" target="_blank">马丁·劳伦斯</a> <a href="/index.php/vod/search/actor/%E5%A8%81%E5%B0%94%C2%B7%E5%8F%B2%E5%AF%86%E6%96%AF.html" target="_blank">威尔·史密斯</a> <a href="/index.php/vod/search/actor/%E8%A9%B9%E8%BF%AA%C2%B7%E8%8E%AB%E6%8B%89.html" target="_blank">詹迪·莫拉</a> <a href="/index.php/vod/search/actor/%E5%8A%A0%E5%B8%83%E9%87%8C%E5%9F%83%E5%B0%94%C2%B7%E5%B0%A4%E5%B0%BC%E6%81%A9.html" target="_blank">加布里埃尔·尤尼恩</a> <a href="/index.php/vod/search/actor/%E5%BD%BC%E5%BE%97%C2%B7%E6%96%AF%E7%89%B9%E6%9B%BC.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/54194.html" class="module-item-title" title="绝地战警2">绝地战警2</a>
</div>
<div class="module-item-text">1080P</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/51356.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/s_ratio_poster/public/p2871150440.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/51356.html" title="平行爱情">平行爱情</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E4%B9%94%E4%BC%8A%C2%B7%E9%87%91.html" target="_blank">乔伊·金</a> <a href="/index.php/vod/search/actor/%E5%87%AF%E5%B0%94%C2%B7%E8%89%BE%E4%BC%A6.html" target="_blank">凯尔·艾伦</a> <a href="/index.php/vod/search/actor/%E5%A1%9E%E8%8E%B1%E6%96%AF%E7%89%B9%C2%B7%E5%A5%A5%E5%BA%B7%E7%BA%B3.html" target="_blank">塞莱斯特·奥康纳</a> <a href="/index.php/vod/search/actor/%E9%87%91%C2%B7%E8%BF%AA%E8%82%AF%E6%96%AF.html" target="_blank">金·迪肯斯</a> <a href="/index.php/vod/search/actor/%E7%BA%A6%E7%BF%B0%C2%B7%E5%A5%A5%E6%8F%90%E5%85%B9.html" target="_blank">约翰·奥提兹</a> <a href="/index.php/vod/search/actor/%E6%9D%B0%E5%BC%97%E9%87%8C%C2%B7%E6%96%87%E6%A3%AE%E7%89%B9%C2%B7%E5%B8%95%E9%87%8C%E5%A1%9E.html" target="_blank">杰弗里·文森特·帕里塞</a> <a href="/index.php/vod/search/actor/%E8%89%BE%E6%99%AE%E5%B0%94%C2%B7%E5%B8%95%E5%85%8B%C2%B7%E7%90%BC%E6%96%AF.html" target="_blank">艾普尔·帕克·琼斯</a> <a href="/index.php/vod/search/actor/%E5%B0%BC%E5%8F%A4%E6%8B%89%E6%96%AF%C2%B7%E6%96%AF%E5%A1%94%E6%A0%BC%E5%B0%94.html" target="_blank">尼古拉斯·斯塔格尔</a> <a href="/index.php/vod/search/actor/%E5%88%A9%E5%AE%89%E5%BE%B7%C2%B7%E8%8B%8F%E8%8E%B1%E6%9B%BC.html" target="_blank">利安德·苏莱曼</a> <a href="/index.php/vod/search/actor/Donna.html" target="_blank">Donna</a> <a href="/index.php/vod/search/actor/Biscoe.html" target="_blank">Biscoe</a> <a href="/index.php/vod/search/actor/Anna.html" target="_blank">Anna</a> <a href="/index.php/vod/search/actor/Stadler.html" target="_blank">Stadler</a> <a href="/index.php/vod/search/actor/Diany.html" target="_blank">Diany</a> <a href="/index.php/vod/search/actor/Rodriguez.html" target="_blank">Rodriguez</a> <a href="/index.php/vod/search/actor/Jadon.html" target="_blank">Jadon</a> <a href="/index.php/vod/search/actor/Cal.html" target="_blank">Cal</a> <a href="/index.php/vod/search/actor/Becki.html" target="_blank">Becki</a> <a href="/index.php/vod/search/actor/Hayes.html" target="_blank">Hayes</a> <a href="/index.php/vod/search/actor/Aleks.html" target="_blank">Aleks</a> <a href="/index.php/vod/search/actor/Alifirenko.html" target="_blank">Alifirenko</a> <a href="/index.php/vod/search/actor/Jr..html" target="_blank">Jr.</a> </div>
<div class="module-item-style video-text">在一场夺去男友生命的车祸中幸存下来后,一个十几岁的女孩相信他正试图从另一个世界与她重新建立联系。</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/51356.html" class="module-item-title" title="平行爱情">平行爱情</a>
</div>
<div class="module-item-text">原画版</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/54849.html" title="伦敦陷落" >
<i class="icon-play"></i>
</a>
<img class="lazy lazyloaded" data-src="https://puui.qpic.cn/vcover_vt_pic/0/n5c7q1bdr2ucwn31556010114/0" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="伦敦陷落">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2016</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/54849.html" title="伦敦陷落">伦敦陷落</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E6%9D%B0%E6%8B%89%E5%BE%B7%C2%B7%E5%B7%B4%E7%89%B9%E5%8B%92.html" target="_blank">杰拉德·巴特勒</a> <a href="/index.php/vod/search/actor/%E8%89%BE%E4%BC%A6%C2%B7%E8%89%BE%E5%85%8B%E5%93%88%E7%89%B9.html" target="_blank">艾伦·艾克哈特</a> <a href="/index.php/vod/search/actor/%E6%91%A9%E6%A0%B9%C2%B7%E5%BC%97%E9%87%8C%E6%9B%BC.html" target="_blank">摩根·弗里曼</a> <a href="/index.php/vod/search/actor/%E9%98%BF%E9%9A%86%C2%B7%E9%98%BF%E5%B8%83%E5%B8%83%E5%B0%94.html" target="_blank">阿隆·阿布布尔</a> <a href="/index.php/vod/search/actor/%E5%AE%89%E5%90%89%E6%8B%89%C2%B7%E8%B4%9D%E5%A1%9E%E7%89%B9.html" target="_blank">安吉拉·贝塞特</a> <a href="/index.php/vod/search/actor/%E7%BD%97%E4%BC%AF%E7%89%B9%C2%B7%E7%A6%8F%E6%96%AF%E7%89%B9.html" target="_blank">罗伯特·福斯特</a> <a href="/index.php/vod/search/actor/%E6%A2%85%E4%B8%BD%E8%8E%8E%C2%B7%E9%87%8C%E5%A5%A5.html" target="_blank">梅丽莎·里奥</a> <a href="/index.php/vod/search/actor/%E6%8B%89%E8%BE%BE%C2%B7%E7%B1%B3%E5%88%87%E5%B0%94.html" target="_blank">拉达·米切尔</a> <a href="/index.php/vod/search/actor/%E8%82%96%E6%81%A9%C2%B7%E5%A5%A5%E5%B8%83%E8%B5%96%E6%81%A9.html" target="_blank">肖恩·奥布赖恩</a> <a href="/index.php/vod/search/actor/%E7%93%A6%E5%88%A9%E5%BE%B7%C2%B7%E7%A5%96%E4%BC%8A%E7%89%B9.html" target="_blank">瓦利德·祖伊特</a> <a href="/index.php/vod/search/actor/%E5%A4%8F%E6%B4%9B%E7%89%B9%C2%B7%E8%8E%B1%E5%88%A9.html" target="_blank">夏洛特·莱利</a> <a href="/index.php/vod/search/actor/%E6%9D%B0%E5%9F%BA%C2%B7%E5%8E%84%E5%B0%94%C2%B7%E5%93%88%E5%88%A9.html" target="_blank">杰基·厄尔·哈利</a> <a href="/index.php/vod/search/actor/%E7%A7%91%E6%9E%97%C2%B7%E8%90%A8%E8%92%99.html" target="_blank">科林·萨蒙</a> <a href="/index.php/vod/search/actor/%E5%B8%95%E7%89%B9%E9%87%8C%E5%85%8B%C2%B7%E8%82%AF%E5%B0%BC%E8%BF%AA.html" target="_blank">帕特里克·肯尼迪</a> <a href="/index.php/vod/search/actor/%E9%BA%A6%E8%B5%AB%E8%BF%AA%C2%B7%E5%BE%B7%E6%AF%94.html" target="_blank">麦赫迪·德比</a> </div>
<div class="module-item-style video-text">班宁(杰拉德·巴特勒GerardButler饰)是美国特勤局的特工,最近,他接到了一个重要的任务,那就是联手局长琳(安吉拉·贝塞特AngelaBassett饰),护送总统本杰明(艾伦·艾克哈特Aaro</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/54849.html" class="module-item-title" title="伦敦陷落">伦敦陷落</a>
</div>
<div class="module-item-text">1080P</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/54351.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/s_ratio_poster/public/p2870318303.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/54351.html" title="坏蛋联盟">坏蛋联盟</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E5%B1%B1%E5%A7%86%C2%B7%E6%B4%9B%E5%85%8B%E5%A8%81%E5%B0%94.html" target="_blank">山姆·洛克威尔</a> <a href="/index.php/vod/search/actor/%E9%A9%AC%E5%85%8B%C2%B7%E9%A9%AC%E9%BE%99.html" target="_blank">马克·马龙</a> <a href="/index.php/vod/search/actor/%E5%A5%A5%E5%8D%A1%E8%8F%B2%E5%A8%9C.html" target="_blank">奥卡菲娜</a> <a href="/index.php/vod/search/actor/%E5%85%8B%E9%9B%B7%E6%A0%BC%C2%B7%E7%BD%97%E5%AE%BE%E6%A3%AE.html" target="_blank">克雷格·罗宾森</a> <a href="/index.php/vod/search/actor/%E5%AE%89%E4%B8%9C%E5%B0%BC%C2%B7%E6%8B%89%E8%8E%AB%E6%96%AF.html" target="_blank">安东尼·拉莫斯</a> <a href="/index.php/vod/search/actor/%E7%90%86%E6%9F%A5%E5%BE%B7%C2%B7%E8%89%BE%E6%AC%A7%E9%98%BF%E5%BE%B7.html" target="_blank">理查德·艾欧阿德</a> <a href="/index.php/vod/search/actor/%E8%8E%8E%E5%A7%AC%C2%B7%E8%B4%9D%E5%85%B9.html" target="_blank">莎姬·贝兹</a> <a href="/index.php/vod/search/actor/%E8%89%BE%E5%88%A9%E5%85%8B%E6%96%AF%C2%B7%E5%B8%83%E8%AF%BA%E6%96%AF%E7%94%BA.html" target="_blank">艾利克斯·布诺斯町</a> <a href="/index.php/vod/search/actor/%E8%8E%89%E8%8E%89%C2%B7%E8%BE%9B%E6%A0%BC.html" target="_blank">莉莉·辛格</a> <a href="/index.php/vod/search/actor/%E8%8A%AD%E8%8A%AD%E6%8B%89%C2%B7%E5%8F%A4%E5%BE%B7%E6%A3%AE.html" target="_blank">芭芭拉·古德森</a> <a href="/index.php/vod/search/actor/%E8%BF%AA%E5%A8%9C%C2%B7%E8%8E%AB%E7%BD%97.html" target="_blank">迪娜·莫罗</a> <a href="/index.php/vod/search/actor/%E8%BF%88%E5%85%8B%E5%B0%94%C2%B7%E9%AB%98%E5%BE%B7%E5%B0%94.html" target="_blank">迈克尔·高德尔</a> <a href="/index.php/vod/search/actor/%E5%87%AF%E8%8E%89%C2%B7%E5%BA%93%E5%B0%BC.html" target="_blank">凯莉·库尼</a> <a href="/index.php/vod/search/actor/%E6%B2%83%E5%B0%94%E7%89%B9%C2%B7%E9%81%93%E6%81%A9.html" target="_blank">沃尔特·道恩</a> <a href="/index.php/vod/search/actor/%E6%88%B4%E7%BB%B4%C2%B7P%C2%B7%E5%8F%B2%E5%AF%86%E6%96%AF.html" target="_blank">戴维·P·史密斯</a> </div>
<div class="module-item-style video-text"> 故事的主角是五个无恶不作的坏蛋——风度翩翩的扒手“大坏狼”、见多识广的保险箱窃贼“贪心蛇”、冷静沉稳的伪装大师“美肚鲨”、暴躁易怒的打手“食人鱼”、伶牙俐齿的黑客专家“骇客蛛”闪亮登场,他们是最臭</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/54351.html" class="module-item-title" title="坏蛋联盟">坏蛋联盟</a>
</div>
<div class="module-item-text">1080P</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/50539.html" title="黑帮大佬和我的365日" >
<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/s_ratio_poster/public/p2609396514.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="黑帮大佬和我的365日">
<div class="loading"></div>
</div>
<div class="module-item-caption">
<span>2020</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/50539.html" title="黑帮大佬和我的365日">黑帮大佬和我的365日</a>
</div>
<div class="module-item-style video-tag">
<a href="/index.php/vod/search/actor/%E8%BF%88%E5%85%8B%E5%B0%94%C2%B7%E8%8E%AB%E7%BD%97%E5%86%85.html" target="_blank">迈克尔·莫罗内</a> <a href="/index.php/vod/search/actor/%E5%AE%89%E5%A8%9C%C2%B7%E7%8E%9B%E4%B8%BD%E4%BA%9A%C2%B7%E8%A5%BF%E5%85%8B%E6%8B%89%E5%85%8B.html" target="_blank">安娜·玛丽亚·西克拉克</a> <a href="/index.php/vod/search/actor/%E5%B8%83%E7%BD%97%E5%B0%BC%E6%96%AF%E6%8B%89%E5%A4%AB%E7%93%A6%E6%A0%BC%E6%8B%89%E6%96%AF%E5%9F%BA.html" target="_blank">布罗尼斯拉夫瓦格拉斯基</a> <a href="/index.php/vod/search/actor/%E6%AC%A7%E5%A1%94%E8%90%A8%E6%8B%89%E5%88%A9%E6%B3%BD.html" target="_blank">欧塔萨拉利泽</a> <a href="/index.php/vod/search/actor/%E7%8E%9B%E6%A0%BC%E8%BE%BE%E8%8E%B1%E5%A8%9C%C2%B7%E6%9C%97%E5%B8%95%E6%96%AF%E5%8D%A1.html" target="_blank">玛格达莱娜·朗帕斯卡</a> <a href="/index.php/vod/search/actor/%E5%A8%9C%E5%A1%94%E8%8E%8E%C2%B7%E5%8E%84%E6%9C%AC%E6%96%AF%E5%8D%A1.html" target="_blank">娜塔莎·厄本斯卡</a> <a href="/index.php/vod/search/actor/%E6%A0%BC%E6%8B%89%E6%97%A5%E5%A8%9C%C2%B7%E6%B2%99%E6%B3%A2%E6%B2%83%E5%A4%AB%E6%96%AF%E5%8D%A1.html" target="_blank">格拉日娜·沙波沃夫斯卡</a> <a href="/index.php/vod/search/actor/%E6%89%98%E9%A9%AC%E6%96%AF%E6%96%BD%E6%89%98%E9%87%91%E6%A0%BC.html" target="_blank">托马斯施托金格</a> <a href="/index.php/vod/search/actor/%E9%A9%AC%E7%89%B9%E4%B9%8C%E6%96%AF%C2%B7%E6%8B%89%E7%B4%A2%E5%A4%AB%E6%96%AF%E5%9F%BA.html" target="_blank">马特乌斯·拉索夫斯基</a> <a href="/index.php/vod/search/actor/%E9%98%BF%E6%A0%BC%E5%B0%BC%E6%96%AF%C2%B7%E7%93%A6%E4%B8%98%E5%B0%94%E6%96%AF%E5%8D%A1.html" target="_blank">阿格尼斯·瓦丘尔斯卡</a> <a href="/index.php/vod/search/actor/%E6%99%AE%E7%83%AD%E7%B1%B3%E6%96%AF%E7%93%A6%E5%A4%AB%C2%B7%E8%90%A8%E5%A4%9A%E5%A4%AB%E6%96%AF%E5%9F%BA.html" target="_blank">普热米斯瓦夫·萨多夫斯基</a> <a href="/index.php/vod/search/actor/%E8%BF%88%E5%85%8B%C2%B7%E7%B1%B3%E6%9F%AF%E6%8B%89%E5%93%88%E5%85%8B%E8%90%A8%E5%85%8B.html" target="_blank">迈克·米柯拉哈克萨克</a> <a href="/index.php/vod/search/actor/%E9%A9%AC%E7%89%B9%E4%B9%8C%E4%BB%80%E6%A0%BC%E7%91%9E%E7%89%B9%E8%8E%B1%E5%85%8B.html" target="_blank">马特乌什格瑞特莱克</a> <a href="/index.php/vod/search/actor/%E5%A8%9C%E5%A1%94%E8%8E%89%C2%B7%E5%8A%A0%E8%AF%BA%E5%A1%9E%E5%85%8B.html" target="_blank">娜塔莉·加诺塞克</a> <a href="/index.php/vod/search/actor/%E9%98%BF%E5%9B%BE%E5%B0%94%E5%85%8B%E9%B2%81%E6%B3%BD%E5%85%8B.html" target="_blank">阿图尔克鲁泽克</a> <a href="/index.php/vod/search/actor/%E6%96%AF%E8%92%82%E6%B3%95%E8%AF%BA%E7%89%B9%E6%8B%89%E6%89%8E%E8%AF%BA.html" target="_blank">斯蒂法诺特拉扎诺</a> <a href="/index.php/vod/search/actor/%E6%89%98%E9%A9%AC%E6%96%AF%C2%B7%E6%9B%BC%E4%B8%81%E6%96%AF.html" target="_blank">托马斯·曼丁斯</a> <a href="/index.php/vod/search/actor/%E6%96%AF%E6%8B%89%E6%B2%83%E7%B1%B3%E5%B0%94%E6%9B%BC%E5%A5%88%E6%96%AF.html" target="_blank">斯拉沃米尔曼奈斯</a> <a href="/index.php/vod/search/actor/%E5%B8%83%E5%85%B0%E5%8D%A1%C2%B7%E5%88%A9%E5%B9%B3%E6%96%AF%E5%8D%A1.html" target="_blank">布兰卡·利平斯卡</a> <a href="/index.php/vod/search/actor/Gianni.html" target="_blank">Gianni</a> <a href="/index.php/vod/search/actor/Parisi.html" target="_blank">Parisi</a> <a href="/index.php/vod/search/actor/Andrea.html" target="_blank">Andrea</a> <a href="/index.php/vod/search/actor/Batti.html" target="_blank">Batti</a> </div>
<div class="module-item-style video-text">马西莫(迈克尔·莫罗内MicheleMorrone饰)出生于一个非常繁盛的西西里黑手党家族之中,从小肩上就背负了继承家业的重任。身为族长的父亲遭人暗杀,尽管马西莫对与黑道这点事情毫无兴趣,但作为家族唯</div>
</div>
</div>
<div class="module-item-titlebox">
<a href="/index.php/vod/detail/id/50539.html" class="module-item-title" title="黑帮大佬和我的365日">黑帮大佬和我的365日</a>
</div>
<div class="module-item-text">原画版</div>
</div>
<div class="module-item">
<div class="module-item-cover">
<div class="module-item-pic">
<a href="/index.php/vod/detail/id/54844.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/p1039040009.jpg" src="upload/mxcms/20220510-1/13790cb39bfe64c67cae941a27568ba6.jpg" alt="甲贺忍法帖">