diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 692fac9..813a6ab 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -18,7 +18,12 @@ import { LogoProvider } from "./LogoContext"; import { FullScreenLoader } from "./components/Preloader"; import { ThemeProvider } from "./ThemeContext"; -const Main = lazy(() => import("@/pages/Main")); +const Main = lazy(() => import("@/pages/Main")); // 原首页-AI问政 +const Home = lazy(() => import("@/pages/Home")); // 新首页 +const PolicyLibrary = lazy(() => import("@/pages/PolicyLibrary")); // 政策库 +const DataAnalysis = lazy(() => import("@/pages/DataAnalysis")); // 数据分析 +const Tendency = lazy(() => import("@/pages/Tendency")); // 趋势洞察 + const InvitePage = lazy(() => import("@/pages/Invite")); const WorkspaceChat = lazy(() => import("@/pages/WorkspaceChat")); const AdminUsers = lazy(() => import("@/pages/Admin/Users")); @@ -89,7 +94,21 @@ export default function App() { - } /> + } /> + } /> + } + /> + } + /> + } + /> + } />

- Create New Folder + 创建新文件夹

diff --git a/frontend/src/components/Modals/ManageWorkspace/Documents/Directory/index.jsx b/frontend/src/components/Modals/ManageWorkspace/Documents/Directory/index.jsx index cb25903..f375a12 100644 --- a/frontend/src/components/Modals/ManageWorkspace/Documents/Directory/index.jsx +++ b/frontend/src/components/Modals/ManageWorkspace/Documents/Directory/index.jsx @@ -179,6 +179,7 @@ function Directory({ }, 500); const filteredFiles = filterFileSearchResults(files, searchTerm); + console.log(333,filteredFiles); const handleContextMenu = (event) => { event.preventDefault(); diff --git a/frontend/src/components/Modals/ManageWorkspace/Documents/UploadFile/index.jsx b/frontend/src/components/Modals/ManageWorkspace/Documents/UploadFile/index.jsx index edc75ef..93fb747 100644 --- a/frontend/src/components/Modals/ManageWorkspace/Documents/UploadFile/index.jsx +++ b/frontend/src/components/Modals/ManageWorkspace/Documents/UploadFile/index.jsx @@ -80,7 +80,8 @@ export default function UploadFile({ return (
{ async function fetchUsers() { const _users = await Admin.users(); + console.log(1111,_users); setUsers(_users); setLoading(false); } diff --git a/frontend/src/pages/DataAnalysis/DataAnalysis.css b/frontend/src/pages/DataAnalysis/DataAnalysis.css new file mode 100644 index 0000000..30a4545 --- /dev/null +++ b/frontend/src/pages/DataAnalysis/DataAnalysis.css @@ -0,0 +1,115 @@ +.box { + width: 100%; + padding: 10px 0; + height: auto; + position: absolute; + background-color: #F7F7FC; +} + +.box1 { + width: 85%; + margin: 0 auto; + box-sizing: border-box; + display: grid; + grid-template-rows: 100px 1fr; +} + +.search { + display: flex; + align-items: center; + justify-content: center; + margin: 10px 0; +} + +.search1 { + width: 40%; + position: relative; + box-shadow: 0 0 5px #CFCFCF; + border-radius: 50px; +} + +.search1 input { + width: 100%; + border-bottom-left-radius: 50px; + border-top-left-radius: 50px; + padding: 8px 0 8px 50px; +} + +.search1 input:focus { + outline: none; + border: 1px solid #1677FF; +} + +.search1 img { + width: 30px; + height: 30px; + position: absolute; + left: 10px; + top: 0; + bottom: 0; + margin: auto; +} + +.search button { + color: #fff; + background-color: #1677FF; + padding: 8px 30px 8px; + border-top-right-radius: 50px; + border-bottom-right-radius: 50px; + box-shadow: 0 0 5px #CFCFCF; +} + +.content { + width: 100%; + display: grid; + grid-template-columns: 1fr 1fr 1fr 1fr; + column-gap: 20px; + row-gap: 20px; +} + +.content2 { + display: grid; + grid-template-rows: 1fr 50px; + box-shadow: 0 0 2px #CFCFCF; + background-color: #fff; + border-radius: 10px; +} + +.content2_1 { + width: 95%; + display: grid; + grid-template-columns: 50px 1fr; + column-gap: 20px; + border-bottom: 1px solid #F0F0F5; + padding: 10px; +} + +.nr1 img { + width: 100%; +} + +.nr2 div:first-child { + font-size: 18px; + font-weight: bold; +} + +.nr2 div:last-child { + color: #7E807C; + font-size: 14px; + padding: 5px 0; +} + +.content2_2 { + display: flex; + align-items: center; + justify-content: right; +} + +.content2_2 button { + color: #645BFF; + background-color: #E6E9FF; + padding: 5px 10px; + margin-right: 20px; + border-radius: 5px; + font-size: 14px; +} \ No newline at end of file diff --git a/frontend/src/pages/DataAnalysis/img/1.png b/frontend/src/pages/DataAnalysis/img/1.png new file mode 100644 index 0000000..af43baf Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/1.png differ diff --git a/frontend/src/pages/DataAnalysis/img/10.png b/frontend/src/pages/DataAnalysis/img/10.png new file mode 100644 index 0000000..5b3068b Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/10.png differ diff --git a/frontend/src/pages/DataAnalysis/img/11.png b/frontend/src/pages/DataAnalysis/img/11.png new file mode 100644 index 0000000..3246683 Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/11.png differ diff --git a/frontend/src/pages/DataAnalysis/img/12.png b/frontend/src/pages/DataAnalysis/img/12.png new file mode 100644 index 0000000..4fadb19 Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/12.png differ diff --git a/frontend/src/pages/DataAnalysis/img/13.png b/frontend/src/pages/DataAnalysis/img/13.png new file mode 100644 index 0000000..25d96e4 Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/13.png differ diff --git a/frontend/src/pages/DataAnalysis/img/14.png b/frontend/src/pages/DataAnalysis/img/14.png new file mode 100644 index 0000000..f214c57 Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/14.png differ diff --git a/frontend/src/pages/DataAnalysis/img/2.png b/frontend/src/pages/DataAnalysis/img/2.png new file mode 100644 index 0000000..5e4caea Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/2.png differ diff --git a/frontend/src/pages/DataAnalysis/img/3.png b/frontend/src/pages/DataAnalysis/img/3.png new file mode 100644 index 0000000..667c57a Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/3.png differ diff --git a/frontend/src/pages/DataAnalysis/img/4.png b/frontend/src/pages/DataAnalysis/img/4.png new file mode 100644 index 0000000..ae0e39c Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/4.png differ diff --git a/frontend/src/pages/DataAnalysis/img/5.png b/frontend/src/pages/DataAnalysis/img/5.png new file mode 100644 index 0000000..2413fd0 Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/5.png differ diff --git a/frontend/src/pages/DataAnalysis/img/6.png b/frontend/src/pages/DataAnalysis/img/6.png new file mode 100644 index 0000000..86722dc Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/6.png differ diff --git a/frontend/src/pages/DataAnalysis/img/7.png b/frontend/src/pages/DataAnalysis/img/7.png new file mode 100644 index 0000000..add1c4e Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/7.png differ diff --git a/frontend/src/pages/DataAnalysis/img/8.png b/frontend/src/pages/DataAnalysis/img/8.png new file mode 100644 index 0000000..2170905 Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/8.png differ diff --git a/frontend/src/pages/DataAnalysis/img/9.png b/frontend/src/pages/DataAnalysis/img/9.png new file mode 100644 index 0000000..aef0a83 Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/9.png differ diff --git a/frontend/src/pages/DataAnalysis/img/sou.png b/frontend/src/pages/DataAnalysis/img/sou.png new file mode 100644 index 0000000..3c86ca4 Binary files /dev/null and b/frontend/src/pages/DataAnalysis/img/sou.png differ diff --git a/frontend/src/pages/DataAnalysis/index.jsx b/frontend/src/pages/DataAnalysis/index.jsx new file mode 100644 index 0000000..e8d2f7b --- /dev/null +++ b/frontend/src/pages/DataAnalysis/index.jsx @@ -0,0 +1,170 @@ +import React, { useEffect, useState, useRef } from 'react'; +import './DataAnalysis.css' +import sou from './img/sou.png' +import tu1 from './img/1.png' +import tu2 from './img/2.png' +import tu3 from './img/3.png' +import tu4 from './img/4.png' +import tu5 from './img/5.png' +import tu6 from './img/6.png' +import tu7 from './img/7.png' +import tu8 from './img/8.png' +import tu9 from './img/9.png' +import tu10 from './img/10.png' +import tu11 from './img/11.png' +import tu12 from './img/12.png' +import tu13 from './img/13.png' +import tu14 from './img/14.png' + +function DataAnalysis() { + const [renderKey, setRenderKey] = useState(); + + const list = [ + { + name: '觉醒回声', + text: '欢迎来到「觉醒电台」,这里有四位独具魅力的主播,陪你畅聊科技前沿、哲学思辨、星座运势和娱乐圈八卦,无论你是', + img: tu1 + }, + { + name: '金脉超级面试官', + text: 'deepseek深度解析简历,为应聘者提供全面的分析和诊断,并提供AI面试,为春招的小伙伴打下坚实基础。', + img: tu2 + }, + { + name: 'DeepSeek R1超级助手', + text: 'DeepSeek R1超级助手,具备联网搜索,代码运行等能力,是你身边最万能的伙伴,借助火山方舟我能为你提供高并发服务~', + img: tu3 + }, + { + name: 'DeepSeek R1能力增强版', + text: 'DeepSeek 能力增强版,你可以使用我来完成联网搜索、图片理解、读链接、生成图片、思维导图等需求', + img: tu4 + }, + { + name: '表情包生成器', + text: '一键生成表情包!', + img: tu5 + }, + { + name: '茉卷英语', + text: '开启AI英语创作新纪元! ⚡ 豆包1.5 + DeepSeek R1 双AI引擎赋能 📢 多维创作空间:文本/音频/图文 🌱 共创共学社区', + img: tu6 + }, + { + name: '华泰股市助手', + text: '为您提供灵活的股票指标筛选工具,以及对市场的分析。', + img: tu7 + }, + { + name: 'Emoji 翻译器', + text: '我是一个 😀🐶🍏 表情符号(emoji)翻译机器人,我会把你发过来的语句用表情符号翻译给你。也可以翻译你发过来的表情', + img: tu8 + }, + { + name: '懂车帝', + text: '由官方打造的汽车领域AI助手,为您一站式解决看选买的用车需求。', + img: tu9 + }, + { + name: '万能英语助手', + text: '擅长:单词记忆和学习、口语对话训练、英语知识讲解、翻译。', + img: tu10 + }, + { + name: '专业英语翻译', + text: '能翻译所有英语字,词,文章,论文等', + img: tu11 + }, + { + name: '小红书账号拆解神器', + text: '提供小红书账号粉丝画像、口碑排名、内容标签等多维度数据分析,帮你快速了解账号特点。', + img: tu12 + }, + { + name: '觉醒回声', + text: '欢迎来到「觉醒电台」,这里有四位独具魅力的主播,陪你畅聊科技前沿、哲学思辨、星座运势和娱乐圈八卦,无论你是', + img: tu13 + }, + { + name: '旅途小助手(行程规划)', + text: '一个为您量身定制旅行计划的智能助手,只需输入旅行地点和天数,便能获得详尽的日程安排和美食推荐。让您的旅途轻', + img: tu14 + }, + { + name: 'Emoji 翻译器', + text: '我是一个 😀🐶🍏 表情符号(emoji)翻译机器人,我会把你发过来的语句用表情符号翻译给你。也可以翻译你发过来的表情', + img: tu8 + }, + { + name: '懂车帝', + text: '由官方打造的汽车领域AI助手,为您一站式解决看选买的用车需求。', + img: tu9 + }, + { + name: '万能英语助手', + text: '擅长:单词记忆和学习、口语对话训练、英语知识讲解、翻译。', + img: tu10 + }, + { + name: '专业英语翻译', + text: '能翻译所有英语字,词,文章,论文等', + img: tu11 + }, + { + name: '小红书账号拆解神器', + text: '提供小红书账号粉丝画像、口碑排名、内容标签等多维度数据分析,帮你快速了解账号特点。', + img: tu12 + }, + { + name: '觉醒回声', + text: '欢迎来到「觉醒电台」,这里有四位独具魅力的主播,陪你畅聊科技前沿、哲学思辨、星座运势和娱乐圈八卦,无论你是', + img: tu13 + }, + { + name: '旅途小助手(行程规划)', + text: '一个为您量身定制旅行计划的智能助手,只需输入旅行地点和天数,便能获得详尽的日程安排和美食推荐。让您的旅途轻', + img: tu14 + }, + ] + + useEffect(() => { + + }, []); + + + return ( +
+
+
+
+
+ + +
+ +
+
+
+ {list.map((item, index) => ( +
+
+
+ +
+
+
{item.name}
+
{item.text}
+
+
+
+ +
+
+ ))} +
+
+
+ ) +} + +export default DataAnalysis; \ No newline at end of file diff --git a/frontend/src/pages/Home/home.css b/frontend/src/pages/Home/home.css new file mode 100644 index 0000000..98649d6 --- /dev/null +++ b/frontend/src/pages/Home/home.css @@ -0,0 +1,127 @@ +.box { + width: 100%; +} + +.box video { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + object-fit: fill; +} + +.cen_box { + width: 100%; + height: 100vh; + display: grid; + grid-template-rows: 100px 1fr; + box-sizing: border-box; +} + +.head { + position: relative; +} + +.head1_1 { + text-align: center; + position: absolute; + left: 0; + right: 0; + top: 16px; + margin: auto; + font-weight: bold; + font-size: 26px; + letter-spacing: 4px; + + color: transparent; + background: linear-gradient(to bottom, #98F5FF, #0EC0FF); + -webkit-background-clip: text; + background-clip: text; + + overflow: hidden; + white-space: nowrap; + animation: move 5s steps(60) forwards; +} + +@keyframes move { + from { + width: 0; + } + + to { + width: 100%; + } +} + +.head2 { + position: absolute; + display: flex; + right: 10%; + top: 35px; + bottom: 0; + font-weight: bold; + color: #fff; +} + +.head2 div:nth-child(1) { + font-size: 26px; +} + +.head2 div:nth-child(2) { + margin: 0 20px; + margin-top: 10px; +} + +.head2 div:nth-child(3) { + margin-top: 10px; +} + + +.head img { + width: 100%; + background-size: 100% 100%; +} + +.content { + width: 100%; + top: 0; + bottom: 0; + margin: auto; +} + +.lunType { + width: 100%; +} + +.lunType1_1 { + display: grid; + grid-template-columns: 1fr 1fr 1fr 1fr; + row-gap: 100px; + justify-items: center; +} + +.lunType2 { + width: 20vw; + height: 15vw; + background-image: url('./img/233.png'); + background-size: 100% 100%; + color: #fff; + font-size: 26px; +} + +.lunType2 div { + text-align: center; + margin: 30px 0 20px; +} + +.lunType2 img { + width: 130px; + height: 150px; + margin: 0 auto; +} + +.lunType2:hover { + color: #dfb07b; + background-image: url('./img/ccc.png'); +} \ No newline at end of file diff --git a/frontend/src/pages/Home/img/-6.png b/frontend/src/pages/Home/img/-6.png new file mode 100644 index 0000000..b3da018 Binary files /dev/null and b/frontend/src/pages/Home/img/-6.png differ diff --git a/frontend/src/pages/Home/img/1.png b/frontend/src/pages/Home/img/1.png new file mode 100644 index 0000000..f91e480 Binary files /dev/null and b/frontend/src/pages/Home/img/1.png differ diff --git a/frontend/src/pages/Home/img/2.png b/frontend/src/pages/Home/img/2.png new file mode 100644 index 0000000..8dc90f7 Binary files /dev/null and b/frontend/src/pages/Home/img/2.png differ diff --git a/frontend/src/pages/Home/img/233.png b/frontend/src/pages/Home/img/233.png new file mode 100644 index 0000000..9b02041 Binary files /dev/null and b/frontend/src/pages/Home/img/233.png differ diff --git a/frontend/src/pages/Home/img/3.png b/frontend/src/pages/Home/img/3.png new file mode 100644 index 0000000..3b0e03f Binary files /dev/null and b/frontend/src/pages/Home/img/3.png differ diff --git a/frontend/src/pages/Home/img/4.png b/frontend/src/pages/Home/img/4.png new file mode 100644 index 0000000..213f4ff Binary files /dev/null and b/frontend/src/pages/Home/img/4.png differ diff --git a/frontend/src/pages/Home/img/5.png b/frontend/src/pages/Home/img/5.png new file mode 100644 index 0000000..68caf30 Binary files /dev/null and b/frontend/src/pages/Home/img/5.png differ diff --git a/frontend/src/pages/Home/img/6.png b/frontend/src/pages/Home/img/6.png new file mode 100644 index 0000000..e9747ae Binary files /dev/null and b/frontend/src/pages/Home/img/6.png differ diff --git a/frontend/src/pages/Home/img/7.png b/frontend/src/pages/Home/img/7.png new file mode 100644 index 0000000..1e56e51 Binary files /dev/null and b/frontend/src/pages/Home/img/7.png differ diff --git a/frontend/src/pages/Home/img/8.png b/frontend/src/pages/Home/img/8.png new file mode 100644 index 0000000..bdfe78f Binary files /dev/null and b/frontend/src/pages/Home/img/8.png differ diff --git a/frontend/src/pages/Home/img/bj1.mp4 b/frontend/src/pages/Home/img/bj1.mp4 new file mode 100644 index 0000000..32e3333 Binary files /dev/null and b/frontend/src/pages/Home/img/bj1.mp4 differ diff --git a/frontend/src/pages/Home/img/bj2.mp4 b/frontend/src/pages/Home/img/bj2.mp4 new file mode 100644 index 0000000..c6a19cc Binary files /dev/null and b/frontend/src/pages/Home/img/bj2.mp4 differ diff --git a/frontend/src/pages/Home/img/card.png b/frontend/src/pages/Home/img/card.png new file mode 100644 index 0000000..e7ea954 Binary files /dev/null and b/frontend/src/pages/Home/img/card.png differ diff --git a/frontend/src/pages/Home/img/card_hover.png b/frontend/src/pages/Home/img/card_hover.png new file mode 100644 index 0000000..195b851 Binary files /dev/null and b/frontend/src/pages/Home/img/card_hover.png differ diff --git a/frontend/src/pages/Home/img/ccc.png b/frontend/src/pages/Home/img/ccc.png new file mode 100644 index 0000000..b1f8c98 Binary files /dev/null and b/frontend/src/pages/Home/img/ccc.png differ diff --git a/frontend/src/pages/Home/img/cr.png b/frontend/src/pages/Home/img/cr.png new file mode 100644 index 0000000..776a8c9 Binary files /dev/null and b/frontend/src/pages/Home/img/cr.png differ diff --git a/frontend/src/pages/Home/img/cr1.png b/frontend/src/pages/Home/img/cr1.png new file mode 100644 index 0000000..77d35d1 Binary files /dev/null and b/frontend/src/pages/Home/img/cr1.png differ diff --git a/frontend/src/pages/Home/img/cr2.png b/frontend/src/pages/Home/img/cr2.png new file mode 100644 index 0000000..1b4b571 Binary files /dev/null and b/frontend/src/pages/Home/img/cr2.png differ diff --git a/frontend/src/pages/Home/img/head.png b/frontend/src/pages/Home/img/head.png new file mode 100644 index 0000000..04eeb58 Binary files /dev/null and b/frontend/src/pages/Home/img/head.png differ diff --git a/frontend/src/pages/Home/index.jsx b/frontend/src/pages/Home/index.jsx new file mode 100644 index 0000000..e10cd12 --- /dev/null +++ b/frontend/src/pages/Home/index.jsx @@ -0,0 +1,136 @@ +import { useState, useEffect } from "react"; +import './home.css' +import videoRef from "./img/bj1.mp4" +import headImg from "./img/head.png" +import { Carousel, message } from 'antd'; +import moment from 'moment'; +import bg from './img/card.png' +import bgHover from "./img/card_hover.png" +import icon1 from "./img/1.png" +import icon2 from "./img/2.png" +import icon3 from "./img/3.png" +import icon4 from "./img/4.png" +import icon5 from "./img/5.png" +import icon6 from "./img/6.png" +import icon7 from "./img/7.png" +import icon8 from "./img/8.png" + + +export default function Home() { + const [data, setData] = useState(false); + const weeks = ['周日', '周一', '周二', '周三', '周四', '周五', '周六']; + const [renderKey, setRenderKey] = useState(1); + // 链接类型:1-路由 2-链接 3-建设中 4-点击事件 + const list = [ + { + type: 1, + url: '/indexto', + name: '数据上传', + icon: icon1, + }, + { + type: 1, + url: '/home/DataAnalysis', + name: '数据分析', + icon: icon2, + }, + { + type: 2, + url: '/policemap', + name: '报告生成', + icon: icon4, + }, + { + type: 1, + url: '/Main', + name: 'AI问政', + icon: icon3, + }, + { + type: 1, + url: '/settings/appearance', + name: '系统管理', + icon: icon5, + }, + { + type: 1, + url: '/home/Tendency', + name: '趋势洞察', + icon: icon6, + }, + { + type: 1, + url: '/home/PolicyLibrary', + name: '政策库', + icon: icon7, + }, + { + type: 2, + url: '/camera/manage_place', + name: '应用管理', + icon: icon8, + }, + ] + + // 点击事件 + const bindUrl = (e) => { + console.log(1234, e); + if (e.type == 1) { + window.location = e.url + } else { + message.info({ + content: e.name + '开发中...' + }) + } + } + + //方法 + useEffect(() => { + const timer = setInterval(() => { + setRenderKey(Math.random()); + }, 1000); + // 组件卸载清除定时器 + return () => clearInterval(timer); + }, []); + + return ( +
+ {/* 背景视频 */} + +
+
+
阿拉善盟AI行政数据分析与决策参考系统
+ +
+
{moment().format('HH:mm:ss')}
+
{moment().format('YYYY年MM月DD日')}
+
{weeks[moment().day()]}
+
+
+
+ +
+
+ {list.map((item, index) => ( +
bindUrl(item)}> +
{item.name}
+ +
+ ))} +
+
+
+
+
+
+ ) + +} + + + + + + diff --git a/frontend/src/pages/Home/styles/btn.scss b/frontend/src/pages/Home/styles/btn.scss new file mode 100644 index 0000000..e6ba1a8 --- /dev/null +++ b/frontend/src/pages/Home/styles/btn.scss @@ -0,0 +1,99 @@ +@import './variables.scss'; + +@mixin colorBtn($color) { + background: $color; + + &:hover { + color: $color; + + &:before, + &:after { + background: $color; + } + } +} + +.blue-btn { + @include colorBtn($blue) +} + +.light-blue-btn { + @include colorBtn($light-blue) +} + +.red-btn { + @include colorBtn($red) +} + +.pink-btn { + @include colorBtn($pink) +} + +.green-btn { + @include colorBtn($green) +} + +.tiffany-btn { + @include colorBtn($tiffany) +} + +.yellow-btn { + @include colorBtn($yellow) +} + +.pan-btn { + font-size: 14px; + color: #fff; + padding: 14px 36px; + border-radius: 8px; + border: none; + outline: none; + transition: 600ms ease all; + position: relative; + display: inline-block; + + &:hover { + background: #fff; + + &:before, + &:after { + width: 100%; + transition: 600ms ease all; + } + } + + &:before, + &:after { + content: ''; + position: absolute; + top: 0; + right: 0; + height: 2px; + width: 0; + transition: 400ms ease all; + } + + &::after { + right: inherit; + top: inherit; + left: 0; + bottom: 0; + } +} + +.custom-button { + display: inline-block; + line-height: 1; + white-space: nowrap; + cursor: pointer; + background: #fff; + color: #fff; + -webkit-appearance: none; + text-align: center; + box-sizing: border-box; + outline: 0; + margin: 0; + padding: 10px 15px; + font-size: 14px; + border-radius: 4px; +} diff --git a/frontend/src/pages/Home/styles/chenhai.scss b/frontend/src/pages/Home/styles/chenhai.scss new file mode 100644 index 0000000..f67e006 --- /dev/null +++ b/frontend/src/pages/Home/styles/chenhai.scss @@ -0,0 +1,384 @@ +/** + * 通用css样式布局处理 + * Copyright (c) 2019 chenhai + */ + +/** 基础通用 **/ +.pt5 { + padding-top: 5px; +} +.pr5 { + padding-right: 5px; +} +.pb5 { + padding-bottom: 5px; +} +.mt5 { + margin-top: 5px; +} +.mr5 { + margin-right: 5px; +} +.mb5 { + margin-bottom: 5px; +} +.mb8 { + margin-bottom: 8px; +} +.ml5 { + margin-left: 5px; +} +.mt10 { + margin-top: 10px; +} +.mr10 { + margin-right: 10px; +} +.mb10 { + margin-bottom: 10px; +} +.ml0 { + margin-left: 10px; +} +.mt20 { + margin-top: 20px; +} +.mr20 { + margin-right: 20px; +} +.mb20 { + margin-bottom: 20px; +} +.m20 { + margin-left: 20px; +} + +.el-dialog:not(.is-fullscreen) { + margin-top: 6vh !important; +} + +.el-table { + .el-table__header-wrapper, + .el-table__fixed-header-wrapper { + th { + word-break: break-word; + background-color: #f8f8f9; + color: #515a6e; + height: 40px; + font-size: 13px; + } + } + .el-table__body-wrapper { + .el-button [class*="el-icon-"] + span { + margin-left: 1px; + } + } +} + +/** 表单布局 **/ +.form-header { + font-size: 15px; + color: #6379bb; + border-bottom: 1px solid #ddd; + margin: 8px 10px 25px 10px; + padding-bottom: 5px; +} + +/** 表格布局 **/ +.pagination-container { + position: relative; + height: 25px; + margin-bottom: 10px; + margin-top: 15px; + padding: 10px 20px !important; +} + +/* tree border */ +.tree-border { + margin-top: 5px; + border: 1px solid #e5e6e7; + background: #ffffff none; + border-radius: 4px; +} + +.pagination-container .el-pagination { + right: 0; + position: absolute; +} + +.el-table .fixed-width .el-button--mini { + color: #409eff; + padding-left: 0; + padding-right: 0; + width: inherit; +} + +.el-tree-node__content > .el-checkbox { + margin-right: 8px; +} + +.list-group-striped > .list-group-item { + border-left: 0; + border-right: 0; + border-radius: 0; + padding-left: 0; + padding-right: 0; +} + +.list-group { + padding-left: 0px; + list-style: none; +} + +.list-group-item { + border-bottom: 1px solid #e7eaec; + border-top: 1px solid #e7eaec; + margin-bottom: -1px; + padding: 11px 0px; + font-size: 13px; +} + +.pull-right { + float: right !important; +} + +.el-card__header { + padding: 14px 15px 7px; + min-height: 40px; +} + +.el-card__body { + padding: 15px 20px 20px 20px; +} + +.card-box { + padding-right: 15px; + padding-left: 15px; + margin-bottom: 10px; +} + +/* button color */ +.el-button--cyan.is-active, +.el-button--cyan:active { + background: #20b2aa; + border-color: #20b2aa; + color: #ffffff; +} + +.el-button--cyan:focus, +.el-button--cyan:hover { + background: #48d1cc; + border-color: #48d1cc; + color: #ffffff; +} + +.el-button--cyan { + background-color: #20b2aa; + border-color: #20b2aa; + color: #ffffff; +} + +.up { + position: relative; + // padding-right: 15px; + &::after { + content: '\279C'; + position: absolute; + top: 0; + right: -20px; + bottom: 2px; + color: #00ac51; + font-size: 16px; + font-weight: bold; + transform: rotateZ(-90deg); + } +} + +.down { + position: relative; + // padding-right: 15px; + &::after { + content: '\279C'; + position: absolute; + top: 0; + right: -15px; + bottom: 2px; + color: #ef3248; + font-size: 16px; + font-weight: bold; + transform: rotateZ(90deg); + } +} + +/* text color */ +.text-navy { + color: #00ac51; +} + +.text-primary { + color: inherit; +} + +.text-success { + color: #0095ff; +} + +.text-info { + color: #525264; +} + +.text-warning { + color: #f8ac59; +} + +.text-danger { + color: #ef3248; +} + +.text-muted { + color: #888888; +} + +/* background color */ +.bg-navy { + background-color: #00ac51; +} + +.bg-success { + background-color: #0095ff; +} + +.bg-info { + background-color: #23c6c8; +} + +.bg-warning { + background-color: #f8ac59; +} + +.bg-danger { + background-color: #ef3248; +} + +.bg-muted { + background-color: #888888; +} + +.bg-success-opacity { + background-color: #0095ff20; +} + +.bg-warning-opacity { + background-color: #f8ac5920; +} + +.bg-danger-opacity { + background-color: #ef324820; +} + +.bg-light-blue { + border: 1px solid #0095ff; + background: #e2f6ff; +} +.bg-light-grey { + border: 1px solid #525264; + background: #d7dbf2; +} +.bg-light-green { + border: 1px solid #00ac51; + background: #dcf7e9; +} +.bg-light-orange { + border: 1px solid #f8ac59; + background: #f6e8df; +} + +.border-success { + border-color: #0095ff20; +} + +.border-navy { + border-color: #00ac5120; +} + +/* image */ +.img-circle { + border-radius: 50%; +} + +.img-lg { + width: 120px; + height: 120px; +} + +.avatar-upload-preview { + position: absolute; + top: 50%; + transform: translate(50%, -50%); + width: 200px; + height: 200px; + border-radius: 50%; + box-shadow: 0 0 4px #ccc; + overflow: hidden; +} + +/* 拖拽列样式 */ +.sortable-ghost { + opacity: 0.8; + color: #fff !important; + background: #00ac51 !important; +} + +.top-right-btn { + position: relative; + float: right; +} + +.vue-treeselect--has-value .vue-treeselect__input { + vertical-align: middle !important; +} + +.el-upload__tip { + font-size: 14px; +} + +.el-select { + width: 100%; +} + +.el-dialog { + .el-descriptions { + font-size: 16px; + margin-bottom: 15px; + } + .el-dialog__body { + overflow-y: auto; + padding-bottom: 75px; + max-height: 750px; + } + .el-dialog__footer { + position: absolute; + bottom: 0; + left: 0; + width: 100%; + background-color: #fff; + } +} +.el-tag + .el-tag { + margin-left: 10px; +} +.el-alert { + padding: 0px 16px !important; +} +.button-new-tag { + margin-left: 10px; + height: 32px; + line-height: 30px; + padding-top: 0; + padding-bottom: 0; +} +.input-new-tag { + width: 90px; + margin-left: 10px; + vertical-align: bottom; +} diff --git a/frontend/src/pages/Home/styles/cloud/custom-animation.css b/frontend/src/pages/Home/styles/cloud/custom-animation.css new file mode 100644 index 0000000..9e5c508 --- /dev/null +++ b/frontend/src/pages/Home/styles/cloud/custom-animation.css @@ -0,0 +1,623 @@ +@keyframes fadeIn { + 0% { + opacity: 0; + } + + to { + opacity: 1; + } +} + +@keyframes fadeInLeft { + 0% { + opacity: 0; + transform: translate3d(-200px, 0, 0); + transform: translate3d(-200px, 0, 0); + } + + to { + opacity: 1; + transform: none; + transform: none; + } +} + +@keyframes fadeInRight { + 0% { + opacity: 0; + transform: translate3d(200px, 0, 0); + transform: translate3d(200px, 0, 0); + } + + to { + opacity: 1; + transform: none; + transform: none; + } +} + +@keyframes fadeInUp { + 0% { + opacity: 0; + transform: translate3d(0, 200px, 0); + transform: translate3d(0, 200px, 0); + } + + to { + opacity: 1; + transform: none; + transform: none; + } +} + +@keyframes fadeInDown { + 0% { + opacity: 0; + transform: translate3d(0, -200px, 0); + transform: translate3d(0, -200px, 0); + } + + to { + opacity: 1; + transform: none; + transform: none; + } +} + +@keyframes flipInY { + 0% { + transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + animation-timing-function: ease-in; + animation-timing-function: ease-in; + opacity: 0; + } + + 40% { + transform: perspective(400px) rotateY(-20deg); + transform: perspective(400px) rotateY(-20deg); + animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 60% { + transform: perspective(400px) rotateY(10deg); + transform: perspective(400px) rotateY(10deg); + opacity: 1; + } + + 80% { + transform: perspective(400px) rotateY(-5deg); + transform: perspective(400px) rotateY(-5deg); + } + + to { + transform: perspective(400px); + transform: perspective(400px); + } +} + +@keyframes bounceInLeft { + 0%, + 60%, + 75%, + 90%, + to { + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); + } + + 60% { + opacity: 1; + transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0); + } + + 75% { + transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 90% { + transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); + } + + to { + transform: none; + transform: none; + } +} + +@keyframes bounceInRight { + 0%, + 60%, + 75%, + 90%, + to { + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); + } + + 60% { + opacity: 1; + transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0); + } + + 75% { + transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } + + 90% { + transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); + } + + to { + transform: none; + transform: none; + } +} + +@keyframes bounceInUp { + 0%, + 60%, + 75%, + 90%, + to { + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); + } + + 60% { + opacity: 1; + transform: translate3d(0, -25px, 0); + transform: translate3d(0, -25px, 0); + } + + 75% { + transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 90% { + transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0); + } + + to { + transform: none; + transform: none; + } +} + +@keyframes bounceInDown { + 0%, + 60%, + 75%, + 90%, + to { + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); + } + + 0% { + opacity: 0; + transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); + } + + 60% { + opacity: 1; + transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0); + } + + 75% { + transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 90% { + transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); + } + + to { + transform: none; + transform: none; + } +} + +@keyframes wobble { + 0% { + transform: none; + transform: none; + } + + 15% { + transform: translate3d(-25%, 0, 0) rotate(-5deg); + transform: translate3d(-25%, 0, 0) rotate(-5deg); + } + + 30% { + transform: translate3d(20%, 0, 0) rotate(3deg); + transform: translate3d(20%, 0, 0) rotate(3deg); + } + + 45% { + transform: translate3d(-15%, 0, 0) rotate(-3deg); + transform: translate3d(-15%, 0, 0) rotate(-3deg); + } + + 60% { + transform: translate3d(10%, 0, 0) rotate(2deg); + transform: translate3d(10%, 0, 0) rotate(2deg); + } + + 75% { + transform: translate3d(-5%, 0, 0) rotate(-1deg); + transform: translate3d(-5%, 0, 0) rotate(-1deg); + } + + to { + transform: none; + transform: none; + } +} + +@keyframes rubberBand { + 0% { + transform: scaleX(1); + transform: scaleX(1); + } + + 30% { + transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + transform: scale3d(0.95, 1.05, 1); + transform: scale3d(0.95, 1.05, 1); + } + + 75% { + transform: scale3d(1.05, 0.95, 1); + transform: scale3d(1.05, 0.95, 1); + } + + to { + transform: scaleX(1); + transform: scaleX(1); + } +} + +@keyframes rotateIn { + 0% { + transform: rotate(0deg); + transform: rotate(0deg); + } + + to { + transform: rotate(1turn); + transform: rotate(1turn); + } +} + +@keyframes flip { + 0% { + transform: perspective(400px) rotateY(-1turn); + transform: perspective(400px) rotateY(-1turn); + animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + transform: perspective(400px) translateZ(150px) rotateY(-190deg); + transform: perspective(400px) translateZ(150px) rotateY(-190deg); + animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + transform: perspective(400px) translateZ(150px) rotateY(-170deg); + transform: perspective(400px) translateZ(150px) rotateY(-170deg); + animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + transform: perspective(400px) scale3d(0.95, 0.95, 0.95); + transform: perspective(400px) scale3d(0.95, 0.95, 0.95); + animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + to { + transform: perspective(400px); + transform: perspective(400px); + animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} + +@keyframes swing { + 20% { + transform: rotate(15deg); + transform: rotate(15deg); + } + + 40% { + transform: rotate(-10deg); + transform: rotate(-10deg); + } + + 60% { + transform: rotate(5deg); + transform: rotate(5deg); + } + + 80% { + transform: rotate(-5deg); + transform: rotate(-5deg); + } + + to { + transform: rotate(0deg); + transform: rotate(0deg); + } +} + +@keyframes flash { + 0%, + 50%, + to { + opacity: 1; + } + + 25%, + 75% { + opacity: 0; + } +} + +@keyframes slideDown { + 0% { + transform-origin: 0 0; + transform-origin: 0 0; + transform: translateY(0); + transform: translateY(0); + } + + to { + transform-origin: 0 0; + transform-origin: 0 0; + transform: translateY(100%); + transform: translateY(100%); + } +} + +@keyframes slideUp { + 0% { + transform-origin: 0 0; + transform-origin: 0 0; + transform: translateY(0); + transform: translateY(0); + } + + to { + transform-origin: 0 0; + transform-origin: 0 0; + transform: translateY(-100%); + transform: translateY(-100%); + } +} + +@keyframes tada { + 0% { + transform: scaleX(1); + transform: scaleX(1); + } + + 10%, + 20% { + transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); + transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); + } + + 30%, + 50%, + 70%, + 90% { + transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); + } + + 40%, + 60%, + 80% { + transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); + } + + to { + transform: scaleX(1); + transform: scaleX(1); + } +} + +@keyframes fadeOut { + 0% { + opacity: 1; + } + + to { + opacity: 0; + } +} + +@keyframes fadeOutLeft { + 0% { + opacity: 1; + } + + to { + opacity: 0; + transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +@keyframes fadeOutRight { + 0% { + opacity: 1; + } + + to { + opacity: 0; + transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +@keyframes fadeOutUp { + 0% { + opacity: 1; + } + + to { + opacity: 0; + transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +@keyframes fadeOutDown { + 0% { + opacity: 1; + } + + to { + opacity: 0; + transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +@keyframes bounceOutLeft { + 20% { + opacity: 1; + transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); + } + + to { + opacity: 0; + transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +@keyframes bounceOutRight { + 20% { + opacity: 1; + transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); + } + + to { + opacity: 0; + transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +@keyframes bounceOutUp { + 20% { + transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 40%, + 45% { + opacity: 1; + transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + + to { + opacity: 0; + transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +@keyframes bounceOutDown { + 20% { + transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 40%, + 45% { + opacity: 1; + transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + to { + opacity: 0; + transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +@keyframes flipOutY { + 0% { + transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + transform: perspective(400px) rotateY(-15deg); + transform: perspective(400px) rotateY(-15deg); + opacity: 1; + } + + to { + transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + opacity: 0; + } +} diff --git a/frontend/src/pages/Home/styles/cloud/index.css b/frontend/src/pages/Home/styles/cloud/index.css new file mode 100644 index 0000000..c8bfab3 --- /dev/null +++ b/frontend/src/pages/Home/styles/cloud/index.css @@ -0,0 +1,1292 @@ + +.cloud-container { + position: absolute; + width: 100%; + height: 100%; + background: rgba(5, 11, 22, 1) + url(../../image/cloud/f3851a76-ca73-4b4e-856d-062d7b06ae52.png) no-repeat; + background-size: cover; + overflow-x: hidden; + transform-origin: 0px 0px; + filter: hue-rotate(0deg) saturate(100%) brightness(100%) contrast(100%) + opacity(100%) grayscale(0%); + font-family: "PingFang-SC", "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif +} +.cloud-container::-webkit-scrollbar { + display: none; +} +#item5ede3510-576f-11ec-a0f6-2576a775d511 { + overflow: hidden; + position: absolute; + left: 1985.55px; + top: 676.02px; + width: 644.34px; + height: 826.64px; + z-index: 11; + transform: rotate(0deg); +} +#item5ede3511-576f-11ec-a0f6-2576a775d511 { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 412.31px; + height: 50px; + z-index: 25; + transform: rotate(0deg); +} +#item5ede3512-576f-11ec-a0f6-2576a775d511 { + overflow: hidden; + position: absolute; + left: 2.34px; + top: 56.64px; + width: 642px; + height: 770px; + z-index: 24; + transform: rotate(0deg); +} +#timeContainer { + overflow: hidden; + position: absolute; + left: 12.52px; + top: 22.84px; + width: 288.83px; + height: 60px; + z-index: 10; + transform: rotate(0deg); +} +#cloudDate { + overflow: hidden; + position: absolute; + left: 143.16px; + top: 0px; + width: 145.67px; + height: 57.35px; + z-index: 2; + transform: rotate(0deg); +} +#cloudTime { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 145.67px; + height: 60px; + z-index: 1; + transform: rotate(0deg); +} +#cloudRightBox { + overflow: hidden; + position: absolute; + left: 1500.32px; + top: 90px; + width: 397px; + height: 807px; + z-index: 9; + transform: rotate(0deg); +} +#rightChartOne { + overflow: hidden; + position: absolute; + left: 12.31px; + top: 62.11px; + width: 372.63px; + height: 272.63px; + z-index: 4; + transform: rotate(0deg); +} +#rightChartOneData { + overflow: hidden; + position: absolute; + left: 8.72px; + top: 61.69px; + width: 374.59px; + height: 51px; + z-index: 3; + transform: rotate(0deg); +} +#rightChartOneIcon { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 51px; + height: 51px; + z-index: 16; + transform: rotate(0deg); +} +#rightChartOneDataLabel { + overflow: hidden; + position: absolute; + left: 55.24px; + top: 9.4px; + width: 74.54px; + height: 30px; + z-index: 17; + transform: rotate(0deg); +} +#rightChartOneDataValue { + overflow: hidden; + position: absolute; + left: 275.5px; + top: 9.4px; + width: 99.09px; + height: 32.73px; + z-index: 16; + transform: rotate(0deg); +} +#item087b5ff0-3d1a-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 17.48px; + top: 391.64px; + width: 371px; + height: 389.32px; + z-index: 2; + transform: rotate(0deg); +} +#itemf30bdb40-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 350.32px; + width: 371px; + height: 39px; + z-index: 14; + transform: rotate(0deg); +} +#itemf30c0250-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 371px; + height: 39px; + z-index: 7; + transform: rotate(0deg); +} +#itemf30c0251-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 9.94px; + top: 9.23px; + width: 345.81px; + height: 21.58px; + z-index: 7; + transform: rotate(0deg); +} +#itemf30c0252-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 285.28px; + top: 0px; + width: 60.53px; + height: 21.58px; + z-index: 10; + transform: rotate(0deg); +} +#itemf30c0253-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 32.7px; + top: 0px; + width: 0px; + height: 21.58px; + z-index: 9; + transform: rotate(0deg); +} +#itemf30c0254-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 94.87px; + top: 7.14px; + width: 182.16px; + height: 8px; + z-index: 7; + transform: rotate(0deg); + border-radius: 30px; +} +#itemf30c0255-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 84px; + height: 21.58px; + z-index: 6; + transform: rotate(0deg); +} +#itemdbaabfc0-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 302.63px; + width: 371px; + height: 39px; + z-index: 13; + transform: rotate(0deg); +} +#itemdbaabfc1-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 371px; + height: 39px; + z-index: 7; + transform: rotate(0deg); +} +#itemdbaabfc2-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 9.94px; + top: 9.23px; + width: 345.81px; + height: 21.58px; + z-index: 7; + transform: rotate(0deg); +} +#itemdbaabfc3-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 285.28px; + top: 0px; + width: 60.53px; + height: 21.58px; + z-index: 10; + transform: rotate(0deg); +} +#itemdbaabfc4-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 32.7px; + top: 0px; + width: 0px; + height: 21.58px; + z-index: 9; + transform: rotate(0deg); +} +#itemdbaabfc5-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 94.87px; + top: 7.14px; + width: 182.16px; + height: 8px; + z-index: 7; + transform: rotate(0deg); + border-radius: 30px; +} +#itemdbaabfc6-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 84px; + height: 21.58px; + z-index: 6; + transform: rotate(0deg); +} +#itemd8a37330-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 253.29px; + width: 371px; + height: 39px; + z-index: 12; + transform: rotate(0deg); +} +#itemd8a37331-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 371px; + height: 39px; + z-index: 7; + transform: rotate(0deg); +} +#itemd8a37332-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 9.94px; + top: 9.23px; + width: 345.81px; + height: 21.58px; + z-index: 7; + transform: rotate(0deg); +} +#itemd8a37333-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 285.28px; + top: 0px; + width: 60.53px; + height: 21.58px; + z-index: 10; + transform: rotate(0deg); +} +#itemd8a37334-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 32.7px; + top: 0px; + width: 0px; + height: 21.58px; + z-index: 9; + transform: rotate(0deg); +} +#itemd8a37335-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 94.87px; + top: 7.14px; + width: 182.16px; + height: 8px; + z-index: 7; + transform: rotate(0deg); + border-radius: 30px; +} +#itemd8a37336-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 84px; + height: 21.58px; + z-index: 6; + transform: rotate(0deg); +} +#itemd3d79340-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 203.64px; + width: 371px; + height: 39px; + z-index: 11; + transform: rotate(0deg); +} +#itemd3d79341-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 371px; + height: 39px; + z-index: 7; + transform: rotate(0deg); +} +#itemd3d79342-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 9.94px; + top: 9.23px; + width: 345.81px; + height: 21.58px; + z-index: 7; + transform: rotate(0deg); +} +#itemd3d79343-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 285.28px; + top: 0px; + width: 60.53px; + height: 21.58px; + z-index: 10; + transform: rotate(0deg); +} +#itemd3d79344-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 32.7px; + top: 0px; + width: 0px; + height: 21.58px; + z-index: 9; + transform: rotate(0deg); +} +#itemd3d79345-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 94.87px; + top: 7.14px; + width: 182.16px; + height: 8px; + z-index: 7; + transform: rotate(0deg); + border-radius: 30px; +} +#itemd3d79346-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 84px; + height: 21.58px; + z-index: 6; + transform: rotate(0deg); +} +#itemcf76f840-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 153.16px; + width: 371px; + height: 39px; + z-index: 10; + transform: rotate(0deg); +} +#itemcf76f841-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 371px; + height: 39px; + z-index: 7; + transform: rotate(0deg); +} +#itemcf76f842-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 9.94px; + top: 9.23px; + width: 345.81px; + height: 21.58px; + z-index: 7; + transform: rotate(0deg); +} +#itemcf76f843-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 285.28px; + top: 0px; + width: 60.53px; + height: 21.58px; + z-index: 10; + transform: rotate(0deg); +} +#itemcf76f844-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 32.7px; + top: 0px; + width: 0px; + height: 21.58px; + z-index: 9; + transform: rotate(0deg); +} +#itemcf76f845-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 94.87px; + top: 7.14px; + width: 182.16px; + height: 8px; + z-index: 7; + transform: rotate(0deg); + border-radius: 30px; +} +#itemcf76f846-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 84px; + height: 21.58px; + z-index: 6; + transform: rotate(0deg); +} +#itemc9289700-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 101.86px; + width: 371px; + height: 39px; + z-index: 9; + transform: rotate(0deg); +} +#itemc9289701-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 371px; + height: 39px; + z-index: 7; + transform: rotate(0deg); +} +#itemc9289702-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 9.94px; + top: 9.23px; + width: 345.81px; + height: 21.58px; + z-index: 7; + transform: rotate(0deg); +} +#itemc9289703-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 285.28px; + top: 0px; + width: 60.53px; + height: 21.58px; + z-index: 10; + transform: rotate(0deg); +} +#itemc9289704-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 32.7px; + top: 0px; + width: 0px; + height: 21.58px; + z-index: 9; + transform: rotate(0deg); +} +#itemc9289705-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 94.87px; + top: 7.14px; + width: 182.16px; + height: 8px; + z-index: 7; + transform: rotate(0deg); + border-radius: 30px; +} +#itemc9289706-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 84px; + height: 21.58px; + z-index: 6; + transform: rotate(0deg); +} +#itemc6d30e40-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 50.54px; + width: 371px; + height: 39px; + z-index: 8; + transform: rotate(0deg); +} +#itemc6d30e41-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 371px; + height: 39px; + z-index: 7; + transform: rotate(0deg); +} +#itemc6d30e42-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 9.94px; + top: 9.23px; + width: 345.81px; + height: 21.58px; + z-index: 7; + transform: rotate(0deg); +} +#itemc6d30e43-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 285.28px; + top: 0px; + width: 60.53px; + height: 21.58px; + z-index: 10; + transform: rotate(0deg); +} +#itemc6d30e44-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 32.7px; + top: 0px; + width: 0px; + height: 21.58px; + z-index: 9; + transform: rotate(0deg); +} +#itemc6d30e45-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 94.87px; + top: 7.14px; + width: 182.16px; + height: 8px; + z-index: 7; + transform: rotate(0deg); + border-radius: 30px; +} +#itemc6d30e46-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 84px; + height: 21.58px; + z-index: 6; + transform: rotate(0deg); +} +#itemc5345260-3d19-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 371px; + height: 39px; + z-index: 7; + transform: rotate(0deg); +} +#item39437e9c-4bda-4df4-9d22-beff8ef16790 { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 371px; + height: 39px; + z-index: 7; + transform: rotate(0deg); +} +#itemdf521250-3d18-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 9.94px; + top: 9.23px; + width: 345.81px; + height: 21.58px; + z-index: 7; + transform: rotate(0deg); +} +#item74214690-3d18-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 285.28px; + top: 0px; + width: 60.53px; + height: 21.58px; + z-index: 10; + transform: rotate(0deg); +} +#item4c797360-3d18-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 32.7px; + top: 0px; + width: 0px; + height: 21.58px; + z-index: 9; + transform: rotate(0deg); +} +#item7b0d8af0-3d17-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 94.87px; + top: 7.14px; + width: 182.16px; + height: 8px; + z-index: 7; + transform: rotate(0deg); + border-radius: 30px; +} +#item8afe5a70-3d17-11ec-9c94-ad51c1df29ed { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 84px; + height: 21.58px; + z-index: 6; + transform: rotate(0deg); +} +#item406f2c30-3bc0-11ec-a5b7-c14e88f42dda { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 397px; + height: 807px; + z-index: 1; + transform: rotate(0deg); +} +#item5cc05770-3b7e-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 287.39px; + top: 336px; + width: 63.64px; + height: 30px; + z-index: 9; + transform: rotate(0deg); +} +#item1ab09160-3b7e-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 43.23px; + top: 332.98px; + width: 130.91px; + height: 30px; + z-index: 8; + transform: rotate(0deg); +} +#item18dabff0-3b7e-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 47.39px; + top: 22.27px; + /* width: 174.55px; */ + height: 30px; + z-index: 7; + transform: rotate(0deg); +} +#itemdab2f916-b079-457a-aca2-5d0d77021c94 { + overflow: hidden; + position: absolute; + left: 3.81px; + top: 336px; + width: 383px; + height: 35px; + z-index: 6; + transform: rotate(0deg); +} +#item915a0074-5069-4ec5-ad35-8407ac995fcd { + overflow: hidden; + position: absolute; + left: 3.81px; + top: 22.27px; + width: 383px; + height: 35px; + z-index: 5; + transform: rotate(0deg); +} +#itemec8b5ded-9743-4aa8-a8e8-1a121ca33055 { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 397px; + height: 807px; + z-index: 2; + transform: rotate(0deg); +} +#item1e953fa0-3bc0-11ec-a5b7-c14e88f42dda { + overflow: hidden; + position: absolute; + left: -2.9px; + top: 90px; + width: 447.09px; + height: 807px; + z-index: 8; + transform: rotate(0deg); +} +#itema89950d0-3b82-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 317.38px; + top: 488.31px; + width: 87.26px; + height: 30px; + z-index: 15; + transform: rotate(0deg); +} +#itema89950d1-3b82-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 252.71px; + top: 488.31px; + width: 71.83px; + height: 30px; + z-index: 14; + transform: rotate(0deg); +} +#item6c52dd80-3b82-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 133.8px; + top: 488.31px; + width: 71.83px; + height: 30px; + z-index: 13; + transform: rotate(0deg); +} +#item252742c0-3b82-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 39.99px; + top: 488.31px; + width: 87.26px; + height: 30px; + z-index: 12; + transform: rotate(0deg); +} +#iteme778db00-3b81-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 0px; + top: 490.6px; + width: 447.09px; + height: 75.46px; + z-index: 11; + transform: rotate(0deg); +} +#itemb5b48790-3b81-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 31.82px; + top: 548.56px; + width: 383.95px; + height: 232.38px; + z-index: 10; + transform: rotate(0deg); +} +#item7655b0b0-3b81-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 305.29px; + top: 446.08px; + width: 99.09px; + height: 32.73px; + z-index: 9; + transform: rotate(0deg); +} +#item5abc1ba0-3b81-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 90.13px; + top: 446.08px; + width: 74.54px; + height: 30px; + z-index: 8; + transform: rotate(0deg); +} +#iteme7f4d0dc-ef8c-467f-a385-effa291e5438 { + overflow: hidden; + position: absolute; + left: 34.89px; + top: 436.68px; + width: 51px; + height: 51px; + z-index: 7; + transform: rotate(0deg); +} +#itemc69d6820-3b80-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 37.14px; + top: 73.7px; + width: 380.61px; + height: 260px; + z-index: 6; + transform: rotate(0deg); +} +#itemcc06a0e0-3b7d-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 77.76px; + top: 382.45px; + width: 120px; + height: 30px; + z-index: 5; + transform: rotate(0deg); +} +#itembf41d333-7af8-41b0-987a-d484cc7b0b19 { + overflow: hidden; + position: absolute; + left: 32.9px; + top: 382.45px; + width: 380px; + height: 39px; + z-index: 4; + transform: rotate(0deg); +} +#flowPointLabel { + overflow: hidden; + position: absolute; + left: 74.8px; + top: 17.27px; + width: 120px; + height: 30px; + z-index: 3; + transform: rotate(0deg); +} +#item0ad4af56-4b52-42d2-a412-106fac210dad { + overflow: hidden; + position: absolute; + left: 32.9px; + top: 17.27px; + width: 380px; + height: 39px; + z-index: 2; + transform: rotate(0deg); +} +#item808f16d8-c686-4022-969c-c19c102eabbf { + overflow: hidden; + position: absolute; + left: 26.9px; + top: 0px; + width: 397px; + height: 807px; + z-index: 1; + transform: rotate(0deg); +} +#itemc6656990-3bbf-11ec-a5b7-c14e88f42dda { + overflow: hidden; + position: absolute; + left: 0px; + bottom: 50px; + width: 100%; + height: 269px; + z-index: 7; + transform: rotate(0deg); +} +#itemf275cbe0-3d10-11ec-ab06-5b587eb1596c { + overflow: hidden; + position: absolute; + left: 992.69px; + top: 56.27px; + width: 259px; + height: 193px; + z-index: 5; + transform: rotate(0deg); +} +#boardLabel3 { + overflow: hidden; + position: absolute; + left: 90.95px; + top: 49.09px; + width: 79.09px; + height: 30px; + z-index: 4; + transform: rotate(0deg); +} +#item17fd1f40-3b80-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 70.04px; + top: 8.18px; + width: 130.91px; + height: 50px; + z-index: 3; + transform: rotate(0deg); +} +#itemf18f00c9-0662-446a-95d7-01d6dd8a93cb { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 259px; + height: 193px; + z-index: 2; + transform: rotate(0deg); +} +#itemf053af30-3d10-11ec-ab06-5b587eb1596c { + overflow: hidden; + position: absolute; + left: 702.32px; + top: 56.27px; + width: 259px; + height: 193px; + z-index: 4; + transform: rotate(0deg); +} +#boardLabel2 { + overflow: hidden; + position: absolute; + left: 90.4px; + top: 49.09px; + width: 79.09px; + height: 30px; + z-index: 6; + transform: rotate(0deg); +} +#item15e22e80-3b80-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 73.14px; + top: 8.18px; + width: 130.91px; + height: 50px; + z-index: 4; + transform: rotate(0deg); +} +#itemafc1d394-1226-4d0c-b447-7e65e3b22a9c { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 259px; + height: 193px; + z-index: 2; + transform: rotate(0deg); +} +#itemedbe1030-3d10-11ec-ab06-5b587eb1596c { + overflow: hidden; + position: absolute; + left: 404.23px; + top: 56.27px; + width: 259px; + height: 193px; + z-index: 3; + transform: rotate(0deg); +} +#boardLabel4 { + overflow: hidden; + position: absolute; + left: 89.41px; + top: 49.09px; + width: 79.09px; + height: 30px; + z-index: 8; + transform: rotate(0deg); +} +#itemf33b5500-3b7f-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 67.59px; + top: 8.18px; + width: 130.91px; + height: 50px; + z-index: 5; + transform: rotate(0deg); +} +#item26beaaca-033f-49c1-a0ae-40fd4276cdf5 { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 259px; + height: 193px; + z-index: 2; + transform: rotate(0deg); +} +#itemc8c09c80-3d10-11ec-ab06-5b587eb1596c { + overflow: hidden; + position: absolute; + left: 1296.87px; + top: 56.27px; + width: 259px; + height: 193px; + z-index: 2; + transform: rotate(0deg); +} +#boardLabel1 { + overflow: hidden; + position: absolute; + left: 90.63px; + top: 45.07px; + width: 79.09px; + height: 30px; + z-index: 13; + transform: rotate(0deg); +} +#item1adee270-3b80-11ec-8c81-4d7c4fdd34de { + overflow: hidden; + position: absolute; + left: 58.58px; + top: 8.18px; + width: 148.18px; + height: 50px; + z-index: 9; + transform: rotate(0deg); +} +#item2bcfacef-8517-4d8e-9e40-9f84f1fed1df { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 259px; + height: 193px; + z-index: 5; + transform: rotate(0deg); +} +#item696fd8a9-54b2-4866-938e-a885c0b5b2b5 { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 1920px; + height: 269px; + z-index: 1; + transform: rotate(0deg); +} +#item6b4709a0-3bc0-11ec-a5b7-c14e88f42dda { + overflow: hidden; + position: absolute; + left: 4px; + top: 0px; + width: 1916px; + height: 101.94px; + z-index: 6; + transform: rotate(0deg); +} +#cloudTitle { + overflow: hidden; + position: absolute; + left: 698px; + top: 0px; + width: 520px; + height: 86.67px; + z-index: 2; + transform: rotate(0deg); +} +#item38914a09-397d-4461-a13a-4e0f140d5513 { + overflow: hidden; + position: absolute; + left: 0px; + top: 0px; + width: 1916px; + height: 101px; + z-index: 1; + transform: rotate(0deg); +} + +#item3cf8c9d0-3d23-11ec-9565-d58dddd09c89 { + overflow: hidden; + position: absolute; + left: 73.06px; + top: 0px; + width: 91.38px; + height: 30px; + z-index: 10; + transform: rotate(0deg); +} + +#iteme39b65b0-3d21-11ec-9565-d58dddd09c89 { + overflow: hidden; + position: absolute; + left: 399.5px; + top: 1.01px; + width: 1121px; + height: 1128.33px; + z-index: 4; + transform: rotate(0deg); +} +#item13502f80-3d21-11ec-9565-d58dddd09c89 { + overflow: hidden; + position: absolute; + left: 120px; + top: 43.67px; + width: 850.56px; + height: 891.7px; + z-index: 6; + display: none; + transform: rotate(0deg); +} +#itemb74b0f8c-7d1b-47a8-922d-f2300e716855 { + overflow: hidden; + position: absolute; + left: 84.67px; + top: 0px; + width: 951.67px; + height: 1128.33px; + z-index: 5; + transform: rotate(0deg); + background: rgba(33, 87, 237, 0); +} +#mapBackground { + overflow: hidden; + position: absolute; + left: 148.17px; + top: 288.66px; + width: 832px; + height: 560px; + z-index: 4; + transform: rotate(0deg); +} +#itemf19a45b0-3d20-11ec-9565-d58dddd09c89 { + overflow: hidden; + position: absolute; + left: 128.88px; + top: 51.57px; + width: 850.56px; + height: 891.7px; + z-index: 3; + display: none; + transform: rotate(0deg); +} +#itemd5b8eeb0-3d1f-11ec-9565-d58dddd09c89 { + overflow: hidden; + position: absolute; + left: 139.57px; + top: 60.5px; + width: 850.56px; + height: 891.7px; + z-index: 2; + display: none; + transform: rotate(0deg); +} +#item3e3b1deb-1aa2-4d9b-9e79-0eeb3e92f4c0 { + overflow: hidden; + position: absolute; + left: 0px; + top: 43.67px; + width: 1121px; + height: 1029px; + z-index: 1; + transform: rotate(0deg); +} +#iteme94dfd10-3dda-11ec-b703-7d37f4f46fb8 { + overflow: hidden; + position: absolute; + left: 1946.33px; + top: 44.31px; + width: 476.16px; + height: 333.06px; + z-index: 3; + transform: rotate(0deg); + background: rgba(56, 91, 57, 0.4); +} +#iteme6e9d9a5-d3b3-4af6-bfb2-6a5da4cc70fb { + overflow: hidden; + position: absolute; + left: 124.71px; + top: 36.23px; + width: 52px; + height: 48px; + z-index: 3; + transform: rotate(0deg); +} +#item9c99c210-3dda-11ec-b703-7d37f4f46fb8 { + overflow: hidden; + position: absolute; + left: 7.25px; + top: 0px; + width: 124.42px; + height: 81.91px; + z-index: 2; + transform: rotate(0deg); +} +#item3ccf1836-0825-47ab-b25f-a4b463b88d90 { + overflow: hidden; + position: absolute; + left: 2007.68px; + top: 495.42px; + width: 151.64px; + height: 130.64px; + z-index: 2; + transform: rotate(0deg); +} +#item34482d8f-1936-42ae-a1b0-02d7e79ea6f6 { + overflow: hidden; + position: absolute; + left: -296.69px; + top: 134.87px; + width: 187.21px; + height: 181.21px; + z-index: 1; + transform: rotate(0deg); +} diff --git a/frontend/src/pages/Home/styles/cloud/reset.css b/frontend/src/pages/Home/styles/cloud/reset.css new file mode 100644 index 0000000..1c60cc7 --- /dev/null +++ b/frontend/src/pages/Home/styles/cloud/reset.css @@ -0,0 +1,34 @@ +@font-face { + font-family: "led"; + src: url("../../fonts/led.ttf"); +} + +/* @font-face { + font-family: "PingFang-SC-Semibold"; + src: url("../../fonts/PingFang-SC-Semibold.ttf"); +} + +@font-face { + font-family: "PingFang-Light"; + src: url("../../fonts/PingFang-Light.ttf"); +} + +@font-face { + font-family: "PingFang-Bold"; + src: url("../../fonts/PingFang-Bold.ttf"); +} */ + +@font-face { + font-family: "PingFang-SC"; + src: url("../../fonts/PingFang-SC.ttf"); +} +/* +@font-face { + font-family: "PingFang-JT"; + src: url("../../fonts/PingFang-JT.ttf"); +} + +@font-face { + font-family: "PingFang-JC"; + src: url("../../fonts/PingFang-JC.ttf"); +} */ diff --git a/frontend/src/pages/Home/styles/element-ui.scss b/frontend/src/pages/Home/styles/element-ui.scss new file mode 100644 index 0000000..363092a --- /dev/null +++ b/frontend/src/pages/Home/styles/element-ui.scss @@ -0,0 +1,92 @@ +// cover some element-ui styles + +.el-breadcrumb__inner, +.el-breadcrumb__inner a { + font-weight: 400 !important; +} + +.el-upload { + input[type="file"] { + display: none !important; + } +} + +.el-upload__input { + display: none; +} + +.cell { + .el-tag { + margin-right: 0px; + } +} + +.small-padding { + .cell { + padding-left: 5px; + padding-right: 5px; + } +} + +.fixed-width { + .el-button--mini { + padding: 7px 10px; + width: 60px; + } +} + +.status-col { + .cell { + padding: 0 10px; + text-align: center; + + .el-tag { + margin-right: 0px; + } + } +} + +// to fixed https://github.com/ElemeFE/element/issues/2461 +.el-dialog { + transform: none; + left: 0; + position: relative; + margin: 0 auto; +} + +// refine element ui upload +.upload-container { + .el-upload { + width: 100%; + + .el-upload-dragger { + width: 100%; + height: 200px; + } + } +} + +// dropdown +.el-dropdown-menu { + a { + display: block + } +} + +// fix date-picker ui bug in filter-item +.el-range-editor.el-input__inner { + display: inline-flex !important; +} + +// to fix el-date-picker css style +.el-range-separator { + box-sizing: content-box; +} + +.el-menu--collapse + > div + > .el-submenu + > .el-submenu__title + .el-submenu__icon-arrow { + display: none; +} \ No newline at end of file diff --git a/frontend/src/pages/Home/styles/element-variables.scss b/frontend/src/pages/Home/styles/element-variables.scss new file mode 100644 index 0000000..1615ff2 --- /dev/null +++ b/frontend/src/pages/Home/styles/element-variables.scss @@ -0,0 +1,31 @@ +/** +* I think element-ui's default theme color is too light for long-term use. +* So I modified the default color and you can modify it to your liking. +**/ + +/* theme color */ +$--color-primary: #1890ff; +$--color-success: #13ce66; +$--color-warning: #ffba00; +$--color-danger: #ff4949; +// $--color-info: #1E1E1E; + +$--button-font-weight: 400; + +// $--color-text-regular: #1f2d3d; + +$--border-color-light: #dfe4ed; +$--border-color-lighter: #e6ebf5; + +$--table-border: 1px solid #dfe6ec; + +/* icon font path, required */ +$--font-path: '~element-ui/lib/theme-chalk/fonts'; + +@import "~element-ui/packages/theme-chalk/src/index"; + +// the :export directive is the magic sauce for webpack +// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass +:export { + theme: $--color-primary; +} diff --git a/frontend/src/pages/Home/styles/index.css b/frontend/src/pages/Home/styles/index.css new file mode 100644 index 0000000..6e5060d --- /dev/null +++ b/frontend/src/pages/Home/styles/index.css @@ -0,0 +1,688 @@ +/** +$base-menu-color:hsla(0,0%,100%,.65); +$base-menu-color-active:#fff; +$base-menu-background:#001529; +$base-logo-title-color: #ffffff; + +$base-menu-light-color:rgba(0,0,0,.70); +$base-menu-light-background:#ffffff; +$base-logo-light-title-color: #001529; + +$base-sub-menu-background:#000c17; +$base-sub-menu-hover:#001528; +*/ +:export { + menuColor: #fff; + menuLightColor: rgba(0, 0, 0, 0.7); + menuColorActive: #e78361; + menuBackground: #4383cc; + menuLightBackground: #ffffff; + subMenuBackground: #529add; + subMenuHover: #FEC171; + sideBarWidth: 200px; + logoTitleColor: #ffffff; + logoLightTitleColor: #4ea7fa; +} + +/* fade */ +.fade-enter-active, +.fade-leave-active { + transition: opacity 0.28s; +} + +.fade-enter, +.fade-leave-active { + opacity: 0; +} + +/* fade-transform */ +.fade-transform--move, +.fade-transform-leave-active, +.fade-transform-enter-active { + transition: all .5s; +} + +.fade-transform-enter { + opacity: 0; + transform: translateX(-30px); +} + +.fade-transform-leave-to { + opacity: 0; + transform: translateX(30px); +} + +/* breadcrumb transition */ +.breadcrumb-enter-active, +.breadcrumb-leave-active { + transition: all .5s; +} + +.breadcrumb-enter, +.breadcrumb-leave-active { + opacity: 0; + transform: translateX(20px); +} + +.breadcrumb-move { + transition: all .5s; +} + +.breadcrumb-leave-active { + position: absolute; +} + +.el-breadcrumb__inner, +.el-breadcrumb__inner a { + font-weight: 400 !important; +} + +.el-upload input[type="file"] { + display: none !important; +} + +.el-upload__input { + display: none; +} + +.cell .el-tag { + margin-right: 0px; +} + +.small-padding .cell { + padding-left: 5px; + padding-right: 5px; +} + +.fixed-width .el-button--mini { + padding: 7px 10px; + width: 60px; +} + +.status-col .cell { + padding: 0 10px; + text-align: center; +} + +.status-col .cell .el-tag { + margin-right: 0px; +} + +.el-dialog { + transform: none; + left: 0; + position: relative; + margin: 0 auto; +} + +.upload-container .el-upload { + width: 100%; +} + +.upload-container .el-upload .el-upload-dragger { + width: 100%; + height: 200px; +} + +.el-dropdown-menu a { + display: block; +} + +.el-range-editor.el-input__inner { + display: inline-flex !important; +} + +.el-range-separator { + box-sizing: content-box; +} + +.el-menu--collapse +> div +> .el-submenu +> .el-submenu__title +.el-submenu__icon-arrow { + display: none; +} + +#app .main-container { + height: 100%; + transition: margin-left .28s; + margin-left: 200px; + position: relative; +} + +#app .sidebarHide { + margin-left: 0 !important; +} + +#app .el-menu-item.is-active { + color: #e78361 !important; + background-color: rgba(255, 255, 255, 0.3) !important; +} + +#app .el-menu-item.is-active:hover { + background-color: #4383cc; +} + +#app .sidebar-container { + -webkit-transition: width .28s; + transition: width 0.28s; + width: 200px !important; + background-color: #4383cc; + height: 100%; + position: fixed; + font-size: 0px; + top: 0; + bottom: 0; + left: 0; + z-index: 1001; + overflow: hidden; + -webkit-box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35); + box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35); +} + +#app .sidebar-container .horizontal-collapse-transition { + transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out; +} + +#app .sidebar-container .scrollbar-wrapper { + overflow-x: hidden !important; +} + +#app .sidebar-container .el-scrollbar__bar.is-vertical { + right: 0px; +} + +#app .sidebar-container .el-scrollbar { + height: 100%; +} + +#app .sidebar-container.has-logo .el-scrollbar { + height: calc(100% - 50px); +} + +#app .sidebar-container .is-horizontal { + display: none; +} + +#app .sidebar-container a { + display: inline-block; + width: 100%; + overflow: hidden; +} + +#app .sidebar-container .svg-icon { + margin-right: 16px; +} + +#app .sidebar-container .el-menu { + border: none; + height: 100%; + width: 100% !important; +} + +#app .sidebar-container .el-menu-item, #app .sidebar-container .el-submenu__title { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; +} + +#app .sidebar-container .submenu-title-noDropdown:hover, +#app .sidebar-container .el-submenu__title:hover { + background-color: rgba(0, 0, 0, 0.06) !important; +} + +#app .sidebar-container .theme-dark .is-active > .el-submenu__title { + color: #e78361 !important; +} + +#app .sidebar-container .nest-menu .el-submenu > .el-submenu__title, +#app .sidebar-container .el-submenu .el-menu-item { + min-width: 200px !important; +} + +#app .sidebar-container .nest-menu .el-submenu > .el-submenu__title:hover, +#app .sidebar-container .el-submenu .el-menu-item:hover { + background-color: rgba(0, 0, 0, 0.06) !important; +} + +#app .sidebar-container .theme-dark .nest-menu .el-submenu > .el-submenu__title, +#app .sidebar-container .theme-dark .el-submenu .el-menu-item { + background-color: #529add !important; +} + +#app .sidebar-container .theme-dark .nest-menu .el-submenu > .el-submenu__title:hover, +#app .sidebar-container .theme-dark .el-submenu .el-menu-item:hover { + background-color: #FEC171 !important; +} + +#app .hideSidebar .sidebar-container { + width: 54px !important; +} + +#app .hideSidebar .main-container { + margin-left: 54px; +} + +#app .hideSidebar .submenu-title-noDropdown { + padding: 0 !important; + position: relative; +} + +#app .hideSidebar .submenu-title-noDropdown .el-tooltip { + padding: 0 !important; +} + +#app .hideSidebar .submenu-title-noDropdown .el-tooltip .svg-icon { + margin-left: 20px; +} + +#app .hideSidebar .el-submenu { + overflow: hidden; +} + +#app .hideSidebar .el-submenu > .el-submenu__title { + padding: 0 !important; +} + +#app .hideSidebar .el-submenu > .el-submenu__title .svg-icon { + margin-left: 20px; +} + +#app .hideSidebar .el-menu--collapse .el-submenu > .el-submenu__title > span { + height: 0; + width: 0; + overflow: hidden; + visibility: hidden; + display: inline-block; +} + +#app .el-menu--collapse .el-menu .el-submenu { + min-width: 200px !important; +} + +#app .mobile .main-container { + margin-left: 0px; +} + +#app .mobile .sidebar-container { + transition: transform .28s; + width: 200px !important; +} + +#app .mobile.hideSidebar .sidebar-container { + pointer-events: none; + transition-duration: 0.3s; + transform: translate3d(-200px, 0, 0); +} + +#app .withoutAnimation .main-container, +#app .withoutAnimation .sidebar-container { + transition: none; +} + +.el-menu--vertical > .el-menu .svg-icon { + margin-right: 16px; +} + +.el-menu--vertical .nest-menu .el-submenu > .el-submenu__title:hover, +.el-menu--vertical .el-menu-item:hover { + background-color: rgba(0, 0, 0, 0.06) !important; +} + +.el-menu--vertical > .el-menu--popup { + max-height: 100vh; + overflow-y: auto; +} + +.el-menu--vertical > .el-menu--popup::-webkit-scrollbar-track-piece { + background: #d3dce6; +} + +.el-menu--vertical > .el-menu--popup::-webkit-scrollbar { + width: 6px; +} + +.el-menu--vertical > .el-menu--popup::-webkit-scrollbar-thumb { + background: #99a9bf; + border-radius: 20px; +} + +/** +$base-menu-color:hsla(0,0%,100%,.65); +$base-menu-color-active:#fff; +$base-menu-background:#001529; +$base-logo-title-color: #ffffff; + +$base-menu-light-color:rgba(0,0,0,.70); +$base-menu-light-background:#ffffff; +$base-logo-light-title-color: #001529; + +$base-sub-menu-background:#000c17; +$base-sub-menu-hover:#001528; +*/ +:export { + menuColor: #fff; + menuLightColor: rgba(0, 0, 0, 0.7); + menuColorActive: #e78361; + menuBackground: #4383cc; + menuLightBackground: #ffffff; + subMenuBackground: #529add; + subMenuHover: #FEC171; + sideBarWidth: 200px; + logoTitleColor: #ffffff; + logoLightTitleColor: #4ea7fa; +} + +.blue-btn { + background: #324157; +} + +.blue-btn:hover { + color: #324157; +} + +.blue-btn:hover:before, .blue-btn:hover:after { + background: #324157; +} + +.light-blue-btn { + background: #3A71A8; +} + +.light-blue-btn:hover { + color: #3A71A8; +} + +.light-blue-btn:hover:before, .light-blue-btn:hover:after { + background: #3A71A8; +} + +.red-btn { + background: #C03639; +} + +.red-btn:hover { + color: #C03639; +} + +.red-btn:hover:before, .red-btn:hover:after { + background: #C03639; +} + +.pink-btn { + background: #E65D6E; +} + +.pink-btn:hover { + color: #E65D6E; +} + +.pink-btn:hover:before, .pink-btn:hover:after { + background: #E65D6E; +} + +.green-btn { + background: #30B08F; +} + +.green-btn:hover { + color: #30B08F; +} + +.green-btn:hover:before, .green-btn:hover:after { + background: #30B08F; +} + +.tiffany-btn { + background: #4AB7BD; +} + +.tiffany-btn:hover { + color: #4AB7BD; +} + +.tiffany-btn:hover:before, .tiffany-btn:hover:after { + background: #4AB7BD; +} + +.yellow-btn { + background: #FEC171; +} + +.yellow-btn:hover { + color: #FEC171; +} + +.yellow-btn:hover:before, .yellow-btn:hover:after { + background: #FEC171; +} + +.pan-btn { + font-size: 14px; + color: #fff; + padding: 14px 36px; + border-radius: 8px; + border: none; + outline: none; + transition: 600ms ease all; + position: relative; + display: inline-block; +} + +.pan-btn:hover { + background: #fff; +} + +.pan-btn:hover:before, .pan-btn:hover:after { + width: 100%; + transition: 600ms ease all; +} + +.pan-btn:before, .pan-btn:after { + content: ''; + position: absolute; + top: 0; + right: 0; + height: 2px; + width: 0; + transition: 400ms ease all; +} + +.pan-btn::after { + right: inherit; + top: inherit; + left: 0; + bottom: 0; +} + +.custom-button { + display: inline-block; + line-height: 1; + white-space: nowrap; + cursor: pointer; + background: #fff; + color: #fff; + -webkit-appearance: none; + text-align: center; + box-sizing: border-box; + outline: 0; + margin: 0; + padding: 10px 15px; + font-size: 14px; + border-radius: 4px; +} + +body { + height: 100%; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; + font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif; +} + +label { + font-weight: 700; +} + +html { + height: 100%; + box-sizing: border-box; +} + +#app { + height: 100%; +} + +*, +*:before, +*:after { + box-sizing: inherit; +} + +.no-padding { + padding: 0px !important; +} + +.padding-content { + padding: 4px 0; +} + +a:focus, +a:active { + outline: none; +} + +a, +a:focus, +a:hover { + cursor: pointer; + color: inherit; + text-decoration: none; +} + +div:focus { + outline: none; +} + +.fr { + float: right; +} + +.fl { + float: left; +} + +.pr-5 { + padding-right: 5px; +} + +.pl-5 { + padding-left: 5px; +} + +.block { + display: block; +} + +.pointer { + cursor: pointer; +} + +.inlineBlock { + display: block; +} + +.clearfix:after { + visibility: hidden; + display: block; + font-size: 0; + content: " "; + clear: both; + height: 0; +} + +aside { + background: #eef1f6; + padding: 8px 24px; + margin-bottom: 20px; + border-radius: 2px; + display: block; + line-height: 32px; + font-size: 16px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; + color: #2c3e50; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +aside a { + color: #337ab7; + cursor: pointer; +} + +aside a:hover { + color: #20a0ff; +} + +.app-container { + padding: 20px; +} + +.components-container { + margin: 30px 50px; + position: relative; +} + +.pagination-container { + margin-top: 30px; +} + +.text-center { + text-align: center; +} + +.sub-navbar { + height: 50px; + line-height: 50px; + position: relative; + width: 100%; + text-align: right; + padding-right: 20px; + transition: 600ms ease position; + background: linear-gradient(90deg, #20b6f9 0%, #20b6f9 0%, #2178f1 100%, #2178f1 100%); +} + +.sub-navbar .subtitle { + font-size: 20px; + color: #fff; +} + +.sub-navbar.draft { + background: #d0d0d0; +} + +.sub-navbar.deleted { + background: #d0d0d0; +} + +.link-type, +.link-type:focus { + color: #337ab7; + cursor: pointer; +} + +.link-type:hover, +.link-type:focus:hover { + color: #20a0ff; +} + +.filter-container { + padding-bottom: 10px; +} + +.filter-container .filter-item { + display: inline-block; + vertical-align: middle; + margin-bottom: 10px; +} diff --git a/frontend/src/pages/Home/styles/index.min.css b/frontend/src/pages/Home/styles/index.min.css new file mode 100644 index 0000000..0648e4c --- /dev/null +++ b/frontend/src/pages/Home/styles/index.min.css @@ -0,0 +1 @@ +:export{menuColor:#fff;menuLightColor:rgba(0,0,0,0.7);menuColorActive:#e78361;menuBackground:#4383cc;menuLightBackground:#fff;subMenuBackground:#529add;subMenuHover:#FEC171;sideBarWidth:200px;logoTitleColor:#fff;logoLightTitleColor:#4ea7fa}.fade-enter-active,.fade-leave-active{transition:opacity 0.28s}.fade-enter,.fade-leave-active{opacity:0}.fade-transform--move,.fade-transform-leave-active,.fade-transform-enter-active{transition:all .5s}.fade-transform-enter{opacity:0;transform:translateX(-30px)}.fade-transform-leave-to{opacity:0;transform:translateX(30px)}.breadcrumb-enter-active,.breadcrumb-leave-active{transition:all .5s}.breadcrumb-enter,.breadcrumb-leave-active{opacity:0;transform:translateX(20px)}.breadcrumb-move{transition:all .5s}.breadcrumb-leave-active{position:absolute}.el-breadcrumb__inner,.el-breadcrumb__inner a{font-weight:400 !important}.el-upload input[type="file"]{display:none !important}.el-upload__input{display:none}.cell .el-tag{margin-right:0px}.small-padding .cell{padding-left:5px;padding-right:5px}.fixed-width .el-button--mini{padding:7px 10px;width:60px}.status-col .cell{padding:0 10px;text-align:center}.status-col .cell .el-tag{margin-right:0px}.el-dialog{transform:none;left:0;position:relative;margin:0 auto}.upload-container .el-upload{width:100%}.upload-container .el-upload .el-upload-dragger{width:100%;height:200px}.el-dropdown-menu a{display:block}.el-range-editor.el-input__inner{display:inline-flex !important}.el-range-separator{box-sizing:content-box}.el-menu--collapse>div>.el-submenu>.el-submenu__title .el-submenu__icon-arrow{display:none}#app .main-container{height:100%;transition:margin-left .28s;margin-left:200px;position:relative}#app .sidebarHide{margin-left:0 !important}#app .el-menu-item.is-active{color:#e78361 !important;background-color:rgba(255,255,255,0.3) !important}#app .el-menu-item.is-active:hover{background-color:#4383cc}#app .sidebar-container{-webkit-transition:width .28s;transition:width 0.28s;width:200px !important;background-color:#4383cc;height:100%;position:fixed;font-size:0px;top:0;bottom:0;left:0;z-index:1001;overflow:hidden;-webkit-box-shadow:2px 0 6px rgba(0,21,41,0.35);box-shadow:2px 0 6px rgba(0,21,41,0.35)}#app .sidebar-container .horizontal-collapse-transition{transition:0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out}#app .sidebar-container .scrollbar-wrapper{overflow-x:hidden !important}#app .sidebar-container .el-scrollbar__bar.is-vertical{right:0px}#app .sidebar-container .el-scrollbar{height:100%}#app .sidebar-container.has-logo .el-scrollbar{height:calc(100% - 50px)}#app .sidebar-container .is-horizontal{display:none}#app .sidebar-container a{display:inline-block;width:100%;overflow:hidden}#app .sidebar-container .svg-icon{margin-right:16px}#app .sidebar-container .el-menu{border:none;height:100%;width:100% !important}#app .sidebar-container .el-menu-item,#app .sidebar-container .el-submenu__title{overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important}#app .sidebar-container .submenu-title-noDropdown:hover,#app .sidebar-container .el-submenu__title:hover{background-color:rgba(0,0,0,0.06) !important}#app .sidebar-container .theme-dark .is-active>.el-submenu__title{color:#e78361 !important}#app .sidebar-container .nest-menu .el-submenu>.el-submenu__title,#app .sidebar-container .el-submenu .el-menu-item{min-width:200px !important}#app .sidebar-container .nest-menu .el-submenu>.el-submenu__title:hover,#app .sidebar-container .el-submenu .el-menu-item:hover{background-color:rgba(0,0,0,0.06) !important}#app .sidebar-container .theme-dark .nest-menu .el-submenu>.el-submenu__title,#app .sidebar-container .theme-dark .el-submenu .el-menu-item{background-color:#529add !important}#app .sidebar-container .theme-dark .nest-menu .el-submenu>.el-submenu__title:hover,#app .sidebar-container .theme-dark .el-submenu .el-menu-item:hover{background-color:#FEC171 !important}#app .hideSidebar .sidebar-container{width:54px !important}#app .hideSidebar .main-container{margin-left:54px}#app .hideSidebar .submenu-title-noDropdown{padding:0 !important;position:relative}#app .hideSidebar .submenu-title-noDropdown .el-tooltip{padding:0 !important}#app .hideSidebar .submenu-title-noDropdown .el-tooltip .svg-icon{margin-left:20px}#app .hideSidebar .el-submenu{overflow:hidden}#app .hideSidebar .el-submenu>.el-submenu__title{padding:0 !important}#app .hideSidebar .el-submenu>.el-submenu__title .svg-icon{margin-left:20px}#app .hideSidebar .el-menu--collapse .el-submenu>.el-submenu__title>span{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}#app .el-menu--collapse .el-menu .el-submenu{min-width:200px !important}#app .mobile .main-container{margin-left:0px}#app .mobile .sidebar-container{transition:transform .28s;width:200px !important}#app .mobile.hideSidebar .sidebar-container{pointer-events:none;transition-duration:0.3s;transform:translate3d(-200px, 0, 0)}#app .withoutAnimation .main-container,#app .withoutAnimation .sidebar-container{transition:none}.el-menu--vertical>.el-menu .svg-icon{margin-right:16px}.el-menu--vertical .nest-menu .el-submenu>.el-submenu__title:hover,.el-menu--vertical .el-menu-item:hover{background-color:rgba(0,0,0,0.06) !important}.el-menu--vertical>.el-menu--popup{max-height:100vh;overflow-y:auto}.el-menu--vertical>.el-menu--popup::-webkit-scrollbar-track-piece{background:#d3dce6}.el-menu--vertical>.el-menu--popup::-webkit-scrollbar{width:6px}.el-menu--vertical>.el-menu--popup::-webkit-scrollbar-thumb{background:#99a9bf;border-radius:20px}:export{menuColor:#fff;menuLightColor:rgba(0,0,0,0.7);menuColorActive:#e78361;menuBackground:#4383cc;menuLightBackground:#fff;subMenuBackground:#529add;subMenuHover:#FEC171;sideBarWidth:200px;logoTitleColor:#fff;logoLightTitleColor:#4ea7fa}.blue-btn{background:#324157}.blue-btn:hover{color:#324157}.blue-btn:hover:before,.blue-btn:hover:after{background:#324157}.light-blue-btn{background:#3A71A8}.light-blue-btn:hover{color:#3A71A8}.light-blue-btn:hover:before,.light-blue-btn:hover:after{background:#3A71A8}.red-btn{background:#C03639}.red-btn:hover{color:#C03639}.red-btn:hover:before,.red-btn:hover:after{background:#C03639}.pink-btn{background:#E65D6E}.pink-btn:hover{color:#E65D6E}.pink-btn:hover:before,.pink-btn:hover:after{background:#E65D6E}.green-btn{background:#30B08F}.green-btn:hover{color:#30B08F}.green-btn:hover:before,.green-btn:hover:after{background:#30B08F}.tiffany-btn{background:#4AB7BD}.tiffany-btn:hover{color:#4AB7BD}.tiffany-btn:hover:before,.tiffany-btn:hover:after{background:#4AB7BD}.yellow-btn{background:#FEC171}.yellow-btn:hover{color:#FEC171}.yellow-btn:hover:before,.yellow-btn:hover:after{background:#FEC171}.pan-btn{font-size:14px;color:#fff;padding:14px 36px;border-radius:8px;border:none;outline:none;transition:600ms ease all;position:relative;display:inline-block}.pan-btn:hover{background:#fff}.pan-btn:hover:before,.pan-btn:hover:after{width:100%;transition:600ms ease all}.pan-btn:before,.pan-btn:after{content:'';position:absolute;top:0;right:0;height:2px;width:0;transition:400ms ease all}.pan-btn::after{right:inherit;top:inherit;left:0;bottom:0}.custom-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;color:#fff;-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:0;margin:0;padding:10px 15px;font-size:14px;border-radius:4px}body{height:100%;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;font-family:Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif}label{font-weight:700}html{height:100%;box-sizing:border-box}#app{height:100%}*,*:before,*:after{box-sizing:inherit}.no-padding{padding:0px !important}.padding-content{padding:4px 0}a:focus,a:active{outline:none}a,a:focus,a:hover{cursor:pointer;color:inherit;text-decoration:none}div:focus{outline:none}.fr{float:right}.fl{float:left}.pr-5{padding-right:5px}.pl-5{padding-left:5px}.block{display:block}.pointer{cursor:pointer}.inlineBlock{display:block}.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0}aside{background:#eef1f6;padding:8px 24px;margin-bottom:20px;border-radius:2px;display:block;line-height:32px;font-size:16px;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;color:#2c3e50;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}aside a{color:#337ab7;cursor:pointer}aside a:hover{color:#20a0ff}.app-container{padding:20px}.components-container{margin:30px 50px;position:relative}.pagination-container{margin-top:30px}.text-center{text-align:center}.sub-navbar{height:50px;line-height:50px;position:relative;width:100%;text-align:right;padding-right:20px;transition:600ms ease position;background:linear-gradient(90deg, #20b6f9 0%, #20b6f9 0%, #2178f1 100%, #2178f1 100%)}.sub-navbar .subtitle{font-size:20px;color:#fff}.sub-navbar.draft{background:#d0d0d0}.sub-navbar.deleted{background:#d0d0d0}.link-type,.link-type:focus{color:#337ab7;cursor:pointer}.link-type:hover,.link-type:focus:hover{color:#20a0ff}.filter-container{padding-bottom:10px}.filter-container .filter-item{display:inline-block;vertical-align:middle;margin-bottom:10px} diff --git a/frontend/src/pages/Home/styles/index.scss b/frontend/src/pages/Home/styles/index.scss new file mode 100644 index 0000000..2f3b9ef --- /dev/null +++ b/frontend/src/pages/Home/styles/index.scss @@ -0,0 +1,182 @@ +@import './variables.scss'; +@import './mixin.scss'; +@import './transition.scss'; +@import './element-ui.scss'; +@import './sidebar.scss'; +@import './btn.scss'; + +body { + height: 100%; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; + font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif; +} + +label { + font-weight: 700; +} + +html { + height: 100%; + box-sizing: border-box; +} + +#app { + height: 100%; +} + +*, +*:before, +*:after { + box-sizing: inherit; +} + +.no-padding { + padding: 0px !important; +} + +.padding-content { + padding: 4px 0; +} + +a:focus, +a:active { + outline: none; +} + +a, +a:focus, +a:hover { + cursor: pointer; + color: inherit; + text-decoration: none; +} + +div:focus { + outline: none; +} + +.fr { + float: right; +} + +.fl { + float: left; +} + +.pr-5 { + padding-right: 5px; +} + +.pl-5 { + padding-left: 5px; +} + +.block { + display: block; +} + +.pointer { + cursor: pointer; +} + +.inlineBlock { + display: block; +} + +.clearfix { + &:after { + visibility: hidden; + display: block; + font-size: 0; + content: " "; + clear: both; + height: 0; + } +} + +aside { + background: #eef1f6; + padding: 8px 24px; + margin-bottom: 20px; + border-radius: 2px; + display: block; + line-height: 32px; + font-size: 16px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; + color: #2c3e50; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + + a { + color: #337ab7; + cursor: pointer; + + &:hover { + color: rgb(32, 160, 255); + } + } +} + +//main-container全局样式 +.app-container { + padding: 20px; +} + +.components-container { + margin: 30px 50px; + position: relative; +} + +.pagination-container { + margin-top: 30px; +} + +.text-center { + text-align: center +} + +.sub-navbar { + height: 50px; + line-height: 50px; + position: relative; + width: 100%; + text-align: right; + padding-right: 20px; + transition: 600ms ease position; + background: linear-gradient(90deg, rgba(32, 182, 249, 1) 0%, rgba(32, 182, 249, 1) 0%, rgba(33, 120, 241, 1) 100%, rgba(33, 120, 241, 1) 100%); + + .subtitle { + font-size: 20px; + color: #fff; + } + + &.draft { + background: #d0d0d0; + } + + &.deleted { + background: #d0d0d0; + } +} + +.link-type, +.link-type:focus { + color: #337ab7; + cursor: pointer; + + &:hover { + color: rgb(32, 160, 255); + } +} + +.filter-container { + padding-bottom: 10px; + + .filter-item { + display: inline-block; + vertical-align: middle; + margin-bottom: 10px; + } +} diff --git a/frontend/src/pages/Home/styles/map-theme/default/font-awesome.min.css b/frontend/src/pages/Home/styles/map-theme/default/font-awesome.min.css new file mode 100644 index 0000000..540440c --- /dev/null +++ b/frontend/src/pages/Home/styles/map-theme/default/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/frontend/src/pages/Home/styles/map-theme/default/style.css b/frontend/src/pages/Home/styles/map-theme/default/style.css new file mode 100644 index 0000000..2835845 --- /dev/null +++ b/frontend/src/pages/Home/styles/map-theme/default/style.css @@ -0,0 +1,434 @@ +div.olMap { + z-index: 0; + padding: 0 !important; + margin: 0 !important; + cursor: default; +} + +div.olMapViewport { + text-align: left; +} + +div.olLayerDiv { + -moz-user-select: none; + -khtml-user-select: none; +} + +.olLayerGoogleCopyright { + left: 2px; + bottom: 2px; +} +.olLayerGoogleV3.olLayerGoogleCopyright { + right: auto !important; +} +.olLayerGooglePoweredBy { + left: 2px; + bottom: 15px; +} +.olLayerGoogleV3.olLayerGooglePoweredBy { + bottom: 15px !important; +} +.olControlAttribution { + font-size: smaller; + right: 3px; + bottom: 4.5em; + position: absolute; + display: block; +} +.olControlScale { + right: 3px; + bottom: 3em; + display: block; + position: absolute; + font-size: smaller; +} +.olControlScaleLine { + display: block; + position: absolute; + left: 10px; + bottom: 15px; + font-size: xx-small; +} +.olControlScaleLineBottom { + border: solid 2px black; + border-bottom: none; + margin-top:-2px; + text-align: center; +} +.olControlScaleLineTop { + border: solid 2px black; + border-top: none; + text-align: center; +} + +.olControlPermalink { + right: 3px; + bottom: 1.5em; + display: block; + position: absolute; + font-size: smaller; +} + +div.olControlMousePosition { + bottom: 0em; + right: 3px; + display: block; + position: absolute; + font-family: Arial; + font-size: smaller; +} + +.olControlOverviewMapContainer { + position: absolute; + bottom: 0; + right: 0; +} + +.olControlOverviewMapElement { + padding: 10px 18px 10px 10px; + background-color: #00008B; + -moz-border-radius: 1em 0 0 0; +} + +.olControlOverviewMapMinimizeButton { + right: 0; + bottom: 80px; + cursor: pointer; +} + +.olControlOverviewMapMaximizeButton { + right: 0; + bottom: 80px; + cursor: pointer; +} + +.olControlOverviewMapExtentRectangle { + overflow: hidden; + background-image: url("img/blank.gif"); + cursor: move; + border: 2px dotted red; +} +.olControlOverviewMapRectReplacement { + overflow: hidden; + cursor: move; + background-image: url("img/overview_replacement.gif"); + background-repeat: no-repeat; + background-position: center; +} + +.olLayerGeoRSSDescription { + float:left; + width:100%; + overflow:auto; + font-size:1.0em; +} +.olLayerGeoRSSClose { + float:right; + color:gray; + font-size:1.2em; + margin-right:6px; + font-family:sans-serif; +} +.olLayerGeoRSSTitle { + float:left;font-size:1.2em; +} + +.olPopupContent { + padding:10px; + overflow-y: auto; + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); +} + +.olControlNavigationHistory { + background-image: url("img/navigation_history.png"); + background-repeat: no-repeat; + width: 24px; + height: 24px; + +} +.olControlNavigationHistoryPreviousItemActive { + background-position: 0 0; +} +.olControlNavigationHistoryPreviousItemInactive { + background-position: 0 -24px; +} +.olControlNavigationHistoryNextItemActive { + background-position: -24px 0; +} +.olControlNavigationHistoryNextItemInactive { + background-position: -24px -24px; +} + +div.olControlSaveFeaturesItemActive { + background-image: url(img/save_features_on.png); + background-repeat: no-repeat; + background-position: 0 1px; +} +div.olControlSaveFeaturesItemInactive { + background-image: url(img/save_features_off.png); + background-repeat: no-repeat; + background-position: 0 1px; +} + +.olHandlerBoxZoomBox { + border: 2px solid red; + position: absolute; + background-color: white; + opacity: 0.50; + font-size: 1px; + filter: alpha(opacity=50); +} +.olHandlerBoxSelectFeature { + border: 2px solid blue; + position: absolute; + background-color: white; + opacity: 0.50; + font-size: 1px; + filter: alpha(opacity=50); +} + +.olControlPanPanel { + top: 10px; + left: 5px; +} + +.olControlPanPanel div { + background-image: url(img/pan-panel.png); + height: 18px; + width: 18px; + cursor: pointer; + position: absolute; +} + +.olControlPanPanel .olControlPanNorthItemInactive { + top: 0; + left: 9px; + background-position: 0 0; +} +.olControlPanPanel .olControlPanSouthItemInactive { + top: 36px; + left: 9px; + background-position: 18px 0; +} +.olControlPanPanel .olControlPanWestItemInactive { + position: absolute; + top: 18px; + left: 0; + background-position: 0 18px; +} +.olControlPanPanel .olControlPanEastItemInactive { + top: 18px; + left: 18px; + background-position: 18px 18px; +} + +.olControlZoomPanel { + top: 71px; + left: 14px; +} + +.olControlZoomPanel div { + background-image: url(img/zoom-panel.png); + position: absolute; + height: 18px; + width: 18px; + cursor: pointer; +} + +.olControlZoomPanel .olControlZoomInItemInactive { + top: 0; + left: 0; + background-position: 0 0; +} + +.olControlZoomPanel .olControlZoomToMaxExtentItemInactive { + top: 18px; + left: 0; + background-position: 0 -18px; +} + +.olControlZoomPanel .olControlZoomOutItemInactive { + top: 36px; + left: 0; + background-position: 0 18px; +} + +/* + * When a potential text is bigger than the image it move the image + * with some headers (closes #3154) + */ +.olControlPanZoomBar div { + font-size: 1px; +} + +.olPopupCloseBox { + background: url("img/close.gif") no-repeat; + cursor: pointer; +} + +.olFramedCloudPopupContent { + padding: 5px; + overflow: auto; +} + +.olControlNoSelect { + -moz-user-select: none; + -khtml-user-select: none; +} + +.olImageLoadError { + background-color: pink; + opacity: 0.5; + filter: alpha(opacity=50); /* IE */ +} + +/** + * Cursor styles + */ + +.olCursorWait { + cursor: wait; +} +.olDragDown { + cursor: move; +} +.olDrawBox { + cursor: crosshair; +} +.olControlDragFeatureOver { + cursor: move; +} +.olControlDragFeatureActive.olControlDragFeatureOver.olDragDown { + cursor: -moz-grabbing; +} + +/** + * Layer switcher + */ +.olControlLayerSwitcher { + position: absolute; + top: 25px; + right: 0; + width: 20em; + font-family: sans-serif; + font-weight: bold; + margin-top: 3px; + margin-left: 3px; + margin-bottom: 3px; + font-size: smaller; + color: white; + background-color: transparent; +} + +.olControlLayerSwitcher .layersDiv { + padding-top: 5px; + padding-left: 10px; + padding-bottom: 5px; + padding-right: 75px; + background-color: darkblue; + width: 100%; + height: 100%; +} + +.olControlLayerSwitcher .layersDiv .baseLbl, +.olControlLayerSwitcher .layersDiv .dataLbl { + margin-top: 3px; + margin-left: 3px; + margin-bottom: 3px; +} + +.olControlLayerSwitcher .layersDiv .baseLayersDiv, +.olControlLayerSwitcher .layersDiv .dataLayersDiv { + padding-left: 10px; +} + +.olControlLayerSwitcher .maximizeDiv, +.olControlLayerSwitcher .minimizeDiv { + top: 5px; + right: 0; + cursor: pointer; +} + +.olBingAttribution { + color: #DDD; +} +.olBingAttribution.road { + color: #333; +} + +.olGoogleAttribution.hybrid, .olGoogleAttribution.satellite { + color: #EEE; +} +.olGoogleAttribution { + color: #333; +} +span.olGoogleAttribution a { + color: #77C; +} +span.olGoogleAttribution.hybrid a, span.olGoogleAttribution.satellite a { + color: #EEE; +} + +/** + * Editing and navigation icons. + * (using the editing_tool_bar.png sprint image) + */ +.olControlNavToolbar , +.olControlEditingToolbar { + margin: 5px 5px 0 0; +} +.olControlNavToolbar div, +.olControlEditingToolbar div { + background-image: url("img/editing_tool_bar.png"); + background-repeat: no-repeat; + margin: 0 0 5px 5px; + width: 24px; + height: 22px; + cursor: pointer +} +/* positions */ +.olControlEditingToolbar { + right: 0; + top: 0; +} +.olControlNavToolbar { + top: 295px; + left: 9px; +} +/* layouts */ +.olControlEditingToolbar div { + float: right; +} +/* individual controls */ +.olControlNavToolbar .olControlNavigationItemInactive, +.olControlEditingToolbar .olControlNavigationItemInactive { + background-position: -103px -1px; +} +.olControlNavToolbar .olControlNavigationItemActive , +.olControlEditingToolbar .olControlNavigationItemActive { + background-position: -103px -24px; +} +.olControlNavToolbar .olControlZoomBoxItemInactive { + background-position: -128px -1px; +} +.olControlNavToolbar .olControlZoomBoxItemActive { + background-position: -128px -24px; +} +.olControlEditingToolbar .olControlDrawFeaturePointItemInactive { + background-position: -77px -1px; +} +.olControlEditingToolbar .olControlDrawFeaturePointItemActive { + background-position: -77px -24px; +} +.olControlEditingToolbar .olControlDrawFeaturePathItemInactive { + background-position: -51px -1px; +} +.olControlEditingToolbar .olControlDrawFeaturePathItemActive { + background-position: -51px -24px; +} +.olControlEditingToolbar .olControlDrawFeaturePolygonItemInactive{ + background-position: -26px -1px; +} +.olControlEditingToolbar .olControlDrawFeaturePolygonItemActive { + background-position: -26px -24px; +} diff --git a/frontend/src/pages/Home/styles/map-theme/fonts/FontAwesome.otf b/frontend/src/pages/Home/styles/map-theme/fonts/FontAwesome.otf new file mode 100644 index 0000000..401ec0f Binary files /dev/null and b/frontend/src/pages/Home/styles/map-theme/fonts/FontAwesome.otf differ diff --git a/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.eot b/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000..e9f60ca Binary files /dev/null and b/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.eot differ diff --git a/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.svg b/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000..855c845 --- /dev/null +++ b/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.ttf b/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000..35acda2 Binary files /dev/null and b/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.ttf differ diff --git a/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.woff b/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000..400014a Binary files /dev/null and b/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.woff differ diff --git a/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.woff2 b/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000..4d13fc6 Binary files /dev/null and b/frontend/src/pages/Home/styles/map-theme/fonts/fontawesome-webfont.woff2 differ diff --git a/frontend/src/pages/Home/styles/map.css b/frontend/src/pages/Home/styles/map.css new file mode 100644 index 0000000..c6f80e0 --- /dev/null +++ b/frontend/src/pages/Home/styles/map.css @@ -0,0 +1,1426 @@ +.gisLeft, +.mapAreaBox, +body .mapFullscreen, +body .gis_zoomOropen { + display: none; +} +.gisContainer { + margin-left: 0px; +} +em, +i { + font-style: normal; +} +/**********************************************/ + +.clearfixswx:after { + content: '.'; + display: block; + height: 0; + clear: both; + visibility: hidden; +} +.gis_tools_info { + /* background: url(./img/navbg.png) center no-repeat; */ + height: 48px; +} +.gis_tools_info .Lztool { + position: absolute; + right: 20px; + top: 10px; + width: 88px; + height: 25px; + line-height: 25px; + background: linear-gradient(360deg, rgba(227, 227, 227, 1) 0%, rgba(255, 255, 255, 1) 100%); + box-shadow: 1px 1px 4px 0px rgba(0, 63, 130, 1); + border-radius: 4px; + cursor: pointer; +} +.gis_tools_info .luru { + right: 130px; + width: 110px; +} +.gis_tools_info .luru1 { + right: 260px; + width: 110px; +} +.gis_tools_info .luru2 { + right: 390px; + width: 110px; +} +.gis_tools_info .Lztool i { + position: absolute; + left: 17px; + top: 4px; + width: 13px; + height: 17px; + background: url(./img/gj.png) center no-repeat; +} +.gis_tools_info .Lztool im { + position: absolute; + left: 15px; + top: 3px; + width: 17px; + height: 17px; + background: url(./img/gjNew.png) center no-repeat; +} + +.gis_tools_info .Lztool em { + padding-left: 37px; + color: #0885fc; + font-size: 14px; +} + +.LzToolset { + position: absolute; + right: -100%; + top: 49px; + width: 340px; + background: #fff; +} +.LzToolset .ToolTab { + width: 100%; + height: 52px; + background: rgba(255, 255, 255, 0.6); + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); + text-align: center; +} +.LzToolset .ToolTab span, +.LzToolset .ToolTab a { + display: inline-block; + vertical-align: middle; + margin-left: 6px; + margin-top: 12px; +} +.LzToolset .ToolTab span { + width: 78px; + height: 25px; + border-radius: 4px; + border: 1px solid #067dfd; + text-align: center; + line-height: 25px; + color: #067dfd; + font-size: 14px; + cursor: pointer; +} +.LzToolset .ToolTab a { + width: 23px; + height: 23px; + cursor: pointer; + background: url(./img/fd.png) center no-repeat; +} +.LzToolset .ToolTab span.active { + background: #067dfd; + color: #fff; +} + +.figureNote { + position: absolute; + right: -100%; + top: 100px; + width: 340px; +} + +.ToolCont { + margin-top: 10px; + background: rgba(255, 255, 255, 0.9); + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); + padding: 10px; + position: relative; + height: 385px; +} +.TCtab { + padding-left: 17px; +} +.TCtab span { + height: 25px; + padding: 3px 10px; + border-radius: 4px; + border: 1px solid #067dfd; + text-align: center; + line-height: 25px; + color: #067dfd; + font-size: 14px; + cursor: pointer; + margin-right: 13px; +} +.TCtab span.active { + background: #067dfd; + color: #fff; +} +.tabBox { + padding-top: 10px; + overflow: auto; + height: 350px; +} +.pennelBox h3 { + color: #333; + font-size: 16px; +} +.pennelBox .pennelist { + padding-top: 10px; +} +.pennelist li { + float: left; + width: 74px; + height: 80px; + text-align: center; + margin: 0 0 15px 0; + cursor: pointer; +} +.pennelist li span { + display: block; + width: 40px; + height: 40px; + border-radius: 50%; + margin: 0 auto; + cursor: pointer; + position: relative; + text-align: center; +} +.pennelist li em { + color: #666666; + font-size: 14px; + line-height: 16px; + display: block; + margin-top: 8px; + cursor: pointer; +} +.pennelist li span i { + position: absolute; + right: -7px; + top: -3px; + width: 14px; + height: 14px; + cursor: pointer; + background: url(./img/activeicon.png) center no-repeat; +} +.OnlineBox { + position: absolute; + padding: 10px; + width: 469px; + height: 406px; + /* background:rgba(255,255,255,0.8); */ + background: #fff; + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); + left: 1px; + top: 49px; + display: none; +} +.OnlineBox .onliSeek { + position: relative; +} +.OnlineBox .onliSeek input { + height: 36px; + background: rgba(255, 255, 255, 1); + border: 1px solid rgba(199, 199, 199, 1); + padding: 0 52px 0 10px; + width: 323px; +} +.OnlineBox .onliSeek button { + position: absolute; + top: 0; + right: 0; + width: 44px; + height: 100%; + background: url(./img/seek.png) center no-repeat; + border: 0; + border-left: 2px solid #c7c7c7; + cursor: pointer; + outline: none; +} +.OnlineBox .onliSeek select { + position: absolute; + top: 0; + width: 85px; + height: 100%; + border: 0; + background-color: #ccffcc; + border-left: 2px solid #c7c7c7; + cursor: pointer; + outline: none; +} + +.common-population { + position: absolute; + padding: 10px; + width: 322px; + height: 406px; + /* background:rgba(255,255,255,0.8); */ + background: #fff; + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); + left: 1px; + top: 49px; + display: none; +} +.common-population .onliSeek { + position: relative; +} +.common-population .onliSeek input { + height: 36px; + background: rgba(255, 255, 255, 1); + border: 1px solid rgba(199, 199, 199, 1); + padding: 0 52px 0 10px; + width: 323px; +} +.common-population .onliSeek button { + position: absolute; + right: 0; + top: 0; + width: 44px; + height: 100%; + /* background: url(./img/seek.png) center no-repeat; */ + border: 0; + border-left: 2px solid #c7c7c7; + cursor: pointer; + outline: none; +} + +.common-company { + position: relative; + padding: 0; + width: 100%; + height: 100%; + /* background:rgba(255,255,255,0.8); */ + background: #fff; + /*left:1px;*/ + /*top:49px;*/ + /*display:none;*/ +} +.common-company .onliSeek { + position: relative; +} +.common-company .onliSeek input { + height: 36px; + background: rgba(255, 255, 255, 1); + border: 1px solid rgba(199, 199, 199, 1); + padding: 0 52px 0 10px; + width: 323px; +} +.common-company .onliSeek button { + position: absolute; + right: 0; + top: 0; + width: 44px; + height: 100%; + /* background: url(./img/seek.png) center no-repeat; */ + border: 0; + border-left: 2px solid #c7c7c7; + cursor: pointer; + outline: none; +} + +.gridTab { + padding-top: 10px; + font-size: 0; +} +.gridTab span { + display: inline-block; + width: 152px; + height: 30px; + border: 1px solid #666666; + margin-left: 13px; + position: relative; + border-radius: 5px; + cursor: pointer; +} +.gridTab span i { + position: absolute; + width: 12px; + height: 15px; + /* background: url(./img/rticon.png) 0 -14px no-repeat; */ + left: 13px; + top: 7px; +} +.gridTab span em { + color: #666666; + padding-left: 30px; +} +.gridTab span:nth-child(1) { + margin-left: 0; +} +.gridTab span:nth-child(2) i { + /* background: url(./img/Fill.png) 0 -14px no-repeat; */ +} +.gridTab span.avtive { + background: #067dfd; + border: 1px solid #067dfd; +} +.gridTab span.avtive i { + background-position: 0 0; +} +.gridTab span.avtive em { + color: #fff; +} + +.gridTcont { + /* background: rgba(0, 0, 0, 0.02); */ + height: auto; + margin-top: 10px; + position: relative; +} +.stateTab { + margin-top: 10px; + font-size: 0; +} +.statelist { + height: auto; + /* overflow-y: auto; */ +} +.closeGb { + position: absolute; + text-align: right; + right: 10px; + bottom: 17px; +} +.closeGb button { + display: inline-block; + vertical-align: middle; + cursor: pointer; + width: 65px; + height: 32px; + background: rgba(255, 255, 255, 1); + border-radius: 4px; + border: 1px solid rgba(217, 217, 217, 1); + margin-left: 8px; +} +.stateTab span { + display: inline-block; + height: 32px; + width: 159px; + border: 1px solid #ccc; + font-size: 14px; + text-align: center; + background: rgba(0, 0, 0, 0.02); + color: #666666; + cursor: pointer; +} +.stateTab span:nth-child(1) { + border-radius: 4px 0 0 0; +} +.stateTab span:nth-child(2) { + border-radius: 0 4px 0 0; +} +.stateTab span.active { + border-color: #067dfd; + background: #fff; + color: #067dfd; +} +.statelist th, +.statelist td { + padding: 5px 0; + width: auto; + min-width: 62px; + /* line-height: 40px; */ + text-indent: 0; + text-align: center; +} +.statelist tr { + border-bottom: 1px solid #ccc; +} +.statelist th { + font-size: 14px; + color: #333333; + font-weight: bold; + border-bottom: 1px solid #ccc; +} +.statelist table tbody tr td:nth-child(1) { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + /* display: inline-block; */ + /* width: 95px; */ +} + +.statelist a { + display: block; + width: 64px; + height: 24px; + color: #067dfd; + border: 1px solid #067dfd; + text-align: center; + line-height: 24px; + border-radius: 3px; + text-indent: 0; + margin: 0 auto; + cursor: pointer; +} +.statelist th:nth-child(3) { + text-align: center; + text-indent: 0; +} +.statePage { + margin-top: 10px; + font-size: 0; + text-align: right; + position: relative; + right: 5px; + bottom: 5px; +} +.statePage a, +.statePage input, +.statePage em { + display: inline-block; + vertical-align: middle; +} +.statePage a { + width: 16px; + height: 16px; + background: url(./img/syy.png) 1px 0 no-repeat; + cursor: pointer; +} +.statePage a.next { + background: url(./img/xyy.png) -16px 0 no-repeat; +} +.statePage a:hover { + background-position: -17px; +} +.statePage a.next:hover { + background-position: 1px; +} +.statePage input { + width: 48px; + height: 22px; + text-align: center; + border-radius: 3px; + border: 1px solid #d9d9d9; + margin: 0 5px; + font-size: 12px; + color: #333333; +} +.statePage em { + width: 48px; + height: 22px; + text-align: center; + margin: 0 5px 0 0; + line-height: 22px; +} +.statePage.active a { + background: #fff; + width: 32px; + margin: 0 3px; + height: 32px; + border-radius: 4px; + border: 1px solid rgba(0, 0, 0, 0.15); + color: #333; + text-align: center; + line-height: 32px; +} +.statePage.active a.cur { + background: #1890ff; + color: #fff; +} +/*鏉堟牠鏁撻弬銈嗗闁跨喕鍓奸崠鈩冨*/ +.JctionBox { + position: absolute; + left: 1px; + top: 49px; + width: 387px; + max-height: 439px; + /* background:rgba(255,255,255,0.8); */ + background: #fff; + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); + display: none; +} +.JctionBox h3, +.OnlineBox h3, +.common-population h3, +.common-company h3, +.mapTable h3 { + margin: 0 auto; + padding: 5px 0; + text-align: center; + border-bottom: 1px solid #c7c7c7; + font-size: 16px; + position: relative; + background-color: #fff; +} +.JctionBox h3 a, +.OnlineBox h3 a, +.common-population h3 a, +.common-company h3 a, +.mapTable h3 a { + position: absolute; + width: 13px; + height: 13px; + background: url(./img/close.png) no-repeat; + right: 14px; + top: 7px; + cursor: pointer; +} +.JctionBox .adress { + color: #000; + font-size: 14px; + padding: 10px; + font-weight: bold; + position: relative; + max-height: 24px; + /* overflow: hidden; */ +} +.adress_iduce { + position: absolute; + width: 260px; + padding: 20px; + border-radius: 5px; + background: rgba(255, 255, 255, 0.8); + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); + right: -320px; + top: 0px; + display: none; +} +.adress_iduce .overflew { + font-size: 14px; + font-weight: normal; + max-height: 300px; + overflow: auto; +} +.adress_iduce i { + position: absolute; + width: 0; + height: 0; + border-top: 15px solid transparent; + border-bottom: 15px solid transparent; + border-right: 15px solid rgba(255, 255, 255, 0.8); + left: -15px; + top: 6px; +} + +.SitionBox { + padding: 10px; +} +.sitioTitle { + color: #333; + font-size: 14px; + border-left: 4px solid #067dfd; + position: relative; +} +.sitioTitle em { + padding-left: 7px; +} +.sitioTitle i { + position: absolute; + right: 0px; + top: 0; + padding-right: 15px; + background: url(./img/zhk.png) right center no-repeat; + cursor: pointer; +} +.sitioTitle i.cur { + background: url(./img/zhktw.png) right center no-repeat; +} +.siscrrol { + width: 100%; + height: 350px; + overflow: auto; +} +.sitiTable { + margin-top: 5px; + display: none; +} +.sitiTable .leftTab { + float: left; + width: 175px; + margin-right: 9px; +} +.sitiTable .rightTab { + float: left; + width: 175px; +} +.sitiTable table { + background: #d1d1d1; + border-spacing: 1px; + border-collapse: inherit; +} +.sitiTable table td { + background: rgba(6, 125, 253, 0.2); + line-height: 28px; + height: 28px; + width: 90px; + color: #333333; + padding-left: 10px; +} +.sitiTable table td:nth-child(2) { + color: #067dfd; +} +.sitiTable table td a, +.sitiTable table td em { + color: #067dfd; + font-weight: bold; +} +.sitiTable ul li { + background: #a8c0da; + line-height: 28px; + height: 28px; + width: 163px; + color: #333333; + float: left; + padding-left: 10px; + border-bottom: 1px solid #ccc; + border-right: 1px solid #ccc; +} +.sitiTable ul li div { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + width: 49.5%; + float: left; + text-align: center; +} +.sitiTable ul li:nth-child(odd) { + margin-right: 10px; +} +.sitiTable ul li div:nth-child(odd) { + border-right: 1px solid #ccc; +} +.JctionBox .Retract { + width: 76px; + height: 18px; + background: rgba(6, 125, 253, 0.7) url(./img/Retractwo.png) center no-repeat; + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); + border-radius: 0px 0px 6px 6px; + position: absolute; + left: 50%; + margin-left: -38px; + bottom: -18px; +} +.JctionBox .Retract.cur { + background: rgba(6, 125, 253, 0.7) url(./img/Retract.png) center no-repeat; +} + +/*閻線鏁撴慨鎰獓*/ +.province { + position: absolute; + width: 230px; + height: 209px; + background: #fff; + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); + left: 1px; + top: 49px; + padding: 0 10px; + border-radius: 5px; + display: none; + overflow: auto; +} +.province h3 { + color: #5a5a5a; + border-bottom: 1px solid #d9d9d9; + position: relative; + height: 35px; + line-height: 35px; + text-align: center; +} +.province h3 em { + font-size: 16px; +} +.province h3 a { + position: absolute; + width: 13px; + height: 13px; + background: url(./img/close.png) no-repeat; + right: 10px; + top: 11px; +} + +.province li { + line-height: 35px; + border-bottom: 1px solid #d9d9d9; + font-size: 0; +} +.province li span, +.province li em, +.province li i { + display: inline-block; + vertical-align: middle; + font-size: 14px; +} +.province li span { + text-align: center; + width: 50px; +} + +.province li em { + width: 120px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + display: inline-block; + text-indent: 5px; +} +.province li i { + width: 50px; +} +.province li img { + width: 16px; +} +/*闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归柨鐔告灮閹风兘鏁撻弬銈嗗闁跨喐鏋婚幏宄版喅闁跨喐鏋婚幏鐑芥晸閺傘倖瀚�*/ +.CommyFrame { + position: absolute; + width: 368px; + height: 362px; + background: rgba(255, 255, 255, 0.8); + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); + border-radius: 8px 8px 0px 0px; + left: 40px; + top: 73px; + padding: 15px; + display: none; +} +.CommyFrame h3 { + margin-bottom: 10px; + font-size: 14px; + position: relative; +} +.CommyFrame h3 a { + position: absolute; + width: 13px; + height: 13px; + background: url(./img/close.png) no-repeat; + right: 20px; + top: 2px; +} + +.CommyFrame .gridTcont { + /* background: rgba(0, 0, 0, 0.02); */ + height: 100%; + margin-top: 10px; +} +.CommyFrame .onliSeek { + position: relative; +} +.CommyFrame .onliSeek input { + height: 36px; + background: rgba(255, 255, 255, 1); + border: 1px solid rgba(199, 199, 199, 1); + padding: 0 52px 0 10px; + width: 368px; +} +.CommyFrame .onliSeek button { + position: absolute; + right: 0; + top: 0; + width: 44px; + height: 100%; + background: url(./img/seek.png) center no-repeat; + border: 0; + border-left: 2px solid #c7c7c7; + cursor: pointer; + outline: none; +} +.CommyFrame .statelist th, +.CommyFrame .statelist td { + width: 123px; + line-height: 43px; + text-indent: 16px; +} + +/*闁跨喐鏋婚幏鐑芥晸閺傘倖瀚笲OX*/ +.ElframeBox { + width: 678px; + height: 425.5px; + background: #fff; + border-radius: 8px; + position: fixed; + left: 50%; + top: 50%; + z-index: 100; +} + +.ElframeBox h3 { + height: 36px; + background: rgba(231, 237, 244, 1); + border-radius: 8px 8px 0px 0px; + color: #333333; + position: relative; + font-size: 14px; + line-height: 36px; + padding-left: 15px; +} +.ElframeBox h3 a { + position: absolute; + width: 13px; + height: 13px; + background: url(./img/close.png) no-repeat; + right: 20px; + top: 12px; +} +.ElframeCont { + padding: 10px; + overflow-y: auto; + max-height: 325px; +} +.ElframeCont li { + /*margin-right: 10px;*/ + width: 45%; + float: left; + line-height: 25px; +} + +.ElframeCont.zhuangtActive table tr { + line-height: 30px; +} +.ElframeCont.zhuangtActive table { + width: 60%; + margin: 0 15px; +} +.ElframeCont.table_w { + width: 95%; +} +.ElframeCont.zhuangtActive table tr td:nth-child(1) { + width: 150px; +} +.float-population-box table tr td:nth-child(2) { + width: 150px; +} +.button_color { + background-color: #067dfd; + border: none; + height: 25px; + line-height: 25px; + padding: 0 5px; + border-radius: 5px; + color: #fff; +} +.float-population-box { + width: 400px; + margin-left: 0 !important; + margin-top: 0 !important; + left: 1px; + top: 49px; + position: absolute; + height: 270px; +} +.float-population-box .zhuangtActive table { + width: 90%; +} + +.ElframeTable { + margin: 10px 0 10px 0; + font-size: 0; + padding-left: 10px; +} +.ElframeTable span { + display: inline-block; + vertical-align: middle; + font-size: 14px; + color: #333; + border-bottom: 2px solid #fff; + margin-right: 20px; + cursor: pointer; +} +.ElframeTable span.active { + border-bottom: 2px solid #067dfd; + color: #067dfd; +} +.Stion_dion { + width: 100%; /* margin-bottom:40px; */ +} +.Stion_dion_tle { + position: relative; + text-align: center; + height: 25px; +} +.Stion_dion_tle span { + padding: 0 15px; + background: #fff; + line-height: 25px; + color: #999999; + position: relative; + z-index: 2; +} +.Stion_dion_tle i { + position: absolute; + top: 12px; + left: 0; + width: 100%; + height: 1px; + background: #e8eaec; +} +.Stion_dion_Cot { + color: #333333; + text-align: center; +} +/*闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归柨鐔告灮閹风兘鏁撻弬銈嗗闁跨喐鏋婚幏宄版喅闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归柨鐔告灮閹风兘鏁撻敓锟�*/ +.ElframeBox.Comdetails { + display: none; +} +.Comdebasic, +.workingCont { + height: 270px; +} +.Comdebasic .ComHead, +.Comdebasic .Comger, +.workingCont .ComHead, +.workingCont .Comger { + float: left; +} +.Comdebasic .ComHead, +.workingCont .ComHead { + width: 120px; + height: 160px; + border-radius: 3px; + overflow: hidden; + text-align: center; + position: relative; + border: 1px solid #ccc; +} +.Comdebasic .ComHead img, +.workingCont .ComHead img { + position: absolute; + max-width: 100%; + left: 0; + top: 0; +} +.Comdebasic .Comger, +.workingCont .Comger { + width: 520px; +} +.Comdebasic .Comger li { + float: left; + width: 250px; + font-size: 0; + margin-bottom: 10px; +} +.Comdebasic .Comger li span, +.Comdebasic .Comger li em { + display: inline-block; + vertical-align: middle; + font-size: 14px; +} +.Comdebasic .Comger li span { + width: 105px; + text-align: right; + word-break: break-all; +} +.Comdebasic .Comger li em { + width: 145px; + word-break: break-all; +} +.Comdeibe { + padding: 7px 0 10px 0; +} +.Comdeibe span { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 15px; + cursor: pointer; + text-align: center; + line-height: 26px; + color: #3c98fb; + padding: 0 10px; + height: 26px; + border-radius: 4px; + border: 1px solid rgba(60, 152, 251, 1); +} +/*闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归柨鐔告灮閹风兘鏁撻弬銈嗗闁跨喐鏋婚幏宄版喅闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归柨鐔告灮閹风兘鏁撻敓锟�---->闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归柨鐔告灮閹风兘鏁撻弬銈嗗*/ +.ElframeBox.RecentJk { + display: none; +} +.RecentJk .RectnTab { + font-size: 0; +} +.RecentJk .RectnTab span { + display: inline-block; + vertical-align: middle; + font-size: 14px; + cursor: pointer; + text-align: center; + line-height: 32px; + width: 130px; + height: 32px; + background: rgba(0, 0, 0, 0.02); + border-radius: 4px 4px 0px 0px; + border: 1px solid rgba(0, 0, 0, 0.15); +} +.RecentJk .RectnTab span.active { + background: #fff; +} +.RecentJk .RectnTab span:nth-child(2) { + margin-left: -1px; +} +.RectnCont { + margin-top: -1px; +} +.RectnCont table { + border-spacing: 1px; + border-collapse: inherit; + background: #d9d9d9; +} +.RectnCont table th, +.RectnCont table td { + width: 1%; + text-align: center; + line-height: 28px; + height: 28px; + background: #fff; +} +/*闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归柨鐔告灮閹峰嘲鎲�---->闁跨喐鏋婚幏宄版兜闁跨喐鏋婚幏鐤洣闁跨喐鏋婚幏宄版喅闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归柨鐔告灮閹风兘鏁撻敓锟�*/ +.ElframeBox.Drug { + display: none; +} +/*闁跨喐鏋婚幏鐑芥晸閹搭亝鎷濋幏鐑芥晸閺傘倖瀚归柨鐔荤窛鐢喗瀚归柨鐔告灮閹风兘鏁撻弬銈嗗---闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归柨鐔活嚑閸欏﹪鏁撻弬銈嗗闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归惄顕�鏁撻弬銈嗗闁跨喐鏋婚幏锟�*/ +.ElframeBox.welfare { + display: none; +} +.welfareRadio { + font-size: 0; + margin-bottom: 10px; +} +.welfareRadio span { + display: inline-block; + vertical-align: middle; + margin: 0 13px 8px 0; +} +.welfareRadio i { + display: inline-block; + font-weight: bold; + vertical-align: middle; + color: #333333; + font-size: 13px; + margin: 0 8px 8px 0; +} +.welfareRadio span input, +.welfareRadio span em { + display: inline-block; + vertical-align: middle; + font-size: 13px; +} +.welfareRadio span em { + padding-left: 5px; + font-size: 13px; +} +.welfareOther { + margin-bottom: 10px; +} +.welfareOther span { + display: block; + color: #333333; + font-size: 14px; + padding: 0 0 10px 0; + font-weight: bold; +} +.welfareOther input { + width: 100%; + height: 30px; +} +.welfarTion span { + float: left; + width: 50%; + color: #333333; + font-weight: bold; +} +/*闁跨喐鏋婚幏鐑芥晸閺傘倖瀚�*/ +.ElframeBox.SetupBox { + display: none; +} +.SetupBox { + width: 598px; + height: 290px; + margin-top: -145px; + background: rgba(255, 255, 255, 1); + box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2); + border-radius: 8px; + margin-left: -299px; +} +.SetupCont { + padding-top: 20px; +} +.SetupCont li { + float: left; + width: 50%; + text-align: center; + font-size: 0; + margin-bottom: 15px; +} +.SetupCont li em, +.SetupCont li input { + display: inline-block; + vertical-align: middle; + font-size: 14px; +} +.SetupCont li em { + width: 80px; +} +.SetupCont li input { + width: 146px; + border: 1px solid #d9d9d9; + height: 26px; +} +.SetupButton { + text-align: right; + padding-right: 0px; + position: absolute; + right: 10px; + bottom: 10px; + width: 100%; +} +.SetupButton button { + display: inline-block; + vertical-align: middle; + cursor: pointer; + width: 65px; + height: 32px; + background: rgba(255, 255, 255, 1); + border-radius: 4px; + border: 1px solid rgba(217, 217, 217, 1); + margin-left: 8px; +} +.SetupButton button:nth-child(2) { + color: #fff; + background: #067dfd; + border: 1px solid #067dfd; +} +/*闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归柨鐔告灮閹风兘鏁撻敓锟�*/ +.ElframeBox.QSitunBox { + display: none; +} +.QSitunCont li { + font-size: 0; + margin-bottom: 10px; +} +.QSitunCont li span, +.QSitunCont li input, +.QSitunCont li em, +.QSitunCont li .establish { + display: inline-block; + vertical-align: middle; + font-size: 14px; +} +.QSitunCont li span { + width: 155px; + text-align: right; + font-weight: bold; + color: #333333; +} +.QSitunCont li input[type='text'] { + width: 495px; + height: 26px; + border: 1px solid rgba(217, 217, 217, 1); + margin-left: 8px; +} +.QSitunCont li .establish { + width: 495px; +} +.QSitunCont li .establish span { + font-weight: normal; + width: auto; + margin-right: 8px; +} +.QSitunCont li span.active { + vertical-align: top; +} +.QSitunCont li em { + padding-left: 5px; +} +/*闁跨喐鏋婚幏鐑芥晸閺傘倖瀚归悩鑸碉拷锟�*/ +/* .workingCont{ padding-left: 30px;} */ +.workingCont li { + height: 25px; + line-height: 25px; +} +.workingCont span { + display: inline-block; + vertical-align: middle; + position: relative; + width: 27.3%; +} +.workingCont span:nth-child(1) { + margin-left: 0px; +} +.workingCont span i { + position: absolute; + left: 0; + top: 8px; + width: 15px; + height: 15px; +} +.workingCont span em { + color: #333; + font-size: 14px; + padding-left: 25px; +} +.workingCont span strong { + color: #fd0606; + font-size: 20px; +} +/* .workingCont .working_right{width:100%;} */ +.working .Comger li { + float: left; + width: 48%; + font-size: 0; + margin-bottom: 10px; +} +.working .Comger li span, +.working .Comger li em { + display: block; + float: left; + vertical-align: middle; + font-size: 14px; +} +.working .Comger li span { + width: 145px; + text-align: right; +} +.mapTable { + position: absolute; + background: #fff; + border: 1px solid #ffffff; + border-radius: 8px 8px 0px 0px; + width: 300px; + height: 300px; + box-shadow: 0px 2px 2px 0px rgba(174, 174, 174, 0.5); + left: 1px; + top: 49px; + display: none; +} +.mapTable th { + height: 29px; + width: 88px; + background: #1e82dd; + border: 1px solid #ffffff; + border-radius: 8px 8px 0px 0px; +} +.mapTable th.noRadius { + border-radius: 0px; +} +.mapTable th.leftRadius { + border-radius: 8px 0px 0px 0px; +} +.mapTable th.rightRadius { + border-radius: 0px 8px 0px 0px; +} +.mapTable td { + line-height: 32px; + border: 1px solid #ffffff; + background: #c3e2ff; + color: #1e82dd; + text-align: center; +} +.mapTable th .mapTablesTit { + display: block; + text-align: center; + font: normal 12px/29px 'microsoft yahei'; + color: #ffffff; +} +.mapTable th .mapTablesTit .mapTablesZz, +.mapTable th .mapTablesTit .mapTablesWgy, +.mapTable th .mapTablesTit .mapTablesRk { + width: 11px; + height: 13px; + display: inline-block; + background: url('../images/gis/mapTablesIcons.png') no-repeat; + margin-right: 10px; +} +.mapTable th .mapTablesTit .mapTablesWgy { + width: 16px; + height: 12px; + background: url('../images/gis/mapTablesIcons.png') no-repeat 0 -39px; +} +.mapTable th .mapTablesTit .mapTablesRk { + width: 21px; + height: 12px; + background: url('../images/gis/mapTablesIcons.png') no-repeat 0 -77px; +} + +.house-set-btn, +.float-population-set-btn { + border-radius: 3px; + color: #fff; + background: #0886fc; + border: 1px solid #0886fc; + padding: 3px; + cursor: pointer; +} +.overflew { + max-height: 300px; + overflow: auto; +} + +.popTab { + width: 100%; + height: 100%; + background-color: #000; + position: absolute; + top: 0; + opacity: 0.4; +} +.name_str { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + display: inline-block; + width: 95px; +} +.adress_omit { + width: 100%; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + display: inline-block; +} + +/* loading */ +.tipsbox1 { + position: relative; + width: 100%; + height: 100%; + background: #f2f2f2; + border: 1px solid #dadada; + padding: 5px; + margin: 5px 0; + font-size: 12px; + cursor: pointer; + text-align: center; +} +.loadbox1 { + position: absolute; + top: 40%; + left: 40%; + padding: 10px 0; + text-align: center; + font-size: 12px; + line-height: 16px; + vertical-align: middle; +} +.loadbox1 img { + margin: 0 auto; + vertical-align: middle; + margin-right: 4px; + height: 80px; +} + +.mapChangeTools li { + position: absolute; + right: 20px; + top: 10px; + width: 88px; + height: 25px; + line-height: 25px; + background: linear-gradient(360deg, rgba(227, 227, 227, 1) 0%, rgba(255, 255, 255, 1) 100%); + box-shadow: 1px 1px 4px 0px rgba(0, 63, 130, 1); + border-radius: 4px; + cursor: pointer; +} +.mapChangeTools i { + position: absolute; + left: 24px; + top: 4px; + width: 13px; + height: 16px; + z-index: 1000; + background: url(./img/icon_2dmap.png) center no-repeat; +} +.mapChangeTools im { + position: absolute; + left: 16px; + top: 3px; + width: 17px; + height: 17px; + z-index: 1000; + background: url(./img/icon_2.5dmap.png) center no-repeat; +} +.mapChangeTools em { + padding-left: 23px; + color: #0885fc; + font-size: 14px; +} diff --git a/frontend/src/pages/Home/styles/map2.css b/frontend/src/pages/Home/styles/map2.css new file mode 100644 index 0000000..42292ce --- /dev/null +++ b/frontend/src/pages/Home/styles/map2.css @@ -0,0 +1,406 @@ +body { + margin: 0 auto; +} + +.hide { + display: none; +} + +.olImageLoadError { + background-color: pink; + opacity: 0 !important; + filter: alpha(opacity=0) !important; +} + +.drawNav { + position: absolute; + width: 400px; + height: 38px; + background: #fff; + -webkit-box-shadow: 2px 2px 4px #cccccc; + box-shadow: 2px 2px 4px #cccccc; + z-index: 5000; + font-size: 14px; + top: 50px; + right: 80px; + border-radius: 2px; +} + +.drawNav .d-item.active { + background: #f2f2f2; +} + +.drawNav .d-item { + position: relative; + float: left; + cursor: pointer; +} + +.drawNav .d-item .draw-icon { + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfwAAAAaCAYAAABSOO44AAAVqElEQVR4nO2deZgTZZ7HP2mhybZ4IJ3RUVdn10bxGKKu4PrggXarSFphtFXacXW8EthRh9V2lqyu4zEaR9FRdGwq6ii42uDATCtdIwzd4gG7Aj5KZF1Rg65H9+CEQ67edDNS+8fvLRLSlaSSVPrAfJ8nT5Kq90qq6v2+v/N1odDW1lYej8enAFcAP1SH1wAvut3uWdXV1d04DG8odhJQCxylDq0DlkSCnred7svGWNzAPcjv9wArgWAk6FlWYLtHAm8DHwDvAiuA9yNBzyeFjTjncVwInBIJen7Rm/0ONPj9/gOB8cBk4BjgAHXqz8DHwFzgjXA4/I3D/Rrm53A47HKy7b7C7NmzK+Px+K3ABGCkOrwWaHa73Y9fffXVG/pudN9NeEOx4cCtyLx7jDr8IfAyMDMS9Gzsq7GVIDAMI3uhHOByJaYTF4Cu64cBLcCJaeqsBmp9Pl+7EwPwhmInAI3A6WmKLAOmRoKe/3aiP5tjehWZ6JPRDVQXQvreUGwecJnFqS3AO8gi4D3gnTHDN697yn/0rnz7yjCGE5D/dH/gx5Ggp8npPvYG+P3+M5BF3zHAYmA58DkQB84B/hE4A1gF3BkOh99ysO+9ivA1TbsE+C1yz1lhK3BtIBBY0Huj+m7DG4pdAjxDYhGbii3AdZGgp3RN+hBFJXwl2a9AyP5jIAi0qvM1QAg4Goi43e4xhUr63lBsAvASsG+WojuAyyJBzx8L6c/mmKqR3xwDLkKk8YeBG4BlkaDnjDzbPR14E+hUbY1E/ucxwCEWVcxFQKNTD503FPMgWoW/U4e6gbP6QovSn+H3+ycik2EMuDAcDkeTzl0P/Bghfi/wfWAjcF04HH7Zof73GsJXZD9ffW0BHkEWSQCjgVsQCROgrkT6xYci+9+hhLwMMIBLi036uq6fA1yLLKAPA7oQ/lkMPO6UcDkQUVTC13X9ZuAx5M8e7fP5tiYX1nV9f+RhPRr4mc/nm5lvx95QbAQizWYjexM7gJOKrf72hmINwEPAE5Gg5yZ1bD9ECumOBD1Dcm3zhvDHZSs3DlsFnAzck6pK94ZihwL/gCwATlGfD1OnX4oEPZfn+3uS+nADS+ipSYkBJ0aCno5C+9gboCT7V5H78oZwOPy0ea6urm7IQQcd9CBws0XVHcAFTkj6ewvhKzX+OkSyvzMQCNxrVU7TtH9HtClb3W73USX1fvGgFv2fkF6yT8UWYEQk6Ik5PZbZs2dXVlZWPktiwWeFTiBYCNcMZBST8AchNmuQP3hramGfz7dV1/UgsECVLeQizMQ+2aPKzgQuKKBPOzB/d1XSsePVe143/cqNw65EyL4d0ZLsAUW2HcBC81iSpuHIfPq0wCyszSYe4FVvKHZqJOiJO9TXgISy2d+jvj63adOm52E30U8BxgHp7PX7Avf4/f4fOW3TH6iIx+M3IWSvpyN7gEAgcK+maWOAWmXnDzo1BsMwPMA0hFSSfQdagEddLpfjRNbPcSP2yR5V9l+Af3NyEIrslyPCI4i2sRUxmwGcicy7FcBjuq6P9Pl8/1xIn0qj/AzWGtVcsB4xd+SkcVaC3wORoOfnBfbvCAYBJ6nPrekKDRky5E9dXV0klc0ZSrpPtZEz8uBBXDn6bwD4j1X/x9qv/5paZLw3FBtRZCm/BZHWxitbfhQwJexncm1MaQd+pb7elgOpfqjeCyZ8pbW4OkORUcC8G8If/6gYfgOFoLW1dYLL5XoaUZ1nwp8Nw7i+pqamELPPeMRJ9cxwOPyueVCR/SSEvCYhDqU7SRCIiXHAWYjTUwnyX4GYxLLhEYSUJ+AQ4RuGcQnwLLBfyqlR6nWTYRjXuFyu75IZYWIedWpxmPArKyvnkiD7FmBKquq+tbV1QldXl0nQU3VdX+Xz+Z4toFsnyB7VxjNkn5N2Q5H9LMSc228IPxf0YOMccFrqgYP324enrziAwfvI93Ejyrn+xS1WpH8aopJyHHJRuB94S/WTvChZhIV0bgNB5AZZMWb45nkRm5XGDN+8fuXGYd3Awd5QzJ2v9K088h+0UfSilRuH/RKHH+xCYZPsAb6vyh5aQHeTgYXJZK9U/OOB+8Ph8BK/39+EEPoPsf6vJmOT8JNV97mWsavqt9NHOjhgTjAXRKsyltqzTOoiKi8osjd9B3Tg4Z07d64CGDx48GjEO90HzDcMo643Sb+xsdG9Y8eOuUBjQ0PD4kxlZ8yYcT4wdd999508depUJzRwx+ZR55jsRexD1/WLgWr1taW5fcREK0Gjpqbmj7quXwC8gSy2729ra3uhAN+xQwAiQY8LwBuKGcnf0yG1nPpue+HgDcXcKzcyG2uH7bzR2VR1E3Ag4muRChewsaI++mS6+mWITR3EQc8SXV1d56mPa/IcJ8D3Ug+cO7J8N9kDDN4HTjlisK26TkCtwH6LSMLjgTAwFbgNqBkzfLMvV9JVYXi3IhdkWi7Ssyrbjly4v82l36T+TwCeJ7tzjonp3lCsPp++igjbq+gcy1rhRCQKBQC/338xMA+5H2b6/f7JiH/HRCCQpo0ei9kSckLBpKbU+KYkeJfL5ap1uVxLy8vLt5eXl293uVxLXS5XLXCXKvOsqtMrUGQ/EXhZEbol1LmXgYmqTl9hp8PtmXNMJzAl07zo8/lWk9CQHhKPxzPZ+/sdlIa3BYfJXuFNxC+rFWgDXlOfW9Xx5ZkqDwJeBE4FQrqut6ba8WfPnl1J4kF6sYCB9vAP+HLztz0KWR2zqlsoUsgeIAL8KjkO1a5knoIHgXLghTw94dsRj/rDyUOroUIZD0w9bndl25+wa9eusWVlZcurq6stx9zW1uaEd8sRwFV+v19Xnvm3k1hEjARmIzH4ppmlGxjMnguqQhcdexPWIqrz0cDSLGVHq/f/daDfaYgaX3e5XHenK+Ryue42DGM0IulPQ653Tujo6PAgIYfXHnrooXb9AWYhi8ghCOlPTJX0k8h+COK1PivXsaXBh0h0SS5Y51DfJkxfov+y6YH/EnCf+jwG+L3D4+kBJ+ZIledARzi1YHQ2VQ0GhiGcAvAHEs7d5jy0k4TE39HZVDVOfe9CHDB3L6gHud3uWfF4/FrkhlilHPSSw/KeRVQr35aXl79TwNgXq0Hs/jPfjHazZG03546U37JkbTdvRntobgxV1zGkIfvqQpNOqDC8yxB/gHxtNp8jD0deEn5voq6ubkg8Hp8LaC0tLYuSz9XW1o4HAm63e/L8+fO78mm/rKxsOThG7JnwvnFKw6eEwyAOQ8koJ0H265CJfjjyEB1Pjg6l6VTmTnrp97GXfzNC+LeQnfBvUe9OhN6aUqAd34GHEcKvJUfC7+7uHrphw4YlyHy5pLu7+/Ty8vLt2eo1NDQsmjFjxiTk/+lB+hZkP6mhoWFR2gZzw8vkTvi6Q32bMNXh6+0UdrvdX8Tju3kqXS6HfgUVebWMRAh08rnUOawbewmPVgFuwNSIpLb9BuJDZOIHyOLIlJy3IzlEAChTthEfotY8GvHG36JeC0j82ft0d3cv1HU9XXKejIgEPZ+T5JEOwuR3tGzjIu0bLtK+4Y6WbVaGiYWqriMoFtkrzFDvzQWEvH2h3p3y1C823ECzInhgN9k3q3P9HZ8Cy5NUjHeT8BpOxYHAJcDycDh8+6ZNmy5HVGrbij/MgQG32/04opGrVaF3llDnapGwPDsknQ0jAUybfSYklcnJd6C1tXXohg0bXiFBnt4NGza83NbWVp6pnglF4JMQQjdJ//wikz3AE8h8bhdbgF872D/AJvVuK1ogHo8nm1sc1/BaIRL0uArUgM7BguzToBy5j+4E1qk8CVY4EniUxAK1nQT5r0EcXk18C3wJXIjcZ42kRMWVAfh8vna3230q8DMkSUuneq1AbCnmxToIaMuX9BEHuB6c/vW2b/l6m6Uq3yA/pzlLFJnsAZ5ExnxFAXZxk/D7vYQ/f/78LrfbPQmR5Jpra2vHJ5H9UrfbPSlf6R5EpQ9QXV3tsno58ytYA4w1v4TD4bnAxYjNsTml7HBEA/AayO9HJJaC0i/vTVDx9Neqr/domrZQ07SzNU0bql5na5q2kEQo5LV9GINv+968Ifxx2XHHHdcEnJ1y6pxjjz12wQ3hj8vstGNF+hSX7FHx9Ndh7eiVCgMJP3M6dPE/1fuZKrdLNiQTYK9lXC0QVwGf5VHvAOB3aUj/PeCvFfXRzyrqo58iHLwGSVh0WUV9tBMJ/x4PfAUMq6iPdlTURzsQso8mN7bbS19J+jOxiLPXdX0u4iBwEAnSr1bOFbYRCXre9oZiLyJZy+zgxUIywnlDsbORhDZbgRbljV8ssicS9MzxhmLfQ5y8nvOGYtsjQc/CbPVSMGAIH4T06urqJsXj8WYSBFkw2UOvqfTnAY/4/f4qM7ue8th/1+/3v4M8WMOTyk83Y+79fn8VcD4J1XQJQCAQWKBpWh1i/qjFOsmK06l11wKjlDd+RlOCKgM5TM531w4Nkz5ZTO3dtUPDT8H1dtqyUO9DkcjeRCToWeANxS6l71LrzkP+v/2BB4C08fUq1bsp6G0FXnFwHDHAY6Fit0JO2f4iQU+HNxQbjYUNP1VzoBz7zkP8FI5BTN3PeEOxN9kz98saxNnTTAa2GdFMTaqojzaYzSPX9XDg66S6ExGhfTdsrUoVsVfTU9KvSl8rLX6OPfXSFvK0g3tDMbeKp38NIV8NebiLRvYmIkHPDORmLQeaVDKdXFCp3u2qhvCGYobNG7go7aRI+o6QfS9iEeKU18OWqxYAsZSybyR9v13VLcokPcCxBlFFfoHYK010q2OPUljUTypa1PutmQopz3yzTEumsiY6OjpCiIScCdepcnZRbL8UK7yPZFX9jJ7X5DN17v1idOx2u19CUpaDxNc/2djY2MPkp7TH/0PCl6bRKiFcAfgJ9oh8PeDPtXHFKeciAnKmctvUwmos8JE6bCY8SsaTQG1nU5WZV2IHskj8KUBnU5UHMZ3+BNgHlSSss6lqX8QH77nkxnJSi6qLYUr6LzS3j7gqn6Qt3lDsKsT7OROujgQ9c3JtW7X/IBJaF0NWllWIysNAbqazir0rlDcUexzJcLUFGJ9JU6FMDZcDDYh6BiAWCXpshSM65YFfaDt1dXVDYLeqO2+YEr1dL/1C1ftJqXUfCofDd6ecW4ok1wGYFg6HH1PH70KuVym1bhI0TTsLkVrGZiursBy4PRAIvJG1ZAYoIl+HeOrfZeWpr8p8gGSa3AYc1RdZ9yxs9lBElb43FDsL+CXpNytLxTLgjkjQU9A1SYUSEFcg/AFCqn9AtDNDkXtmQkq1L4Bqn88XJQ/01dyo0prPQ/ZmyVhPqfLN/BFrVk+vHJV8vrOpajYwsaI+emBnU9UDwL8iIeRfAtORtN8TVV/3V9RHb+9sqvoQiFTURyf32C0vFyjS9ze3j7ixkAxtGXaRgwJzyXtDsa+Q0IXTTKL1hmKtiJbiNiWFFxWKxOcg5osYcE7q7n9KrRNA1FumRB8DHgeetLso6S+E7xRyVeE7Yc9X8fdzkA1G7jPV+yoO/2kkBKYGkejvRdn5w+Fw0cOFBgIaGxvdZWVlj5LIVbAVyQexGHivqqrqL9FotBxJknQMYgr5JxJOwdquXbumFZJoJofEOyD2zpN7m/CtHPTUqWYcJn1FOjMRU0Ouz4iB3Pc3O5l+W5F+M4nU5XawHjgjH9Lvy7kx2WcsC+Gb+7YAdK+eXtlj75bOpqrViAn+T4gW4K/smTgvjkj605B56viK+ujfg8X2uH0BdTOuRLKXJWMNMDYS9OTt+ewNxboQlfr+ZjtJEnevEL7qM3mV1478rs9Vcp6fIioj0572EZJqdE4eyX5KhO8AlKT/KGKzX0pie9yJCMF/hPhWbEGkfce2xx3IUBvmNCMSWjciTf46EAhkDFfTNG0oMnndgTyvy91u96RCnPgMwzB9B1JT65rYhthBj0C0feN6i/QzeePPmDHDdHZ1hPQdjAdfAfic1IiqHVqvAa5BNg4z069tRSK5tiIJ0JKxHrggV7+xvp4b7eTSTyH8HaunVw61KtfZVPUUYvc/IkOXXwBvV9RHdwvM/YLwYXd+/VUkSG8LMLrQvPneUOwtRH31BJIK9XjE8cMD1ESCnoz2FSehSP9VRC38EbL97aUkEim8Djw0ZvjmRflqTPr6pnYabW1tHdhPZrO+urrascQ3ajOd8cheCiORe7MTSW6xFlnALSptliNQpL0IIfsvgAsDgUBOdmBN00YhE/0RyCJrfLbFQiZYbJ7ThdioW5AFHUiukVH0EunbCb1zivTVnPM6DiV/QUh/XDE22lLk7wGJFjOP67oeoGfioU2Iet826Q+EuTFFpf/+6umVaXMmdDZVuZB7uh6Zo6oQIfl5hGc6Kuqje8xNqbvl9RkiQc8n3lDsChLOM1c4tElOEPE1uFG9TCwaM3zz0jwz6OWFSNAT94ZiFyEP4MmIOrMbyST1QCToeQ/yzuq3B5xw3OsPMAzjepfLZWfTi3bDMHJ2rMkEReRz1auE7HiMBNmPDQQCX+XaQCAQeF/TtLEI2Y9VbWZzkksLRd63kyGpjmEYNSRI/3XDMIpN+lPJQuQW3vtTyM8hdCbOkT2qrZnk4cSWDSo6rIcTnc/n03Rd7waeIqEByDtCrL9CaWLuSzqUMeFRRX3UQBL23NnZVPUK4ph+TkV9dFOmeib6hXOQNxSbAuwTCXp+42CbpqPKGGRl+DxwZ19tB6v2pF6I5EL+jZPJhJwm+r6W8EsYGFAOeq8jC9gzA4HAisw1srZ3KvJ8lAPjCnXkywalCegVST9p85xZ2aR2JelPyWfzHDXvLcX5ud0AznbakS8bdF2/EvE0T9p1hTafz5d275dk9FcJ3yIsD0TDPWL19ErLe7CzqWoQ4tR4M5JR7yAk7e5fVN0PgFkV9dE9MtP2G5V+CSWUMHChadoyRCJ/IBAIOLK9raZpIcTzeHkgELDrVZ43Ukl/586dp9pJldtfkWTOLAaWRYKeM4rUdlqonfaakIXgCuA8u6F6/YHwbV4TA7g0EvQsMAxr+U2F5m1mz8XPdiTCwUR7RX308OR6/UalX0IJJQxMKLv7WMTZ6L4sxXPBfUjUylhN00bl6g+QK1wuVyxJvT9ngJP9SRSP7AFO94ZiJ5lmyN6Cz+f7va7r9cB1Q4YMubympmbAXqM0sJXwqKI+uo0CObtE+CWUUEI+MNOAzi/EwS4VgUBgu6ZpzyNRLJdQpEQwyXC5XLG2trbRBey53l8wKXsRR/roVcIHIX3y2zFvPXCIQ2ZPWxv/2MQOxIm7hcyb5ziKEuGXUEIJ+cDMIOnETnepWIwQfjXwiyK03wN7AdkDnLmX9OEkrkPSzmZzAM6GdvJ0WuwLM0gJJZRQQgkllFBCCSWUUEIJJZSwN+P/AQX70pAte4f3AAAAAElFTkSuQmCC) + no-repeat; + width: 20px; + height: 20px; + margin-bottom: -5px; + line-height: 46px; + margin-left: 15px; + display: inline-block; +} + +.drawNav .d-item .point-icon { + background-position: -22px 0; + margin-left: 13px; +} + +.drawNav .d-item .line-icon { + background-position: -53px 0; +} + +.drawNav .d-item .polygon-icon { + background-position: -83px 0; +} + +.drawNav .d-item .upload-icon { + background-position: -113px 0; +} + +.drawNav .d-item .save-icon { + background-position: -440px -4px; +} + +.drawNav .d-item .back-icon { + background-position: -466px -4px; +} + +.drawNav .d-item .draw-text { + color: #333333; + line-height: 38px; + margin-right: 10px; + margin-left: 6px; +} + +.drawNav .d-item .draw-text:hover { + color: #2f87eb; +} + +.drawNav .d-item:hover { + background: #f2f2f2; +} + +.drawNav .d-item:not(:nth-last-child(1)):after { + content: ''; + display: block; + visibility: visible; + width: 1px; + height: 22px; + color: #a8a8a8; + background: #eee; + position: absolute; + top: 12px; + right: -1px; +} + +#popup { + display: none; + position: absolute; + left: 0; + top: 0; + background-color: #fff; + border-radius: 5px; + /* width: 360px; */ + /* height: 130px; */ + min-width: 280px; + z-index: 99999; + font-size: 14px; +} + +#popup .header { + width: 100%; + height: 28px; + background-color: bisque; + border-radius: 5px 5px 0px 0px; + line-height: 28px; +} + +#popup .title { + padding-left: 10px; +} + +.close { + display: inline-block; + width: 20px; + height: 20px; + content: '&'; + position: absolute; + top: 0px; + right: 0px; + color: red; + cursor: pointer; +} + +#popup li { + list-style: none; +} + +#popup ul { + padding: 0 10px; + margin-top: 0px; + line-height: 28px; +} + +#search { + position: absolute; + top: 50px; + left: 100px; + z-index: 10000; +} + +#search input { + border: 0; + height: 38px; + color: #333; + border-radius: 2px 0 0 2px; + border-left: 10px solid transparent; + border-right: 27px solid transparent; + line-height: 20px; + outline: none; +} + +#search input[type='text'] { + width: 320px; +} + +/* #search input[type='text']:hover { + border: 0; + } */ +#search select { + text-align: center; + font-size: 14px; + color: #333; + height: 38px; + width: 100px; + border: 0; +} + +#search input[type='button'] { + height: 38px; + text-align: center; + border-left: none; + border-right: none; + width: 60px; + border-radius: 2px; + background-color: #fff; + margin-top: -1.5px; + font-size: 15px; +} + +#search input[type='button']:hover { + background-color: #f1eeee; +} + +#operation { + position: absolute; + top: 73px; + right: 45px; + z-index: 10000; + background-color: #364347; + width: 240px; + font-size: 14px; + color: #fff; + border-radius: 10px; + padding: 10px 15px; +} + +#operation ul { + padding: 0; + margin: 0; +} + +#operation li { + list-style: none; + height: 28px; + line-height: 28px; + cursor: pointer; +} + +#operation li input { + cursor: pointer; +} + +#operation .fa { + width: 7px; + height: 5px; + position: absolute; + top: 91px; + right: -6px; + color: #364347; +} + +.record { + position: absolute; + right: 50px; +} + +.search { + width: 30px; + height: 20px; + line-height: 20px; + position: absolute; + right: 5px; + border-radius: 5px; + cursor: pointer; + background: #1b7be9; + color: #fff; + padding: 0 5px; + margin-top: 4px; + font-size: 12px; + text-align: center; + display: none; +} + +.search:hover { + background: #1bb8e9; +} + +.ips .search { + display: inline-block; +} + +#user-info { + position: absolute; + right: 320px; + top: 73px; + z-index: 10000; + background-color: #364347; + font-size: 14px; + color: #fff; + border-radius: 10px; + padding: 10px 15px; + display: none; +} + +#user-info .close { + width: auto; + padding: 0 2%; + color: #fff; + font-size: 16px; + cursor: pointer; + float: right; +} + +#user-info .sear-item { + clear: both; +} + +#user-info .sear-item span { + display: inline-block; + height: 38px; + line-height: 38px; +} + +.item-name { + min-width: 80px; +} + +.item-desc { + min-width: 120px; +} + +.item-addr { + min-width: 200px; +} + +.item-oper { + color: cadetblue; + cursor: pointer; +} + +.item-oper:hover { + color: rgb(255, 115, 0); +} + +#user-info-detail { + display: none; + position: absolute; + right: 810px; + top: 73px; + z-index: 10000; + background-color: #364347; + border-radius: 10px; +} + +#user-info-detail table { + color: #fff; + font-size: 14px; + padding: 5px 10px; +} + +#user-info-detail table a { + color: #fff; +} + +#user-info-detail table a:hover { + color: rgb(255, 115, 0); +} + +#user-info-detail img { + height: 100px; +} + +#user-info-detail table tr { + padding: 5px 0; + border-bottom: 1px solid #ccc; +} + +#user-info-detail .btn { + margin: 10px 0; + position: relative; + left: 40%; + cursor: pointer; + border-radius: 5px; +} + +#detail { + position: absolute; + z-index: 99999; + display: none; + background-color: #fff; + padding: 10px; + border-radius: 10px; +} + +#detail .item { + height: 32px; + line-height: 32px; + min-width: 240px; +} + +#detail .close { + display: inline-block; + width: 15px; + height: 2px; + background: #333; + transform: rotate(45deg); + top: 10px; + right: 5px; +} + +#detail .close::after { + content: ''; + display: block; + width: 15px; + height: 2px; + background: #333; + transform: rotate(-90deg); +} + +#detail .item span:first-child { + margin-right: 10px; +} + +.olPopup { + border-radius: 10px; +} +/* .olLayerDiv img:hover { + opacity: .8; + } */ diff --git a/frontend/src/pages/Home/styles/mixin.scss b/frontend/src/pages/Home/styles/mixin.scss new file mode 100644 index 0000000..06fa061 --- /dev/null +++ b/frontend/src/pages/Home/styles/mixin.scss @@ -0,0 +1,66 @@ +@mixin clearfix { + &:after { + content: ""; + display: table; + clear: both; + } +} + +@mixin scrollBar { + &::-webkit-scrollbar-track-piece { + background: #d3dce6; + } + + &::-webkit-scrollbar { + width: 6px; + } + + &::-webkit-scrollbar-thumb { + background: #99a9bf; + border-radius: 20px; + } +} + +@mixin relative { + position: relative; + width: 100%; + height: 100%; +} + +@mixin pct($pct) { + width: #{$pct}; + position: relative; + margin: 0 auto; +} + +@mixin triangle($width, $height, $color, $direction) { + $width: $width/2; + $color-border-style: $height solid $color; + $transparent-border-style: $width solid transparent; + height: 0; + width: 0; + + @if $direction==up { + border-bottom: $color-border-style; + border-left: $transparent-border-style; + border-right: $transparent-border-style; + } + + @else if $direction==right { + border-left: $color-border-style; + border-top: $transparent-border-style; + border-bottom: $transparent-border-style; + } + + @else if $direction==down { + border-top: $color-border-style; + border-left: $transparent-border-style; + border-right: $transparent-border-style; + } + + @else if $direction==left { + border-right: $color-border-style; + border-top: $transparent-border-style; + border-bottom: $transparent-border-style; + } +} diff --git a/frontend/src/pages/Home/styles/ruoyi.scss b/frontend/src/pages/Home/styles/ruoyi.scss new file mode 100644 index 0000000..4e29874 --- /dev/null +++ b/frontend/src/pages/Home/styles/ruoyi.scss @@ -0,0 +1,291 @@ +/** +* 通用css样式布局处理 +* Copyright (c) 2019 ruoyi +*/ + +/** 基础通用 **/ +.pt5 { + padding-top: 5px; +} + +.pr5 { + padding-right: 5px; +} + +.pb5 { + padding-bottom: 5px; +} + +.mt5 { + margin-top: 5px; +} + +.mr5 { + margin-right: 5px; +} + +.mb5 { + margin-bottom: 5px; +} + +.mb8 { + margin-bottom: 8px; +} + +.ml5 { + margin-left: 5px; +} + +.mt10 { + margin-top: 10px; +} + +.mr10 { + margin-right: 10px; +} + +.mb10 { + margin-bottom: 10px; +} +.ml10 { + margin-left: 10px; +} + +.mt20 { + margin-top: 20px; +} + +.mr20 { + margin-right: 20px; +} + +.mb20 { + margin-bottom: 20px; +} +.ml20 { + margin-left: 20px; +} + +.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { + font-family: inherit; + font-weight: 500; + line-height: 1.1; + color: inherit; +} + +.el-message-box__status + .el-message-box__message{ + word-break: break-word; +} + +.el-dialog:not(.is-fullscreen) { + margin-top: 6vh !important; +} + +.el-dialog__wrapper.scrollbar .el-dialog .el-dialog__body { + overflow: auto; + overflow-x: hidden; + max-height: 70vh; + padding: 10px 20px 0; +} + +.el-table { + .el-table__header-wrapper, .el-table__fixed-header-wrapper { + th { + word-break: break-word; + background-color: #f8f8f9; + color: #515a6e; + height: 40px; + font-size: 13px; + } + } + + .el-table__body-wrapper { + .el-button [class*="el-icon-"] + span { + margin-left: 1px; + } + } +} + +/** 表单布局 **/ +.form-header { + font-size: 15px; + color: #6379bb; + border-bottom: 1px solid #ddd; + margin: 8px 10px 25px 10px; + padding-bottom: 5px +} + +/** 表格布局 **/ +.pagination-container { + position: relative; + height: 25px; + margin-bottom: 10px; + margin-top: 15px; + padding: 10px 20px !important; +} + +/* tree border */ +.tree-border { + margin-top: 5px; + border: 1px solid #e5e6e7; + background: #FFFFFF none; + border-radius: 4px; +} + +.pagination-container .el-pagination { + right: 0; + position: absolute; +} + +@media (max-width: 768px) { + .pagination-container .el-pagination > .el-pagination__jump { + display: none !important; + } + .pagination-container .el-pagination > .el-pagination__sizes { + display: none !important; + } +} + +.el-table .fixed-width .el-button--mini { + padding-left: 0; + padding-right: 0; + width: inherit; +} + +/** 表格更多操作下拉样式 */ +.el-table .el-dropdown-link,.el-table .el-dropdown-selfdefine { + cursor: pointer; + margin-left: 5px; +} + +.el-table .el-dropdown, .el-icon-arrow-down { + font-size: 12px; +} + +.el-tree-node__content > .el-checkbox { + margin-right: 8px; +} + +.list-group-striped > .list-group-item { + border-left: 0; + border-right: 0; + border-radius: 0; + padding-left: 0; + padding-right: 0; +} + +.list-group { + padding-left: 0px; + list-style: none; +} + +.list-group-item { + border-bottom: 1px solid #e7eaec; + border-top: 1px solid #e7eaec; + margin-bottom: -1px; + padding: 11px 0px; + font-size: 13px; +} + +.pull-right { + float: right !important; +} + +.el-card__header { + padding: 14px 15px 7px; + min-height: 40px; +} + +.el-card__body { + padding: 15px 20px 20px 20px; +} + +.card-box { + padding-right: 15px; + padding-left: 15px; + margin-bottom: 10px; +} + +/* button color */ +.el-button--cyan.is-active, +.el-button--cyan:active { + background: #20B2AA; + border-color: #20B2AA; + color: #FFFFFF; +} + +.el-button--cyan:focus, +.el-button--cyan:hover { + background: #48D1CC; + border-color: #48D1CC; + color: #FFFFFF; +} + +.el-button--cyan { + background-color: #20B2AA; + border-color: #20B2AA; + color: #FFFFFF; +} + +/* text color */ +.text-navy { + color: #1ab394; +} + +.text-primary { + color: inherit; +} + +.text-success { + color: #1c84c6; +} + +.text-info { + color: #23c6c8; +} + +.text-warning { + color: #f8ac59; +} + +.text-danger { + color: #ed5565; +} + +.text-muted { + color: #888888; +} + +/* image */ +.img-circle { + border-radius: 50%; +} + +.img-lg { + width: 120px; + height: 120px; +} + +.avatar-upload-preview { + position: relative; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 200px; + height: 200px; + border-radius: 50%; + box-shadow: 0 0 4px #ccc; + overflow: hidden; +} + +/* 拖拽列样式 */ +.sortable-ghost { + opacity: .8; + color: #fff !important; + background: #42b983 !important; +} + +.top-right-btn { + position: relative; + float: right; +} diff --git a/frontend/src/pages/Home/styles/sidebar.scss b/frontend/src/pages/Home/styles/sidebar.scss new file mode 100644 index 0000000..595f9cd --- /dev/null +++ b/frontend/src/pages/Home/styles/sidebar.scss @@ -0,0 +1,245 @@ +#app { + + .main-container { + min-height: 100%; + transition: margin-left .28s; + margin-left: $base-sidebar-width; + position: relative; + } + + .sidebarHide { + margin-left: 0 !important; + } + + .sidebar-container { + -webkit-transition: width .28s; + transition: width 0.28s; + width: $base-sidebar-width !important; + background-color: $base-menu-background; + height: 100%; + position: fixed; + font-size: 0px; + top: 0; + bottom: 0; + left: 0; + z-index: 1001; + overflow: hidden; + -webkit-box-shadow: 2px 0 6px rgba(0, 21, 41, .35); + box-shadow: 2px 0 6px rgba(0, 21, 41, .35); + + // reset element-ui css + .horizontal-collapse-transition { + transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out; + } + + .scrollbar-wrapper { + overflow-x: hidden !important; + } + + .el-scrollbar__bar.is-vertical { + right: 0px; + } + + .el-scrollbar { + height: 100%; + } + + &.has-logo { + .el-scrollbar { + height: calc(100% - 50px); + } + } + + .is-horizontal { + display: none; + } + + a { + display: inline-block; + width: 100%; + overflow: hidden; + } + + .svg-icon { + margin-right: 16px; + } + + .el-menu { + border: none; + height: 100%; + width: 100% !important; + } + + .el-menu-item, + .el-submenu__title { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; + } + + + .el-menu-item.is-active { + color: #e78361 !important; + background-color: $base-sub-menu-hover !important; // 点击菜单的颜色 + &:hover { + background-color: $base-sub-menu-hover !important; + } + } + + + // menu hover + .submenu-title-noDropdown, + .el-submenu__title { + font-family: '微软雅黑 Light' !important; + font-weight: bolder !important; + font-size: 13px !important; + &:hover { + background-color: #4293e4 !important; + color: #fff !important; + } + } + + // & .theme-dark .is-active>.el-submenu__title { + // color: $base-menu-color-active !important; + // } + + & .nest-menu .el-submenu>.el-submenu__title, + & .el-submenu .el-menu-item { + min-width: $base-sidebar-width !important; + + &:hover { + background-color: rgba(0, 0, 0, 0.06) !important; + } + } + + & .theme-dark .nest-menu .el-submenu>.el-submenu__title, + & .theme-dark .el-submenu .el-menu-item { + background-color: $base-sub-menu-background !important; + font-family: '微软雅黑 Light' !important; + font-weight: bolder !important; + font-size: 12px !important; + + &:hover { + background-color: $base-sub-menu-hover !important; + } + } + } + + .hideSidebar { + .sidebar-container { + width: 54px !important; + } + + .main-container { + margin-left: 54px; + } + + .submenu-title-noDropdown { + padding: 0 !important; + position: relative; + + .el-tooltip { + padding: 0 !important; + + .svg-icon { + margin-left: 20px; + } + } + } + + .el-submenu { + overflow: hidden; + + &>.el-submenu__title { + padding: 0 !important; + + .svg-icon { + margin-left: 20px; + } + + } + } + + .el-menu--collapse { + .el-submenu { + &>.el-submenu__title { + &>span { + height: 0; + width: 0; + overflow: hidden; + visibility: hidden; + display: inline-block; + } + } + } + } + } + + .el-menu--collapse .el-menu .el-submenu { + min-width: $base-sidebar-width !important; + } + + // mobile responsive + .mobile { + .main-container { + margin-left: 0px; + } + + .sidebar-container { + transition: transform .28s; + width: $base-sidebar-width !important; + } + + &.hideSidebar { + .sidebar-container { + pointer-events: none; + transition-duration: 0.3s; + transform: translate3d(-$base-sidebar-width, 0, 0); + } + } + } + + .withoutAnimation { + + .main-container, + .sidebar-container { + transition: none; + } + } +} + +// when menu collapsed +.el-menu--vertical { + &>.el-menu { + .svg-icon { + margin-right: 16px; + } + } + + .nest-menu .el-submenu>.el-submenu__title, + .el-menu-item { + &:hover { + // you can use $subMenuHover + background-color: rgba(0, 0, 0, 0.06) !important; + } + } + + // the scroll bar appears when the subMenu is too long + >.el-menu--popup { + max-height: 100vh; + overflow-y: auto; + + &::-webkit-scrollbar-track-piece { + background: #d3dce6; + } + + &::-webkit-scrollbar { + width: 6px; + } + + &::-webkit-scrollbar-thumb { + background: #99a9bf; + border-radius: 20px; + } + } +} diff --git a/frontend/src/pages/Home/styles/transition.scss b/frontend/src/pages/Home/styles/transition.scss new file mode 100644 index 0000000..073f8c6 --- /dev/null +++ b/frontend/src/pages/Home/styles/transition.scss @@ -0,0 +1,49 @@ +// global transition css + +/* fade */ +.fade-enter-active, +.fade-leave-active { + transition: opacity 0.28s; +} + +.fade-enter, +.fade-leave-active { + opacity: 0; +} + +/* fade-transform */ +.fade-transform--move, +.fade-transform-leave-active, +.fade-transform-enter-active { + transition: all .5s; +} + +.fade-transform-enter { + opacity: 0; + transform: translateX(-30px); +} + +.fade-transform-leave-to { + opacity: 0; + transform: translateX(30px); +} + +/* breadcrumb transition */ +.breadcrumb-enter-active, +.breadcrumb-leave-active { + transition: all .5s; +} + +.breadcrumb-enter, +.breadcrumb-leave-active { + opacity: 0; + transform: translateX(20px); +} + +.breadcrumb-move { + transition: all .5s; +} + +.breadcrumb-leave-active { + position: absolute; +} diff --git a/frontend/src/pages/Home/styles/variables.css b/frontend/src/pages/Home/styles/variables.css new file mode 100644 index 0000000..5f31e7c --- /dev/null +++ b/frontend/src/pages/Home/styles/variables.css @@ -0,0 +1,25 @@ +/** +$base-menu-color:hsla(0,0%,100%,.65); +$base-menu-color-active:#fff; +$base-menu-background:#001529; +$base-logo-title-color: #ffffff; + +$base-menu-light-color:rgba(0,0,0,.70); +$base-menu-light-background:#ffffff; +$base-logo-light-title-color: #001529; + +$base-sub-menu-background:#000c17; +$base-sub-menu-hover:#001528; +*/ +:export { + menuColor: #4DAEFE; + menuLightColor: rgba(0, 0, 0, 0.7); + menuColorActive: #4DAEFE; + menuBackground: #ffffff; + menuLightBackground: #4DAEFE; + subMenuBackground: #d5e3f3; + subMenuHover: #a1cef3; + sideBarWidth: 210px; + logoTitleColor: #4DAEFE; + logoLightTitleColor: #4DAEFE; +} diff --git a/frontend/src/pages/Home/styles/variables.min.css b/frontend/src/pages/Home/styles/variables.min.css new file mode 100644 index 0000000..77c87a0 --- /dev/null +++ b/frontend/src/pages/Home/styles/variables.min.css @@ -0,0 +1 @@ +:export{menuColor:#4DAEFE;menuLightColor:rgba(0,0,0,0.7);menuColorActive:#4DAEFE;menuBackground:#fff;menuLightBackground:#4DAEFE;subMenuBackground:#d5e3f3;subMenuHover:#a1cef3;sideBarWidth:210px;logoTitleColor:#4DAEFE;logoLightTitleColor:#4DAEFE} diff --git a/frontend/src/pages/Home/styles/variables.scss b/frontend/src/pages/Home/styles/variables.scss new file mode 100644 index 0000000..2198a4b --- /dev/null +++ b/frontend/src/pages/Home/styles/variables.scss @@ -0,0 +1,55 @@ +// base color +$blue:#324157; +$light-blue:#3A71A8; +$red:#C03639; +$pink: #E65D6E; +$green: #30B08F; +$tiffany: #4AB7BD; +$yellow:#FEC171; +$panGreen: #30B08F; + + +// 默认菜单主题风格 +$base-menu-color:#4DAEFE; +$base-menu-color-active:#4DAEFE; +$base-menu-background:#ffffff; +$base-logo-title-color: #4DAEFE; + +$base-menu-light-color:rgba(0,0,0,.70); +$base-menu-light-background:#4DAEFE; +$base-logo-light-title-color: #4DAEFE; + +$base-sub-menu-background:#d5e3f3; +$base-sub-menu-hover:#a1cef3; + +// 自定义暗色菜单风格 +/** +$base-menu-color:hsla(0,0%,100%,.65); +$base-menu-color-active:#fff; +$base-menu-background:#001529; +$base-logo-title-color: #ffffff; + +$base-menu-light-color:rgba(0,0,0,.70); +$base-menu-light-background:#ffffff; +$base-logo-light-title-color: #001529; + +$base-sub-menu-background:#000c17; +$base-sub-menu-hover:#001528; +*/ + +$base-sidebar-width: 210px; + +// the :export directive is the magic sauce for webpack +// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass +:export { + menuColor: $base-menu-color; + menuLightColor: $base-menu-light-color; + menuColorActive: $base-menu-color-active; + menuBackground: $base-menu-background; + menuLightBackground: $base-menu-light-background; + subMenuBackground: $base-sub-menu-background; + subMenuHover: $base-sub-menu-hover; + sideBarWidth: $base-sidebar-width; + logoTitleColor: $base-logo-title-color; + logoLightTitleColor: $base-logo-light-title-color +} diff --git a/frontend/src/pages/PolicyLibrary/index.jsx b/frontend/src/pages/PolicyLibrary/index.jsx new file mode 100644 index 0000000..6ce855d --- /dev/null +++ b/frontend/src/pages/PolicyLibrary/index.jsx @@ -0,0 +1,393 @@ +import UploadFile from "../../components/Modals/ManageWorkspace/Documents/UploadFile"; +import PreLoader from "@/components/Preloader"; +import { memo, useEffect, useState } from "react"; +import FolderRow from "../../components/Modals/ManageWorkspace/Documents/Directory/FileRow"; +import System from "@/models/system"; +import { MagnifyingGlass, Plus, Trash } from "@phosphor-icons/react"; +import Document from "@/models/document"; +import showToast from "@/utils/toast"; +import FolderSelectionPopup from "../../components/Modals/ManageWorkspace/Documents/Directory/FolderSelectionPopup"; +import MoveToFolderIcon from "../../components/Modals/ManageWorkspace/Documents/Directory/MoveToFolderIcon"; +import { useModal } from "@/hooks/useModal"; +import NewFolderModal from "../../components/Modals/ManageWorkspace/Documents/Directory/NewFolderModal"; +import debounce from "lodash.debounce"; +import { filterFileSearchResults } from "../../components/Modals/ManageWorkspace/Documents/Directory/utils"; +// import ContextMenu from "../../components/Modals/ManageWorkspace/Documents/Directory/ContextMenu"; +import { Tooltip } from "react-tooltip"; +import { safeJsonParse } from "@/utils/request"; +import { data } from "autoprefixer"; +function Directory({ + files, + setFiles, + loading, + setLoading, + workspace, + fetchKeys, + selectedItems, + setSelectedItems, + setHighlightWorkspace, + moveToWorkspace, + setLoadingMessage, + loadingMessage, +}) { + const [amountSelected, setAmountSelected] = useState(0); + const [showFolderSelection, setShowFolderSelection] = useState(false); + const [searchTerm, setSearchTerm] = useState(""); + const [dataTo, setFDataTo] = useState([]); + const [show, setShow] = useState(false); + const { + isOpen: isFolderModalOpen, + openModal: openFolderModal, + closeModal: closeFolderModal, + } = useModal(); + // const [contextMenu, setContextMenu] = useState({ + // visible: false, + // x: 0, + // y: 0, + // }); + useEffect(() => { + async function fetchUsers() { + const nodata = await System.localFiles(); + const emo = nodata.items[0].items + setFDataTo(emo) + console.log(2222,emo); + } + fetchUsers(); + }, []); + + const deleteFiles = async (event) => { + event.stopPropagation(); + if ( + !window.confirm( + "Are you sure you want to delete these files and folders?\nThis will remove the files from the system and remove them from any existing workspaces automatically.\nThis action is not reversible." + ) + ) { + return false; + } + + try { + const toRemove = []; + const foldersToRemove = []; + + for (const itemId of Object.keys(selectedItems)) { + for (const folder of files.items) { + const foundItem = folder.items.find((file) => file.id === itemId); + if (foundItem) { + toRemove.push(`${folder.name}/${foundItem.name}`); + break; + } + } + } + for (const folder of files.items) { + if (folder.name === "custom-documents") { + continue; + } + + if (isSelected(folder.id, folder)) { + foldersToRemove.push(folder.name); + } + } + + setLoading(true); + setLoadingMessage( + `Removing ${toRemove.length} documents and ${foldersToRemove.length} folders. Please wait.` + ); + await System.deleteDocuments(toRemove); + for (const folderName of foldersToRemove) { + await System.deleteFolder(folderName); + } + + await fetchKeys(true); + setSelectedItems({}); + } catch (error) { + console.error("Failed to delete files and folders:", error); + } finally { + setLoading(false); + setSelectedItems({}); + } + }; + + const toggleSelection = (item) => { + setSelectedItems((prevSelectedItems) => { + const newSelectedItems = { ...prevSelectedItems }; + if (item.type === "folder") { + // select all files in the folder + if (newSelectedItems[item.name]) { + delete newSelectedItems[item.name]; + item.items.forEach((file) => delete newSelectedItems[file.id]); + } else { + newSelectedItems[item.name] = true; + item.items.forEach((file) => (newSelectedItems[file.id] = true)); + } + } else { + // single file selections + if (newSelectedItems[item.id]) { + delete newSelectedItems[item.id]; + } else { + newSelectedItems[item.id] = true; + } + } + + return newSelectedItems; + }); + }; + + // check if item is selected based on selectedItems state + const isSelected = (id, item) => { + if (item && item.type === "folder") { + if (!selectedItems[item.name]) { + return false; + } + return item.items.every((file) => selectedItems[file.id]); + } + + return !!selectedItems[id]; + }; + + + const moveToFolder = async (folder) => { + const toMove = []; + for (const itemId of Object.keys(selectedItems)) { + for (const currentFolder of files.items) { + const foundItem = currentFolder.items.find( + (file) => file.id === itemId + ); + if (foundItem) { + toMove.push({ ...foundItem, folderName: currentFolder.name }); + break; + } + } + } + setLoading(true); + setLoadingMessage(`Moving ${toMove.length} documents. Please wait.`); + const { success, message } = await Document.moveToFolder( + toMove, + folder.name + ); + if (!success) { + showToast(`Error moving files: ${message}`, "error"); + setLoading(false); + return; + } + + if (success && message) { + // show info if some files were not moved due to being embedded + showToast(message, "info"); + } else { + showToast(`Successfully moved ${toMove.length} documents.`, "success"); + } + await fetchKeys(true); + setSelectedItems({}); + setLoading(false); + }; + + const handleSearch = debounce((e) => { + const searchValue = e.target.value; + setSearchTerm(searchValue); + }, 500); + + const filteredFiles =filterFileSearchResults(files, searchTerm) + // console.log(114545,filteredFiles); + + const handleContextMenu = (event) => { + event.preventDefault(); + // setContextMenu({ visible: true, x: event.clientX, y: event.clientY }); + }; + + const closeContextMenu = () => { + // setContextMenu({ visible: false, x: 0, y: 0 }); + }; + + // 点击显示隐藏 + const bindUrl = () =>{ + setShow(!show) + console.log(show); + } + + // 返回首页 + const bindHome = () =>{ + window.location = '/' + } + + return ( + <> +
+
+
+

首页

+
+ + +
+ +
+ +
+
+

Name

+
+ +
+ {loading ? ( +
+ +

+ {loadingMessage} +

+
+ ) : dataTo.length > 0 ? ( + dataTo.map((item, index) => ( +
+
{item.title}
+
+ )) + ) : ( +
+

+ No Documents +

+
+ )} +
+ {show == true && ( +
+
+
+ + + +
+ + {showFolderSelection && ( + item.type === "folder" + )} + onSelect={moveToFolder} + onClose={() => setShowFolderSelection(false)} + /> + )} +
+ +
+
+
+ )} +
+ + +
+ {isFolderModalOpen && ( +
+ +
+ )} + {/* */} +
+ + + ); +} + +/** + * Tooltips for the directory components. Renders when the directory is shown + * or updated so that tooltips are attached as the items are changed. + */ +function DirectoryTooltips() { + return ( + { + const data = safeJsonParse(content, null); + if (!data) return null; + return ( +
+

{data.title}

+
+

+ Date: {data.date} +

+

+ Type: {data.extension} +

+
+
+ ); + }} + /> + ); +} + +export default memo(Directory); diff --git a/frontend/src/pages/Tendency/index.jsx b/frontend/src/pages/Tendency/index.jsx new file mode 100644 index 0000000..ed13570 --- /dev/null +++ b/frontend/src/pages/Tendency/index.jsx @@ -0,0 +1,29 @@ +import React, { useEffect, useRef } from 'react'; + +function IframeComponent() { + const iframeRef = useRef(null); + + useEffect(() => { + if (iframeRef.current) { + iframeRef.current.contentWindow.addEventListener('message', (event) => { + console.log(11111, event.data); + }); + } + + return () => { + if (iframeRef.current) { + iframeRef.current.contentWindow.removeEventListener('message', (event) => { + console.log('Received message:', event.data); + }); + } + }; + }, []); // 空依赖数组确保只运行一次清理操作 + + return ( +
+