├── DGRKGRS ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── settings.py ├── urls.py └── wsgi.py ├── README.md ├── __pycache__ └── manage.cpython-37.pyc ├── manage.py ├── myKGRS ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── geckodriver.log ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-37.pyc ├── models.py ├── scene.py ├── static │ ├── css │ │ ├── font-awesome-4.7.0 │ │ │ ├── css │ │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ └── style.css │ ├── font │ │ └── font_svcu02nytc │ │ │ ├── demo.css │ │ │ ├── demo_index.html │ │ │ ├── iconfont.css │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.js │ │ │ ├── iconfont.json │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ ├── image │ │ ├── 1.jpg │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 111.png │ │ ├── 1111.jpg │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.jpg │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 3.jpg │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.jpg │ │ ├── 36.jpg │ │ ├── 37.jpg │ │ ├── 38.jpg │ │ ├── 39.jpg │ │ ├── 4.jpg │ │ ├── 40.jpeg │ │ ├── 41.jpg │ │ ├── 42.jpg │ │ ├── 43.jpg │ │ ├── 44.jpg │ │ ├── 45.jpg │ │ ├── 46.jpg │ │ ├── 47.png │ │ ├── 48.png │ │ ├── 49.png │ │ ├── 5.jpg │ │ ├── 50.png │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ ├── bilibiliimg.jpg │ │ ├── hd.png │ │ ├── logoblack.png │ │ ├── lun1.jpg │ │ ├── lun2.jpg │ │ ├── lun3.jpg │ │ ├── one.png │ │ ├── onet.png │ │ ├── qqimg.png │ │ ├── star.png │ │ ├── star1.png │ │ ├── suc │ │ │ ├── 1.jpeg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 2.jpeg │ │ │ ├── 222.jpg │ │ │ ├── 3-7.jpg │ │ │ ├── 3-8.jpg │ │ │ ├── 3.jpeg │ │ │ ├── 4.jpeg │ │ │ ├── 5.jpeg │ │ │ ├── 6.jpeg │ │ │ ├── 7.jpeg │ │ │ ├── 8.jpeg │ │ │ ├── 9.jpeg │ │ │ ├── hd1.png │ │ │ ├── hd2.jpg │ │ │ ├── img-ede4dc2b333a25876202c28ddc0563d5.jpg │ │ │ ├── lb1.jpg │ │ │ ├── lb2.jpg │ │ │ ├── lb3.jpg │ │ │ ├── lb6.jpg │ │ │ └── lb7.jpg │ │ ├── sur.jpg │ │ ├── t1.jpg │ │ ├── t2.jpg │ │ ├── three.png │ │ ├── threet.png │ │ ├── two.png │ │ ├── twot.png │ │ ├── v.png │ │ ├── video.mp4 │ │ ├── 视频.mp4 │ │ └── 视频1.mp4 │ ├── script │ │ ├── index.js │ │ ├── jquery-3.4.1.min.js │ │ ├── jquery.min.js │ │ ├── js.js │ │ ├── logo.js │ │ ├── newlist.js │ │ └── tags.js │ └── style │ │ ├── activity.css │ │ ├── imglist.css │ │ ├── index.css │ │ └── public.css ├── temp.xls ├── templates │ ├── activity.html │ ├── activity2.html │ ├── imglist.html │ ├── index.html │ ├── login.html │ ├── 关系——景点景点之间的关系.xls │ ├── 景点信息-分类后.xls │ └── 武汉景点信息.xls ├── tests.py ├── urls.py ├── views.py └── 备份 │ ├── activity.html │ └── activity2.html ├── sql.zip ├── temp.xls └── test.png /DGRKGRS/__init__.py: -------------------------------------------------------------------------------- 1 | import pymysql 2 | pymysql.install_as_MySQLdb() -------------------------------------------------------------------------------- /DGRKGRS/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/DGRKGRS/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /DGRKGRS/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/DGRKGRS/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /DGRKGRS/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/DGRKGRS/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /DGRKGRS/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/DGRKGRS/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /DGRKGRS/settings.py: -------------------------------------------------------------------------------- 1 | """ 2 | Django settings for DGRKGRS project. 3 | 4 | Generated by 'django-admin startproject' using Django 2.2.5. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/2.2/topics/settings/ 8 | 9 | For the full list of settings and their values, see 10 | https://docs.djangoproject.com/en/2.2/ref/settings/ 11 | """ 12 | 13 | import os 14 | from pathlib import Path 15 | 16 | # Build paths inside the project like this: os.path.join(BASE_DIR, ...) 17 | BASE_DIR = Path(__file__).resolve().parent.parent 18 | 19 | 20 | # Quick-start development settings - unsuitable for production 21 | # See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ 22 | 23 | # SECURITY WARNING: keep the secret key used in production secret! 24 | SECRET_KEY = 'a_ib#okrt1+op7_&_+s4+@3iyr+$gmfcbpefhg2h#iu1g#k(pi' 25 | 26 | # SECURITY WARNING: don't run with debug turned on in production! 27 | DEBUG = True 28 | 29 | ALLOWED_HOSTS = [] 30 | 31 | 32 | # Application definition 33 | 34 | INSTALLED_APPS = [ 35 | 'django.contrib.admin', 36 | 'django.contrib.auth', 37 | 'django.contrib.contenttypes', 38 | 'django.contrib.sessions', 39 | 'django.contrib.messages', 40 | 'django.contrib.staticfiles', 41 | 'myKGRS', 42 | ] 43 | 44 | MIDDLEWARE = [ 45 | 'django.middleware.security.SecurityMiddleware', 46 | 'django.contrib.sessions.middleware.SessionMiddleware', 47 | 'django.middleware.common.CommonMiddleware', 48 | 'django.middleware.csrf.CsrfViewMiddleware', 49 | 'django.contrib.auth.middleware.AuthenticationMiddleware', 50 | 'django.contrib.messages.middleware.MessageMiddleware', 51 | 'django.middleware.clickjacking.XFrameOptionsMiddleware', 52 | ] 53 | 54 | ROOT_URLCONF = 'DGRKGRS.urls' 55 | 56 | TEMPLATES = [ 57 | { 58 | 'BACKEND': 'django.template.backends.django.DjangoTemplates', 59 | 'DIRS': [BASE_DIR/'templates'], 60 | 'APP_DIRS': True, 61 | 'OPTIONS': { 62 | 'context_processors': [ 63 | 'django.template.context_processors.debug', 64 | 'django.template.context_processors.request', 65 | 'django.contrib.auth.context_processors.auth', 66 | 'django.contrib.messages.context_processors.messages', 67 | ], 68 | }, 69 | }, 70 | ] 71 | 72 | WSGI_APPLICATION = 'DGRKGRS.wsgi.application' 73 | 74 | 75 | # Database 76 | # https://docs.djangoproject.com/en/2.2/ref/settings/#databases 77 | 78 | DATABASES = { 79 | # 'default': { 80 | # 'ENGINE': 'django.db.backends.sqlite3', 81 | # 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), 82 | # } 83 | 'default':{ 84 | 'ENGINE':'django.db.backends.mysql', 85 | 'NAME':'yao',#所使用的数据库的名字 86 | 'USER':'root',#数据库服务器的用户 87 | 'PASSWORD':'123',#密码 88 | 'HOST':'127.0.0.1',#主机 89 | 'PORT':'3306',#端口 90 | } 91 | } 92 | 93 | 94 | # Password validation 95 | # https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators 96 | 97 | AUTH_PASSWORD_VALIDATORS = [ 98 | { 99 | 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 100 | }, 101 | { 102 | 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 103 | }, 104 | { 105 | 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 106 | }, 107 | { 108 | 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 109 | }, 110 | ] 111 | 112 | 113 | # Internationalization 114 | # https://docs.djangoproject.com/en/2.2/topics/i18n/ 115 | 116 | LANGUAGE_CODE = 'zh-hans' 117 | 118 | TIME_ZONE = 'Asia/Shanghai' 119 | 120 | USE_I18N = True 121 | 122 | USE_L10N = True 123 | 124 | USE_TZ = True 125 | 126 | 127 | # Static files (CSS, JavaScript, Images) 128 | # https://docs.djangoproject.com/en/2.2/howto/static-files/ 129 | 130 | STATIC_URL = '/static/' 131 | -------------------------------------------------------------------------------- /DGRKGRS/urls.py: -------------------------------------------------------------------------------- 1 | """DGRKGRS URL Configuration 2 | 3 | The `urlpatterns` list routes URLs to views. For more information please see: 4 | https://docs.djangoproject.com/en/2.2/topics/http/urls/ 5 | Examples: 6 | Function views 7 | 1. Add an import: from my_app import views 8 | 2. Add a URL to urlpatterns: path('', views.home, name='home') 9 | Class-based views 10 | 1. Add an import: from other_app.views import Home 11 | 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 12 | Including another URLconf 13 | 1. Import the include() function: from django.urls import include, path 14 | 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 15 | """ 16 | from django.contrib import admin 17 | from django.urls import path,include 18 | 19 | urlpatterns = [ 20 | path('admin/', admin.site.urls), 21 | path('', include('myKGRS.urls')), 22 | ] 23 | -------------------------------------------------------------------------------- /DGRKGRS/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for DGRKGRS project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'DGRKGRS.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DGRKGRS 2 | 基于多模态知识图谱的智能旅游推荐系统 3 | 2023.4.15 新增数据库文件,可以直接demo该系统。 4 | 5 | 6 | 总体思路: 7 | 我的项目不太方便demo。忘记记录需要的第三方库了。本来数据库也没有,更难demo,我已经给加上了。 8 | 得在电脑下载django框架,然后运行该项目,根据报错信息下载对应的第三方库。 9 | 最后呈现的系统是有一个前台展示一些静态的旅游资源,然后登陆后有个问答界面和多模态知识图谱界面,有个机器人和你聊天对话,会根据你对景点的评分或是你所说的喜欢的景点为你推荐一些景点。 10 | (思路是如此的,但是我的推荐效果可能不一定准确,最理想的状态是后台users-items映射关系数据,也就是用户对景点的评分以及景点图谱数据都输入到MKR模型中,通过多特征学习增强知识图谱在推荐系统中作用的这一模型,得到其余用户对景点的评分数据,然后根据评分从高到低排序,呈现给用户 模型训练出来的 认为用户最有可能评分高的景点,然后完成整个推荐系统。而具体MKR模型的输入以及输出,不在该系统中体现,该系统只是展示结果。) 11 | ![image](https://user-images.githubusercontent.com/67043197/232212365-8626d6cf-087c-46e3-97f8-d4060b31b011.png) 12 | ![image](https://user-images.githubusercontent.com/67043197/232212376-7deefa0d-8037-46d1-ae0b-e302bf43ae42.png) 13 | ![image](https://user-images.githubusercontent.com/67043197/232212391-1e6ee283-a037-430b-a1fe-f34c35af48b3.png) 14 | ![image](https://user-images.githubusercontent.com/67043197/232212400-c5e6fcf2-4e21-43c1-a73c-2b48d5631cef.png) 15 | ![image](https://user-images.githubusercontent.com/67043197/232212404-48e38686-5bd6-4128-a012-2baea863d32e.png) 16 | 17 | -------------------------------------------------------------------------------- /__pycache__/manage.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/__pycache__/manage.cpython-37.pyc -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Django's command-line utility for administrative tasks.""" 3 | import os 4 | import sys 5 | 6 | 7 | def main(): 8 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'DGRKGRS.settings') 9 | try: 10 | from django.core.management import execute_from_command_line 11 | except ImportError as exc: 12 | raise ImportError( 13 | "Couldn't import Django. Are you sure it's installed and " 14 | "available on your PYTHONPATH environment variable? Did you " 15 | "forget to activate a virtual environment?" 16 | ) from exc 17 | execute_from_command_line(sys.argv) 18 | 19 | 20 | if __name__ == '__main__': 21 | main() 22 | -------------------------------------------------------------------------------- /myKGRS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/__init__.py -------------------------------------------------------------------------------- /myKGRS/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /myKGRS/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /myKGRS/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /myKGRS/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /myKGRS/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /myKGRS/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /myKGRS/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MykgrsConfig(AppConfig): 5 | name = 'myKGRS' 6 | -------------------------------------------------------------------------------- /myKGRS/geckodriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/geckodriver.log -------------------------------------------------------------------------------- /myKGRS/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/migrations/__init__.py -------------------------------------------------------------------------------- /myKGRS/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /myKGRS/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /myKGRS/scene.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | ''' 4 | 景点爬虫,从某个具体的地点开始 5 | ''' 6 | 7 | 8 | from selenium import webdriver 9 | import pandas as pd 10 | import time 11 | 12 | def getDriver(): 13 | options = webdriver.ChromeOptions() 14 | options.add_argument("--disable-extensions") 15 | options.add_argument("--disable-gpu") 16 | #options.add_argument("--no-sandbox") # linux only 17 | options.add_experimental_option("excludeSwitches", ["enable-automation"]) 18 | options.add_experimental_option("useAutomationExtension", False) 19 | driver = webdriver.Chrome(options=options) 20 | driver.execute_cdp_cmd("Network.enable", {}) 21 | driver.execute_cdp_cmd("Network.setExtraHTTPHeaders", {"headers": {"User-Agent": "browserClientA"}}) 22 | driver.execute_cdp_cmd("Page.addScriptToEvaluateOnNewDocument", { 23 | "source": """ 24 | Object.defineProperty(navigator, 'webdriver', { 25 | get: () => undefined 26 | }) 27 | """ 28 | }) 29 | return driver 30 | 31 | driver = getDriver() 32 | 33 | def to_one_place_detali(place): # 进入一个地区的详情页 34 | url = 'http://www.mafengwo.cn/search/q.php?q='+place 35 | driver.get(url) 36 | elements = driver.find_elements_by_class_name('head-link') 37 | url = '' 38 | for i in elements: 39 | if '热门景点' in i.text: 40 | url = i.find_element_by_tag_name('a').get_attribute('href') 41 | break 42 | print(url) 43 | driver.get(url) 44 | 45 | def to_every_jd_detail(): # 收集每个景点详情页的网站 46 | url_data = [] 47 | while True: 48 | time.sleep(1) 49 | elements = driver.find_element_by_class_name('scenic-list.clearfix').find_elements_by_tag_name('li') 50 | for i in elements: 51 | url = i.find_element_by_tag_name('a').get_attribute('href') 52 | url_data.append(url) 53 | # print(url) 54 | try: 55 | driver.find_element_by_class_name('pg-next').click() 56 | except: 57 | return url_data 58 | 59 | def get_one_jd_detail(place): # 获取一个景点的详细信息 60 | part_data=[] 61 | url_data=to_every_jd_detail() 62 | print(url_data) 63 | for i in url_data: 64 | time.sleep(1) 65 | driver.get(i) 66 | time.sleep(3) 67 | try: 68 | j=driver.find_element_by_class_name('mod.mod-detail') 69 | except: 70 | j='' 71 | try: 72 | summary=j.find_element_by_class_name('summary').text 73 | except: 74 | summary='' 75 | try: 76 | tel=j.find_element_by_class_name('baseinfo').find_element_by_class_name('tel').find_element_by_class_name('content').text 77 | except: 78 | tel='' 79 | try: 80 | item_time = j.find_element_by_class_name('baseinfo').find_element_by_class_name( 81 | 'item-time').find_element_by_class_name('content').text 82 | except: 83 | item_time = '' 84 | one_data=dict(zip(['summary','tel','item_time'],[summary,tel,item_time])) 85 | part_data.append(one_data) 86 | to_one_place_detali(place) 87 | return part_data 88 | 89 | 90 | 91 | def get_one_place_all_jd(place): # 获取一个地方所有景点信息 92 | all_data = [] 93 | while True: 94 | time.sleep(1) 95 | elements = driver.find_element_by_class_name('scenic-list.clearfix').find_elements_by_tag_name('li') 96 | for i in elements: 97 | url = i.find_element_by_tag_name('a').get_attribute('href') 98 | title = i.find_element_by_tag_name('a').get_attribute('title') 99 | img = i.find_element_by_tag_name('img').get_attribute('src') 100 | one_data = dict(zip(['url','title','img','location'],[url,title,img,place])) 101 | all_data.append(one_data) 102 | print(one_data) 103 | try: 104 | driver.find_element_by_class_name('pg-next').click() 105 | except: 106 | return all_data 107 | 108 | 109 | if __name__ == '__main__': 110 | place_list = ['武汉'] 111 | data=[] 112 | all_data = [] 113 | for i in place_list: 114 | to_one_place_detali(i) 115 | data1=get_one_jd_detail(i) 116 | data2 = get_one_place_all_jd(i) 117 | for j in range(len(data1)): 118 | d={**data1[j],**data2[j]} 119 | data.append(d) 120 | all_data+=data 121 | df = pd.DataFrame(all_data) 122 | df.to_excel('武汉景点信息.xls',index=False) 123 | 124 | 125 | 126 | 127 | 128 | -------------------------------------------------------------------------------- /myKGRS/static/css/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/css/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /myKGRS/static/css/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/css/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /myKGRS/static/css/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/css/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /myKGRS/static/css/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/css/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /myKGRS/static/css/style.css: -------------------------------------------------------------------------------- 1 | .box { 2 | position: relative; 3 | top: 0; 4 | opacity: 1; 5 | float: left; 6 | padding: 60px 50px 40px 50px; 7 | width: 100%; 8 | background: #fff; 9 | border-radius: 10px; 10 | transform: scale(1); 11 | -webkit-transform: scale(1); 12 | -ms-transform: scale(1); 13 | z-index: 5; 14 | } 15 | 16 | .box.back { 17 | transform: scale(.95); 18 | -webkit-transform: scale(.95); 19 | -ms-transform: scale(.95); 20 | top: -20px; 21 | opacity: .8; 22 | z-index: -1; 23 | } 24 | 25 | .box:before { 26 | content: ""; 27 | width: 100%; 28 | height: 30px; 29 | border-radius: 10px; 30 | position: absolute; 31 | top: -10px; 32 | background: rgba(255, 255, 255, .6); 33 | left: 0; 34 | transform: scale(.95); 35 | -webkit-transform: scale(.95); 36 | -ms-transform: scale(.95); 37 | z-index: -1; 38 | } 39 | 40 | .overbox .title { 41 | color: #fff; 42 | } 43 | 44 | .overbox .title:before { 45 | background: #fff; 46 | } 47 | 48 | .title { 49 | width: 100%; 50 | float: left; 51 | line-height: 46px; 52 | font-size: 34px; 53 | font-weight: 700; 54 | letter-spacing: 2px; 55 | color: #25ed96; 56 | position: relative; 57 | } 58 | 59 | .title:before { 60 | content: ""; 61 | width: 5px; 62 | height: 100%; 63 | position: absolute; 64 | top: 0; 65 | left: -50px; 66 | background: #25ed96; 67 | } 68 | 69 | .input, 70 | .input label, 71 | .input input, 72 | .input .spin, 73 | .button, 74 | .button button .button.login button i.fa, 75 | .material-button .shape:before, 76 | .material-button .shape:after, 77 | .button.login button { 78 | transition: 300ms cubic-bezier(.4, 0, .2, 1); 79 | -webkit-transition: 300ms cubic-bezier(.4, 0, .2, 1); 80 | -ms-transition: 300ms cubic-bezier(.4, 0, .2, 1); 81 | } 82 | 83 | .material-button, 84 | .alt-2, 85 | .material-button .shape, 86 | .alt-2 .shape, 87 | .box { 88 | transition: 400ms cubic-bezier(.4, 0, .2, 1); 89 | -webkit-transition: 400ms cubic-bezier(.4, 0, .2, 1); 90 | -ms-transition: 400ms cubic-bezier(.4, 0, .2, 1); 91 | } 92 | 93 | .input, 94 | .input label, 95 | .input input, 96 | .input .spin, 97 | .button, 98 | .button button { 99 | width: 100%; 100 | float: left; 101 | } 102 | 103 | .input, 104 | .button { 105 | margin-top: 30px; 106 | height: 70px; 107 | } 108 | 109 | .input, 110 | .input input, 111 | .button, 112 | .button button { 113 | position: relative; 114 | } 115 | 116 | .input input { 117 | height: 60px; 118 | top: 10px; 119 | border: none; 120 | background: transparent; 121 | } 122 | 123 | .input input, 124 | .input label, 125 | .button button { 126 | font-family: 'Roboto', sans-serif; 127 | font-size: 24px; 128 | color: rgba(0, 0, 0, 0.8); 129 | font-weight: 300; 130 | } 131 | 132 | .input:before, 133 | .input .spin { 134 | width: 100%; 135 | height: 1px; 136 | position: absolute; 137 | bottom: 0; 138 | left: 0; 139 | } 140 | 141 | .input:before { 142 | content: ""; 143 | background: rgba(0, 0, 0, 0.1); 144 | z-index: 3; 145 | } 146 | 147 | .input .spin { 148 | background: #ED2553; 149 | z-index: 4; 150 | width: 0; 151 | } 152 | 153 | .overbox .input .spin { 154 | background: rgba(255, 255, 255, 1); 155 | } 156 | 157 | .overbox .input:before { 158 | background: rgba(255, 255, 255, 0.5); 159 | } 160 | 161 | .input label { 162 | position: absolute; 163 | top: 10px; 164 | left: 0; 165 | z-index: 2; 166 | cursor: pointer; 167 | line-height: 60px; 168 | } 169 | 170 | .button.login { 171 | width: 60%; 172 | left: 20%; 173 | } 174 | 175 | .button.login button, 176 | .button button { 177 | width: 100%; 178 | line-height: 64px; 179 | left: 0%; 180 | background-color: transparent; 181 | border: 3px solid rgba(0, 0, 0, 0.1); 182 | font-weight: 900; 183 | font-size: 18px; 184 | color: rgba(0, 0, 0, 0.2); 185 | } 186 | 187 | .button.login { 188 | margin-top: 30px; 189 | } 190 | 191 | .button { 192 | margin-top: 20px; 193 | } 194 | 195 | .button button { 196 | background-color: #fff; 197 | color: #25ed8c; 198 | border: none; 199 | } 200 | 201 | .button.login button.active { 202 | border: 3px solid transparent; 203 | color: #fff !important; 204 | } 205 | 206 | .button.login button.active span { 207 | opacity: 0; 208 | transform: scale(0); 209 | -webkit-transform: scale(0); 210 | -ms-transform: scale(0); 211 | } 212 | 213 | .button.login button.active i.fa { 214 | opacity: 1; 215 | transform: scale(1) rotate(-0deg); 216 | -webkit-transform: scale(1) rotate(-0deg); 217 | -ms-transform: scale(1) rotate(-0deg); 218 | } 219 | 220 | .button.login button i.fa { 221 | width: 100%; 222 | height: 100%; 223 | position: absolute; 224 | top: 0; 225 | left: 0; 226 | line-height: 60px; 227 | transform: scale(0) rotate(-45deg); 228 | -webkit-transform: scale(0) rotate(-45deg); 229 | -ms-transform: scale(0) rotate(-45deg); 230 | } 231 | 232 | .button.login button:hover { 233 | color: #25ed96; 234 | border-color: #25ed46; 235 | } 236 | 237 | .button { 238 | margin: 40px 0; 239 | overflow: hidden; 240 | z-index: 2; 241 | } 242 | 243 | .button button { 244 | cursor: pointer; 245 | position: relative; 246 | z-index: 2; 247 | } 248 | 249 | .pass-forgot { 250 | width: 100%; 251 | float: left; 252 | text-align: center; 253 | color: rgba(0, 0, 0, 0.4); 254 | font-size: 18px; 255 | } 256 | 257 | .click-efect { 258 | position: absolute; 259 | top: 0; 260 | left: 0; 261 | background: #25ed96; 262 | border-radius: 50%; 263 | } 264 | 265 | .overbox { 266 | width: 100%; 267 | height: 100%; 268 | position: absolute; 269 | top: 0; 270 | left: 0; 271 | overflow: inherit; 272 | border-radius: 10px; 273 | padding: 60px 50px 40px 50px; 274 | } 275 | 276 | .overbox .title, 277 | .overbox .button, 278 | .overbox .input { 279 | z-index: 111; 280 | position: relative; 281 | color: #fff !important; 282 | display: none; 283 | } 284 | 285 | .overbox .title { 286 | width: 80%; 287 | } 288 | 289 | .overbox .input { 290 | margin-top: 20px; 291 | } 292 | 293 | .overbox .input input, 294 | .overbox .input label { 295 | color: #fff; 296 | } 297 | 298 | .overbox .material-button, 299 | .overbox .material-button .shape, 300 | .overbox .alt-2, 301 | .overbox .alt-2 .shape { 302 | display: block; 303 | } 304 | 305 | .material-button, 306 | .alt-2 { 307 | width: 140px; 308 | height: 140px; 309 | border-radius: 50%; 310 | background: #25ed8c; 311 | position: absolute; 312 | top: 40px; 313 | right: -70px; 314 | cursor: pointer; 315 | z-index: 100; 316 | transform: translate(0%, 0%); 317 | -webkit-transform: translate(0%, 0%); 318 | -ms-transform: translate(0%, 0%); 319 | } 320 | 321 | .material-button .shape, 322 | .alt-2 .shape { 323 | position: absolute; 324 | top: 0; 325 | right: 0; 326 | width: 100%; 327 | height: 100%; 328 | } 329 | 330 | .material-button .shape:before, 331 | .alt-2 .shape:before, 332 | .material-button .shape:after, 333 | .alt-2 .shape:after { 334 | content: ""; 335 | background: #fff; 336 | position: absolute; 337 | top: 50%; 338 | left: 50%; 339 | transform: translate(-50%, -50%) rotate(360deg); 340 | -webkit-transform: translate(-50%, -50%) rotate(360deg); 341 | -ms-transform: translate(-50%, -50%) rotate(360deg); 342 | } 343 | 344 | .material-button .shape:before, 345 | .alt-2 .shape:before { 346 | width: 25px; 347 | height: 4px; 348 | } 349 | 350 | .material-button .shape:after, 351 | .alt-2 .shape:after { 352 | height: 25px; 353 | width: 4px; 354 | } 355 | 356 | .material-button.active, 357 | .alt-2.active { 358 | top: 50%; 359 | right: 50%; 360 | transform: translate(50%, -50%) rotate(0deg); 361 | -webkit-transform: translate(50%, -50%) rotate(0deg); 362 | -ms-transform: translate(50%, -50%) rotate(0deg); 363 | } 364 | 365 | body { 366 | /*background-image: url(https://api.dujin.org/bing/1920.php);*/ 367 | background-position: center; 368 | background-size: cover; 369 | background-repeat: no-repeat; 370 | min-height: 100vh; 371 | font-family: 'Roboto', sans-serif; 372 | } 373 | 374 | body, 375 | html { 376 | overflow: hidden; 377 | } 378 | 379 | .materialContainer { 380 | width: 100%; 381 | max-width: 460px; 382 | position: absolute; 383 | top: 50%; 384 | left: 50%; 385 | transform: translate(-50%, -50%); 386 | -webkit-transform: translate(-50%, -50%); 387 | -ms-transform: translate(-50%, -50%); 388 | } 389 | 390 | *, 391 | *:after, 392 | *::before { 393 | -webkit-box-sizing: border-box; 394 | -moz-box-sizing: border-box; 395 | box-sizing: border-box; 396 | margin: 0; 397 | padding: 0; 398 | text-decoration: none; 399 | list-style-type: none; 400 | outline: none; 401 | } -------------------------------------------------------------------------------- /myKGRS/static/font/font_svcu02nytc/demo.css: -------------------------------------------------------------------------------- 1 | /* Logo 字体 */ 2 | @font-face { 3 | font-family: "iconfont logo"; 4 | src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834'); 5 | src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'), 6 | url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'), 7 | url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'), 8 | url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg'); 9 | } 10 | 11 | .logo { 12 | font-family: "iconfont logo"; 13 | font-size: 160px; 14 | font-style: normal; 15 | -webkit-font-smoothing: antialiased; 16 | -moz-osx-font-smoothing: grayscale; 17 | } 18 | 19 | /* tabs */ 20 | .nav-tabs { 21 | position: relative; 22 | } 23 | 24 | .nav-tabs .nav-more { 25 | position: absolute; 26 | right: 0; 27 | bottom: 0; 28 | height: 42px; 29 | line-height: 42px; 30 | color: #666; 31 | } 32 | 33 | #tabs { 34 | border-bottom: 1px solid #eee; 35 | } 36 | 37 | #tabs li { 38 | cursor: pointer; 39 | width: 100px; 40 | height: 40px; 41 | line-height: 40px; 42 | text-align: center; 43 | font-size: 16px; 44 | border-bottom: 2px solid transparent; 45 | position: relative; 46 | z-index: 1; 47 | margin-bottom: -1px; 48 | color: #666; 49 | } 50 | 51 | 52 | #tabs .active { 53 | border-bottom-color: #f00; 54 | color: #222; 55 | } 56 | 57 | .tab-container .content { 58 | display: none; 59 | } 60 | 61 | /* 页面布局 */ 62 | .main { 63 | padding: 30px 100px; 64 | width: 960px; 65 | margin: 0 auto; 66 | } 67 | 68 | .main .logo { 69 | color: #333; 70 | text-align: left; 71 | margin-bottom: 30px; 72 | line-height: 1; 73 | height: 110px; 74 | margin-top: -50px; 75 | overflow: hidden; 76 | *zoom: 1; 77 | } 78 | 79 | .main .logo a { 80 | font-size: 160px; 81 | color: #333; 82 | } 83 | 84 | .helps { 85 | margin-top: 40px; 86 | } 87 | 88 | .helps pre { 89 | padding: 20px; 90 | margin: 10px 0; 91 | border: solid 1px #e7e1cd; 92 | background-color: #fffdef; 93 | overflow: auto; 94 | } 95 | 96 | .icon_lists { 97 | width: 100% !important; 98 | overflow: hidden; 99 | *zoom: 1; 100 | } 101 | 102 | .icon_lists li { 103 | width: 100px; 104 | margin-bottom: 10px; 105 | margin-right: 20px; 106 | text-align: center; 107 | list-style: none !important; 108 | cursor: default; 109 | } 110 | 111 | .icon_lists li .code-name { 112 | line-height: 1.2; 113 | } 114 | 115 | .icon_lists .icon { 116 | display: block; 117 | height: 100px; 118 | line-height: 100px; 119 | font-size: 42px; 120 | margin: 10px auto; 121 | color: #333; 122 | -webkit-transition: font-size 0.25s linear, width 0.25s linear; 123 | -moz-transition: font-size 0.25s linear, width 0.25s linear; 124 | transition: font-size 0.25s linear, width 0.25s linear; 125 | } 126 | 127 | .icon_lists .icon:hover { 128 | font-size: 100px; 129 | } 130 | 131 | .icon_lists .svg-icon { 132 | /* 通过设置 font-size 来改变图标大小 */ 133 | width: 1em; 134 | /* 图标和文字相邻时,垂直对齐 */ 135 | vertical-align: -0.15em; 136 | /* 通过设置 color 来改变 SVG 的颜色/fill */ 137 | fill: currentColor; 138 | /* path 和 stroke 溢出 viewBox 部分在 IE 下会显示 139 | normalize.css 中也包含这行 */ 140 | overflow: hidden; 141 | } 142 | 143 | .icon_lists li .name, 144 | .icon_lists li .code-name { 145 | color: #666; 146 | } 147 | 148 | /* markdown 样式 */ 149 | .markdown { 150 | color: #666; 151 | font-size: 14px; 152 | line-height: 1.8; 153 | } 154 | 155 | .highlight { 156 | line-height: 1.5; 157 | } 158 | 159 | .markdown img { 160 | vertical-align: middle; 161 | max-width: 100%; 162 | } 163 | 164 | .markdown h1 { 165 | color: #404040; 166 | font-weight: 500; 167 | line-height: 40px; 168 | margin-bottom: 24px; 169 | } 170 | 171 | .markdown h2, 172 | .markdown h3, 173 | .markdown h4, 174 | .markdown h5, 175 | .markdown h6 { 176 | color: #404040; 177 | margin: 1.6em 0 0.6em 0; 178 | font-weight: 500; 179 | clear: both; 180 | } 181 | 182 | .markdown h1 { 183 | font-size: 28px; 184 | } 185 | 186 | .markdown h2 { 187 | font-size: 22px; 188 | } 189 | 190 | .markdown h3 { 191 | font-size: 16px; 192 | } 193 | 194 | .markdown h4 { 195 | font-size: 14px; 196 | } 197 | 198 | .markdown h5 { 199 | font-size: 12px; 200 | } 201 | 202 | .markdown h6 { 203 | font-size: 12px; 204 | } 205 | 206 | .markdown hr { 207 | height: 1px; 208 | border: 0; 209 | background: #e9e9e9; 210 | margin: 16px 0; 211 | clear: both; 212 | } 213 | 214 | .markdown p { 215 | margin: 1em 0; 216 | } 217 | 218 | .markdown>p, 219 | .markdown>blockquote, 220 | .markdown>.highlight, 221 | .markdown>ol, 222 | .markdown>ul { 223 | width: 80%; 224 | } 225 | 226 | .markdown ul>li { 227 | list-style: circle; 228 | } 229 | 230 | .markdown>ul li, 231 | .markdown blockquote ul>li { 232 | margin-left: 20px; 233 | padding-left: 4px; 234 | } 235 | 236 | .markdown>ul li p, 237 | .markdown>ol li p { 238 | margin: 0.6em 0; 239 | } 240 | 241 | .markdown ol>li { 242 | list-style: decimal; 243 | } 244 | 245 | .markdown>ol li, 246 | .markdown blockquote ol>li { 247 | margin-left: 20px; 248 | padding-left: 4px; 249 | } 250 | 251 | .markdown code { 252 | margin: 0 3px; 253 | padding: 0 5px; 254 | background: #eee; 255 | border-radius: 3px; 256 | } 257 | 258 | .markdown strong, 259 | .markdown b { 260 | font-weight: 600; 261 | } 262 | 263 | .markdown>table { 264 | border-collapse: collapse; 265 | border-spacing: 0px; 266 | empty-cells: show; 267 | border: 1px solid #e9e9e9; 268 | width: 95%; 269 | margin-bottom: 24px; 270 | } 271 | 272 | .markdown>table th { 273 | white-space: nowrap; 274 | color: #333; 275 | font-weight: 600; 276 | } 277 | 278 | .markdown>table th, 279 | .markdown>table td { 280 | border: 1px solid #e9e9e9; 281 | padding: 8px 16px; 282 | text-align: left; 283 | } 284 | 285 | .markdown>table th { 286 | background: #F7F7F7; 287 | } 288 | 289 | .markdown blockquote { 290 | font-size: 90%; 291 | color: #999; 292 | border-left: 4px solid #e9e9e9; 293 | padding-left: 0.8em; 294 | margin: 1em 0; 295 | } 296 | 297 | .markdown blockquote p { 298 | margin: 0; 299 | } 300 | 301 | .markdown .anchor { 302 | opacity: 0; 303 | transition: opacity 0.3s ease; 304 | margin-left: 8px; 305 | } 306 | 307 | .markdown .waiting { 308 | color: #ccc; 309 | } 310 | 311 | .markdown h1:hover .anchor, 312 | .markdown h2:hover .anchor, 313 | .markdown h3:hover .anchor, 314 | .markdown h4:hover .anchor, 315 | .markdown h5:hover .anchor, 316 | .markdown h6:hover .anchor { 317 | opacity: 1; 318 | display: inline-block; 319 | } 320 | 321 | .markdown>br, 322 | .markdown>p>br { 323 | clear: both; 324 | } 325 | 326 | 327 | .hljs { 328 | display: block; 329 | background: white; 330 | padding: 0.5em; 331 | color: #333333; 332 | overflow-x: auto; 333 | } 334 | 335 | .hljs-comment, 336 | .hljs-meta { 337 | color: #969896; 338 | } 339 | 340 | .hljs-string, 341 | .hljs-variable, 342 | .hljs-template-variable, 343 | .hljs-strong, 344 | .hljs-emphasis, 345 | .hljs-quote { 346 | color: #df5000; 347 | } 348 | 349 | .hljs-keyword, 350 | .hljs-selector-tag, 351 | .hljs-type { 352 | color: #a71d5d; 353 | } 354 | 355 | .hljs-literal, 356 | .hljs-symbol, 357 | .hljs-bullet, 358 | .hljs-attribute { 359 | color: #0086b3; 360 | } 361 | 362 | .hljs-section, 363 | .hljs-name { 364 | color: #63a35c; 365 | } 366 | 367 | .hljs-tag { 368 | color: #333333; 369 | } 370 | 371 | .hljs-title, 372 | .hljs-attr, 373 | .hljs-selector-id, 374 | .hljs-selector-class, 375 | .hljs-selector-attr, 376 | .hljs-selector-pseudo { 377 | color: #795da3; 378 | } 379 | 380 | .hljs-addition { 381 | color: #55a532; 382 | background-color: #eaffea; 383 | } 384 | 385 | .hljs-deletion { 386 | color: #bd2c00; 387 | background-color: #ffecec; 388 | } 389 | 390 | .hljs-link { 391 | text-decoration: underline; 392 | } 393 | 394 | /* 代码高亮 */ 395 | /* PrismJS 1.15.0 396 | https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */ 397 | /** 398 | * prism.js default theme for JavaScript, CSS and HTML 399 | * Based on dabblet (http://dabblet.com) 400 | * @author Lea Verou 401 | */ 402 | code[class*="language-"], 403 | pre[class*="language-"] { 404 | color: black; 405 | background: none; 406 | text-shadow: 0 1px white; 407 | font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; 408 | text-align: left; 409 | white-space: pre; 410 | word-spacing: normal; 411 | word-break: normal; 412 | word-wrap: normal; 413 | line-height: 1.5; 414 | 415 | -moz-tab-size: 4; 416 | -o-tab-size: 4; 417 | tab-size: 4; 418 | 419 | -webkit-hyphens: none; 420 | -moz-hyphens: none; 421 | -ms-hyphens: none; 422 | hyphens: none; 423 | } 424 | 425 | pre[class*="language-"]::-moz-selection, 426 | pre[class*="language-"] ::-moz-selection, 427 | code[class*="language-"]::-moz-selection, 428 | code[class*="language-"] ::-moz-selection { 429 | text-shadow: none; 430 | background: #b3d4fc; 431 | } 432 | 433 | pre[class*="language-"]::selection, 434 | pre[class*="language-"] ::selection, 435 | code[class*="language-"]::selection, 436 | code[class*="language-"] ::selection { 437 | text-shadow: none; 438 | background: #b3d4fc; 439 | } 440 | 441 | @media print { 442 | 443 | code[class*="language-"], 444 | pre[class*="language-"] { 445 | text-shadow: none; 446 | } 447 | } 448 | 449 | /* Code blocks */ 450 | pre[class*="language-"] { 451 | padding: 1em; 452 | margin: .5em 0; 453 | overflow: auto; 454 | } 455 | 456 | :not(pre)>code[class*="language-"], 457 | pre[class*="language-"] { 458 | background: #f5f2f0; 459 | } 460 | 461 | /* Inline code */ 462 | :not(pre)>code[class*="language-"] { 463 | padding: .1em; 464 | border-radius: .3em; 465 | white-space: normal; 466 | } 467 | 468 | .token.comment, 469 | .token.prolog, 470 | .token.doctype, 471 | .token.cdata { 472 | color: slategray; 473 | } 474 | 475 | .token.punctuation { 476 | color: #999; 477 | } 478 | 479 | .namespace { 480 | opacity: .7; 481 | } 482 | 483 | .token.property, 484 | .token.tag, 485 | .token.boolean, 486 | .token.number, 487 | .token.constant, 488 | .token.symbol, 489 | .token.deleted { 490 | color: #905; 491 | } 492 | 493 | .token.selector, 494 | .token.attr-name, 495 | .token.string, 496 | .token.char, 497 | .token.builtin, 498 | .token.inserted { 499 | color: #690; 500 | } 501 | 502 | .token.operator, 503 | .token.entity, 504 | .token.url, 505 | .language-css .token.string, 506 | .style .token.string { 507 | color: #9a6e3a; 508 | background: hsla(0, 0%, 100%, .5); 509 | } 510 | 511 | .token.atrule, 512 | .token.attr-value, 513 | .token.keyword { 514 | color: #07a; 515 | } 516 | 517 | .token.function, 518 | .token.class-name { 519 | color: #DD4A68; 520 | } 521 | 522 | .token.regex, 523 | .token.important, 524 | .token.variable { 525 | color: #e90; 526 | } 527 | 528 | .token.important, 529 | .token.bold { 530 | font-weight: bold; 531 | } 532 | 533 | .token.italic { 534 | font-style: italic; 535 | } 536 | 537 | .token.entity { 538 | cursor: help; 539 | } 540 | -------------------------------------------------------------------------------- /myKGRS/static/font/font_svcu02nytc/iconfont.css: -------------------------------------------------------------------------------- 1 | @font-face {font-family: "iconfont"; 2 | src: url('iconfont.eot?t=1610522698620'); /* IE9 */ 3 | src: url('iconfont.eot?t=1610522698620#iefix') format('embedded-opentype'), /* IE6-IE8 */ 4 | url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2'), 5 | url('iconfont.woff?t=1610522698620') format('woff'), 6 | url('iconfont.ttf?t=1610522698620') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */ 7 | url('iconfont.svg?t=1610522698620#iconfont') format('svg'); /* iOS 4.1- */ 8 | } 9 | 10 | .iconfont { 11 | font-family: "iconfont" !important; 12 | font-size: 16px; 13 | font-style: normal; 14 | -webkit-font-smoothing: antialiased; 15 | -moz-osx-font-smoothing: grayscale; 16 | } 17 | 18 | .icon-kongjian:before { 19 | content: "\e618"; 20 | } 21 | 22 | .icon-search:before { 23 | content: "\e60e"; 24 | } 25 | 26 | .icon-ai-qq:before { 27 | content: "\e630"; 28 | } 29 | 30 | .icon-xin:before { 31 | content: "\e635"; 32 | } 33 | 34 | .icon-weixin:before { 35 | content: "\e660"; 36 | } 37 | 38 | .icon-pingguo:before { 39 | content: "\e60b"; 40 | } 41 | 42 | .icon-yanjing:before { 43 | content: "\e6b0"; 44 | } 45 | 46 | .icon-tupian:before { 47 | content: "\e602"; 48 | } 49 | 50 | .icon-yonghu:before { 51 | content: "\e60a"; 52 | } 53 | 54 | .icon-xiangji:before { 55 | content: "\e6e7"; 56 | } 57 | 58 | .icon-jiangpai:before { 59 | content: "\e613"; 60 | } 61 | 62 | .icon-sousuo:before { 63 | content: "\e627"; 64 | } 65 | 66 | .icon-jiahaoyou:before { 67 | content: "\e603"; 68 | } 69 | 70 | .icon-xia:before { 71 | content: "\e6b1"; 72 | } 73 | 74 | .icon-weibo:before { 75 | content: "\e608"; 76 | } 77 | 78 | .icon-xiaoxi:before { 79 | content: "\e723"; 80 | } 81 | 82 | .icon-android-fill:before { 83 | content: "\e60f"; 84 | } 85 | 86 | .icon-btn_search:before { 87 | content: "\e60c"; 88 | } 89 | 90 | .icon-a:before { 91 | content: "\e604"; 92 | } 93 | 94 | .icon-v:before { 95 | content: "\ecf7"; 96 | } 97 | 98 | .icon-weizhi:before { 99 | content: "\e667"; 100 | } 101 | 102 | .icon-shoucang:before { 103 | content: "\e636"; 104 | } 105 | 106 | -------------------------------------------------------------------------------- /myKGRS/static/font/font_svcu02nytc/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/font/font_svcu02nytc/iconfont.eot -------------------------------------------------------------------------------- /myKGRS/static/font/font_svcu02nytc/iconfont.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "", 3 | "name": "", 4 | "font_family": "iconfont", 5 | "css_prefix_text": "icon-", 6 | "description": "", 7 | "glyphs": [ 8 | { 9 | "icon_id": "371797", 10 | "name": "空间", 11 | "font_class": "kongjian", 12 | "unicode": "e618", 13 | "unicode_decimal": 58904 14 | }, 15 | { 16 | "icon_id": "429212", 17 | "name": "搜索", 18 | "font_class": "search", 19 | "unicode": "e60e", 20 | "unicode_decimal": 58894 21 | }, 22 | { 23 | "icon_id": "724439", 24 | "name": "qq", 25 | "font_class": "ai-qq", 26 | "unicode": "e630", 27 | "unicode_decimal": 58928 28 | }, 29 | { 30 | "icon_id": "815553", 31 | "name": "心", 32 | "font_class": "xin", 33 | "unicode": "e635", 34 | "unicode_decimal": 58933 35 | }, 36 | { 37 | "icon_id": "840781", 38 | "name": "微信", 39 | "font_class": "weixin", 40 | "unicode": "e660", 41 | "unicode_decimal": 58976 42 | }, 43 | { 44 | "icon_id": "866466", 45 | "name": "苹果", 46 | "font_class": "pingguo", 47 | "unicode": "e60b", 48 | "unicode_decimal": 58891 49 | }, 50 | { 51 | "icon_id": "1142516", 52 | "name": "眼睛", 53 | "font_class": "yanjing", 54 | "unicode": "e6b0", 55 | "unicode_decimal": 59056 56 | }, 57 | { 58 | "icon_id": "1966203", 59 | "name": "图片", 60 | "font_class": "tupian", 61 | "unicode": "e602", 62 | "unicode_decimal": 58882 63 | }, 64 | { 65 | "icon_id": "2604466", 66 | "name": "用户", 67 | "font_class": "yonghu", 68 | "unicode": "e60a", 69 | "unicode_decimal": 58890 70 | }, 71 | { 72 | "icon_id": "3588495", 73 | "name": "相机", 74 | "font_class": "xiangji", 75 | "unicode": "e6e7", 76 | "unicode_decimal": 59111 77 | }, 78 | { 79 | "icon_id": "3900637", 80 | "name": "奖牌", 81 | "font_class": "jiangpai", 82 | "unicode": "e613", 83 | "unicode_decimal": 58899 84 | }, 85 | { 86 | "icon_id": "5640058", 87 | "name": "搜索", 88 | "font_class": "sousuo", 89 | "unicode": "e627", 90 | "unicode_decimal": 58919 91 | }, 92 | { 93 | "icon_id": "6683016", 94 | "name": "加好友", 95 | "font_class": "jiahaoyou", 96 | "unicode": "e603", 97 | "unicode_decimal": 58883 98 | }, 99 | { 100 | "icon_id": "6755280", 101 | "name": "下", 102 | "font_class": "xia", 103 | "unicode": "e6b1", 104 | "unicode_decimal": 59057 105 | }, 106 | { 107 | "icon_id": "6756291", 108 | "name": "微博", 109 | "font_class": "weibo", 110 | "unicode": "e608", 111 | "unicode_decimal": 58888 112 | }, 113 | { 114 | "icon_id": "8348159", 115 | "name": "消息", 116 | "font_class": "xiaoxi", 117 | "unicode": "e723", 118 | "unicode_decimal": 59171 119 | }, 120 | { 121 | "icon_id": "9512491", 122 | "name": "安卓", 123 | "font_class": "android-fill", 124 | "unicode": "e60f", 125 | "unicode_decimal": 58895 126 | }, 127 | { 128 | "icon_id": "10939112", 129 | "name": "搜索", 130 | "font_class": "btn_search", 131 | "unicode": "e60c", 132 | "unicode_decimal": 58892 133 | }, 134 | { 135 | "icon_id": "11348862", 136 | "name": "a", 137 | "font_class": "a", 138 | "unicode": "e604", 139 | "unicode_decimal": 58884 140 | }, 141 | { 142 | "icon_id": "15378918", 143 | "name": "v", 144 | "font_class": "v", 145 | "unicode": "ecf7", 146 | "unicode_decimal": 60663 147 | }, 148 | { 149 | "icon_id": "16811029", 150 | "name": "位置", 151 | "font_class": "weizhi", 152 | "unicode": "e667", 153 | "unicode_decimal": 58983 154 | }, 155 | { 156 | "icon_id": "17124313", 157 | "name": "收藏", 158 | "font_class": "shoucang", 159 | "unicode": "e636", 160 | "unicode_decimal": 58934 161 | } 162 | ] 163 | } 164 | -------------------------------------------------------------------------------- /myKGRS/static/font/font_svcu02nytc/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/font/font_svcu02nytc/iconfont.ttf -------------------------------------------------------------------------------- /myKGRS/static/font/font_svcu02nytc/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/font/font_svcu02nytc/iconfont.woff -------------------------------------------------------------------------------- /myKGRS/static/font/font_svcu02nytc/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/font/font_svcu02nytc/iconfont.woff2 -------------------------------------------------------------------------------- /myKGRS/static/image/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/1.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/10.png -------------------------------------------------------------------------------- /myKGRS/static/image/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/11.png -------------------------------------------------------------------------------- /myKGRS/static/image/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/111.png -------------------------------------------------------------------------------- /myKGRS/static/image/1111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/1111.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/12.png -------------------------------------------------------------------------------- /myKGRS/static/image/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/13.png -------------------------------------------------------------------------------- /myKGRS/static/image/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/14.png -------------------------------------------------------------------------------- /myKGRS/static/image/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/15.png -------------------------------------------------------------------------------- /myKGRS/static/image/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/16.png -------------------------------------------------------------------------------- /myKGRS/static/image/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/17.png -------------------------------------------------------------------------------- /myKGRS/static/image/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/18.png -------------------------------------------------------------------------------- /myKGRS/static/image/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/19.png -------------------------------------------------------------------------------- /myKGRS/static/image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/2.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/20.png -------------------------------------------------------------------------------- /myKGRS/static/image/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/21.png -------------------------------------------------------------------------------- /myKGRS/static/image/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/22.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/23.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/24.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/25.png -------------------------------------------------------------------------------- /myKGRS/static/image/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/26.png -------------------------------------------------------------------------------- /myKGRS/static/image/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/27.png -------------------------------------------------------------------------------- /myKGRS/static/image/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/28.png -------------------------------------------------------------------------------- /myKGRS/static/image/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/29.png -------------------------------------------------------------------------------- /myKGRS/static/image/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/3.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/30.png -------------------------------------------------------------------------------- /myKGRS/static/image/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/31.png -------------------------------------------------------------------------------- /myKGRS/static/image/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/32.png -------------------------------------------------------------------------------- /myKGRS/static/image/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/33.png -------------------------------------------------------------------------------- /myKGRS/static/image/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/34.png -------------------------------------------------------------------------------- /myKGRS/static/image/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/35.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/36.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/37.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/38.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/39.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/4.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/40.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/40.jpeg -------------------------------------------------------------------------------- /myKGRS/static/image/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/41.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/42.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/43.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/44.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/45.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/46.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/47.png -------------------------------------------------------------------------------- /myKGRS/static/image/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/48.png -------------------------------------------------------------------------------- /myKGRS/static/image/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/49.png -------------------------------------------------------------------------------- /myKGRS/static/image/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/5.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/50.png -------------------------------------------------------------------------------- /myKGRS/static/image/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/6.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/7.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/8.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/9.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/bilibiliimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/bilibiliimg.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/hd.png -------------------------------------------------------------------------------- /myKGRS/static/image/logoblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/logoblack.png -------------------------------------------------------------------------------- /myKGRS/static/image/lun1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/lun1.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/lun2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/lun2.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/lun3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/lun3.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/one.png -------------------------------------------------------------------------------- /myKGRS/static/image/onet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/onet.png -------------------------------------------------------------------------------- /myKGRS/static/image/qqimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/qqimg.png -------------------------------------------------------------------------------- /myKGRS/static/image/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/star.png -------------------------------------------------------------------------------- /myKGRS/static/image/star1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/star1.png -------------------------------------------------------------------------------- /myKGRS/static/image/suc/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/1.jpeg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/10.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/11.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/12.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/13.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/14.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/15.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/2.jpeg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/222.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/3-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/3-7.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/3-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/3-8.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/3.jpeg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/4.jpeg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/5.jpeg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/6.jpeg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/7.jpeg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/8.jpeg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/9.jpeg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/hd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/hd1.png -------------------------------------------------------------------------------- /myKGRS/static/image/suc/hd2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/hd2.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/img-ede4dc2b333a25876202c28ddc0563d5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/img-ede4dc2b333a25876202c28ddc0563d5.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/lb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/lb1.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/lb2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/lb2.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/lb3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/lb3.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/lb6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/lb6.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/suc/lb7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/suc/lb7.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/sur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/sur.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/t1.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/t2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/t2.jpg -------------------------------------------------------------------------------- /myKGRS/static/image/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/three.png -------------------------------------------------------------------------------- /myKGRS/static/image/threet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/threet.png -------------------------------------------------------------------------------- /myKGRS/static/image/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/two.png -------------------------------------------------------------------------------- /myKGRS/static/image/twot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/twot.png -------------------------------------------------------------------------------- /myKGRS/static/image/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/v.png -------------------------------------------------------------------------------- /myKGRS/static/image/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/video.mp4 -------------------------------------------------------------------------------- /myKGRS/static/image/视频.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/视频.mp4 -------------------------------------------------------------------------------- /myKGRS/static/image/视频1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/static/image/视频1.mp4 -------------------------------------------------------------------------------- /myKGRS/static/script/index.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | $(".input input").focus(function() { 4 | 5 | $(this).parent(".input").each(function() { 6 | $("label", this).css({ 7 | "line-height": "18px", 8 | "font-size": "18px", 9 | "font-weight": "100", 10 | "top": "0px" 11 | }) 12 | $(".spin", this).css({ 13 | "width": "100%" 14 | }) 15 | }); 16 | }).blur(function() { 17 | $(".spin").css({ 18 | "width": "0px" 19 | }) 20 | if ($(this).val() == "") { 21 | $(this).parent(".input").each(function() { 22 | $("label", this).css({ 23 | "line-height": "60px", 24 | "font-size": "24px", 25 | "font-weight": "300", 26 | "top": "10px" 27 | }) 28 | }); 29 | 30 | } 31 | }); 32 | 33 | $(".button").click(function(e) { 34 | var pX = e.pageX, 35 | pY = e.pageY, 36 | oX = parseInt($(this).offset().left), 37 | oY = parseInt($(this).offset().top); 38 | 39 | $(this).append('') 40 | $('.x-' + oX + '.y-' + oY + '').animate({ 41 | "width": "500px", 42 | "height": "500px", 43 | "top": "-250px", 44 | "left": "-250px", 45 | 46 | }, 600); 47 | $("button", this).addClass('active'); 48 | }) 49 | 50 | $(".alt-2").click(function() { 51 | if (!$(this).hasClass('material-button')) { 52 | $(".shape").css({ 53 | "width": "100%", 54 | "height": "100%", 55 | "transform": "rotate(0deg)" 56 | }) 57 | 58 | setTimeout(function() { 59 | $(".overbox").css({ 60 | "overflow": "initial" 61 | }) 62 | }, 600) 63 | 64 | $(this).animate({ 65 | "width": "140px", 66 | "height": "140px" 67 | }, 500, function() { 68 | $(".box").removeClass("back"); 69 | 70 | $(this).removeClass('active') 71 | }); 72 | 73 | $(".overbox .title").fadeOut(300); 74 | $(".overbox .input").fadeOut(300); 75 | $(".overbox .button").fadeOut(300); 76 | 77 | $(".alt-2").addClass('material-buton'); 78 | } 79 | 80 | }) 81 | 82 | $(".material-button").click(function() { 83 | 84 | if ($(this).hasClass('material-button')) { 85 | setTimeout(function() { 86 | $(".overbox").css({ 87 | "overflow": "hidden" 88 | }) 89 | $(".box").addClass("back"); 90 | }, 200) 91 | $(this).addClass('active').animate({ 92 | "width": "700px", 93 | "height": "700px" 94 | }); 95 | 96 | setTimeout(function() { 97 | $(".shape").css({ 98 | "width": "50%", 99 | "height": "50%", 100 | "transform": "rotate(45deg)" 101 | }) 102 | 103 | $(".overbox .title").fadeIn(300); 104 | $(".overbox .input").fadeIn(300); 105 | $(".overbox .button").fadeIn(300); 106 | }, 700) 107 | 108 | $(this).removeClass('material-button'); 109 | 110 | } 111 | 112 | if ($(".alt-2").hasClass('material-buton')) { 113 | $(".alt-2").removeClass('material-buton'); 114 | $(".alt-2").addClass('material-button'); 115 | } 116 | 117 | }); 118 | 119 | }); -------------------------------------------------------------------------------- /myKGRS/static/script/js.js: -------------------------------------------------------------------------------- 1 | var bannerimg = $(".head .banner>div"); 2 | var lrbutton = $(".head .lrbutton>li"); 3 | var smallbutton = $(".head .smallbutton>li"); 4 | var index = 0; 5 | var dingshiqi ; 6 | zidong(); 7 | lrclick(); 8 | zhiding(); 9 | function imgqie(index){ 10 | $.each(bannerimg,function(i,val){ 11 | $(this).removeClass("show"); 12 | $(this).addClass("hide"); 13 | $(smallbutton[i]).addClass("btnstylehide"); 14 | }) 15 | $(bannerimg[index]).addClass("show"); 16 | $(smallbutton[index]).removeClass("btnstylehide"); 17 | $(smallbutton[index]).addClass("btnstyleshow"); 18 | } 19 | function zidong(){ 20 | dingshiqi=setInterval(function(){ 21 | if(index==bannerimg.length-1){ 22 | index=0; 23 | imgqie(index); 24 | }else{ 25 | index++; 26 | imgqie(index); 27 | } 28 | },4000) 29 | } 30 | function lrclick(){ 31 | let leftbutton=lrbutton[0]; 32 | let rightbutton=lrbutton[1]; 33 | $(leftbutton).click(function(){ 34 | clearInterval(dingshiqi); 35 | if(index==0){ 36 | index=bannerimg.length-1; 37 | imgqie(index); 38 | }else{ 39 | index--; 40 | imgqie(index); 41 | } 42 | zidong(); 43 | }) 44 | $(rightbutton).click(function(){ 45 | clearInterval(dingshiqi); 46 | if(index==bannerimg.length-1){ 47 | index=0; 48 | imgqie(index); 49 | }else{ 50 | index++; 51 | imgqie(index); 52 | } 53 | zidong(); 54 | }) 55 | } 56 | function zhiding(){ 57 | $.each(smallbutton,function(i,val){ 58 | $(val).click(function(){ 59 | clearInterval(dingshiqi); 60 | index=i; 61 | imgqie(index); 62 | zidong(); 63 | }) 64 | }) 65 | } -------------------------------------------------------------------------------- /myKGRS/static/script/logo.js: -------------------------------------------------------------------------------- 1 | var bannerimg = $(".head .banner>div"); 2 | var index = 0; 3 | var dingshiqi; 4 | zidong(); 5 | function imgqie(index){ 6 | $.each(bannerimg,function(i,val){ 7 | $(this).removeClass("show"); 8 | $(this).addClass("hide"); 9 | }) 10 | $(bannerimg[index]).addClass("show"); 11 | } 12 | function zidong(){ 13 | dingshiqi=setInterval(function(){ 14 | if(index==bannerimg.length-1){ 15 | index=0; 16 | imgqie(index); 17 | }else{ 18 | index++; 19 | imgqie(index); 20 | } 21 | },4000) 22 | } 23 | var lbtn = document.querySelector('.logobutton'); 24 | var zhang = document.querySelector('#zhang'); 25 | var mima = document.querySelector('#mima'); 26 | lbtn.onclick=function(){ 27 | if(zhang.value=='' || mima.value==''){ 28 | alert('文本框不能为空'); 29 | } 30 | } -------------------------------------------------------------------------------- /myKGRS/static/script/newlist.js: -------------------------------------------------------------------------------- 1 | var bannerimg = $(".head .banner>div"); 2 | var smallbutton = $(".smallbutton>li"); 3 | var index = 0; 4 | var dingshiqi; 5 | zidong(); 6 | zhiding(); 7 | function imgqie(index){ 8 | $.each(bannerimg,function(i,val){ 9 | $(this).removeClass("show"); 10 | $(this).addClass("hide"); 11 | $(smallbutton[i]).addClass("btnstylehide"); 12 | }) 13 | $(bannerimg[index]).addClass("show"); 14 | $(smallbutton[index]).removeClass("btnstylehide"); 15 | $(smallbutton[index]).addClass("btnstyleshow"); 16 | } 17 | function zidong(){ 18 | dingshiqi=setInterval(function(){ 19 | if(index==bannerimg.length-1){ 20 | index=0; 21 | imgqie(index); 22 | }else{ 23 | index++; 24 | imgqie(index); 25 | } 26 | },4000) 27 | } 28 | function zhiding(){ 29 | $.each(smallbutton,function(i,val){ 30 | $(val).click(function(){ 31 | clearInterval(dingshiqi); 32 | index=i; 33 | imgqie(index); 34 | zidong(); 35 | }) 36 | }) 37 | } -------------------------------------------------------------------------------- /myKGRS/static/script/tags.js: -------------------------------------------------------------------------------- 1 | var radius = 120; 2 | var dtr = Math.PI/180; 3 | var d=300; 4 | var mcList = []; 5 | var active = false; 6 | var lasta = 1; 7 | var lastb = 1; 8 | var distr = true; 9 | var tspeed=2; 10 | var size=250; 11 | 12 | var mouseX=0; 13 | var mouseY=0; 14 | 15 | var howElliptical=1; 16 | 17 | var aA=null; 18 | var oDiv=null; 19 | 20 | window.onload=function () 21 | { 22 | var i=0; 23 | var oTag=null; 24 | 25 | oDiv=document.getElementById('tagsList'); 26 | 27 | aA=oDiv.getElementsByTagName('a'); 28 | 29 | for(i=0;ivItem2.cz) 140 | { 141 | return -1; 142 | } 143 | else if(vItem1.czimg{ 24 | display:block; 25 | width:100%; 26 | height:100%; 27 | } -------------------------------------------------------------------------------- /myKGRS/static/style/imglist.css: -------------------------------------------------------------------------------- 1 | .head { 2 | height: 470px; 3 | position: relative; 4 | } 5 | 6 | .head>.header { 7 | width: 100%; 8 | z-index: 999; 9 | } 10 | 11 | .head>.header>.container { 12 | width: 80% !important; 13 | } 14 | 15 | .head .banner { 16 | height: 100%; 17 | } 18 | 19 | .head .banner>div { 20 | position: absolute; 21 | width: 100%; 22 | height: 100%; 23 | opacity: 0; 24 | transition: all 1.5s; 25 | } 26 | 27 | .hide { 28 | opacity: 0 !important; 29 | } 30 | 31 | .show { 32 | opacity: 1 !important; 33 | } 34 | 35 | .head .banner>div>img { 36 | position: absolute; 37 | width: 100%; 38 | height: 100%; 39 | } 40 | 41 | .head .banner>div:first-of-type { 42 | opacity: 1; 43 | } 44 | 45 | .lrbutton>li { 46 | width: 50px; 47 | height: 50px; 48 | border-radius: 100%; 49 | border: 1px solid #fff; 50 | text-align: center; 51 | line-height: 50px; 52 | color: #fff; 53 | font-size: 30px; 54 | position: absolute; 55 | z-index: 100; 56 | font-weight: 200; 57 | top: 46.3%; 58 | } 59 | 60 | .lrbutton>li:first-of-type { 61 | left: 1%; 62 | } 63 | 64 | .lrbutton>li:last-of-type { 65 | right: 1%; 66 | } 67 | 68 | .smallbutton { 69 | position: absolute; 70 | overflow: hidden; 71 | height: 10px; 72 | bottom: 4%; 73 | left: 46.7%; 74 | z-index: 100; 75 | } 76 | 77 | .smallbutton, 78 | .lrbutton { 79 | cursor: pointer; 80 | } 81 | 82 | .smallbutton>li { 83 | width: 10px; 84 | height: 100%; 85 | float: left; 86 | margin-right: 15px; 87 | border-radius: 100%; 88 | background: rgb(180, 182, 179); 89 | } 90 | 91 | .smallbutton>li:first-child { 92 | width: 30px; 93 | border-radius: 10px; 94 | background: rgb(150, 208, 156); 95 | } 96 | 97 | .btnstyleshow { 98 | width: 30px !important; 99 | border-radius: 10px !important; 100 | background: rgb(150, 208, 156) !important; 101 | } 102 | 103 | .btnstylehide { 104 | width: 10px !important; 105 | border-radius: 100% !important; 106 | background: rgb(180, 182, 179) !important; 107 | } 108 | 109 | 110 | 111 | .centerbox>.container{ 112 | width:100%; 113 | } 114 | .centerbox .nav { 115 | border-top: 1px solid #666; 116 | border-bottom: 1px solid #666; 117 | height: 50px; 118 | margin-bottom: 30px; 119 | } 120 | 121 | .centerbox .nav>ul { 122 | height: 100%; 123 | float: left; 124 | } 125 | 126 | .centerbox .nav>ul>li { 127 | float: left; 128 | height: 100%; 129 | margin-right: 20px; 130 | } 131 | 132 | .centerbox .nav>ul>li>a { 133 | display: block; 134 | height: calc(100% - 2px); 135 | border-bottom: 2px solid rgba(0, 0, 0, 0); 136 | line-height: 48px; 137 | color: #404040; 138 | } 139 | 140 | .centerbox .nav>ul>li>a:hover { 141 | color: #0086B3; 142 | border-color: #0086B3; 143 | } 144 | 145 | .centerbox .nav>ul>li:first-child>a { 146 | color: #0086B3; 147 | border-color: #0086B3; 148 | } 149 | 150 | .centerbox .nav>div { 151 | float: right; 152 | line-height: 50px; 153 | } 154 | 155 | .centerbox .imgul { 156 | height: 350px; 157 | display: flex; 158 | justify-content: space-between; 159 | margin-bottom:0.7%; 160 | } 161 | 162 | .centerbox .imgul>li { 163 | height: 100%; 164 | overflow:hidden; 165 | } 166 | 167 | .centerbox .imgul>li>span, 168 | .centerbox .imgul>li>span>img { 169 | display: block; 170 | width: 100%; 171 | height: 100%; 172 | } 173 | .centerbox .imgul>li>span>img{ 174 | transition: all .4s; 175 | } 176 | .centerbox .imgul>li>span:hover>img{ 177 | transform: scale(1.2); 178 | } 179 | .centerbox .imgul>li>span:hover>div{ 180 | opacity:1; 181 | } 182 | .centerbox .yi>li { 183 | width: 15%; 184 | } 185 | 186 | .centerbox .yi>li:nth-child(3) { 187 | width: 22%; 188 | } 189 | .centerbox .yi>li:nth-child(5) { 190 | width: 30%; 191 | } 192 | .centerbox .er>li { 193 | width: 15%; 194 | } 195 | 196 | .centerbox .er>li:nth-child(3) { 197 | width: 22.7%; 198 | } 199 | 200 | .centerbox .er>li:nth-child(1) { 201 | width: 45%; 202 | } 203 | 204 | .centerbox .san>li { 205 | width: 15%; 206 | } 207 | 208 | .centerbox .san>li:nth-child(3) { 209 | width: 30%; 210 | } 211 | 212 | .centerbox .san>li:nth-child(1) { 213 | width: 22%; 214 | } 215 | .centerbox .si>li { 216 | width: 18%; 217 | } 218 | .centerbox .si>li:nth-child(4) { 219 | width: 43%; 220 | } 221 | .centerbox .wu>li { 222 | width: 20%; 223 | } 224 | .centerbox .wu>li:nth-child(2) { 225 | width: 58%; 226 | } 227 | .centerbox .liu>li { 228 | width: 20%; 229 | } 230 | .centerbox .liu>li:nth-child(3) { 231 | width: 42%; 232 | } 233 | .centerbox .liu>li:nth-child(4) { 234 | width: 15%; 235 | } 236 | .centerbox .qi>li { 237 | width: 20%; 238 | } 239 | .centerbox .qi>li:nth-child(1) { 240 | width: 58%; 241 | } 242 | .centerbox .ba>li { 243 | width: 25%; 244 | } 245 | .centerbox .ba>li:nth-child(4) { 246 | width: 22%; 247 | } 248 | .centerbox .imgul>li>span{ 249 | position:relative; 250 | } 251 | .centerbox .imgul>li>span>div{ 252 | position:absolute; 253 | cursor:pointer; 254 | opacity:0; 255 | transition: all .4s; 256 | } 257 | .centerbox .imgul>li>span>div:nth-of-type(1){ 258 | color:#fff; 259 | background:rgba(0,0,0,.5); 260 | padding:3px 5px; 261 | font-size:12px; 262 | top:8px; 263 | left:11px; 264 | } 265 | .centerbox .imgul>li>span>div:nth-of-type(2){ 266 | color:#fff; 267 | background:rgba(0,0,0,.5); 268 | padding:3px 5px; 269 | font-size:12px; 270 | left:11px; 271 | top:35px; 272 | } 273 | .centerbox .imgul>li>span>div:nth-of-type(2)>i{ 274 | font-size:12px !important; 275 | } 276 | .centerbox .imgul>li>span>div:nth-of-type(3){ 277 | height:30px; 278 | left:11px; 279 | bottom:8px; 280 | } 281 | .centerbox .imgul>li>span>div:nth-of-type(3)>a{ 282 | height:100%; 283 | display:block; 284 | } 285 | .centerbox .imgul>li>span>div:nth-of-type(3)>a>img{ 286 | float:left; 287 | width:30px; 288 | height:100%; 289 | display:block; 290 | border-radius:100%; 291 | margin-right:5px; 292 | } 293 | .centerbox .imgul>li>span>div:nth-of-type(3)>a>span{ 294 | font-size:14px; 295 | color:#fff; 296 | float:left; 297 | margin-top:6px; 298 | } 299 | .centerbox .imgul>li>span>div:nth-of-type(4){ 300 | color:#404040; 301 | background:rgba(255,255,255,.7); 302 | padding:3px 5px; 303 | font-size:14px; 304 | bottom:8px; 305 | right:11px; 306 | } 307 | .centerbox .imgul>li>span>div:nth-of-type(4)>i{ 308 | font-size:14px !important; 309 | margin-right:3px; 310 | } -------------------------------------------------------------------------------- /myKGRS/static/style/index.css: -------------------------------------------------------------------------------- 1 | .head { 2 | height: 470px; 3 | position: relativez; 4 | } 5 | 6 | .head>.header { 7 | width: 100%; 8 | z-index: 999; 9 | } 10 | 11 | .head>.header>.container { 12 | width: 80% !important; 13 | } 14 | 15 | .head .banner { 16 | height: 100%; 17 | } 18 | 19 | .head .banner>div { 20 | position: relative; 21 | width: 100%; 22 | height: 100%; 23 | opacity: 0; 24 | transition: all 1.5s; 25 | } 26 | 27 | .hide { 28 | opacity: 0 !important; 29 | } 30 | 31 | .show { 32 | opacity: 1 !important; 33 | } 34 | 35 | .head .banner>div>img { 36 | position: relative; 37 | width: 100%; 38 | height: 90%; 39 | } 40 | 41 | .head .banner>div:first-of-type { 42 | opacity: 1; 43 | } 44 | 45 | .lrbutton>li { 46 | width: 50px; 47 | height: 50px; 48 | border-radius: 100%; 49 | border: 1px solid #fff; 50 | text-align: center; 51 | line-height: 50px; 52 | color: #fff; 53 | font-size: 30px; 54 | position: absolute; 55 | z-index: 100; 56 | font-weight: 200; 57 | top: 46.3%; 58 | } 59 | 60 | .lrbutton>li:first-of-type { 61 | left: 1%; 62 | } 63 | 64 | .lrbutton>li:last-of-type { 65 | right: 1%; 66 | } 67 | 68 | .smallbutton { 69 | position: absolute; 70 | overflow: hidden; 71 | height: 10px; 72 | bottom: 4%; 73 | left: 46.7%; 74 | z-index: 100; 75 | } 76 | 77 | .smallbutton, 78 | .lrbutton { 79 | cursor: pointer; 80 | } 81 | 82 | .smallbutton>li { 83 | width: 10px; 84 | height: 100%; 85 | float: left; 86 | margin-right: 15px; 87 | border-radius: 100%; 88 | background: rgb(180, 182, 179); 89 | } 90 | 91 | .smallbutton>li:first-child { 92 | width: 30px; 93 | border-radius: 10px; 94 | background: rgb(150, 208, 156); 95 | } 96 | 97 | .btnstyleshow { 98 | width: 30px !important; 99 | border-radius: 10px !important; 100 | background: rgb(150, 208, 156) !important; 101 | } 102 | 103 | .btnstylehide { 104 | width: 10px !important; 105 | border-radius: 100% !important; 106 | background: rgb(180, 182, 179) !important; 107 | } 108 | 109 | .centerbox { 110 | margin-top: 40px; 111 | margin-bottom: 40px; 112 | } 113 | 114 | .centerbox h1 { 115 | text-align: center; 116 | font-size: 25px; 117 | margin: 0; 118 | color: rgb(#3E3E3E); 119 | margin-bottom: 15px; 120 | } 121 | 122 | .centerbox .miaoshu { 123 | width: 34%; 124 | margin: 0 auto; 125 | text-align: center; 126 | font-size: 14px; 127 | color: rgb(155, 155, 155); 128 | margin-bottom: 20px; 129 | } 130 | 131 | .centerbox .paihang { 132 | background: rgb(66, 90, 100); 133 | border-top: 1px solid rgb(66, 90, 100); 134 | height: 300px; 135 | padding-bottom: 40px; 136 | padding-top: 10px; 137 | margin-top: 20px; 138 | min-width:1142px; 139 | } 140 | 141 | .centerbox .paihang>h2 { 142 | display: block; 143 | text-align: center; 144 | font-size: 35px; 145 | margin: 20px 0; 146 | color: #fff; 147 | font-weight: 500; 148 | letter-spacing: 15px; 149 | } 150 | 151 | .centerbox .paihang>.text { 152 | width: 80%; 153 | height: 60%; 154 | margin: 0 auto; 155 | margin-top: 40px; 156 | position: relative; 157 | min-width:1099px; 158 | } 159 | 160 | .centerbox .paihang>.text>div { 161 | position: absolute; 162 | background: #fff; 163 | bottom: 0; 164 | } 165 | 166 | .centerbox .paihang>.text>.bangtwo, 167 | .centerbox .paihang>.text>.bangthree { 168 | padding: 0 40px; 169 | padding-top: 20px; 170 | width: calc(34% - 80px); 171 | height: calc(75% - 20px) !important; 172 | } 173 | 174 | .centerbox .paihang .bangone { 175 | left: 34%; 176 | padding: 25px 0px; 177 | width: calc(34% - 0px); 178 | height: calc(100% - 30px); 179 | } 180 | 181 | .centerbox .paihang>.text>.bangthree { 182 | left: 68%; 183 | } 184 | 185 | .bangpublic>div:first-child { 186 | width: 27%; 187 | float: left; 188 | } 189 | 190 | .bangpublic>div:first-child>div { 191 | position: relative; 192 | } 193 | 194 | .bangpublic>div:first-child>div>img:first-child { 195 | width: 100%; 196 | height: 100%; 197 | position: absolute; 198 | display: block; 199 | z-index: 1; 200 | } 201 | 202 | .bangpublic>div:first-child>div>img:last-child { 203 | display: block; 204 | border-radius: 100%; 205 | position: absolute; 206 | } 207 | 208 | .bangpublic>div:nth-child(2) { 209 | float: left; 210 | } 211 | 212 | .bangpublic>div:nth-child(2)>.name { 213 | font-weight: bold; 214 | border-top: 1px rgba(255, 255, 255, 0) solid; 215 | } 216 | 217 | .bangpublic>div:nth-child(2)>.name>img { 218 | float: right; 219 | } 220 | 221 | .bangpublic>div:last-child { 222 | float: right; 223 | width: 20%; 224 | margin-top: 25px; 225 | } 226 | 227 | .centerbox .paihang .bangone>div:nth-child(2) { 228 | margin-top: 40px; 229 | margin-left: 20px; 230 | width: 42%; 231 | } 232 | 233 | .centerbox .paihang .bangone>div:first-child>div { 234 | width: 140px; 235 | height: 130px; 236 | } 237 | 238 | .centerbox .paihang .bangone>div:first-child>div>img:last-child { 239 | width: 90px; 240 | height: 90px; 241 | left: 25px; 242 | top: 20px; 243 | } 244 | 245 | .centerbox .paihang .bangone>div:nth-child(2)>.name { 246 | font-size: 25px; 247 | color: rgb(255, 175, 54); 248 | } 249 | 250 | .centerbox .paihang .bangone>div:nth-child(2)>.fen { 251 | color: rgb(255, 175, 54); 252 | font-size: 20px; 253 | margin-top: 5px; 254 | } 255 | 256 | .centerbox .paihang .bangone>div:nth-child(2)>.name>img { 257 | margin-top: 5px; 258 | width: 25px; 259 | height: 25px; 260 | } 261 | 262 | .bangtt>div:first-child>div { 263 | width: 110px; 264 | height: 90px; 265 | } 266 | 267 | .bangtt>div:first-child>div>img:last-child { 268 | width: 65px; 269 | height: 65px; 270 | left: 22px; 271 | top: 13px; 272 | } 273 | 274 | .bangtt>div:nth-child(2)>.name { 275 | font-size: 20px; 276 | color: rgb(255, 175, 54); 277 | } 278 | 279 | .bangtt>div:nth-child(2)>.fen { 280 | color: rgb(255, 175, 54); 281 | font-size: 16px; 282 | margin-top: 5px; 283 | } 284 | 285 | .bangtt>div:last-child>img { 286 | width: 60px; 287 | height: 60px; 288 | margin-top: -10px; 289 | } 290 | 291 | .bangtt>div:nth-child(2) { 292 | margin-top: 20px; 293 | margin-left: 20px; 294 | width: 46%; 295 | } 296 | 297 | .bangtt>div:nth-child(2)>.name>img { 298 | margin-top: 3px; 299 | width: 20px; 300 | height: 20px; 301 | } 302 | 303 | .bangtt>div:last-child { 304 | width: 15%; 305 | } 306 | 307 | .centerbox .newclass { 308 | overflow: hidden; 309 | } 310 | 311 | .centerbox .newclass-title { 312 | overflow: hidden; 313 | color: rgb(96, 96, 96); 314 | padding: 10px 0; 315 | } 316 | 317 | .centerbox .newclass-title>h3:first-child { 318 | float: left; 319 | } 320 | 321 | .centerbox .newclass-title>h3:last-child { 322 | float: right; 323 | margin-right: 10%; 324 | } 325 | 326 | .centerbox .newclass-list { 327 | display: flex; 328 | justify-content: space-between; 329 | } 330 | 331 | .centerbox .newclass-list>div:first-child { 332 | width: 68%; 333 | } 334 | 335 | .centerbox .newclass-list .imglist>li { 336 | width: 49% !important; 337 | } 338 | 339 | 340 | .centerbox .shipin { 341 | height: 400px; 342 | background: #3F5A63; 343 | margin-top: 20px; 344 | border-top:1px solid #3F5A63; 345 | min-width:1142px; 346 | } 347 | 348 | .centerbox .shipin>h2 { 349 | display: block; 350 | text-align: center; 351 | font-size: 35px; 352 | margin: 20px 0; 353 | color: #fff; 354 | font-weight: 500; 355 | letter-spacing: 15px; 356 | } 357 | .centerbox .shipin>ul{ 358 | width:100%; 359 | height:270px; 360 | display:flex; 361 | justify-content:space-around; 362 | align-items:center; 363 | } 364 | .centerbox .shipin>ul>li{ 365 | width:28%; 366 | height:100%; 367 | } 368 | .centerbox .shipin>ul>li>video{ 369 | display:block; 370 | margin:0 auto; 371 | width:100%; 372 | border:none; 373 | outline:none; 374 | } 375 | -------------------------------------------------------------------------------- /myKGRS/static/style/public.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: "微软雅黑"; 3 | } 4 | 5 | body, 6 | p, 7 | ul, 8 | ol, 9 | dl, 10 | dt, 11 | dd { 12 | margin: 0; 13 | padding: 0; 14 | } 15 | 16 | ul, 17 | ol { 18 | list-style: none; 19 | } 20 | 21 | input { 22 | outline: none; 23 | } 24 | 25 | a { 26 | text-decoration: none; 27 | } 28 | 29 | .container { 30 | width: 60%; 31 | margin: 0 auto; 32 | height: 100%; 33 | min-width:1142px; 34 | } 35 | .imglist { 36 | padding: 0; 37 | display: flex; 38 | justify-content: space-between; 39 | margin-bottom: 100px; 40 | } 41 | 42 | .imglist>li { 43 | position: relative; 44 | } 45 | 46 | .imglist>li>a>img { 47 | display: block; 48 | width: 100%; 49 | height: 100%; 50 | } 51 | 52 | .imglist>li>a>.text { 53 | background-color: #fff; 54 | position: absolute; 55 | box-shadow: 0px 10px 50px -20px #000; 56 | padding: 10px; 57 | } 58 | .imglist>li>a>.text:hover h3{ 59 | color:#FF9961 !important; 60 | } 61 | .imglist>li>a>.text>div:first-child { 62 | overflow: hidden; 63 | } 64 | 65 | .imglist>li>a>.text>div:first-child>div:first-child { 66 | float: left; 67 | color: #999; 68 | } 69 | 70 | .imglist>li>a>.text>div:first-child>div:last-child { 71 | float: right; 72 | color: #999; 73 | } 74 | 75 | .imglist>li>a>.text>div:first-child>div:last-child>i { 76 | margin-right: 5px; 77 | } 78 | 79 | .imglist>li>a>.text>div:first-child>div:last-child>span:first-of-type { 80 | margin-right: 10px; 81 | } 82 | 83 | .imglist>li>a>.text>h3 { 84 | color: #404040; 85 | margin: 0; 86 | } 87 | 88 | .imglist>li>a>.text>p { 89 | font-size: 15px; 90 | color: #999; 91 | } 92 | 93 | .imglist>li>a>.text>P>i { 94 | color: #EE9900; 95 | font-size: 15px; 96 | margin-right: 5px; 97 | } 98 | 99 | .imglistone>li { 100 | width: 49%; 101 | height: 350px; 102 | } 103 | 104 | .imglistone>li>a>.text { 105 | width: calc(70% - 20px); 106 | height: calc(36% - 20px); 107 | bottom: -18%; 108 | left: 15%; 109 | } 110 | 111 | .imglistone>li>a>.text>div:first-child>div { 112 | font-size: 14px; 113 | } 114 | 115 | .imglistone>li>a>.text>div:first-child>div:last-child>i { 116 | font-size: 14px !important; 117 | } 118 | 119 | .imglistone>li>a>.text>h3 { 120 | font-size: 16px; 121 | } 122 | 123 | .imglistone>li>a>.text>p { 124 | font-size: 15px; 125 | margin-top: 10px; 126 | } 127 | 128 | .imglistone>li>a>.text>div:first-child { 129 | margin-bottom: 10px; 130 | } 131 | 132 | .imglisttwo>li { 133 | width: 33%; 134 | height: 280px; 135 | } 136 | 137 | .imglisttwo>li>a>.text { 138 | width: calc(90% - 20px); 139 | height: calc(36% - 20px); 140 | bottom: -18%; 141 | left: 5%; 142 | } 143 | 144 | .imglisttwo>li>a>.text>div:first-child>div { 145 | font-size: 12px; 146 | } 147 | 148 | .imglisttwo>li>a>.text>div:first-child>div:last-child>i { 149 | font-size: 12px !important; 150 | } 151 | 152 | .imglisttwo>li>a>.text>h3 { 153 | font-size: 14px; 154 | } 155 | 156 | .imglisttwo>li>a>.text>p { 157 | font-size: 13px; 158 | margin-top: 5px; 159 | } 160 | 161 | .imglisttwo>li>a>.text>div:first-child { 162 | margin-bottom: 5px; 163 | } 164 | 165 | 166 | .gengduo { 167 | height: 40px; 168 | background: rgb(219, 223, 226); 169 | } 170 | 171 | .gengduo>a { 172 | display: block; 173 | text-align: center; 174 | height: 100%; 175 | line-height: 40px; 176 | color: rgb(134, 134, 136); 177 | letter-spacing: 5px; 178 | } 179 | 180 | .header { 181 | position: relative; 182 | height: 70px; 183 | width: 100%; 184 | z-index: 10000; 185 | top: 0; 186 | background:rgba(0,0,0,.5); 187 | } 188 | 189 | .header .logo { 190 | float: left; 191 | height: 100%; 192 | width: 100px; 193 | } 194 | 195 | .header .logo>a { 196 | display: block; 197 | width: 100%; 198 | height: 100%; 199 | } 200 | 201 | .header .logo>a>img { 202 | display: block; 203 | width: 100%; 204 | height: 30px; 205 | margin-top: 20px; 206 | } 207 | 208 | .header .titlelist { 209 | height: 100%; 210 | float: left; 211 | margin: 0; 212 | margin-left: 20px; 213 | } 214 | 215 | .header .titlelist>li { 216 | height: 100%; 217 | float: left; 218 | margin-right: 30px; 219 | } 220 | 221 | .header .titlelist>li>a { 222 | display: block; 223 | width: 100%; 224 | height: 100%; 225 | line-height: 70px; 226 | color: #fff; 227 | font-weight: bold; 228 | } 229 | 230 | .header .dengru { 231 | float: right; 232 | } 233 | 234 | .header .dengru { 235 | height: 100%; 236 | display: flex; 237 | justify-content: space-between; 238 | align-items: center; 239 | } 240 | 241 | .header .dengru>div { 242 | width: 80px; 243 | height: 30px; 244 | border: 2px solid #fff; 245 | margin-right: 10px; 246 | border-radius: 30px; 247 | } 248 | 249 | .header .dengru>div:first-child { 250 | border: none; 251 | } 252 | 253 | .header .dengru>div>a { 254 | display: block; 255 | width: 100%; 256 | height: 100%; 257 | color: #fff; 258 | text-align: center; 259 | line-height: 30px; 260 | } 261 | 262 | .footer { 263 | height: 300px; 264 | background: #B7B7B7; 265 | } 266 | 267 | .footer>.container { 268 | display: flex; 269 | justify-content: space-between; 270 | } 271 | 272 | .footer-yi>h3 { 273 | margin: 0; 274 | margin-top: 50px; 275 | } 276 | 277 | .footer-yi>h3>img { 278 | width: 200px; 279 | } 280 | 281 | .footer-yi>div { 282 | margin: 20px 0; 283 | margin-bottom: 30px; 284 | font-size: 14px; 285 | color: rgba(255, 255, 255, .8); 286 | } 287 | 288 | .footer-yi>ul { 289 | display: flex; 290 | justify-content: start; 291 | } 292 | 293 | .footer-yi>ul>li { 294 | padding: 2px 10px; 295 | background: #fff; 296 | border-right: 1px solid #404040; 297 | } 298 | 299 | .footer-yi>ul>li:last-child { 300 | border: none; 301 | } 302 | 303 | .footer-yi>ul>li>a { 304 | color: #404040; 305 | } 306 | .footer-yi p{ 307 | font-size:20px; 308 | } 309 | 310 | .footer-er { 311 | width: 390px; 312 | height: 190px; 313 | background: #fff; 314 | margin-top: 20px; 315 | padding: 20px 30px; 316 | } 317 | 318 | .footer-er>div { 319 | float: left; 320 | } 321 | 322 | .footer-er h3 { 323 | color: #404040; 324 | } 325 | 326 | .footer-er>div:first-child>ul>li { 327 | margin-top: 15px; 328 | margin-left: 25px; 329 | } 330 | 331 | .footer-er>div:first-child>ul>li>a>i { 332 | font-size: 25px; 333 | color: #CBCBCB; 334 | } 335 | .footer-er>div:first-child>ul>li>a>i:hover{ 336 | color: #42D333; 337 | } 338 | .footer-er>div:nth-child(2) { 339 | margin-left: 70px; 340 | } 341 | 342 | .footer-er>div:nth-child(2)>img { 343 | width: 120px; 344 | } 345 | 346 | .footer-er>div:last-child { 347 | margin-top: 65px; 348 | margin-left: 20px; 349 | } 350 | 351 | .footer-er>div:last-child>div { 352 | width: 100px; 353 | height: 30px; 354 | border: 2px solid #42D333; 355 | margin-bottom: 10px; 356 | } 357 | 358 | .footer-er>div:last-child>div>a { 359 | display: block; 360 | height: 100%; 361 | font-size: 12px; 362 | color: #42D333; 363 | line-height: 30px; 364 | text-align: center; 365 | } 366 | 367 | .footer-er>div:last-child i { 368 | font-size: 16px; 369 | margin-right: 3px; 370 | } 371 | .wenlist { 372 | width: calc(25% - 30px); 373 | height: 650px; 374 | padding: 30px 15px; 375 | border: 2px solid #E7E7E7; 376 | position: relative; 377 | } 378 | 379 | .wenlist>.title { 380 | position: absolute; 381 | width: 60%; 382 | background: #fff; 383 | left: 20%; 384 | top: -2%; 385 | text-align: center; 386 | color: #E7E7E7; 387 | } 388 | 389 | .wenlist>.title>a { 390 | color: #E7E7E7; 391 | font-weight: bold; 392 | } 393 | 394 | .wenlist>.title>a:first-of-type { 395 | color: rgb(96, 96, 96); 396 | } 397 | 398 | .wenlist>.title>span { 399 | margin: 0 10px; 400 | } 401 | 402 | 403 | 404 | .wenlist .list-first { 405 | height: 140px; 406 | position: relative; 407 | } 408 | .wenlist .list-first>a{ 409 | overflow:hidden; 410 | } 411 | .wenlist .list-first>a, 412 | .wenlist .list-first>a>img { 413 | display: block; 414 | width: 100%; 415 | height: 100%; 416 | } 417 | .wenlist .list-first>a>img{ 418 | transition: all .4s; 419 | } 420 | .wenlist .list-first>a:hover>img{ 421 | transform: scale(1.2); 422 | } 423 | .wenlist .biao { 424 | position: absolute; 425 | left: 4%; 426 | top: -6%; 427 | display: block; 428 | width: 17px; 429 | height: 17px; 430 | border-radius: 100%; 431 | background-color: #FF9961; 432 | color: #fff; 433 | text-align: center; 434 | line-height: 17px; 435 | } 436 | 437 | .wenlist .list-first .kuang { 438 | position: absolute; 439 | top: 20%; 440 | left: 15%; 441 | width: 70%; 442 | height: 60%; 443 | border: 2px solid rgba(255, 255, 255, .8); 444 | color: rgba(255, 255, 255, .8); 445 | } 446 | 447 | .wenlist .list-first .kuang>span { 448 | display: block; 449 | text-align: center; 450 | margin-top: 17%; 451 | font-weight: bold; 452 | } 453 | 454 | .wenlist .list-li { 455 | height: 70px; 456 | position: relative; 457 | margin-top: 31.5px; 458 | } 459 | 460 | .wenlist .list-li .biao { 461 | top: -10%; 462 | left: 4%; 463 | } 464 | .wenlist .list-li>a>div:first-child{ 465 | overflow:hidden; 466 | } 467 | .wenlist .list-li>a, 468 | .wenlist .list-li>a>div:first-child>img { 469 | display: block; 470 | width: 100%; 471 | height: 100%; 472 | } 473 | .wenlist .list-li>a img{ 474 | transition: all .4s; 475 | } 476 | .wenlist .list-li>a:hover img{ 477 | transform: scale(1.2); 478 | } 479 | .wenlist .list-li>a:hover h4{ 480 | color:#FF9961 !important; 481 | } 482 | .wenlist .list-li>a>div:first-child { 483 | float: left; 484 | width: 42%; 485 | } 486 | 487 | .wenlist .list-li>a>div:last-child { 488 | float: right; 489 | width: 56%; 490 | } 491 | 492 | .wenlist .list-li>a>div:last-child>h4 { 493 | margin: 5px 0; 494 | font-size: 14px; 495 | width: 100%; 496 | color: rgb(96, 96, 96); 497 | } 498 | 499 | .wenlist .list-li>a>div:last-child>p { 500 | font-size: 14px; 501 | width: 70%; 502 | color: #999999; 503 | } 504 | 505 | 506 | 507 | 508 | .headfirst { 509 | width: 20%; 510 | } 511 | 512 | .headfirst>a { 513 | display: block; 514 | width: 100%; 515 | height: 100%; 516 | } 517 | 518 | .headfirst>a>img { 519 | width: 100px; 520 | height: 55px; 521 | margin-top: 12px; 522 | } 523 | 524 | .headfirst>a>img:hover { 525 | transform: scale(1.2); 526 | } 527 | -------------------------------------------------------------------------------- /myKGRS/temp.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daisir8/DGRKGRS/d4a1bdd1a5d2bf587813861c54c071c84dd7c0f2/myKGRS/temp.xls -------------------------------------------------------------------------------- /myKGRS/templates/activity.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 244 | 245 | 246 | 247 |
248 |
249 |
250 | 251 | 256 |
257 | 258 | 259 |
260 |
261 |
262 |
263 | 264 |
265 | 266 |
267 |
268 | 269 | 270 | 278 | 279 | 280 | 281 | 282 | O 283 | 311 | 312 | 313 | 314 | 315 | 316 |
317 | 318 | 327 | 328 | 329 | 330 |
331 | 332 | 333 |
334 | 335 | 336 | 337 | 338 | 339 | 367 | 368 | 369 | 370 | 371 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | -------------------------------------------------------------------------------- /myKGRS/templates/activity2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 244 | 245 | 246 | 247 |
248 |
249 |
250 | 251 | 256 |
257 | 258 | 259 |
260 |
261 |
262 |
263 | 264 |
265 | 266 |
267 |
268 | 269 | 270 | 278 | 279 | 280 | 281 | 282 | 283 | O 284 | 312 | 313 | 314 | 315 | 316 |
317 | 318 | 327 | 328 | 329 | 330 |
331 | 332 | 333 |
334 | 335 | 336 | 337 | 338 | 339 | 367 | 368 | 369 | 370 | 371 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | -------------------------------------------------------------------------------- /myKGRS/templates/imglist.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 |
13 |
14 | 15 | 20 |
21 | 22 | 23 |
24 |
25 |
26 | 30 | 31 |
32 |
33 |
34 | 42 | 100 | 146 | 203 | 261 | 307 | 364 |
365 |
366 |