第十天函数的进阶操作

1.函数默认参数的陷阱:如果默认参数是一个可变数据类型,那么每次调用函数的时候,如果不传值就用上次函数使用玩的数据资源

def qqxing(l=[]):
    l.append(1)
    print(l)
qqxing()
qqxing()
qqxing()
结果是
[1]
[1, 1]
[1, 1, 1]


def qqxing(l=[]):
    l.append(1)
    print(l)
qqxing()
qqxing([])  #从新传入一次新的实参值
qqxing()
结果是
[1]
[1]
[1, 1]
View Code
def func(k,l={}):
    l[k]='v'
    print(l)
func(1)
func(2)
func(3)
结果是
{1: 'v'}
{1: 'v', 2: 'v'}
{1: 'v', 2: 'v', 3: 'v'}
View Code

2.写函数,检查获取传入列表或者元组的对象的所有奇数位索引对应的元素,并将其作为新的列表返还给调用者。

def new_li_tu(s):
    li=[]
    c=0
    for i in s:
        if c%2:
            li.append(i)
        c+=1
    return li
c=new_li_tu([1,3,456,6,'123'])
print(c)
结果是
[3, 6]
View Code

3.写函数,用于判断用户输入的值(字符串、列表、元组)长度是否大于5:

def func(s):
    c=0
    for i in s:
        c+=1
    if c< 5:
        return '长度小于5'
    else :
        return '长度大于5'
print(func('fjdkjfd'))
结果是
长度大于5
View Code
def func(x):
    return len(x)>5
if func('abcd'):
    print('长度确实大于5')
结果为
无打印
View Code

4.写函数,检查传入列表的长度,如果大于2,那么仅保留前两个长度的内容,并将新的内容返还给调用者使用

def func(s):
     if len(s)>2:
         s=s[:2]
     return s
print(func([1,2,4,5]))
结果是
[1, 2]
View Code

5.写函数,计算字符串中数字、字母、空格、以及其他的个数,并返回结果。

def str_num(s):
    l={'数字':0,'字母':0,'空格':0,'其他':0}
    for i in s:
        if i.isdigit():
            l['数字']=l['数字']+1
        elif i.isalpha():
            l['字母']=l['字母']+1
        elif i.isspace():
            l['空格']=l['空格']+1
        else:
            l['其他']=l['其他']+1
    return l
b=input('请输入要计算的字符串')
print(str_num(b))
结果是
请输入要计算的字符串jdfskljf       13454&&&&fkljklfjsdkl12j3
{'数字': 8, '字母': 21, '空格': 7, '其他': 4}
View Code

6.写函数,检查用户传入的对象(字符串,列表、元组)的每一个元素是否有空内容,并返回结果。

def func(x):
    if type(x) is str and x:
        for i in x:
            if i=='':
                return True
            elif x and type(x) is list or type (x) is tuple :
                for i in x:
                    if not i:
                        return True
            elif not x:
                return True
    print(func([]))
View Code

7.写函数,检查传入字典的每一个value的长度,如果大于2,那么仅保留前两个长度的内容,并将新内容返回给调用者。

def value_num(dic):
    for i in dic:
        if len(dic[i])>2:
            dic[i]=dic[i][:2]
    return dic
dic = {'k1':'v1v1','k2':[11,22,33,44]}
print(value_num(dic))
结果是
{'k1': 'v1', 'k2': [11, 22]}
View Code

8.写函数,接收两个数字参数,返回比较大的那个数字。

def mmax(a,b):
    return a if a>b else b
a=int(input('输入第一个数字'))
b=int(input('输入第二个数字:'))
print(mmax(a,b))
结果是
输入第一个数字5
输入第二个数字:6
6
View Code

  8.1引出的三元运算符:变量 = 条件返回True的结果 if 条件 else 条件返回False的结果

a if a>b else b   # 如果a>b 则返回啊否则返回b
View Code

 9、写函数,用户传入修改的文件名,与要修改的内容,

def func(filename,old ,new):
    with open(filename,encoding='utf-8') as f,\
        open('%s.bak' %filename,'w',encoding='utf-8')as f1:
        for line in f:
            if old in line:
                line=line.replace(old,new)
            f1.write(line)
import os
os.remove(filename)# 删除文件
os.rename('%s.bak'%filename,filename)# 重命名文件
View Code

10  函数里可以调用全局变量

a=1  #全局变量
def func():
    print(a)
func()
结果是
1
View Code

 11.函数的命名空间:(有三种)

  11.1  内置命名空间——python解释器

指的就是启动软件后就i可以使用的名字存储在内置空间里;内置的名字在启动编译器时被加载到内存中;列入input、list、print等

  11.2全局命名空间:

指的是程序从上到下被执行的过程中一次加入到内存中,放置了我们所设置的变量名和函数和函数名

  11.3局部命名空间

当调用函数的时候,才会产生这个名称的空间,随着函数执行的结束,这个命名空间就会自动消失

12 .在全局:可以使用全局、内置空间的名字、

    在局部:可以使用全局、内置名和和局部空间中的名字

  在内置:不能使用局部和全局的名字;

def func():
    a=1
    print(a)
func()
print(a)   #全局变量无法调用局部变量否则会报错(显示没有定义)
结果为
   print(a)
NameError: name 'a' is not defined
View Code

13.正常情况下,我们可以直接使用内置的名字:当我们在全局定义时定义了和内置名字中相同的名字时,会使用全局变量的名字;当我们自己在全局中有定义时,我们就不需要向上一级要了(指的时内置函数);如果自己没有,就要找上一级要,上一级没有就要再找上一级要,如果到内置函数都没有,就会报错;多个函数应该具有多个独立的局部名字空间,不相互共享。

def  input():   #程序执行第一步   (不会执行此函数但是函数会加载到内存)
    print('input now')  #程序执行第五步
def func():     #程序执行第二部     (不会执行此函数但是函数会加载到内存)
    input()       #程序执行第四步
func()         #程序执行第三步
结果是
input now
View Code

14只写函数名,则代表的是函数的地址:函数名()相当于函数调用==函数的内存地址()相当于函数调用,

def input():
    print('in input now')
def func():
    print(input)
func()
结果是
function input at 0x0000028FA6592EA0>
View Code

15.作用域共有种:

  15.1全局作用域:作用在全局——内置和全局的名字空间中的名字全部属于全局作用域————globals()

  15.2局部作用域:作用在局部———函数(局部名字空间中的名字属于局部作用域)—————locals()

16.全局变量和局部变量的应用:

  16.1函数可以读取全部变量

a=1
def func():
    print(a)  #函数内可以读取全局变量
func()
print(a)
结果为
1
1
View Code

  16.2函数可以对全局变量进行读取,但是没有办法进行直接操做,需要使用global关键字:而且必须在函数内使用(使用后全局变量的值也随之改变,

不建议在后期函数编程中使用)

a=1
def func():
    a+=1      #函数内可以读取全局变量
func()
print(a)
结果是
  a+=1      #函数内可以读取全局变量
UnboundLocalError: local variable 'a' referenced before assignment
View Code
a=1
def func():
    global a
    a+=1      #函数可以对全局变量进行操作
func()
print(a) #全局变量因为global的关系
结果为
2
View Code

总结:对于全局函数中不可变数据类型,在局部可以查看全局变量的变量值,但是不能直接进行其他操作;如果需要进行修改操作,需要在函数的一开始添加global声明;如果在一个局部函数里声明了一个global变量,那么这个变量在局部作用域内的所有操作将会对全局变量有效。

17  globals()永远打印程序里全局的名字

  locals()  输出什么根据locals所在的位置

a=1
b=2
def func():
    x='1111'
    y='bbbb'
func()
print(globals())  #永远打印全局变量
print(locals())   #如果放在全局作用域内就打印全局变量
结果为
{'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': <_frozen_importlib_external.SourceFileLoader object at 0x00000205D4033F98>, '__spec__': None, '__annotations__': {}, '__builtins__': <module 'builtins' (built-in)>, '__file__': 'D:/python练习程序/第十天python/函数的进阶.py', '__cached__': None, 'a': 1, 'b': 2, 'func': <function func at 0x00000205D2442EA0>}
{'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': <_frozen_importlib_external.SourceFileLoader object at 0x00000205D4033F98>, '__spec__': None, '__annotations__': {}, '__builtins__': <module 'builtins' (built-in)>, '__file__': 'D:/python练习程序/第十天python/函数的进阶.py', '__cached__': None, 'a': 1, 'b': 2, 'func': <function func at 0x00000205D2442EA0>}
View Code
a=1
b=2
def func():
    x='1111'
    y='bbbb'
    print(globals())  #打印全局变量
    print(locals())  #打印局部变量
func()
结果为
{'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': <_frozen_importlib_external.SourceFileLoader object at 0x0000029D72943F98>, '__spec__': None, '__annotations__': {}, '__builtins__': <module 'builtins' (built-in)>, '__file__': 'D:/python练习程序/第十天python/函数的进阶.py', '__cached__': None, 'a': 1, 'b': 2, 'func': <function func at 0x0000029D72842EA0>}
{'y': 'bbbb', 'x': '1111'}
View Code

18如果在函数内对全局变量进行修改,不建议使用global关键字,而是建议下面这种方法:

a=1
def func(a):
    a=2
    return a
a=func(a)
print(a)
结果为
2
View Code

19.函数的嵌套:

求输入三个数字中最大的值:

def max(a,b):
    return a if a>b else b
def the_max(x,y,z):
    c=max(x,y)   #此成为函数的嵌套  内部函数可以使用外部函数的变量
    return max(c,z)
a=input('请输入第一个数字:')
b=input('请输入第第二个数字:')
c=input('请输入第三个数字:')
print(the_max(int(a),int(b),int(c)))
结果为
请输入第一个数字:3
请输入第第二个数字:4
请输入第三个数字:6
6
View Code

20函数嵌套执行过程

def outer():    #第一步
    def inner():#第三步
        print('inner')  #第五步
    inner()   #第四步
outer()     #第二步
结果为
inner
View Code

21数内部可以读取函数外部函数的变量,但是者两个函数属于嵌套

def outer():
    a=1
    def inner():
        print(a)   #函数内部可以调用函数外部函数的变量,但是者两个函数属于嵌套
        print('inner')
    inner()
outer()
结果为
1
inner
View Code

22对于函数中不可变数据类型,在嵌套中可以查局部变量的值,但是不能直接进行其他操作;如果需要进行修改操作,需要在嵌套内函数的一开始添加locals(),nonlocal 只能用于局部变量,找上层中离当前函数最近的局部变量,声明nonlocal的内部函数的变量修改会影响到当前函数最近已成局部变量的值

nonlocal 对全局无效,对局部中的最近一层有影响。

a=1
def outer():
    a=1
    def inner():
        a=2
        def inner2():
            nonlocal a   #声明了一个上面第一层局部变量
            a+=1     #对于不可边数据类型的修改
        inner2()
        print(a)
    inner()
    print(a)
outer()
print(a)
结果为
3
1
1
View Code
a=0
def outer():
    a=1
    def inner():
        #a=2
        def inner2():
            nonlocal a
            a+=1
            print(a)
        inner2()
        print(a)
    inner()
    print(a)
outer()
结果为
2
2
2
View Code

23.函数名就是内存地址,函数名可以赋值:

def func():
    print(123)
func()
func2=func  #京函数地址赋值给func2
func2()   #函数调用
结果为
123
123
View Code

24.函数名可以作为容器类型的元素:

def func():
    print(123)
def func1():
    print('fkjj')
li=[func,func1]
for i in li:
    i()
结果为
123
fkjj
View Code

25函数名可以作为函数的返回值·

def func():   #进行第一步
    print(123)  #进行第五步  进行第八步
def func1(f): #进行第二步
    f()       #进行第一个第四步
    return f  进行第六步
qqxing=func1(func)  #进行第三步
qqxing()      进行第七步
结果为
123
123
View Code

26闭包指的是在嵌套函数中,内部函数调用外部函数的变量:

def outer():
    a=1
    def inner():
        print(a)  #内部函数中调用外部函数
    inner()
outer()
结果为
1
View Code
def outer():
    a=1
    def inner():
        print(a)  #内部函数中调用外部函数
    return inner
inn=outer()  #使用闭包函数的好处就是可以让嵌套函数的局部变量不会随着程序结束而消失
inn()
inn()
结果为
1
1
View Code

27.使用闭包函数爬取某个网站的基础:

