[
  {
    "path": ".gitignore",
    "content": "# git 提交忽略的文件\n\n*.pyc\n"
  },
  {
    "path": "README.md",
    "content": "## 网站相关技术：\n\n﻿django 框架搭建整个网站\n\nbootstrap 作为前端样式框架\n\n使用微信 JS-SDK 开发工具包，对接微信分享API,使之视频播放页面支持微信分享\n\npython 用于程序后台逻辑处理\n\n使用 django 自带的数据库 Sqlite3 存储网站数据\n\n> Admin（后台管理）:\n\n用户名：root      密码：root\n\n\n## 项目环境相关依赖：\n\nDjango 安装：\n```bash\n> $ pip install Django==1.8.13\n\n```\n\nDjango REST framework 安装：\n```bash\n> $ pip install djangorestframework\n\n```\n\nDjango REST Swagger 安装：\n```bash\n> $ pip install django-rest-swagger\n\n```\n\nRequests 安装：\n```bash\n> $ pip install requests\n\n```\n\n## 项目运行：\n\n```bash\n> $ python manage.py runserver 端口\n\n```\n\n\n## 项目展示：\n__[视频网站（部分内容）](http://oojestrjh.bkt.clouddn.com/movieweb/index.html)__\n\n> PC 端\n\n __首页:__\n\n![网站首页](./image/pc_movie01.jpg \"首页\")\n\n __播放页面:__\n\n![网站播放页面](./image/pc_movie02.jpg \"播放页面\")\n\n> 移动端\n\n![移动端效果](./image/mobile.jpg \"移动端效果\")\n\n© Movie website. Developer by [hanyu](https://github.com/hanyucd).\n"
  },
  {
    "path": "movieweb/manage.py",
    "content": "#!/usr/bin/env python\nimport os\nimport sys\n\nif __name__ == \"__main__\":\n    os.environ.setdefault(\"DJANGO_SETTINGS_MODULE\", \"movieweb.settings\")\n\n    from django.core.management import execute_from_command_line\n\n    execute_from_command_line(sys.argv)\n"
  },
  {
    "path": "movieweb/movieweb/__init__.py",
    "content": ""
  },
  {
    "path": "movieweb/movieweb/settings.py",
    "content": "\"\"\"\nDjango settings for movieweb project.\n\nGenerated by 'django-admin startproject' using Django 1.8.13.\n\nFor more information on this file, see\nhttps://docs.djangoproject.com/en/1.8/topics/settings/\n\nFor the full list of settings and their values, see\nhttps://docs.djangoproject.com/en/1.8/ref/settings/\n\"\"\"\n\n# Build paths inside the project like this: os.path.join(BASE_DIR, ...)\nimport os\n\nBASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))\n\n\n# Quick-start development settings - unsuitable for production\n# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/\n\n# SECURITY WARNING: keep the secret key used in production secret!\nSECRET_KEY = '&7!w5(_zz(3ar)hkvkl1kwg=wn&e!5pt#9xs(xjeo0%wm1665c'\n\n# SECURITY WARNING: don't run with debug turned on in production!\nDEBUG = True\n\nALLOWED_HOSTS = []\n\n\n# Application definition\n\nINSTALLED_APPS = (\n    'django.contrib.admin',\n    'django.contrib.auth',\n    'django.contrib.contenttypes',\n    'django.contrib.sessions',\n    'django.contrib.messages',\n    'django.contrib.staticfiles',\n    'videoplay',\n    'rest_framework',\n    'rest_framework_swagger',\n)\n\nMIDDLEWARE_CLASSES = (\n    'django.contrib.sessions.middleware.SessionMiddleware',\n    'django.middleware.common.CommonMiddleware',\n    # 'django.middleware.csrf.CsrfViewMiddleware',\n    'django.contrib.auth.middleware.AuthenticationMiddleware',\n    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',\n    'django.contrib.messages.middleware.MessageMiddleware',\n    'django.middleware.clickjacking.XFrameOptionsMiddleware',\n    'django.middleware.security.SecurityMiddleware',\n)\n\nROOT_URLCONF = 'movieweb.urls'\n\nTEMPLATES = [\n    {\n        'BACKEND': 'django.template.backends.django.DjangoTemplates',\n        'DIRS': [],\n        'APP_DIRS': True,\n        'OPTIONS': {\n            'context_processors': [\n                'django.template.context_processors.debug',\n                'django.template.context_processors.request',\n                'django.contrib.auth.context_processors.auth',\n                'django.contrib.messages.context_processors.messages',\n            ],\n        },\n    },\n]\n\nWSGI_APPLICATION = 'movieweb.wsgi.application'\n\n\n# Database\n# https://docs.djangoproject.com/en/1.8/ref/settings/#databases\n\nDATABASES = {\n    'default': {\n        'ENGINE': 'django.db.backends.sqlite3',\n        'NAME': 'movieweb.db',\n        # 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),\n    }\n}\n\n\n# Internationalization\n# https://docs.djangoproject.com/en/1.8/topics/i18n/\n\nLANGUAGE_CODE = 'zh-hans'\n# LANGUAGE_CODE = 'en-us'\n\nTIME_ZONE = 'UTC'\n\nUSE_I18N = True\n\nUSE_L10N = True\n\nUSE_TZ = True\n\n\n# Static files (CSS, JavaScript, Images)\n# https://docs.djangoproject.com/en/1.8/howto/static-files/\n\nSTATIC_URL = '/static/'\n"
  },
  {
    "path": "movieweb/movieweb/urls.py",
    "content": "# -*- coding: UTF-8 -*-\n\"\"\"movieweb URL Configuration\n\nThe `urlpatterns` list routes URLs to views. For more information please see:\n    https://docs.djangoproject.com/en/1.8/topics/http/urls/\nExamples:\nFunction views\n    1. Add an import:  from my_app import views\n    2. Add a URL to urlpatterns:  url(r'^$', views.home, name='home')\nClass-based views\n    1. Add an import:  from other_app.views import Home\n    2. Add a URL to urlpatterns:  url(r'^$', Home.as_view(), name='home')\nIncluding another URLconf\n    1. Add a URL to urlpatterns:  url(r'^blog/', include('blog.urls'))\n\"\"\"\nfrom django.conf.urls import include, url\nfrom django.contrib import admin\n\nfrom videoplay.views import index, play, regist, login\n\n# 实现swagger code\nfrom videoplay import views\nfrom rest_framework import renderers, response, schemas\nfrom rest_framework.decorators import api_view, renderer_classes\nfrom rest_framework.routers import DefaultRouter\nfrom rest_framework_swagger.renderers import OpenAPIRenderer, SwaggerUIRenderer\n\n@api_view()\n@renderer_classes([SwaggerUIRenderer, OpenAPIRenderer, renderers.CoreJSONRenderer])\ndef schema_view(request):\n    generator = schemas.SchemaGenerator(title='Data API')\n    return response.Response(generator.get_schema(request=request))\n# Routers（路由）提供了一种简单的方法来自动生成URL配置\nrouter = DefaultRouter()\nrouter.register(r'movie', views.SnippetViewSet)\n\nurlpatterns = [\n    url(r'^admin/', include(admin.site.urls)),\n    url(r'^regist/$', regist),\n    url(r'^$', login),\n    url(r'^movie/$', index),\n    url(r'^movie/video_(?P<id>\\d{1,2}).html$', play),\n\n    url(r'^swagger$', schema_view),\n    url(r'^', include(router.urls)),\n    # url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework'))\n]\n"
  },
  {
    "path": "movieweb/movieweb/wsgi.py",
    "content": "\"\"\"\nWSGI config for movieweb project.\n\nIt exposes the WSGI callable as a module-level variable named ``application``.\n\nFor more information on this file, see\nhttps://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/\n\"\"\"\n\nimport os\n\nfrom django.core.wsgi import get_wsgi_application\n\nos.environ.setdefault(\"DJANGO_SETTINGS_MODULE\", \"movieweb.settings\")\n\napplication = get_wsgi_application()\n"
  },
  {
    "path": "movieweb/videoplay/__init__.py",
    "content": ""
  },
  {
    "path": "movieweb/videoplay/admin.py",
    "content": "from django.contrib import admin\nfrom videoplay.models import Movie, User, UserComment, MoviePay\n# Register your models here.\n\nadmin.site.register(Movie)\nadmin.site.register(User)\nadmin.site.register(UserComment)\nadmin.site.register(MoviePay)\n"
  },
  {
    "path": "movieweb/videoplay/forms.py",
    "content": "# -*- coding: UTF-8 -*-\n# 导入表单\nfrom django import forms\n''' 用户注册/登录数据 '''\nclass UserForm(forms.Form):\n    username = forms.CharField(max_length = 20)\n    password = forms.IntegerField()\n\n''' 用户评论数据 '''\nclass UserCommentForm(forms.Form):\n    user_comment = forms.CharField(max_length = 300)\n    \n''' 电影支付数据 '''\nclass MoviePayForm(forms.Form):\n    movie_pay = forms.IntegerField()\n"
  },
  {
    "path": "movieweb/videoplay/migrations/0001_initial.py",
    "content": "# -*- coding: utf-8 -*-\nfrom __future__ import unicode_literals\n\nfrom django.db import migrations, models\n\n\nclass Migration(migrations.Migration):\n\n    dependencies = [\n    ]\n\n    operations = [\n        migrations.CreateModel(\n            name='Movie',\n            fields=[\n                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),\n                ('movie', models.CharField(max_length=100)),\n            ],\n        ),\n        migrations.CreateModel(\n            name='MoviePay',\n            fields=[\n                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),\n                ('pay_username', models.CharField(max_length=20)),\n                ('movie_id', models.IntegerField()),\n                ('movie_pay', models.IntegerField()),\n            ],\n        ),\n        migrations.CreateModel(\n            name='User',\n            fields=[\n                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),\n                ('username', models.CharField(max_length=20)),\n                ('password', models.IntegerField()),\n            ],\n        ),\n        migrations.CreateModel(\n            name='UserComment',\n            fields=[\n                ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),\n                ('comment_username', models.CharField(max_length=20)),\n                ('user_comment', models.CharField(max_length=300)),\n                ('comment_time', models.CharField(max_length=40)),\n            ],\n        ),\n    ]\n"
  },
  {
    "path": "movieweb/videoplay/migrations/__init__.py",
    "content": ""
  },
  {
    "path": "movieweb/videoplay/models.py",
    "content": "#  -*- coding: UTF-8 -*-\nfrom django.db import models\n# Create your models here.\n\n''' 视频 URL 存数据库 '''\nclass Movie(models.Model):\n    movie = models.CharField(max_length = 100)\n\n    def __str__(self):\n        return self.movie\n\n''' 用户名 存数据库 '''\nclass User(models.Model):\n    username = models.CharField(max_length = 20)\n    password = models.IntegerField()\n\n    def __str__(self):\n        return '%s | %s' % (self.username, self.password)\n\n''' 用户评论 存数据库 '''\nclass UserComment(models.Model):\n    comment_username = models.CharField(max_length = 20)\n    user_comment = models.CharField(max_length = 300)\n    comment_time = models.CharField(max_length = 40)\n\n    def __str__(self):\n        return \"%s : %s | %s\" % (self.comment_username, self.user_comment, self.comment_time)\n''' 用户支付 存数据库 '''\nclass MoviePay(models.Model):\n    pay_username = models.CharField(max_length = 20)\n    movie_id = models.IntegerField()\n    movie_pay = models.IntegerField()\n\n    def __str__(self):\n        return \"user: %s / movie_id: %d / pay: %d\" % (self.pay_username, self.movie_id, self.movie_pay)\n"
  },
  {
    "path": "movieweb/videoplay/serializers.py",
    "content": "# -*- coding: UTF-8 -*-\nfrom rest_framework import serializers\nfrom videoplay.models import Movie\n\n# Serializers(序列化器)定义了如何展示API\nclass MovieSerializer(serializers.HyperlinkedModelSerializer):\n\n    class Meta:\n        model = Movie\n        fields = ('movie',)\n"
  },
  {
    "path": "movieweb/videoplay/static/home_page.css",
    "content": "#user {\n  padding-left: 10px;\n  margin-top: 20px\n}\n\n.figures_lists {\n  margin-left: 0;\n  padding: 0;\n  list-style-type: none;\n}\n.list_item {\n  display: inline-block;\n  /*float: left;*/\n  vertical-align: top;\n  margin-bottom: 20px;\n  position: relative;\n}\n.label_title {\n  position: absolute;\n  top: 0;\n  left: 0;\n  background-color: #1CBF11;\n  border-radius: 10px;\n}\n.label_font {\n  color: #fff;\n  padding: 0 5px;\n}\n#my-content {\n  margin: 25px auto;\n  padding: 0 10px;\n}\n#my-content:first-child {\n  padding: 0;\n}\n.figure_title>a {\n  display: block;\n}\n.figure img {\n  width: 80%;\n}\n.new_image {\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n/*@media 设备类型 and|only|not (设备特性) {样式代码}*/\n@media handheld and (max-device-width: 768px) {\n  .nav>li {\n    display: inline-table;\n    margin-right: 10px;\n  }\n  .container {\n    padding-left: 0;\n    padding-right: 0;\n    margin: 0 10px;\n  }\n  .list_item {\n    width: 32%;\n  }\n}\n@media screen and (max-width: 768px) {\n  .nav>li {\n    display: inline-block;\n    margin-right: 10px;\n  }\n  .container {\n    padding-left: 0;\n    padding-right: 0;\n    margin: 0 10px;\n  }\n  .list_item {\n    width: 32%;\n  }\n}\n"
  },
  {
    "path": "movieweb/videoplay/static/user_login.css",
    "content": "#cont {\n  margin: auto;\n  margin-top: 150px;\n  width: 500px;\n}\na {\n  float: right;\n}\n.my_btn {\n  margin-left: 30px;\n}\n"
  },
  {
    "path": "movieweb/videoplay/static/user_regist.css",
    "content": "#cont {\n  margin: auto;\n  margin-top: 150px;\n  width: 800px;\n  /*border: 1px solid black;*/\n}\n#btn {\n  padding-left: 5px;\n}\n"
  },
  {
    "path": "movieweb/videoplay/static/video_play.css",
    "content": "div.container{\n  margin-top: 50px;\n}\n.my_font {\n  font-size: 20px;\n  font-weight: bolder;\n}\n#all_comment {\n  margin-top: 15px;\n  border-bottom: 1px solid #87CEFA;\n}\n.single_comment {\n  min-height: 100px;\n  display: flex;\n  margin-bottom: 3px;\n  border-bottom: 1px solid #D8D8D8;\n}\n.username {\n  min-width: 100px;\n  margin: auto 0;\n}\n.contents {\n  padding: 15px;\n  min-width: 600px;\n}\n.comment_time {\n  margin: auto 0;\n}\n"
  },
  {
    "path": "movieweb/videoplay/static/video_play.js",
    "content": "// alert('js代码引入成功....')\n// var my_video = document.getElementById(\"my_video\");\n// my_video.ontimeupdate = function() {\n//   var currentTime = my_video.currentTime;\n//   var duration = my_video.duration;\n//   document.getElementById(\"current_time\").innerHTML = currentTime;\n//   document.getElementById('video_duration').innerHTML = duration;\n//   if (currentTime >= 60) {\n//     // my_video.load();\n//     my_video.pause();\n//   }\n// }\n"
  },
  {
    "path": "movieweb/videoplay/templates/index.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>小宇视频</title>\n  <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\" />\n\n  <meta name=\"viewport\" content=\"width=device-width, height=divice-height, inital-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no;\" />\n  <!-- 新 Bootstrap 核心 CSS 文件 -->\n  <link rel=\"stylesheet\" href=\"http://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css\">\n  <!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->\n  <script src=\"http://cdn.bootcss.com/jquery/1.11.3/jquery.min.js\"></script>\n  <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->\n  <script src=\"http://cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js\"></script>\n  {% load staticfiles %}\n  <link type=\"text/css\" rel=\"stylesheet\" href=\"{% static 'home_page.css' %}\">\n</head>\n<body>\n  <div class=\"container\">\n    <div id=\"user\">\n      {% if error %}\n        <p class=\"text-danger\">☹ 欧漏。你还未登录 or 用户名存储已过期，可重新<a href=\"/\">登录</a> ……</p>\n      {% else %}\n        <p class=\"text-primary\">☺ 登录成功。欢迎用户 {{ username }}，来到小宇视频 ……</p>\n      {% endif %}\n    </div>\n\n    <div id=\"myCarousel\" class=\"carousel slide\" data-ride=\"carousel\" data-interval=\"2000\">\n      \t<!-- 轮播（Carousel）指标 -->\n      \t<ol class=\"carousel-indicators\">\n      \t\t<li data-target=\"#myCarousel\" data-slide-to=\"0\" class=\"active\"></li>\n      \t\t<li data-target=\"#myCarousel\" data-slide-to=\"1\"></li>\n      \t\t<li data-target=\"#myCarousel\" data-slide-to=\"2\"></li>\n      \t\t<li data-target=\"#myCarousel\" data-slide-to=\"3\"></li>\n      \t</ol>\n      \t<!-- 轮播（Carousel）项目 -->\n      \t<div class=\"carousel-inner\">\n          <div class=\"item active\">\n      \t\t\t<a href=\"video_11.html\" target=\"_blank\"><img src=\"{% static 'images/BingHeShiDai4.jpg' %}\" alt=\"冰河时代4\" /></a>\n      \t\t</div>\n      \t\t<div class=\"item\">\n      \t\t\t<a href=\"video_12.html\" target=\"_blank\"><img src=\"{% static 'images/GongFuXiongMao3.jpg' %}\" alt=\"功夫熊猫3\" /></a>\n      \t\t</div>\n      \t\t<div class=\"item\">\n      \t\t\t<a href=\"video_13.html\" target=\"_blank\"><img src=\"{% static 'images/XianXiaXueXuan.jpg' %}\" alt=\"仙侠学院\" /></a>\n      \t\t</div>\n          <div class=\"item\">\n            <a href=\"video_14.html\" target=\"_blank\"><img src=\"{% static 'images/CiWeiXiaoZi.jpg' %}\" alt=\"刺猬小子\" /></a>\n          </div>\n      \t</div>\n      \t<!-- 轮播（Carousel）导航 -->\n      \t<a class=\"carousel-control left\" href=\"#myCarousel\"\n      \t   data-slide=\"prev\">&lsaquo;</a>\n      \t<a class=\"carousel-control right\" href=\"#myCarousel\"\n      \t   data-slide=\"next\">&rsaquo;</a>\n     </div>\n\n    <div>\n      <hr />\n      <ul class=\"nav nav-tabs nav-justified\" id=\"index\">\n        <li class=\"active\"><a href=\"#tab0\" data-toggle=\"tab\">动作</a></li>\n        <li><a href=\"#tab1\" data-toggle=\"tab\">冒险</a></li>\n        <li><a href=\"#tab2\" data-toggle=\"tab\">喜剧</a></li>\n        <li><a href=\"#tab3\" data-toggle=\"tab\">动画</a></li>\n        <li><a href=\"#tab4\" data-toggle=\"tab\">科幻</a></li>\n        <li><a href=\"#tab5\" data-toggle=\"tab\">犯罪</a></li>\n        <li><a href=\"#tab6\" data-toggle=\"tab\">爱情</a></li>\n        <li><a href=\"#tab7\" data-toggle=\"tab\">武侠</a></li>\n      </ul>\n    </div>\n\n    <div class=\"tab-content\" id=\"my-content\">\n      <div class=\"tab-pane fade in active\" id=\"tab0\">\n        <ul class=\"figures_lists\">\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/01.jpg' %}\" alt=\"澳门风云3\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"澳门风云3\">澳门风云3</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/02.jpg' %}\" alt=\"唐人街探案\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"唐人街探案\">唐人街探案</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/03.jpg' %}\" alt=\"鬼吹灯之寻龙诀\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"鬼吹灯之寻龙诀\">鬼吹灯之寻龙诀</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/04.jpg' %}\" alt=\"魔卡行动\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" title=\"魔卡行动\">魔卡行动</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/05.jpg' %}\" alt=\"猛龙特囧\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"猛龙特囧\">猛龙特囧</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/06.jpg' %}\" alt=\"解救吾先生\">\n            </a>\n            <image class=\"new_image\" src=\"{% static 'images/new-blue.gif' %}\"/>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"解救吾先生\">解救吾先生</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/07.jpg' %}\" alt=\"西游记之大圣归来\">\n            </a>\n            <image class=\"new_image\" src=\"{% static 'images/hot-yellow.gif' %}\"/>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" title=\"西游记之大圣归来\">西游记之大圣归来</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_8.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/08.jpg' %}\" alt=\"九层妖塔\">\n            </a>\n            <image class=\"new_image\" src=\"{% static 'images/new-blue.gif' %}\"/>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_8.html\" target=\"_blank\" title=\"九层妖塔\">九层妖塔</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/09.jpg' %}\" alt=\"道士下山\">\n            </a>\n            <image class=\"new_image\" src=\"{% static 'images/hot-yellow.gif' %}\"/>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" title=\"道士下山\">道士下山</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/10.jpg' %}\" alt=\"杀破狼2\">\n            </a>\n            <image class=\"new_image\" src=\"{% static 'images/hot-yellow.gif' %}\"/>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" title=\"杀破狼2\">杀破狼2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/11.jpg' %}\" alt=\"一万年以后\">\n            </a>\n            <image class=\"new_image\" src=\"{% static 'images/new-blue.gif' %}\"/>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" title=\"一万年以后\">一万年以后</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Action/12.jpg' %}\" alt=\"饥饿游戏3：嘲笑鸟(上)\">\n            </a>\n            <image class=\"new_image\" src=\"{% static 'images/new-blue.gif' %}\"/>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" title=\"饥饿游戏3：嘲笑鸟(上)\">饥饿游戏3：嘲笑鸟(上)</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Action/13.jpg' %}\" alt=\"神探驾到\">\n    \t\t\t\t</a>\n            <image class=\"new_image\" src=\"{% static 'images/new-blue.gif' %}\"/>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" title=\"神探驾到\">神探驾到</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Action/14.jpg' %}\" alt=\"钟馗伏魔：雪妖魔灵\">\n    \t\t\t\t</a>\n            <image class=\"new_image\" src=\"{% static 'images/hot-yellow.gif' %}\"/>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" title=\"钟馗伏魔：雪妖魔灵\">钟馗伏魔：雪妖魔灵</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Action/15.jpg' %}\" alt=\"一个人的武林\">\n    \t\t\t\t</a>\n            <image class=\"new_image\" src=\"{% static 'images/hot-yellow.gif' %}\"/>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" title=\"一个人的武林\">一个人的武林</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_16.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Action/16.jpg' %}\" alt=\"富春山居图\">\n    \t\t\t\t</a>\n            <image class=\"new_image\" src=\"{% static 'images/hot-yellow.gif' %}\"/>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_16.html\" target=\"_blank\" title=\"富春山居图\">富春山居图</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n        </ul>\n      </div>\n\n      <div class=\"tab-pane fade\" id=\"tab1\">\n        <ul class=\"figures_lists\">\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/01.jpg' %}\" alt=\"星球大战：原力觉醒\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"星球大战：原力觉醒\">星球大战：原力觉醒</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Adventure/02.jpg' %}\" alt=\"一个勺子\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"一个勺子\">一个勺子</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Adventure/03.jpg' %}\" alt=\"狂野飞车\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"狂野飞车\">狂野飞车</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Adventure/04.jpg' %}\" alt=\"白幽灵传奇之绝命逃亡\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" title=\"白幽灵传奇之绝命逃亡\">白幽灵传奇之绝命逃亡</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Adventure/05.jpg' %}\" alt=\"我是谁2015\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"我是谁2015\">我是谁2015</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Adventure/06.jpg' %}\" alt=\"智取威虎山\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"智取威虎山\">智取威虎山</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Adventure/07.jpg' %}\" alt=\"末日浩劫\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" title=\"末日浩劫\">末日浩劫</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_8.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Adventure/08.jpg' %}\" alt=\"分歧者：异类觉醒\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_8.html\" target=\"_blank\" title=\"分歧者：异类觉醒\">分歧者：异类觉醒</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Adventure/09.jpg' %}\" alt=\"神通佛影\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" title=\"神通佛影\">神通佛影</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Adventure/10.jpg' %}\" alt=\"庞贝末日\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" title=\"庞贝末日\">庞贝末日</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Adventure/11.jpg' %}\" alt=\"横冲直撞好莱坞\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" title=\"横冲直撞好莱坞\">横冲直撞好莱坞</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/12.jpg' %}\" alt=\"神通佛影\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" title=\"神通佛影\">神通佛影</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/13.jpg' %}\" alt=\"庞贝末日\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" title=\"庞贝末日\">庞贝末日</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/14.jpg' %}\" alt=\"横冲直撞好莱坞\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" title=\"横冲直撞好莱坞\">横冲直撞好莱坞</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/15.jpg' %}\" alt=\"美人鱼\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" title=\"美人鱼\">美人鱼</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/16.jpg' %}\" alt=\"复仇者联盟2：奥创纪元\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"复仇者联盟2：奥创纪元\">复仇者联盟2：奥创纪元</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/17.jpg' %}\" alt=\"哥斯拉\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"哥斯拉\">哥斯拉</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/18.jpg' %}\" alt=\"美国队长2\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" title=\"美国队长2\">美国队长2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/19.jpg' %}\" alt=\"金刚狼2\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"金刚狼2\">金刚狼2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/20.jpg' %}\" alt=\"恶魔蜘蛛王\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"恶魔蜘蛛王\">恶魔蜘蛛王</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Adventure/21.jpg' %}\" alt=\"永不失败的国家\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" title=\"永不失败的国家\">永不失败的国家</a>\n            </strong>\n          </li>\n\n        </ul>\n      </div>\n\n      <div class=\"tab-pane fade\" id=\"tab2\">\n        <ul class=\"figures_lists\">\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Comedy/01.jpg' %}\" alt=\"超能太监\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"超能太监\">超能太监</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Comedy/02.jpg' %}\" alt=\"致我们终将到来的爱情\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"致我们终将到来的爱情\">致我们终将到来的爱情</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Comedy/03.jpg' %}\" alt=\"一念天堂\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"一念天堂\">一念天堂</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Comedy/04.jpg' %}\" alt=\"浪漫天降\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" title=\"浪漫天降\">浪漫天降</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Comedy/05.jpg' %}\" alt=\"恶棍天使\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"恶棍天使\">恶棍天使</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Comedy/06.jpg' %}\" alt=\"万万没想到\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"万万没想到\">万万没想到</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/07.jpg' %}\" alt=\"美人鱼\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"美人鱼\">美人鱼</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/08.jpg' %}\" alt=\"复仇者联盟2：奥创纪元\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"复仇者联盟2：奥创纪元\">复仇者联盟2：奥创纪元</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/09.jpg' %}\" alt=\"哥斯拉\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" title=\"哥斯拉\">哥斯拉</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/10.jpg' %}\" alt=\"美国队长2\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" title=\"美国队长2\">美国队长2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/11.jpg' %}\" alt=\"金刚狼2\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"金刚狼2\">金刚狼2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/12.jpg' %}\" alt=\"恶魔蜘蛛王\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"恶魔蜘蛛王\">恶魔蜘蛛王</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/13.jpg' %}\" alt=\"永不失败的国家\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" title=\"永不失败的国家\">永不失败的国家</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/14.jpg' %}\" alt=\"美人鱼\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"美人鱼\">美人鱼</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/15.jpg' %}\" alt=\"复仇者联盟2：奥创纪元\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" title=\"复仇者联盟2：奥创纪元\">复仇者联盟2：奥创纪元</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/16.jpg' %}\" alt=\"哥斯拉\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" title=\"哥斯拉\">哥斯拉</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Comedy/17.jpg' %}\" alt=\"美国队长2\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" title=\"美国队长2\">美国队长2</a>\n            </strong>\n          </li>\n\n        </ul>\n      </div>\n\n      <div class=\"tab-pane fade\" id=\"tab3\">\n        <ul class=\"figures_lists\">\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/01.jpg' %}\" alt=\"阿里巴巴2所罗门封印\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" title=\"阿里巴巴2所罗门封印\">阿里巴巴2所罗门封印</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/02.jpg' %}\" alt=\"乐高史酷比：闹鬼的好莱坞\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" title=\"乐高史酷比：闹鬼的好莱坞\">乐高史酷比：闹鬼的好莱坞</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/03.jpg' %}\" alt=\"疯狂动物城\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" title=\"疯狂动物城\">疯狂动物城</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/04.jpg' %}\" alt=\"功夫熊猫3\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" title=\"功夫熊猫3\">功夫熊猫3</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/05.jpg' %}\" alt=\"青蛙王国之冰冻大冒险\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" title=\"青蛙王国之冰冻大冒险\">青蛙王国之冰冻大冒险</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/06.jpg' %}\" alt=\"丛林大反攻4:吓傻了\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"丛林大反攻4:吓傻了\">丛林大反攻4:吓傻了</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/07.jpg' %}\" alt=\"果宝特攻之水果大逃亡\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"果宝特攻之水果大逃亡\">果宝特攻之水果大逃亡</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/08.jpg' %}\" alt=\"年兽大作战\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"年兽大作战\">年兽大作战</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/09.jpg' %}\" alt=\"熊出没之熊心归来\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" title=\"熊出没之熊心归来\">熊出没之熊心归来</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/10.jpg' %}\" alt=\"小门神\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" title=\"小门神\">小门神</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/11.jpg' %}\" alt=\"夺旗\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" title=\"夺旗\">夺旗</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/12.jpg' %}\" alt=\"小王子\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" title=\"小王子\">小王子</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/13.jpg' %}\" alt=\"极地大反攻\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" title=\"极地大反攻\">极地大反攻</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/14.jpg' %}\" alt=\"咕噜咕噜美人鱼\">\n    \t\t\t\t\t<span></span>\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" title=\"咕噜咕噜美人鱼\">咕噜咕噜美人鱼</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/15.jpg' %}\" alt=\"海绵宝宝\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" title=\"海绵宝宝\">海绵宝宝</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Cartoon/16.jpg' %}\" alt=\"洛克王国4:出发！巨人谷\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"洛克王国4:出发！巨人谷\">洛克王国4:出发！巨人谷</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n        </ul>\n      </div>\n\n      <div class=\"tab-pane fade\" id=\"tab4\">\n        <ul class=\"figures_lists\">\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/01.jpg' %}\" alt=\"美人鱼\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"美人鱼\">美人鱼</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/02.jpg' %}\" alt=\"复仇者联盟2：奥创纪元\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" title=\"复仇者联盟2：奥创纪元\">复仇者联盟2：奥创纪元</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/03.jpg' %}\" alt=\"哥斯拉\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" title=\"哥斯拉\">哥斯拉</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/04.jpg' %}\" alt=\"美国队长2\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" title=\"美国队长2\">美国队长2</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/05.jpg' %}\" alt=\"金刚狼2\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"金刚狼2\">金刚狼2</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/06.jpg' %}\" alt=\"恶魔蜘蛛王\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"恶魔蜘蛛王\">恶魔蜘蛛王</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/07.jpg' %}\" alt=\"永不失败的国家\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" title=\"永不失败的国家\">永不失败的国家</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_8.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/08.jpg' %}\" alt=\"复仇者联盟\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_8.html\" target=\"_blank\" title=\"复仇者联盟\">复仇者联盟</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/09.jpg' %}\" alt=\"极盗者\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" title=\"极盗者\">极盗者</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/10.jpg' %}\" alt=\"蚁人\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" title=\"蚁人\">蚁人</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/11.jpg' %}\" alt=\"终结者：创世纪\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"终结者：创世纪\">终结者：创世纪</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/12.jpg' %}\" alt=\"猴子王国\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"猴子王国\">猴子王国</a>\n    \t\t\t\t</strong>\n\t\t\t      </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/13.jpg' %}\" alt=\"明星伙伴电影版\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"明星伙伴电影版\">明星伙伴电影版</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/14.jpg' %}\" alt=\"港囧\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" title=\"港囧\">港囧</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/15.jpg' %}\" alt=\"夏洛特烦恼\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" title=\"夏洛特烦恼\">夏洛特烦恼</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_16.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Science/16.jpg' %}\" alt=\"华丽上班族\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_16.html\" target=\"_blank\" title=\"华丽上班族\">华丽上班族</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n        </ul>\n      </div>\n\n      <div class=\"tab-pane fade\" id=\"tab5\">\n        <ul class=\"figures_lists\">\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Crime/01.jpg' %}\" alt=\"一万年以后\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" title=\"一万年以后\">一万年以后</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Crime/02.jpg' %}\" alt=\"饥饿游戏3：嘲笑鸟(上)\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" title=\"饥饿游戏3：嘲笑鸟(上)\">饥饿游戏3：嘲笑鸟(上)</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Crime/03.jpg' %}\" alt=\"神探驾到\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" title=\"神探驾到\">神探驾到</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Crime/04.jpg' %}\" alt=\"钟馗伏魔：雪妖魔灵\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" title=\"钟馗伏魔：雪妖魔灵\">钟馗伏魔：雪妖魔灵</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Crime/05.jpg' %}\" alt=\"一个人的武林\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" title=\"一个人的武林\">一个人的武林</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Crime/06.jpg' %}\" alt=\"富春山居图\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"富春山居图\">富春山居图</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Crime/07.jpg' %}\" alt=\"末日浩劫\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"末日浩劫\">末日浩劫</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Crime/08.jpg' %}\" alt=\"分歧者：异类觉醒\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"分歧者：异类觉醒\">分歧者：异类觉醒</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Crime/09.jpg' %}\" alt=\"神通佛影\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" title=\"神通佛影\">神通佛影</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Crime/10.jpg' %}\" alt=\"庞贝末日\">\n    \t\t\t\t</a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"庞贝末日\">庞贝末日</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n    \t\t\t\t<a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n    \t\t\t\t\t<img src=\"{% static 'images/Crime/11.jpg' %}\" alt=\"横冲直撞好莱坞\">\n    \t\t\t\t</a>\n    \t\t\t\t<strong class=\"figure_title\">\n    \t\t\t\t\t<a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" title=\"横冲直撞好莱坞\">横冲直撞好莱坞</a>\n    \t\t\t\t</strong>\n\t\t\t    </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Crime/12.jpg' %}\" alt=\"美人鱼\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"美人鱼\">美人鱼</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Crime/13.jpg' %}\" alt=\"复仇者联盟2：奥创纪元\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"复仇者联盟2：奥创纪元\">复仇者联盟2：奥创纪元</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Crime/14.jpg' %}\" alt=\"哥斯拉\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" title=\"哥斯拉\">哥斯拉</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Crime/15.jpg' %}\" alt=\"美国队长2\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" title=\"美国队长2\">美国队长2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Crime/16.jpg' %}\" alt=\"金刚狼2\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"金刚狼2\">金刚狼2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Crime/17.jpg' %}\" alt=\"恶魔蜘蛛王\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"恶魔蜘蛛王\">恶魔蜘蛛王</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Crime/18.jpg' %}\" alt=\"永不失败的国家\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" title=\"永不失败的国家\">永不失败的国家</a>\n            </strong>\n          </li>\n\n        </ul>\n      </div>\n\n      <div class=\"tab-pane fade\" id=\"tab6\">\n        <ul class=\"figures_lists\">\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/01.jpg' %}\" alt=\"阿里巴巴2所罗门封印\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"阿里巴巴2所罗门封印\">阿里巴巴2所罗门封印</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/02.jpg' %}\" alt=\"乐高史酷比：闹鬼的好莱坞\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"乐高史酷比：闹鬼的好莱坞\">乐高史酷比：闹鬼的好莱坞</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/03.jpg' %}\" alt=\"疯狂动物城\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"疯狂动物城\">疯狂动物城</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/04.jpg' %}\" alt=\"功夫熊猫3\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" title=\"功夫熊猫3\">功夫熊猫3</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/05.jpg' %}\" alt=\"青蛙王国之冰冻大冒险\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"青蛙王国之冰冻大冒险\">青蛙王国之冰冻大冒险</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/06.jpg' %}\" alt=\"丛林大反攻4:吓傻了\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"丛林大反攻4:吓傻了\">丛林大反攻4:吓傻了</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/07.jpg' %}\" alt=\"果宝特攻之水果大逃亡\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" title=\"果宝特攻之水果大逃亡\">果宝特攻之水果大逃亡</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_8.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/08.jpg' %}\" alt=\"年兽大作战\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_8.html\" target=\"_blank\" title=\"年兽大作战\">年兽大作战</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/09.jpg' %}\" alt=\"熊出没之熊心归来\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" title=\"熊出没之熊心归来\">熊出没之熊心归来</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/10.jpg' %}\" alt=\"小门神\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" title=\"小门神\">小门神</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/11.jpg' %}\" alt=\"夺旗\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" title=\"夺旗\">夺旗</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/12.jpg' %}\" alt=\"小王子\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" title=\"小王子\">小王子</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/13.jpg' %}\" alt=\"极地大反攻\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_13.html\" target=\"_blank\" title=\"极地大反攻\">极地大反攻</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/14.jpg' %}\" alt=\"咕噜咕噜美人鱼\">\n              <span></span>\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_14.html\" target=\"_blank\" title=\"咕噜咕噜美人鱼\">咕噜咕噜美人鱼</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/15.jpg' %}\" alt=\"神通佛影\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" title=\"神通佛影\">神通佛影</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/16.jpg' %}\" alt=\"庞贝末日\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" title=\"庞贝末日\">庞贝末日</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_16.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/17.jpg' %}\" alt=\"横冲直撞好莱坞\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_16.html\" target=\"_blank\" title=\"横冲直撞好莱坞\">横冲直撞好莱坞</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/18.jpg' %}\" alt=\"美人鱼\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" title=\"美人鱼\">美人鱼</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/19.jpg' %}\" alt=\"复仇者联盟2：奥创纪元\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" title=\"复仇者联盟2：奥创纪元\">复仇者联盟2：奥创纪元</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/20.jpg' %}\" alt=\"哥斯拉\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"哥斯拉\">哥斯拉</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/21.jpg' %}\" alt=\"美国队长2\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" title=\"美国队长2\">美国队长2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/22.jpg' %}\" alt=\"金刚狼2\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"金刚狼2\">金刚狼2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/23.jpg' %}\" alt=\"恶魔蜘蛛王\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"恶魔蜘蛛王\">恶魔蜘蛛王</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Love/24.jpg' %}\" alt=\"永不失败的国家\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" title=\"永不失败的国家\">永不失败的国家</a>\n            </strong>\n          </li>\n\n        </ul>\n      </div>\n\n      <div class=\"tab-pane fade\" id=\"tab7\">\n        <ul class=\"figures_lists\">\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/01.jpg' %}\" alt=\"神通佛影\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" title=\"神通佛影\">神通佛影</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/02.jpg' %}\" alt=\"庞贝末日\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_10.html\" target=\"_blank\" title=\"庞贝末日\">庞贝末日</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/03.jpg' %}\" alt=\"横冲直撞好莱坞\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_11.html\" target=\"_blank\" title=\"横冲直撞好莱坞\">横冲直撞好莱坞</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/04.jpg' %}\" alt=\"美人鱼\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"美人鱼\">美人鱼</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/05.jpg' %}\" alt=\"复仇者联盟2：奥创纪元\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"复仇者联盟2：奥创纪元\">复仇者联盟2：奥创纪元</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/06.jpg' %}\" alt=\"哥斯拉\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"哥斯拉\">哥斯拉</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/07.jpg' %}\" alt=\"美国队长2\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" title=\"美国队长2\">美国队长2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/08.jpg' %}\" alt=\"金刚狼2\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_5.html\" target=\"_blank\" title=\"金刚狼2\">金刚狼2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/09.jpg' %}\" alt=\"恶魔蜘蛛王\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"恶魔蜘蛛王\">恶魔蜘蛛王</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/10.jpg' %}\" alt=\"永不失败的国家\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" title=\"永不失败的国家\">永不失败的国家</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/11.jpg' %}\" alt=\"美人鱼\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_1.html\" target=\"_blank\" title=\"美人鱼\">美人鱼</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/12.jpg' %}\" alt=\"复仇者联盟2：奥创纪元\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"复仇者联盟2：奥创纪元\">复仇者联盟2：奥创纪元</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/13.jpg' %}\" alt=\"哥斯拉\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"哥斯拉\">哥斯拉</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/14.jpg' %}\" alt=\"美国队长2\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_4.html\" target=\"_blank\" title=\"美国队长2\">美国队长2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/15.jpg' %}\" alt=\"金刚狼2\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_15.html\" target=\"_blank\" title=\"金刚狼2\">金刚狼2</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/16.jpg' %}\" alt=\"恶魔蜘蛛王\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_6.html\" target=\"_blank\" title=\"恶魔蜘蛛王\">恶魔蜘蛛王</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/17.jpg' %}\" alt=\"永不失败的国家\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_7.html\" target=\"_blank\" title=\"永不失败的国家\">永不失败的国家</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_8.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/18.jpg' %}\" alt=\"复仇者联盟\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_8.html\" target=\"_blank\" title=\"复仇者联盟\">复仇者联盟</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/19.jpg' %}\" alt=\"极盗者\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_9.html\" target=\"_blank\" title=\"极盗者\">极盗者</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/20.jpg' %}\" alt=\"蚁人\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_2.html\" target=\"_blank\" title=\"蚁人\">蚁人</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/21.jpg' %}\" alt=\"终结者：创世纪\">\n            </a>\n            <div class=\"label_title\">\n              <span class=\"label_font\">VIP影片</span>\n            </div>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_3.html\" target=\"_blank\" title=\"终结者：创世纪\">终结者：创世纪</a>\n            </strong>\n          </li>\n\n          <li class=\"list_item\" data-trigger-class=\"list_item_hover\">\n            <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" class=\"figure\" tabindex=\"-1\">\n              <img src=\"{% static 'images/Swordsman/22.jpg' %}\" alt=\"猴子王国\">\n            </a>\n            <strong class=\"figure_title\">\n              <a _boss=\"film\" href=\"video_12.html\" target=\"_blank\" title=\"猴子王国\">猴子王国</a>\n            </strong>\n            </li>\n        </ul>\n      </div>\n    </div>\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "movieweb/videoplay/templates/user_login.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>视频登录界面</title>\n  <meta charset=\"UTF-8\"/>\n  <!-- 新 Bootstrap 核心 CSS 文件 -->\n  <link rel=\"stylesheet\" href=\"http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css\">\n  <!-- 可选的Bootstrap主题文件（一般不用引入） -->\n  <link rel=\"stylesheet\" href=\"http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap-theme.min.css\">\n  <!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->\n  <script src=\"http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js\"></script>\n  <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->\n  <script src=\"http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js\"></script>\n  {% load staticfiles %}\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static 'user_login.css' %}\">\n</head>\n<body>\n  <div id=\"cont\">\n    {% if userName_error %}\n      <p class=\"bg-danger text-danger\">没有该用户名 或 用户名错误，请注册 ...</p>\n    {% endif %}\n\n    {% if userPassword_error %}\n      <p class=\"bg-danger text-danger\">密码错误，请重新输入 ...</p>\n    {% endif %}\n\n    {% if userForm_error %}\n      <p class=\"bg-danger text-danger\">输入的数据为空 或 输入的数据不合法 ...</p>\n    {% endif %}\n    <form role=\"form\" method=\"post\">\n      <div class=\"form-group\">\n        <label for=\"user\">用户名</label>\n        <input type=\"text\" name=\"username\" class=\"form-control\" id=\"user\" placeholder=\"请输入用户名 ...\" />\n      </div>\n      <div class=\"form-group\">\n        <label for=\"password\">密码</label>\n        <input type=\"password\" name=\"password\" class=\"form-control\" id=\"password\" placeholder=\"请输入密码 ...\"/>\n      </div>\n      <a href=\"/regist/\">还没账号，立即注册</a>\n      <button type=\"submit\" class=\"btn btn-primary\">登录</button>\n      <!-- <button type=\"reset\" class=\"btn btn-primary my_btn\">重置</button> -->\n    </form>\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "movieweb/videoplay/templates/user_regist.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <title>用户注册界面</title>\n  <meta charset=\"UTF-8\"/>\n  <!-- 新 Bootstrap 核心 CSS 文件 -->\n  <link rel=\"stylesheet\" href=\"http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css\">\n  <!-- 可选的Bootstrap主题文件（一般不用引入） -->\n  <link rel=\"stylesheet\" href=\"http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap-theme.min.css\">\n  <!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->\n  <script src=\"http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js\"></script>\n  <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->\n  <script src=\"http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js\"></script>\n  {% load staticfiles %}\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static 'user_regist.css' %}\"/>\n</head>\n<body>\n  <div id=\"cont\">\n    {% if danger %}\n      <div class=\"alert alert-danger\" alert-dismissible role=\"alert\">\n        <button type=\"button\" class=\"close\" data-dismiss=\"alert\">\n          <span aria-hidden=\"true\">&times;</span>\n          <span class=\"sr-only\">Close</span>\n        </button>\n        <p>输入的数据为空 或 输入的数据不合法，请重新输入 ...</p>\n      </div>\n    {% endif %}\n    <h3>用户注册</h3>\n    <hr />\n    <form class=\"form-horizontal\" role='form' method=\"post\">\n      <div class=\"form-group\">\n        <label for=\"input_user\" class=\"col-sm-2 control-label\">请输入用户名：</label>\n        <div class=\"col-sm-10\">\n          <input type=\"text\" name=\"username\" class=\"form-control\" id=\"input_user\" placeholder=\"请输入字母 ...\"/>\n        </div>\n      </div>\n      <div class=\"form-group\">\n        <label for=\"input_password\" class=\"col-sm-2 control-label\">请输入密码：</label>\n        <div class=\"col-sm-10\">\n          <input type=\"password\" name=\"password\" class=\"form-control\" id=\"input_password\" placeholder=\"请输入数字 ...\"/>\n        </div>\n      </div>\n      <div class=\"from-group\">\n        <div class=\"col-sm-offset-2\" id=\"btn\">\n          <button type=\"submit\" class=\"btn btn-success\">注册</button>\n        </div>\n      </div>\n    </form>\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "movieweb/videoplay/templates/video.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n   <title>视频播放页面</title>\n   <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\" />\n   <!-- 新 Bootstrap 核心 CSS 文件 -->\n   <link rel=\"stylesheet\" href=\"http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css\">\n   <!-- 可选的Bootstrap主题文件（一般不用引入） -->\n   <link rel=\"stylesheet\" href=\"http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap-theme.min.css\">\n   <!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->\n   <script src=\"http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js\"></script>\n   <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->\n   <script src=\"http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js\"></script>\n   <!-- 导入 video.js框架 -->\n   <link href=\"http://vjs.zencdn.net/5.8.8/video-js.css\" rel=\"stylesheet\">\n   <script src=\"http://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js\"></script>\n   <!-- 导入微信分享javaScript文件 -->\n   <script src=\"http://res.wx.qq.com/open/js/jweixin-1.0.0.js\" type=\"text/javascript\"></script>\n   {% load staticfiles %}\n   <link rel=\"stylesheet\" type=\"text/css\" href=\"{% static 'video_play.css' %}\"></link>\n   <script src=\"{% static 'video_play.js' %}\" type=\"text/javascript\"></script>\n</head>\n<body>\n  <div class=\"container\">\n    <!--  模态框 -->\n    <div class=\"modal fade\" id=\"my_modal\" tabindex=\"-1\" role=\"dialog\" aria-labeledby=\"myModalLabel\" aria-hidden=\"true\">\n      <div class=\"modal-dialog\">\n        <div class=\"modal-content\">\n          <div class=\"modal-header\">\n            <button type=\"button\" class=\"close\" data-dismiss=\"modal\">\n              <span aria-hidden=\"true\">&times;</span><span class=\"sr-only\">Close</span>\n            </button>\n            <h3>此电影需要购买</h3>\n          </div>\n          <div class=\"modal-body\">\n              <form role=\"form\" method=\"post\">\n                <div class=\"form-group\">\n                  <label for=\"movie_price\"><p class=\"text-primary\">所需金额: 5￥</p></label>\n                  <input type=\"text\" name=\"movie_pay\" class=\"form-control\" id=\"movie_price\" placeholder=\"请输入金额...\"></input>\n                </div>\n                <button type=\"submit\" class=\"btn btn-success\">发起支付</button>\n              </form>\n          </div>\n          <div class=\"modal-footer\">\n            <button type=\"button\" class=\"btn btn-warning\" data-dismiss=\"modal\">暂不购买</button>\n          </div>\n        </div>\n      </div>\n    </div>\n\n    {% if video_id < 6 %}\n      {% if pay %}\n        <p class=\"text-primary\"><strong>此电影已购买，可观看完整版...</strong></p>\n      {% else %}\n        <p class=\"text-primary\"><strong>此电影需要购买,尚可观看1分钟...</strong></p>\n      {% endif %}\n    {% else %}\n      <p class=\"text-primary\"><strong>此电影可免费观看...</strong></p>\n    {% endif %}\n    <hr />\n    <!-- 视频播放 -->\n    <video id=\"my_video\" controls preload=\"auto\" width=\"100%\" height=\"500px\"\n      class=\"video-js vjs-default-skin vjs-big-play-centered\">\n      <source src=\"{{ video_source.movie }}\" type=\"video/mp4\">\n    </video>\n    <p class=\"text-primary\">当前播放时长/秒：<span id=\"current_time\"></span></p>\n    <p class=\"text-primary\">总时长/秒： <span id=\"video_duration\"></span></p>\n    <hr />\n\n    <p class=\"text-primary my_font\">用户评论：</p>\n\n    <form role=\"form\" method=\"post\">\n      <div class=\"form-group\">\n        <textarea class=\"form-control\" rows=\"3\" name=\"user_comment\" maxlength=\"300\" placeholder=\"看点 | 槽点，不吐不快！别憋着，马上说出来吧！\"></textarea>\n      </div>\n      <button type=\"submit\" class=\"btn btn-success\">发表评论</button>\n    </form>\n    <p class=\"text-primary my_font\" id=\"all_comment\">全部评论</p>\n\n    <div class=\"allComments\">\n      <ul class=\"list-unstyled comment_list\">\n        <!-- 反向迭代出数据库中的数据 -->\n        {% for comment in comments_list reversed %}\n         <li class=\"single_comment\">\n            <div class=\"username\">\n              <strong>{{ comment.comment_username }}</strong>\n            </div>\n            <div class=\"contents\">\n              <p>{{ comment.user_comment }}</p>\n            </div>\n            <div class=\"comment_time\">\n              <p class=\"text-info\">{{ comment.comment_time }}</p>\n            </div>\n        </li>\n        {% endfor %}\n\n        <li class=\"single_comment\">\n          <div class=\"username\">\n            <strong>匿名用户 </strong>\n          </div>\n          <div class=\"contents\">\n            <p>三国吕布，字奉先。</p>\n          </div>\n          <div class=\"comment_time\">\n            <p class=\"text-info\">2016/10/09 | 14:00:30</p>\n          </div>\n        </li>\n      </ul>\n    </div>\n  </div>\n\n  <script>\n  // 获取当前播放视频ID\n  var video_id = {{ video_id }};\n  // 获取已支付电影对象 0：未支付 1： 已支付\n  var movie_pay = {{ movie_payment_obj }};\n  // 获取 DOM 中指定的视频标签\n  var my_video = document.getElementById(\"my_video\");\n  // 监听视频播放位置变化 事件\n  my_video.ontimeupdate = function() {\n    // 返回播放视频当前播放位置/秒\n    var currentTime = my_video.currentTime;\n    // 返回播放视频长度/秒\n    var duration = my_video.duration;\n    document.getElementById(\"current_time\").innerHTML = Math.floor(currentTime);\n    document.getElementById('video_duration').innerHTML = Math.floor(duration);\n    // 当视频ID <= 5 且 未支付 执行\n    if (video_id <= 5 && movie_pay == 0) {\n      if (currentTime >= 10) {\n        // 重新加载视频\n        my_video.load();\n        document.getElementById(\"current_time\").innerHTML = 0;\n        // js动态显示模态框\n        $('#my_modal').modal({show: true})\n      }\n    }\n  }\n// 微信分享配置\n  wx.config({\n            debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来，若要查看传入的参数，可以在pc端打开，参数信息会通过log打出，仅在pc端时才会打印。\n            appId: '{{user.appid}}', // 必填，公众号的唯一标识\n            timestamp: {{user.ret.timestamp}}, // 必填，生成签名的时间戳\n            nonceStr: '{{user.ret.nonceStr}}', // 必填，生成签名的随机串\n            signature: '{{user.ret.signature}}',// 必填，签名\n            jsApiList: ['onMenuShareTimeline', 'onMenuShareAppMessage'] // 必填，需要使用的JS接口列表\n  });\n\n  wx.ready(function(){\n    $(document).ready(function(){\n      // 分享到朋友圈\n      wx.onMenuShareTimeline({\n        title: '支持微信分享视频网页',\n        link: '{{ url }}',\n        imgUrl: 'http://ulab.newclass.org/movie/kakaxi.png',\n        trigger: function () {\n          // 不要尝试在trigger中使用ajax异步请求修改本次分享的内容，因为客户端分享操作是一个同步操作，这时候使用ajax的回包会还没有返回\n          alert('点击分享菜单:ok');\n        },\n        success: function () {\n          alert('分享成功');\n        },\n        cancel: function () {\n          alert('取消分享');\n        }\n      });\n      // alert('注册成功，支持分享到朋友圈');\n    });\n\n    $(document).ready(function(){\n      // 分享给朋友\n      wx.onMenuShareAppMessage({\n        title: '支持微信分享视频网页',\n        desc: '小宇的第一个支持微信--分享的网页',\n        link: '{{ url }}',\n        imgUrl: 'http://ulab.newclass.org/movie/kakaxi.png',\n        trigger: function () {\n          // 不要尝试在trigger中使用ajax异步请求修改本次分享的内容，因为客户端分享操作是一个同步操作，这时候使用ajax的回包会还没有返回\n          alert('点击分享菜单:ok');\n        },\n        success: function () {\n          alert('分享成功');\n        },\n        cancel: function () {\n          alert('取消分享');\n        }\n      });\n      // alert('注册成功，支持分享给朋友');\n    });\n  });\n  </script>\n</body>\n</html>\n"
  },
  {
    "path": "movieweb/videoplay/tests.py",
    "content": "from django.test import TestCase\n\n# Create your tests here.\n"
  },
  {
    "path": "movieweb/videoplay/views.py",
    "content": "# -*- coding: UTF-8 -*-\nfrom django.shortcuts import render\n# Create your views here.\nfrom django.http import HttpResponse, HttpResponseRedirect\nfrom django.template import loader, Context\nfrom django.shortcuts import render_to_response\n\nimport time\nimport random\nimport string\nimport hashlib\nimport requests\n# 导入缓存\nfrom django.core.cache import cache\n# 导入模型\nfrom videoplay.models import Movie\nfrom videoplay.models import User, UserComment, MoviePay\n# 导入表单\nfrom .forms import UserForm, UserCommentForm, MoviePayForm\n\nclass Sign:\n    ''' 实例化初始值 '''\n    def __init__(self, appid, appsecret, url):\n        self.appid = appid\n        # self.access_token = self.get_access_token(appid, appsecret)\n\n        ''' 缓存access_token '''\n        self.access_token = cache.get('access_token')\n        if self.access_token == None:\n            cache.set('access_token', self.get_access_token(appid, appsecret), 7050)\n            self.access_token = cache.get('access_token')\n\n        ''' 缓存jsapi_ticket '''\n        self.jsapi_ticket = cache.get('jsapi_ticket')\n        if self.jsapi_ticket == None:\n            cache.set('jsapi_ticket', self.get_ticket(self.access_token), 7100)\n            self.jsapi_ticket = cache.get('jsapi_ticket')\n\n        self.ret = {\n            'nonceStr': self.__create_nonce_str(),\n            'jsapi_ticket': self.jsapi_ticket,\n            'timestamp': self.__create_timestamp(),\n            'url': url,\n         }\n        # 缓存signature\n        # self.signature = cache.get('signature')\n        # if self.signature == None:\n        #     cache.set('signature', self.sign(), 7150)\n        #     self.signature = cache.get('signature')\n\n    ''' 获取随机字符串 '''\n    def __create_nonce_str(self):\n        return ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(16))\n    ''' 获取时间戳 '''\n    def __create_timestamp(self):\n        return int(time.time())\n    ''' 获取access_token '''\n    def get_access_token(self, appid, appsecret):\n        url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={}&secret={}'.format(appid,appsecret)\n        r = requests.get(url)\n        data = r.json()\n        access_token = data.get('access_token')\n        return access_token\n    ''' 获取jsapi_ticket '''\n    def get_ticket(self, access_token, type='jsapi'):\n        url = 'https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token={}&type={}'.format(access_token, type)\n        r = requests.get(url)\n        data = r.json()\n        ticket = data.get('ticket')\n        return ticket\n    ''' 获取signature '''\n    def sign(self):\n        string = '&'.join(['%s=%s' % (key.lower(), self.ret[key]) for key in sorted(self.ret)])\n        self.ret['signature'] = hashlib.sha1(string).hexdigest()\n        return self.ret\n        # return self.ret.get('signature')\n\n\"\"\" 视频播放页面 \"\"\"\ndef play(request, id):\n    # 通过 session 来获取传过来的数据 (用户名)\n    comment_username = request.session.get('comment_username')\n    if request.method == \"POST\":\n        print request.POST\n        if 'user_comment' in request.POST:\n            ''' 用户评论 '''\n            # 绑定评论表单\n            uf_comment = UserCommentForm(request.POST)\n            # 校验提交数据是否合法\n            if uf_comment.is_valid():\n                # 如合法,获取数据并赋于变量\n                user_comment = uf_comment.cleaned_data.get('user_comment')\n                # 获取当前时间 (格式化)\n                comment_time = time.strftime('%Y/%m/%d | %H:%M:%S', time.localtime())\n                # 存入数据库\n                UserComment.objects.create(comment_username = comment_username, user_comment = user_comment, comment_time = comment_time)\n                print user_comment\n                print comment_time\n                # 获取当前除域名以外的请求路径\n                path = request.path\n                print path\n                ''' 重定向到当前页面 '''\n                return HttpResponseRedirect(path)\n        elif 'movie_pay' in request.POST:\n            ''' 电影支付 '''\n            movie_id = int(id)\n            # 绑定支付表单\n            uf_payment = MoviePayForm(request.POST)\n            # 校验提交数据是否合法\n            if uf_payment.is_valid():\n                # 获取支付数据\n                movie_pay = uf_payment.cleaned_data.get('movie_pay')\n                # 存入数据库\n                MoviePay.objects.create(pay_username = comment_username, movie_id = movie_id, movie_pay = movie_pay)\n                # 获取当前除域名以外的请求路径\n                path = request.path\n                ''' 重定向到当前页面 '''\n                return HttpResponseRedirect(path)\n\n    ''' 微信分享的 code '''\n    appid, appsecret = 'wx89d78fda8c962552', '41d433fe0e3194e1aff2d607c585be65'\n    # 动态获取当前的url\n    url = 'http://' + request.get_host() + request.get_full_path()\n    sign = Sign(appid, appsecret, url)\n    # 调用签名方法\n    sign.sign()\n    # 将获取到的字符串类型参数转换为 int\n    video_id = int(id)\n    # 获取(数据库)模型中对应电影的对象\n    video_source = Movie.objects.get(id = video_id)\n    # 获取数据库中所有的评论对象 | all() 和 filter()函数返回一个记录集 (列表)\n    comments_list = UserComment.objects.all()\n    # 获取数据库中已支付的对象\n    movie_payment_obj = MoviePay.objects.filter(pay_username = comment_username, movie_id = video_id)\n    # 支付 False：未购买 True: 已购买\n    pay = False\n    if video_id <= 5:\n        if len(movie_payment_obj) != 0:\n            pay = True\n        else:\n            pay = False\n    # 加载视频播放模板\n    t = loader.get_template(\"video.html\")\n    c = Context({\"user\": sign, \"video_source\": video_source, \"video_id\": video_id,\"movie_payment_obj\": len(movie_payment_obj), \"pay\": pay, \"url\": url, \"comments_list\": comments_list})\n    return HttpResponse(t.render(c))\n\n\"\"\" 用户注册 \"\"\"\ndef regist(request):\n    if request.method == \"POST\":\n        # 绑定表单\n        uf_regist = UserForm(request.POST)\n        # 校验提交数据是否合法\n        if uf_regist.is_valid():\n            # 如合法,获取各自的数据并赋于变量\n            username = uf_regist.cleaned_data.get('username')\n            password = uf_regist.cleaned_data.get('password')\n            # 存入数据库\n            User.objects.create(username = username, password = password)\n            # 跳转到登录界面\n            return HttpResponseRedirect('/')\n        else:\n            return render(request, \"user_regist.html\", {\"danger\": True})\n    else:\n        uf_regist = UserForm()\n    # 加载用户注册模板\n    user_regist = loader.get_template(\"user_regist.html\")\n    return HttpResponse(user_regist.render())\n\n\"\"\" 用户登录 \"\"\"\ndef login(request):\n    if request.method == 'POST':\n        # 绑定表单 | request.Post:获取表单提交的数据 (类字典对象)\n        uf_login = UserForm(request.POST)\n        # 校验提交数据是否合法\n        if uf_login.is_valid():\n            # 如合法后,获取各自的数据并赋于变量\n            username = uf_login.cleaned_data['username']\n            password = uf_login.cleaned_data['password']\n            ''' 异常 用户名不存在 '''\n            try:\n                User.objects.get(username = username)\n            except User.DoesNotExist:\n                return render_to_response('user_login.html', {\"userName_error\": True})\n            # 获取数据库(模型)中对应的对象\n            user = User.objects.filter(username__exact = username, password__exact = password)\n            # 如果输入的对象匹配数据库中的对象为 True（存在数据库中）\n            if user:\n                # 创建 HTTpResponse 对象（跳转至 /movie 页面）\n                response = HttpResponseRedirect('/movie/')\n                # 设置 cookie 值，有效期 1 小时\n                response.set_cookie('username', username)\n                # response.set_cookie('username', username, 3600)\n                # request.session['username'] = username  /使用 session 来设置 cookie值， 等效同上\n                return response\n            # 输入的密码不匹配数据库中的密码 执行\n            elif password !=  User.objects.get(username = username).password:\n                return render_to_response('user_login.html', {\"userPassword_error\" : True})\n\n        # 如果输入的内容不合法（数据为空）\n        else:\n            return render_to_response('user_login.html', {'userForm_error': True})\n    else:\n        uf_login = UserForm()\n    # 加载用户登录模板\n    user_login = loader.get_template(\"user_login.html\")\n    return HttpResponse(user_login.render())\n\"\"\" 网站首页 \"\"\"\ndef index(request):\n    username = request.COOKIES.get('username', None)\n    # username = request.session.get('username', 'anonymity') /使用 session 来获取传来的 cookie值， 等效同上\n    ''' 设置 session 的数据（传到视频播放页面）'''\n    request.session['comment_username'] = username\n    # 获取用户名成功 执行\n    if username != None:\n        return render_to_response('index.html', {\"username\": username})\n    #  用户名超时 执行\n    else:\n        return render_to_response('index.html', {'error': True})\n\n\"\"\" 实现swagger code \"\"\"\nfrom rest_framework import viewsets\nfrom videoplay.models import Movie\nfrom videoplay.serializers import MovieSerializer\n# ViewSets定义了View的行为\nclass SnippetViewSet(viewsets.ModelViewSet):\n    queryset = Movie.objects.all()\n    serializer_class = MovieSerializer\n"
  }
]