import  urllib
from urllib.request import urlopen
ret=urlopen('http://www.jumao88.com').read()
print(ret)
结果为
b'\xef\xbb\xbf<!DOCTYPE HTML>\r\n<html>\r\n<head>\r\n<meta charset="UTF-8">\r\n<meta http-equiv="X-UA-Compatible" content="IE=edge">\r\n<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">\r\n<meta name="apple-mobile-web-app-capable" content="yes">\r\n<meta name="apple-mobile-web-app-status-bar-style" content="black">\r\n<meta http-equiv="cache-control" content="no-siteapp">\r\n<title>\xe6\xa9\x98\xe7\x8c\xab\xe5\xbd\xb1\xe8\xa7\x86-\xe5\x85\x8d\xe8\xb4\xb9\xe5\x9c\xa8\xe7\xba\xbf\xe8\xa7\x82\xe7\x9c\x8b\xe6\x9c\x80\xe6\x96\xb0VIP\xe5\xa4\xa7\xe7\x89\x87-2019\xe6\x9c\x80\xe6\x96\xb0\xe7\x94\xb5\xe5\xbd\xb1\xe5\x9c\xa8\xe7\xba\xbf\xe7\x9c\x8b\xe3\x80\x82-\xe6\xa9\x98\xe7\x8c\xab\xe7\x94\xb5\xe5\xbd\xb1\xe7\xbd\x91\xe5\x85\x8d\xe8\xb4\xb9\xe4\xb8\xba\xe5\xa4\xa7\xe5\xae\xb6\xe6\x8f\x90\xe4\xbe\x9b\xe6\x9c\x80\xe6\x96\xb0\xe6\x9c\x80\xe5\x85\xa8\xe7\x9a\x84\xe5\x85\x8d\xe8\xb4\xb9\xe7\x94\xb5\xe5\xbd\xb1</title>\r\n\r\n<meta name="keywords" content="\xe6\xa9\x98\xe7\x8c\xab\xe5\xbd\xb1\xe8\xa7\x86,9\xe7\x82\xb9\xe6\x9b\xb4\xe6\x96\xb0,\xe6\x9c\x80\xe6\x96\xb0\xe6\x9c\x80\xe5\xbf\xab\xe7\x9a\x84\xe5\xbd\xb1\xe8\xa7\x86\xe8\xb5\x84\xe8\xae\xaf,\xe5\x9c\xa8\xe7\xba\xbf\xe6\x92\xad\xe6\x94\xbe,\xe5\x85\x8d\xe8\xb4\xb9\xe5\x9c\xa8\xe7\xba\xbf\xe7\x94\xb5\xe5\xbd\xb1,2019\xe6\x9c\x80\xe6\x96\xb0\xe5\xa4\xa7\xe7\x89\x87\xe6\x92\xad\xe6\x94\xbe,2019\xe6\x9c\x80\xe6\x96\xb0\xe7\x94\xb5\xe5\xbd\xb1\xe6\x92\xad\xe6\x94\xbe,VIP\xe7\x94\xb5\xe5\xbd\xb1\xe5\x85\x8d\xe8\xb4\xb9\xe5\x9c\xa8\xe7\xba\xbf\xe8\xa7\x82\xe7\x9c\x8b">\r\n<meta name="description" content=" \xe6\xa9\x98\xe7\x8c\xab\xe5\xbd\xb1\xe8\xa7\x86--\xe6\xaf\x8f\xe5\xa4\xa99\xe7\x82\xb9\xe5\x87\x86\xe6\x97\xb6\xe6\x9b\xb4\xe6\x96\xb0,\xe6\x8f\x90\xe4\xbe\x9b\xe6\x9c\x80\xe6\x96\xb0\xe6\x9c\x80\xe5\xbf\xab\xe7\x9a\x84\xe5\xbd\xb1\xe8\xa7\x86\xe8\xb5\x84\xe8\xae\xaf\xe5\x92\x8c\xe5\x9c\xa8\xe7\xba\xbf\xe6\x92\xad\xe6\x94\xbe,\xe6\xa9\x98\xe7\x8c\xab\xe5\xbd\xb1\xe8\xa7\x86,\xe5\x85\x8d\xe8\xb4\xb9\xe5\x9c\xa8\xe7\xba\xbf\xe7\x94\xb5\xe5\xbd\xb1,2019\xe6\x9c\x80\xe6\x96\xb0\xe5\xa4\xa7\xe7\x89\x87\xe6\x92\xad\xe6\x94\xbe,2019\xe6\x9c\x80\xe6\x96\xb0\xe7\x94\xb5\xe5\xbd\xb1\xe6\x92\xad\xe6\x94\xbe,VIP\xe7\x94\xb5\xe5\xbd\xb1\xe5\x85\x8d\xe8\xb4\xb9\xe5\x9c\xa8\xe7\xba\xbf\xe8\xa7\x82\xe7\x9c\x8b ">\r\n<link rel=\'stylesheet\' id=\'main-css\'  href=\'/template/mb2/css/style.css\' type=\'text/css\' media=\'all\' />\r\n<link rel=\'stylesheet\' id=\'main-css\'  href=\'/template/mb2/css/index.css\' type=\'text/css\' media=\'all\' />\r\n\r\n<link rel="Shortcut Icon" href="/template/mb2//template/qwysmb-html/images/favicon.png">\r\n<link rel="Bookmark" href="/template/mb2//template/qwysmb-html/images/favicon.png">\r\n<!--[if lt IE 9]><script src="js/html5.js"></script><![endif]-->\r\n<script type="text/javascript" src="/template/mb2/js/jquery-1.8.3.min.js"></script>\r\n<script type="text/javascript" src="/template/mb2/js/jquery.banner.revolution.min.js"></script>\r\n<script type="text/javascript" src="/template/mb2/js/banner.js"></script>\r\n<link rel="stylesheet" type="text/css" href="/template/mb2/css/slide.css" media="screen" />\r\n</head>\r\n<body class="home blog">\r\n<header class="header">\r\n  <div class="container">\r\n    <h1 class="logo"><a href="/" title="\xe6\xa9\x98\xe7\x8c\xab\xe5\xbd\xb1\xe8\xa7\x86-\xe5\x85\x8d\xe8\xb4\xb9\xe5\x9c\xa8\xe7\xba\xbf\xe8\xa7\x82\xe7\x9c\x8b\xe6\x9c\x80\xe6\x96\xb0VIP\xe5\xa4\xa7\xe7\x89\x87-2019\xe6\x9c\x80\xe6\x96\xb0\xe7\x94\xb5\xe5\xbd\xb1\xe5\x9c\xa8\xe7\xba\xbf\xe7\x9c\x8b\xe3\x80\x82"><img src="/template/mb2/images/logo.png"><span>\xe6\xa9\x98\xe7\x8c\xab\xe5\xbd\xb1\xe8\xa7\x86-\xe5\x85\x8d\xe8\xb4\xb9\xe5\x9c\xa8\xe7\xba\xbf\xe8\xa7\x82\xe7\x9c\x8b\xe6\x9c\x80\xe6\x96\xb0VIP\xe5\xa4\xa7\xe7\x89\x87-2019\xe6\x9c\x80\xe6\x96\xb0\xe7\x94\xb5\xe5\xbd\xb1\xe5\x9c\xa8\xe7\xba\xbf\xe7\x9c\x8b\xe3\x80\x82</span></a></h1>\r\n    <div class="sitenav">\r\n      <ul>\r\n\t\t  \r\n        <li id="menu-item-18" class="menu-item"><a  class="menu-itema-two"   href="/">\xe9\xa6\x96\xe9\xa1\xb5</a> </li>\r\n\t\t          <li id="menu-item-1" class="menu-item"><a  href="/index.php/vod/type/id/1.html">\xe7\x94\xb5\xe5\xbd\xb1</a></li>\r\n\t\t           <li id="menu-item-2" class="menu-item"><a  href="/index.php/vod/type/id/2.html">\xe8\xbf\x9e\xe7\xbb\xad\xe5\x89\xa7</a></li>\r\n\t\t           <li id="menu-item-3" class="menu-item"><a  href="/index.php/vod/type/id/3.html">\xe7\xbb\xbc\xe8\x89\xba</a></li>\r\n\t\t           <li id="menu-item-4" class="menu-item"><a  href="/index.php/vod/type/id/4.html">\xe5\x8a\xa8\xe6\xbc\xab</a></li>\r\n\t\t           <li id="menu-item-5" class="menu-item"><a  href="/index.php/art/type/id/5.html">\xe8\xb5\x84\xe8\xae\xaf</a></li>\r\n\t\t          \r\n      </ul>\r\n    </div>\r\n    <span class="sitenav-on"><i class="icon-list"></i></span> <span class="sitenav-mask"></span>\r\n    <div class="accounts"> <a class="account-weixin" href="javascript:;"><i class="fa"></i>\r\n      <div class="account-popover">\r\n        <div class="account-popover-content"><img src="/template/mb2/images/qrcode.png"></div>\r\n      </div>\r\n      </a> </div>\r\n    <span class="searchstart-on"><i class="icon-search"></i></span> <span class="searchstart-off"><i class="icon-search"></i></span>\r\n    <form class="searchform"  name="search" method="POST" action="/index.php/vod/search.html" method="post" id="search">\r\n      <button tabindex="3" class="sbtn" type="submit"><i class="fa"></i></button>\r\n      <input tabindex="2" class="sinput" name="wd" type="text" placeholder="\xe8\xbe\x93\xe5\x85\xa5\xe5\x85\xb3\xe9\x94\xae\xe5\xad\x97" value="">\r\n    </form>\r\n  </div>\r\n</header>\r\n<div class="header_end"></div>\r\n<div id="homeso">\r\n  <form method="post" id="soform" style="text-align: center;float: none"  name="search" action="/index.php/vod/search.html">\r\n    <img id="imgsrc" style="margin:10px" src="/template/mb2/images/sologo.png"><br>\r\n    <br>\r\n    <input tabindex="2" class="homesoin" id="sos" name="wd" type="text" placeholder="\xe8\xbe\x93\xe5\x85\xa5\xe4\xbd\xa0\xe8\xa6\x81\xe8\xa7\x82\xe7\x9c\x8b\xe7\x9a\x84\xe8\xa7\x86\xe9\xa2\x91" value="">\r\n    <button id="button" tabindex="3" class="homesobtn" type="submit"><i class="fa">\xe6\x90\x9c\xe7\xb4\xa2</i></button>\r\n  </form>\r\n</div>\r\n \r\n\r\n<!--\xe5\xb9\xbb\xe7\x81\xaf\xe7\x89\x87\xe5\xbc\x80\xe5\xa7\x8b-->\r\n\r\n<!--\xe5\xb9\xbb\xe7\x81\xaf\xe7\x89\x87\xe7\xbb\x93\xe6\x9d\x9f-->\r\n<section class="container">\r\n  <div class="index_film">\r\n    <div class="single-strong">\xe7\x83\xad\xe9\x97\xa8\xe6\x8e\xa8\xe8\x8d\x90<!--<span class="chak"><a href="[matrix:link]">\xe6\x9f\xa5\xe7\x9c\x8b\xe6\x9b\xb4\xe5\xa4\x9a</a></span>--></div>\r\n    <div class="m-g">\r\n      <div class="b-listtab-main">\r\n        <div>\r\n          <div>\r\n            <div class="s-tab-main">\r\n              <ul class="list g-clear">\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/69299.html \' title=\'\xe5\x88\xa9\xe5\x88\x83\xe5\x87\xba\xe9\x9e\x98\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-12/p2574172427.jpg\' alt=\'\xe5\x88\xa9\xe5\x88\x83\xe5\x87\xba\xe9\x9e\x98\' /> <span class=\'pay\'>\xe5\x96\x9c\xe5\x89\xa7\xe7\x89\x87</span> <span class=\'hint\'>HD</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x88\xa9\xe5\x88\x83\xe5\x87\xba\xe9\x9e\x98</span> <span class=\'s2\'>0.0</span></p>\r\n                    <p class=\'star\'>\xe4\xb8\xb9\xe5\xb0\xbc\xe5\xb0\x94\xc2\xb7\xe5\x85\x8b\xe9\x9b\xb7\xe6\xa0\xbc,\xe5\xae\x89\xe5\xa8\x9c\xc2\xb7\xe5\xbe\xb7\xc2\xb7\xe9\x98\xbf\xe7\x8e\x9b\xe6\x96\xaf,\xe5\x85\x8b\xe9\x87\x8c\xe6\x96\xaf\xc2\xb7\xe5\x9f\x83\xe6\x96\x87\xe6\x96\xaf,\xe6\x9d\xb0\xe7\xb1\xb3\xc2\xb7\xe6\x9d\x8e\xc2\xb7\xe6\x9f\xaf\xe8\x92\x82\xe6\x96\xaf </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/68489.html \' title=\'\xe5\x86\xb0\xe9\x9b\xaa\xe5\xa5\x87\xe7\xbc\x982\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-11/2019112217391982649.jpg\' alt=\'\xe5\x86\xb0\xe9\x9b\xaa\xe5\xa5\x87\xe7\xbc\x982\' /> <span class=\'pay\'>\xe5\x96\x9c\xe5\x89\xa7\xe7\x89\x87</span> <span class=\'hint\'>DVD+HD\xe9\x9f\xa9\xe5\xad\x97\xe5\x9b\xbd\xe8\xaf\xad</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x86\xb0\xe9\x9b\xaa\xe5\xa5\x87\xe7\xbc\x982</span> <span class=\'s2\'>0.0</span></p>\r\n                    <p class=\'star\'>\xe4\xbc\x8a\xe8\xbf\xaa\xe5\xa8\x9c\xc2\xb7\xe9\x97\xa8\xe6\xb3\xbd\xe5\xb0\x94,\xe5\x85\x8b\xe9\x87\x8c\xe6\x96\xaf\xe6\xb1\x80\xc2\xb7\xe8\xb4\x9d\xe5\xb0\x94,\xe4\xb9\x94\xe7\xba\xb3\xe6\xa3\xae\xc2\xb7\xe6\xa0\xbc\xe7\xbd\x97\xe5\xa4\xab,\xe5\x9f\x83\xe6\x96\x87\xc2\xb7\xe8\x95\xbe\xe5\x88\x87\xe5\xb0\x94\xc2\xb7\xe4\xbc\x8d\xe5\xbe\xb7 </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/69873.html \' title=\'\xe5\x8d\x97\xe6\x96\xb9\xe8\xbd\xa6\xe7\xab\x99\xe7\x9a\x84\xe8\x81\x9a\xe4\xbc\x9a\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-12/p2574278284.jpg\' alt=\'\xe5\x8d\x97\xe6\x96\xb9\xe8\xbd\xa6\xe7\xab\x99\xe7\x9a\x84\xe8\x81\x9a\xe4\xbc\x9a\' /> <span class=\'pay\'>\xe5\x89\xa7\xe6\x83\x85\xe7\x89\x87</span> <span class=\'hint\'>HD\xe6\xad\xa6\xe6\xb1\x89\xe6\x96\xb9\xe8\xa8\x80\xe6\x9c\xaa\xe5\x88\xa0\xe5\x87\x8f\xe7\x89\x88</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x8d\x97\xe6\x96\xb9\xe8\xbd\xa6\xe7\xab\x99\xe7\x9a\x84\xe8\x81\x9a\xe4\xbc\x9a</span> <span class=\'s2\'>0.0</span></p>\r\n                    <p class=\'star\'>\xe8\x83\xa1\xe6\xad\x8c,\xe6\xa1\x82\xe7\xba\xb6\xe9\x95\x81,\xe5\xbb\x96\xe5\x87\xa1,\xe4\xb8\x87\xe8\x8c\x9c,\xe5\xa5\x87\xe9\x81\x93,\xe9\xbb\x84\xe8\xa7\x89,\xe6\x9b\xbe\xe7\xbe\x8e\xe6\x85\xa7\xe5\xad\x9c,\xe5\xbc\xa0\xe5\xa5\x95\xe8\x81\xaa,\xe9\x99\x88\xe6\xb0\xb8\xe5\xbf\xa0,\xe6\x9d\x8e\xe5\xbf\x97\xe9\xb9\x8f,\xe5\x88\x98\xe7\x95\x85,\xe5\xb8\xb8\xe5\x98\x89\xe8\xb1\xaa,\xe5\xb8\xb8\xe5\x98\x89\xe5\xa3\xae,\xe9\x99\x88\xe5\xad\x90\xe6\x9d\xb0,\xe9\x82\xb1\xe6\x96\x87\xe6\xb4\x8b,\xe6\xb1\xa4\xe9\x9d\x92\xe6\x9d\xbe,\xe4\xbb\x98\xe5\xb0\x8f\xe4\xbb\x99 </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/70954.html \' title=\'\xe5\x8f\xb6\xe9\x97\xae4\xef\xbc\x9a\xe5\xae\x8c\xe7\xbb\x93\xe7\xaf\x87\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://images.cnblogsc.com/pic/upload/vod/2019-12/201912211576894370.jpg\' alt=\'\xe5\x8f\xb6\xe9\x97\xae4\xef\xbc\x9a\xe5\xae\x8c\xe7\xbb\x93\xe7\xaf\x87\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe4\xbd\x9c\xe7\x89\x87</span> <span class=\'hint\'>HD</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x8f\xb6\xe9\x97\xae4\xef\xbc\x9a\xe5\xae\x8c\xe7\xbb\x93\xe7\xaf\x87</span> <span class=\'s2\'>3.0</span></p>\r\n                    <p class=\'star\'>\xe7\x94\x84\xe5\xad\x90\xe4\xb8\xb9,\xe5\x90\xb4\xe6\xa8\xbe,\xe5\x90\xb4\xe5\xbb\xba\xe8\xb1\xaa,\xe6\x96\xaf\xe7\xa7\x91\xe7\x89\xb9\xc2\xb7\xe9\x98\xbf\xe9\x87\x91\xe6\x96\xaf,\xe6\x9d\x8e\xe5\xae\x9b\xe5\xa6\xb2,\xe9\x83\x91\xe5\x88\x99\xe4\xbb\x95,\xe9\x99\x88\xe5\x9b\xbd\xe5\x9d\xa4,\xe6\x95\x96\xe5\x98\x89\xe5\xb9\xb4,\xe9\xab\x98\xe6\x88\x98,\xe7\x86\x8a\xe9\xbb\x9b\xe6\x9e\x97,\xe5\x90\xb4\xe5\x8d\x83\xe8\xaf\xad </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/74650.html \' title=\'\xe5\x9b\xa7\xe5\xa6\x88\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'http://pic.szjal.cn/img/dy_5ef4b35a2a22d255296a366295e664b4.jpg\' alt=\'\xe5\x9b\xa7\xe5\xa6\x88\' /> <span class=\'pay\'>\xe5\x96\x9c\xe5\x89\xa7\xe7\x89\x87</span> <span class=\'hint\'>HD</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x9b\xa7\xe5\xa6\x88</span> <span class=\'s2\'>7.0</span></p>\r\n                    <p class=\'star\'>\xe5\xbe\x90\xe5\xb3\xa5,\xe7\x8e\x8b\xe7\xa5\x96\xe8\x93\x9d,\xe5\xbd\xad\xe6\x98\xb1\xe7\x95\x85,\xe6\xbd\x98\xe8\x99\xb9 </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/67383.html \' title=\'\xe5\x86\xb3\xe6\x88\x98\xe4\xb8\xad\xe9\x80\x94\xe5\xb2\x9b\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://mahuapic.com/upload/vod/2020-01-19/202001191579439231.jpg\' alt=\'\xe5\x86\xb3\xe6\x88\x98\xe4\xb8\xad\xe9\x80\x94\xe5\xb2\x9b\' /> <span class=\'pay\'>\xe6\x88\x98\xe4\xba\x89\xe7\x89\x87</span> <span class=\'hint\'>HD</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x86\xb3\xe6\x88\x98\xe4\xb8\xad\xe9\x80\x94\xe5\xb2\x9b</span> <span class=\'s2\'>0.0</span></p>\r\n                    <p class=\'star\'>\xe4\xbc\x8d\xe8\xbf\xaa\xc2\xb7\xe5\x93\x88\xe9\x87\x8c\xe6\xa3\xae,\xe5\xb8\x95\xe7\x89\xb9\xe9\x87\x8c\xe5\x85\x8b\xc2\xb7\xe5\xa8\x81\xe5\xb0\x94\xe6\xa3\xae,\xe5\x8d\xa2\xe5\x85\x8b\xc2\xb7\xe4\xbc\x8a\xe4\xb8\x87\xe6\x96\xaf,\xe8\x89\xbe\xe5\xbe\xb7\xc2\xb7\xe6\x96\xaf\xe5\x85\x8b\xe6\x9e\x97,\xe4\xb8\xb9\xe5\xb0\xbc\xe6\x96\xaf\xc2\xb7\xe5\xa5\x8e\xe5\xbe\xb7 </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/67665.html \' title=\'\xe9\xb9\xa4\xe5\x94\xb3\xe5\x8d\x8e\xe4\xba\xad\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-11/201911129513198291.jpg\' alt=\'\xe9\xb9\xa4\xe5\x94\xb3\xe5\x8d\x8e\xe4\xba\xad\' /> <span class=\'pay\'>\xe5\x9b\xbd\xe4\xba\xa7\xe5\x89\xa7</span> <span class=\'hint\'>\xe5\xae\x8c\xe7\xbb\x93</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe9\xb9\xa4\xe5\x94\xb3\xe5\x8d\x8e\xe4\xba\xad</span> <span class=\'s2\'>0.0</span></p>\r\n                    <p class=\'star\'>\xe7\xbd\x97\xe6\x99\x8b,\xe6\x9d\x8e\xe4\xb8\x80\xe6\xa1\x90,\xe9\xbb\x84\xe5\xbf\x97\xe5\xbf\xa0,\xe5\xbc\xa0\xe5\xbf\x97\xe5\x9d\x9a </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/68855.html \' title=\'\xe5\xba\x86\xe4\xbd\x99\xe5\xb9\xb4\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-11/39045.jpg\' alt=\'\xe5\xba\x86\xe4\xbd\x99\xe5\xb9\xb4\' /> <span class=\'pay\'>\xe5\x9b\xbd\xe4\xba\xa7\xe5\x89\xa7</span> <span class=\'hint\'>\xe5\xae\x8c\xe7\xbb\x93</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xba\x86\xe4\xbd\x99\xe5\xb9\xb4</span> <span class=\'s2\'>0.0</span></p>\r\n                    <p class=\'star\'>\xe5\xbc\xa0\xe8\x8b\xa5\xe6\x98\x80,\xe6\x9d\x8e\xe6\xb2\x81,\xe9\x99\x88\xe9\x81\x93\xe6\x98\x8e,\xe5\x90\xb4\xe5\x88\x9a,\xe4\xba\x8e\xe8\x8d\xa3\xe5\x85\x89,\xe8\xbe\x9b\xe8\x8a\xb7\xe8\x95\xbe,\xe5\xae\x8b\xe8\xbd\xb6,\xe5\x88\x98\xe6\xa1\xa6,\xe7\x94\xb0\xe9\x9b\xa8,\xe9\x83\xad\xe9\xba\x92\xe9\xba\x9f,\xe8\x82\x96\xe6\x88\x98 </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/70940.html \' title=\'\xe6\x98\x9f\xe7\x90\x83\xe5\xa4\xa7\xe6\x88\x989\xef\xbc\x9a\xe5\xa4\xa9\xe8\xa1\x8c\xe8\x80\x85\xe5\xb4\x9b\xe8\xb5\xb7\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://images.cnblogsc.com/pic/upload/vod/2019-12/201912201576827393.jpg\' alt=\'\xe6\x98\x9f\xe7\x90\x83\xe5\xa4\xa7\xe6\x88\x989\xef\xbc\x9a\xe5\xa4\xa9\xe8\xa1\x8c\xe8\x80\x85\xe5\xb4\x9b\xe8\xb5\xb7\' /> <span class=\'pay\'>\xe7\xa7\x91\xe5\xb9\xbb\xe7\x89\x87</span> <span class=\'hint\'>TC</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe6\x98\x9f\xe7\x90\x83\xe5\xa4\xa7\xe6\x88\x989\xef\xbc\x9a\xe5\xa4\xa9\xe8\xa1\x8c\xe8\x80\x85\xe5\xb4\x9b\xe8\xb5\xb7</span> <span class=\'s2\'>2.0</span></p>\r\n                    <p class=\'star\'>\xe9\xbb\x9b\xe8\xa5\xbf\xc2\xb7\xe9\x9b\xb7\xe5\xbe\xb7\xe5\x88\xa9,\xe4\xba\x9a\xe5\xbd\x93\xc2\xb7\xe5\xbe\xb7\xe8\xb5\x96\xe5\xbc\x97,\xe5\xa5\xa5\xe6\x96\xaf\xe5\x8d\xa1\xc2\xb7\xe4\xbc\x8a\xe8\x90\xa8\xe5\x85\x8b,\xe7\xba\xa6\xe7\xbf\xb0\xc2\xb7\xe5\x8d\x9a\xe8\x80\xb6\xe5\x8a\xa0 </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/69870.html \' title=\'\xe5\x8b\x87\xe6\x95\xa2\xe8\x80\x85\xe6\xb8\xb8\xe6\x88\x8f2\xef\xbc\x9a\xe5\x86\x8d\xe6\x88\x98\xe5\xb7\x85\xe5\xb3\xb0\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-12/20191210952141070.jpg\' alt=\'\xe5\x8b\x87\xe6\x95\xa2\xe8\x80\x85\xe6\xb8\xb8\xe6\x88\x8f2\xef\xbc\x9a\xe5\x86\x8d\xe6\x88\x98\xe5\xb7\x85\xe5\xb3\xb0\' /> <span class=\'pay\'>\xe5\x89\xa7\xe6\x83\x85\xe7\x89\x87</span> <span class=\'hint\'>TS\xe4\xb8\xad\xe5\xad\x97\xe7\x89\x88</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x8b\x87\xe6\x95\xa2\xe8\x80\x85\xe6\xb8\xb8\xe6\x88\x8f2\xef\xbc\x9a\xe5\x86\x8d\xe6\x88\x98\xe5\xb7\x85\xe5\xb3\xb0</span> <span class=\'s2\'>0.0</span></p>\r\n                    <p class=\'star\'>\xe9\x81\x93\xe6\x81\xa9\xc2\xb7\xe5\xbc\xba\xe6\xa3\xae,\xe5\x87\xaf\xe4\xbc\xa6\xc2\xb7\xe5\x90\x89\xe5\x85\xb0,\xe6\x9d\xb0\xe5\x85\x8b\xc2\xb7\xe5\xb8\x83\xe8\x8e\xb1\xe5\x85\x8b,\xe5\x87\xaf\xe6\x96\x87\xc2\xb7\xe5\x93\x88\xe7\x89\xb9,\xe5\xb0\xbc\xe5\x85\x8b\xc2\xb7\xe4\xb9\x94\xe7\xba\xb3\xe6\x96\xaf,\xe5\xa5\xa5\xe5\x8d\xa1\xe8\x8f\xb2\xe5\xa8\x9c,\xe4\xba\x9a\xe5\x8e\x86\xe5\x85\x8b\xe6\x96\xaf\xc2\xb7\xe6\xb2\x83\xe5\xb0\x94\xe5\xa4\xab,\xe4\xb8\xb9\xe5\xb0\xbc\xc2\xb7\xe5\xbe\xb7\xe7\xbb\xb4\xe6\x89\x98,\xe6\x91\xa9\xe6\xa0\xb9\xc2\xb7\xe7\x89\xb9\xe7\xba\xb3,\xe7\xbd\x97\xe4\xbc\x8a\xc2\xb7\xe9\xba\xa6\xe5\x85\x8b\xe5\x87\xaf\xe6\x81\xa9,\xe7\x8e\x9b\xe7\x90\xb3\xc2\xb7\xe8\xbe\x9b\xe7\xa7\x91,\xe9\xba\xa6\xe8\xbf\xaa\xe6\xa3\xae\xc2\xb7\xe4\xbc\x8a\xe7\x91\x9f\xe6\x9b\xbc,\xe7\xa7\x91\xe6\x9e\x97\xc2\xb7\xe6\xb1\x89\xe5\x85\x8b\xe6\x96\xaf,\xe4\xb8\xb9\xe5\xa6\xae\xe4\xba\x9a\xc2\xb7\xe6\x8b\x89\xe7\xb1\xb3\xe9\x9b\xb7\xe5\x85\xb9,\xe7\x91\x9e\xe6\x96\xaf\xc2\xb7\xe8\xbe\xbe\xe6\xaf\x94,\xe4\xb8\xb9\xe5\xb0\xbc\xc2\xb7\xe6\xa0\xbc\xe6\xb4\x9b\xe5\xbc\x97,\xe7\x91\x9f\xe8\xbe\xbe\xe5\x90\x95\xe6\x96\xaf\xc2\xb7\xe5\xb8\x83\xe5\x85\xb0,\xe5\xb0\xbc\xe5\x85\x8b\xc2\xb7\xe6\x88\x88\xe9\xba\xa6\xe6\x96\xaf,\xe5\xb8\x83\xe9\xb2\x81\xe8\xaf\xba\xc2\xb7\xe7\xbd\x97\xe6\x96\xaf,\xe8\x8e\x8e\xe6\x8b\x89\xc2\xb7\xe8\xb4\x9d\xe7\xba\xb3\xe5\xb0\xbc,\xe6\x9f\xa5\xe5\xb0\x94\xe6\x96\xaf\xc2\xb7\xe6\xa0\xbc\xe6\x9e\x97,\xe8\xbf\x88\xe5\x85\x8b\xe5\xb0\x94\xc2\xb7\xe6\xaf\x94\xe6\x96\xaf\xe5\x88\xa9,\xe4\xbf\x9d\xe7\xbd\x97\xc2\xb7\xe7\x9a\xae\xe5\xb0\x94\xe6\x96\xaf\xe4\xbc\xaf\xe9\x87\x8c,\xe8\x90\xa8\xe5\xb0\x94\xc2\xb7\xe9\x9a\x86\xe6\x88\x88\xe5\xb7\xb4\xe5\xb0\x94\xe5\xa4\x9a,\xe7\xba\xa6\xe7\xbf\xb0\xc2\xb7\xe7\x9b\x96\xe8\x92\x82\xe5\xb0\x94 </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/70034.html \' title=\'\xe8\xaf\xaf\xe6\x9d\x802019\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://images.cnblogsc.com/pic/upload/vod/2019-12/201912111576047245.jpg\' alt=\'\xe8\xaf\xaf\xe6\x9d\x802019\' /> <span class=\'pay\'>\xe5\x89\xa7\xe6\x83\x85\xe7\x89\x87</span> <span class=\'hint\'>HC</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe8\xaf\xaf\xe6\x9d\x802019</span> <span class=\'s2\'>0.0</span></p>\r\n                    <p class=\'star\'>\xe8\x82\x96\xe5\xa4\xae,\xe8\xb0\xad\xe5\x8d\x93,\xe9\x99\x88\xe5\x86\xb2,\xe5\xa7\x9c\xe7\x9a\x93\xe6\x96\x87,\xe7\xa7\xa6\xe6\xb2\x9b,\xe8\xbe\xb9\xe5\xa4\xa9\xe6\x89\xac,\xe8\xae\xb8\xe6\x96\x87\xe5\xa7\x97,\xe5\xbc\xa0\xe7\x86\x99\xe7\x84\xb6,\xe6\x96\xbd\xe5\x90\x8d\xe5\xb8\x85,\xe9\xbb\x84\xe5\x81\xa5\xe7\x8e\xae </p>\r\n                  </div>\r\n                  </a> </li>\r\n                                <li class=\'item\'> <a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/64239.html \' title=\'\xe5\xb0\x8f\xe4\xb8\x912019\'>\r\n                  <div class=\'cover g-playicon\'> <img src=\'https://images.cnblogsc.com/pic/upload/vod/2019-10/201910071570413217.jpg\' alt=\'\xe5\xb0\x8f\xe4\xb8\x912019\' /> <span class=\'pay\'>\xe5\x89\xa7\xe6\x83\x85\xe7\x89\x87</span> <span class=\'hint\'>HD</span></div>\r\n                  <div class=\'detail\'>\r\n                    <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xb0\x8f\xe4\xb8\x912019</span> <span class=\'s2\'>0.0</span></p>\r\n                    <p class=\'star\'>\xe6\x9d\xb0\xe6\x98\x86\xc2\xb7\xe8\x8f\xb2\xe5\xb0\xbc\xe5\x85\x8b\xe6\x96\xaf,\xe7\xbd\x97\xe4\xbc\xaf\xe7\x89\xb9\xc2\xb7\xe5\xbe\xb7\xe5\xb0\xbc\xe7\xbd\x97,\xe9\xa9\xac\xe5\x85\x8b\xc2\xb7\xe9\xa9\xac\xe9\xbe\x99,\xe8\x8e\x8e\xe5\xa7\xac\xc2\xb7\xe8\xb4\x9d\xe5\x85\xb9,\xe8\xb0\xa2\xc2\xb7\xe6\x83\xa0\xe6\xa0\xb9\xe5\xa7\x86,\xe5\xbc\x97\xe5\x85\xb0\xe8\xa5\xbf\xe4\xb8\x9d\xc2\xb7\xe5\xba\xb7\xe7\xbd\x97\xe4\xbc\x8a,\xe5\xb8\x83\xe8\x8e\xb1\xe6\x81\xa9\xc2\xb7\xe8\x80\x83\xe4\xbc\xa6,\xe5\xb8\x83\xe8\x8e\xb1\xe6\x81\xa9\xc2\xb7\xe6\xb3\xb0\xe9\x87\x8c\xc2\xb7\xe4\xba\xa8\xe5\x88\xa9,\xe5\xb8\x83\xe8\x8e\xb1\xe7\x89\xb9\xc2\xb7\xe5\x8d\xa1\xe4\xbc\xa6,\xe9\x81\x93\xe6\xa0\xbc\xe6\x8b\x89\xe6\x96\xaf\xc2\xb7\xe9\x9c\x8d\xe5\xa5\x87\xe6\x96\xaf,\xe6\xa0\xbc\xe4\xbc\xa6\xc2\xb7\xe5\xbc\x97\xe8\x8e\xb1\xe6\x96\xbd\xe5\x8b\x92,\xe6\xaf\x94\xe5\xb0\x94\xc2\xb7\xe5\x9d\x8e\xe6\x99\xae,\xe4\xb9\x94\xe4\xbb\x80\xc2\xb7\xe5\xb8\x95\xe6\x96\xaf,\xe4\xbd\x86\xe4\xb8\x81\xc2\xb7\xe4\xbd\xa9\xe9\x9b\xb7\xe6\x8b\x89-\xe5\xa5\xa5\xe5\xb0\x94\xe6\xa3\xae,\xe7\x8e\x9b\xe4\xb8\xbd\xc2\xb7\xe5\x87\xaf\xe7\x89\xb9\xc2\xb7\xe9\xa9\xac\xe6\x8b\x89\xe7\x89\xb9,\xe8\xbf\x88\xe5\x85\x8b\xe5\xb0\x94\xc2\xb7\xe6\x9c\xac\xe8\x8c\xa8,\xe8\x8e\x8e\xe7\x8f\x91\xc2\xb7\xe5\x8d\x8e\xe7\x9b\x9b\xe9\xa1\xbf,\xe6\xa1\x91\xe5\xbe\xb7\xe6\x8b\x89\xc2\xb7\xe8\xa9\xb9\xe5\xa7\x86\xe6\x96\xaf,\xe6\x89\x98\xe5\xb0\xbc\xc2\xb7\xe8\xb5\xab\xe5\xbe\xb7,\xe6\x9b\xbc\xe5\xbe\xb7\xe6\x8b\x89\xc2\xb7\xe8\xb4\x9d\xe6\x8b\x89\xe7\xb1\xb3,\xe4\xb9\x94\xc2\xb7\xe5\xa5\xa5\xe5\x85\x8b\xe6\x9b\xbc,\xe5\x8d\xa1\xe5\xb0\x94\xc2\xb7\xe4\xbc\xa6\xe5\xbe\xb7\xe6\x96\xbd\xe6\xb3\xb0\xe7\x89\xb9,\xe7\xb1\xb3\xe5\x85\x8b\xc2\xb7\xe5\xa5\xa5\xe7\xbd\x97\xe5\x85\x8b,\xe5\xa4\xa7\xe5\x8d\xab\xc2\xb7\xe5\x90\x89\xe5\xb8\x83\xe6\xa3\xae,\xe4\xbc\x8a\xe4\xb8\x87\xc2\xb7\xe7\xbd\x97\xe8\x90\xa8\xe5\xa4\x9a,\xe5\xae\x89\xe5\xa6\xae\xc2\xb7\xe6\xaf\x94\xe8\x90\xa8\xe6\xaf\x94\xe4\xba\x9a,\xe5\xb8\x83\xe8\x8e\xb1\xe6\x96\xaf\xc2\xb7\xe7\xa7\x91\xe9\x87\x8c </p>\r\n                  </div>\r\n                  </a> </li>\r\n                              </ul>\r\n            </div>\r\n          </div>\r\n        </div>\r\n      </div>\r\n    </div>\r\n  </div>\r\n  <div class="Film_list">\r\n    <div class="single-strong">\xe6\x9c\x80\xe6\x96\xb0\xe7\x94\xb5\xe5\xbd\xb1 <span class="chak"><a href="/index.php/vod/type/id/1.html ">\xe6\x9f\xa5\xe7\x9c\x8b\xe6\x9b\xb4\xe5\xa4\x9a</a></span></div>\r\n    <div class="b-listtab-main">\r\n      <div class="s-tab-main">\r\n        <ul class="list g-clear">\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75984.html \' title=\'\xe5\x86\xb7\xe9\x85\xb7\xe6\xb8\xb8\xe6\x88\x8f\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2569119014.jpg\' alt=\'\xe5\x86\xb7\xe9\x85\xb7\xe6\xb8\xb8\xe6\x88\x8f\' /> <span class=\'pay\'>\xe6\x81\x90\xe6\x80\x96\xe7\x89\x87 </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x86\xb7\xe9\x85\xb7\xe6\xb8\xb8\xe6\x88\x8f</span> <span class=\'s2\'>4.0</span></p>\r\n              <p class=\'star\'>\xe6\xaf\x94\xe5\xb0\x94\xc2\xb7\xe6\x99\xae\xe5\xb0\x94\xe6\x9b\xbc,\xe6\xb4\x9b\xe7\x89\xb9\xc2\xb7\xe5\xbc\x97\xe8\xb4\x9d\xe5\x85\x8b,\xe5\xb0\xbc\xe5\x8f\xa4\xe6\x8b\x89\xe6\x96\xaf\xc2\xb7\xe6\xb3\x95\xe7\x91\x9e\xe5\xb0\x94,\xe5\x85\x8b\xe9\x87\x8c\xc2\xb7\xe7\xba\xa6\xe7\xbf\xb0\xe9\x80\x8a </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75983.html \' title=\'\xe7\xb4\xab\xe7\xa6\x81\xe5\x9f\x8e\xe9\x87\x8c\xe7\x9a\x84\xe5\xb0\x8f\xe9\xa3\x9f\xe5\x85\x89\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/20202818311352593.png\' alt=\'\xe7\xb4\xab\xe7\xa6\x81\xe5\x9f\x8e\xe9\x87\x8c\xe7\x9a\x84\xe5\xb0\x8f\xe9\xa3\x9f\xe5\x85\x89\' /> <span class=\'pay\'>\xe5\x89\xa7\xe6\x83\x85\xe7\x89\x87 </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe7\xb4\xab\xe7\xa6\x81\xe5\x9f\x8e\xe9\x87\x8c\xe7\x9a\x84\xe5\xb0\x8f\xe9\xa3\x9f\xe5\x85\x89</span> <span class=\'s2\'>4.0</span></p>\r\n              <p class=\'star\'>\xe5\xbc\xa0\xe9\x9d\x99\xe5\x88\x9d,\xe5\x91\xa8\xe9\x99\x86\xe5\x95\xa6,\xe7\x8e\x8b\xe7\x8e\x89\xe9\x9b\xaf,\xe8\xb4\xbe\xe4\xb8\x80\xe5\xb9\xb3 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75956.html \' title=\'\xe9\x85\xb8\xe4\xb8\x96\xe4\xbb\xa3\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2531903510.jpg\' alt=\'\xe9\x85\xb8\xe4\xb8\x96\xe4\xbb\xa3\' /> <span class=\'pay\'>\xe5\x89\xa7\xe6\x83\x85\xe7\x89\x87 </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe9\x85\xb8\xe4\xb8\x96\xe4\xbb\xa3</span> <span class=\'s2\'>7.0</span></p>\r\n              <p class=\'star\'>\xe8\x8f\xb2\xe5\x88\xa9\xe6\x99\xae\xc2\xb7\xe9\x98\xbf\xe6\x9d\xb0\xe8\x80\xb6\xe5\xa4\xab,\xe4\xba\x9a\xe5\x8e\x86\xe5\xb1\xb1\xe5\xa4\xa7\xc2\xb7\xe5\xba\x93\xe5\x85\xb9\xe6\xb6\x85\xe4\xbd\x90\xe5\xa4\xab,Aleksandra,Rebenok,Aleksey,Agranovich,Anastasiya,Evgrafova,\xe7\xbd\x97\xe6\x89\x8e\xc2\xb7\xe5\x93\x88\xe4\xbc\x8a\xe9\xb2\x81\xe6\x9e\x97\xe5\xa8\x9c,\xe5\xbe\xb7\xe7\xb1\xb3\xe7\x89\xb9\xe9\x87\x8c\xc2\xb7\xe5\xba\x93\xe5\x88\xa9\xe5\xa5\x87\xe7\xa7\x91\xe5\xa4\xab,\xe4\xbc\x8a\xe8\x8e\xb2\xe5\xa8\x9c\xc2\xb7\xe8\x8e\xab\xe7\xbd\x97\xe4\xbd\x90\xe5\xa8\x83,Savva,Saveliev,Evgeniya,Sheveleva,Arina,Shevtsova,\xe5\xbd\xbc\xe5\xbe\x97\xc2\xb7\xe6\x96\xaf\xe7\xa7\x91\xe6\xb2\x83\xe5\xb0\x94\xe4\xbd\x90\xe5\xa4\xab </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/68776.html \' title=\'\xe5\xa5\xb3\xe6\x9c\x8d\xe5\x8a\xa1\xe5\x91\x98\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2532290323.jpg\' alt=\'\xe5\xa5\xb3\xe6\x9c\x8d\xe5\x8a\xa1\xe5\x91\x98\' /> <span class=\'pay\'>\xe5\x89\xa7\xe6\x83\x85\xe7\x89\x87 </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xa5\xb3\xe6\x9c\x8d\xe5\x8a\xa1\xe5\x91\x98</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe5\x8a\xa0\xe5\xb8\x83\xe9\x87\x8c\xe5\x9f\x83\xe6\x8b\x89\xc2\xb7\xe5\x8d\xa1\xe6\x89\x98,Agustina,Quinci,Teresa,S\xc3\xa1nchez </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75982.html \' title=\'\xe5\x88\xab\xe8\xa5\xbf\xe5\x8d\x9c\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2538553118.jpg\' alt=\'\xe5\x88\xab\xe8\xa5\xbf\xe5\x8d\x9c\' /> <span class=\'pay\'>\xe6\x81\x90\xe6\x80\x96\xe7\x89\x87 </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x88\xab\xe8\xa5\xbf\xe5\x8d\x9c</span> <span class=\'s2\'>7.0</span></p>\r\n              <p class=\'star\'>\xe6\x89\x98\xe5\xae\xbe\xc2\xb7\xe8\xb4\x9d\xe5\xb0\x94,\xe5\x8d\x8e\xe9\x87\x91\xc2\xb7\xe7\xa7\x91\xe8\xa5\xbf\xe5\xa5\xa5,\xe5\xa1\x94\xe7\x89\xb9\xc2\xb7\xe8\x89\xbe\xe7\x81\xb5\xe9\xa1\xbf,\xe8\xaf\xba\xe7\x8e\x9b\xc2\xb7\xe5\xae\x89\xe5\x90\x89\xe9\x87\x8c\xe5\x8d\xa1 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75975.html \' title=\'\xe6\x8c\x87\xe5\xb0\x96\xe4\xb8\x96\xe7\x95\x8c\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2577841366.jpg\' alt=\'\xe6\x8c\x87\xe5\xb0\x96\xe4\xb8\x96\xe7\x95\x8c\' /> <span class=\'pay\'>\xe5\x89\xa7\xe6\x83\x85\xe7\x89\x87 </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe6\x8c\x87\xe5\xb0\x96\xe4\xb8\x96\xe7\x95\x8c</span> <span class=\'s2\'>2.0</span></p>\r\n              <p class=\'star\'>\xe6\xb2\x88\xe6\x96\x87\xe4\xbf\x8a,\xe8\xa6\x83\xe6\x96\x87\xe9\x9d\x99,\xe6\x81\xbd\xe5\xb2\x9a </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75885.html \' title=\'\xe9\x94\xa4\xe7\xa5\x9e\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2582717201.jpg\' alt=\'\xe9\x94\xa4\xe7\xa5\x9e\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe4\xbd\x9c\xe7\x89\x87 </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe9\x94\xa4\xe7\xa5\x9e</span> <span class=\'s2\'>1.0</span></p>\r\n              <p class=\'star\'>\xe9\xbe\x9a\xe7\x8e\xa5\xe8\x8f\xb2,\xe8\x88\x92\xe6\x9d\xa8,\xe9\x99\x88\xe4\xba\x9a\xe9\x9b\xb7,\xe5\xb7\xa9\xe9\x87\x91\xe6\x82\xa6 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75880.html \' title=\'\xe4\xba\xb2\xe7\x88\xb1\xe7\x9a\x84\xe6\x96\xb0\xe5\xb9\xb4\xe5\xa5\xbd\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2578723424.jpg\' alt=\'\xe4\xba\xb2\xe7\x88\xb1\xe7\x9a\x84\xe6\x96\xb0\xe5\xb9\xb4\xe5\xa5\xbd\' /> <span class=\'pay\'>\xe5\x89\xa7\xe6\x83\x85\xe7\x89\x87 </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe4\xba\xb2\xe7\x88\xb1\xe7\x9a\x84\xe6\x96\xb0\xe5\xb9\xb4\xe5\xa5\xbd</span> <span class=\'s2\'>3.0</span></p>\r\n              <p class=\'star\'>\xe7\x99\xbd\xe7\x99\xbe\xe4\xbd\x95,\xe5\xbc\xa0\xe5\xad\x90\xe6\x9e\xab,\xe9\xad\x8f\xe5\xa4\xa7\xe5\x8b\x8b,\xe8\xae\xb8\xe5\xa8\xa3 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75883.html \' title=\'\xe7\x88\xb1\xe9\xa9\xac\xe7\x9a\x84\xe5\xa5\xb3\xe5\xad\xa9\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2581644898.jpg\' alt=\'\xe7\x88\xb1\xe9\xa9\xac\xe7\x9a\x84\xe5\xa5\xb3\xe5\xad\xa9\' /> <span class=\'pay\'>\xe5\x89\xa7\xe6\x83\x85\xe7\x89\x87 </span><span class=\'hint\'>BD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe7\x88\xb1\xe9\xa9\xac\xe7\x9a\x84\xe5\xa5\xb3\xe5\xad\xa9</span> <span class=\'s2\'>1.0</span></p>\r\n              <p class=\'star\'>\xe7\x88\xb1\xe4\xb8\xbd\xe6\xa3\xae\xc2\xb7\xe5\xb8\x83\xe9\x87\x8c,\xe4\xbf\x9d\xe7\xbd\x97\xc2\xb7\xe9\x9b\xb7\xe7\x91\x9f,\xe9\xbb\x9b\xe6\xaf\x94\xc2\xb7\xe7\x91\x9e\xe6\x81\xa9,\xe7\xbd\x97\xe5\xae\xbe\xc2\xb7\xe6\xb1\xa4\xe5\xb0\xbc </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75887.html \' title=\'\xe4\xb8\x88\xe5\xa4\xab\xe3\x80\x81\xe5\xa6\xbb\xe5\xad\x90\xe5\x92\x8c\xe6\x83\x85\xe4\xba\xba\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2576215491.jpg\' alt=\'\xe4\xb8\x88\xe5\xa4\xab\xe3\x80\x81\xe5\xa6\xbb\xe5\xad\x90\xe5\x92\x8c\xe6\x83\x85\xe4\xba\xba\' /> <span class=\'pay\'>\xe5\x96\x9c\xe5\x89\xa7\xe7\x89\x87 </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe4\xb8\x88\xe5\xa4\xab\xe3\x80\x81\xe5\xa6\xbb\xe5\xad\x90\xe5\x92\x8c\xe6\x83\x85\xe4\xba\xba</span> <span class=\'s2\'>10.0</span></p>\r\n              <p class=\'star\'>\xe5\x8d\xa1\xe6\x8f\x90\xe5\x85\x8b\xc2\xb7\xe4\xba\x9a\xe5\x88\xa9\xe5\xae\x89,Ananya,Panday,Bhumi,Pednekar, </p>\r\n            </div>\r\n            </a></li>\r\n                  </ul>\r\n      </div>\r\n    </div>\r\n  </div>\r\n  <div class="hot_film">\r\n    <div class="single-strong">\xe7\x94\xb5\xe5\xbd\xb1\xe6\x8e\x92\xe8\xa1\x8c\xe6\xa6\x9c</div>\r\n\t  \r\n\t  \t  \r\n\t  <div class="hot_film_list">\r\n\t\t\t\t<a href="/index.php/vod/detail/id/75887.html "><span class=" Serial_number">1</span><span class="vodname">\xe4\xb8\x88\xe5\xa4\xab\xe3\x80\x81\xe5\xa6\xbb\xe5\xad\x90\xe5\x92\x8c\xe6\x83\x85\xe4\xba\xba</span><span class="list_score">10.0</span></a> \t\t<a href="/index.php/vod/detail/id/69299.html "><span class=" Serial_number">2</span><span class="vodname">\xe5\x88\xa9\xe5\x88\x83\xe5\x87\xba\xe9\x9e\x98</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/68489.html "><span class=" Serial_number">3</span><span class="vodname">\xe5\x86\xb0\xe9\x9b\xaa\xe5\xa5\x87\xe7\xbc\x982</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/72627.html "><span class=" Serial_numberh ">4</span><span class="vodname">\xe7\xbb\x99\xe6\x88\x91\xe8\x87\xaa\xe7\x94\xb1</span><span class="list_score">9.0</span></a> \t\t<a href="/index.php/vod/detail/id/74532.html "><span class=" Serial_numberh ">5</span><span class="vodname">\xe5\xae\xa2\xe5\x8e\x85\xe9\x87\x8c\xe7\x9a\x84\xe6\xa3\xba\xe6\x9d\x90</span><span class="list_score">6.0</span></a> \t\t<a href="/index.php/vod/detail/id/75698.html "><span class=" Serial_numberh ">6</span><span class="vodname">\xe8\x99\x8e\xe9\x97\xa8\xe9\x95\x96\xe5\xb1\x80</span><span class="list_score">2.0</span></a> \t\t<a href="/index.php/vod/detail/id/75275.html "><span class=" Serial_numberh ">7</span><span class="vodname">\xe6\x9d\x9f\xe6\x89\x8b\xe6\x97\xa0\xe7\xad\x96</span><span class="list_score">7.0</span></a> \t\t<a href="/index.php/vod/detail/id/71140.html "><span class=" Serial_numberh ">8</span><span class="vodname">\xe5\xb0\x91\xe5\xb9\xb4\xe4\xb9\x94\xe4\xb9\x94\xe7\x9a\x84\xe5\xbc\x82\xe6\x83\xb3\xe4\xb8\x96\xe7\x95\x8c</span><span class="list_score">9.0</span></a> \t\t<a href="/index.php/vod/detail/id/69013.html "><span class=" Serial_numberh ">9</span><span class="vodname">\xe5\x8e\xbb\xe5\xb9\xb4\xe5\x9c\xa3\xe8\xaf\x9e</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/75623.html "><span class=" Serial_numberh ">10</span><span class="vodname">\xe9\x87\x8d\xe8\xbf\x94\xe6\xa0\xa1\xe5\x9b\xad</span><span class="list_score">5.0</span></a> \t\t<a href="/index.php/vod/detail/id/75622.html "><span class=" Serial_numberh ">11</span><span class="vodname">\xe8\x80\x81\xe5\x98\x8e</span><span class="list_score">4.0</span></a> \t\t<a href="/index.php/vod/detail/id/75620.html "><span class=" Serial_numberh ">12</span><span class="vodname">\xe4\xbd\x99\xe9\xa2\x9d\xe4\xb8\x8d\xe8\xb6\xb3</span><span class="list_score">6.0</span></a> \t\t<a href="/index.php/vod/detail/id/73687.html "><span class=" Serial_numberh ">13</span><span class="vodname">\xe5\xaf\x8c\xe5\xae\xb6\xe7\xa9\xb7\xe8\xb7\xaf\xe7\xac\xac\xe5\x85\xad\xe5\xad\xa3</span><span class="list_score">2.0</span></a> \t\t<a href="/index.php/vod/detail/id/34436.html "><span class=" Serial_numberh ">14</span><span class="vodname">\xe5\xa4\xb4\xe5\xb8\x88\xe7\x88\xb6\xe4\xb8\x80\xe4\xbd\x93</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/76066.html "><span class=" Serial_numberh ">15</span><span class="vodname">\xe5\x85\xad\xe4\xb8\xaa\xe8\xbe\xa3\xe5\xa6\xb9\xe4\xbb\x93\xe5\xba\x93\xe7\x94\x9f\xe6\xad\xbb\xe6\x96\x97</span><span class="list_score">5.0</span></a> \t\t<a href="/index.php/vod/detail/id/76061.html "><span class=" Serial_numberh ">16</span><span class="vodname">\xe7\xa7\x98\xe5\xaf\x86\xe5\x8a\xa8\xe7\x89\xa9\xe5\x9b\xad</span><span class="list_score">8.0</span></a> \t\t<a href="/index.php/vod/detail/id/76042.html "><span class=" Serial_numberh ">17</span><span class="vodname">\xe5\xa4\x9a\xe5\x8a\x9b\xe7\x89\xb9\xe7\x9a\x84\xe5\xa5\x87\xe5\xb9\xbb\xe5\x86\x92\xe9\x99\xa9</span><span class="list_score">3.0</span></a> \t\t<a href="/index.php/vod/detail/id/76029.html "><span class=" Serial_numberh ">18</span><span class="vodname">\xe9\x81\xbf\xe9\x9a\xbe\xe6\x89\x80</span><span class="list_score">3.0</span></a> \t\t<a href="/index.php/vod/detail/id/13530.html "><span class=" Serial_numberh ">19</span><span class="vodname">\xe6\xb3\xa2\xe5\xb8\x8c\xe7\xb1\xb3\xe4\xba\x9a\xe7\x94\x9f\xe6\xb4\xbb</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/76007.html "><span class=" Serial_numberh ">20</span><span class="vodname">\xe7\xbb\xbf\xe8\x8c\xb5\xe5\x9c\xba\xe5\xa4\x96</span><span class="list_score">7.0</span></a> \t\t<a href="/index.php/vod/detail/id/76004.html "><span class=" Serial_numberh ">21</span><span class="vodname">\xe9\x92\x9f\xe9\xb8\xa3\xe9\xb8\x9f</span><span class="list_score">4.0</span></a> \t\t<a href="/index.php/vod/detail/id/75117.html "><span class=" Serial_numberh ">22</span><span class="vodname">\xe9\x87\x8e\xe7\x8e\x8b</span><span class="list_score">3.0</span></a> \t  </div>\r\n\t  \r\n\t     \r\n  </div>\r\n    <div class="Film_list">\r\n    <div class="single-strong">\xe6\x9c\x80\xe6\x96\xb0\xe8\xbf\x9e\xe7\xbb\xad\xe5\x89\xa7 <span class="chak"><a href="/index.php/vod/type/id/2.html ">\xe6\x9f\xa5\xe7\x9c\x8b\xe6\x9b\xb4\xe5\xa4\x9a</a></span></div>\r\n    <div class="b-listtab-main">\r\n      <div class="s-tab-main">\r\n        <ul class="list g-clear">\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/76023.html \' title=\'\xe6\x88\x91\xe7\x9a\x84\xe5\x85\xa8\xe6\x81\xaf\xe6\x81\x8b\xe4\xba\xba/\xe6\x88\x91\xe7\x9a\x84\xe6\x99\xba\xe8\x83\xbd\xe6\x83\x85\xe4\xba\xba\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2581900655.jpg\' alt=\'\xe6\x88\x91\xe7\x9a\x84\xe5\x85\xa8\xe6\x81\xaf\xe6\x81\x8b\xe4\xba\xba/\xe6\x88\x91\xe7\x9a\x84\xe6\x99\xba\xe8\x83\xbd\xe6\x83\x85\xe4\xba\xba\' /> <span class=\'pay\'>\xe6\x97\xa5\xe9\x9f\xa9\xe5\x89\xa7 </span><span class=\'hint\'>\xe5\xae\x8c\xe7\xbb\x93</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe6\x88\x91\xe7\x9a\x84\xe5\x85\xa8\xe6\x81\xaf\xe6\x81\x8b\xe4\xba\xba/\xe6\x88\x91\xe7\x9a\x84\xe6\x99\xba\xe8\x83\xbd\xe6\x83\x85\xe4\xba\xba</span> <span class=\'s2\'>9.0</span></p>\r\n              <p class=\'star\'>\xe5\xb0\xb9\xe8\xb4\xa4\xe6\x97\xbb,\xe9\xab\x98\xe5\x9c\xa3\xe7\x86\x99,\xe5\xb4\x94\xe6\xb1\x9d\xe7\x8f\x8d,\xe9\xbb\x84\xe7\x81\xbf\xe7\x9b\x9b </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/76026.html \' title=\'\xe5\xa4\xa7\xe5\x95\x86\xe9\x81\x93/\xe4\xba\x91\xe9\xa3\x9e\xe4\xb8\x9d\xe8\xb7\xaf\xe5\xa4\xa9\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/202029027069129.png\' alt=\'\xe5\xa4\xa7\xe5\x95\x86\xe9\x81\x93/\xe4\xba\x91\xe9\xa3\x9e\xe4\xb8\x9d\xe8\xb7\xaf\xe5\xa4\xa9\' /> <span class=\'pay\'>\xe5\x9b\xbd\xe4\xba\xa7\xe5\x89\xa7 </span><span class=\'hint\'>\xe7\xac\xac02\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xa4\xa7\xe5\x95\x86\xe9\x81\x93/\xe4\xba\x91\xe9\xa3\x9e\xe4\xb8\x9d\xe8\xb7\xaf\xe5\xa4\xa9</span> <span class=\'s2\'>4.0</span></p>\r\n              <p class=\'star\'>\xe5\xbc\xa0\xe5\x98\x89\xe8\xaf\x91,\xe5\xbc\xa0\xe5\xbb\xb6,\xe6\x9f\xb4\xe9\xb8\xa5,\xe7\x8e\x8b\xe9\xbb\x8e\xe9\x9b\xaf </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75895.html \' title=\'\xe5\xb9\xb8\xe7\xa6\x8f\xe9\x99\xa2\xe4\xb9\x8b\xe8\x80\x81\xe6\x9c\x89\xe6\x89\x80\xe5\xae\x89\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2573643585.jpg\' alt=\'\xe5\xb9\xb8\xe7\xa6\x8f\xe9\x99\xa2\xe4\xb9\x8b\xe8\x80\x81\xe6\x9c\x89\xe6\x89\x80\xe5\xae\x89\' /> <span class=\'pay\'>\xe5\x9b\xbd\xe4\xba\xa7\xe5\x89\xa7 </span><span class=\'hint\'>\xe7\xac\xac03\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xb9\xb8\xe7\xa6\x8f\xe9\x99\xa2\xe4\xb9\x8b\xe8\x80\x81\xe6\x9c\x89\xe6\x89\x80\xe5\xae\x89</span> <span class=\'s2\'>9.0</span></p>\r\n              <p class=\'star\'>\xe5\x88\x98\xe4\xbd\xa9\xe7\x90\xa6 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/73561.html \' title=\'\xe6\x96\xb0\xe4\xb8\x96\xe7\x95\x8c(\xe7\x94\xb5\xe8\xa7\x86\xe5\x89\xa7)\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-1/p2579864105.jpg\' alt=\'\xe6\x96\xb0\xe4\xb8\x96\xe7\x95\x8c(\xe7\x94\xb5\xe8\xa7\x86\xe5\x89\xa7)\' /> <span class=\'pay\'>\xe5\x9b\xbd\xe4\xba\xa7\xe5\x89\xa7 </span><span class=\'hint\'>\xe7\xac\xac47\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe6\x96\xb0\xe4\xb8\x96\xe7\x95\x8c(\xe7\x94\xb5\xe8\xa7\x86\xe5\x89\xa7)</span> <span class=\'s2\'>6.0</span></p>\r\n              <p class=\'star\'>\xe5\xad\x99\xe7\xba\xa2\xe9\x9b\xb7,\xe5\xbc\xa0\xe9\xb2\x81\xe4\xb8\x80,\xe5\xb0\xb9\xe6\x98\x89,\xe4\xb8\x87\xe8\x8c\x9c,\xe6\x9d\x8e\xe7\xba\xaf,\xe8\x83\xa1\xe9\x9d\x99,\xe7\xa7\xa6\xe6\xb1\x89,\xe8\xb5\xb5\xe5\xb3\xa5,\xe5\xbc\xa0\xe7\x91\xb6,\xe5\xbc\xa0\xe6\x99\x94\xe5\xad\x90 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/70204.html \' title=\'\xe7\x88\xb1\xe7\x9a\x84\xe8\xbf\xab\xe9\x99\x8d\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-12/p2576301540.jpg\' alt=\'\xe7\x88\xb1\xe7\x9a\x84\xe8\xbf\xab\xe9\x99\x8d\' /> <span class=\'pay\'>\xe6\x97\xa5\xe9\x9f\xa9\xe5\x89\xa7 </span><span class=\'hint\'>\xe7\xac\xac13\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe7\x88\xb1\xe7\x9a\x84\xe8\xbf\xab\xe9\x99\x8d</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe7\x8e\x84\xe5\xbd\xac,\xe5\xad\x99\xe8\x89\xba\xe7\x8f\x8d </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/46210.html \' title=\'\xe8\xbf\xbd\xe9\xa3\x8e\xe8\xa1\x8c\xe5\x8a\xa8\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2584874304.jpg\' alt=\'\xe8\xbf\xbd\xe9\xa3\x8e\xe8\xa1\x8c\xe5\x8a\xa8\' /> <span class=\'pay\'>\xe5\x9b\xbd\xe4\xba\xa7\xe5\x89\xa7 </span><span class=\'hint\'>\xe7\xac\xac04\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe8\xbf\xbd\xe9\xa3\x8e\xe8\xa1\x8c\xe5\x8a\xa8</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe6\x9d\x8e\xe6\xb3\xb0,\xe8\x88\x92\xe7\xa0\x9a,\xe9\x99\x88\xe7\xbb\xb4\xe6\xb6\xb5,\xe6\x9e\x97\xe6\xb1\x9f\xe5\x9b\xbd </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/2264.html \' title=\'\xe5\xae\x9e\xe4\xb9\xa0\xe5\x8c\xbb\xe5\xb8\x88\xe6\x96\x97\xe6\xa0\xbc\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2018-10/1314.jpg\' alt=\'\xe5\xae\x9e\xe4\xb9\xa0\xe5\x8c\xbb\xe5\xb8\x88\xe6\x96\x97\xe6\xa0\xbc\' /> <span class=\'pay\'>\xe6\xb8\xaf\xe5\x8f\xb0\xe5\x89\xa7 </span><span class=\'hint\'>\xe7\xac\xac358\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xae\x9e\xe4\xb9\xa0\xe5\x8c\xbb\xe5\xb8\x88\xe6\x96\x97\xe6\xa0\xbc</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe5\xbc\xa0\xe6\x8d\xb7,\xe4\xbd\x99\xe7\xa7\x89\xe8\xb0\x9a,\xe5\xa4\x8f\xe5\xae\x87\xe7\xa6\xbe </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/76068.html \' title=\'\xe4\xbc\x97\xe5\x8f\xa3\xe9\x9a\xbe\xe8\xb0\x83/\xe9\x9a\xbe\xe4\xbb\xa5\xe4\xbc\xba\xe5\x80\x99\xe7\xac\xac\xe5\x9b\x9b\xe5\xad\xa3\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2581089458.jpg\' alt=\'\xe4\xbc\x97\xe5\x8f\xa3\xe9\x9a\xbe\xe8\xb0\x83/\xe9\x9a\xbe\xe4\xbb\xa5\xe4\xbc\xba\xe5\x80\x99\xe7\xac\xac\xe5\x9b\x9b\xe5\xad\xa3\' /> <span class=\'pay\'>\xe6\xac\xa7\xe7\xbe\x8e\xe5\x89\xa7 </span><span class=\'hint\'>\xe7\xac\xac01\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe4\xbc\x97\xe5\x8f\xa3\xe9\x9a\xbe\xe8\xb0\x83/\xe9\x9a\xbe\xe4\xbb\xa5\xe4\xbc\xba\xe5\x80\x99\xe7\xac\xac\xe5\x9b\x9b\xe5\xad\xa3</span> <span class=\'s2\'>7.0</span></p>\r\n              <p class=\'star\'>\xe6\x9c\xac\xc2\xb7\xe8\xbe\x9b\xe5\x85\x8b\xe8\x8e\xb1\xe5\xb0\x94 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75634.html \' title=\'\xe6\x88\x90\xe9\x95\xbf\xe4\xb8\x8d\xe5\xae\xb9\xe6\x98\x93\xe7\xac\xac\xe4\xb8\x89\xe5\xad\xa3\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2578717681.jpg\' alt=\'\xe6\x88\x90\xe9\x95\xbf\xe4\xb8\x8d\xe5\xae\xb9\xe6\x98\x93\xe7\xac\xac\xe4\xb8\x89\xe5\xad\xa3\' /> <span class=\'pay\'>\xe6\xac\xa7\xe7\xbe\x8e\xe5\x89\xa7 </span><span class=\'hint\'>\xe7\xac\xac03\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe6\x88\x90\xe9\x95\xbf\xe4\xb8\x8d\xe5\xae\xb9\xe6\x98\x93\xe7\xac\xac\xe4\xb8\x89\xe5\xad\xa3</span> <span class=\'s2\'>3.0</span></p>\r\n              <p class=\'star\'>,\xe9\x9b\x85\xe6\x8b\x89\xc2\xb7\xe6\xb2\x99\xe5\xb8\x8c\xe8\xbf\xaa,\xe5\xbe\xb7\xe7\xbf\x81\xc2\xb7\xe7\xa7\x91\xe5\xb0\x94,\xe7\x89\xb9\xe9\x9b\xb7\xe6\xb2\x83\xc2\xb7\xe6\x9d\xb0\xe5\x85\x8b\xe9\x80\x8a </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75300.html \' title=\'\xe5\xb0\x96\xe9\x94\x8b\xe4\xb9\x8b\xe7\x83\x88\xe7\x84\xb0\xe9\x9d\x92\xe6\x98\xa5\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2393803518.jpg\' alt=\'\xe5\xb0\x96\xe9\x94\x8b\xe4\xb9\x8b\xe7\x83\x88\xe7\x84\xb0\xe9\x9d\x92\xe6\x98\xa5\' /> <span class=\'pay\'>\xe5\x9b\xbd\xe4\xba\xa7\xe5\x89\xa7 </span><span class=\'hint\'>\xe7\xac\xac20\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xb0\x96\xe9\x94\x8b\xe4\xb9\x8b\xe7\x83\x88\xe7\x84\xb0\xe9\x9d\x92\xe6\x98\xa5</span> <span class=\'s2\'>5.0</span></p>\r\n              <p class=\'star\'>\xe5\xae\x8b\xe8\xbd\xb6,\xe6\x9d\x8e\xe4\xbd\xb3\xe8\x88\xaa,\xe7\x89\x9b\xe9\xaa\x8f\xe5\xb3\xb0,\xe5\xad\x99\xe6\xb4\xaa\xe6\xb6\x9b </p>\r\n            </div>\r\n            </a></li>\r\n                  </ul>\r\n      </div>\r\n    </div>\r\n  </div>\r\n  <div class="hot_film">\r\n    <div class="single-strong">\xe8\xbf\x9e\xe7\xbb\xad\xe5\x89\xa7\xe6\x8e\x92\xe8\xa1\x8c\xe6\xa6\x9c</div>\r\n\t  \r\n\t  \t  \r\n\t   <div class="hot_film_list">\r\n\t\t\t\t<a href="/index.php/vod/detail/id/76026.html "><span class=" Serial_number">1</span><span class="vodname">\xe5\xa4\xa7\xe5\x95\x86\xe9\x81\x93/\xe4\xba\x91\xe9\xa3\x9e\xe4\xb8\x9d\xe8\xb7\xaf\xe5\xa4\xa9</span><span class="list_score">4.0</span></a> \t\t<a href="/index.php/vod/detail/id/75895.html "><span class=" Serial_number">2</span><span class="vodname">\xe5\xb9\xb8\xe7\xa6\x8f\xe9\x99\xa2\xe4\xb9\x8b\xe8\x80\x81\xe6\x9c\x89\xe6\x89\x80\xe5\xae\x89</span><span class="list_score">9.0</span></a> \t\t<a href="/index.php/vod/detail/id/73561.html "><span class=" Serial_number">3</span><span class="vodname">\xe6\x96\xb0\xe4\xb8\x96\xe7\x95\x8c(\xe7\x94\xb5\xe8\xa7\x86\xe5\x89\xa7)</span><span class="list_score">6.0</span></a> \t\t<a href="/index.php/vod/detail/id/46210.html "><span class=" Serial_numberh ">4</span><span class="vodname">\xe8\xbf\xbd\xe9\xa3\x8e\xe8\xa1\x8c\xe5\x8a\xa8</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/75300.html "><span class=" Serial_numberh ">5</span><span class="vodname">\xe5\xb0\x96\xe9\x94\x8b\xe4\xb9\x8b\xe7\x83\x88\xe7\x84\xb0\xe9\x9d\x92\xe6\x98\xa5</span><span class="list_score">5.0</span></a> \t\t<a href="/index.php/vod/detail/id/75129.html "><span class=" Serial_numberh ">6</span><span class="vodname">\xe5\x8c\x97\xe7\x81\xb5\xe5\xb0\x91\xe5\xb9\xb4\xe5\xbf\x97\xe4\xb9\x8b\xe5\xa4\xa7\xe4\xb8\xbb\xe5\xae\xb0</span><span class="list_score">6.0</span></a> \t\t<a href="/index.php/vod/detail/id/74475.html "><span class=" Serial_numberh ">7</span><span class="vodname">\xe4\xb8\x89\xe7\x94\x9f\xe4\xb8\x89\xe4\xb8\x96\xe6\x9e\x95\xe4\xb8\x8a\xe4\xb9\xa6</span><span class="list_score">4.0</span></a> \t\t<a href="/index.php/vod/detail/id/554.html "><span class=" Serial_numberh ">8</span><span class="vodname">\xe4\xba\x91\xe5\xb7\x85\xe4\xb9\x8b\xe4\xb8\x8a\xe7\xac\xac\xe4\xb8\x80\xe9\x83\xa8</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/553.html "><span class=" Serial_numberh ">9</span><span class="vodname">\xe4\xba\x91\xe5\xb7\x85\xe4\xb9\x8b\xe4\xb8\x8a\xe7\xac\xac\xe4\xba\x8c\xe9\x83\xa8</span><span class="list_score">0.0</span></a> \t  </div>\r\n    <div class="single-strong">\xe7\x83\xad\xe6\x92\xad\xe8\xbf\x9e\xe7\xbb\xad\xe5\x89\xa7</div>\r\n    <div class="hot_film_list">\r\n\t\t\t\t<a href="/index.php/vod/detail/id/76026.html "><span class="Serial_number"">1</span><span class="vodname">\xe5\xa4\xa7\xe5\x95\x86\xe9\x81\x93/\xe4\xba\x91\xe9\xa3\x9e\xe4\xb8\x9d\xe8\xb7\xaf\xe5\xa4\xa9</span><span class="list_score">4.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/75895.html "><span class="Serial_number"">2</span><span class="vodname">\xe5\xb9\xb8\xe7\xa6\x8f\xe9\x99\xa2\xe4\xb9\x8b\xe8\x80\x81\xe6\x9c\x89\xe6\x89\x80\xe5\xae\x89</span><span class="list_score">9.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/73561.html "><span class="Serial_number"">3</span><span class="vodname">\xe6\x96\xb0\xe4\xb8\x96\xe7\x95\x8c(\xe7\x94\xb5\xe8\xa7\x86\xe5\x89\xa7)</span><span class="list_score">6.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/46210.html "><span class="Serial_numberh "">4</span><span class="vodname">\xe8\xbf\xbd\xe9\xa3\x8e\xe8\xa1\x8c\xe5\x8a\xa8</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/75300.html "><span class="Serial_numberh "">5</span><span class="vodname">\xe5\xb0\x96\xe9\x94\x8b\xe4\xb9\x8b\xe7\x83\x88\xe7\x84\xb0\xe9\x9d\x92\xe6\x98\xa5</span><span class="list_score">5.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/75129.html "><span class="Serial_numberh "">6</span><span class="vodname">\xe5\x8c\x97\xe7\x81\xb5\xe5\xb0\x91\xe5\xb9\xb4\xe5\xbf\x97\xe4\xb9\x8b\xe5\xa4\xa7\xe4\xb8\xbb\xe5\xae\xb0</span><span class="list_score">6.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/74475.html "><span class="Serial_numberh "">7</span><span class="vodname">\xe4\xb8\x89\xe7\x94\x9f\xe4\xb8\x89\xe4\xb8\x96\xe6\x9e\x95\xe4\xb8\x8a\xe4\xb9\xa6</span><span class="list_score">4.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/554.html "><span class="Serial_numberh "">8</span><span class="vodname">\xe4\xba\x91\xe5\xb7\x85\xe4\xb9\x8b\xe4\xb8\x8a\xe7\xac\xac\xe4\xb8\x80\xe9\x83\xa8</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/553.html "><span class="Serial_numberh "">9</span><span class="vodname">\xe4\xba\x91\xe5\xb7\x85\xe4\xb9\x8b\xe4\xb8\x8a\xe7\xac\xac\xe4\xba\x8c\xe9\x83\xa8</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t  </div>\r\n\t  \r\n\t     \r\n  </div>\r\n    <div class="Film_list">\r\n    <div class="single-strong">\xe6\x9c\x80\xe6\x96\xb0\xe7\xbb\xbc\xe8\x89\xba <span class="chak"><a href="/index.php/vod/type/id/3.html ">\xe6\x9f\xa5\xe7\x9c\x8b\xe6\x9b\xb4\xe5\xa4\x9a</a></span></div>\r\n    <div class="b-listtab-main">\r\n      <div class="s-tab-main">\r\n        <ul class="list g-clear">\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/76069.html \' title=\'2020\xe6\xb9\x96\xe5\x8d\x97\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe4\xb8\x80\xe5\xae\xb6\xe4\xba\xb2\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/20202822554534827.png\' alt=\'2020\xe6\xb9\x96\xe5\x8d\x97\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe4\xb8\x80\xe5\xae\xb6\xe4\xba\xb2\' /> <span class=\'pay\'>\xe7\xbb\xbc\xe8\x89\xba </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>2020\xe6\xb9\x96\xe5\x8d\x97\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe4\xb8\x80\xe5\xae\xb6\xe4\xba\xb2</span> <span class=\'s2\'>2.0</span></p>\r\n              <p class=\'star\'>\xe4\xbd\x95\xe7\x82\x85,\xe6\xb1\xaa\xe6\xb6\xb5,\xe6\xb2\x88\xe6\xa2\xa6\xe8\xbe\xb0,\xe6\xa2\x81\xe7\x94\xb0 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/76025.html \' title=\'2020\xe4\xb8\x9c\xe6\x96\xb9\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe7\x89\xb9\xe5\x88\xab\xe8\x8a\x82\xe7\x9b\xae\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/20202823153184907.png\' alt=\'2020\xe4\xb8\x9c\xe6\x96\xb9\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe7\x89\xb9\xe5\x88\xab\xe8\x8a\x82\xe7\x9b\xae\' /> <span class=\'pay\'>\xe7\xbb\xbc\xe8\x89\xba </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>2020\xe4\xb8\x9c\xe6\x96\xb9\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe7\x89\xb9\xe5\x88\xab\xe8\x8a\x82\xe7\x9b\xae</span> <span class=\'s2\'>4.0</span></p>\r\n              <p class=\'star\'>\xe6\x9b\xb9\xe5\x8f\xaf\xe5\x87\xa1,\xe9\x99\x88\xe8\x93\x89,\xe6\x9e\x97\xe6\xb5\xb7,\xe9\xa9\xac\xe6\x9d\xb0 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/76028.html \' title=\'2020\xe5\xae\x89\xe5\xbe\xbd\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe6\x99\x9a\xe4\xbc\x9a\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/2020291153049595.png\' alt=\'2020\xe5\xae\x89\xe5\xbe\xbd\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe6\x99\x9a\xe4\xbc\x9a\' /> <span class=\'pay\'>\xe7\xbb\xbc\xe8\x89\xba </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>2020\xe5\xae\x89\xe5\xbe\xbd\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe6\x99\x9a\xe4\xbc\x9a</span> <span class=\'s2\'>8.0</span></p>\r\n              <p class=\'star\'>\xe4\xbb\xbb\xe8\x89\xaf\xe9\x9f\xb5,\xe7\x8e\x8b\xe5\xb0\x8f\xe5\xb7\x9d,\xe9\xa9\xac\xe6\xbb\xa2,\xe5\x91\xa8\xe7\xbe\xa4,\xe9\x98\xbf\xe8\xbf\x9b,\xe5\xbc\xa0\xe4\xba\x9a\xe7\xbe\xa4,\xe5\x90\xb4\xe8\xa8\x80,\xe7\x8e\x8b\xe4\xb9\x90\xe4\xb9\x90,\xe9\x9f\xa9\xe9\x9c\xb2 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/76027.html \' title=\'2020\xe5\xa4\xae\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe7\x89\xb9\xe5\x88\xab\xe8\x8a\x82\xe7\x9b\xae\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/2020290481832553.png\' alt=\'2020\xe5\xa4\xae\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe7\x89\xb9\xe5\x88\xab\xe8\x8a\x82\xe7\x9b\xae\' /> <span class=\'pay\'>\xe7\xbb\xbc\xe8\x89\xba </span><span class=\'hint\'>HD</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>2020\xe5\xa4\xae\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe7\x89\xb9\xe5\x88\xab\xe8\x8a\x82\xe7\x9b\xae</span> <span class=\'s2\'>3.0</span></p>\r\n              <p class=\'star\'>\xe4\xbb\xbb\xe9\xb2\x81\xe8\xb1\xab,\xe6\x9d\x8e\xe6\xa2\x93\xe8\x90\x8c,\xe6\x9c\xb1\xe5\xb9\xbf\xe6\x9d\x83,\xe8\x83\xa1\xe8\x9d\xb6 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75118.html \' title=\'\xe4\xb8\xad\xe5\x9b\xbd\xe8\xaf\x97\xe8\xaf\x8d\xe5\xa4\xa7\xe4\xbc\x9a\xe7\xac\xac\xe4\xba\x94\xe5\xad\xa3\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-1/p2547396672.jpg\' alt=\'\xe4\xb8\xad\xe5\x9b\xbd\xe8\xaf\x97\xe8\xaf\x8d\xe5\xa4\xa7\xe4\xbc\x9a\xe7\xac\xac\xe4\xba\x94\xe5\xad\xa3\' /> <span class=\'pay\'>\xe7\xbb\xbc\xe8\x89\xba </span><span class=\'hint\'>\xe7\xac\xac09\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe4\xb8\xad\xe5\x9b\xbd\xe8\xaf\x97\xe8\xaf\x8d\xe5\xa4\xa7\xe4\xbc\x9a\xe7\xac\xac\xe4\xba\x94\xe5\xad\xa3</span> <span class=\'s2\'>2.0</span></p>\r\n              <p class=\'star\'>\xe8\x91\xa3\xe5\x8d\xbf,\xe5\xba\xb7\xe9\x9c\x87,\xe8\x92\x99\xe6\x9b\xbc,\xe9\x83\xa6\xe6\xb3\xa2 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/71525.html \' title=\'\xe5\xa3\xb0\xe4\xb8\xb4\xe5\x85\xb6\xe5\xa2\x83\xe7\xac\xac\xe4\xb8\x89\xe5\xad\xa3\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-12/p2577740030.jpg\' alt=\'\xe5\xa3\xb0\xe4\xb8\xb4\xe5\x85\xb6\xe5\xa2\x83\xe7\xac\xac\xe4\xb8\x89\xe5\xad\xa3\' /> <span class=\'pay\'>\xe7\xbb\xbc\xe8\x89\xba </span><span class=\'hint\'>\xe7\xac\xac20200208\xe6\x9c\x9f</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xa3\xb0\xe4\xb8\xb4\xe5\x85\xb6\xe5\xa2\x83\xe7\xac\xac\xe4\xb8\x89\xe5\xad\xa3</span> <span class=\'s2\'>10.0</span></p>\r\n              <p class=\'star\'>\xe5\x91\xa8\xe6\xb6\x9b,\xe6\x9d\x9c\xe6\xb5\xb7\xe6\xb6\x9b,\xe6\xb2\x88\xe6\xa2\xa6\xe8\xbe\xb0,\xe4\xbd\x95\xe5\x86\xb0,\xe8\x83\xa1\xe5\x86\x9b,\xe9\x9f\xa9\xe9\x9b\xaa,\xe7\x8e\x8b\xe8\x80\x80\xe5\xba\x86,\xe7\xa7\xa6\xe4\xbf\x8a\xe6\x9d\xb0,\xe4\xbf\x9e\xe7\x81\x8f\xe6\x98\x8e,\xe8\xb4\xbe\xe4\xb9\x83\xe4\xba\xae,\xe6\xbd\x98\xe6\x96\x8c\xe9\xbe\x99 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/62020.html \' title=\'\xe5\x9d\x91\xe7\x8e\x8b\xe9\xa9\xbe\xe5\x88\xb0\xe7\xac\xac\xe5\x9b\x9b\xe5\xad\xa3\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-9/201991421442358858.jpg\' alt=\'\xe5\x9d\x91\xe7\x8e\x8b\xe9\xa9\xbe\xe5\x88\xb0\xe7\xac\xac\xe5\x9b\x9b\xe5\xad\xa3\' /> <span class=\'pay\'>\xe7\xbb\xbc\xe8\x89\xba </span><span class=\'hint\'>\xe8\xbf\x9e\xe8\xbd\xbd\xe8\x87\xb320200208\xe6\x9c\x9f</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x9d\x91\xe7\x8e\x8b\xe9\xa9\xbe\xe5\x88\xb0\xe7\xac\xac\xe5\x9b\x9b\xe5\xad\xa3</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe9\x83\xad\xe5\xbe\xb7\xe7\xba\xb2 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/6115.html \' title=\'\xe5\xbf\xab\xe4\xb9\x90\xe5\xa4\xa7\xe6\x9c\xac\xe8\x90\xa5\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2018-3/3110.jpg\' alt=\'\xe5\xbf\xab\xe4\xb9\x90\xe5\xa4\xa7\xe6\x9c\xac\xe8\x90\xa5\' /> <span class=\'pay\'>\xe7\xbb\xbc\xe8\x89\xba </span><span class=\'hint\'>\xe8\xbf\x9e\xe8\xbd\xbd\xe8\x87\xb320200208\xe6\x9c\x9f</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xbf\xab\xe4\xb9\x90\xe5\xa4\xa7\xe6\x9c\xac\xe8\x90\xa5</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe4\xbd\x95\xe7\x82\x85,\xe8\xb0\xa2\xe5\xa8\x9c,\xe6\x9d\x8e\xe7\xbb\xb4\xe5\x98\x89,\xe5\x90\xb4\xe6\x98\x95,\xe6\x9d\x9c\xe6\xb5\xb7\xe6\xb6\x9b </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/6127.html \' title=\'\xe8\xb6\x85\xe7\xba\xa7\xe5\xa4\x9c\xe6\x80\xbb\xe4\xbc\x9a\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-12/2620.jpg\' alt=\'\xe8\xb6\x85\xe7\xba\xa7\xe5\xa4\x9c\xe6\x80\xbb\xe4\xbc\x9a\' /> <span class=\'pay\'>\xe7\xbb\xbc\xe8\x89\xba </span><span class=\'hint\'>\xe8\xbf\x9e\xe8\xbd\xbd\xe8\x87\xb320191207\xe6\x9c\x9f</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe8\xb6\x85\xe7\xba\xa7\xe5\xa4\x9c\xe6\x80\xbb\xe4\xbc\x9a</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe6\xbe\x8e\xe6\x81\xb0\xe6\x81\xb0,\xe8\xae\xb8\xe6\x95\x88\xe8\x88\x9c </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/74347.html \' title=\'\xe5\xa4\xa9\xe5\xa4\xa9\xe5\xbc\x80\xe8\xbf\x90\xe7\x8e\x8b\xe7\xb2\xa4\xe8\xaf\xad\xe7\x89\x88\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-1/20201219205576629.png\' alt=\'\xe5\xa4\xa9\xe5\xa4\xa9\xe5\xbc\x80\xe8\xbf\x90\xe7\x8e\x8b\xe7\xb2\xa4\xe8\xaf\xad\xe7\x89\x88\' /> <span class=\'pay\'>\xe7\xbb\xbc\xe8\x89\xba </span><span class=\'hint\'>\xe7\xac\xac15\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xa4\xa9\xe5\xa4\xa9\xe5\xbc\x80\xe8\xbf\x90\xe7\x8e\x8b\xe7\xb2\xa4\xe8\xaf\xad\xe7\x89\x88</span> <span class=\'s2\'>3.0</span></p>\r\n              <p class=\'star\'>\xe8\x96\x9b\xe5\xae\xb6\xe7\x87\x95,\xe9\xbb\x8e\xe8\xab\xbe\xe6\x87\xbf,\xe9\xbb\x83\xe7\xa5\xa5\xe8\x88\x88,, </p>\r\n            </div>\r\n            </a></li>\r\n                  </ul>\r\n      </div>\r\n    </div>\r\n  </div>\r\n  <div class="hot_film">\r\n    <div class="single-strong">\xe7\xbb\xbc\xe8\x89\xba\xe6\x8e\x92\xe8\xa1\x8c\xe6\xa6\x9c</div>\r\n\t  \r\n\t  \t  \r\n\t   <div class="hot_film_list">\r\n\t\t\t\t<a href="/index.php/vod/detail/id/76069.html "><span class=" Serial_number">1</span><span class="vodname">2020\xe6\xb9\x96\xe5\x8d\x97\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe4\xb8\x80\xe5\xae\xb6\xe4\xba\xb2</span><span class="list_score">2.0</span></a> \t\t<a href="/index.php/vod/detail/id/76025.html "><span class=" Serial_number">2</span><span class="vodname">2020\xe4\xb8\x9c\xe6\x96\xb9\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe7\x89\xb9\xe5\x88\xab\xe8\x8a\x82\xe7\x9b\xae</span><span class="list_score">4.0</span></a> \t\t<a href="/index.php/vod/detail/id/76028.html "><span class=" Serial_number">3</span><span class="vodname">2020\xe5\xae\x89\xe5\xbe\xbd\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe6\x99\x9a\xe4\xbc\x9a</span><span class="list_score">8.0</span></a> \t\t<a href="/index.php/vod/detail/id/76027.html "><span class=" Serial_numberh ">4</span><span class="vodname">2020\xe5\xa4\xae\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe7\x89\xb9\xe5\x88\xab\xe8\x8a\x82\xe7\x9b\xae</span><span class="list_score">3.0</span></a> \t\t<a href="/index.php/vod/detail/id/75118.html "><span class=" Serial_numberh ">5</span><span class="vodname">\xe4\xb8\xad\xe5\x9b\xbd\xe8\xaf\x97\xe8\xaf\x8d\xe5\xa4\xa7\xe4\xbc\x9a\xe7\xac\xac\xe4\xba\x94\xe5\xad\xa3</span><span class="list_score">2.0</span></a> \t\t<a href="/index.php/vod/detail/id/71525.html "><span class=" Serial_numberh ">6</span><span class="vodname">\xe5\xa3\xb0\xe4\xb8\xb4\xe5\x85\xb6\xe5\xa2\x83\xe7\xac\xac\xe4\xb8\x89\xe5\xad\xa3</span><span class="list_score">10.0</span></a> \t\t<a href="/index.php/vod/detail/id/62020.html "><span class=" Serial_numberh ">7</span><span class="vodname">\xe5\x9d\x91\xe7\x8e\x8b\xe9\xa9\xbe\xe5\x88\xb0\xe7\xac\xac\xe5\x9b\x9b\xe5\xad\xa3</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/6115.html "><span class=" Serial_numberh ">8</span><span class="vodname">\xe5\xbf\xab\xe4\xb9\x90\xe5\xa4\xa7\xe6\x9c\xac\xe8\x90\xa5</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/6127.html "><span class=" Serial_numberh ">9</span><span class="vodname">\xe8\xb6\x85\xe7\xba\xa7\xe5\xa4\x9c\xe6\x80\xbb\xe4\xbc\x9a</span><span class="list_score">0.0</span></a> \t  </div>\r\n    <div class="single-strong">\xe7\x83\xad\xe6\x92\xad\xe7\xbb\xbc\xe8\x89\xba</div>\r\n    <div class="hot_film_list">\r\n\t\t\t\t<a href="/index.php/vod/detail/id/76069.html "><span class="Serial_number"">1</span><span class="vodname">2020\xe6\xb9\x96\xe5\x8d\x97\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe4\xb8\x80\xe5\xae\xb6\xe4\xba\xb2</span><span class="list_score">2.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/76025.html "><span class="Serial_number"">2</span><span class="vodname">2020\xe4\xb8\x9c\xe6\x96\xb9\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe7\x89\xb9\xe5\x88\xab\xe8\x8a\x82\xe7\x9b\xae</span><span class="list_score">4.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/76028.html "><span class="Serial_number"">3</span><span class="vodname">2020\xe5\xae\x89\xe5\xbe\xbd\xe5\x8d\xab\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe6\x99\x9a\xe4\xbc\x9a</span><span class="list_score">8.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/76027.html "><span class="Serial_numberh "">4</span><span class="vodname">2020\xe5\xa4\xae\xe8\xa7\x86\xe5\x85\x83\xe5\xae\xb5\xe7\x89\xb9\xe5\x88\xab\xe8\x8a\x82\xe7\x9b\xae</span><span class="list_score">3.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/75118.html "><span class="Serial_numberh "">5</span><span class="vodname">\xe4\xb8\xad\xe5\x9b\xbd\xe8\xaf\x97\xe8\xaf\x8d\xe5\xa4\xa7\xe4\xbc\x9a\xe7\xac\xac\xe4\xba\x94\xe5\xad\xa3</span><span class="list_score">2.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/71525.html "><span class="Serial_numberh "">6</span><span class="vodname">\xe5\xa3\xb0\xe4\xb8\xb4\xe5\x85\xb6\xe5\xa2\x83\xe7\xac\xac\xe4\xb8\x89\xe5\xad\xa3</span><span class="list_score">10.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/62020.html "><span class="Serial_numberh "">7</span><span class="vodname">\xe5\x9d\x91\xe7\x8e\x8b\xe9\xa9\xbe\xe5\x88\xb0\xe7\xac\xac\xe5\x9b\x9b\xe5\xad\xa3</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/6115.html "><span class="Serial_numberh "">8</span><span class="vodname">\xe5\xbf\xab\xe4\xb9\x90\xe5\xa4\xa7\xe6\x9c\xac\xe8\x90\xa5</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/6127.html "><span class="Serial_numberh "">9</span><span class="vodname">\xe8\xb6\x85\xe7\xba\xa7\xe5\xa4\x9c\xe6\x80\xbb\xe4\xbc\x9a</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t  </div>\r\n\t  \r\n\t     \r\n  </div>\r\n    <div class="Film_list">\r\n    <div class="single-strong">\xe6\x9c\x80\xe6\x96\xb0\xe5\x8a\xa8\xe6\xbc\xab <span class="chak"><a href="/index.php/vod/type/id/4.html ">\xe6\x9f\xa5\xe7\x9c\x8b\xe6\x9b\xb4\xe5\xa4\x9a</a></span></div>\r\n    <div class="b-listtab-main">\r\n      <div class="s-tab-main">\r\n        <ul class="list g-clear">\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/73441.html \' title=\'22/7\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-1/p2575564056.jpg\' alt=\'22/7\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe6\xbc\xab </span><span class=\'hint\'>\xe7\xac\xac5\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>22/7</span> <span class=\'s2\'>5.0</span></p>\r\n              <p class=\'star\'>\xe8\xa5\xbf\xe6\x9d\xa1\xe5\x92\x8c,\xe5\xa4\xa9\xe5\x9f\x8e\xe8\x8e\x8e\xe8\x8e\x89,\xe4\xbb\x93\xe5\x86\x88\xe6\xb0\xb4\xe5\xb7\xb4,\xe5\xb8\x86\xe9\xa3\x8e\xe5\x8d\x83\xe6\x98\xa5,\xe6\xb5\xb7\xe4\xb9\x83\xe7\x90\x89\xe7\x92\x83,\xe7\x99\xbd\xe6\xb3\xbd\xe5\x8a\xa0\xe5\xa5\x88\xe6\x83\xa0,\xe5\xae\xab\xe6\xbf\x91\xe7\x8e\xb2\xe5\xa5\x88,\xe8\x8a\xb1\xe5\xb7\x9d\xe8\x8a\xbd\xe8\xa1\xa3 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/73132.html \' title=\'\xe6\x9a\x97\xe9\xbb\x91\xe7\xa0\xb4\xe5\x9d\x8f\xe7\xa5\x9e\xe5\x9c\xa8\xe8\xba\xab\xe8\xbe\xb9\xe3\x80\x82\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-1/p2562773343.jpg\' alt=\'\xe6\x9a\x97\xe9\xbb\x91\xe7\xa0\xb4\xe5\x9d\x8f\xe7\xa5\x9e\xe5\x9c\xa8\xe8\xba\xab\xe8\xbe\xb9\xe3\x80\x82\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe6\xbc\xab </span><span class=\'hint\'>\xe7\xac\xac05\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe6\x9a\x97\xe9\xbb\x91\xe7\xa0\xb4\xe5\x9d\x8f\xe7\xa5\x9e\xe5\x9c\xa8\xe8\xba\xab\xe8\xbe\xb9\xe3\x80\x82</span> <span class=\'s2\'>9.0</span></p>\r\n              <p class=\'star\'> </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/64229.html \' title=\'\xe5\x91\xbd\xe8\xbf\x90-\xe5\x86\xa0\xe4\xbd\x8d\xe6\x8c\x87\xe5\xae\x9a \xe7\xbb\x9d\xe5\xaf\xb9\xe9\xad\x94\xe5\x85\xbd\xe6\x88\x98\xe7\xba\xbf\xe5\xb7\xb4\xe6\xaf\x94\xe4\xbc\xa6\xe5\xb0\xbc\xe4\xba\x9a\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-10/201910621511926428.jpg\' alt=\'\xe5\x91\xbd\xe8\xbf\x90-\xe5\x86\xa0\xe4\xbd\x8d\xe6\x8c\x87\xe5\xae\x9a \xe7\xbb\x9d\xe5\xaf\xb9\xe9\xad\x94\xe5\x85\xbd\xe6\x88\x98\xe7\xba\xbf\xe5\xb7\xb4\xe6\xaf\x94\xe4\xbc\xa6\xe5\xb0\xbc\xe4\xba\x9a\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe6\xbc\xab </span><span class=\'hint\'>\xe7\xac\xac16\xe9\x9b\x86+\xe6\x80\xbb\xe9\x9b\x86\xe7\xaf\x873</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x91\xbd\xe8\xbf\x90-\xe5\x86\xa0\xe4\xbd\x8d\xe6\x8c\x87\xe5\xae\x9a \xe7\xbb\x9d\xe5\xaf\xb9\xe9\xad\x94\xe5\x85\xbd\xe6\x88\x98\xe7\xba\xbf\xe5\xb7\xb4\xe6\xaf\x94\xe4\xbc\xa6\xe5\xb0\xbc\xe4\xba\x9a</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe5\xb2\x9b\xe5\xb4\x8e\xe4\xbf\xa1\xe9\x95\xbf,\xe9\xab\x98\xe6\xa1\xa5\xe6\x9d\x8e\xe4\xbe\x9d,\xe5\xb7\x9d\xe6\xbe\x84\xe7\xbb\xab\xe5\xad\x90,\xe9\x93\x83\xe6\x9d\x91\xe5\x81\xa5\xe4\xb8\x80,\xe5\x9d\x82\xe6\x9c\xac\xe7\x9c\x9f\xe7\xbb\xab </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/64077.html \' title=\'\xe5\x85\xa5\xe9\x97\xb4\xe5\x90\x8c\xe5\xad\xa6\xe5\x85\xa5\xe9\xad\x94\xe4\xba\x86\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2019-10/201910523221247552.jpg\' alt=\'\xe5\x85\xa5\xe9\x97\xb4\xe5\x90\x8c\xe5\xad\xa6\xe5\x85\xa5\xe9\xad\x94\xe4\xba\x86\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe6\xbc\xab </span><span class=\'hint\'>\xe7\xac\xac19\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\x85\xa5\xe9\x97\xb4\xe5\x90\x8c\xe5\xad\xa6\xe5\x85\xa5\xe9\xad\x94\xe4\xba\x86</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe6\x9d\x91\xe6\xbf\x91\xe6\xad\xa5,\xe6\x9c\xa8\xe6\x9d\x91\xe8\x89\xaf\xe5\xb9\xb3,\xe6\x9c\x9d\xe4\xba\x95\xe5\xbd\xa9\xe5\x8a\xa0,\xe6\x97\xa9\xe8\xa7\x81\xe6\xb2\x99\xe7\xbb\x87,\xe5\xb0\x8f\xe9\x87\x8e\xe5\xa4\xa7\xe8\xbe\x85,\xe4\xbd\x90\xe8\x97\xa4\xe6\x8b\x93\xe4\xb9\x9f,\xe9\xbb\x91\xe7\x94\xb0\xe5\xb4\x87\xe7\x9f\xa2,\xe6\x96\x8b\xe8\xb4\xba\xe5\x85\x89\xe5\xb8\x8c,\xe4\xb8\x9c\xe5\xb1\xb1\xe5\xa5\x88\xe5\xa4\xae </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/22738.html \' title=\'\xe7\x91\x9e\xe5\xa5\x87\xe5\x92\x8c\xe8\x8e\xab\xe8\xbf\xaa\xe7\xac\xac\xe4\xba\x8c\xe5\xad\xa3\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2017-11/3383.jpg\' alt=\'\xe7\x91\x9e\xe5\xa5\x87\xe5\x92\x8c\xe8\x8e\xab\xe8\xbf\xaa\xe7\xac\xac\xe4\xba\x8c\xe5\xad\xa3\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe6\xbc\xab </span><span class=\'hint\'>\xe7\xac\xac10\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe7\x91\x9e\xe5\xa5\x87\xe5\x92\x8c\xe8\x8e\xab\xe8\xbf\xaa\xe7\xac\xac\xe4\xba\x8c\xe5\xad\xa3</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe8\xb4\xbe\xe6\x96\xaf\xe6\xb1\x80\xc2\xb7\xe7\xbd\x97\xe5\x85\xb0,\xe5\x85\x8b\xe9\x87\x8c\xe6\x96\xaf\xc2\xb7\xe5\xb8\x95\xe5\x86\x85\xe5\xb0\x94,\xe6\x96\xaf\xe5\xae\xbe\xe7\x91\x9f\xc2\xb7\xe6\xa0\xbc\xe6\x8b\x89\xe9\xbb\x98,\xe8\x90\xa8\xe6\x8b\x89\xc2\xb7\xe4\xb9\x94\xe5\x85\x8b,\xe7\xa7\x91\xe7\x94\x98-\xe8\xbf\x88\xe5\x85\x8b\xe5\xb0\x94\xc2\xb7\xe5\x87\xaf </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/22737.html \' title=\'\xe7\x91\x9e\xe5\xa5\x87\xe5\x92\x8c\xe8\x8e\xab\xe8\xbf\xaa\xe7\xac\xac\xe4\xb8\x80\xe5\xad\xa3\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2017-11/3382.jpg\' alt=\'\xe7\x91\x9e\xe5\xa5\x87\xe5\x92\x8c\xe8\x8e\xab\xe8\xbf\xaa\xe7\xac\xac\xe4\xb8\x80\xe5\xad\xa3\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe6\xbc\xab </span><span class=\'hint\'>\xe7\xac\xac11\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe7\x91\x9e\xe5\xa5\x87\xe5\x92\x8c\xe8\x8e\xab\xe8\xbf\xaa\xe7\xac\xac\xe4\xb8\x80\xe5\xad\xa3</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe8\xb4\xbe\xe6\x96\xaf\xe6\xb1\x80\xc2\xb7\xe7\xbd\x97\xe5\x85\xb0,\xe6\xb1\xa4\xe5\xa7\x86\xc2\xb7\xe8\x82\xaf\xe5\xb0\xbc,\xe5\x85\x8b\xe9\x87\x8c\xe6\x96\xaf\xc2\xb7\xe5\xb8\x95\xe5\x86\x85\xe5\xb0\x94,\xe6\x96\xaf\xe5\xae\xbe\xe7\x91\x9f\xc2\xb7\xe6\xa0\xbc\xe6\x8b\x89\xe9\xbb\x98,\xe8\x90\xa8\xe6\x8b\x89\xc2\xb7\xe4\xb9\x94\xe5\x85\x8b </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/75372.html \' title=\'\xe4\xbd\x90\xe8\xb4\xba\xe5\x81\xb6\xe5\x83\x8f\xe6\x98\xaf\xe4\xbc\xa0\xe5\xa5\x87 \xe5\xa4\x8d\xe4\xbb\x87\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-2/p2564285963.jpg\' alt=\'\xe4\xbd\x90\xe8\xb4\xba\xe5\x81\xb6\xe5\x83\x8f\xe6\x98\xaf\xe4\xbc\xa0\xe5\xa5\x87 \xe5\xa4\x8d\xe4\xbb\x87\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe6\xbc\xab </span><span class=\'hint\'>\xe7\xac\xac04\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe4\xbd\x90\xe8\xb4\xba\xe5\x81\xb6\xe5\x83\x8f\xe6\x98\xaf\xe4\xbc\xa0\xe5\xa5\x87 \xe5\xa4\x8d\xe4\xbb\x87</span> <span class=\'s2\'>5.0</span></p>\r\n              <p class=\'star\'>\xe5\xae\xab\xe9\x87\x8e\xe7\x9c\x9f\xe5\xae\x88,\xe6\x9c\xac\xe6\xb8\xa1\xe6\x9e\xab,\xe7\xa7\x8d\xe7\x94\xb0\xe6\xa2\xa8\xe6\xb2\x99,\xe6\xb2\xb3\xe6\xbf\x91\xe8\x8c\x89\xe5\xb8\x8c </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/74400.html \' title=\'\xe4\xbb\x99\xe7\x8e\x8b\xe7\x9a\x84\xe6\x97\xa5\xe5\xb8\xb8\xe7\x94\x9f\xe6\xb4\xbb\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-1/p2547925947.jpg\' alt=\'\xe4\xbb\x99\xe7\x8e\x8b\xe7\x9a\x84\xe6\x97\xa5\xe5\xb8\xb8\xe7\x94\x9f\xe6\xb4\xbb\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe6\xbc\xab </span><span class=\'hint\'>\xe7\xac\xac07\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe4\xbb\x99\xe7\x8e\x8b\xe7\x9a\x84\xe6\x97\xa5\xe5\xb8\xb8\xe7\x94\x9f\xe6\xb4\xbb</span> <span class=\'s2\'>4.0</span></p>\r\n              <p class=\'star\'>\xe9\xbe\x99\xe5\x90\x9f,\xe8\xb0\xb7\xe6\xb1\x9f\xe5\xb1\xb1,\xe9\x92\xb1\xe7\x90\x9b,\xe6\x9d\x8e\xe7\x8e\xb2 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/6228.html \' title=\'\xe5\xb0\x91\xe5\xb9\xb4\xe9\x94\xa6\xe8\xa1\xa3\xe5\x8d\xab\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2017-11/2856.jpg\' alt=\'\xe5\xb0\x91\xe5\xb9\xb4\xe9\x94\xa6\xe8\xa1\xa3\xe5\x8d\xab\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe6\xbc\xab </span><span class=\'hint\'>\xe7\xac\xac12\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>\xe5\xb0\x91\xe5\xb9\xb4\xe9\x94\xa6\xe8\xa1\xa3\xe5\x8d\xab</span> <span class=\'s2\'>0.0</span></p>\r\n              <p class=\'star\'>\xe9\xa9\xac\xe6\xad\xa3\xe9\x98\xb3,\xe4\xb8\xbd\xe9\x98\xb3,\xe8\x8c\x83\xe5\x93\xb2\xe7\x90\x9b,\xe5\xae\x9d\xe6\x9c\xa8\xe4\xb8\xad\xe9\x98\xb3 </p>\r\n            </div>\r\n            </a></li>\r\n                    <li class=\'item\'><a class=\'js-tongjic\' href=\'/index.php/vod/detail/id/74399.html \' title=\'Lily\'>\r\n            <div class=\'cover g-playicon\'> <img src=\'https://img.kuyun88.com/pic/uploadimg/2020-1/202012115334734956.jpg\' alt=\'Lily\' /> <span class=\'pay\'>\xe5\x8a\xa8\xe6\xbc\xab </span><span class=\'hint\'>\xe7\xac\xac09\xe9\x9b\x86</span> </div>\r\n            <div class=\'detail\'>\r\n              <p class=\'title g-clear\'> <span class=\'s1\'>Lily</span> <span class=\'s2\'>6.0</span></p>\r\n              <p class=\'star\'>\xe5\x86\x85\xe8\xaf\xa6 </p>\r\n            </div>\r\n            </a></li>\r\n                  </ul>\r\n      </div>\r\n    </div>\r\n  </div>\r\n  <div class="hot_film">\r\n    <div class="single-strong">\xe5\x8a\xa8\xe6\xbc\xab\xe6\x8e\x92\xe8\xa1\x8c\xe6\xa6\x9c</div>\r\n\t  \r\n\t  \t  \r\n\t   <div class="hot_film_list">\r\n\t\t\t\t<a href="/index.php/vod/detail/id/73441.html "><span class=" Serial_number">1</span><span class="vodname">22/7</span><span class="list_score">5.0</span></a> \t\t<a href="/index.php/vod/detail/id/73132.html "><span class=" Serial_number">2</span><span class="vodname">\xe6\x9a\x97\xe9\xbb\x91\xe7\xa0\xb4\xe5\x9d\x8f\xe7\xa5\x9e\xe5\x9c\xa8\xe8\xba\xab\xe8\xbe\xb9\xe3\x80\x82</span><span class="list_score">9.0</span></a> \t\t<a href="/index.php/vod/detail/id/64229.html "><span class=" Serial_number">3</span><span class="vodname">\xe5\x91\xbd\xe8\xbf\x90-\xe5\x86\xa0\xe4\xbd\x8d\xe6\x8c\x87\xe5\xae\x9a \xe7\xbb\x9d\xe5\xaf\xb9\xe9\xad\x94\xe5\x85\xbd\xe6\x88\x98\xe7\xba\xbf\xe5\xb7\xb4\xe6\xaf\x94\xe4\xbc\xa6\xe5\xb0\xbc\xe4\xba\x9a</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/64077.html "><span class=" Serial_numberh ">4</span><span class="vodname">\xe5\x85\xa5\xe9\x97\xb4\xe5\x90\x8c\xe5\xad\xa6\xe5\x85\xa5\xe9\xad\x94\xe4\xba\x86</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/22738.html "><span class=" Serial_numberh ">5</span><span class="vodname">\xe7\x91\x9e\xe5\xa5\x87\xe5\x92\x8c\xe8\x8e\xab\xe8\xbf\xaa\xe7\xac\xac\xe4\xba\x8c\xe5\xad\xa3</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/22737.html "><span class=" Serial_numberh ">6</span><span class="vodname">\xe7\x91\x9e\xe5\xa5\x87\xe5\x92\x8c\xe8\x8e\xab\xe8\xbf\xaa\xe7\xac\xac\xe4\xb8\x80\xe5\xad\xa3</span><span class="list_score">0.0</span></a> \t\t<a href="/index.php/vod/detail/id/75372.html "><span class=" Serial_numberh ">7</span><span class="vodname">\xe4\xbd\x90\xe8\xb4\xba\xe5\x81\xb6\xe5\x83\x8f\xe6\x98\xaf\xe4\xbc\xa0\xe5\xa5\x87 \xe5\xa4\x8d\xe4\xbb\x87</span><span class="list_score">5.0</span></a> \t\t<a href="/index.php/vod/detail/id/74400.html "><span class=" Serial_numberh ">8</span><span class="vodname">\xe4\xbb\x99\xe7\x8e\x8b\xe7\x9a\x84\xe6\x97\xa5\xe5\xb8\xb8\xe7\x94\x9f\xe6\xb4\xbb</span><span class="list_score">4.0</span></a> \t\t<a href="/index.php/vod/detail/id/6228.html "><span class=" Serial_numberh ">9</span><span class="vodname">\xe5\xb0\x91\xe5\xb9\xb4\xe9\x94\xa6\xe8\xa1\xa3\xe5\x8d\xab</span><span class="list_score">0.0</span></a> \t  </div>\r\n    <div class="single-strong">\xe7\x83\xad\xe6\x92\xad\xe5\x8a\xa8\xe6\xbc\xab</div>\r\n    <div class="hot_film_list">\r\n\t\t\t\t<a href="/index.php/vod/detail/id/73441.html "><span class="Serial_number"">1</span><span class="vodname">22/7</span><span class="list_score">5.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/73132.html "><span class="Serial_number"">2</span><span class="vodname">\xe6\x9a\x97\xe9\xbb\x91\xe7\xa0\xb4\xe5\x9d\x8f\xe7\xa5\x9e\xe5\x9c\xa8\xe8\xba\xab\xe8\xbe\xb9\xe3\x80\x82</span><span class="list_score">9.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/64229.html "><span class="Serial_number"">3</span><span class="vodname">\xe5\x91\xbd\xe8\xbf\x90-\xe5\x86\xa0\xe4\xbd\x8d\xe6\x8c\x87\xe5\xae\x9a \xe7\xbb\x9d\xe5\xaf\xb9\xe9\xad\x94\xe5\x85\xbd\xe6\x88\x98\xe7\xba\xbf\xe5\xb7\xb4\xe6\xaf\x94\xe4\xbc\xa6\xe5\xb0\xbc\xe4\xba\x9a</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/64077.html "><span class="Serial_numberh "">4</span><span class="vodname">\xe5\x85\xa5\xe9\x97\xb4\xe5\x90\x8c\xe5\xad\xa6\xe5\x85\xa5\xe9\xad\x94\xe4\xba\x86</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/22738.html "><span class="Serial_numberh "">5</span><span class="vodname">\xe7\x91\x9e\xe5\xa5\x87\xe5\x92\x8c\xe8\x8e\xab\xe8\xbf\xaa\xe7\xac\xac\xe4\xba\x8c\xe5\xad\xa3</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/22737.html "><span class="Serial_numberh "">6</span><span class="vodname">\xe7\x91\x9e\xe5\xa5\x87\xe5\x92\x8c\xe8\x8e\xab\xe8\xbf\xaa\xe7\xac\xac\xe4\xb8\x80\xe5\xad\xa3</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/75372.html "><span class="Serial_numberh "">7</span><span class="vodname">\xe4\xbd\x90\xe8\xb4\xba\xe5\x81\xb6\xe5\x83\x8f\xe6\x98\xaf\xe4\xbc\xa0\xe5\xa5\x87 \xe5\xa4\x8d\xe4\xbb\x87</span><span class="list_score">5.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/74400.html "><span class="Serial_numberh "">8</span><span class="vodname">\xe4\xbb\x99\xe7\x8e\x8b\xe7\x9a\x84\xe6\x97\xa5\xe5\xb8\xb8\xe7\x94\x9f\xe6\xb4\xbb</span><span class="list_score">4.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\t<a href="/index.php/vod/detail/id/6228.html "><span class="Serial_numberh "">9</span><span class="vodname">\xe5\xb0\x91\xe5\xb9\xb4\xe9\x94\xa6\xe8\xa1\xa3\xe5\x8d\xab</span><span class="list_score">0.0\xe5\x88\x86</span></a>\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t  </div>\r\n\t  \r\n\t     \r\n  </div>\r\n    <div class="link1">\r\n    <div class="single-strong">\xe5\x8f\x8b\xe6\x83\x85\xe9\x93\xbe\xe6\x8e\xa5 <span class="chak_link">[ \xe7\x94\xb3\xe8\xaf\xb7\xe5\x8f\x8b\xe9\x93\xbe\xe8\x81\x94\xe7\xb3\xbbQQ: ]</span></div>\r\n  </div>\r\n  <div class="link">\r\n  \r\n           <a class="alink" href="http://www.px2020.com" target="_blank"> \xe8\x9e\x83\xe8\x9f\xb9\xe8\xbf\x94\xe5\x88\xa9</a>\r\n       \r\n           <a class="alink" href="http://www.che2233.com" target="_blank"> \xe6\xb1\xbd\xe8\xbd\xa6\xe7\x94\x9f\xe6\xb4\xbb365</a>\r\n       \r\n           <a class="alink" href="http://bt.jumao88.com" target="_blank"> \xe6\xa9\x98\xe7\x8c\xabBT\xe7\x94\xb5\xe5\xbd\xb1</a>\r\n       \r\n           <a class="alink" href="http://66yy.in" target="_blank"> 66\xe5\xbd\xb1\xe9\x99\xa2</a>\r\n       \r\n      </div>\r\n\t\r\n\t\r\n</section>\r\n\r\n<div class="foornav"> \r\n\t<a href="/"  class="menu-itema"><span><img src="/template/mb2/images/index.png"/>\xe9\xa6\x96\xe9\xa1\xb5</span></a>\r\n\t  \r\n\t<a href="/index.php/vod/type/id/1.html" ><span><img src="/template/mb2/images/video.png"/>\xe7\x94\xb5\xe5\xbd\xb1</span></a>\r\n      \r\n\t<a href="/index.php/vod/type/id/2.html" ><span><img src="/template/mb2/images/video.png"/>\xe8\xbf\x9e\xe7\xbb\xad\xe5\x89\xa7</span></a>\r\n      \r\n\t<a href="/index.php/vod/type/id/3.html" ><span><img src="/template/mb2/images/video.png"/>\xe7\xbb\xbc\xe8\x89\xba</span></a>\r\n      \r\n\t<a href="/index.php/vod/type/id/4.html" ><span><img src="/template/mb2/images/video.png"/>\xe5\x8a\xa8\xe6\xbc\xab</span></a>\r\n      \r\n</div>\r\n\r\n<footer class="footer">\r\n<div class="branding branding-black">\r\n\t<div class="container" style="text-align: center;">\r\n\t\t<h2> \xe6\xa9\x98\xe7\x8c\xab\xe5\xbd\xb1\xe8\xa7\x86-\xe5\x85\x8d\xe8\xb4\xb9\xe5\x9c\xa8\xe7\xba\xbf\xe8\xa7\x82\xe7\x9c\x8b\xe6\x9c\x80\xe6\x96\xb0VIP\xe5\xa4\xa7\xe7\x89\x87-2019\xe6\x9c\x80\xe6\x96\xb0\xe7\x94\xb5\xe5\xbd\xb1\xe5\x9c\xa8\xe7\xba\xbf\xe7\x9c\x8b\xe3\x80\x82- \xe6\xb5\xb7\xe9\x87\x8f\xe9\xab\x98\xe6\xb8\x85VIP\xe8\xa7\x86\xe9\xa2\x91\xe5\x85\x8d\xe8\xb4\xb9\xe8\xa7\x82\xe7\x9c\x8b       \xe5\xa6\x82\xe6\x9c\x89\xe6\x83\xb3\xe7\x9c\x8b\xe7\x9a\x84\xe8\xa7\x86\xe9\xa2\x91\xe6\xb2\xa1\xe6\x9c\x89\xe7\x9a\x84\xe5\x8f\xaf\xe8\x81\x94\xe7\xb3\xbb\xe6\x88\x91\xe6\xb7\xbb\xe5\x8a\xa0</h2>\r\n\t\t\t\t\t\t<a target="blank" class="gobtn" href="/">\xe8\x81\x94\xe7\xb3\xbb\xe7\xab\x99\xe9\x95\xbf</a>\t\r\n\t\t\t</div>\r\n</div>\r\n<p style="padding: 0 4px;">\xe5\x85\x8d\xe8\xb4\xa3\xe5\xa3\xb0\xe6\x98\x8e:\xe6\x9c\xac\xe7\xab\x99\xe6\x89\x80\xe6\x9c\x89\xe8\xa7\x86\xe9\xa2\x91\xe5\x9d\x87\xe6\x9d\xa5\xe8\x87\xaa\xe4\xba\x92\xe8\x81\x94\xe7\xbd\x91\xe6\x94\xb6\xe9\x9b\x86\xe8\x80\x8c\xe6\x9d\xa5\xef\xbc\x8c\xe7\x89\x88\xe6\x9d\x83\xe5\xbd\x92\xe5\x8e\x9f\xe5\x88\x9b\xe8\x80\x85\xe6\x89\x80\xe6\x9c\x89\xef\xbc\x8c\xe5\xa6\x82\xe6\x9e\x9c\xe4\xbe\xb5\xe7\x8a\xaf\xe4\xba\x86\xe4\xbd\xa0\xe7\x9a\x84\xe6\x9d\x83\xe7\x9b\x8a\xef\xbc\x8c\xe8\xaf\xb7\xe9\x80\x9a\xe7\x9f\xa5\xe6\x88\x91\xe4\xbb\xac\xef\xbc\x8c\xe6\x88\x91\xe4\xbb\xac\xe4\xbc\x9a\xe5\x8f\x8a\xe6\x97\xb6\xe5\x88\xa0\xe9\x99\xa4\xe4\xbe\xb5\xe6\x9d\x83\xe5\x86\x85\xe5\xae\xb9\xef\xbc\x8c\xe8\xb0\xa2\xe8\xb0\xa2\xe5\x90\x88\xe4\xbd\x9c\xef\xbc\x81<br/>\xc2\xa9 2017 <a href="/">\xe6\xa9\x98\xe7\x8c\xab\xe5\xbd\xb1\xe8\xa7\x86-\xe5\x85\x8d\xe8\xb4\xb9\xe5\x9c\xa8\xe7\xba\xbf\xe8\xa7\x82\xe7\x9c\x8b\xe6\x9c\x80\xe6\x96\xb0VIP\xe5\xa4\xa7\xe7\x89\x87-2019\xe6\x9c\x80\xe6\x96\xb0\xe7\x94\xb5\xe5\xbd\xb1\xe5\x9c\xa8\xe7\xba\xbf\xe7\x9c\x8b\xe3\x80\x82</a>\xc2\xa0 <a href="http://www.miitbeian.gov.cn"></a><br/></p></footer>\r\n\r\n\r\n<!--\r\n*\r\n*\r\n*\r\n*\r\n*\r\n*\r\n*\r\n*\r\n*\r\n\r\n*\r\n\r\n*-->\r\n \r\n<script type=\'text/javascript\' src=\'/template/mb2/js/main.js\'></script> \r\n<!--<script type="text/javascript"> document.body.oncontextmenu=document.body.ondragstart= document.body.onselectstart=document.body.onbeforecopy=function(){return false;};\r\ndocument.body.onselect=document.body.oncopy=document.body.onmouseup=function(){document.selection.empty();}; </script>-->\r\n<script type="text/javascript" src="https://s23.cnzz.com/z_stat.php?id=1276391047&web_id=1276391047"></script></body>\r\n</html>'
View Code
import  urllib
from urllib.request import urlopen
def get_url():
    url='http://www.jumao88.com'
    ret=urlopen(url).read()
    print(ret)
get_url()
View Code
import  urllib
from urllib.request import urlopen
def get_url():
    url='http://www.jumao88.com'
    def func():
        ret=urlopen(url).read()
        return ret
    return func
b=get_url()
print(b())
View Code

 

posted @ 2020-02-06 19:58  chown  阅读(14)  评论(0编辑  收藏  举报