Commit cc9218a6 by 无尘

feat: 新增好办4.0 运营后台前端项目

parent 81738ae5
> 1%
last 2 versions
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
# http://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
!/src
/src/images
/dist/
/*.js
src/assets
public
static
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: "babel-eslint"
},
env: {
browser: true
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
// "standard",
"plugin:vue/essential",
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
// "plugin:prettier/recommended"
],
// required to lint *.vue files
plugins: ["vue"],
// add your custom rules here
rules: {
// "prettier/prettier": "error",
// allow async-await
"generator-star-spacing": "off",
// "no-console": process.env.NODE_ENV === "production" ? 2 : 0,
"no-alert": process.env.NODE_ENV === "production" ? 2 : 0, //禁止使用alert confirm prompt
"no-debugger": process.env.NODE_ENV === "production" ? 2 : 0,
// --------------------静态检测-----------------------------
/**
* 静态检测:
* 以下基本位能够帮助发现代码错误的规则
* */
// 禁止与负零进行比较
"no-compare-neg-zero": 2,
// 禁止将常量作为 if 或三元表达式的测试条件,比如 if (true), let foo = 0 ? 'foo' : 'bar'
"no-constant-condition": [
2,
{
checkLoops: false
}
],
// 禁止在函数参数中出现重复名称的参数 【辅助检测】
"no-dupe-args": 2,
// 禁止在对象字面量中出现重复名称的键名 【辅助检测】
"no-dupe-keys": 2,
// 禁止出现空代码块 【可读性差】
"no-empty": [
2,
{
"allowEmptyCatch": true
}
],
// 禁止将 catch 的第一个参数 error 重新赋值 【重新赋值,error将没有意义】
"no-ex-assign": 2,
// @fixable 禁止函数表达式中出现多余的括号,比如 let foo = (function () { return 1 }) 【一般不会这么写,可读性差】
"no-extra-parens": [2, "functions"],
// 禁止将一个函数申明重新赋值,如:
// function foo() {}
// foo = bar [静态检测:无意义]
"no-func-assign": 2,
// 禁止在 if 内出现函数申明或使用 var 定义变量
"no-inner-declarations": [2, "both"],
// 禁止使用特殊空白符(比如全角空格),除非是出现在字符串、正则表达式或模版字符串中
"no-irregular-whitespace": [
2,
{
skipStrings: true,
skipComments: false,
skipRegExps: true,
skipTemplates: true
}
],
// typeof 表达式比较的对象必须是 'undefined', 'object', 'boolean', 'number', 'string', 'function' 或 'symbol'
"valid-typeof": 2,
// -----------------------------------最佳实践----------------------------------------------
/**
* 最佳实践
* 这些规则通过一些最佳实践帮助你避免问题
*/
// 禁止函数的循环复杂度超过 20,【https://en.wikipedia.org/wiki/Cyclomatic_complexity】
complexity: [
2,
{
max: 200
}
],
// 不允许有空函数,除非是将一个空函数设置为某个项的默认值 【否则空函数并没有实际意义】
"no-empty-function": [
2,
{
allow: ["functions", "arrowFunctions"]
}
],
// 禁止修改原生对象 【例如 Array.protype.xxx=funcion(){},很容易出问题,比如for in 循环数组 会出问题】
"no-extend-native": 2,
// @fixable 表示小数时,禁止省略 0,比如 .5 【可读性】
"no-floating-decimal": 2,
// 禁止直接 new 一个类而不赋值 【 那么除了占用内存还有什么意义呢? @off vue语法糖大量存在此类语义 先手动关闭】
"no-new": 0,
// 禁止使用 new Function,比如 let x = new Function("a", "b", "return a + b"); 【可读性差】
"no-new-func": 2,
// 禁止将自己赋值给自己 [规则帮助检测]
"no-self-assign": 2,
// 禁止将自己与自己比较 [规则帮助检测]
"no-self-compare": 2,
// @fixable 立即执行的函数必须符合如下格式 (function () { alert('Hello') })() 【立即函数写法很多,这个是最易读最标准的】
"wrap-iife": [
2,
"inside",
{
functionPrototypeMethods: true
}
],
// 禁止使用保留字作为变量名 [规则帮助检测保留字,通常ide难以发现,生产会出现问题]
"no-shadow-restricted-names": 2,
// 禁止使用未定义的变量
"no-undef": [
2,
{
typeof: false
}
],
// 定义过的变量必须使用 【正规应该是这样的,具体可以大家讨论】
"no-unused-vars": [
2,
{
vars: "all",
args: "none",
caughtErrors: "none",
ignoreRestSiblings: true
}
],
// 变量必须先定义后使用 【ps:涉及到es6存在不允许变量提升的问题,以免引起意想不到的错误,具体可以大家讨论】
"no-use-before-define": [
2,
{
functions: false,
classes: false,
variables: false
}
],
// ----------------------------------------------------代码规范----------------------------------------------------------
/**
* 代码规范
* 有关【空格】、【链式换行】、【缩进】、【=、{}、()、首位空格】规范没有添加,怕大家一时间接受不了,目前所挑选的规则都是:保障我们的代码可读性、可维护性的
* */
// 变量名必须是 camelcase 驼峰风格的
// @off 【涉及到 很多 api 或文件名可能都不是 camelcase 先关闭】
camelcase: 0,
// @fixable 禁止在行首写逗号
"comma-style": [2, "last"],
// @fixable 一个缩进必须用两个空格替代
// @off 【不限制大家,为了关闭eslint默认值,所以手动关闭,off不可去掉】 讨论
indent: [2, 2,{ "SwitchCase": 1 }],
//@off 手动关闭//前面需要回车的规则 注释
"spaced-comment": 0,
//@off 手动关闭: 禁用行尾空白
"no-trailing-spaces": 2,
//@off 手动关闭: 不允许多行回车
"no-multiple-empty-lines": 1,
//@off 手动关闭: 逗号前必须加空格
"comma-spacing": 0,
//@off 手动关闭: 冒号后必须加空格
"key-spacing": 1,
// @fixable 结尾禁止使用分号
//@off [vue官方推荐无分号,不知道大家是否可以接受?先手动off掉] 讨论
// "semi": [2,"never"],
semi: 0,
// 代码块嵌套的深度禁止超过 5 层
"max-depth": [1, 20],
// 回调函数嵌套禁止超过 4 层,多了请用 async await 替代
"max-nested-callbacks": [2, 8],
// 函数的参数禁止超过 7 个
"max-params": [2, 7],
// new 后面的类名必须首字母大写 【面向对象编程原则】
"new-cap": [
2,
{
newIsCap: true,
capIsNew: false,
properties: true
}
],
// @fixable new 后面的类必须有小括号 【没有小括号、指针指过去没有意义】
"new-parens": 2,
// @fixable 禁止属性前有空格,比如 foo. bar() 【可读性太差,一般也没人这么写】
"no-whitespace-before-property": 2,
// @fixable 禁止 if 后面不加大括号而写两行代码 eg: if(a>b) a=0 b=0
"nonblock-statement-body-position": [
2,
"beside",
{ overrides: { while: "below" } }
],
// 禁止变量申明时用逗号一次申明多个 eg: let a,b,c,d,e,f,g = [] 【debug并不好审查、并且没办法单独写注释】
"one-var": [2, "never"],
// @fixable 【变量申明必须每行一个,同上】
"one-var-declaration-per-line": [2, "always"],
//是否使用全等
eqeqeq: 0,
//this别名
"consistent-this": [2, "that"],
// -----------------------------ECMAScript 6-------------------------------------
/**
* ECMAScript 6
* 这些规则与 ES6 有关 【请大家 尝试使用正确使用const和let代替var,以后大家熟悉之后可能会提升规则】
* */
// 禁止对定义过的 class 重新赋值
"no-class-assign": 2,
// @fixable 禁止出现难以理解的箭头函数,比如 let x = a => 1 ? 2 : 3
"no-confusing-arrow": [2, { allowParens: true }],
// 禁止对使用 const 定义的常量重新赋值
"no-const-assign": 2,
// 禁止重复定义类
"no-dupe-class-members": 2,
// 禁止重复 import 模块
"no-duplicate-imports": 2,
//@off 以后可能会开启 禁止 var
"no-var": 0,
// ---------------------------------被关闭的规则-----------------------
// parseInt必须指定第二个参数 parseInt("071",10);
radix: 0,
//强制使用一致的反勾号、双引号或单引号 (quotes) 关闭
quotes: [1, "single"],
//要求或禁止函数圆括号之前有一个空格
"space-before-function-paren": [0, "always"],
//禁止或强制圆括号内的空格
"space-in-parens": [0, "never"],
//关键字后面是否要空一格
"space-after-keywords": [0, "always"],
// 要求或禁止在函数标识符和其调用之间有空格
"func-call-spacing": [0, "never"]
}
};
.DS_Store
node_modules
dm-layout
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
yarn.lock
index-1.js
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2020-07-16 16:36:48
* @LastEditors: 无尘
* @LastEditTime: 2020-07-21 09:51:15
-->
# 好办 4.0 运营后台前端项目
> 由于 `node-sass` 经常出现下载问题,项目中尽量统一使用 less
## Build Setup
```bash
# clone the project
git clone
# enter the project directory
cd haoban-4
# install dependency
npm install
# develop
npm run dev
```
This will automatically open http://localhost:8088
## Build
```bash
# build for production environment
npm run build
```
## Browsers support
Modern browsers and Internet Explorer 10+.
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="IE / Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>IE / Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Safari |
| --------- | --------- | --------- | --------- |
| IE10, IE11, Edge| last 2 versions| last 2 versions| last 2 versions
## License
[MIT]() license.
Copyright (c) 2020-present
\ No newline at end of file
module.exports = {
presets: [
'@vue/app'
]
}
{
"name": "haoban-operation-4",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"dev": "npm run serve",
"start": "npm run serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"awesome-phonenumber": "^2.35.0",
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"clipboard": "^2.0.4",
"core-js": "^2.6.5",
"element-ui": "^2.13.2",
"vue": "^2.6.10",
"vue-router": "^3.0.3",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^8.1.5",
"node-sass": "^4.9.0",
"qs": "^6.7.0",
"sass-loader": "^7.1.0",
"style-resources-loader": "^1.3.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}
module.exports = {
plugins: {
autoprefixer: {}
}
}
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2020-07-16 16:37:05
* @LastEditors: 无尘
* @LastEditTime: 2020-07-16 18:12:33
-->
<!DOCTYPE html>
<html lang="cn">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<link rel="stylesheet" type="text/css" href="//web-1251519181.file.myqcloud.com/custom-element/custom-element.1.0.39.css" />
<link rel="stylesheet" type="text/css" href="<%= BASE_URL %>static/fonts/iconfont.css">
<title>好办</title>
</head>
<body class="damolish">
<noscript>
<strong>We're sorry but damolish doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
<script src="//web-1251519181.file.myqcloud.com/lib-4.0/vue/2.6.10/vue.min.js"></script>
<script src="//web-1251519181.file.myqcloud.com/lib-4.0/vuex/3.0.1/vuex.js"></script>
<script src="//web-1251519181.file.myqcloud.com/lib-4.0/axios/0.19.0/axios.min.js"></script>
<script src="//web-1251519181.file.myqcloud.com/components/layout.1.2.41.js"></script>
</body>
</html>
/* Logo 字体 */
@font-face {
font-family: "iconfont logo";
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
}
.logo {
font-family: "iconfont logo";
font-size: 160px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* tabs */
.nav-tabs {
position: relative;
}
.nav-tabs .nav-more {
position: absolute;
right: 0;
bottom: 0;
height: 42px;
line-height: 42px;
color: #666;
}
#tabs {
border-bottom: 1px solid #eee;
}
#tabs li {
cursor: pointer;
width: 100px;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 16px;
border-bottom: 2px solid transparent;
position: relative;
z-index: 1;
margin-bottom: -1px;
color: #666;
}
#tabs .active {
border-bottom-color: #f00;
color: #222;
}
.tab-container .content {
display: none;
}
/* 页面布局 */
.main {
padding: 30px 100px;
width: 960px;
margin: 0 auto;
}
.main .logo {
color: #333;
text-align: left;
margin-bottom: 30px;
line-height: 1;
height: 110px;
margin-top: -50px;
overflow: hidden;
*zoom: 1;
}
.main .logo a {
font-size: 160px;
color: #333;
}
.helps {
margin-top: 40px;
}
.helps pre {
padding: 20px;
margin: 10px 0;
border: solid 1px #e7e1cd;
background-color: #fffdef;
overflow: auto;
}
.icon_lists {
width: 100% !important;
overflow: hidden;
*zoom: 1;
}
.icon_lists li {
width: 100px;
margin-bottom: 10px;
margin-right: 20px;
text-align: center;
list-style: none !important;
cursor: default;
}
.icon_lists li .code-name {
line-height: 1.2;
}
.icon_lists .icon {
display: block;
height: 100px;
line-height: 100px;
font-size: 42px;
margin: 10px auto;
color: #333;
-webkit-transition: font-size 0.25s linear, width 0.25s linear;
-moz-transition: font-size 0.25s linear, width 0.25s linear;
transition: font-size 0.25s linear, width 0.25s linear;
}
.icon_lists .icon:hover {
font-size: 100px;
}
.icon_lists .svg-icon {
/* 通过设置 font-size 来改变图标大小 */
width: 1em;
/* 图标和文字相邻时,垂直对齐 */
vertical-align: -0.15em;
/* 通过设置 color 来改变 SVG 的颜色/fill */
fill: currentColor;
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
normalize.css 中也包含这行 */
overflow: hidden;
}
.icon_lists li .name,
.icon_lists li .code-name {
color: #666;
}
/* markdown 样式 */
.markdown {
color: #666;
font-size: 14px;
line-height: 1.8;
}
.highlight {
line-height: 1.5;
}
.markdown img {
vertical-align: middle;
max-width: 100%;
}
.markdown h1 {
color: #404040;
font-weight: 500;
line-height: 40px;
margin-bottom: 24px;
}
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
color: #404040;
margin: 1.6em 0 0.6em 0;
font-weight: 500;
clear: both;
}
.markdown h1 {
font-size: 28px;
}
.markdown h2 {
font-size: 22px;
}
.markdown h3 {
font-size: 16px;
}
.markdown h4 {
font-size: 14px;
}
.markdown h5 {
font-size: 12px;
}
.markdown h6 {
font-size: 12px;
}
.markdown hr {
height: 1px;
border: 0;
background: #e9e9e9;
margin: 16px 0;
clear: both;
}
.markdown p {
margin: 1em 0;
}
.markdown>p,
.markdown>blockquote,
.markdown>.highlight,
.markdown>ol,
.markdown>ul {
width: 80%;
}
.markdown ul>li {
list-style: circle;
}
.markdown>ul li,
.markdown blockquote ul>li {
margin-left: 20px;
padding-left: 4px;
}
.markdown>ul li p,
.markdown>ol li p {
margin: 0.6em 0;
}
.markdown ol>li {
list-style: decimal;
}
.markdown>ol li,
.markdown blockquote ol>li {
margin-left: 20px;
padding-left: 4px;
}
.markdown code {
margin: 0 3px;
padding: 0 5px;
background: #eee;
border-radius: 3px;
}
.markdown strong,
.markdown b {
font-weight: 600;
}
.markdown>table {
border-collapse: collapse;
border-spacing: 0px;
empty-cells: show;
border: 1px solid #e9e9e9;
width: 95%;
margin-bottom: 24px;
}
.markdown>table th {
white-space: nowrap;
color: #333;
font-weight: 600;
}
.markdown>table th,
.markdown>table td {
border: 1px solid #e9e9e9;
padding: 8px 16px;
text-align: left;
}
.markdown>table th {
background: #F7F7F7;
}
.markdown blockquote {
font-size: 90%;
color: #999;
border-left: 4px solid #e9e9e9;
padding-left: 0.8em;
margin: 1em 0;
}
.markdown blockquote p {
margin: 0;
}
.markdown .anchor {
opacity: 0;
transition: opacity 0.3s ease;
margin-left: 8px;
}
.markdown .waiting {
color: #ccc;
}
.markdown h1:hover .anchor,
.markdown h2:hover .anchor,
.markdown h3:hover .anchor,
.markdown h4:hover .anchor,
.markdown h5:hover .anchor,
.markdown h6:hover .anchor {
opacity: 1;
display: inline-block;
}
.markdown>br,
.markdown>p>br {
clear: both;
}
.hljs {
display: block;
background: white;
padding: 0.5em;
color: #333333;
overflow-x: auto;
}
.hljs-comment,
.hljs-meta {
color: #969896;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-strong,
.hljs-emphasis,
.hljs-quote {
color: #df5000;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
color: #a71d5d;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute {
color: #0086b3;
}
.hljs-section,
.hljs-name {
color: #63a35c;
}
.hljs-tag {
color: #333333;
}
.hljs-title,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #795da3;
}
.hljs-addition {
color: #55a532;
background-color: #eaffea;
}
.hljs-deletion {
color: #bd2c00;
background-color: #ffecec;
}
.hljs-link {
text-decoration: underline;
}
/* 代码高亮 */
/* PrismJS 1.15.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre)>code[class*="language-"],
pre[class*="language-"] {
background: #f5f2f0;
}
/* Inline code */
:not(pre)>code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function,
.token.class-name {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>IconFont Demo</title>
<link rel="shortcut icon" href="https://img.alicdn.com/tps/i4/TB1_oz6GVXXXXaFXpXXJDFnIXXX-64-64.ico" type="image/x-icon"/>
<link rel="stylesheet" href="https://g.alicdn.com/thx/cube/1.3.2/cube.min.css">
<link rel="stylesheet" href="demo.css">
<link rel="stylesheet" href="iconfont.css">
<script src="iconfont.js"></script>
<!-- jQuery -->
<script src="https://a1.alicdn.com/oss/uploads/2018/12/26/7bfddb60-08e8-11e9-9b04-53e73bb6408b.js"></script>
<!-- 代码高亮 -->
<script src="https://a1.alicdn.com/oss/uploads/2018/12/26/a3f714d0-08e6-11e9-8a15-ebf944d7534c.js"></script>
</head>
<body>
<div class="main">
<h1 class="logo"><a href="https://www.iconfont.cn/" title="iconfont 首页" target="_blank">&#xe86b;</a></h1>
<div class="nav-tabs">
<ul id="tabs" class="dib-box">
<li class="dib active"><span>Unicode</span></li>
<li class="dib"><span>Font class</span></li>
<li class="dib"><span>Symbol</span></li>
</ul>
<a href="https://www.iconfont.cn/manage/index?manage_type=myprojects&projectId=1434755" target="_blank" class="nav-more">查看项目</a>
</div>
<div class="tab-container">
<div class="content unicode" style="display: block;">
<ul class="icon_lists dib-box">
<li class="dib">
<span class="icon iconfont">&#xe62f;</span>
<div class="name">二维码</div>
<div class="code-name">&amp;#xe62f;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe724;</span>
<div class="name">免费福利的副本-01</div>
<div class="code-name">&amp;#xe724;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe659;</span>
<div class="name">通知公告</div>
<div class="code-name">&amp;#xe659;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe6af;</span>
<div class="name">已删除</div>
<div class="code-name">&amp;#xe6af;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe6ba;</span>
<div class="name">卡券展架</div>
<div class="code-name">&amp;#xe6ba;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xea42;</span>
<div class="name">成就奖章</div>
<div class="code-name">&amp;#xea42;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xea41;</span>
<div class="name">会员任务</div>
<div class="code-name">&amp;#xea41;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe607;</span>
<div class="name">小程序</div>
<div class="code-name">&amp;#xe607;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe9c4;</span>
<div class="name">同步记录</div>
<div class="code-name">&amp;#xe9c4;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe9c3;</span>
<div class="name">卡券投放</div>
<div class="code-name">&amp;#xe9c3;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe654;</span>
<div class="name">列表</div>
<div class="code-name">&amp;#xe654;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe606;</span>
<div class="name">卡片</div>
<div class="code-name">&amp;#xe606;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe887;</span>
<div class="name">排序</div>
<div class="code-name">&amp;#xe887;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe962;</span>
<div class="name">刷新</div>
<div class="code-name">&amp;#xe962;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe667;</span>
<div class="name">上传</div>
<div class="code-name">&amp;#xe667;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe793;</span>
<div class="name">zhankai-2</div>
<div class="code-name">&amp;#xe793;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe794;</span>
<div class="name">zhongzhi</div>
<div class="code-name">&amp;#xe794;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe625;</span>
<div class="name">背景音乐音乐</div>
<div class="code-name">&amp;#xe625;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe954;</span>
<div class="name">暂停</div>
<div class="code-name">&amp;#xe954;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe953;</span>
<div class="name">试听</div>
<div class="code-name">&amp;#xe953;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe952;</span>
<div class="name">游戏列表</div>
<div class="code-name">&amp;#xe952;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe951;</span>
<div class="name">录音播放</div>
<div class="code-name">&amp;#xe951;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe69d;</span>
<div class="name">上移</div>
<div class="code-name">&amp;#xe69d;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe69e;</span>
<div class="name">下移</div>
<div class="code-name">&amp;#xe69e;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe950;</span>
<div class="name">添加</div>
<div class="code-name">&amp;#xe950;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe733;</span>
<div class="name">更多</div>
<div class="code-name">&amp;#xe733;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe86e;</span>
<div class="name">选择</div>
<div class="code-name">&amp;#xe86e;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe94e;</span>
<div class="name">微信营销</div>
<div class="code-name">&amp;#xe94e;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe94d;</span>
<div class="name">素材库</div>
<div class="code-name">&amp;#xe94d;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe94a;</span>
<div class="name">短信模板库</div>
<div class="code-name">&amp;#xe94a;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe949;</span>
<div class="name">短息群发</div>
<div class="code-name">&amp;#xe949;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe948;</span>
<div class="name">话术模板</div>
<div class="code-name">&amp;#xe948;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe947;</span>
<div class="name">通话模板</div>
<div class="code-name">&amp;#xe947;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe946;</span>
<div class="name">话务群发</div>
<div class="code-name">&amp;#xe946;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe91e;</span>
<div class="name">详情</div>
<div class="code-name">&amp;#xe91e;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe6e8;</span>
<div class="name">下载</div>
<div class="code-name">&amp;#xe6e8;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe91d;</span>
<div class="name">选中</div>
<div class="code-name">&amp;#xe91d;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe91c;</span>
<div class="name">设置</div>
<div class="code-name">&amp;#xe91c;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe6b3;</span>
<div class="name">应用配置</div>
<div class="code-name">&amp;#xe6b3;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe908;</span>
<div class="name">卡券库</div>
<div class="code-name">&amp;#xe908;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe909;</span>
<div class="name">卡券日志</div>
<div class="code-name">&amp;#xe909;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe90a;</span>
<div class="name">审核记录</div>
<div class="code-name">&amp;#xe90a;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe64c;</span>
<div class="name">不支持</div>
<div class="code-name">&amp;#xe64c;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe605;</span>
<div class="name">统计报表</div>
<div class="code-name">&amp;#xe605;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe90b;</span>
<div class="name">复制</div>
<div class="code-name">&amp;#xe90b;</div>
</li>
</ul>
<div class="article markdown">
<h2 id="unicode-">Unicode 引用</h2>
<hr>
<p>Unicode 是字体在网页端最原始的应用方式,特点是:</p>
<ul>
<li>兼容性最好,支持 IE6+,及所有现代浏览器。</li>
<li>支持按字体的方式去动态调整图标大小,颜色等等。</li>
<li>但是因为是字体,所以不支持多色。只能使用平台里单色的图标,就算项目里有多色图标也会自动去色。</li>
</ul>
<blockquote>
<p>注意:新版 iconfont 支持多色图标,这些多色图标在 Unicode 模式下将不能使用,如果有需求建议使用symbol 的引用方式</p>
</blockquote>
<p>Unicode 使用步骤如下:</p>
<h3 id="-font-face">第一步:拷贝项目下面生成的 <code>@font-face</code></h3>
<pre><code class="language-css"
>@font-face {
font-family: 'iconfont';
src: url('iconfont.eot');
src: url('iconfont.eot?#iefix') format('embedded-opentype'),
url('iconfont.woff2') format('woff2'),
url('iconfont.woff') format('woff'),
url('iconfont.ttf') format('truetype'),
url('iconfont.svg#iconfont') format('svg');
}
</code></pre>
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
<pre><code class="language-css"
>.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</code></pre>
<h3 id="-">第三步:挑选相应图标并获取字体编码,应用于页面</h3>
<pre>
<code class="language-html"
>&lt;span class="iconfont"&gt;&amp;#x33;&lt;/span&gt;
</code></pre>
<blockquote>
<p>"iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
</blockquote>
</div>
</div>
<div class="content font-class">
<ul class="icon_lists dib-box">
<li class="dib">
<span class="icon iconfont icon-erweima"></span>
<div class="name">
二维码
</div>
<div class="code-name">.icon-erweima
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-mianfeifulidefuben-"></span>
<div class="name">
免费福利的副本-01
</div>
<div class="code-name">.icon-mianfeifulidefuben-
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-tongzhigonggao"></span>
<div class="name">
通知公告
</div>
<div class="code-name">.icon-tongzhigonggao
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-yishanchu"></span>
<div class="name">
已删除
</div>
<div class="code-name">.icon-yishanchu
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-qiaquan-"></span>
<div class="name">
卡券展架
</div>
<div class="code-name">.icon-qiaquan-
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-chengjiujiangzhang"></span>
<div class="name">
成就奖章
</div>
<div class="code-name">.icon-chengjiujiangzhang
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-huiyuanrenwu"></span>
<div class="name">
会员任务
</div>
<div class="code-name">.icon-huiyuanrenwu
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-xiaochengxu"></span>
<div class="name">
小程序
</div>
<div class="code-name">.icon-xiaochengxu
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-tongbujilu"></span>
<div class="name">
同步记录
</div>
<div class="code-name">.icon-tongbujilu
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-kaquantoufang"></span>
<div class="name">
卡券投放
</div>
<div class="code-name">.icon-kaquantoufang
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-liebiao"></span>
<div class="name">
列表
</div>
<div class="code-name">.icon-liebiao
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-kapian"></span>
<div class="name">
卡片
</div>
<div class="code-name">.icon-kapian
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-paixu"></span>
<div class="name">
排序
</div>
<div class="code-name">.icon-paixu
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-shuaxin"></span>
<div class="name">
刷新
</div>
<div class="code-name">.icon-shuaxin
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-shangchuan"></span>
<div class="name">
上传
</div>
<div class="code-name">.icon-shangchuan
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-zhankai-"></span>
<div class="name">
zhankai-2
</div>
<div class="code-name">.icon-zhankai-
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-zhongzhi"></span>
<div class="name">
zhongzhi
</div>
<div class="code-name">.icon-zhongzhi
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-beijingyinleyinle"></span>
<div class="name">
背景音乐音乐
</div>
<div class="code-name">.icon-beijingyinleyinle
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-shitinghui1"></span>
<div class="name">
暂停
</div>
<div class="code-name">.icon-shitinghui1
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-shitinghui"></span>
<div class="name">
试听
</div>
<div class="code-name">.icon-shitinghui
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-gerenzhongxin_wodeyouxi-xuanzhong"></span>
<div class="name">
游戏列表
</div>
<div class="code-name">.icon-gerenzhongxin_wodeyouxi-xuanzhong
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-luyinbofang"></span>
<div class="name">
录音播放
</div>
<div class="code-name">.icon-luyinbofang
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-shangyi"></span>
<div class="name">
上移
</div>
<div class="code-name">.icon-shangyi
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-xiayi"></span>
<div class="name">
下移
</div>
<div class="code-name">.icon-xiayi
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-tianjia"></span>
<div class="name">
添加
</div>
<div class="code-name">.icon-tianjia
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-gengduo"></span>
<div class="name">
更多
</div>
<div class="code-name">.icon-gengduo
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-xuanze"></span>
<div class="name">
选择
</div>
<div class="code-name">.icon-xuanze
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-duanxinmobanku"></span>
<div class="name">
微信营销
</div>
<div class="code-name">.icon-duanxinmobanku
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-sucaiku"></span>
<div class="name">
素材库
</div>
<div class="code-name">.icon-sucaiku
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-moban"></span>
<div class="name">
短信模板库
</div>
<div class="code-name">.icon-moban
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-duanxiqunfa"></span>
<div class="name">
短息群发
</div>
<div class="code-name">.icon-duanxiqunfa
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-zidingyi"></span>
<div class="name">
话术模板
</div>
<div class="code-name">.icon-zidingyi
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-tonghuashezhi"></span>
<div class="name">
通话模板
</div>
<div class="code-name">.icon-tonghuashezhi
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-piliangqunfa"></span>
<div class="name">
话务群发
</div>
<div class="code-name">.icon-piliangqunfa
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-dianjianxiangqing"></span>
<div class="name">
详情
</div>
<div class="code-name">.icon-dianjianxiangqing
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-icon_yunxiazai"></span>
<div class="name">
下载
</div>
<div class="code-name">.icon-icon_yunxiazai
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-xuanzhong"></span>
<div class="name">
选中
</div>
<div class="code-name">.icon-xuanzhong
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-shezhi"></span>
<div class="name">
设置
</div>
<div class="code-name">.icon-shezhi
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-yingyongpeizhi"></span>
<div class="name">
应用配置
</div>
<div class="code-name">.icon-yingyongpeizhi
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-kaquan"></span>
<div class="name">
卡券库
</div>
<div class="code-name">.icon-kaquan
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-caozuorizhi"></span>
<div class="name">
卡券日志
</div>
<div class="code-name">.icon-caozuorizhi
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-shenhejilu"></span>
<div class="name">
审核记录
</div>
<div class="code-name">.icon-shenhejilu
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-buzhichi"></span>
<div class="name">
不支持
</div>
<div class="code-name">.icon-buzhichi
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-tongjibaobiao"></span>
<div class="name">
统计报表
</div>
<div class="code-name">.icon-tongjibaobiao
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-baobeifuzhi"></span>
<div class="name">
复制
</div>
<div class="code-name">.icon-baobeifuzhi
</div>
</li>
</ul>
<div class="article markdown">
<h2 id="font-class-">font-class 引用</h2>
<hr>
<p>font-class 是 Unicode 使用方式的一种变种,主要是解决 Unicode 书写不直观,语意不明确的问题。</p>
<p>与 Unicode 使用方式相比,具有如下特点:</p>
<ul>
<li>兼容性良好,支持 IE8+,及所有现代浏览器。</li>
<li>相比于 Unicode 语意明确,书写更直观。可以很容易分辨这个 icon 是什么。</li>
<li>因为使用 class 来定义图标,所以当要替换图标时,只需要修改 class 里面的 Unicode 引用。</li>
<li>不过因为本质上还是使用的字体,所以多色图标还是不支持的。</li>
</ul>
<p>使用步骤如下:</p>
<h3 id="-fontclass-">第一步:引入项目下面生成的 fontclass 代码:</h3>
<pre><code class="language-html">&lt;link rel="stylesheet" href="./iconfont.css"&gt;
</code></pre>
<h3 id="-">第二步:挑选相应图标并获取类名,应用于页面:</h3>
<pre><code class="language-html">&lt;span class="iconfont icon-xxx"&gt;&lt;/span&gt;
</code></pre>
<blockquote>
<p>"
iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
</blockquote>
</div>
</div>
<div class="content symbol">
<ul class="icon_lists dib-box">
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-erweima"></use>
</svg>
<div class="name">二维码</div>
<div class="code-name">#icon-erweima</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-mianfeifulidefuben-"></use>
</svg>
<div class="name">免费福利的副本-01</div>
<div class="code-name">#icon-mianfeifulidefuben-</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-tongzhigonggao"></use>
</svg>
<div class="name">通知公告</div>
<div class="code-name">#icon-tongzhigonggao</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-yishanchu"></use>
</svg>
<div class="name">已删除</div>
<div class="code-name">#icon-yishanchu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-qiaquan-"></use>
</svg>
<div class="name">卡券展架</div>
<div class="code-name">#icon-qiaquan-</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-chengjiujiangzhang"></use>
</svg>
<div class="name">成就奖章</div>
<div class="code-name">#icon-chengjiujiangzhang</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-huiyuanrenwu"></use>
</svg>
<div class="name">会员任务</div>
<div class="code-name">#icon-huiyuanrenwu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-xiaochengxu"></use>
</svg>
<div class="name">小程序</div>
<div class="code-name">#icon-xiaochengxu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-tongbujilu"></use>
</svg>
<div class="name">同步记录</div>
<div class="code-name">#icon-tongbujilu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-kaquantoufang"></use>
</svg>
<div class="name">卡券投放</div>
<div class="code-name">#icon-kaquantoufang</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-liebiao"></use>
</svg>
<div class="name">列表</div>
<div class="code-name">#icon-liebiao</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-kapian"></use>
</svg>
<div class="name">卡片</div>
<div class="code-name">#icon-kapian</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-paixu"></use>
</svg>
<div class="name">排序</div>
<div class="code-name">#icon-paixu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-shuaxin"></use>
</svg>
<div class="name">刷新</div>
<div class="code-name">#icon-shuaxin</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-shangchuan"></use>
</svg>
<div class="name">上传</div>
<div class="code-name">#icon-shangchuan</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-zhankai-"></use>
</svg>
<div class="name">zhankai-2</div>
<div class="code-name">#icon-zhankai-</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-zhongzhi"></use>
</svg>
<div class="name">zhongzhi</div>
<div class="code-name">#icon-zhongzhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-beijingyinleyinle"></use>
</svg>
<div class="name">背景音乐音乐</div>
<div class="code-name">#icon-beijingyinleyinle</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-shitinghui1"></use>
</svg>
<div class="name">暂停</div>
<div class="code-name">#icon-shitinghui1</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-shitinghui"></use>
</svg>
<div class="name">试听</div>
<div class="code-name">#icon-shitinghui</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-gerenzhongxin_wodeyouxi-xuanzhong"></use>
</svg>
<div class="name">游戏列表</div>
<div class="code-name">#icon-gerenzhongxin_wodeyouxi-xuanzhong</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-luyinbofang"></use>
</svg>
<div class="name">录音播放</div>
<div class="code-name">#icon-luyinbofang</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-shangyi"></use>
</svg>
<div class="name">上移</div>
<div class="code-name">#icon-shangyi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-xiayi"></use>
</svg>
<div class="name">下移</div>
<div class="code-name">#icon-xiayi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-tianjia"></use>
</svg>
<div class="name">添加</div>
<div class="code-name">#icon-tianjia</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-gengduo"></use>
</svg>
<div class="name">更多</div>
<div class="code-name">#icon-gengduo</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-xuanze"></use>
</svg>
<div class="name">选择</div>
<div class="code-name">#icon-xuanze</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-duanxinmobanku"></use>
</svg>
<div class="name">微信营销</div>
<div class="code-name">#icon-duanxinmobanku</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-sucaiku"></use>
</svg>
<div class="name">素材库</div>
<div class="code-name">#icon-sucaiku</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-moban"></use>
</svg>
<div class="name">短信模板库</div>
<div class="code-name">#icon-moban</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-duanxiqunfa"></use>
</svg>
<div class="name">短息群发</div>
<div class="code-name">#icon-duanxiqunfa</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-zidingyi"></use>
</svg>
<div class="name">话术模板</div>
<div class="code-name">#icon-zidingyi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-tonghuashezhi"></use>
</svg>
<div class="name">通话模板</div>
<div class="code-name">#icon-tonghuashezhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-piliangqunfa"></use>
</svg>
<div class="name">话务群发</div>
<div class="code-name">#icon-piliangqunfa</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-dianjianxiangqing"></use>
</svg>
<div class="name">详情</div>
<div class="code-name">#icon-dianjianxiangqing</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-icon_yunxiazai"></use>
</svg>
<div class="name">下载</div>
<div class="code-name">#icon-icon_yunxiazai</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-xuanzhong"></use>
</svg>
<div class="name">选中</div>
<div class="code-name">#icon-xuanzhong</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-shezhi"></use>
</svg>
<div class="name">设置</div>
<div class="code-name">#icon-shezhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-yingyongpeizhi"></use>
</svg>
<div class="name">应用配置</div>
<div class="code-name">#icon-yingyongpeizhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-kaquan"></use>
</svg>
<div class="name">卡券库</div>
<div class="code-name">#icon-kaquan</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-caozuorizhi"></use>
</svg>
<div class="name">卡券日志</div>
<div class="code-name">#icon-caozuorizhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-shenhejilu"></use>
</svg>
<div class="name">审核记录</div>
<div class="code-name">#icon-shenhejilu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-buzhichi"></use>
</svg>
<div class="name">不支持</div>
<div class="code-name">#icon-buzhichi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-tongjibaobiao"></use>
</svg>
<div class="name">统计报表</div>
<div class="code-name">#icon-tongjibaobiao</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-baobeifuzhi"></use>
</svg>
<div class="name">复制</div>
<div class="code-name">#icon-baobeifuzhi</div>
</li>
</ul>
<div class="article markdown">
<h2 id="symbol-">Symbol 引用</h2>
<hr>
<p>这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇<a href="">文章</a>
这种用法其实是做了一个 SVG 的集合,与另外两种相比具有如下特点:</p>
<ul>
<li>支持多色图标了,不再受单色限制。</li>
<li>通过一些技巧,支持像字体那样,通过 <code>font-size</code>, <code>color</code> 来调整样式。</li>
<li>兼容性较差,支持 IE9+,及现代浏览器。</li>
<li>浏览器渲染 SVG 的性能一般,还不如 png。</li>
</ul>
<p>使用步骤如下:</p>
<h3 id="-symbol-">第一步:引入项目下面生成的 symbol 代码:</h3>
<pre><code class="language-html">&lt;script src="./iconfont.js"&gt;&lt;/script&gt;
</code></pre>
<h3 id="-css-">第二步:加入通用 CSS 代码(引入一次就行):</h3>
<pre><code class="language-html">&lt;style&gt;
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
&lt;/style&gt;
</code></pre>
<h3 id="-">第三步:挑选相应图标并获取类名,应用于页面:</h3>
<pre><code class="language-html">&lt;svg class="icon" aria-hidden="true"&gt;
&lt;use xlink:href="#icon-xxx"&gt;&lt;/use&gt;
&lt;/svg&gt;
</code></pre>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function () {
$('.tab-container .content:first').show()
$('#tabs li').click(function (e) {
var tabContent = $('.tab-container .content')
var index = $(this).index()
if ($(this).hasClass('active')) {
return
} else {
$('#tabs li').removeClass('active')
$(this).addClass('active')
tabContent.hide().eq(index).fadeIn()
}
})
})
</script>
</body>
</html>
@font-face {font-family: "iconfont";
src: url('iconfont.eot?t=1591844921448'); /* IE9 */
src: url('iconfont.eot?t=1591844921448#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2'),
url('iconfont.woff?t=1591844921448') format('woff'),
url('iconfont.ttf?t=1591844921448') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
url('iconfont.svg?t=1591844921448#iconfont') format('svg'); /* iOS 4.1- */
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-erweima:before {
content: "\e62f";
}
.icon-mianfeifulidefuben-:before {
content: "\e724";
}
.icon-tongzhigonggao:before {
content: "\e659";
}
.icon-yishanchu:before {
content: "\e6af";
}
.icon-qiaquan-:before {
content: "\e6ba";
}
.icon-chengjiujiangzhang:before {
content: "\ea42";
}
.icon-huiyuanrenwu:before {
content: "\ea41";
}
.icon-xiaochengxu:before {
content: "\e607";
}
.icon-tongbujilu:before {
content: "\e9c4";
}
.icon-kaquantoufang:before {
content: "\e9c3";
}
.icon-liebiao:before {
content: "\e654";
}
.icon-kapian:before {
content: "\e606";
}
.icon-paixu:before {
content: "\e887";
}
.icon-shuaxin:before {
content: "\e962";
}
.icon-shangchuan:before {
content: "\e667";
}
.icon-zhankai-:before {
content: "\e793";
}
.icon-zhongzhi:before {
content: "\e794";
}
.icon-beijingyinleyinle:before {
content: "\e625";
}
.icon-shitinghui1:before {
content: "\e954";
}
.icon-shitinghui:before {
content: "\e953";
}
.icon-gerenzhongxin_wodeyouxi-xuanzhong:before {
content: "\e952";
}
.icon-luyinbofang:before {
content: "\e951";
}
.icon-shangyi:before {
content: "\e69d";
}
.icon-xiayi:before {
content: "\e69e";
}
.icon-tianjia:before {
content: "\e950";
}
.icon-gengduo:before {
content: "\e733";
}
.icon-xuanze:before {
content: "\e86e";
}
.icon-duanxinmobanku:before {
content: "\e94e";
}
.icon-sucaiku:before {
content: "\e94d";
}
.icon-moban:before {
content: "\e94a";
}
.icon-duanxiqunfa:before {
content: "\e949";
}
.icon-zidingyi:before {
content: "\e948";
}
.icon-tonghuashezhi:before {
content: "\e947";
}
.icon-piliangqunfa:before {
content: "\e946";
}
.icon-dianjianxiangqing:before {
content: "\e91e";
}
.icon-icon_yunxiazai:before {
content: "\e6e8";
}
.icon-xuanzhong:before {
content: "\e91d";
}
.icon-shezhi:before {
content: "\e91c";
}
.icon-yingyongpeizhi:before {
content: "\e6b3";
}
.icon-kaquan:before {
content: "\e908";
}
.icon-caozuorizhi:before {
content: "\e909";
}
.icon-shenhejilu:before {
content: "\e90a";
}
.icon-buzhichi:before {
content: "\e64c";
}
.icon-tongjibaobiao:before {
content: "\e605";
}
.icon-baobeifuzhi:before {
content: "\e90b";
}
!(function(c){var h; var l; var a; var t; var i; var o; var v; var z='<svg><symbol id="icon-erweima" viewBox="0 0 1024 1024"><path d="M64 448h448V0.064H64V448z m64-383.936h320V384H128V64.064zM1023.936 0H576v447.936h447.936V0z m-64 383.936H640V64h319.936v319.936zM64 960h448V512H64v448z m64-384h320v320H128V576zM960 832h64v128h-64zM768.064 832h64v128h-64z" ></path><path d="M960 512v192h-127.936V511.936H576V960h64V575.936h128.064V768H1024V512z" ></path></symbol><symbol id="icon-mianfeifulidefuben-" viewBox="0 0 1024 1024"><path d="M525.824 614.4h-9.472l4.7104 5.12z" fill="#FDC90B" ></path><path d="M887.6544 319.0272L873.0112 312.32l-12.6464 10.24a324.1984 324.1984 0 0 1-41.1648 27.4944V169.5232A73.472 73.472 0 0 0 744.6528 97.28h-152.2176l-7.5264 12.9024a85.0944 85.0944 0 0 1-145.8688 0L431.5648 97.28H279.3472A73.472 73.472 0 0 0 204.8 169.5232v180.5312a324.0448 324.0448 0 0 1-40.96-27.7504l-12.6464-10.24-14.6432 6.8608a69.5296 69.5296 0 0 0-39.8336 62.72v475.6992A69.3248 69.3248 0 0 0 165.7344 926.72h692.5312a69.3248 69.3248 0 0 0 69.2736-69.2736V381.7472a69.5296 69.5296 0 0 0-39.8848-62.72zM256.8192 169.5232a21.504 21.504 0 0 1 22.528-20.48h123.392a137.2672 137.2672 0 0 0 218.5216 0h123.392a21.5552 21.5552 0 0 1 22.528 20.48v205.6704a607.488 607.488 0 0 1-128.7168 35.4816V268.9024a27.0848 27.0848 0 0 0-54.1696 0v148.48c-23.6032 2.1504-47.7696 3.328-72.2432 3.328s-48.64-1.1776-72.2432-3.328v-148.48a27.0848 27.0848 0 0 0-54.1696 0v141.7728a607.2832 607.2832 0 0 1-128.7168-35.4816z m-107.52 206.848c87.04 60.672 220.4672 96.4608 362.7008 96.4608s275.6096-35.84 362.7008-96.4608a17.3056 17.3056 0 0 1 0.8704 5.12v475.6992a17.3056 17.3056 0 0 1-17.3056 17.3056H165.7344a17.3056 17.3056 0 0 1-17.2544-17.0496V381.7472a17.0496 17.0496 0 0 1 0.8192-5.376z" fill="" ></path><path d="M427.3152 639.6416v49.5616h70.2976v24.7808H427.3152v49.5616h70.2976v74.3936h46.848v-74.3936h70.2976v-49.5616h-70.2976v-24.7808h70.2976v-49.5616h-46.848l26.368-27.904 26.112-27.648-33.28-35.1744-61.2864 65.28-4.8128 5.12-4.6592-5.0176-61.3888-65.3824-33.28 35.1744 27.0848 28.672 25.3952 26.88h-46.848z" fill="#383838" ></path></symbol><symbol id="icon-tongzhigonggao" viewBox="0 0 1024 1024"><path d="M840.1 960H183.9c-55.1 0-99.9-44.8-99.9-99.9V413.6c0-55.1 44.8-99.9 99.9-99.9H840c55.1 0 99.9 44.8 99.9 99.9v446.5c0 55.1-44.8 99.9-99.8 99.9zM183.9 361.7c-28.6 0-52 23.3-52 52v446.5c0 28.6 23.3 52 52 52H840c28.6 0 52-23.3 52-52V413.6c0-28.6-23.3-52-52-52H183.9z" fill="#0C0C0C" ></path><path d="M494.8 547.7H248.4c-13.2 0-24-10.7-24-24s10.7-24 24-24h246.4c13.2 0 24 10.7 24 24s-10.8 24-24 24zM778.5 774h-530c-13.2 0-24-10.7-24-24s10.7-24 24-24h530c13.2 0 24 10.7 24 24s-10.8 24-24 24zM741.6 347.5L528.8 134.7c-9.3-9.3-24.3-9.2-33.6 0L282.4 347.5l-19.6-19.6 212.8-212.8c9.7-9.7 22.6-15.1 36.4-15.1 13.7 0 26.7 5.4 36.4 15.1l212.8 212.8-19.6 19.6z" fill="#0C0C0C" ></path><path d="M512 106.8m-40.6 0a40.6 40.6 0 1 0 81.2 0 40.6 40.6 0 1 0-81.2 0Z" fill="#0C0C0C" ></path></symbol><symbol id="icon-yishanchu" viewBox="0 0 1024 1024"><path d="M523.195298 104.249256c24.927573-7.535822 50.799587-11.847466 77.013364-11.851059 44.918388-0.000931 90.432115 11.426983 132.027314 35.441983 65.939174 38.07 109.065216 100.473505 125.158525 169.359076l25.842198 14.92c-13.231859-82.521747-61.993699-158.663763-139.835723-203.617423-77.847024-44.945-168.173863-49.094324-246.255722-19.292577l26.050044 15.04zM709.163925 598.362145c-13.119613 5.923837-26.667406 11.069302-40.84675 14.868645-68.402873 18.277251-139.795883 8.893571-201.044859-26.480088-61.293618-35.37634-105.147608-92.519-123.45852-160.883572-3.804344-14.170683-6.117136-28.484809-7.543089-42.794985l-23.408667-13.515c0.927164 20.754105 3.885853 41.549505 9.394536 62.108187 19.865538 74.111878 67.395611 136.067377 133.868061 174.433717 44.262558 25.555 93.392085 38.620163 143.17144 38.619791 24.941149 0.000663 50.06558-3.276128 74.81796-9.908508 20.545022-5.505022 40.038711-13.349082 58.475875-22.923187l-23.425987-13.525z" ></path><path d="M794.061121 743.875888l-8.678912-20.587683c6.691852-2.810627 13.295139-5.787856 19.859503-8.937669l9.684509 20.105939c-6.897569 3.326941-13.827722 6.450318-20.8651 9.419413z m-434.914244-51.646432c-6.170453-4.532461-12.211266-9.209468-18.097796-13.993698l14.130371-17.314521c5.581101 4.57325 11.314163 9.003294 17.179187 13.324775l-13.211762 17.983444z m-153.836451-419.327452l-22.065027-3.282252c1.115129-7.53146 2.422482-15.055862 3.948041-22.558206l21.888757 4.427559c-1.440821 7.135575-2.701738 14.259548-3.771771 21.412899z" ></path><path d="M1024 750.06c-69.74 67.72-155.96 116.9-252.44 142.76-149 39.91-304.64 19.44-438.24-57.71C57.52 675.88-37.31 321.96 121.91 46.16 131.11 30.22 141 14.83 151.51 0H97.72c-4.98 7.8-9.81 15.74-14.48 23.83A629.428 629.428 0 0 0 65.1 57.58C-79.19 346.87 23.3 702.83 304.04 869.73c2.3 1.37 4.61 2.72 6.94 4.07 0.12 0.07 0.25 0.14 0.38 0.21 2.56 1.48 5.13 2.93 7.71 4.37 0.95 0.53 1.91 1.06 2.87 1.58 1.76 0.97 3.53 1.94 5.3 2.89 1.12 0.61 2.25 1.21 3.37 1.81 1.62 0.86 3.24 1.7 4.86 2.55 1.19 0.62 2.39 1.25 3.58 1.86 2.01 1.03 4.04 2.04 6.06 3.05 2.26 1.12 4.51 2.23 6.78 3.32 0.67 0.33 1.34 0.65 2.02 0.98 2.1 1.01 4.21 2 6.32 2.99 0.21 0.1 0.42 0.2 0.64 0.29 124.06 57.55 259.12 70.78 385.71 44.88 0.27-0.06 0.54-0.11 0.82-0.17 3.08-0.63 6.16-1.3 9.23-1.98 1.74-0.39 3.48-0.77 5.22-1.17l3.44-0.81c2.05-0.49 4.09-0.98 6.14-1.48 0.91-0.23 1.83-0.45 2.74-0.68a589.935 589.935 0 0 0 16.32-4.34c1.58-0.45 3.16-0.9 4.74-1.36 0.78-0.23 1.57-0.45 2.35-0.68 82.27-24.17 159.63-65.27 226.43-121.76v-60.09z" ></path><path d="M1024 685.1c-68.99 79.52-160.04 136.73-264 164.58-137.44 36.83-281.09 17.95-404.36-53.24C101.17 649.53 13.67 322.97 160.57 68.49A539.706 539.706 0 0 1 207.46 0h-28.3a564.579 564.579 0 0 0-37.91 57.33c-153.07 265.14-61.9 605.38 203.23 758.45 85.54 49.39 180.48 74.63 276.69 74.62 48.23 0 96.79-6.33 144.61-19.16 100.06-26.8 188.63-79.71 258.22-152.94v-33.2z" ></path><path d="M470.94 238.94l-138.36-92.12L288 213.77c-6.14 9.23-4.68 16.86 4.4 22.9l114.26 76.08c5.06 3.37 10.04 4.75 14.95 4.16 6.94-1.39 19.05-13.94 36.34-37.65l12.35 15.31c-20.56 26.04-35.22 40.32-43.99 42.86-7.98 1.34-16.51-0.68-25.58-6.08l-123.18-82.02c-16.81-11.2-19.37-25.57-7.68-43.12l78.3-117.6 16.07 10.7-21.4 32.13L464.9 212.7l38.78-58.25-150.19-100 10.4-15.62 166.48 110.84-59.43 89.27zM526.87 259.44l13.61 9.06 53.79-80.78 47.09 31.35-53.79 80.78 15.84 10.55 53.79-80.78 46.86 31.2-53.79 80.78 12.27 8.17-9.66 14.51-12.27-8.17-56.02 84.13c-6.93 10.41-15.61 12.15-26.02 5.22l-12.5-8.32 5.34-15.77c3.72 3.12 7.51 5.97 11.38 8.54 3.87 2.57 7.49 1.33 10.85-3.72l52.9-79.44-19.19-12.78-2.08 3.12c-26.6 39.62-52.44 68.91-77.5 87.86l-4.47-17.47c21.8-17.91 44.34-44.02 67.62-78.34l2.82-4.24-15.84-10.55-55.72 83.68c-7.03 10.56-16.13 12.13-27.29 4.7l-13.17-8.77 5.34-15.77c4.17 3.42 8.11 6.36 11.83 8.84 4.91 3.27 9.1 2.3 12.56-2.91l52.6-79-19.42-12.93c-27.84 40.52-55.93 69.81-84.27 87.87l-4.55-17.84c25.57-17.12 50.56-43.53 74.98-79.24l-13.61-9.06 9.69-14.48z m46.86 31.2l44.57-66.95-19.41-12.93-44.58 66.95 19.42 12.93z m62.49 41.6l44.58-66.95-19.19-12.78-44.58 66.95 19.19 12.78z m80.06-46.22l14.06 9.36-92.27 138.58L624 424.6l92.28-138.58z m-117.83 184.7l6.16-16.51c11.51 8.52 19.94 14.56 25.29 18.13 6.25 4.16 11.85 2.52 16.8-4.92l118.12-177.41 14.73 9.81-120.5 180.98c-9.31 13.98-20.29 16.77-32.94 8.35l-27.66-18.43zM811.03 332.36l63.38 42.2-8.47 12.72c-18.83 16.02-39.96 32.45-63.4 49.26-0.38 27.66-5.38 49.68-14.98 66.04-6.34 9.52-13.08 15.13-20.22 16.82-9.62 1.54-21.64-2.49-36.07-12.1l5.49-19.86c4.36 3.76 7.07 5.99 8.11 6.69 7.44 4.31 12.84 6.19 16.21 5.64 3.76-0.5 7.23-3.12 10.41-7.89 10-15.02 14.45-36.22 13.35-63.58 23.68-16.87 44.74-33.34 63.18-49.41l-31.47-20.95L696.2 538.7l-15.62-10.4 130.45-195.94z m15.44 200.31c-22.25 13.75-43.83 23.75-64.75 30l-6.93-18.14c21.01-5.76 41.83-15.09 62.44-27.99l9.24 16.13z m125.08-114.8c-1.87 31.83 5.36 64.34 21.69 97.54l-18.44 7.37c-14.94-30.13-22.05-61.7-21.32-94.72-32.61 12.86-65.15 18.68-97.62 17.46l-0.09-19.7c35.3 1.17 68.68-4.95 100.15-18.35l15.63 10.4zM779.51 590.62l6.83-18c9.42 7.13 16.29 12.13 20.61 15.01 4.02 2.67 7.76 1.41 11.23-3.8l41.6-62.49-52.22-34.77 10.4-15.62 52.22 34.77 17.53-26.33-29.46-19.61 9.96-14.95 73.2 48.74-9.96 14.95-27.22-18.13-17.53 26.33L936.69 550l-10.4 15.62-49.99-33.28-44.28 66.5c-8.22 12.35-17.99 14.76-29.29 7.23l-23.22-15.45z m107.69 40.47l-19.48 0.23c3.26-18.44 5.45-40.92 6.58-67.45l17.55 0.73c-0.29 26.23-1.83 48.39-4.65 66.49z" ></path></symbol><symbol id="icon-qiaquan-" viewBox="0 0 1024 1024"><path d="M512 825.6c-19.2 0-32-12.8-32-32V588.8c0-19.2 12.8-32 32-32s32 12.8 32 32v204.8c0 19.2-12.8 32-32 32z" fill="" ></path><path d="M633.6 704H390.4c-19.2 0-32-12.8-32-32s19.2-32 32-32h236.8c19.2 0 32 12.8 32 32s-12.8 32-25.6 32zM512 620.8c-6.4 0-19.2 0-25.6-6.4L377.6 499.2c-12.8-12.8-12.8-32 0-44.8s32-12.8 44.8 0l108.8 108.8c12.8 12.8 12.8 32 0 44.8 0 12.8-12.8 12.8-19.2 12.8z" fill="" ></path><path d="M512 620.8c-6.4 0-19.2 0-25.6-6.4-6.4-12.8-6.4-38.4 0-44.8l108.8-108.8c12.8-12.8 32-12.8 44.8 0s12.8 32 0 44.8L537.6 614.4c-6.4 6.4-19.2 6.4-25.6 6.4z" fill="" ></path><path d="M812.8 1024H211.2c-51.2 0-96-44.8-96-96V492.8c0-19.2 12.8-32 32-32 38.4 0 70.4-32 70.4-70.4s-32-76.8-70.4-76.8c-19.2 0-32-12.8-32-32V96c0-51.2 44.8-96 96-96h601.6c51.2 0 96 44.8 96 96v185.6c0 19.2-12.8 32-32 32-38.4 0-70.4 32-70.4 70.4s32 70.4 70.4 70.4c19.2 0 32 12.8 32 32v435.2c0 57.6-44.8 102.4-96 102.4zM179.2 524.8V928c0 19.2 12.8 32 32 32h601.6c19.2 0 32-12.8 32-32V524.8c-57.6-12.8-102.4-70.4-102.4-134.4S787.2 268.8 844.8 256V96c0-19.2-12.8-32-32-32H211.2c-19.2 0-32 12.8-32 32v160c57.6 12.8 102.4 70.4 102.4 134.4s-44.8 115.2-102.4 134.4z" fill="" ></path><path d="M633.6 230.4H390.4c-19.2 0-32-12.8-32-32s12.8-32 32-32h236.8c19.2 0 32 12.8 32 32s-12.8 32-25.6 32z" fill="" ></path></symbol><symbol id="icon-chengjiujiangzhang" viewBox="0 0 1024 1024"><path d="M905.216 118.784h-153.088v-44.032c0-24.064-19.456-43.52-43.52-43.52H315.392c-24.064 0-43.52 19.456-43.52 43.52v43.52H118.784c-24.064 0-43.52 19.456-43.52 43.52v786.432c0 24.064 19.456 43.52 43.52 43.52h786.432c24.064 0 43.52-19.456 43.52-43.52V162.816c0-24.576-19.456-44.032-43.52-44.032z m-546.304 0h305.664v87.04H358.912v-87.04z m502.784 786.432H162.304V206.336H271.36v43.52c0 24.064 19.456 43.52 43.52 43.52h393.216c24.064 0 43.52-19.456 43.52-43.52v-43.52h109.568v698.88z" ></path><path d="M570.88 505.344L512 400.896 453.632 505.344l-119.296 22.528L417.28 614.4l-15.36 118.272 110.08-50.688 110.08 50.688-14.848-118.272 82.944-86.528z" ></path></symbol><symbol id="icon-huiyuanrenwu" viewBox="0 0 1024 1024"><path d="M1012.736 1016.832H7.168V7.168h1009.664l-4.096 1009.664zM917.504 139.264v-31.232H106.496l1.024 811.008 810.496-3.072V139.264h-0.512z" ></path><path d="M389.632 326.656h438.272v102.4H389.632v-102.4z m0 252.416h438.272v102.4H389.632v-102.4zM201.728 326.656h103.936v102.4H201.728v-102.4z m0 252.416h103.936v102.4H201.728v-102.4z" ></path></symbol><symbol id="icon-xiaochengxu" viewBox="0 0 1024 1024"><path d="M305.2 896.1c-65.7-3.5-126-32.3-170-81.2-51.5-57.2-70.5-143.2-48.4-219.2 20.7-71.3 75.4-124.2 149.9-145.1 27.7-7.8 56.4 8.4 64.1 36.1 7.7 27.7-8.4 56.4-36.1 64.1-50.9 14.3-70.6 48.1-78.1 73.9-11.9 40.9-1.3 90.5 25.8 120.6 25.4 28.2 60.2 44.8 98.1 46.8s74.3-10.9 102.5-36.3c25.5-22.9 41.8-54.3 46-88.2 2.2-17.9-0.4-105.6-2.3-169.6-3.2-105.6-4.9-171.7-1.2-196.8 8.7-59.6 37-113.4 79.5-151.7 48.9-44 111.9-66.3 177.6-62.8 65.7 3.5 126 32.3 170 81.2 51.5 57.2 70.5 143.2 48.4 219.2-20.7 71.3-75.4 124.2-149.9 145.1-27.7 7.8-56.4-8.4-64.1-36.1-7.7-27.7 8.4-56.4 36.1-64.1 50.9-14.3 70.6-48.1 78.1-73.9 11.9-40.9 1.3-90.5-25.8-120.6-25.4-28.2-60.2-44.8-98.1-46.8-37.9-2-74.3 10.9-102.5 36.3-24.2 21.8-41 54.4-46.1 89.4-2.5 17.6 0.2 110.7 2.3 178.6 2.9 98.9 4.6 160.8 1.6 185.4-7.2 58.9-35.5 113.2-79.7 152.9-49 43.9-112.1 66.2-177.7 62.8z" fill="#7D8DDD" ></path></symbol><symbol id="icon-tongbujilu" viewBox="0 0 1024 1024"><path d="M950.272 35.84H73.728C52.736 35.84 35.84 52.736 35.84 73.728v876.032c0 20.992 16.896 37.888 37.888 37.888h876.032c20.992 0 37.888-16.896 37.888-37.888V73.728c0.512-20.992-16.384-37.888-37.376-37.888z m-47.616 866.816H121.344V121.344h780.8v781.312z" ></path><path d="M265.216 526.336h60.416c4.608 0 8.192-3.584 8.192-8.192V424.448c0-23.552 18.944-42.496 42.496-42.496h244.736V445.44c0 6.656 7.68 10.24 12.8 6.144l130.048-101.888c4.096-3.072 4.096-9.728 0-12.8l-130.048-101.888c-5.12-4.096-12.8-0.512-12.8 6.144v63.488H375.808c-65.536 0-118.784 53.248-118.784 119.296v93.696c0 5.12 3.584 8.704 8.192 8.704z m-5.12 160.768l130.048 101.888c5.12 4.096 12.8 0.512 12.8-6.144v-63.488h244.736c65.536 0 118.784-53.248 118.784-119.296V505.856c0-4.608-3.584-8.192-8.192-8.192h-60.416c-4.608 0-8.192 3.584-8.192 8.192v93.696c0 23.552-18.944 42.496-42.496 42.496H402.944V578.56c0-6.656-7.68-10.24-12.8-6.144l-130.048 101.888c-4.096 3.072-4.096 9.216 0 12.8z" ></path></symbol><symbol id="icon-kaquantoufang" viewBox="0 0 1024 1024"><path d="M978.944 771.072H45.056c-10.752 0-19.456-8.704-19.456-19.456v-558.08C25.6 182.784 34.304 174.08 45.056 174.08h933.888c10.752 0 19.456 8.704 19.456 19.456v558.08c0 10.752-8.704 19.456-19.456 19.456zM102.912 693.248h818.176V251.392H102.912v441.856z" ></path><path d="M504.32 608.256L418.816 485.888l-82.432 68.096c-4.096 3.584-10.24 2.56-13.824-1.536l-36.864-45.056c-3.584-4.096-2.56-10.24 1.536-13.824L426.496 378.88c4.096-3.584 10.24-2.56 13.824 1.536l0.512 0.512L525.824 501.76l162.304-140.288c4.096-3.584 10.24-3.072 13.824 1.024l37.888 44.032c3.584 4.096 3.072 10.24-1.024 13.824L519.68 609.28c-4.096 3.584-10.24 3.072-13.824-1.024-1.024 0.512-1.024 0-1.536 0z m268.8 339.456c4.608-9.728 0.512-20.992-8.704-26.112L512 798.72l-251.904 123.392c-9.728 4.608-13.824 16.384-8.704 26.112l16.896 34.816c4.608 9.728 16.384 13.824 26.112 8.704l218.112-106.496 218.112 106.496c9.728 4.608 20.992 0.512 26.112-8.704l16.384-35.328z m167.424-839.68H83.456c-10.752 0-19.456-8.704-19.456-19.456V49.664c0-10.752 8.704-19.456 19.456-19.456h856.576c10.752 0 19.456 8.704 19.456 19.456v38.912c0 10.752-8.192 19.456-18.944 19.456z" ></path></symbol><symbol id="icon-liebiao" viewBox="0 0 1024 1024"><path d="M341.333 170.667h568.89v113.777h-568.89z m-227.555 0h113.778v113.777H113.778z m0 284.444h113.778V568.89H113.778z m0 284.445h113.778v113.777H113.778z m227.555 0h568.89v113.777h-568.89z m0-284.445h568.89V568.89h-568.89z" fill="#333333" ></path></symbol><symbol id="icon-kapian" viewBox="0 0 1024 1024"><path d="M428.032 567.808h-311.808c-16.896 0-28.16 11.264-28.16 28.16v311.808c0 16.896 11.264 28.16 28.16 28.16h311.808c16.896 0 28.16-11.264 28.16-28.16v-311.808c0-16.896-11.264-28.16-28.16-28.16z m0-480.256h-311.808c-16.896 0-28.16 11.264-28.16 28.16v311.808c0 16.896 11.264 28.16 28.16 28.16h311.808c16.896 0 28.16-11.264 28.16-28.16v-311.808c0-16.896-11.264-28.16-28.16-28.16z m479.744 0h-311.808c-16.896 0-28.16 11.264-28.16 28.16v311.808c0 16.896 11.264 28.16 28.16 28.16h311.808c16.896 0 28.16-11.264 28.16-28.16v-311.808c0.512-16.896-10.752-28.16-28.16-28.16z m0 480.256h-311.808c-16.896 0-28.16 11.264-28.16 28.16v311.808c0 16.896 11.264 28.16 28.16 28.16h311.808c16.896 0 28.16-11.264 28.16-28.16v-311.808c0.512-16.896-10.752-28.16-28.16-28.16z" ></path></symbol><symbol id="icon-paixu" viewBox="0 0 1024 1024"><path d="M63.98 109.048v89.545h895.45v-89.545H63.98z m0 447.725h895.45v-89.546H63.98v89.546z m0 358.18h895.45v-89.546H63.98v89.545z" ></path></symbol><symbol id="icon-shuaxin" viewBox="0 0 1024 1024"><path d="M33.28 640.512C-37.376 375.296 126.464 102.4 399.36 29.184c158.208-42.496 318.464-8.192 438.784 79.872L885.76 48.128c5.12-6.656 15.872-4.608 17.92 3.072l52.736 200.192c1.536 6.144-3.072 12.288-9.728 12.288l-213.504 6.656c-5.632 0.512-10.24-4.096-10.24-9.216 0-2.56 0.512-4.608 2.048-6.656l51.2-66.048c-55.808-40.448-120.832-66.56-189.44-75.264-54.272-7.168-109.056-3.072-161.792 11.264-53.248 14.336-102.4 38.4-145.92 71.168-41.472 31.744-76.8 71.168-103.424 115.712-26.624 44.544-44.544 93.696-52.224 144.896-7.68 52.736-4.608 106.496 9.216 157.696 13.824 51.712 37.888 99.328 71.168 140.8 32.256 40.448 72.192 74.24 117.248 99.328 45.568 25.6 95.232 41.984 147.456 48.64 54.272 7.168 108.544 3.072 161.792-11.264 53.248-14.336 102.4-38.4 145.92-71.168 52.224-39.936 94.208-91.648 122.368-151.04 2.56-5.12 8.192-7.168 13.312-5.12l75.264 30.72c5.12 2.048 7.68 8.192 5.12 13.312-65.024 138.24-188.416 240.64-335.872 279.552-273.408 73.728-552.448-81.92-623.104-347.136z" fill="#262626" ></path></symbol><symbol id="icon-shangchuan" viewBox="0 0 1024 1024"><path d="M884.428198 859.941504 884.428198 859.941504 134.777613 859.941504c-14.799054 0-26.773783-11.974729-26.773783-26.77276L108.003829 618.99178c0-14.771425 11.974729-26.77276 26.773783-26.77276s26.773783 12.000312 26.773783 26.77276l0 187.405227 696.104041 0L857.655438 618.99178c0-14.771425 11.974729-26.77276 26.773783-26.77276s26.773783 12.000312 26.773783 26.77276L911.203004 833.168744C911.201981 847.966775 899.227252 859.941504 884.428198 859.941504zM624.696712 370.015242l-88.320535-107.035782 0 382.731868c0 14.824637-11.974729 26.824949-26.773783 26.824949-14.799054 0-26.773783-12.000312-26.773783-26.824949L482.82861 263.999696l-87.48347 106.016569c-10.483772 10.562567-27.505447 10.562567-37.990243 0-10.510378-10.535961-10.510378-27.634384 0-38.171368l132.324748-160.39813c5.595438-5.621021 13.020548-8.026814 20.341281-7.634888 7.319709-0.391926 14.745842 2.012843 20.367887 7.634888L662.686954 331.843874c10.510378 10.535961 10.510378 27.634384 0 38.171368C652.201136 380.577808 635.180484 380.577808 624.696712 370.015242z" ></path></symbol><symbol id="icon-zhankai-" viewBox="0 0 1024 1024"><path d="M530.432 768L137.216 480.768l-82.432 60.416 473.088 337.92 445.44-326.656-77.824-58.88-365.056 274.432z" fill="#636567" ></path><path d="M527.36 547.84l445.44-326.656-77.824-58.88-364.544 274.432-393.216-287.744L54.784 209.92l472.576 337.92z" fill="#636567" ></path></symbol><symbol id="icon-zhongzhi" viewBox="0 0 1024 1024"><path d="M924.672 572.928c-18.944-4.608-38.4 7.168-42.496 26.624-2.048 8.192-4.096 16.896-6.656 25.088-49.664 160.256-195.584 267.776-363.008 267.776-155.136 0-291.84-92.16-350.72-232.96l191.488 51.2c18.944 4.608 38.4-6.656 43.008-26.112 4.608-18.432-6.144-37.376-24.576-42.496L116.736 573.44c-18.944-5.12-38.4 6.144-43.52 25.088-1.536 6.656-1.536 13.312 0.512 19.968 2.048 9.216 4.608 17.92 7.68 27.136 28.672 91.136 84.48 170.496 160.768 227.84 160.256 119.808 380.416 119.808 540.672 0 76.288-57.344 132.608-137.216 160.768-227.84 3.072-9.728 5.632-19.968 8.192-29.696 4.096-19.456-7.68-38.4-27.136-43.008zM99.328 450.56c18.944 4.608 38.4-7.168 42.496-26.624 2.048-8.192 4.096-16.384 6.656-24.576 2.048-6.656 4.096-12.8 6.656-19.456C209.92 231.424 353.28 131.584 512 131.584c155.648 0 292.352 92.672 350.72 233.472l-192-51.2c-18.944-5.12-38.4 6.144-43.52 25.088s6.144 38.4 25.088 43.52L906.752 450.56c3.072 1.024 6.656 1.536 10.24 1.536 2.56 0 5.632-0.512 8.192-1.024 18.944-4.608 30.72-23.552 26.624-42.496-2.56-9.728-5.12-19.968-8.192-29.696-28.672-91.136-84.48-170.496-160.768-227.84C582.656 1.536 299.52 42.496 150.528 242.176c-26.112 34.816-46.592 73.216-61.952 113.664-2.56 7.68-5.632 15.36-7.68 23.04-3.072 9.728-5.632 19.456-8.192 29.184-4.096 18.944 7.68 37.888 26.624 42.496z" ></path></symbol><symbol id="icon-beijingyinleyinle" viewBox="0 0 1024 1024"><path d="M883.2 6.4L332.8 99.2h-25.6c-12.8 0-25.6 9.6-25.6 25.6V752c-22.4-12.8-48-19.2-73.6-19.2-80 0-147.2 64-147.2 144C64 960 128 1024 211.2 1024c80 0 147.2-64 147.2-144V345.6l512-89.6v352c-70.4-41.6-160-16-198.4 54.4-12.8 22.4-19.2 48-19.2 73.6 0 80 64 147.2 147.2 144 80 0 147.2-64 147.2-147.2v-704c0-12.8-9.6-22.4-19.2-22.4-3.2-3.2-9.6-3.2-12.8-3.2l-12.8 3.2c-16-3.2-19.2 0-19.2 0" ></path></symbol><symbol id="icon-shitinghui1" viewBox="0 0 1024 1024"><path d="M512 1024C229.376 1024 0 794.624 0 512S229.376 0 512 0s512 229.376 512 512-229.376 512-512 512z m0-64c247.296 0 448-200.704 448-448S759.296 64 512 64 64 264.704 64 512s200.704 448 448 448z" ></path><path d="M349.184 696.832c0 2.56 2.048 4.608 4.608 4.608h100.352c2.56 0 4.608-2.048 4.608-4.608V324.608c0-2.56-2.048-4.608-4.608-4.608H353.792c-2.56 0-4.608 2.048-4.608 4.608v372.224z m217.6 0c0 2.56 2.048 4.608 4.608 4.608h100.352c2.56 0 4.608-2.048 4.608-4.608V324.608c0-2.56-2.048-4.608-4.608-4.608h-100.352c-2.56 0-4.608 2.048-4.608 4.608v372.224z" ></path></symbol><symbol id="icon-shitinghui" viewBox="0 0 1024 1024"><path d="M512 1024C229.376 1024 0 794.624 0 512S229.376 0 512 0s512 229.376 512 512-229.376 512-512 512z m0-64c247.296 0 448-200.704 448-448S759.296 64 512 64 64 264.704 64 512s200.704 448 448 448z" ></path><path d="M666.112 494.08L378.88 328.704c-6.144-3.584-13.824-3.584-19.968 0-6.144 3.584-10.24 10.24-9.728 17.408v331.264c0 7.168 3.584 13.824 9.728 17.408 6.144 3.584 13.824 3.584 19.968 0l286.72-165.376c6.144-3.584 10.24-10.24 10.24-17.408 0-7.68-3.584-14.336-9.728-17.92z" ></path></symbol><symbol id="icon-gerenzhongxin_wodeyouxi-xuanzhong" viewBox="0 0 1026 1024"><path d="M299.008 276.48c-80.896 0-147.456 65.536-147.456 147.456 0 80.896 65.536 147.456 147.456 147.456 80.896 0 147.456-65.536 147.456-147.456C445.44 342.016 379.392 276.48 299.008 276.48z m0 231.424c-47.616 0-85.504-38.4-85.504-84.992S251.392 337.92 299.008 337.92s85.504 38.4 85.504 84.992-38.4 84.992-85.504 84.992zM844.8 392.704h-85.504V307.2c0-16.896-13.312-30.72-30.72-30.72-16.896 0-30.72 13.312-30.72 30.72v85.504h-84.992c-16.896 0-30.72 13.312-30.72 30.72 0 16.896 13.312 30.72 30.72 30.72h85.504v85.504c0 16.896 13.312 30.72 30.72 30.72 16.896 0 30.72-13.312 30.72-30.72V454.656h85.504c16.896 0 30.72-13.312 30.72-30.72 0-17.92-14.336-31.232-31.232-31.232z" ></path><path d="M1025.024 276.48c0-101.376-82.432-184.832-184.832-184.832h-133.12c-28.16 0-54.784 16.896-66.56 41.472-12.288 27.648-40.96 45.568-70.656 45.568H456.192c-26.624 0-53.248-18.432-67.584-46.592-12.288-24.064-38.4-39.936-65.536-39.936H185.856C83.968 91.648 1.024 174.08 1.024 276.48v501.76c0 43.52 16.896 83.968 48.128 114.688 30.72 30.72 72.192 47.616 115.712 47.616h1.024c90.624 0 130.56-36.864 159.744-143.872l34.304-102.4h307.2l34.304 103.936c31.744 92.16 66.56 142.336 161.28 142.336 90.112 0 163.328-73.216 163.328-163.328V276.48h-1.024z m-61.952 211.968v288.768c0 55.808-45.568 101.376-101.376 101.376-52.224 0-73.216-14.336-103.424-100.864l-40.96-124.928a29.184 29.184 0 0 0-28.16-20.992H337.408c-13.312 0-25.088 8.192-29.184 20.992l-40.96 124.928c0 1.024 0 1.024-1.024 1.536-25.6 94.72-50.176 98.816-100.864 98.816-27.648 0-53.248-10.752-72.192-30.208-18.944-18.944-30.208-45.056-30.208-71.68V276.48c0-67.584 54.784-123.392 123.392-123.392h136.704c5.12 0 9.216 2.56 10.752 5.632 25.088 50.176 72.192 80.896 123.392 80.896h114.176c54.272 0 103.424-31.744 126.464-81.408 1.536-3.584 5.632-5.632 10.752-5.632h133.12c67.584 0 123.392 54.784 123.392 123.392l-2.048 212.48z" ></path></symbol><symbol id="icon-luyinbofang" viewBox="0 0 1024 1024"><path d="M299.52 641.024L152.576 492.032 299.52 343.04c37.376 37.888 60.928 90.624 60.928 148.992s-23.04 110.592-60.928 148.992z m190.464 188.928l-88.064-89.6c60.416-60.928 97.28-145.408 97.28-238.592s-37.376-177.152-97.28-238.592L489.984 174.08c82.944 83.968 134.144 199.68 134.144 327.68 0 128.512-51.2 244.224-134.144 328.192z" ></path><path d="M656.384 1018.88L568.32 929.28c105.472-106.496 170.496-254.464 170.496-417.28S673.792 202.24 568.32 95.232l88.064-89.6c128 129.536 206.848 308.736 206.848 506.368s-78.848 377.344-206.848 506.88z" ></path></symbol><symbol id="icon-shangyi" viewBox="0 0 1024 1024"><path d="M580.271026 273.036549h204.795244L511.958389 0 238.93373 273.036549h211.298379v750.963451h130.038917z" ></path></symbol><symbol id="icon-xiayi" viewBox="0 0 1024 1024"><path d="M580.271026 750.97534h204.795244L511.958389 1024 238.93373 750.97534h211.298379V0h130.038917z" ></path></symbol><symbol id="icon-tianjia" viewBox="0 0 1024 1024"><path d="M471.552 468.992V33.28h85.504v435.712h435.2v85.504h-435.2v435.2H471.552v-435.2h-435.2V468.992h435.2z" ></path></symbol><symbol id="icon-gengduo" viewBox="0 0 1024 1024"><path d="M512 102.4m-102.4 0a102.4 102.4 0 1 0 204.8 0 102.4 102.4 0 1 0-204.8 0Z" ></path><path d="M512 512m-102.4 0a102.4 102.4 0 1 0 204.8 0 102.4 102.4 0 1 0-204.8 0Z" ></path><path d="M512 921.6m-102.4 0a102.4 102.4 0 1 0 204.8 0 102.4 102.4 0 1 0-204.8 0Z" ></path></symbol><symbol id="icon-xuanze" viewBox="0 0 1024 1024"><path d="M1.554963 512.18963l116.660148-116.660149 379.448889 379.467852-116.622222 116.660148z" fill="" ></path><path d="M379.58163 891.828148l-116.660149-116.641185 642.275556-642.275556 116.660148 116.641186z" fill="" ></path></symbol><symbol id="icon-duanxinmobanku" viewBox="0 0 1024 1024"><path d="M768 595.968H453.632c-9.216 0-16.896 7.68-16.896 16.896v13.312c0 9.216 7.68 16.896 16.896 16.896H768c9.216 0 16.896-7.68 16.896-16.896v-13.312c0-9.216-7.68-16.896-16.896-16.896z" ></path><path d="M975.872 674.304c31.744-49.664 48.128-100.864 48.128-153.088 0-47.104-11.264-92.672-33.28-136.192-20.992-40.96-50.688-77.824-88.576-109.568-75.264-63.488-176.128-99.328-276.992-99.328-107.008 0-206.848 35.328-282.112 99.84-75.776 65.024-117.76 152.064-117.76 245.248s41.984 180.224 117.76 245.248c74.752 64 175.104 99.328 282.112 99.328 43.52 0 86.016-9.728 127.488-19.968l169.472 93.184L875.52 783.36c41.472-33.792 75.776-70.144 100.352-109.056z m-155.648 69.632l-14.848 11.264 18.432 61.44-68.096-37.376-10.24 2.56c-39.936 10.24-81.408 20.48-120.832 20.48-91.136 0-175.616-29.696-238.592-83.456-61.44-52.736-95.232-122.88-95.232-197.12s33.792-144.384 95.232-196.608C449.024 271.36 533.504 241.664 624.64 241.664c85.504 0 170.496 30.72 233.984 83.968 64 53.76 99.328 123.392 99.328 196.608 0 39.936-12.8 80.384-37.888 119.296-23.552 35.84-57.344 70.656-99.84 102.4z" ></path><path d="M768 500.224H453.632c-9.216 0-16.896 7.68-16.896 16.896v13.312c0 9.216 7.68 16.896 16.896 16.896H768c9.216 0 16.896-7.68 16.896-16.896V517.12c0-9.216-7.68-16.896-16.896-16.896zM768 404.48H453.632c-9.216 0-16.896 7.68-16.896 16.896v13.312c0 9.216 7.68 16.896 16.896 16.896H768c9.216 0 16.896-7.68 16.896-16.896v-13.312c0-9.216-7.68-16.896-16.896-16.896zM215.04 106.496c-118.272 0-215.04 80.384-215.04 182.784 0 58.88 32.256 107.52 86.016 145.408l-21.504 64.512 75.264-37.888c24.576 4.608 44.544 9.728 68.096 10.752 7.68-118.784 88.576-219.648 202.752-266.24C373.76 146.432 298.496 106.496 215.04 106.496zM146.944 229.888c0 16.384-13.312 29.696-29.696 29.696s-29.696-13.312-29.696-29.696c0-16.384 13.312-29.696 29.696-29.696 16.384 0.512 29.696 13.312 29.696 29.696z m151.04 0c0 16.384-13.312 29.696-29.696 29.696s-29.696-13.312-29.696-29.696c0-16.384 13.312-29.696 29.696-29.696 16.384 0.512 29.696 13.312 29.696 29.696z" ></path></symbol><symbol id="icon-sucaiku" viewBox="0 0 1122 1024"><path d="M52.224 367.104h32.256V84.992c0-22.528 19.968-42.496 42.496-42.496h319.488c12.288 0 25.088 5.12 32.256 14.848l147.456 159.744H1003.52c22.528 0 42.496 19.968 42.496 42.496v104.96h32.256c22.528 0 42.496 19.968 42.496 42.496V414.72l-70.144 546.816c-2.56 12.288-10.24 25.088-19.968 30.208-7.68 7.68-17.408 12.288-30.208 12.288H127.488c-12.288 0-22.528-5.12-30.208-12.288-10.24-7.68-17.408-19.968-19.968-32.256L10.24 414.72c-2.56-22.528 12.288-45.056 37.376-47.616h4.608z m117.76 0h791.552V304.64h-349.696c-12.288 0-22.528-5.12-32.256-14.848L429.568 127.488H169.984v239.616z m861.696 84.992h-931.84l57.344 461.824h816.64l57.856-461.824z" ></path></symbol><symbol id="icon-moban" viewBox="0 0 1024 1024"><path d="M956.709 0H190.17c-35.108 0-64.365 29.257-64.365 64.366v58.514H67.29c-35.108 0-64.365 29.257-64.365 70.217v766.537c0 35.109 29.257 64.366 64.365 64.366H833.83c35.108 0 64.365-29.257 64.365-64.366V901.12h58.515c35.108 0 58.514-23.406 64.365-58.514V70.217C1021.074 29.257 991.817 0 956.71 0z m-122.88 122.88H196.023V70.217h754.834v754.834h-52.663V193.097c0-40.96-29.257-70.217-64.365-70.217z m-23.406 830.903H73.143V198.949h754.834v754.834h-17.554z" ></path><path d="M219.429 637.806h163.84v163.84h-163.84z m280.868-275.017h163.84v163.84h-163.84z m-280.868 0h163.84v163.84h-163.84z m280.868 275.017h163.84v163.84h-163.84z" ></path></symbol><symbol id="icon-duanxiqunfa" viewBox="0 0 1024 1024"><path d="M922.2 194.9h-37.4v-74.4c0-20.6-16.7-37.3-37.3-37.3h-672c-20.6 0-37.3 16.7-37.3 37.3v74.4h-36.5c-20.6 0-37.3 16.7-37.3 37.3v671.2c0 20.6 16.7 37.3 37.3 37.3h820.4c20.6 0 37.3-16.7 37.3-37.3V232.2c0.1-20.6-16.6-37.3-37.2-37.3z m-709.4-37.1h597.4v36.9H212.8v-36.9z m672.1 708.4H139.1V269.5h745.8v596.7z" ></path><path d="M512 748.2c15.4 0 29.8-6.6 40.1-18.3l278.6-278.6-52.7-52.8-266 266-266-266-52.7 52.7 278.6 278.6c10.3 11.7 24.8 18.4 40.1 18.4z" ></path></symbol><symbol id="icon-zidingyi" viewBox="0 0 1024 1024"><path d="M898.56 1024H110.592c-21.504 0-39.424-17.408-39.424-39.424V39.424c0-21.504 17.408-39.424 39.424-39.424h630.272c11.264 0 21.504 4.608 29.184 12.8l157.696 171.008c6.656 7.168 10.24 16.896 10.24 26.624v144.384c0 21.504-17.408 39.424-39.424 39.424s-39.424-17.408-39.424-39.424V225.28l-135.68-146.432h-573.44v866.304h709.12v-314.88c0-21.504 17.408-39.424 39.424-39.424s39.424 17.408 39.424 39.424v354.304c0 22.016-17.92 39.424-39.424 39.424z" ></path><path d="M583.168 314.88H268.288c-21.504 0-39.424-17.408-39.424-39.424s17.408-39.424 39.424-39.424h314.88c21.504 0 39.424 17.408 39.424 39.424s-17.408 39.424-39.424 39.424z m0 236.544H268.288c-21.504 0-39.424-17.408-39.424-39.424 0-21.504 17.408-39.424 39.424-39.424h314.88c21.504 0 39.424 17.408 39.424 39.424 0 21.504-17.408 39.424-39.424 39.424z m-157.184 314.88c-12.8 0-25.088-6.144-32.256-16.384-12.8-17.92-8.704-42.496 9.216-54.784h0.512l551.424-393.728c17.92-12.8 42.496-8.192 55.296 9.216 12.8 17.92 8.192 42.496-9.216 55.296L448.512 859.136c-6.656 4.608-14.336 7.168-22.528 7.168z" ></path></symbol><symbol id="icon-tonghuashezhi" viewBox="0 0 1024 1024"><path d="M622.08 413.184v-284.16c0-20.48 16.384-36.864 36.864-36.864s36.864 16.384 36.864 36.864v284.16c0 20.48-16.384 36.864-36.864 36.864s-36.864-16.384-36.864-36.864z m144.896 0v-284.16c0-20.48 16.384-36.864 36.864-36.864s36.864 16.384 36.864 36.864v284.16c0 20.48-16.384 36.864-36.864 36.864s-36.864-16.384-36.864-36.864z" ></path><path d="M239.616 139.264l127.488 127.488-113.152 113.664-33.28 33.28 17.408 44.032c59.392 149.504 179.712 270.336 329.728 330.24l44.032 17.408 33.28-33.28 113.152-113.152L885.76 786.432 762.88 909.824c-9.728 9.728-24.064 15.36-36.864 15.36-3.584 0-5.632-0.512-5.632-0.512l-1.536-0.512-1.536-0.512C574.464 900.096 432.64 823.296 316.928 708.096S124.416 450.56 100.864 308.224c-2.56-15.872 3.072-32.768 14.848-44.544l123.904-124.416m0-73.728c-17.408 0-34.816 7.168-47.104 19.456l-128 127.488C36.352 240.64 23.04 281.088 29.696 320 56.32 477.184 140.288 633.344 266.24 759.296s282.112 209.408 439.296 235.52c6.656 1.536 13.824 2.048 20.48 2.048 32.256 0 64-13.312 87.552-36.352l127.488-127.488c26.112-26.112 26.112-68.096 0-94.208L805.376 604.16c-12.288-12.288-29.696-19.456-47.104-19.456-17.408 0-34.816 7.168-47.104 19.456L594.432 720.896C461.824 667.648 357.376 563.2 304.64 430.592l116.736-116.736c26.112-26.112 26.112-68.096 0-94.208L286.72 84.992c-12.288-12.288-29.696-19.456-47.104-19.456z" ></path></symbol><symbol id="icon-piliangqunfa" viewBox="0 0 1024 1024"><path d="M649.216 373.76s12.8-216.064 205.824-260.608V29.184l138.24 138.752-137.728 137.216V221.184S730.624 204.8 649.216 373.76zM305.664 305.152h275.456V373.76H305.664V305.152z m0 276.48h413.696V650.24H305.664v-68.608z" ></path><path d="M923.136 372.736h-68.608v414.208H237.056V167.936h413.696V98.816H167.936v137.216H30.72l-0.512 756.736h755.2v-137.216h137.728V372.736zM716.8 924.16H99.328V305.152h68.608v550.912H716.8v68.096z" ></path></symbol><symbol id="icon-dianjianxiangqing" viewBox="0 0 1024 1024"><path d="M739.328 271.36V215.04c0-5.12-4.096-9.216-9.216-9.216h-450.56c-5.12 0-9.216 4.096-9.216 9.216v56.32c0 5.12 4.096 9.216 9.216 9.216h450.048c5.12 0.512 9.728-4.096 9.728-9.216zM279.552 374.784c-5.12 0-9.216 4.096-9.216 9.216v56.32c0 5.12 4.096 9.216 9.216 9.216h215.552c5.12 0 9.216-4.096 9.216-9.216V384c0-5.12-4.096-9.216-9.216-9.216H279.552z" ></path><path d="M495.104 911.36H176.64V86.528h656.384v347.136c0 5.12 4.096 9.216 9.216 9.216h65.536c5.12 0 9.216-4.096 9.216-9.216v-394.24c0-20.992-16.896-37.376-37.376-37.376H129.536C108.544 2.048 92.16 18.944 92.16 39.424v919.04c0 20.992 16.896 37.376 37.376 37.376h365.568c5.12 0 9.216-4.096 9.216-9.216v-65.536c0.512-5.632-3.584-9.728-9.216-9.728z" ></path><path d="M834.56 793.6c19.968-30.72 32.256-67.584 32.256-107.008 0-108.544-89.088-197.632-197.632-197.632s-197.632 89.088-197.632 197.632c0 108.544 89.088 197.632 197.632 197.632 40.96 0 78.848-12.288 110.592-33.792l111.616 111.616L947.2 906.24l-112.64-112.64z m-165.376 11.264c-65.536 0-118.784-53.248-118.784-118.784 0-65.536 53.248-118.784 118.784-118.784 65.536 0 118.784 53.248 118.784 118.784s-53.76 118.784-118.784 118.784z" ></path></symbol><symbol id="icon-icon_yunxiazai" viewBox="0 0 1024 1024"><path d="M790.528 409.6c-18.432-141.824-136.704-252.416-278.528-252.416S251.904 267.264 233.472 409.6C117.76 417.28 25.6 517.12 25.6 637.952c0 125.952 99.84 228.864 220.672 228.864h533.504c120.832-2.56 218.112-102.4 218.112-228.864C998.4 517.12 906.24 417.28 790.528 409.6z m-286.208 389.12l-194.56-223.232h131.584V367.616h125.952v207.872h131.584l-194.56 223.232z" fill="" ></path></symbol><symbol id="icon-xuanzhong" viewBox="0 0 1024 1024"><path d="M64 960h757.4C898 960 960 898 960 821.4V64L64 960z m792.7-399.7L626.9 830.1s-16.7 23.3-40 0L487 696.9s-13.3-16.7 3.3-30c6.7-3.3 16.7-10 30 3.3l89.9 69.9L830.1 537s13.3-13.3 26.6-3.3c6.7 3.3 10 13.3 0 26.6z" fill="#666666" ></path></symbol><symbol id="icon-shezhi" viewBox="0 0 1040 1024"><path d="M1012.835 412.153c-5.983-31.606-25.284-52.028-49.17-52.028-0.304 0-0.613 0.005-0.783 0.01h-4.396c-69.082 0-125.285-56.203-125.285-125.281 0-22.419 10.816-47.554 10.908-47.771 12.379-27.865 2.854-62.036-22.133-79.473l-1.513-1.061-126.961-70.535-1.605-0.7c-8.27-3.599-17.322-5.42-26.906-5.42-19.637 0-38.952 7.881-51.658 21.072-13.923 14.375-61.99 55.404-98.927 55.404-37.269 0-85.621-41.835-99.605-56.474C402.031 36.435 382.56 28.4 362.722 28.4c-9.394 0-18.282 1.758-26.411 5.226l-1.652 0.7-131.443 72.202-1.553 1.079c-25.071 17.42-34.646 51.558-22.28 79.413 0.109 0.25 10.938 25.245 10.938 47.83 0 69.083-56.2 125.285-125.28 125.285h-4.33c-0.3-0.009-0.6-0.013-0.9-0.013-23.861 0-43.144 20.426-49.127 52.037C10.253 414.473 0 469.424 0 512.403c0 42.979 10.254 97.928 10.69 100.251 5.982 31.607 25.28 52.027 49.155 52.027 0.303 0 0.618-0.004 0.796-0.008h4.4c69.08 0 125.28 56.2 125.28 125.28 0 22.447-10.81 47.55-10.908 47.765-12.37 27.848-2.874 62.018 22.102 79.497l1.484 1.033 124.542 69.65 1.587 0.697c8.264 3.63 17.29 5.47 26.822 5.47 19.92 0 39.374-8.222 52.041-22.003 17.693-19.219 65.684-58.91 101.127-58.91 38.382 0 87.596 44.494 101.8 60.067 12.697 14.007 32.284 22.377 52.401 22.381h0.004c9.35 0 18.214-1.778 26.354-5.284l1.613-0.702 129.105-71.352 1.525-1.065c25.024-17.439 34.576-51.58 22.235-79.372-0.106-0.254-10.954-25.583-10.954-47.871 0-69.08 56.203-125.28 125.285-125.28h4.266c0.281 0.004 0.568 0.008 0.85 0.008 23.93-0.004 43.25-20.426 49.222-52.008 0.107-0.558 10.701-56.216 10.701-100.27 0-43.177-10.251-97.94-10.69-100.251z m-656.233 509.59l-108.943-60.925c4.8-12.325 14.582-41.104 14.582-70.866 0-103.332-79.52-188.758-181.933-196.619-2.505-14.574-8.385-51.924-8.385-80.93 0-28.958 5.88-66.343 8.38-80.93 102.418-7.85 181.937-93.283 181.937-196.62 0-29.681-9.731-58.382-14.523-70.714l115.932-63.674h0.01c4.178 4.266 20.895 20.86 43.984 37.312 37.72 26.886 73.64 40.52 106.762 40.52 32.796 0 68.428-13.369 105.91-39.736 22.94-16.138 39.58-32.41 43.75-36.605 0.009 0 0.018-0.004 0.022-0.004l111.756 62.09c-4.796 12.333-14.564 41.092-14.564 70.812 0 103.335 79.52 188.77 181.938 196.619 2.5 14.61 8.384 52.06 8.384 80.935 0 28.992-5.88 66.358-8.379 80.932-102.418 7.854-181.938 93.28-181.938 196.62 0 29.712 9.744 58.431 14.542 70.762l-113.16 62.534c-4.88-5.183-21.353-22.067-44.151-39.004-38.449-28.552-75.258-43.029-109.396-43.029-33.81 0-70.34 14.209-108.57 42.224-22.47 16.473-39.054 33.192-43.947 38.296z m0 0" ></path><path d="M690.817 511.745c0-99.951-81.318-181.27-181.275-181.27-99.95 0-181.263 81.319-181.263 181.27 0 99.95 81.314 181.264 181.263 181.264 99.958 0 181.275-81.313 181.275-181.264zM509.543 402.404c60.298 0 109.35 49.048 109.35 109.341 0 60.291-49.053 109.345-109.35 109.345-60.291 0-109.34-49.054-109.34-109.345 0-60.293 49.049-109.341 109.34-109.341z m0 0" ></path></symbol><symbol id="icon-yingyongpeizhi" viewBox="0 0 1024 1024"><path d="M99.182166 111.65109c-19.140187 0-31.900312 15.950156-31.900312 31.900312v258.392523c0 19.140187 15.950156 31.900312 31.900312 31.900312h258.392523c19.140187 0 31.900312-15.950156 31.900312-31.900312V143.551402c0-19.140187-15.950156-31.900312-31.900312-31.900312H99.182166z m0-63.800623h258.392523c54.23053 0 98.890966 44.660436 98.890966 98.890966v258.392523c0 54.23053-44.660436 98.890966-98.890966 98.890966H99.182166c-54.23053 0-98.890966-44.660436-98.890966-98.890966V146.741433c0-54.23053 44.660436-98.890966 98.890966-98.890966z m0 583.775701c-19.140187 0-31.900312 15.950156-31.900312 31.900312v258.392523c0 19.140187 15.950156 31.900312 31.900312 31.900312h258.392523c19.140187 0 31.900312-15.950156 31.900312-31.900312v-258.392523c0-19.140187-15.950156-31.900312-31.900312-31.900312H99.182166z m0-63.800623h258.392523c54.23053 0 98.890966 44.660436 98.890966 98.890966V925.109034c0 54.23053-44.660436 98.890966-98.890966 98.890966H99.182166C44.951636 1024 0.2912 979.339564 0.2912 925.109034v-258.392523c0-57.420561 44.660436-98.890966 98.890966-98.890966zM552.166589 197.781931c-15.950156 9.570093-22.330218 28.71028-12.760124 44.660437l130.791277 223.30218c9.570093 15.950156 28.71028 22.330218 44.660436 12.760125l223.302181-130.791277c15.950156-9.570093 22.330218-28.71028 12.760124-44.660436l-130.791277-223.302181c-9.570093-15.950156-28.71028-22.330218-44.660436-12.760125l-223.302181 130.791277z m-31.900311-54.230529l223.302181-130.791277c47.850467-25.520249 105.271028-9.570093 133.981308 35.090342l130.791277 223.302181c25.520249 47.850467 9.570093 105.271028-35.090342 133.981308l-223.302181 130.791278c-47.850467 25.520249-105.271028 9.570093-133.981309-35.090343l-130.791277-223.302181c-28.71028-47.850467-12.760125-108.461059 35.090343-133.981308z m95.700934 488.074766c-19.140187 0-31.900312 15.950156-31.900311 31.900312v258.392523c0 19.140187 15.950156 31.900312 31.900311 31.900312h258.392524c19.140187 0 31.900312-15.950156 31.900311-31.900312v-258.392523c0-19.140187-15.950156-31.900312-31.900311-31.900312h-258.392524z m0-63.800623h258.392524c54.23053 0 98.890966 44.660436 98.890966 98.890966V925.109034c0 54.23053-44.660436 98.890966-98.890966 98.890966h-258.392524c-54.23053 0-98.890966-44.660436-98.890965-98.890966v-258.392523c3.190031-57.420561 44.660436-98.890966 98.890965-98.890966z" fill="#353535" ></path></symbol><symbol id="icon-kaquan" viewBox="0 0 1024 1024"><path d="M992 890.24H32a32 32 0 0 1-32-32V640a32 32 0 0 1 32-32 97.28 97.28 0 0 0 99.2-96A96.64 96.64 0 0 0 32 410.24a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h960a32 32 0 0 1 32 32v218.24a32 32 0 0 1-32 32A99.2 99.2 0 1 0 992 608a32 32 0 0 1 32 32v218.24a32 32 0 0 1-32 32z m-928-64h896V668.8a162.56 162.56 0 0 1 0-320V192H64v157.44a162.56 162.56 0 0 1 0 320z" ></path><path d="M384 672a32 32 0 0 1-22.4-54.4l258.56-261.76a32 32 0 0 1 45.44 0 32 32 0 0 1 0 44.8L403.84 662.4A32.64 32.64 0 0 1 384 672z m19.2-218.24a97.28 97.28 0 1 1 97.28-97.28 97.92 97.92 0 0 1-97.28 97.28z m0-128a33.28 33.28 0 1 0 33.28 33.28 33.28 33.28 0 0 0-33.28-35.84z m217.6 433.28a97.28 97.28 0 1 1 97.92-97.28 97.28 97.28 0 0 1-97.92 97.28z m0-128a33.28 33.28 0 1 0 33.92 33.28 33.28 33.28 0 0 0-33.92-35.84z" ></path></symbol><symbol id="icon-caozuorizhi" viewBox="0 0 1024 1024"><path d="M883.448 73.143H730.91V34.272A34.272 34.272 0 0 0 696.64 0H326.292a34.304 34.304 0 0 0-34.239 34.272v38.87h-151.5c-36.896 0-66.924 31.778-66.924 70.844v809.139c0 39.098 30.028 70.875 66.923 70.875h742.896c36.895 0 66.923-31.777 66.923-70.875v-809.14c0-39.065-30.028-70.842-66.923-70.842z m-522.82-4.568h301.707v82.278H360.629z m521.135 884.55a5.798 5.798 0 0 1-0.42 2.3H142.624a5.798 5.798 0 0 1-0.42-2.3v-809.14a5.636 5.636 0 0 1 0.42-2.267h149.428v43.439a34.304 34.304 0 0 0 34.24 34.272h370.346a34.272 34.272 0 0 0 34.271-34.272v-43.439h150.432a5.636 5.636 0 0 1 0.421 2.268z" ></path><path d="M696.639 670.984H326.292a34.304 34.304 0 1 0 0 68.575H696.64a34.304 34.304 0 0 0 0-68.575z m-13.087-304.719H318.194c-14.447 0-26.14 15.354-26.14 34.272s11.563 34.271 26.14 34.271h365.358c14.447 0 26.141-15.322 26.141-34.271s-11.694-34.272-26.14-34.272zM597 526.48H318.194c-14.447 0-26.14 15.354-26.14 34.271s11.563 34.304 26.14 34.304H597c14.447 0 26.14-15.354 26.14-34.304S611.447 526.48 597 526.48z" ></path></symbol><symbol id="icon-shenhejilu" viewBox="0 0 1024 1024"><path d="M774.656 291.84H265.728c-19.968 0-36.352-16.384-36.352-36.352s16.384-36.352 36.352-36.352h508.928c19.968 0 36.352 16.384 36.352 36.352s-16.384 36.352-36.352 36.352zM558.08 512H267.264c-19.968 0-36.352-16.384-36.352-36.352s16.384-36.352 36.352-36.352H558.08c19.968 0 36.352 16.384 36.352 36.352s-16.384 36.352-36.352 36.352z m-147.968 216.064H264.704c-19.968 0-36.352-16.384-36.352-36.352s16.384-36.352 36.352-36.352h145.408c19.968 0 36.352 16.384 36.352 36.352s-16.384 36.352-36.352 36.352z" ></path><path d="M920.576 3.072H120.832C80.896 3.072 48.128 35.84 48.128 75.776v872.448c0 39.936 32.768 72.704 72.704 72.704h289.792c19.968 0 36.352-16.384 36.352-36.352s-16.384-36.352-36.352-36.352H120.832V75.776h799.744v254.464c0 19.968 16.384 36.352 36.352 36.352s36.352-16.384 36.352-36.352V75.776C993.28 35.328 960.512 3.072 920.576 3.072z" ></path><path d="M920.064 744.96H901.12l-61.44-105.984c29.696-25.088 48.64-61.952 48.64-103.936 0-74.752-60.416-135.68-135.68-135.68s-135.68 60.416-135.68 135.68c0 45.056 22.016 84.992 56.32 109.568l-57.856 100.352h-23.552c-39.936 0-72.704 32.768-72.704 72.704v128c0 39.936 32.768 72.704 72.704 72.704h327.68c39.936 0 72.704-32.768 72.704-72.704v-128c0.512-39.936-31.744-72.704-72.192-72.704z m-166.912-272.896c34.816 0 62.976 28.16 62.976 62.976 0 34.816-28.16 62.976-62.976 62.976-34.816 0-62.976-28.16-62.976-62.976 0-34.816 28.16-62.976 62.976-62.976z m64 272.896h-117.76l43.52-74.752c3.072 0 6.656 0.512 10.24 0.512 6.656 0 13.824-0.512 20.48-1.536l43.52 75.776z m102.912 200.704h-327.68v-128h327.68v128z" ></path></symbol><symbol id="icon-buzhichi" viewBox="0 0 1024 1024"><path d="M512 60.069097c-249.594615 0-451.930903 202.337311-451.930903 451.930903 0 249.594615 202.336288 451.930903 451.930903 451.930903 249.593592 0 451.930903-202.336288 451.930903-451.930903C963.930903 262.406408 761.593592 60.069097 512 60.069097zM884.842637 512c0 93.034906-34.154891 178.041976-90.50734 243.35961L268.64039 229.665727c65.317635-56.352449 150.323681-90.508363 243.35961-90.508363C717.913766 139.157363 884.842637 306.08521 884.842637 512zM139.157363 512c0-84.375689 28.060079-162.17766 75.312266-224.658689L736.658689 809.53037c-62.482053 47.252187-140.284023 75.312266-224.658689 75.312266C306.08521 884.842637 139.157363 717.91479 139.157363 512z" ></path></symbol><symbol id="icon-tongjibaobiao" viewBox="0 0 1024 1024"><path d="M987.467882 93.696093H548.581526V36.454499A36.454396 36.454396 0 0 0 512.02473 0.000102a36.659196 36.659196 0 0 0-36.659197 36.659197v57.036794H36.581577A38.092796 38.092796 0 0 0 0.024781 133.120089v626.892737A38.092796 38.092796 0 0 0 36.581577 798.720023h438.886356v61.439993L329.752748 952.320007a36.659196 36.659196 0 0 0-12.902399 48.332795l2.048 3.7888a36.659196 36.659196 0 0 0 51.814395 13.823999l131.276787-81.919992h21.913597l131.276787 81.919992A36.659196 36.659196 0 0 0 706.58471 1004.544002l1.9456-3.584A36.659196 36.659196 0 0 0 696.344711 952.320007l-147.763185-91.443191V798.720023h438.886356a38.092796 38.092796 0 0 0 36.556796-38.707197V133.120089a38.092796 38.092796 0 0 0-36.556796-39.423996z m-36.556796 627.097537H73.138373V172.032085h877.772713z m-96.051191-440.319956l1.2288 1.536a36.659196 36.659196 0 0 1-3.686399 50.073595l-312.012769 286.719972a36.659196 36.659196 0 0 1-49.459195 0l-137.215987-123.801588a36.659196 36.659196 0 0 0-49.151995 0l-81.919991 73.113593a36.659196 36.659196 0 0 1-52.940795-4.9152l-1.3312-1.7408a36.659196 36.659196 0 0 1 4.4032-49.459195l133.119986-118.783988a36.659196 36.659196 0 0 1 49.049595 0L491.544732 517.017651a36.659196 36.659196 0 0 0 49.459195 0L801.407101 276.480075a36.659196 36.659196 0 0 1 53.452794 4.403199z" ></path></symbol><symbol id="icon-baobeifuzhi" viewBox="0 0 1024 1024"><path d="M981.333 0h-768c-25.6 0-42.666 17.067-42.666 42.667v128h-128C17.067 170.667 0 187.733 0 213.333v768c0 25.6 17.067 42.667 42.667 42.667h768c25.6 0 42.666-17.067 42.666-42.667v-128h128c25.6 0 42.667-17.066 42.667-42.666v-768C1024 17.067 1006.933 0 981.333 0zM768 938.667H85.333V256H768v682.667zM938.667 768h-85.334V213.333c0-25.6-17.066-42.666-42.666-42.666H256V85.333h682.667V768z" ></path></symbol></svg>'; var m=(h=document.getElementsByTagName('script'))[h.length-1].getAttribute('data-injectcss');if(m&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write('<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>')}catch(c){console&&console.log(c)}}function s(){o||(o=!0,t())}l=function(){var c; var h; var l; var a; var t; var i=document.createElement('div');i.innerHTML=z,z=null,(c=i.getElementsByTagName('svg')[0])&&(c.setAttribute('aria-hidden','true'),c.style.position='absolute',c.style.width=0,c.style.height=0,c.style.overflow='hidden',h=c,(l=document.body).firstChild?(a=h,(t=l.firstChild).parentNode.insertBefore(a,t)):l.appendChild(h))},document.addEventListener?~['complete','loaded','interactive'].indexOf(document.readyState)?setTimeout(l,0):(a=function(){document.removeEventListener('DOMContentLoaded',a,!1),l()},document.addEventListener('DOMContentLoaded',a,!1)):document.attachEvent&&(t=l,i=c.document,o=!1,(v=function(){try{i.documentElement.doScroll('left')}catch(c){return void setTimeout(v,50)}s()})(),i.onreadystatechange=function(){'complete'==i.readyState&&(i.onreadystatechange=null,s())})})(window);
\ No newline at end of file
{
"id": "1434755",
"name": "GIC4.0 营销",
"font_family": "iconfont",
"css_prefix_text": "icon-",
"description": "",
"glyphs": [
{
"icon_id": "2110662",
"name": "二维码",
"font_class": "erweima",
"unicode": "e62f",
"unicode_decimal": 58927
},
{
"icon_id": "3964103",
"name": "免费福利的副本-01",
"font_class": "mianfeifulidefuben-",
"unicode": "e724",
"unicode_decimal": 59172
},
{
"icon_id": "13265224",
"name": "通知公告",
"font_class": "tongzhigonggao",
"unicode": "e659",
"unicode_decimal": 58969
},
{
"icon_id": "8866671",
"name": "已删除",
"font_class": "yishanchu",
"unicode": "e6af",
"unicode_decimal": 59055
},
{
"icon_id": "4778433",
"name": "卡券展架",
"font_class": "qiaquan-",
"unicode": "e6ba",
"unicode_decimal": 59066
},
{
"icon_id": "12797879",
"name": "成就奖章",
"font_class": "chengjiujiangzhang",
"unicode": "ea42",
"unicode_decimal": 59970
},
{
"icon_id": "12797876",
"name": "会员任务",
"font_class": "huiyuanrenwu",
"unicode": "ea41",
"unicode_decimal": 59969
},
{
"icon_id": "6817288",
"name": "小程序",
"font_class": "xiaochengxu",
"unicode": "e607",
"unicode_decimal": 58887
},
{
"icon_id": "12136395",
"name": "同步记录",
"font_class": "tongbujilu",
"unicode": "e9c4",
"unicode_decimal": 59844
},
{
"icon_id": "12136294",
"name": "卡券投放",
"font_class": "kaquantoufang",
"unicode": "e9c3",
"unicode_decimal": 59843
},
{
"icon_id": "3978703",
"name": "列表",
"font_class": "liebiao",
"unicode": "e654",
"unicode_decimal": 58964
},
{
"icon_id": "10480689",
"name": "卡片",
"font_class": "kapian",
"unicode": "e606",
"unicode_decimal": 58886
},
{
"icon_id": "9448499",
"name": "排序",
"font_class": "paixu",
"unicode": "e887",
"unicode_decimal": 59527
},
{
"icon_id": "11636491",
"name": "刷新",
"font_class": "shuaxin",
"unicode": "e962",
"unicode_decimal": 59746
},
{
"icon_id": "876514",
"name": "上传",
"font_class": "shangchuan",
"unicode": "e667",
"unicode_decimal": 58983
},
{
"icon_id": "6927557",
"name": "zhankai-2",
"font_class": "zhankai-",
"unicode": "e793",
"unicode_decimal": 59283
},
{
"icon_id": "6929749",
"name": "zhongzhi",
"font_class": "zhongzhi",
"unicode": "e794",
"unicode_decimal": 59284
},
{
"icon_id": "6790692",
"name": "背景音乐音乐",
"font_class": "beijingyinleyinle",
"unicode": "e625",
"unicode_decimal": 58917
},
{
"icon_id": "11531059",
"name": "暂停",
"font_class": "shitinghui1",
"unicode": "e954",
"unicode_decimal": 59732
},
{
"icon_id": "11531045",
"name": "试听",
"font_class": "shitinghui",
"unicode": "e953",
"unicode_decimal": 59731
},
{
"icon_id": "11528118",
"name": "游戏列表",
"font_class": "gerenzhongxin_wodeyouxi-xuanzhong",
"unicode": "e952",
"unicode_decimal": 59730
},
{
"icon_id": "11518592",
"name": "录音播放",
"font_class": "luyinbofang",
"unicode": "e951",
"unicode_decimal": 59729
},
{
"icon_id": "8262371",
"name": "上移",
"font_class": "shangyi",
"unicode": "e69d",
"unicode_decimal": 59037
},
{
"icon_id": "8262372",
"name": "下移",
"font_class": "xiayi",
"unicode": "e69e",
"unicode_decimal": 59038
},
{
"icon_id": "11498968",
"name": "添加",
"font_class": "tianjia",
"unicode": "e950",
"unicode_decimal": 59728
},
{
"icon_id": "4780314",
"name": "更多",
"font_class": "gengduo",
"unicode": "e733",
"unicode_decimal": 59187
},
{
"icon_id": "4118258",
"name": "选择",
"font_class": "xuanze",
"unicode": "e86e",
"unicode_decimal": 59502
},
{
"icon_id": "11481969",
"name": "微信营销",
"font_class": "duanxinmobanku",
"unicode": "e94e",
"unicode_decimal": 59726
},
{
"icon_id": "11481929",
"name": "素材库",
"font_class": "sucaiku",
"unicode": "e94d",
"unicode_decimal": 59725
},
{
"icon_id": "11466838",
"name": "短信模板库",
"font_class": "moban",
"unicode": "e94a",
"unicode_decimal": 59722
},
{
"icon_id": "11466650",
"name": "短息群发",
"font_class": "duanxiqunfa",
"unicode": "e949",
"unicode_decimal": 59721
},
{
"icon_id": "11464168",
"name": "话术模板",
"font_class": "zidingyi",
"unicode": "e948",
"unicode_decimal": 59720
},
{
"icon_id": "11463979",
"name": "通话模板",
"font_class": "tonghuashezhi",
"unicode": "e947",
"unicode_decimal": 59719
},
{
"icon_id": "11463841",
"name": "话务群发",
"font_class": "piliangqunfa",
"unicode": "e946",
"unicode_decimal": 59718
},
{
"icon_id": "11213523",
"name": "详情",
"font_class": "dianjianxiangqing",
"unicode": "e91e",
"unicode_decimal": 59678
},
{
"icon_id": "4918851",
"name": "下载",
"font_class": "icon_yunxiazai",
"unicode": "e6e8",
"unicode_decimal": 59112
},
{
"icon_id": "11211458",
"name": "选中",
"font_class": "xuanzhong",
"unicode": "e91d",
"unicode_decimal": 59677
},
{
"icon_id": "11211433",
"name": "设置",
"font_class": "shezhi",
"unicode": "e91c",
"unicode_decimal": 59676
},
{
"icon_id": "7525939",
"name": "应用配置",
"font_class": "yingyongpeizhi",
"unicode": "e6b3",
"unicode_decimal": 59059
},
{
"icon_id": "11029885",
"name": "卡券库",
"font_class": "kaquan",
"unicode": "e908",
"unicode_decimal": 59656
},
{
"icon_id": "11030091",
"name": "卡券日志",
"font_class": "caozuorizhi",
"unicode": "e909",
"unicode_decimal": 59657
},
{
"icon_id": "11030163",
"name": "审核记录",
"font_class": "shenhejilu",
"unicode": "e90a",
"unicode_decimal": 59658
},
{
"icon_id": "111908",
"name": "不支持",
"font_class": "buzhichi",
"unicode": "e64c",
"unicode_decimal": 58956
},
{
"icon_id": "3710230",
"name": "统计报表",
"font_class": "tongjibaobiao",
"unicode": "e605",
"unicode_decimal": 58885
},
{
"icon_id": "11032295",
"name": "复制",
"font_class": "baobeifuzhi",
"unicode": "e90b",
"unicode_decimal": 59659
}
]
}
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2013-9-30: Created.
-->
<svg>
<metadata>
Created by iconfont
</metadata>
<defs>
<font id="iconfont" horiz-adv-x="1024" >
<font-face
font-family="iconfont"
font-weight="500"
font-stretch="normal"
units-per-em="1024"
ascent="896"
descent="-128"
/>
<missing-glyph />
<glyph glyph-name="erweima" unicode="&#58927;" d="M64 448h448V895.936H64V448z m64 383.936h320V512H128V831.936zM1023.936 896H576v-447.936h447.936V896z m-64-383.936H640V832h319.936v-319.936zM64-64h448V384H64v-448z m64 384h320v-320H128V320zM960 64h64v-128h-64zM768.064 64h64v-128h-64zM960 384v-192h-127.936V384.064H576V-64h64V320.064h128.064V128H1024V384z" horiz-adv-x="1024" />
<glyph glyph-name="mianfeifulidefuben-" unicode="&#59172;" d="M525.824 281.6h-9.472l4.7104-5.12zM887.6544 576.9728L873.0112 583.6800000000001l-12.6464-10.24a324.1984 324.1984 0 0 0-41.1648-27.4944V726.4768A73.472 73.472 0 0 1 744.6528 798.72h-152.2176l-7.5264-12.9024a85.0944 85.0944 0 0 0-145.8688 0L431.5648 798.72H279.3472A73.472 73.472 0 0 1 204.8 726.4768v-180.5312a324.0448 324.0448 0 0 0-40.96 27.7504l-12.6464 10.24-14.6432-6.8608a69.5296 69.5296 0 0 1-39.8336-62.72v-475.6992A69.3248 69.3248 0 0 1 165.7344-30.720000000000027h692.5312a69.3248 69.3248 0 0 1 69.2736 69.2736V514.2528a69.5296 69.5296 0 0 1-39.8848 62.72zM256.8192 726.4768a21.504 21.504 0 0 0 22.528 20.48h123.392a137.2672 137.2672 0 0 1 218.5216 0h123.392a21.5552 21.5552 0 0 0 22.528-20.48v-205.6704a607.488 607.488 0 0 0-128.7168-35.4816V627.0976a27.0848 27.0848 0 0 1-54.1696 0v-148.48c-23.6032-2.1504-47.7696-3.328-72.2432-3.328s-48.64 1.1776-72.2432 3.328v148.48a27.0848 27.0848 0 0 1-54.1696 0v-141.7728a607.2832 607.2832 0 0 0-128.7168 35.4816z m-107.52-206.848c87.04-60.672 220.4672-96.4608 362.7008-96.4608s275.6096 35.84 362.7008 96.4608a17.3056 17.3056 0 0 0 0.8704-5.12v-475.6992a17.3056 17.3056 0 0 0-17.3056-17.3056H165.7344a17.3056 17.3056 0 0 0-17.2544 17.0496V514.2528a17.0496 17.0496 0 0 0 0.8192 5.376zM427.3152 256.35839999999996v-49.5616h70.2976v-24.7808H427.3152v-49.5616h70.2976v-74.3936h46.848v74.3936h70.2976v49.5616h-70.2976v24.7808h70.2976v49.5616h-46.848l26.368 27.904 26.112 27.648-33.28 35.1744-61.2864-65.28-4.8128-5.12-4.6592 5.0176-61.3888 65.3824-33.28-35.1744 27.0848-28.672 25.3952-26.88h-46.848z" horiz-adv-x="1024" />
<glyph glyph-name="tongzhigonggao" unicode="&#58969;" d="M840.1-64H183.9c-55.1 0-99.9 44.8-99.9 99.9V482.4c0 55.1 44.8 99.9 99.9 99.9H840c55.1 0 99.9-44.8 99.9-99.9v-446.5c0-55.1-44.8-99.9-99.8-99.9zM183.9 534.3c-28.6 0-52-23.3-52-52v-446.5c0-28.6 23.3-52 52-52H840c28.6 0 52 23.3 52 52V482.4c0 28.6-23.3 52-52 52H183.9zM494.8 348.3H248.4c-13.2 0-24 10.7-24 24s10.7 24 24 24h246.4c13.2 0 24-10.7 24-24s-10.8-24-24-24zM778.5 122h-530c-13.2 0-24 10.7-24 24s10.7 24 24 24h530c13.2 0 24-10.7 24-24s-10.8-24-24-24zM741.6 548.5L528.8 761.3c-9.3 9.3-24.3 9.2-33.6 0L282.4 548.5l-19.6 19.6 212.8 212.8c9.7 9.7 22.6 15.1 36.4 15.1 13.7 0 26.7-5.4 36.4-15.1l212.8-212.8-19.6-19.6zM512 789.2m-40.6 0a40.6 40.6 0 1 1 81.2 0 40.6 40.6 0 1 1-81.2 0Z" horiz-adv-x="1024" />
<glyph glyph-name="yishanchu" unicode="&#59055;" d="M523.195298 791.750744c24.927573 7.535822 50.799587 11.847466 77.013364 11.851059 44.918388 0.000931 90.432115-11.426983 132.027314-35.441983 65.939174-38.07 109.065216-100.473505 125.158525-169.359076l25.842198-14.92c-13.231859 82.521747-61.993699 158.663763-139.835723 203.617423-77.847024 44.945-168.173863 49.094324-246.255722 19.292577l26.050044-15.04zM709.163925 297.637855c-13.119613-5.923837-26.667406-11.069302-40.84675-14.868645-68.402873-18.277251-139.795883-8.893571-201.044859 26.480088-61.293618 35.37634-105.147608 92.519-123.45852 160.883572-3.804344 14.170683-6.117136 28.484809-7.543089 42.794985l-23.408667 13.515c0.927164-20.754105 3.885853-41.549505 9.394536-62.108187 19.865538-74.111878 67.395611-136.067377 133.868061-174.433717 44.262558-25.555 93.392085-38.620163 143.17144-38.619791 24.941149-0.000663 50.06558 3.276128 74.81796 9.908508 20.545022 5.505022 40.038711 13.349082 58.475875 22.923187l-23.425987 13.525zM794.061121 152.124112l-8.678912 20.587683c6.691852 2.810627 13.295139 5.787856 19.859503 8.937669l9.684509-20.105939c-6.897569-3.326941-13.827722-6.450318-20.8651-9.419413z m-434.914244 51.646432c-6.170453 4.532461-12.211266 9.209468-18.097796 13.993698l14.130371 17.314521c5.581101-4.57325 11.314163-9.003294 17.179187-13.324775l-13.211762-17.983444z m-153.836451 419.327452l-22.065027 3.282252c1.115129 7.53146 2.422482 15.055862 3.948041 22.558206l21.888757-4.427559c-1.440821-7.135575-2.701738-14.259548-3.771771-21.412899zM1024 145.94c-69.74-67.72-155.96-116.9-252.44-142.76-149-39.91-304.64-19.44-438.24 57.71C57.52 220.12-37.31 574.04 121.91 849.84 131.11 865.78 141 881.17 151.51 896H97.72c-4.98-7.8-9.81-15.74-14.48-23.83A629.428 629.428 0 0 1 65.1 838.42C-79.19 549.13 23.3 193.17 304.04 26.27c2.3-1.37 4.61-2.72 6.94-4.07 0.12-0.07 0.25-0.14 0.38-0.21 2.56-1.48 5.13-2.93 7.71-4.37 0.95-0.53 1.91-1.06 2.87-1.58 1.76-0.97 3.53-1.94 5.3-2.89 1.12-0.61 2.25-1.21 3.37-1.81 1.62-0.86 3.24-1.7 4.86-2.55 1.19-0.62 2.39-1.25 3.58-1.86 2.01-1.03 4.04-2.04 6.06-3.05 2.26-1.12 4.51-2.23 6.78-3.32 0.67-0.33 1.34-0.65 2.02-0.98 2.1-1.01 4.21-2 6.32-2.99 0.21-0.1 0.42-0.2 0.64-0.29 124.06-57.55 259.12-70.78 385.71-44.88 0.27 0.06 0.54 0.11 0.82 0.17 3.08 0.63 6.16 1.3 9.23 1.98 1.74 0.39 3.48 0.77 5.22 1.17l3.44 0.81c2.05 0.49 4.09 0.98 6.14 1.48 0.91 0.23 1.83 0.45 2.74 0.68a589.935 589.935 0 0 1 16.32 4.34c1.58 0.45 3.16 0.9 4.74 1.36 0.78 0.23 1.57 0.45 2.35 0.68 82.27 24.17 159.63 65.27 226.43 121.76v60.09zM1024 210.9c-68.99-79.52-160.04-136.73-264-164.58-137.44-36.83-281.09-17.95-404.36 53.24C101.17 246.47 13.67 573.03 160.57 827.51A539.706 539.706 0 0 0 207.46 896h-28.3a564.579 564.579 0 0 1-37.91-57.33c-153.07-265.14-61.9-605.38 203.23-758.45 85.54-49.39 180.48-74.63 276.69-74.62 48.23 0 96.79 6.33 144.61 19.16 100.06 26.8 188.63 79.71 258.22 152.94v33.2zM470.94 657.06l-138.36 92.12L288 682.23c-6.14-9.23-4.68-16.86 4.4-22.9l114.26-76.08c5.06-3.37 10.04-4.75 14.95-4.16 6.94 1.39 19.05 13.94 36.34 37.65l12.35-15.31c-20.56-26.04-35.22-40.32-43.99-42.86-7.98-1.34-16.51 0.68-25.58 6.08l-123.18 82.02c-16.81 11.2-19.37 25.57-7.68 43.12l78.3 117.6 16.07-10.7-21.4-32.13L464.9 683.3l38.78 58.25-150.19 100 10.4 15.62 166.48-110.84-59.43-89.27zM526.87 636.56l13.61-9.06 53.79 80.78 47.09-31.35-53.79-80.78 15.84-10.55 53.79 80.78 46.86-31.2-53.79-80.78 12.27-8.17-9.66-14.51-12.27 8.17-56.02-84.13c-6.93-10.41-15.61-12.15-26.02-5.22l-12.5 8.32 5.34 15.77c3.72-3.12 7.51-5.97 11.38-8.54 3.87-2.57 7.49-1.33 10.85 3.72l52.9 79.44-19.19 12.78-2.08-3.12c-26.6-39.62-52.44-68.91-77.5-87.86l-4.47 17.47c21.8 17.91 44.34 44.02 67.62 78.34l2.82 4.24-15.84 10.55-55.72-83.68c-7.03-10.56-16.13-12.13-27.29-4.7l-13.17 8.77 5.34 15.77c4.17-3.42 8.11-6.36 11.83-8.84 4.91-3.27 9.1-2.3 12.56 2.91l52.6 79-19.42 12.93c-27.84-40.52-55.93-69.81-84.27-87.87l-4.55 17.84c25.57 17.12 50.56 43.53 74.98 79.24l-13.61 9.06 9.69 14.48z m46.86-31.2l44.57 66.95-19.41 12.93-44.58-66.95 19.42-12.93z m62.49-41.6l44.58 66.95-19.19 12.78-44.58-66.95 19.19-12.78z m80.06 46.22l14.06-9.36-92.27-138.58L624 471.4l92.28 138.58z m-117.83-184.7l6.16 16.51c11.51-8.52 19.94-14.56 25.29-18.13 6.25-4.16 11.85-2.52 16.8 4.92l118.12 177.41 14.73-9.81-120.5-180.98c-9.31-13.98-20.29-16.77-32.94-8.35l-27.66 18.43zM811.03 563.64l63.38-42.2-8.47-12.72c-18.83-16.02-39.96-32.45-63.4-49.26-0.38-27.66-5.38-49.68-14.98-66.04-6.34-9.52-13.08-15.13-20.22-16.82-9.62-1.54-21.64 2.49-36.07 12.1l5.49 19.86c4.36-3.76 7.07-5.99 8.11-6.69 7.44-4.31 12.84-6.19 16.21-5.64 3.76 0.5 7.23 3.12 10.41 7.89 10 15.02 14.45 36.22 13.35 63.58 23.68 16.87 44.74 33.34 63.18 49.41l-31.47 20.95L696.2 357.3l-15.62 10.4 130.45 195.94z m15.44-200.31c-22.25-13.75-43.83-23.75-64.75-30l-6.93 18.14c21.01 5.76 41.83 15.09 62.44 27.99l9.24-16.13z m125.08 114.8c-1.87-31.83 5.36-64.34 21.69-97.54l-18.44-7.37c-14.94 30.13-22.05 61.7-21.32 94.72-32.61-12.86-65.15-18.68-97.62-17.46l-0.09 19.7c35.3-1.17 68.68 4.95 100.15 18.35l15.63-10.4zM779.51 305.38l6.83 18c9.42-7.13 16.29-12.13 20.61-15.01 4.02-2.67 7.76-1.41 11.23 3.8l41.6 62.49-52.22 34.77 10.4 15.62 52.22-34.77 17.53 26.33-29.46 19.61 9.96 14.95 73.2-48.74-9.96-14.95-27.22 18.13-17.53-26.33L936.69 346l-10.4-15.62-49.99 33.28-44.28-66.5c-8.22-12.35-17.99-14.76-29.29-7.23l-23.22 15.45z m107.69-40.47l-19.48-0.23c3.26 18.44 5.45 40.92 6.58 67.45l17.55-0.73c-0.29-26.23-1.83-48.39-4.65-66.49z" horiz-adv-x="1024" />
<glyph glyph-name="qiaquan-" unicode="&#59066;" d="M512 70.4c-19.2 0-32 12.8-32 32V307.2c0 19.2 12.8 32 32 32s32-12.8 32-32v-204.8c0-19.2-12.8-32-32-32zM633.6 192H390.4c-19.2 0-32 12.8-32 32s19.2 32 32 32h236.8c19.2 0 32-12.8 32-32s-12.8-32-25.6-32zM512 275.2c-6.4 0-19.2 0-25.6 6.4L377.6 396.8c-12.8 12.8-12.8 32 0 44.8s32 12.8 44.8 0l108.8-108.8c12.8-12.8 12.8-32 0-44.8 0-12.8-12.8-12.8-19.2-12.8zM512 275.2c-6.4 0-19.2 0-25.6 6.4-6.4 12.8-6.4 38.4 0 44.8l108.8 108.8c12.8 12.8 32 12.8 44.8 0s12.8-32 0-44.8L537.6 281.6c-6.4-6.4-19.2-6.4-25.6-6.4zM812.8-128H211.2c-51.2 0-96 44.8-96 96V403.2c0 19.2 12.8 32 32 32 38.4 0 70.4 32 70.4 70.4s-32 76.8-70.4 76.8c-19.2 0-32 12.8-32 32V800c0 51.2 44.8 96 96 96h601.6c51.2 0 96-44.8 96-96v-185.6c0-19.2-12.8-32-32-32-38.4 0-70.4-32-70.4-70.4s32-70.4 70.4-70.4c19.2 0 32-12.8 32-32v-435.2c0-57.6-44.8-102.4-96-102.4zM179.2 371.2V-32c0-19.2 12.8-32 32-32h601.6c19.2 0 32 12.8 32 32V371.2c-57.6 12.8-102.4 70.4-102.4 134.4S787.2 627.2 844.8 640V800c0 19.2-12.8 32-32 32H211.2c-19.2 0-32-12.8-32-32v-160c57.6-12.8 102.4-70.4 102.4-134.4s-44.8-115.2-102.4-134.4zM633.6 665.6H390.4c-19.2 0-32 12.8-32 32s12.8 32 32 32h236.8c19.2 0 32-12.8 32-32s-12.8-32-25.6-32z" horiz-adv-x="1024" />
<glyph glyph-name="chengjiujiangzhang" unicode="&#59970;" d="M905.216 777.216h-153.088v44.032c0 24.064-19.456 43.52-43.52 43.52H315.392c-24.064 0-43.52-19.456-43.52-43.52v-43.52H118.784c-24.064 0-43.52-19.456-43.52-43.52v-786.432c0-24.064 19.456-43.52 43.52-43.52h786.432c24.064 0 43.52 19.456 43.52 43.52V733.184c0 24.576-19.456 44.032-43.52 44.032z m-546.304 0h305.664v-87.04H358.912v87.04z m502.784-786.432H162.304V689.664H271.36v-43.52c0-24.064 19.456-43.52 43.52-43.52h393.216c24.064 0 43.52 19.456 43.52 43.52v43.52h109.568v-698.88zM570.88 390.656L512 495.104 453.632 390.656l-119.296-22.528L417.28 281.6l-15.36-118.272 110.08 50.688 110.08-50.688-14.848 118.272 82.944 86.528z" horiz-adv-x="1024" />
<glyph glyph-name="huiyuanrenwu" unicode="&#59969;" d="M1012.736-120.832H7.168V888.832h1009.664l-4.096-1009.664zM917.504 756.736v31.232H106.496l1.024-811.008 810.496 3.072V756.736h-0.512zM389.632 569.344h438.272v-102.4H389.632v102.4z m0-252.416h438.272v-102.4H389.632v102.4zM201.728 569.344h103.936v-102.4H201.728v102.4z m0-252.416h103.936v-102.4H201.728v102.4z" horiz-adv-x="1024" />
<glyph glyph-name="xiaochengxu" unicode="&#58887;" d="M305.2-0.1c-65.7 3.5-126 32.3-170 81.2-51.5 57.2-70.5 143.2-48.4 219.2 20.7 71.3 75.4 124.2 149.9 145.1 27.7 7.8 56.4-8.4 64.1-36.1 7.7-27.7-8.4-56.4-36.1-64.1-50.9-14.3-70.6-48.1-78.1-73.9-11.9-40.9-1.3-90.5 25.8-120.6 25.4-28.2 60.2-44.8 98.1-46.8s74.3 10.9 102.5 36.3c25.5 22.9 41.8 54.3 46 88.2 2.2 17.9-0.4 105.6-2.3 169.6-3.2 105.6-4.9 171.7-1.2 196.8 8.7 59.6 37 113.4 79.5 151.7 48.9 44 111.9 66.3 177.6 62.8 65.7-3.5 126-32.3 170-81.2 51.5-57.2 70.5-143.2 48.4-219.2-20.7-71.3-75.4-124.2-149.9-145.1-27.7-7.8-56.4 8.4-64.1 36.1-7.7 27.7 8.4 56.4 36.1 64.1 50.9 14.3 70.6 48.1 78.1 73.9 11.9 40.9 1.3 90.5-25.8 120.6-25.4 28.2-60.2 44.8-98.1 46.8-37.9 2-74.3-10.9-102.5-36.3-24.2-21.8-41-54.4-46.1-89.4-2.5-17.6 0.2-110.7 2.3-178.6 2.9-98.9 4.6-160.8 1.6-185.4-7.2-58.9-35.5-113.2-79.7-152.9-49-43.9-112.1-66.2-177.7-62.8z" horiz-adv-x="1024" />
<glyph glyph-name="tongbujilu" unicode="&#59844;" d="M950.272 860.16H73.728C52.736 860.16 35.84 843.264 35.84 822.272v-876.032c0-20.992 16.896-37.888 37.888-37.888h876.032c20.992 0 37.888 16.896 37.888 37.888V822.272c0.512 20.992-16.384 37.888-37.376 37.888z m-47.616-866.816H121.344V774.656h780.8v-781.312zM265.216 369.664h60.416c4.608 0 8.192 3.584 8.192 8.192V471.552c0 23.552 18.944 42.496 42.496 42.496h244.736V450.56c0-6.656 7.68-10.24 12.8-6.144l130.048 101.888c4.096 3.072 4.096 9.728 0 12.8l-130.048 101.888c-5.12 4.096-12.8 0.512-12.8-6.144v-63.488H375.808c-65.536 0-118.784-53.248-118.784-119.296v-93.696c0-5.12 3.584-8.704 8.192-8.704z m-5.12-160.768l130.048-101.888c5.12-4.096 12.8-0.512 12.8 6.144v63.488h244.736c65.536 0 118.784 53.248 118.784 119.296V390.144c0 4.608-3.584 8.192-8.192 8.192h-60.416c-4.608 0-8.192-3.584-8.192-8.192v-93.696c0-23.552-18.944-42.496-42.496-42.496H402.944V317.44c0 6.656-7.68 10.24-12.8 6.144l-130.048-101.888c-4.096-3.072-4.096-9.216 0-12.8z" horiz-adv-x="1024" />
<glyph glyph-name="kaquantoufang" unicode="&#59843;" d="M978.944 124.928H45.056c-10.752 0-19.456 8.704-19.456 19.456v558.08C25.6 713.216 34.304 721.92 45.056 721.92h933.888c10.752 0 19.456-8.704 19.456-19.456v-558.08c0-10.752-8.704-19.456-19.456-19.456zM102.912 202.752h818.176V644.608H102.912v-441.856zM504.32 287.744L418.816 410.112l-82.432-68.096c-4.096-3.584-10.24-2.56-13.824 1.536l-36.864 45.056c-3.584 4.096-2.56 10.24 1.536 13.824L426.496 517.12c4.096 3.584 10.24 2.56 13.824-1.536l0.512-0.512L525.824 394.24l162.304 140.288c4.096 3.584 10.24 3.072 13.824-1.024l37.888-44.032c3.584-4.096 3.072-10.24-1.024-13.824L519.68 286.72c-4.096-3.584-10.24-3.072-13.824 1.024-1.024-0.512-1.024 0-1.536 0z m268.8-339.456c4.608 9.728 0.512 20.992-8.704 26.112L512 97.28l-251.904-123.392c-9.728-4.608-13.824-16.384-8.704-26.112l16.896-34.816c4.608-9.728 16.384-13.824 26.112-8.704l218.112 106.496 218.112-106.496c9.728-4.608 20.992-0.512 26.112 8.704l16.384 35.328z m167.424 839.68H83.456c-10.752 0-19.456 8.704-19.456 19.456V846.336c0 10.752 8.704 19.456 19.456 19.456h856.576c10.752 0 19.456-8.704 19.456-19.456v-38.912c0-10.752-8.192-19.456-18.944-19.456z" horiz-adv-x="1024" />
<glyph glyph-name="liebiao" unicode="&#58964;" d="M341.333 725.333h568.89v-113.777h-568.89z m-227.555 0h113.778v-113.777H113.778z m0-284.444h113.778V327.11H113.778z m0-284.445h113.778v-113.777H113.778z m227.555 0h568.89v-113.777h-568.89z m0 284.445h568.89V327.11h-568.89z" horiz-adv-x="1024" />
<glyph glyph-name="kapian" unicode="&#58886;" d="M428.032 328.192h-311.808c-16.896 0-28.16-11.264-28.16-28.16v-311.808c0-16.896 11.264-28.16 28.16-28.16h311.808c16.896 0 28.16 11.264 28.16 28.16v311.808c0 16.896-11.264 28.16-28.16 28.16z m0 480.256h-311.808c-16.896 0-28.16-11.264-28.16-28.16v-311.808c0-16.896 11.264-28.16 28.16-28.16h311.808c16.896 0 28.16 11.264 28.16 28.16v311.808c0 16.896-11.264 28.16-28.16 28.16z m479.744 0h-311.808c-16.896 0-28.16-11.264-28.16-28.16v-311.808c0-16.896 11.264-28.16 28.16-28.16h311.808c16.896 0 28.16 11.264 28.16 28.16v311.808c0.512 16.896-10.752 28.16-28.16 28.16z m0-480.256h-311.808c-16.896 0-28.16-11.264-28.16-28.16v-311.808c0-16.896 11.264-28.16 28.16-28.16h311.808c16.896 0 28.16 11.264 28.16 28.16v311.808c0.512 16.896-10.752 28.16-28.16 28.16z" horiz-adv-x="1024" />
<glyph glyph-name="paixu" unicode="&#59527;" d="M63.98 786.952v-89.545h895.45v89.545H63.98z m0-447.725h895.45v89.546H63.98v-89.546z m0-358.18h895.45v89.546H63.98v-89.545z" horiz-adv-x="1024" />
<glyph glyph-name="shuaxin" unicode="&#59746;" d="M33.28 255.488C-37.376 520.704 126.464 793.6 399.36 866.816c158.208 42.496 318.464 8.192 438.784-79.872L885.76 847.872c5.12 6.656 15.872 4.608 17.92-3.072l52.736-200.192c1.536-6.144-3.072-12.288-9.728-12.288l-213.504-6.656c-5.632-0.512-10.24 4.096-10.24 9.216 0 2.56 0.512 4.608 2.048 6.656l51.2 66.048c-55.808 40.448-120.832 66.56-189.44 75.264-54.272 7.168-109.056 3.072-161.792-11.264-53.248-14.336-102.4-38.4-145.92-71.168-41.472-31.744-76.8-71.168-103.424-115.712-26.624-44.544-44.544-93.696-52.224-144.896-7.68-52.736-4.608-106.496 9.216-157.696 13.824-51.712 37.888-99.328 71.168-140.8 32.256-40.448 72.192-74.24 117.248-99.328 45.568-25.6 95.232-41.984 147.456-48.64 54.272-7.168 108.544-3.072 161.792 11.264 53.248 14.336 102.4 38.4 145.92 71.168 52.224 39.936 94.208 91.648 122.368 151.04 2.56 5.12 8.192 7.168 13.312 5.12l75.264-30.72c5.12-2.048 7.68-8.192 5.12-13.312-65.024-138.24-188.416-240.64-335.872-279.552-273.408-73.728-552.448 81.92-623.104 347.136z" horiz-adv-x="1024" />
<glyph glyph-name="shangchuan" unicode="&#58983;" d="M884.428198 36.058496 884.428198 36.058496 134.777613 36.058496c-14.799054 0-26.773783 11.974729-26.773783 26.77276L108.003829 277.00822c0 14.771425 11.974729 26.77276 26.773783 26.77276s26.773783-12.000312 26.773783-26.77276l0-187.405227 696.104041 0L857.655438 277.00822c0 14.771425 11.974729 26.77276 26.773783 26.77276s26.773783-12.000312 26.773783-26.77276L911.203004 62.831256C911.201981 48.033225 899.227252 36.058496 884.428198 36.058496zM624.696712 525.984758l-88.320535 107.035782 0-382.731868c0-14.824637-11.974729-26.824949-26.773783-26.824949-14.799054 0-26.773783 12.000312-26.773783 26.824949L482.82861 632.000304l-87.48347-106.016569c-10.483772-10.562567-27.505447-10.562567-37.990243 0-10.510378 10.535961-10.510378 27.634384 0 38.171368l132.324748 160.39813c5.595438 5.621021 13.020548 8.026814 20.341281 7.634888 7.319709 0.391926 14.745842-2.012843 20.367887-7.634888L662.686954 564.156126c10.510378-10.535961 10.510378-27.634384 0-38.171368C652.201136 515.422192 635.180484 515.422192 624.696712 525.984758z" horiz-adv-x="1024" />
<glyph glyph-name="zhankai-" unicode="&#59283;" d="M530.432 128L137.216 415.232l-82.432-60.416 473.088-337.92 445.44 326.656-77.824 58.88-365.056-274.432zM527.36 348.16l445.44 326.656-77.824 58.88-364.544-274.432-393.216 287.744L54.784 686.08l472.576-337.92z" horiz-adv-x="1024" />
<glyph glyph-name="zhongzhi" unicode="&#59284;" d="M924.672 323.072c-18.944 4.608-38.4-7.168-42.496-26.624-2.048-8.192-4.096-16.896-6.656-25.088-49.664-160.256-195.584-267.776-363.008-267.776-155.136 0-291.84 92.16-350.72 232.96l191.488-51.2c18.944-4.608 38.4 6.656 43.008 26.112 4.608 18.432-6.144 37.376-24.576 42.496L116.736 322.56c-18.944 5.12-38.4-6.144-43.52-25.088-1.536-6.656-1.536-13.312 0.512-19.968 2.048-9.216 4.608-17.92 7.68-27.136 28.672-91.136 84.48-170.496 160.768-227.84 160.256-119.808 380.416-119.808 540.672 0 76.288 57.344 132.608 137.216 160.768 227.84 3.072 9.728 5.632 19.968 8.192 29.696 4.096 19.456-7.68 38.4-27.136 43.008zM99.328 445.44c18.944-4.608 38.4 7.168 42.496 26.624 2.048 8.192 4.096 16.384 6.656 24.576 2.048 6.656 4.096 12.8 6.656 19.456C209.92 664.576 353.28 764.416 512 764.416c155.648 0 292.352-92.672 350.72-233.472l-192 51.2c-18.944 5.12-38.4-6.144-43.52-25.088s6.144-38.4 25.088-43.52L906.752 445.44c3.072-1.024 6.656-1.536 10.24-1.536 2.56 0 5.632 0.512 8.192 1.024 18.944 4.608 30.72 23.552 26.624 42.496-2.56 9.728-5.12 19.968-8.192 29.696-28.672 91.136-84.48 170.496-160.768 227.84C582.656 894.464 299.52 853.504 150.528 653.824c-26.112-34.816-46.592-73.216-61.952-113.664-2.56-7.68-5.632-15.36-7.68-23.04-3.072-9.728-5.632-19.456-8.192-29.184-4.096-18.944 7.68-37.888 26.624-42.496z" horiz-adv-x="1024" />
<glyph glyph-name="beijingyinleyinle" unicode="&#58917;" d="M883.2 889.6L332.8 796.8h-25.6c-12.8 0-25.6-9.6-25.6-25.6V144c-22.4 12.8-48 19.2-73.6 19.2-80 0-147.2-64-147.2-144C64-64 128-128 211.2-128c80 0 147.2 64 147.2 144V550.4l512 89.6v-352c-70.4 41.6-160 16-198.4-54.4-12.8-22.4-19.2-48-19.2-73.6 0-80 64-147.2 147.2-144 80 0 147.2 64 147.2 147.2v704c0 12.8-9.6 22.4-19.2 22.4-3.2 3.2-9.6 3.2-12.8 3.2l-12.8-3.2c-16 3.2-19.2 0-19.2 0" horiz-adv-x="1024" />
<glyph glyph-name="shitinghui1" unicode="&#59732;" d="M512-128C229.376-128 0 101.376 0 384S229.376 896 512 896s512-229.376 512-512-229.376-512-512-512z m0 64c247.296 0 448 200.704 448 448S759.296 832 512 832 64 631.296 64 384s200.704-448 448-448zM349.184 199.168c0-2.56 2.048-4.608 4.608-4.608h100.352c2.56 0 4.608 2.048 4.608 4.608V571.392c0 2.56-2.048 4.608-4.608 4.608H353.792c-2.56 0-4.608-2.048-4.608-4.608v-372.224z m217.6 0c0-2.56 2.048-4.608 4.608-4.608h100.352c2.56 0 4.608 2.048 4.608 4.608V571.392c0 2.56-2.048 4.608-4.608 4.608h-100.352c-2.56 0-4.608-2.048-4.608-4.608v-372.224z" horiz-adv-x="1024" />
<glyph glyph-name="shitinghui" unicode="&#59731;" d="M512-128C229.376-128 0 101.376 0 384S229.376 896 512 896s512-229.376 512-512-229.376-512-512-512z m0 64c247.296 0 448 200.704 448 448S759.296 832 512 832 64 631.296 64 384s200.704-448 448-448zM666.112 401.92L378.88 567.296c-6.144 3.584-13.824 3.584-19.968 0-6.144-3.584-10.24-10.24-9.728-17.408v-331.264c0-7.168 3.584-13.824 9.728-17.408 6.144-3.584 13.824-3.584 19.968 0l286.72 165.376c6.144 3.584 10.24 10.24 10.24 17.408 0 7.68-3.584 14.336-9.728 17.92z" horiz-adv-x="1024" />
<glyph glyph-name="gerenzhongxin_wodeyouxi-xuanzhong" unicode="&#59730;" d="M299.008 619.52c-80.896 0-147.456-65.536-147.456-147.456 0-80.896 65.536-147.456 147.456-147.456 80.896 0 147.456 65.536 147.456 147.456C445.44 553.984 379.392 619.52 299.008 619.52z m0-231.424c-47.616 0-85.504 38.4-85.504 84.992S251.392 558.08 299.008 558.08s85.504-38.4 85.504-84.992-38.4-84.992-85.504-84.992zM844.8 503.296h-85.504V588.8c0 16.896-13.312 30.72-30.72 30.72-16.896 0-30.72-13.312-30.72-30.72v-85.504h-84.992c-16.896 0-30.72-13.312-30.72-30.72 0-16.896 13.312-30.72 30.72-30.72h85.504v-85.504c0-16.896 13.312-30.72 30.72-30.72 16.896 0 30.72 13.312 30.72 30.72V441.344h85.504c16.896 0 30.72 13.312 30.72 30.72 0 17.92-14.336 31.232-31.232 31.232zM1025.024 619.52c0 101.376-82.432 184.832-184.832 184.832h-133.12c-28.16 0-54.784-16.896-66.56-41.472-12.288-27.648-40.96-45.568-70.656-45.568H456.192c-26.624 0-53.248 18.432-67.584 46.592-12.288 24.064-38.4 39.936-65.536 39.936H185.856C83.968 804.352 1.024 721.92 1.024 619.52v-501.76c0-43.52 16.896-83.968 48.128-114.688 30.72-30.72 72.192-47.616 115.712-47.616h1.024c90.624 0 130.56 36.864 159.744 143.872l34.304 102.4h307.2l34.304-103.936c31.744-92.16 66.56-142.336 161.28-142.336 90.112 0 163.328 73.216 163.328 163.328V619.52h-1.024z m-61.952-211.968v-288.768c0-55.808-45.568-101.376-101.376-101.376-52.224 0-73.216 14.336-103.424 100.864l-40.96 124.928a29.184 29.184 0 0 1-28.16 20.992H337.408c-13.312 0-25.088-8.192-29.184-20.992l-40.96-124.928c0-1.024 0-1.024-1.024-1.536-25.6-94.72-50.176-98.816-100.864-98.816-27.648 0-53.248 10.752-72.192 30.208-18.944 18.944-30.208 45.056-30.208 71.68V619.52c0 67.584 54.784 123.392 123.392 123.392h136.704c5.12 0 9.216-2.56 10.752-5.632 25.088-50.176 72.192-80.896 123.392-80.896h114.176c54.272 0 103.424 31.744 126.464 81.408 1.536 3.584 5.632 5.632 10.752 5.632h133.12c67.584 0 123.392-54.784 123.392-123.392l-2.048-212.48z" horiz-adv-x="1026" />
<glyph glyph-name="luyinbofang" unicode="&#59729;" d="M299.52 254.976L152.576 403.968 299.52 552.96c37.376-37.888 60.928-90.624 60.928-148.992s-23.04-110.592-60.928-148.992z m190.464-188.928l-88.064 89.6c60.416 60.928 97.28 145.408 97.28 238.592s-37.376 177.152-97.28 238.592L489.984 721.92c82.944-83.968 134.144-199.68 134.144-327.68 0-128.512-51.2-244.224-134.144-328.192zM656.384-122.88L568.32-33.28c105.472 106.496 170.496 254.464 170.496 417.28S673.792 693.76 568.32 800.768l88.064 89.6c128-129.536 206.848-308.736 206.848-506.368s-78.848-377.344-206.848-506.88z" horiz-adv-x="1024" />
<glyph glyph-name="shangyi" unicode="&#59037;" d="M580.271026 622.963451h204.795244L511.958389 896 238.93373 622.963451h211.298379v-750.963451h130.038917z" horiz-adv-x="1024" />
<glyph glyph-name="xiayi" unicode="&#59038;" d="M580.271026 145.02466h204.795244L511.958389-128 238.93373 145.02466h211.298379V896h130.038917z" horiz-adv-x="1024" />
<glyph glyph-name="tianjia" unicode="&#59728;" d="M471.552 427.008V862.72h85.504v-435.712h435.2v-85.504h-435.2v-435.2H471.552v435.2h-435.2V427.008h435.2z" horiz-adv-x="1024" />
<glyph glyph-name="gengduo" unicode="&#59187;" d="M512 793.6m-102.4 0a102.4 102.4 0 1 1 204.8 0 102.4 102.4 0 1 1-204.8 0ZM512 384m-102.4 0a102.4 102.4 0 1 1 204.8 0 102.4 102.4 0 1 1-204.8 0ZM512-25.6m-102.4 0a102.4 102.4 0 1 1 204.8 0 102.4 102.4 0 1 1-204.8 0Z" horiz-adv-x="1024" />
<glyph glyph-name="xuanze" unicode="&#59502;" d="M1.554963 383.81037l116.660148 116.660149 379.448889-379.467852-116.622222-116.660148zM379.58163 4.171852l-116.660149 116.641185 642.275556 642.275556 116.660148-116.641186z" horiz-adv-x="1024" />
<glyph glyph-name="duanxinmobanku" unicode="&#59726;" d="M768 300.032H453.632c-9.216 0-16.896-7.68-16.896-16.896v-13.312c0-9.216 7.68-16.896 16.896-16.896H768c9.216 0 16.896 7.68 16.896 16.896v13.312c0 9.216-7.68 16.896-16.896 16.896zM975.872 221.696c31.744 49.664 48.128 100.864 48.128 153.088 0 47.104-11.264 92.672-33.28 136.192-20.992 40.96-50.688 77.824-88.576 109.568-75.264 63.488-176.128 99.328-276.992 99.328-107.008 0-206.848-35.328-282.112-99.84-75.776-65.024-117.76-152.064-117.76-245.248s41.984-180.224 117.76-245.248c74.752-64 175.104-99.328 282.112-99.328 43.52 0 86.016 9.728 127.488 19.968l169.472-93.184L875.52 112.64c41.472 33.792 75.776 70.144 100.352 109.056z m-155.648-69.632l-14.848-11.264 18.432-61.44-68.096 37.376-10.24-2.56c-39.936-10.24-81.408-20.48-120.832-20.48-91.136 0-175.616 29.696-238.592 83.456-61.44 52.736-95.232 122.88-95.232 197.12s33.792 144.384 95.232 196.608C449.024 624.64 533.504 654.336 624.64 654.336c85.504 0 170.496-30.72 233.984-83.968 64-53.76 99.328-123.392 99.328-196.608 0-39.936-12.8-80.384-37.888-119.296-23.552-35.84-57.344-70.656-99.84-102.4zM768 395.776H453.632c-9.216 0-16.896-7.68-16.896-16.896v-13.312c0-9.216 7.68-16.896 16.896-16.896H768c9.216 0 16.896 7.68 16.896 16.896V378.88c0 9.216-7.68 16.896-16.896 16.896zM768 491.52H453.632c-9.216 0-16.896-7.68-16.896-16.896v-13.312c0-9.216 7.68-16.896 16.896-16.896H768c9.216 0 16.896 7.68 16.896 16.896v13.312c0 9.216-7.68 16.896-16.896 16.896zM215.04 789.504c-118.272 0-215.04-80.384-215.04-182.784 0-58.88 32.256-107.52 86.016-145.408l-21.504-64.512 75.264 37.888c24.576-4.608 44.544-9.728 68.096-10.752 7.68 118.784 88.576 219.648 202.752 266.24C373.76 749.568 298.496 789.504 215.04 789.504zM146.944 666.112c0-16.384-13.312-29.696-29.696-29.696s-29.696 13.312-29.696 29.696c0 16.384 13.312 29.696 29.696 29.696 16.384-0.512 29.696-13.312 29.696-29.696z m151.04 0c0-16.384-13.312-29.696-29.696-29.696s-29.696 13.312-29.696 29.696c0 16.384 13.312 29.696 29.696 29.696 16.384-0.512 29.696-13.312 29.696-29.696z" horiz-adv-x="1024" />
<glyph glyph-name="sucaiku" unicode="&#59725;" d="M52.224 528.896h32.256V811.008c0 22.528 19.968 42.496 42.496 42.496h319.488c12.288 0 25.088-5.12 32.256-14.848l147.456-159.744H1003.52c22.528 0 42.496-19.968 42.496-42.496v-104.96h32.256c22.528 0 42.496-19.968 42.496-42.496V481.28l-70.144-546.816c-2.56-12.288-10.24-25.088-19.968-30.208-7.68-7.68-17.408-12.288-30.208-12.288H127.488c-12.288 0-22.528 5.12-30.208 12.288-10.24 7.68-17.408 19.968-19.968 32.256L10.24 481.28c-2.56 22.528 12.288 45.056 37.376 47.616h4.608z m117.76 0h791.552V591.36h-349.696c-12.288 0-22.528 5.12-32.256 14.848L429.568 768.512H169.984v-239.616z m861.696-84.992h-931.84l57.344-461.824h816.64l57.856 461.824z" horiz-adv-x="1122" />
<glyph glyph-name="moban" unicode="&#59722;" d="M956.709 896H190.17c-35.108 0-64.365-29.257-64.365-64.366v-58.514H67.29c-35.108 0-64.365-29.257-64.365-70.217v-766.537c0-35.109 29.257-64.366 64.365-64.366H833.83c35.108 0 64.365 29.257 64.365 64.366V-5.12h58.515c35.108 0 58.514 23.406 64.365 58.514V825.783C1021.074 866.743 991.817 896 956.71 896z m-122.88-122.88H196.023V825.783h754.834v-754.834h-52.663V702.903c0 40.96-29.257 70.217-64.365 70.217z m-23.406-830.903H73.143V697.051h754.834v-754.834h-17.554zM219.429 258.194h163.84v-163.84h-163.84z m280.868 275.017h163.84v-163.84h-163.84z m-280.868 0h163.84v-163.84h-163.84z m280.868-275.017h163.84v-163.84h-163.84z" horiz-adv-x="1024" />
<glyph glyph-name="duanxiqunfa" unicode="&#59721;" d="M922.2 701.1h-37.4v74.4c0 20.6-16.7 37.3-37.3 37.3h-672c-20.6 0-37.3-16.7-37.3-37.3v-74.4h-36.5c-20.6 0-37.3-16.7-37.3-37.3v-671.2c0-20.6 16.7-37.3 37.3-37.3h820.4c20.6 0 37.3 16.7 37.3 37.3V663.8c0.1 20.6-16.6 37.3-37.2 37.3z m-709.4 37.1h597.4v-36.9H212.8v36.9z m672.1-708.4H139.1V626.5h745.8v-596.7zM512 147.8c15.4 0 29.8 6.6 40.1 18.3l278.6 278.6-52.7 52.8-266-266-266 266-52.7-52.7 278.6-278.6c10.3-11.7 24.8-18.4 40.1-18.4z" horiz-adv-x="1024" />
<glyph glyph-name="zidingyi" unicode="&#59720;" d="M898.56-128H110.592c-21.504 0-39.424 17.408-39.424 39.424V856.576c0 21.504 17.408 39.424 39.424 39.424h630.272c11.264 0 21.504-4.608 29.184-12.8l157.696-171.008c6.656-7.168 10.24-16.896 10.24-26.624v-144.384c0-21.504-17.408-39.424-39.424-39.424s-39.424 17.408-39.424 39.424V670.72l-135.68 146.432h-573.44v-866.304h709.12v314.88c0 21.504 17.408 39.424 39.424 39.424s39.424-17.408 39.424-39.424v-354.304c0-22.016-17.92-39.424-39.424-39.424zM583.168 581.12H268.288c-21.504 0-39.424 17.408-39.424 39.424s17.408 39.424 39.424 39.424h314.88c21.504 0 39.424-17.408 39.424-39.424s-17.408-39.424-39.424-39.424z m0-236.544H268.288c-21.504 0-39.424 17.408-39.424 39.424 0 21.504 17.408 39.424 39.424 39.424h314.88c21.504 0 39.424-17.408 39.424-39.424 0-21.504-17.408-39.424-39.424-39.424z m-157.184-314.88c-12.8 0-25.088 6.144-32.256 16.384-12.8 17.92-8.704 42.496 9.216 54.784h0.512l551.424 393.728c17.92 12.8 42.496 8.192 55.296-9.216 12.8-17.92 8.192-42.496-9.216-55.296L448.512 36.864c-6.656-4.608-14.336-7.168-22.528-7.168z" horiz-adv-x="1024" />
<glyph glyph-name="tonghuashezhi" unicode="&#59719;" d="M622.08 482.816v284.16c0 20.48 16.384 36.864 36.864 36.864s36.864-16.384 36.864-36.864v-284.16c0-20.48-16.384-36.864-36.864-36.864s-36.864 16.384-36.864 36.864z m144.896 0v284.16c0 20.48 16.384 36.864 36.864 36.864s36.864-16.384 36.864-36.864v-284.16c0-20.48-16.384-36.864-36.864-36.864s-36.864 16.384-36.864 36.864zM239.616 756.736l127.488-127.488-113.152-113.664-33.28-33.28 17.408-44.032c59.392-149.504 179.712-270.336 329.728-330.24l44.032-17.408 33.28 33.28 113.152 113.152L885.76 109.568 762.88-13.824c-9.728-9.728-24.064-15.36-36.864-15.36-3.584 0-5.632 0.512-5.632 0.512l-1.536 0.512-1.536 0.512C574.464-4.096 432.64 72.704 316.928 187.904S124.416 445.44 100.864 587.776c-2.56 15.872 3.072 32.768 14.848 44.544l123.904 124.416m0 73.728c-17.408 0-34.816-7.168-47.104-19.456l-128-127.488C36.352 655.36 23.04 614.912 29.696 576 56.32 418.816 140.288 262.656 266.24 136.704s282.112-209.408 439.296-235.52c6.656-1.536 13.824-2.048 20.48-2.048 32.256 0 64 13.312 87.552 36.352l127.488 127.488c26.112 26.112 26.112 68.096 0 94.208L805.376 291.84c-12.288 12.288-29.696 19.456-47.104 19.456-17.408 0-34.816-7.168-47.104-19.456L594.432 175.104C461.824 228.352 357.376 332.8 304.64 465.408l116.736 116.736c26.112 26.112 26.112 68.096 0 94.208L286.72 811.008c-12.288 12.288-29.696 19.456-47.104 19.456z" horiz-adv-x="1024" />
<glyph glyph-name="piliangqunfa" unicode="&#59718;" d="M649.216 522.24s12.8 216.064 205.824 260.608V866.816l138.24-138.752-137.728-137.216V674.816S730.624 691.2 649.216 522.24zM305.664 590.848h275.456V522.24H305.664V590.848z m0-276.48h413.696V245.76H305.664v68.608zM923.136 523.264h-68.608v-414.208H237.056V728.064h413.696V797.184H167.936v-137.216H30.72l-0.512-756.736h755.2v137.216h137.728V523.264zM716.8-28.16H99.328V590.848h68.608v-550.912H716.8v-68.096z" horiz-adv-x="1024" />
<glyph glyph-name="dianjianxiangqing" unicode="&#59678;" d="M739.328 624.64V680.96c0 5.12-4.096 9.216-9.216 9.216h-450.56c-5.12 0-9.216-4.096-9.216-9.216v-56.32c0-5.12 4.096-9.216 9.216-9.216h450.048c5.12-0.512 9.728 4.096 9.728 9.216zM279.552 521.216c-5.12 0-9.216-4.096-9.216-9.216v-56.32c0-5.12 4.096-9.216 9.216-9.216h215.552c5.12 0 9.216 4.096 9.216 9.216V512c0 5.12-4.096 9.216-9.216 9.216H279.552zM495.104-15.36H176.64V809.472h656.384v-347.136c0-5.12 4.096-9.216 9.216-9.216h65.536c5.12 0 9.216 4.096 9.216 9.216v394.24c0 20.992-16.896 37.376-37.376 37.376H129.536C108.544 893.952 92.16 877.056 92.16 856.576v-919.04c0-20.992 16.896-37.376 37.376-37.376h365.568c5.12 0 9.216 4.096 9.216 9.216v65.536c0.512 5.632-3.584 9.728-9.216 9.728zM834.56 102.4c19.968 30.72 32.256 67.584 32.256 107.008 0 108.544-89.088 197.632-197.632 197.632s-197.632-89.088-197.632-197.632c0-108.544 89.088-197.632 197.632-197.632 40.96 0 78.848 12.288 110.592 33.792l111.616-111.616L947.2-10.24l-112.64 112.64z m-165.376-11.264c-65.536 0-118.784 53.248-118.784 118.784 0 65.536 53.248 118.784 118.784 118.784 65.536 0 118.784-53.248 118.784-118.784s-53.76-118.784-118.784-118.784z" horiz-adv-x="1024" />
<glyph glyph-name="icon_yunxiazai" unicode="&#59112;" d="M790.528 486.4c-18.432 141.824-136.704 252.416-278.528 252.416S251.904 628.736 233.472 486.4C117.76 478.72 25.6 378.88 25.6 258.048c0-125.952 99.84-228.864 220.672-228.864h533.504c120.832 2.56 218.112 102.4 218.112 228.864C998.4 378.88 906.24 478.72 790.528 486.4z m-286.208-389.12l-194.56 223.232h131.584V528.384h125.952v-207.872h131.584l-194.56-223.232z" horiz-adv-x="1024" />
<glyph glyph-name="xuanzhong" unicode="&#59677;" d="M64-64h757.4C898-64 960-2 960 74.6V832L64-64z m792.7 399.7L626.9 65.9s-16.7-23.3-40 0L487 199.1s-13.3 16.7 3.3 30c6.7 3.3 16.7 10 30-3.3l89.9-69.9L830.1 359s13.3 13.3 26.6 3.3c6.7-3.3 10-13.3 0-26.6z" horiz-adv-x="1024" />
<glyph glyph-name="shezhi" unicode="&#59676;" d="M1012.835 483.847c-5.983 31.606-25.284 52.028-49.17 52.028-0.304 0-0.613-0.005-0.783-0.01h-4.396c-69.082 0-125.285 56.203-125.285 125.281 0 22.419 10.816 47.554 10.908 47.771 12.379 27.865 2.854 62.036-22.133 79.473l-1.513 1.061-126.961 70.535-1.605 0.7c-8.27 3.599-17.322 5.42-26.906 5.42-19.637 0-38.952-7.881-51.658-21.072-13.923-14.375-61.99-55.404-98.927-55.404-37.269 0-85.621 41.835-99.605 56.474C402.031 859.565 382.56 867.6 362.722 867.6c-9.394 0-18.282-1.758-26.411-5.226l-1.652-0.7-131.443-72.202-1.553-1.079c-25.071-17.42-34.646-51.558-22.28-79.413 0.109-0.25 10.938-25.245 10.938-47.83 0-69.083-56.2-125.285-125.28-125.285h-4.33c-0.3 0.009-0.6 0.013-0.9 0.013-23.861 0-43.144-20.426-49.127-52.037C10.253 481.527 0 426.576 0 383.597c0-42.979 10.254-97.928 10.69-100.251 5.982-31.607 25.28-52.027 49.155-52.027 0.303 0 0.618 0.004 0.796 0.008h4.4c69.08 0 125.28-56.2 125.28-125.28 0-22.447-10.81-47.55-10.908-47.765-12.37-27.848-2.874-62.018 22.102-79.497l1.484-1.033 124.542-69.65 1.587-0.697c8.264-3.63 17.29-5.47 26.822-5.47 19.92 0 39.374 8.222 52.041 22.003 17.693 19.219 65.684 58.91 101.127 58.91 38.382 0 87.596-44.494 101.8-60.067 12.697-14.007 32.284-22.377 52.401-22.381h0.004c9.35 0 18.214 1.778 26.354 5.284l1.613 0.702 129.105 71.352 1.525 1.065c25.024 17.439 34.576 51.58 22.235 79.372-0.106 0.254-10.954 25.583-10.954 47.871 0 69.08 56.203 125.28 125.285 125.28h4.266c0.281-0.004 0.568-0.008 0.85-0.008 23.93 0.004 43.25 20.426 49.222 52.008 0.107 0.558 10.701 56.216 10.701 100.27 0 43.177-10.251 97.94-10.69 100.251z m-656.233-509.59l-108.943 60.925c4.8 12.325 14.582 41.104 14.582 70.866 0 103.332-79.52 188.758-181.933 196.619-2.505 14.574-8.385 51.924-8.385 80.93 0 28.958 5.88 66.343 8.38 80.93 102.418 7.85 181.937 93.283 181.937 196.62 0 29.681-9.731 58.382-14.523 70.714l115.932 63.674h0.01c4.178-4.266 20.895-20.86 43.984-37.312 37.72-26.886 73.64-40.52 106.762-40.52 32.796 0 68.428 13.369 105.91 39.736 22.94 16.138 39.58 32.41 43.75 36.605 0.009 0 0.018 0.004 0.022 0.004l111.756-62.09c-4.796-12.333-14.564-41.092-14.564-70.812 0-103.335 79.52-188.77 181.938-196.619 2.5-14.61 8.384-52.06 8.384-80.935 0-28.992-5.88-66.358-8.379-80.932-102.418-7.854-181.938-93.28-181.938-196.62 0-29.712 9.744-58.431 14.542-70.762l-113.16-62.534c-4.88 5.183-21.353 22.067-44.151 39.004-38.449 28.552-75.258 43.029-109.396 43.029-33.81 0-70.34-14.209-108.57-42.224-22.47-16.473-39.054-33.192-43.947-38.296z m0 0M690.817 384.255c0 99.951-81.318 181.27-181.275 181.27-99.95 0-181.263-81.319-181.263-181.27 0-99.95 81.314-181.264 181.263-181.264 99.958 0 181.275 81.313 181.275 181.264zM509.543 493.596c60.298 0 109.35-49.048 109.35-109.341 0-60.291-49.053-109.345-109.35-109.345-60.291 0-109.34 49.054-109.34 109.345 0 60.293 49.049 109.341 109.34 109.341z m0 0" horiz-adv-x="1040" />
<glyph glyph-name="yingyongpeizhi" unicode="&#59059;" d="M99.182166 784.34891c-19.140187 0-31.900312-15.950156-31.900312-31.900312v-258.392523c0-19.140187 15.950156-31.900312 31.900312-31.900312h258.392523c19.140187 0 31.900312 15.950156 31.900312 31.900312V752.448598c0 19.140187-15.950156 31.900312-31.900312 31.900312H99.182166z m0 63.800623h258.392523c54.23053 0 98.890966-44.660436 98.890966-98.890966v-258.392523c0-54.23053-44.660436-98.890966-98.890966-98.890966H99.182166c-54.23053 0-98.890966 44.660436-98.890966 98.890966V749.258567c0 54.23053 44.660436 98.890966 98.890966 98.890966z m0-583.775701c-19.140187 0-31.900312-15.950156-31.900312-31.900312v-258.392523c0-19.140187 15.950156-31.900312 31.900312-31.900312h258.392523c19.140187 0 31.900312 15.950156 31.900312 31.900312v258.392523c0 19.140187-15.950156 31.900312-31.900312 31.900312H99.182166z m0 63.800623h258.392523c54.23053 0 98.890966-44.660436 98.890966-98.890966V-29.109034c0-54.23053-44.660436-98.890966-98.890966-98.890966H99.182166C44.951636-128 0.2912-83.339564 0.2912-29.109034v258.392523c0 57.420561 44.660436 98.890966 98.890966 98.890966zM552.166589 698.218069c-15.950156-9.570093-22.330218-28.71028-12.760124-44.660437l130.791277-223.30218c9.570093-15.950156 28.71028-22.330218 44.660436-12.760125l223.302181 130.791277c15.950156 9.570093 22.330218 28.71028 12.760124 44.660436l-130.791277 223.302181c-9.570093 15.950156-28.71028 22.330218-44.660436 12.760125l-223.302181-130.791277z m-31.900311 54.230529l223.302181 130.791277c47.850467 25.520249 105.271028 9.570093 133.981308-35.090342l130.791277-223.302181c25.520249-47.850467 9.570093-105.271028-35.090342-133.981308l-223.302181-130.791278c-47.850467-25.520249-105.271028-9.570093-133.981309 35.090343l-130.791277 223.302181c-28.71028 47.850467-12.760125 108.461059 35.090343 133.981308z m95.700934-488.074766c-19.140187 0-31.900312-15.950156-31.900311-31.900312v-258.392523c0-19.140187 15.950156-31.900312 31.900311-31.900312h258.392524c19.140187 0 31.900312 15.950156 31.900311 31.900312v258.392523c0 19.140187-15.950156 31.900312-31.900311 31.900312h-258.392524z m0 63.800623h258.392524c54.23053 0 98.890966-44.660436 98.890966-98.890966V-29.109034c0-54.23053-44.660436-98.890966-98.890966-98.890966h-258.392524c-54.23053 0-98.890966 44.660436-98.890965 98.890966v258.392523c3.190031 57.420561 44.660436 98.890966 98.890965 98.890966z" horiz-adv-x="1024" />
<glyph glyph-name="kaquan" unicode="&#59656;" d="M992 5.76H32a32 32 0 0 0-32 32V256a32 32 0 0 0 32 32 97.28 97.28 0 0 1 99.2 96A96.64 96.64 0 0 1 32 485.76a32 32 0 0 0-32 32V736a32 32 0 0 0 32 32h960a32 32 0 0 0 32-32v-218.24a32 32 0 0 0-32-32A99.2 99.2 0 1 1 992 288a32 32 0 0 0 32-32v-218.24a32 32 0 0 0-32-32z m-928 64h896V227.2a162.56 162.56 0 0 0 0 320V704H64v-157.44a162.56 162.56 0 0 0 0-320zM384 224a32 32 0 0 0-22.4 54.4l258.56 261.76a32 32 0 0 0 45.44 0 32 32 0 0 0 0-44.8L403.84 233.6A32.64 32.64 0 0 0 384 224z m19.2 218.24a97.28 97.28 0 1 0 97.28 97.28 97.92 97.92 0 0 0-97.28-97.28z m0 128a33.28 33.28 0 1 1 33.28-33.28 33.28 33.28 0 0 1-33.28 35.84z m217.6-433.28a97.28 97.28 0 1 0 97.92 97.28 97.28 97.28 0 0 0-97.92-97.28z m0 128a33.28 33.28 0 1 1 33.92-33.28 33.28 33.28 0 0 1-33.92 35.84z" horiz-adv-x="1024" />
<glyph glyph-name="caozuorizhi" unicode="&#59657;" d="M883.448 822.857H730.91V861.728A34.272 34.272 0 0 1 696.64 896H326.292a34.304 34.304 0 0 1-34.239-34.272v-38.87h-151.5c-36.896 0-66.924-31.778-66.924-70.844v-809.139c0-39.098 30.028-70.875 66.923-70.875h742.896c36.895 0 66.923 31.777 66.923 70.875v809.14c0 39.065-30.028 70.842-66.923 70.842z m-522.82 4.568h301.707v-82.278H360.629z m521.135-884.55a5.798 5.798 0 0 0-0.42-2.3H142.624a5.798 5.798 0 0 0-0.42 2.3v809.14a5.636 5.636 0 0 0 0.42 2.267h149.428v-43.439a34.304 34.304 0 0 1 34.24-34.272h370.346a34.272 34.272 0 0 1 34.271 34.272v43.439h150.432a5.636 5.636 0 0 0 0.421-2.268zM696.639 225.016H326.292a34.304 34.304 0 1 1 0-68.575H696.64a34.304 34.304 0 0 1 0 68.575z m-13.087 304.719H318.194c-14.447 0-26.14-15.354-26.14-34.272s11.563-34.271 26.14-34.271h365.358c14.447 0 26.141 15.322 26.141 34.271s-11.694 34.272-26.14 34.272zM597 369.52H318.194c-14.447 0-26.14-15.354-26.14-34.271s11.563-34.304 26.14-34.304H597c14.447 0 26.14 15.354 26.14 34.304S611.447 369.52 597 369.52z" horiz-adv-x="1024" />
<glyph glyph-name="shenhejilu" unicode="&#59658;" d="M774.656 604.16H265.728c-19.968 0-36.352 16.384-36.352 36.352s16.384 36.352 36.352 36.352h508.928c19.968 0 36.352-16.384 36.352-36.352s-16.384-36.352-36.352-36.352zM558.08 384H267.264c-19.968 0-36.352 16.384-36.352 36.352s16.384 36.352 36.352 36.352H558.08c19.968 0 36.352-16.384 36.352-36.352s-16.384-36.352-36.352-36.352z m-147.968-216.064H264.704c-19.968 0-36.352 16.384-36.352 36.352s16.384 36.352 36.352 36.352h145.408c19.968 0 36.352-16.384 36.352-36.352s-16.384-36.352-36.352-36.352zM920.576 892.928H120.832C80.896 892.928 48.128 860.16 48.128 820.224v-872.448c0-39.936 32.768-72.704 72.704-72.704h289.792c19.968 0 36.352 16.384 36.352 36.352s-16.384 36.352-36.352 36.352H120.832V820.224h799.744v-254.464c0-19.968 16.384-36.352 36.352-36.352s36.352 16.384 36.352 36.352V820.224C993.28 860.672 960.512 892.928 920.576 892.928zM920.064 151.04H901.12l-61.44 105.984c29.696 25.088 48.64 61.952 48.64 103.936 0 74.752-60.416 135.68-135.68 135.68s-135.68-60.416-135.68-135.68c0-45.056 22.016-84.992 56.32-109.568l-57.856-100.352h-23.552c-39.936 0-72.704-32.768-72.704-72.704v-128c0-39.936 32.768-72.704 72.704-72.704h327.68c39.936 0 72.704 32.768 72.704 72.704v128c0.512 39.936-31.744 72.704-72.192 72.704z m-166.912 272.896c34.816 0 62.976-28.16 62.976-62.976 0-34.816-28.16-62.976-62.976-62.976-34.816 0-62.976 28.16-62.976 62.976 0 34.816 28.16 62.976 62.976 62.976z m64-272.896h-117.76l43.52 74.752c3.072 0 6.656-0.512 10.24-0.512 6.656 0 13.824 0.512 20.48 1.536l43.52-75.776z m102.912-200.704h-327.68v128h327.68v-128z" horiz-adv-x="1024" />
<glyph glyph-name="buzhichi" unicode="&#58956;" d="M512 751.930903c-249.594615 0-451.930903-202.337311-451.930903-451.930903 0-249.594615 202.336288-451.930903 451.930903-451.930903 249.593592 0 451.930903 202.336288 451.930903 451.930903C963.930903 549.593592 761.593592 751.930903 512 751.930903zM884.842637 300c0-93.034906-34.154891-178.041976-90.50734-243.35961L268.64039 582.334273c65.317635 56.352449 150.323681 90.508363 243.35961 90.508363C717.913766 672.842637 884.842637 505.91479 884.842637 300zM139.157363 300c0 84.375689 28.060079 162.17766 75.312266 224.658689L736.658689 2.46963c-62.482053-47.252187-140.284023-75.312266-224.658689-75.312266C306.08521-72.842637 139.157363 94.08521 139.157363 300z" horiz-adv-x="1024" />
<glyph glyph-name="tongjibaobiao" unicode="&#58885;" d="M987.467882 802.303907H548.581526V859.545501A36.454396 36.454396 0 0 1 512.02473 895.999898a36.659196 36.659196 0 0 1-36.659197-36.659197v-57.036794H36.581577A38.092796 38.092796 0 0 1 0.024781 762.879911v-626.892737A38.092796 38.092796 0 0 1 36.581577 97.279977h438.886356v-61.439993L329.752748-56.320007a36.659196 36.659196 0 0 1-12.902399-48.332795l2.048-3.7888a36.659196 36.659196 0 0 1 51.814395-13.823999l131.276787 81.919992h21.913597l131.276787-81.919992A36.659196 36.659196 0 0 1 706.58471-108.544002l1.9456 3.584A36.659196 36.659196 0 0 1 696.344711-56.320007l-147.763185 91.443191V97.279977h438.886356a38.092796 38.092796 0 0 1 36.556796 38.707197V762.879911a38.092796 38.092796 0 0 1-36.556796 39.423996z m-36.556796-627.097537H73.138373V723.967915h877.772713z m-96.051191 440.319956l1.2288-1.536a36.659196 36.659196 0 0 0-3.686399-50.073595l-312.012769-286.719972a36.659196 36.659196 0 0 0-49.459195 0l-137.215987 123.801588a36.659196 36.659196 0 0 1-49.151995 0l-81.919991-73.113593a36.659196 36.659196 0 0 0-52.940795 4.9152l-1.3312 1.7408a36.659196 36.659196 0 0 0 4.4032 49.459195l133.119986 118.783988a36.659196 36.659196 0 0 0 49.049595 0L491.544732 378.982349a36.659196 36.659196 0 0 1 49.459195 0L801.407101 619.519925a36.659196 36.659196 0 0 0 53.452794-4.403199z" horiz-adv-x="1024" />
<glyph glyph-name="baobeifuzhi" unicode="&#59659;" d="M981.333 896h-768c-25.6 0-42.666-17.067-42.666-42.667v-128h-128C17.067 725.333 0 708.267 0 682.667v-768c0-25.6 17.067-42.667 42.667-42.667h768c25.6 0 42.666 17.067 42.666 42.667v128h128c25.6 0 42.667 17.066 42.667 42.666v768C1024 878.933 1006.933 896 981.333 896zM768-42.667H85.333V640H768v-682.667zM938.667 128h-85.334V682.667c0 25.6-17.066 42.666-42.666 42.666H256V810.667h682.667V128z" horiz-adv-x="1024" />
</font>
</defs></svg>
<template>
<div id="app" class="dm-reset">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
};
</script>
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors: 无尘
* @LastEditTime: 2020-07-20 15:30:24
*/
// import Vue from 'vue';
import axios from 'axios';
import qs from 'qs';
import { Message } from 'element-ui';
/**
* 获取好办 企业 id
*/
// if (!!localStorage.getItem('userInfos')) {
// let haobanSign = JSON.parse(localStorage.getItem('userInfos')).enterpriseId;
// axios.defaults.headers.post['haobansign'] = haobanSign;
// axios.defaults.headers.get['haobansign'] = haobanSign;
// }
axios.defaults.timeout = 500000;
let local = window.location.origin;
/* if (local.indexOf('localhost') != -1) {
local = 'http://www.gicdev.com';
} */
let axiosPromiseArr = []; //储存cancel toke
let pending = []; //声明一个数组用于存储每个ajax请求的取消函数和ajax标识
let CancelToken = axios.CancelToken;
let removePending = ever => {
for (let p in pending) {
if (pending[p].u === ever.url + '&' + ever.method) {
//当当前请求在数组中存在时执行函数体
pending[p].f(); //执行取消操作
pending.splice(p, 1); //把这条记录从数组中移除
}
}
};
axios.interceptors.request.use(
config => {
removePending(config); //在一个ajax发送前执行一下取消操作
config.cancelToken = new CancelToken(c => {
// 这里的ajax标识我是用请求地址&请求方式拼接的字符串,当然你可以选择其他的一些方式
pending.push({
u: config.url + '&' + config.method,
f: c
});
});
// 在发送请求设置cancel token
config.cancelToken = new axios.CancelToken(cancel => {
axiosPromiseArr.push({
cancel
});
});
return config;
},
err => {
Message.error({ message: '请求超时!' });
return Promise.resolve(err);
}
);
axios.interceptors.response.use(
data => {
removePending(data.config); //在一个ajax响应后再执行一下取消操作,把已经完成的请求从pending中移除
// console.log(data);
if (data.status && data.status == 200 && data.data.errorCode != 1) {
// Message.error({message: data.data.message});
if (data.data.errorCode == 4) {
if (window.location.href.indexOf('gic-error') != -1) {
return false;
}
window.location.href = local + '/haoban-4/#/login';
}
/* if (data.data.errorCode == 3) {
Message.error({ message: data.data.message });
window.location.href = local + '/haoban-3/#/login';
} */
if (data.data.errorCode == 10 || data.data.errorCode == 7) {
window.location.href = local + '/haoban-4/#/index';
}
return data;
}
return data;
},
err => {
// console.log(err, typeof err, err.response);
if (axios.isCancel(err)) {
// console.log('请求取消');
}
if (err.response.status == 502) {
window.location.href = local + '/haoban-4/#/login';
Message.error({ message: '服务异常⊙﹏⊙∥' });
}
// Message.error({message: err.response.message});
if (err.response.status == 504 || err.response.status == 404) {
// window.location.href= local + "/haoban-3/#/login"
// Message.error({message: '服务异常⊙﹏⊙∥'});
} else if (err.response.status == 403) {
// window.location.href= local + "/haoban-3/#/login"
// Message.error({message: '权限不足,请联系管理员!'});
} else {
window.location.href = local + '/haoban-4/#/login';
Message.error({ message: '登录失效!' });
}
return Promise.resolve(err);
}
);
/*
*
* 统一 get 请求方法
* @url: 请求的 url
* @params: 请求带的参数
* @header: 带 token
*
*/
export const getRequest = (url, params) => {
params.requestProject = 'haoban-manage-web';
return axios({
method: 'get',
url: `${local}${url}`,
data: {},
params: params,
headers: {
'Content-type': 'application/x-www-form-urlencoded'
}
});
};
/**
*
* 统一 post 请求方法
* url: 请求的 url
* @params: 请求带的参数
* @header:
*
*/
export const postRequest = (url, params) => {
params.requestProject = 'haoban-manage-web';
return axios({
method: 'post',
url: `${local}${url}`,
data: qs.stringify(params),
headers: {
'Content-type': 'application/x-www-form-urlencoded'
}
});
};
export const postJsonRequest = (url, params) => {
params.requestProject = 'haoban-manage-web';
return axios({
method: 'post',
url: `${local}${url}`,
data: '{}',
params: params,
headers: { 'Content-Type': 'application/json;charset=UTF-8' }
});
};
/**
* method: 'post'
* 'Content-Type': 'application/json;charset=UTF-8'
* @data: params
* @requestProject: 'haoban-manage-web'
*
*/
export const postJson = (url, params) => {
// params.requestProject = "haoban-manage-web";
return axios({
method: 'post',
url: `${local}${url}`,
data: params,
params: { requestProject: 'haoban-manage-web' },
headers: { 'Content-Type': 'application/json;charset=UTF-8' } //multipart/form-data{"token": token}
});
};
/**
* method: 'post'
* data: params
*
*/
export const postForm = (url, params) => {
params.requestProject = 'haoban-manage-web';
return axios({
method: 'post',
url: `${local}${url}`,
data: params,
headers: {}
});
};
/**
* post excel
*/
export const postExcel = (url, params) => {
params.requestProject = 'haoban-manage-web';
return axios({
method: 'post',
url: `${local}${url}`,
data: qs.stringify(params),
responseType: 'blob',
headers: {
'content-type': 'application/x-www-form-urlencoded'
}
});
};
import { request } from '@/utils/request.js';
export default function getFetch (api, baseUrl) {
api = api || {};
let keys = Object.keys(api);
keys.forEach(key => {
let opt = api[key];
if (typeof opt === 'string') opt = { url: opt };
opt.url = `${baseUrl}${opt.url}`;
api[key] = params => request(opt, params);
})
return api;
}
import * as api from './api';
export default api;
import getFetch from './getFetch.js';
let api = {
getUserInfo: '/user/get-login-user', // 获取用户信息
sendSmsCode: '/user/send-auth-code-to-modify-phone', // 发送手机验证码
editUserName: '//user/edit-user-name', // 修改姓名
updatePhone: '/user/modify-phone', // 修改手机号
updatePwd: '/user/modify-password', // 修改密码
logout: '/logout', // 登出
}
api = getFetch(api, '/gic-auth-web');
export default api;
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 400 335" style="enable-background:new 0 0 400 335;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FAFCFF;}
.st1{fill:#DBE5F1;}
.st2{fill:#DEE7F4;}
.st3{fill:#B9C7DB;}
.st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#B9C7DB;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:none;stroke:#B6C7D8;stroke-miterlimit:10;}
</style>
<path class="st5" d="M274.5,241.3c-5.3-5.3-4.4,4.4-6.7,6.7c-3.1,3.1-6.3,6-9.7,8.6H125.2c-3.4-2.7-6.6-5.6-9.7-8.7
c-28.4-28.5-38.6-70.5-26.6-109l-10.5-10.6c-5.3-5.3-5.3-13.8,0-19.2c5.2-5.3,13.7-5.3,19-0.1c0,0,0,0,0.1,0.1l6.6,6.8
c3.1,3.2,8.2,3.2,11.4,0l0,0c3.2-3.2,3.2-8.3,0-11.5L103.1,92c-3.2-3.2-3.2-8.3,0-11.5c3.1-3.2,8.2-3.2,11.4,0l0,0l17.2,17.2
c-0.9,3.7,0.9,7.6,4.4,9.3c3.5,1.7,7.7,0.6,9.9-2.5c2.3-3.1,2.1-7.4-0.5-10.3c-3.3-3.8-6.5-7.2-6.5-7.2l-7.3-7.4
c34.8-21.3,82.6-21.7,117.2,0c34.5,21.7,53.9,61.2,50,101.9l15.4,15.6c3.2,3.2,3.2,8.3,0,11.5c-3.1,3.2-8.2,3.2-11.4,0l0,0
l-15.1-15.3c-3.1-3.2-8.2-3.2-11.4,0l0,0c-3.2,3.2-3.2,8.3,0,11.5l17.1,17.2c5.2,5.3,5.2,13.8,0,19.1
C288.4,246.6,279.9,246.6,274.5,241.3C274.6,241.3,274.6,241.3,274.5,241.3L274.5,241.3z"/>
<path class="st3" d="M86.6,71.4c0,4.7,3.8,8.5,8.5,8.5c1.5,0,3-0.4,4.3-1.1c4.1-2.3,5.5-7.5,3.1-11.6c-1.5-2.6-4.3-4.3-7.4-4.3
C90.4,62.9,86.6,66.7,86.6,71.4"/>
<path class="st3" d="M216.4,145.4h24.3l-7.4,17.9c2.6,1.8,4.5,3.8,5.8,6c1.2,2.2,1.9,4.8,1.9,7.8c0,4.6-1.6,8.4-4.8,11.2
c-3.2,2.9-7.3,4.3-12.3,4.3c-2.5,0-5.1-0.4-7.5-1.1v-13.1c2,0.9,3.9,1.4,5.5,1.4s2.9-0.5,3.7-1.4c0.9-1,1.3-2.3,1.3-4.1
c0-1.9-0.8-3.4-2.4-4.6c-1.6-1.2-3.7-1.7-6.4-1.7l3.4-9.1h-5.1V145.4L216.4,145.4z M207.5,181.6c0,1.5-0.3,3-0.8,4.3
s-1.3,2.5-2.3,3.5s-2.2,1.8-3.4,2.3c-1.3,0.6-2.8,0.9-4.3,0.9h-9.6c-1.5,0-2.9-0.3-4.3-0.9c-1.3-0.6-2.5-1.3-3.4-2.3
c-0.4-0.4-0.8-0.9-1.2-1.4l11.7-17.3v6c0,0.6,0.2,1.1,0.6,1.4c0.4,0.4,0.8,0.6,1.4,0.6c1.1,0,2-0.8,2-1.9v-0.1v-11.9l10.9-16.1
c1.8,2,2.8,4.6,2.7,7.3L207.5,181.6L207.5,181.6L207.5,181.6z M177.1,185.9c-0.6-1.4-0.9-2.8-0.8-4.3V156c0-1.5,0.3-3,0.8-4.3
s1.3-2.5,2.3-3.5s2.2-1.8,3.4-2.3c1.3-0.6,2.8-0.9,4.3-0.9h9.6c1.5,0,2.9,0.3,4.3,0.9c1.3,0.5,2.4,1.3,3.4,2.3l-10.5,15.4v-2.7
c0-0.5-0.2-1.1-0.6-1.4c-0.4-0.4-0.9-0.6-1.4-0.6c-1.1,0-2,0.8-2,1.9v0.1v8.6l-12.1,17.9C177.5,186.9,177.3,186.4,177.1,185.9
L177.1,185.9z M243.8,192.7c3.5-7.4,5.3-15.5,5.3-23.7c0-30.5-24.4-55.2-54.6-55.2s-54.6,24.7-54.6,55.2c0,0.4,0,0.8,0,1.1
l19.6-24.6h11.4L154,171.3h5.5v-6.5l11.7-18.5v46.8h-11.7v-9.8h-17.8c5.1,19.2,20.1,34.3,39.2,39.2c-1.2,3.1-4.8,10.7-10.7,12
c-7.3,1.7,19.9,0.4,39.4-12.5c14.9-4.4,27.2-15,33.9-28.9L243.8,192.7L243.8,192.7z"/>
<path class="st4" d="M238.9,154.3l-24.4,35.4l0.5,0.3l24.4-35.4L238.9,154.3z"/>
<path class="st3" d="M266.2,66.6h8c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.4-0.1,0.7-0.4,1c-0.2,0.3-0.6,0.4-0.9,0.4h-8
c-0.4,0-0.7-0.1-0.9-0.4c-0.5-0.5-0.5-1.4,0-1.9C265.5,66.7,265.8,66.6,266.2,66.6 M116.5,201.9c-4.4,0-8,3.6-8,8.1s3.6,8.1,8,8.1
s8-3.6,8-8.1S120.9,201.9,116.5,201.9L116.5,201.9z M121.4,212.1c-0.8,2-2.8,3.3-4.9,3.3c-3,0-5.3-2.4-5.3-5.4c0-2.2,1.3-4.1,3.3-5
c2-0.8,4.3-0.4,5.8,1.2C121.8,207.7,122.2,210,121.4,212.1L121.4,212.1z M191.3,78.7c-4.4,0-8,3.6-8,8.1s3.6,8.1,8,8.1
c2.1,0,4.2-0.9,5.7-2.4s2.3-3.6,2.3-5.7C199.3,82.4,195.7,78.7,191.3,78.7z M196.3,88.9c-0.8,2-2.8,3.3-4.9,3.3
c-3,0-5.3-2.4-5.3-5.4c0-2.2,1.3-4.2,3.3-5s4.3-0.4,5.8,1.2C196.6,84.6,197.1,86.9,196.3,88.9L196.3,88.9z M270.2,162.6
c-4.4,0-8,3.6-8,8.1s3.6,8.1,8,8.1s8-3.6,8-8.1C278.2,166.3,274.6,162.6,270.2,162.6z M275.1,172.8c-0.8,2-2.8,3.3-4.9,3.3
c-3,0-5.3-2.4-5.3-5.4c0-2.2,1.3-4.2,3.3-5s4.3-0.4,5.8,1.2S275.9,170.8,275.1,172.8z M230.1,31.4c-4.4,0-8,3.6-8,8.1s3.6,8.1,8,8.1
c2.1,0,4.2-0.9,5.7-2.4s2.3-3.6,2.3-5.7C238.1,35,234.5,31.4,230.1,31.4z M235,41.6c-0.8,2-2.8,3.3-4.9,3.3c-3,0-5.3-2.4-5.3-5.4
c0-2.2,1.3-4.2,3.3-5s4.3-0.4,5.8,1.2C235.4,37.2,235.8,39.5,235,41.6z"/>
<path class="st3" d="M163.2,45.9h8.2c0.4,0,0.7,0.1,1,0.4c0.5,0.5,0.5,1.3,0,1.9l0,0c-0.3,0.3-0.6,0.4-1,0.4h-8.2
c-0.4,0-0.7-0.1-1-0.4c-0.5-0.5-0.5-1.3,0-1.9l0,0C162.4,46.1,162.8,45.9,163.2,45.9 M271.7,63.5v8c0,0.4-0.1,0.7-0.4,0.9
c-0.3,0.3-0.6,0.4-1,0.4c-0.7,0-1.4-0.6-1.4-1.3l0,0v-8c0-0.4,0.1-0.7,0.4-0.9c0.5-0.5,1.4-0.5,1.9,0
C271.6,62.8,271.7,63.2,271.7,63.5"/>
<path class="st3" d="M107.4,154.8h8.2c0.4,0,0.7,0.1,1,0.4c0.3,0.2,0.4,0.6,0.4,0.9c0,0.7-0.6,1.3-1.4,1.3h-8.2
c-0.5,0-0.9-0.3-1.2-0.7c-0.2-0.4-0.2-0.9,0-1.3C106.4,155.1,106.9,154.8,107.4,154.8 M169,42.7v8c0,0.4-0.1,0.7-0.4,0.9
c-0.5,0.5-1.4,0.5-2,0c-0.2-0.2-0.4-0.6-0.4-0.9v-8c0-0.4,0.1-0.7,0.4-0.9c0.5-0.5,1.4-0.5,1.9,0C168.8,42,169,42.3,169,42.7"/>
<path class="st3" d="M230.9,110.3h8.1c0.7,0,1.3,0.6,1.3,1.4c0,0.7-0.6,1.3-1.3,1.4h-8.1c-0.8,0-1.4-0.6-1.4-1.4
c0-0.4,0.1-0.7,0.4-1C230.2,110.4,230.6,110.3,230.9,110.3"/>
<path class="st3" d="M114.6,163.8v8.2c0,0.4-0.1,0.7-0.4,1c-0.5,0.5-1.4,0.5-1.9,0c-0.3-0.3-0.4-0.6-0.4-1v-8.2c0-0.4,0.1-0.7,0.4-1
c0.5-0.5,1.4-0.5,1.9,0l0,0C114.4,163.1,114.6,163.4,114.6,163.8"/>
<path class="st1" d="M126,272.7h60.4c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4H126c-0.7,0-1.3-0.6-1.3-1.3
C124.7,273.3,125.3,272.7,126,272.7"/>
<path class="st1" d="M218.6,272.7h34.9c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-34.9c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C217.9,272.9,218.2,272.7,218.6,272.7"/>
<path class="st1" d="M158.2,282.2h131.5c0.7,0,1.3,0.6,1.4,1.3c0,0.4-0.1,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4H158.2
c-0.7,0-1.3-0.6-1.3-1.3l0,0C156.9,282.8,157.5,282.2,158.2,282.2"/>
<path class="st1" d="M93.8,282.2h34.9c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4l0,0H93.8c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C93.1,282.3,93.5,282.2,93.8,282.2"/>
<path class="st1" d="M197.1,272.7h8.1c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-8.1c-0.7,0.1-1.4-0.5-1.4-1.3
c-0.1-0.7,0.5-1.4,1.3-1.4C197,272.7,197.1,272.7,197.1,272.7"/>
<path class="st1" d="M284.4,264.6h8.1c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.3h-8.1c-0.7,0-1.3-0.6-1.3-1.3
C283,265.3,283.6,264.6,284.4,264.6"/>
<path class="st1" d="M99.2,264.6h171.7c0.4,0,0.7,0.1,0.9,0.4c0.4,0.4,0.5,1,0.3,1.5c-0.2,0.5-0.7,0.8-1.2,0.8H99.1
c-0.7,0-1.3-0.6-1.3-1.3C97.8,265.3,98.4,264.6,99.2,264.6"/>
<path class="st3" d="M235,95.8v8.1c0,0.7-0.6,1.3-1.3,1.3s-1.3-0.6-1.3-1.3v-8.1c0-0.7,0.6-1.3,1.3-1.4C234.4,94.4,235,95,235,95.8"
/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 400 335" style="enable-background:new 0 0 400 335;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FAFCFF;}
.st1{fill:#DBE5F1;}
.st2{fill:#DEE7F4;}
.st3{fill:#B9C7DB;}
.st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#B9C7DB;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:none;stroke:#B6C7D8;stroke-miterlimit:10;}
</style>
<path class="st0" d="M80.9,159.3c0,50.2,40.7,90.9,90.9,90.9s90.9-40.7,90.9-90.9l0,0c0-50.2-40.7-90.9-90.9-90.9
C121.6,68.3,80.9,109,80.9,159.3C80.9,159.2,80.9,159.3,80.9,159.3z"/>
<path class="st1" d="M96.3,264.2c-0.9,0-2,0-2.8-0.1l0.3-2.7c1.6,0.1,3.3,0.1,5.1,0l0.1,2.7C98,264.1,97.1,264.2,96.3,264.2z
M104.3,263.4l-0.4-2.7c1.6-0.3,3.3-0.7,5.1-1.1l0.7,2.5C107.9,262.8,106,263.2,104.3,263.4z M87.8,263c-1.9-0.5-3.6-1.3-5.2-2.3
l1.3-2.3c1.3,0.8,2.9,1.5,4.5,2L87.8,263L87.8,263z M114.8,260.6l-0.8-2.5c1.6-0.5,3.3-1.2,4.9-1.9l0.9,2.5
C118.2,259.6,116.6,260.1,114.8,260.6z M78.2,257.1c-1.2-1.3-2.3-2.9-3.2-4.7l2.4-1.2c0.8,1.5,1.7,2.9,2.8,4.1L78.2,257.1z
M125,256.7l-1.1-2.4c1.6-0.7,3.2-1.5,4.8-2.3l1.2,2.4C128.2,255.3,126.5,255.9,125,256.7z M134.6,251.9l-1.2-2.4
c1.5-0.8,3.1-1.7,4.7-2.5l1.3,2.3C137.7,250.2,136.1,251.1,134.6,251.9z M72.9,247.3c-0.5-1.7-0.9-3.5-1.2-5.5l2.7-0.4
c0.3,1.7,0.7,3.5,1.1,5.1L72.9,247.3L72.9,247.3z M144,246.6l-1.3-2.3c1.5-0.9,2.9-1.9,4.5-2.8l1.5,2.3
C146.9,244.6,145.5,245.6,144,246.6z M153,240.7l-1.5-2.3c1.5-0.9,2.9-2,4.4-3.1l1.6,2.1C155.9,238.7,154.4,239.6,153,240.7z
M71.3,236.4v-1.2c0-1.3,0-2.8,0.1-4.3l2.7,0.1c-0.1,1.3-0.1,2.8-0.1,4.1v1.1L71.3,236.4z M161.8,234.4l-1.6-2.1
c1.5-1.1,2.8-2.1,4.3-3.2l1.6,2.1C164.6,232.3,163.1,233.3,161.8,234.4z M170.2,227.9l-1.6-2.1c1.3-1.1,2.8-2.3,4.1-3.3l1.7,2
C173,225.6,171.7,226.8,170.2,227.9z M74.7,225.9l-2.7-0.4c0.3-1.7,0.5-3.5,0.9-5.3l2.7,0.5C75.3,222.5,75,224.3,74.7,225.9
L74.7,225.9z M178.5,221l-1.7-2c1.3-1.2,2.7-2.3,4-3.5l1.7,2C181.3,218.8,179.8,219.8,178.5,221z M76.9,215.6l-2.5-0.7l1.6-5.2
l2.5,0.8C77.9,212.2,77.4,214,76.9,215.6z M186.6,214l-1.7-2c1.3-1.2,2.7-2.4,3.9-3.6l1.9,2C189.2,211.6,188,212.8,186.6,214z
M194.4,206.6l-1.9-1.9c1.3-1.2,2.5-2.4,3.9-3.7l1.9,1.9C197.1,204.2,195.7,205.4,194.4,206.6z M80.2,205.5l-2.5-0.9
c0.7-1.6,1.3-3.3,2-4.9l2.5,1.1L80.2,205.5z M202.2,199.1l-1.9-1.9c1.2-1.2,2.5-2.5,3.7-3.9l1.9,1.9
C204.6,196.6,203.4,197.8,202.2,199.1z M84.5,195.6l-2.5-0.7c0.1-0.3,0.1-0.7,0.1-1.2c0-0.9-0.1-2-0.4-3.6l2.7-0.4
c0.3,1.7,0.4,3.1,0.4,4C84.6,194.4,84.6,195.1,84.5,195.6z M209.5,191.4l-2-1.9c1.2-1.3,2.4-2.5,3.6-3.9l2,1.7
C212,188.8,210.7,190,209.5,191.4z M80.8,184.9v-0.4c-0.3-1.5-0.5-3.2-0.9-4.9l2.7-0.4c0.3,1.7,0.7,3.3,0.9,4.9v0.4L80.8,184.9z
M215.5,184.8l-2-1.7c1.2-1.3,2.4-2.7,3.5-4l2,1.7C217.9,182.1,216.7,183.5,215.5,184.8z M222.6,176.8l-2-1.7c1.2-1.3,2.3-2.7,3.5-4
l2,1.7C225,174,223.8,175.5,222.6,176.8z M78.9,174.4c-0.3-1.9-0.5-3.6-0.7-5.3l2.7-0.3c0.1,1.7,0.4,3.5,0.7,5.2L78.9,174.4z
M229.6,168.5l-2.1-1.7c1.1-1.3,2.3-2.8,3.3-4.1l2.1,1.6C231.8,165.7,230.6,167.2,229.6,168.5z M77.7,163.6
c-0.1-1.9-0.1-3.6-0.1-5.5h2.7c0,1.7,0,3.5,0.1,5.2L77.7,163.6z M236.3,160.1l-2.1-1.6c1.1-1.5,2.1-2.8,3.2-4.3l2.1,1.6
C238.4,157.3,237.3,158.6,236.3,160.1z M80.4,152.9l-2.7-0.1c0.1-1.9,0.3-3.6,0.5-5.5l2.7,0.3C80.6,149.4,80.5,151.1,80.4,152.9z
M242.5,151.5l-2.1-1.6c1.1-1.5,2.1-2.9,3.1-4.3l2.1,1.5C244.7,148.6,243.6,150,242.5,151.5z M248.8,142.7l-2.3-1.5
c1.1-1.5,2-2.9,2.9-4.4l2.3,1.5C250.8,139.8,249.8,141.2,248.8,142.7z M81.7,142.4l-2.7-0.5c0.4-1.7,0.8-3.6,1.2-5.3l2.5,0.7
C82.4,139.1,82,140.7,81.7,142.4z M254.7,133.7l-2.3-1.5c0.9-1.5,1.9-3.1,2.8-4.5l2.3,1.3C256.6,130.7,255.6,132.1,254.7,133.7z
M84.5,132.4l-2.5-0.9c0.7-1.7,1.3-3.3,2.1-5.1l2.4,1.1C85.7,129.2,85,130.8,84.5,132.4z M260.2,124.5l-2.3-1.3
c0.9-1.6,1.7-3.1,2.7-4.7l2.3,1.3C262.1,121.4,261.1,122.9,260.2,124.5z M88.9,122.9l-2.3-1.3l0.9-1.6c0.5-0.9,1.1-2,1.7-2.9
l2.3,1.3c-0.5,1.1-1.2,2-1.7,2.9L88.9,122.9z M265.4,115.2L263,114c0.8-1.6,1.6-3.2,2.4-4.7l2.4,1.2
C267.1,111.9,266.3,113.5,265.4,115.2z M94.3,113.7l-2.3-1.3c0.9-1.5,1.9-3.1,2.8-4.5l2.3,1.5L94.3,113.7z M270.2,105.5l-2.4-1.1
c0.8-1.6,1.5-3.2,2.1-4.8l2.4,1.1C271.8,102.2,271,103.8,270.2,105.5z M100,104.9l-2.1-1.6l3.2-4.4l2.1,1.6
C102.1,101.9,101.1,103.3,100,104.9z M106.6,96.4l-2-1.7l3.6-4l1.9,1.9C108.8,93.8,107.6,95.1,106.6,96.4z M274.5,95.6l-2.5-0.9
c0.7-1.6,1.3-3.3,1.9-4.9l2.5,0.9C275.8,92.2,275.2,93.9,274.5,95.6z M113.9,88.9l-1.7-2c1.3-1.2,2.8-2.4,4.1-3.5l1.6,2.1
C116.6,86.7,115.1,87.7,113.9,88.9z M278.1,85.5l-2.5-0.8c0.5-1.7,1.1-3.5,1.5-5.1l2.5,0.7C279.2,81.9,278.8,83.6,278.1,85.5z
M122.1,82.4l-1.5-2.3c1.5-1.1,3.1-2,4.5-2.9l1.3,2.3C125,80.5,123.5,81.5,122.1,82.4z M131.2,77.2l-1.2-2.4
c1.6-0.8,3.3-1.5,4.9-2.3L136,75C134.4,75.7,132.8,76.4,131.2,77.2z M280.9,74.9l-2.7-0.5c0.4-1.7,0.7-3.5,0.8-5.2l2.7,0.4
C281.6,71.3,281.3,73.2,280.9,74.9z M140.9,73.2l-0.8-2.5l5.2-1.6l0.7,2.5C144.3,72.1,142.7,72.6,140.9,73.2z M151.1,70.4l-0.5-2.7
c1.7-0.4,3.6-0.8,5.3-1.1l0.4,2.7C154.6,69.7,152.8,70,151.1,70.4z M187.8,69.2c-1.5-0.1-3.2-0.4-5.2-0.5l0.3-2.7
c2.1,0.1,3.9,0.4,5.3,0.7L187.8,69.2z M194,68.9l-1.6-2.1c1.5-1.1,2.9-2.1,4.3-3.2l1.6,2.1C196.9,66.7,195.5,67.8,194,68.9z
M161.5,68.6l-0.3-2.7c1.7-0.3,3.6-0.4,5.3-0.4l0.1,2.7L161.5,68.6z M177.3,68.1c-1.6-0.1-3.2-0.1-4.8-0.1H172v-2.7h0.5
c1.6,0,3.2,0,4.9,0.1L177.3,68.1z M282.2,64.1l-2.7-0.1v-1.7c0-1.2,0-2.4-0.1-3.5l2.7-0.3c0.1,1.2,0.1,2.4,0.1,3.6V64.1z
M202.7,62.6l-1.5-2.3c1.5-1.1,2.9-2,4.4-2.9l1.5,2.3C205.6,60.6,204.2,61.7,202.7,62.6L202.7,62.6z M211.6,56.9l-1.5-2.3
c1.6-0.9,3.1-1.9,4.7-2.8l1.3,2.3C214.6,55,213.1,55.9,211.6,56.9z M278.6,53.8c-0.4-1.7-1.1-3.3-1.7-4.7l2.4-1.2
c0.8,1.6,1.5,3.3,2,5.3L278.6,53.8L278.6,53.8z M220.7,51.5l-1.3-2.4c1.6-0.9,3.2-1.7,4.8-2.5l1.2,2.4
C223.9,49.8,222.3,50.7,220.7,51.5z M230.2,46.7l-1.1-2.4c1.7-0.8,3.3-1.5,4.9-2.1l0.9,2.5C233.6,45.4,231.8,46,230.2,46.7z
M274.1,45l-0.9-0.9c-0.9-0.8-1.9-1.5-2.9-2.1l1.3-2.3c1.2,0.7,2.4,1.5,3.3,2.4c0.4,0.4,0.8,0.7,1.1,1.1L274.1,45L274.1,45z
M240,42.8l-0.8-2.5c1.7-0.7,3.5-1.2,5.2-1.6l0.7,2.5C243.5,41.7,241.7,42.3,240,42.8z M265.5,40.1c-1.6-0.4-3.2-0.7-5.1-0.8
l0.1-2.7c2,0.1,3.9,0.4,5.5,0.8L265.5,40.1L265.5,40.1z M250.2,40.1l-0.5-2.7c1.9-0.4,3.7-0.5,5.5-0.8l0.3,2.7
C253.8,39.5,252,39.7,250.2,40.1L250.2,40.1z"/>
<path class="st2" d="M92.1,178.4c5.6,5.9,32.8-11.2,60.8-38.2s46.2-53.7,40.6-59.6c0,0,0,0-0.1-0.1c-5.6-5.8-32.9,11.3-60.9,38.4
C104.6,145.9,86.5,172.6,92.1,178.4L92.1,178.4z"/>
<path class="st0" d="M122.1,117.3l5.7-5.7l25.5,25.5l-5.7,5.7L122.1,117.3z M163.8,147.2h148.4c3.7,0,6.7,2.9,6.7,6.7v61.5
c0,3.7-2.9,6.7-6.7,6.7H163.8c-3.7,0-6.7-2.9-6.7-6.7v-61.5C157.1,150.2,160,147.2,163.8,147.2z"/>
<path class="st3" d="M325.8,134.1v-5.6h2v5.6h5.6v2h-5.6v5.7h-2v-5.6h-5.6v-2L325.8,134.1L325.8,134.1z M86.6,202.5l-1.3-2.9
c-0.4-0.9-0.8-1.7-1.3-2.9l-0.8-3.3c-4-10.6-6.3-21.9-6.3-34c0-23.9,9-45.9,23.8-62.3L85.3,80.8c-1.6-1.7-1.6-4.5,0.1-6.2
c1.7-1.7,4.4-1.7,6.2-0.1l16.3,15.4c16.6-15,38.5-24.1,62.7-24.1c17.8,0,34.5,4.9,48.7,13.6c10.7,7.2,13.4,8.7,21,17.6
c5.7,6.7,6,6.4,10.7,14.2c0.8,0.1,7.5,11.8,7.5,15.6c2.4,6.3,4,13,4.9,19.7h48.4c2.7,0,5.1,1.1,7,2.9c1.9,1.9,2.9,4.4,2.9,7v57.8
c0,2.7-1.1,5.1-2.9,7c-1.9,1.9-4.4,2.9-7,2.9h-73.4c-17.1,17.8-41.2,28.9-67.8,28.9c-10.8,0-21.7-1.9-31.8-5.5
c-17.8-7.9-17.1-7.2-26.1-14.2s-10-9.4-22.7-25.9C88.6,205.3,87.7,204.5,86.6,202.5z M91.7,202.6c10.2,18.5,26.7,33,46.7,40.6
c8.6-5.3,23.7-16.8,25.5-19.3c-2.7,0-5.1-1.1-7-2.9s-2.9-4.4-2.9-7v-46.8c-9.6,6.3-20.6,10.8-31.7,13.5c-13.9,3.3-26.7,3.1-30.4-0.5
c-6.3-6.3,9.1-30.2,34.2-56.4l-23-24.2c-14,15.9-22.7,36.8-22.7,59.6c0,10.8,1.9,21.5,5.7,31.6l2,5.5
C88.8,197.4,89.3,198.9,91.7,202.6L91.7,202.6z M110.6,92.3l24.3,22.9l0.1-0.1c27-26.2,51.5-42,57.9-35.6c3.6,3.6,3.7,16.4,0.3,30.5
c-3.2,13-8.8,25.5-16.8,36.4h64.4c5.1-7,9.6-13.6,13.6-20.1c-13.1-33.4-45.7-57-83.7-57C147.5,69.4,126.5,78,110.6,92.3z M137.8,118
l17,16c11-11.4,20.5-22.7,26.7-32.2c6.6-9.9,9.1-16.8,7.5-18.5c-1.6-1.6-8.6,0.9-18.5,7.5C161,97.2,149.5,106.7,137.8,118z
M152.3,136.7L89,77c-0.3-0.3-0.8-0.3-1.1,0s-0.3,0.8,0,1.1l59.6,63.1C149.2,139.8,150.7,138.1,152.3,136.7z M144.9,143.8L129,127
c-10.6,11.1-19.7,21.9-25.7,31.2c-6.6,9.9-9.1,16.8-7.5,18.5c1.6,1.6,8.6-0.9,18.5-7.5C123.3,163,134.1,154.2,144.9,143.8
L144.9,143.8z M192,90.1c-4,11.5-18.7,30.8-38.6,50.7c-20.1,20.1-39.3,34.8-50.9,38.6c5.1,0.1,11.9-0.5,19-2.3
c16.3-3.9,32-11.9,44-23.9c12-11.9,20.2-27.7,24.2-44.1C191.3,102,192,95.2,192,90.1z M157.6,164.8v49.3c0,1.6,0.7,3.2,1.7,4.4
c1.2,1.2,2.7,1.7,4.4,1.7h147.9c3.3,0,6.2-2.8,6.2-6.2v-57.9c0-3.3-2.8-6.2-6.2-6.2H173.3c-0.1,0.3-0.4,0.4-0.5,0.7l3.1,2.8
c3.1,2.9,3.2,7.9,0.1,11c-2.9,3.1-7.9,3.2-11,0.1l-3.1-3.2C160.6,162.6,159.1,163.7,157.6,164.8z M170.3,153.5
c-1.7,2-3.7,3.7-5.6,5.6l2.8,2.9c1.7,1.7,4.3,1.7,5.9,0.1c0.8-0.8,1.2-1.9,1.2-2.9s-0.5-2.1-1.3-2.9
C173.3,156.3,170.3,153.5,170.3,153.5z M233,224h-68.7c-9.8,8-17,13.4-26.1,19.3c9.1,3.3,22.9,6,32.4,6
C194.8,249.1,216.9,239.5,233,224z M259.6,146.3c-0.8-5.3-3.7-15-5.3-20.1c-4.3,7.1-9.1,14.4-13.9,20.1H259.6z M196.5,206.7v-9
h-21.8v-5.1c1.9-3.5,4.1-7.4,7.1-11.8c2.8-4.4,6.8-10.3,12-17.6h8v29.5h6.2v4.8h-6.2v9h-5.3V206.7z M243.6,207.4c-5.1,0-9-2-11.8-6
s-4.1-9.5-4.1-16.3s1.5-12.2,4.3-16.3c2.8-4,6.7-6.2,11.8-6.2s9,2,11.8,6s4.1,9.5,4.1,16.3s-1.3,12.3-4.1,16.3
C252.6,205.4,248.7,207.4,243.6,207.4z M243.6,202.7c3.3,0,6-1.6,7.8-4.8c1.9-3.2,2.7-7.5,2.7-13c0-5.3-0.9-9.6-2.7-12.8
c-1.9-3.2-4.4-4.8-7.8-4.8c-3.3,0-5.9,1.6-7.8,4.8c-1.9,3.2-2.8,7.5-2.8,12.8s0.9,9.8,2.7,13C237.6,201.1,240.1,202.7,243.6,202.7z
M301.6,206.7v-9h-21.8v-5.1c1.9-3.5,4.1-7.4,7.1-11.8c2.8-4.4,6.8-10.3,12-17.6h8v29.5h6.2v4.8h-6.3v9h-5.2V206.7z M180.1,192.8
l16.4,0.1v-25.1h-0.1c-4.1,5.9-7.5,10.7-10,14.6C184,186.3,181.8,189.8,180.1,192.8L180.1,192.8z M285.2,192.8l16.4,0.1v-25.1h-0.1
c-4.1,5.9-7.5,10.7-10,14.6C288.9,186.3,286.9,189.8,285.2,192.8L285.2,192.8z M51.5,100.4l4-4l1.3,1.3l-4,4l4,4l-1.3,1.3l-4-4l-4,4
l-1.3-1.3l4-4l-4-4l1.3-1.3L51.5,100.4z M344.6,167.6V158h3.3v9.6h9.6v3.3h-9.6v9.6h-3.3v-9.6H335v-3.3H344.6z"/>
<path class="st4" d="M52.1,248.9c2.5,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7c-2.5,0-4.7,2.1-4.7,4.7S49.6,248.9,52.1,248.9z"/>
<path class="st3" d="M52.1,250.2c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S55.5,250.2,52.1,250.2z M52.1,240.8c-1.9,0-3.3,1.5-3.3,3.3
s1.5,3.3,3.3,3.3c1.9,0,3.3-1.5,3.3-3.3S54,240.8,52.1,240.8z"/>
<path class="st3" d="M276.6,70.1l5.2-6.4l2.8,7.9l6.4,5.2l-7.9,2.8l-5.2,6.4l-2.8-7.9l-6.4-5.2L276.6,70.1z"/>
<path class="st3" d="M277.4,88.7l-3.5-9.8l-8-6.6l9.8-3.5l6.6-8l3.5,9.8l8,6.6l-9.8,3.5L277.4,88.7z M271.4,73.3l4.9,4l2.1,6l4-4.9
l6-2.1l-4.9-4l-2.1-6l-4,4.9L271.4,73.3z"/>
<path class="st3" d="M109.7,274.7h60.4c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4h-60.4c-0.7,0-1.3-0.6-1.3-1.3
C108.3,275.3,108.9,274.7,109.7,274.7"/>
<path class="st3" d="M202.3,274.7h34.9c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-34.9c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C201.6,274.9,201.9,274.7,202.3,274.7"/>
<path class="st3" d="M141.9,284.2h131.5c0.7,0,1.3,0.6,1.4,1.3c0,0.4-0.1,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4H141.9
c-0.7,0-1.3-0.6-1.3-1.3l0,0C140.5,284.8,141.1,284.2,141.9,284.2"/>
<path class="st3" d="M77.5,284.2h34.9c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.4l0,0H77.5c-0.7,0-1.3-0.6-1.4-1.3
c0-0.4,0.1-0.7,0.4-1C76.8,284.3,77.1,284.2,77.5,284.2"/>
<path class="st3" d="M180.8,274.7h8.1c0.7,0,1.3,0.6,1.3,1.3c0,0.7-0.6,1.3-1.3,1.3h-8.1c-0.7,0.1-1.4-0.5-1.4-1.3
c-0.1-0.7,0.5-1.4,1.3-1.4C180.6,274.7,180.7,274.7,180.8,274.7"/>
<path class="st3" d="M268,266.6h8.1c0.7,0,1.3,0.6,1.3,1.3l0,0c0,0.7-0.6,1.3-1.3,1.3H268c-0.7,0-1.3-0.6-1.3-1.3
C266.7,267.3,267.3,266.6,268,266.6"/>
<path class="st3" d="M82.8,266.6h171.8c0.4,0,0.7,0.1,0.9,0.4c0.4,0.4,0.5,1,0.3,1.5s-0.7,0.8-1.2,0.8H82.8c-0.7,0-1.3-0.6-1.3-1.3
C81.5,267.3,82.1,266.6,82.8,266.6"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 400 335" style="enable-background:new 0 0 400 335;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FAFCFF;}
.st1{fill:#DBE5F1;}
.st2{fill:#DEE7F4;}
.st3{fill:#B9C7DB;}
.st4{fill:#FFFFFF;}
.st5{fill:none;stroke:#B9C7DB;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:none;stroke:#B6C7D8;stroke-miterlimit:10;}
</style>
<path class="st3" d="M37.7,141.1c-2.4,0-4.4-1.9-4.4-4.4c0-2.4,1.9-4.4,4.4-4.4c2.4,0,4.4,1.9,4.4,4.4
C42,139.2,40.1,141.1,37.7,141.1z"/>
<path class="st3" d="M264.6,80.4c-2.1,0-3.8-1.7-3.8-3.8s1.7-3.8,3.8-3.8c2.1,0,3.8,1.7,3.8,3.8C268.4,78.7,266.7,80.4,264.6,80.4z
M264.6,74.4c-1.2,0-2.1,0.9-2.1,2.1s0.9,2.1,2.1,2.1s2.1-0.9,2.1-2.1C266.7,75.4,265.8,74.4,264.6,74.4z"/>
<path class="st3" d="M98.8,136.7c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7S101.4,136.7,98.8,136.7z M98.8,129.4
c-1.5,0-2.6,1.2-2.6,2.6s1.2,2.6,2.6,2.6c1.5,0,2.6-1.2,2.6-2.6S100.2,129.4,98.8,129.4z"/>
<path class="st3" d="M144.3,113.8h8.2c0.4,0,0.7,0.1,1,0.4c0.5,0.5,0.5,1.3,0,1.9l0,0c-0.3,0.3-0.6,0.4-1,0.4h-8.2
c-0.4,0-0.7-0.1-1-0.4c-0.5-0.5-0.5-1.3,0-1.9l0,0C143.6,113.9,143.9,113.8,144.3,113.8"/>
<path class="st3" d="M148.4,89.1v5.7c0,0.3-0.1,0.5-0.3,0.7c-0.4,0.4-0.9,0.4-1.3,0l0,0c-0.2-0.2-0.3-0.4-0.3-0.7v-5.7
c0-0.2,0.1-0.5,0.3-0.7c0.4-0.4,0.9-0.4,1.3,0l0,0C148.3,88.6,148.4,88.8,148.4,89.1"/>
<g>
<path class="st3" d="M193.5,123.6l5.1-5.1c0.2-0.2,0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3c0.5,0.5,0.4,1.2,0,1.7l-5.1,5.1
c-0.3,0.3-0.7,0.4-1.1,0.3c-0.4-0.1-0.7-0.4-0.8-0.8C193.1,124.3,193.2,123.9,193.5,123.6"/>
<path class="st3" d="M195.3,118.6l5,5c0.2,0.2,0.3,0.5,0.3,0.8c0,0.7-0.6,1.2-1.2,1.2c-0.3,0-0.6-0.1-0.8-0.3l-5-5
c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.7,0.5-1.2,1.2-1.2C194.7,118.2,195,118.4,195.3,118.6"/>
</g>
<g>
<path class="st3" d="M355,85.8l5.1-5.1c0.2-0.2,0.5-0.4,0.8-0.4s0.6,0.1,0.8,0.3c0.5,0.5,0.4,1.2,0,1.7l-5.1,5.1
c-0.3,0.3-0.7,0.4-1.1,0.3s-0.7-0.4-0.8-0.8S354.7,86.1,355,85.8"/>
<path class="st3" d="M356.8,80.8l5,5c0.2,0.2,0.3,0.5,0.3,0.8c0,0.7-0.6,1.2-1.2,1.2c-0.3,0-0.6-0.1-0.8-0.3l-5-5
c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.7,0.5-1.2,1.2-1.2C356.2,80.4,356.5,80.5,356.8,80.8"/>
</g>
<path class="st1" d="M87.8,267.9h99.5c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.4H87.8c-1.2,0-2.2-0.6-2.2-1.3
C85.6,268.5,86.6,267.9,87.8,267.9"/>
<path class="st1" d="M240.5,267.9H298c1.2,0,2.2,0.6,2.2,1.3c0,0.7-1,1.3-2.2,1.3h-57.5c-1.2,0-2.2-0.6-2.2-1.3c0-0.4,0.2-0.7,0.7-1
C239.3,268,239.9,267.9,240.5,267.9"/>
<path class="st1" d="M140.9,277.3h216.8c1.2,0,2.2,0.6,2.2,1.3c0,0.4-0.2,0.7-0.7,1c-0.4,0.3-1,0.4-1.6,0.4H140.9
c-1.2,0-2.2-0.6-2.2-1.3l0,0C138.7,277.9,139.7,277.3,140.9,277.3"/>
<path class="st1" d="M34.7,277.3h57.5c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.4l0,0H34.7c-1.2,0-2.2-0.6-2.2-1.3
c0-0.4,0.2-0.7,0.7-1C33.6,277.5,34.1,277.3,34.7,277.3"/>
<path class="st1" d="M205.1,267.9h13.3c1.2,0,2.2,0.6,2.2,1.3c0,0.7-1,1.3-2.2,1.3h-13.3c-1.2,0.1-2.3-0.5-2.4-1.3s0.8-1.4,2.1-1.4
C204.8,267.9,205,267.9,205.1,267.9"/>
<path class="st1" d="M348.8,259.8h13.3c1.2,0,2.2,0.6,2.2,1.3l0,0c0,0.7-1,1.3-2.2,1.3h-13.3c-1.2,0-2.2-0.6-2.2-1.3
C346.6,260.4,347.6,259.8,348.8,259.8"/>
<path class="st1" d="M43.6,259.8h283.1c0.6,0,1.1,0.1,1.6,0.4c0.6,0.4,0.8,1,0.5,1.5s-1.1,0.8-2,0.8H43.6c-1.2,0-2.2-0.6-2.2-1.3
S42.4,259.8,43.6,259.8"/>
<path class="st3" d="M180.3,240h-41.9c-0.6,0-1-0.4-1-1v-11.9c0-0.6,0.4-1,1-1s1,0.4,1,1v11h40v-41c0-0.6,0.4-1,1-1h10.5
c0.6,0,1,0.4,1,1s-0.4,1-1,1h-9.5v41C181.2,239.6,180.9,240,180.3,240L180.3,240z M237.5,240h-22c-0.6,0-1-0.4-1-1v-41H205
c-0.6,0-1-0.4-1-1s0.4-1,1-1h10.5c0.6,0,1,0.4,1,1v41h21c0.6,0,1,0.4,1,1S238,240,237.5,240z M105.9,231l2.7,18.2H95.7l2.7-18.2
H105.9 M107.5,229.1H96.7l-3.2,22h17.2L107.5,229.1z"/>
<path class="st6" d="M157.7,231.2H46.1c-5.1,0-9.2-4.1-9.2-9.2v-10.5h129.9v10.8C166.8,227.2,162.7,231.2,157.7,231.2L157.7,231.2z"
/>
<path class="st2" d="M167.4,210.9h-125v-47c0-3.6,3-6.7,6.7-6.7H163c2.5,0,4.6,2,4.6,4.6L167.4,210.9L167.4,210.9z"/>
<path class="st3" d="M158.8,154.2c3.9,0,7,3.1,7,7v61.9c0,3.9-3.1,7-7,7H45.4c-3.9,0-7-3.1-7-7v-61.9c0-3.9,3.1-7,7-7L158.8,154.2
M158.8,152.3H45.4c-5,0-9,4-9,9v61.9c0,5,4,9,9,9h113.4c5,0,9-4,9-9v-61.9C167.7,156.3,163.7,152.3,158.8,152.3z M116.2,251.8H88.1
c-0.6,0-1-0.4-1-1s0.4-1,1-1h28.1c0.6,0,1,0.4,1,1C117.1,251.4,116.7,251.8,116.2,251.8L116.2,251.8z"/>
<path class="st3" d="M37.6,210.6h129.1v1.9H37.6V210.6z"/>
<path class="st3" d="M101.7,222.9c1.4,0.9,3.3,0.6,4.2-0.8c0.9-1.4,0.6-3.3-0.8-4.2l0,0c-1.4-0.9-3.3-0.6-4.2,0.8
C99.9,220.1,100.3,222,101.7,222.9L101.7,222.9z"/>
<path class="st3" d="M102.1,223.7c-1.8,0-3.3-1.5-3.3-3.3s1.5-3.3,3.3-3.3s3.3,1.5,3.3,3.3S103.9,223.7,102.1,223.7z M102.1,218.1
c-1.3,0-2.4,1-2.4,2.4s1,2.4,2.4,2.4c1.3,0,2.4-1,2.4-2.4S103.4,218.1,102.1,218.1z M348.1,252.4H244.9c-3.5,0-6.5-2.9-6.5-6.5V114
c0-3.5,2.9-6.5,6.5-6.5h103.3c3.5,0,6.5,2.9,6.5,6.5v131.9C354.6,249.5,351.7,252.4,348.1,252.4L348.1,252.4z M244.9,109.5
c-2.5,0-4.6,2-4.6,4.6V246c0,2.5,2,4.6,4.6,4.6h103.3c2.5,0,4.6-2,4.6-4.6V114c0-2.5-2-4.6-4.6-4.6L244.9,109.5z"/>
<path class="st3" d="M238.9,131.9h114.3v1.9H238.9V131.9z M238.9,155.7h114.3v1.9H238.9V155.7z M238.9,179.5h114.3v1.9H238.9V179.5z
M239.8,202.4h114.3v1.9H239.8V202.4z M238.9,227.1h114.3v1.9H238.9V227.1z"/>
<g>
<path class="st3" d="M255,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,119.4,255,120.5
L255,120.5z"/>
<path class="st3" d="M264.6,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,118.6,264.6,119.4,264.6,120.5L264.6,120.5z"/>
<path class="st3" d="M274.1,120.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,118.6,274.1,119.4,274.1,120.5L274.1,120.5z"/>
<path class="st3" d="M255,145.2c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,144.2,255,145.2
L255,145.2z"/>
<path class="st3" d="M264.6,145.2c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,143.3,264.6,144.2,264.6,145.2L264.6,145.2z"/>
<path class="st3" d="M274.1,145.2c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,143.3,274.1,144.2,274.1,145.2L274.1,145.2z"/>
<path class="st3" d="M255,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,168,255,169L255,169z"/>
<path class="st3" d="M264.6,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,167.1,264.6,168,264.6,169L264.6,169z"/>
<path class="st3" d="M274.1,169c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,167.1,274.1,168,274.1,169L274.1,169z"/>
<path class="st3" d="M255,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,190.8,255,191.9
L255,191.9z"/>
<path class="st3" d="M264.6,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S264.6,190.8,264.6,191.9
L264.6,191.9z"/>
<path class="st3" d="M274.1,191.9c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S274.1,190.8,274.1,191.9
L274.1,191.9z"/>
<path class="st3" d="M255,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,214.6,255,215.7
L255,215.7z"/>
<path class="st3" d="M264.6,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C265.4,213.8,264.6,214.6,264.6,215.7L264.6,215.7z"/>
<path class="st3" d="M274.1,215.7c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9
C274.9,213.8,274.1,214.6,274.1,215.7L274.1,215.7z"/>
<path class="st3" d="M255,239.5c0,1.1,0.9,1.9,1.9,1.9c1.1,0,1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S255,238.5,255,239.5
L255,239.5z"/>
<path class="st3" d="M264.6,239.5c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S264.6,238.5,264.6,239.5
L264.6,239.5z"/>
<path class="st3" d="M274.1,239.5c0,1.1,0.9,1.9,1.9,1.9s1.9-0.9,1.9-1.9l0,0c0-1.1-0.9-1.9-1.9-1.9S274.1,238.5,274.1,239.5
L274.1,239.5z"/>
</g>
<path class="st3" d="M310.3,126.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C311.2,125.8,310.9,126.2,310.3,126.2z
M319.8,126.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C320.8,125.8,320.4,126.2,319.8,126.2z M329.3,126.2
c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C330.3,125.8,329.9,126.2,329.3,126.2z M338.9,126.2c-0.6,0-1-0.4-1-1v-9.5
c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5C339.8,125.8,339.4,126.2,338.9,126.2z M310.3,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1
v9.5C311.2,149.6,310.9,150,310.3,150z M319.8,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,149.6,320.4,150,319.8,150z M329.3,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,149.6,329.9,150,329.3,150z M338.9,150c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,149.6,339.4,150,338.9,150z M310.3,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,174.4,310.9,174.7,310.3,174.7L310.3,174.7z M319.8,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,174.4,320.4,174.7,319.8,174.7L319.8,174.7z M329.3,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,174.4,329.9,174.7,329.3,174.7L329.3,174.7z M338.9,174.7c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,174.4,339.4,174.7,338.9,174.7L338.9,174.7z M310.3,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,197.2,310.9,197.6,310.3,197.6z M319.8,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,197.2,320.4,197.6,319.8,197.6z M329.3,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,197.2,329.9,197.6,329.3,197.6z M338.9,197.6c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,197.2,339.4,197.6,338.9,197.6z M310.3,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,221,310.9,221.4,310.3,221.4z M319.8,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,221,320.4,221.4,319.8,221.4z M329.3,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,221,329.9,221.4,329.3,221.4z M338.9,221.4c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,221,339.4,221.4,338.9,221.4z M310.3,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C311.2,244.8,310.9,245.2,310.3,245.2z M319.8,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C320.8,244.8,320.4,245.2,319.8,245.2z M329.3,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C330.3,244.8,329.9,245.2,329.3,245.2z M338.9,245.2c-0.6,0-1-0.4-1-1v-9.5c0-0.6,0.4-1,1-1s1,0.4,1,1v9.5
C339.8,244.8,339.4,245.2,338.9,245.2z M353.6,149.9V148c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9
c7.6,0,13.7,6.2,13.7,13.7S361.2,149.9,353.6,149.9z"/>
<path class="st3" d="M353.6,165.1v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9c7.6,0,13.7,6.2,13.7,13.7
C367.3,158.9,361.2,165.1,353.6,165.1z M353.6,204.2v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-1.9
c7.6,0,13.7,6.2,13.7,13.7C367.3,198,361.2,204.2,353.6,204.2z"/>
<path class="st3" d="M353.6,219.4v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8V192c7.6,0,13.7,6.2,13.7,13.7
C367.3,213.2,361.2,219.4,353.6,219.4z"/>
<path class="st3" d="M353.6,238.5v-1.9c6.6,0,11.8-5.3,11.8-11.8s-5.3-11.8-11.8-11.8v-2c7.6,0,13.7,6.2,13.7,13.7
C367.3,232.3,361.2,238.5,353.6,238.5z M235,231.9h3.8v14.3H235V231.9z"/>
<path class="st3" d="M190.3,193.8h2.9v6.7h-2.9V193.8z M202.7,193.8h2.9v6.7h-2.9V193.8z"/>
<path class="st3" d="M192.2,189.5c-0.2,0-0.3-0.1-0.4-0.2l-2.9-4.8c-0.1-0.2-0.1-0.5,0.2-0.7c0.2-0.1,0.5-0.1,0.7,0.2l2.9,4.8
c0.1,0.2,0.1,0.5-0.2,0.7H192.2z M197.4,188c-0.3,0-0.5-0.2-0.5-0.5V182c0-0.3,0.2-0.5,0.5-0.5s0.5,0.2,0.5,0.5v5.5
C197.9,187.8,197.7,188,197.4,188z M202.6,189.4c-0.1,0-0.2,0-0.3-0.1c-0.2-0.2-0.3-0.5-0.1-0.7l3-4.7c0.2-0.2,0.5-0.3,0.7-0.1
s0.3,0.5,0.1,0.7l-3,4.7C202.9,189.3,202.7,189.4,202.6,189.4z"/>
<path class="st3" d="M69.7,190.5l5.7-0.9c0.6,1.9,1.9,2.9,4.2,3c2.4-0.2,3.7-1.2,4-3.3c-0.1-2.2-1.5-3.3-4.2-3.4
c-1.7,0.1-3,0.5-4,1.1h-4.7l1-11.2h16.1v3.6H76.5l-0.6,4.6c1.5-0.8,3.2-1.1,5-1.1c5.3,0.1,8.2,2.2,8.4,6.3c-0.2,4.3-3.4,6.5-9.7,6.7
C74.4,195.6,71.1,193.9,69.7,190.5L69.7,190.5z M111.2,185.5c0.2,6.9-3.1,10.3-9.9,10.1c-6.6-0.1-9.8-3.4-9.9-10
c0.2-6.7,3.5-10.2,9.9-10.4C107.8,175.2,111.1,178.7,111.2,185.5z M105.1,185.6c0.1-4.9-1.1-7.2-3.7-7c-2.7-0.1-4,2.3-4,7
c0,4.6,1.3,7,4,7C104,192.5,105.2,190.2,105.1,185.6z M133.1,185.5c0.2,6.9-3.1,10.3-9.9,10.1c-6.6-0.1-9.8-3.4-9.9-10
c0.2-6.7,3.5-10.2,9.9-10.4C129.7,175.2,133,178.7,133.1,185.5z M127,185.6c0.1-4.9-1.1-7.2-3.7-7c-2.7-0.1-4,2.3-4,7
c0,4.6,1.3,7,4,7C125.9,192.5,127.1,190.2,127,185.6z"/>
</svg>
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors : 无尘
* @LastEditTime : 2020-04-04 09:46:43
*/
/* 后台返回消息提示 */
import { Message } from 'element-ui';
// 后台返回异常提示
export default {
errorMsg: function(response) {
let local = window.location.origin;
/* if (local.indexOf('localhost') != -1) {
local = 'http://www.gicdev.com';
} */
if (response.errorCode != 1) {
if (response.errorCode == 4) {
window.location.href = local + '/haoban-3/#/login';
return false;
}
if (response.errorCode == 10) {
window.location.href = local + '/haoban-3/#/index';
return false;
}
Message.error({
duration: 1000,
message: response.message
});
}
}
};
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-12-05 09:56:10
* @LastEditors: 无尘
* @LastEditTime: 2018-12-05 09:56:10
*/
// 防抖
export function _debounce(fn, delay) {
var delay = delay || 200;
var timer;
// console.log(fn)
return function() {
var that = this;
var args = arguments;
if (timer) {
clearTimeout(timer);
}
timer = setTimeout(function() {
timer = null;
fn.apply(that, args);
}, delay);
};
}
// 节流
export function _throttle(fn, interval) {
var last;
var timer;
var interval = interval || 200;
return function() {
var that = this;
var args = arguments;
var now = +new Date();
if (last && now - last < interval) {
clearTimeout(timer);
timer = setTimeout(function() {
last = now;
fn.apply(that, args);
}, interval);
} else {
last = now;
fn.apply(that, args);
}
};
}
/**
* 手机号格式化
* @param {String} phone
*/
export function formatPhone(phone) {
phone = phone.toString();
return phone.substr(0, 3) + '****' + phone.substr(7, 11);
}
/**
* 时间戳格式化
*/
function formatDig(num) {
return num > 9 ? '' + num : '0' + num;
}
export function formatDate(time) {
let now = new Date(time);
let year = now.getFullYear();
let month = now.getMonth() + 1;
let date = now.getDate();
let hour = now.getHours();
let minute = now.getMinutes();
let second = now.getSeconds();
let data = year + '-' + formatDig(month) + '-' + formatDig(date) + ' ' + formatDig(hour) + ':' + formatDig(minute) + ':' + formatDig(second);
return data;
}
/**
* 千位分割
*/
export function formatNum(num) {
let number = num.toString().split('.'); // 分隔小数点
let dot = '0.' + (number[1] || 0);
var reg = /\d{1,3}(?=(\d{3})+$)/g;
return (
(number[0] + '').replace(reg, '$&,') +
'.' +
Number(dot)
.toFixed(2)
.toString()
.split('.')[1]
);
}
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors: 无尘
* @LastEditTime: 2019-09-25 17:17:00
*/
/* 消息提示 */
import { Message } from 'element-ui';
export default {
showmsg: function(msg, type) {
Message({
duration: 1000,
message: msg,
type: type
});
}
};
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors: 无尘
* @LastEditTime: 2018-10-10 14:44:45
*/
/**
* 判断字符长度
* @param: str
*/
export default {
/**
* 一个汉字算两个字符,一个英文字母或数字算一个字符
*/
getByteLen: function(val) {
let valStr = val == '' || val == null ? '' : val;
let len = 0;
for (let i = 0; i < valStr.length; i++) {
let a = valStr.charAt(i);
if (a.match(/[^\x00-\xff]/gi) != null) {
len += 2;
} else {
len += 1;
}
}
return len;
},
/**
* 一个汉字算一个字,一个英文字母或数字算半个字
*/
getZhLen: function(val) {
let valStr = val == '' || val == null ? '' : val;
let len = 0;
for (let i = 0; i < valStr.length; i++) {
let a = valStr.charAt(i);
if (a.match(/[^\x00-\xff]/gi) != null) {
len += 1;
} else {
len += 0.5;
}
}
return Math.ceil(len);
},
/*暂无用*/
cutStr: function(str, len, type) {
let char_length = 0;
for (let i = 0; i < str.length; i++) {
let son_str = str.charAt(i);
if (type == 1) {
encodeURI(son_str).length > 2 ? (char_length += 1) : (char_length += 0.5);
}
if (type == 2) {
char_length += 1;
}
if (char_length >= len) {
let sub_len = char_length == len ? i + 1 : i;
return str.substr(0, sub_len);
}
}
},
/**
* 限制字数用, 一个汉字算一个字,两个英文/字母算一个字
*/
getByteVal: function(val, max) {
let valStr = val == '' || val == null ? '' : val;
let returnValue = '';
let byteValLen = 0;
for (let i = 0; i < valStr.length; i++) {
if (valStr[i].match(/[^\x00-\xff]/gi) != null) byteValLen += 1;
else byteValLen += 0.5;
if (byteValLen > max) break;
returnValue += valStr[i];
}
return returnValue;
},
/**
* 限制字符数用, 一个汉字算两个字符,一个英文/字母算一个字符
*/
getCharVal: function(val, max) {
let valStr = val == '' || val == null ? '' : val;
let returnValue = '';
let byteValLen = 0;
for (let i = 0; i < valStr.length; i++) {
if (valStr[i].match(/[^\x00-\xff]/gi) != null) byteValLen += 2;
else byteValLen += 1;
if (byteValLen > max) break;
returnValue += valStr[i];
}
return returnValue;
},
/**
* 正则校验,校验非负数字
*/
regPos: function(v) {
let regTest = /^\d+(\.\d+)?$/;
return regTest.test(v);
}
};
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors: 无尘
* @LastEditTime: 2019-09-25 17:18:40
*/
/*
* 时间日期转换
* @param: "10:00-22:00"/ new Date()
*/
export default {
/*
* var storeBusinessTime="10:00-22:00" to
*/
timeToDate: function(val) {
var date = new Date()
var y = date.getFullYear();
var m = date.getMonth() +1;
var day = date.getDate();
var d = []; var newArr = [];
var dArr = val.split('-');
dArr.forEach(function(ele,index){
newArr.push(ele.split(':'))
})
d = [new Date(y,m,day,newArr[0][0],newArr[0][1]),new Date(y,m,day,newArr[1][0],newArr[1][1])]
return d;
},
dateToTime(val) {
console.log(val)
// (0-9)年月数字的显示
function formatDig(num) {
return num > 9 ? '' + num : '0' + num;
}
var t;
var t1 = formatDig(new Date(val[0]).getHours())+':'+formatDig(new Date(val[0]).getMinutes())
var t2 = formatDig(new Date(val[1]).getHours())+':'+formatDig(new Date(val[1]).getMinutes())
t= t1+'-'+t2
return t;
}
}
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors: 无尘
* @LastEditTime: 2020-03-11 17:33:01
-->
<template>
<div class="navwrap border-box flex flex-space-between">
<el-breadcrumb separator-class="el-icon-arrow-right">
<template v-for="(item, index) in navpath">
<template v-if="!!item.path">
<el-breadcrumb-item :key="'nav' + index" :to="{ path: item.path }" @click="changeRoute(item.path, item.relocation)">
<span class="el-breadcrumb__inner is-link" @click="changeRoute(item.path, item.relocation)">
{{ item.name }}
</span>
</el-breadcrumb-item>
</template>
<template v-else>
<el-breadcrumb-item :key="'nav' + index">{{ item.name }}</el-breadcrumb-item>
</template>
</template>
</el-breadcrumb>
<div class="my-customer-brand">
<el-tooltip class="item" effect="dark" content="不同品牌的工作台可分别进行管理。点击后切换,可以管理不同品牌下的应用" placement="top-start">
<span class="font-14 color-606266" style="cursor: pointer;padding-bottom: 2px; border-bottom: 1px dashed #2F54EB;">授权商户名称 </span>
</el-tooltip>
<el-select class="p-l-10" v-model="activeBrand" placeholder="请选择" @change="changeSelect">
<el-option v-for="item in brandListData" :key="item.enterpriseId" :label="item.enterpriseName" :value="item.enterpriseId"> </el-option>
</el-select>
</div>
</div>
</template>
<script>
import { postRequest } from '@/api/api';
import errMsg from '@/common/js/error';
export default {
name: 'navpath',
data() {
return {
projectName: 'haoban', // 当前项目名
activeBrand: '',
brandListData: []
};
},
props: {
navpath: {
type: Array,
default: function() {
return [];
}
},
slotFlag: {
type: Boolean,
default: false
},
navtip: {
type: Boolean,
default: false
},
subNavText: {
type: String,
default: ''
}
},
watch: {
brandId: function(newData, oldData) {
const that = this;
that.getBrandData();
}
},
methods: {
changeRoute(path, relocation) {
let that = this;
if (relocation) {
window.location.href = path;
} else {
that.$router.push(path);
}
},
/**
* 选择品牌
*/
changeSelect(val) {
let that = this;
let enterpriseId = '';
that.brandListData.forEach(ele => {
if (ele.enterpriseId == val) {
enterpriseId = ele.enterpriseId;
}
});
that.$emit('selectBrandId', val, enterpriseId);
},
/**
* 获取品牌
*/
getBrandData() {
const that = this;
postRequest('/haoban-manage3-web/wx-enterprise-list', {})
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
if (!!resData.result && !!resData.result.length) {
that.brandListData = resData.result;
if (!!that.$route.query.enterpriseId) {
that.activeBrand = that.$route.query.enterpriseId;
that.$emit('selectBrandId', that.$route.query.enterpriseId);
return false;
}
that.activeBrand = that.brandListData[0].enterpriseId;
// 由于门店选择组件中没有品牌id ,只有 groupId
that.$emit('selectBrandId', that.brandListData[0].enterpriseId, that.brandListData[0].enterpriseId);
}
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
}
},
mounted() {
const that = this;
that.getBrandData();
}
};
</script>
<style type="text/less" lang="less" scoped>
.navwrap {
height: 48px;
line-height: 48px;
padding: 0 20px;
box-sizing: border-box;
.el-breadcrumb {
line-height: 48px;
}
}
.boxbttom {
border-bottom: 1px solid #e4e7ed;
}
.boxshow {
border-bottom: 1px solid #e4e7ed;
box-shadow: 5px -1px 5px #dfdfdf;
}
.navtitle {
margin: 24px 0 0 0;
font-size: 20px;
color: #303133;
font-weight: 500;
}
.navtip {
width: 100%;
height: 38px;
line-height: 38px;
font-size: 13px;
border-radius: 2px;
color: #606266;
background-color: #f4f4f5;
}
.navmTop {
margin-top: 25px;
}
.navtipcolor {
margin: 0 12px;
color: #2f54eb;
}
.el-breadcrumb__inner.is-link:hover,
.el-breadcrumb__inner a:hover {
color: #2f54eb;
}
.el-breadcrumb__item:last-child .el-breadcrumb__inner,
.el-breadcrumb__item:last-child .el-breadcrumb__inner a,
.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,
.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
font-weight: 700;
text-decoration: none;
cursor: pointer;
color: #303133;
}
</style>
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors: 无尘
* @LastEditTime: 2020-03-11 17:32:16
-->
<template>
<div class="navwrap border-box">
<el-breadcrumb separator-class="el-icon-arrow-right">
<template v-for="(item, index) in navpath">
<template v-if="!!item.path">
<el-breadcrumb-item :key="'nav' + index" :to="{ path: item.path }" @click="changeRoute(item.path, item.relocation)">
<span class="el-breadcrumb__inner is-link" @click="changeRoute(item.path, item.relocation)">
{{ item.name }}
</span>
</el-breadcrumb-item>
</template>
<template v-else>
<el-breadcrumb-item :key="'nav' + index">{{ item.name }}</el-breadcrumb-item>
</template>
</template>
</el-breadcrumb>
</div>
</template>
<script>
import { postRequest } from '@/api/api';
import errMsg from '@/common/js/error';
export default {
name: 'navpath',
data() {
return {
projectName: 'member' // 当前项目名
// navpath: [
// {
// name: '首页',
// path: ''
// },
// {
// name: '会员标签',
// path: ''
// },
// ],
};
},
props: {
navpath: {
type: Array,
default: function() {
return [];
}
},
slotFlag: {
type: Boolean,
default: false
},
navtip: {
type: Boolean,
default: false
},
subNavText: {
type: String,
default: ''
}
},
methods: {
changeRoute(path, relocation) {
let that = this;
if (relocation) {
window.location.href = path;
} else {
that.$router.push(path);
}
},
// get nav path
getNavPath() {
let that = this;
let para = {
project: that.projectName,
path: that.$route.path.split('/')[1]
};
postRequest('/api-auth/get-current-memu-data', para)
.then(res => {
// console.log(res,res.data,res.data.errorCode)
var resData = res.data;
if (resData.errorCode == 0) {
if (!resData.result) {
return false;
}
that.navpath = [];
if (!!resData.result.list && !!resData.result.list.length) {
resData.result.list.forEach(function(ele, index) {
ele.name = ele.menuName;
ele.path = '';
if (index == resData.result.list.length - 1) {
ele.path = '/' + ele.menuUrl;
}
if (index > 0) {
that.navpath.push(ele);
}
});
// that.navpath = resData.result.list
}
// that.navpath[0].name = resData.result.level2.menuName;
// that.navpath[0].path = ''
// that.navpath[1].name = resData.result.level3.menuName;
// that.navpath[1].path = ''
// if (!!resData.result.level4) {
// that.navpath[2] = {
// name:'',
// path: ''
// }
// that.navpath[2].name = resData.result.level4.menuName;
// that.navpath[2].path = ''
// }
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
// that.toLogin()
that.$message.error({
duration: 1000,
message: error.message
});
});
}
},
/* eslint-disable */
mounted() {
// var that = this;
// that.getNavPath();
}
};
</script>
<style scoped>
.navwrap {
padding: 12px 20px;
}
.boxbttom {
border-bottom: 1px solid #e4e7ed;
}
.boxshow {
border-bottom: 1px solid #e4e7ed;
box-shadow: 5px -1px 5px #dfdfdf;
}
.navtitle {
margin: 24px 0 0 0;
font-size: 20px;
color: #303133;
font-weight: 500;
}
.navtip {
width: 100%;
height: 38px;
line-height: 38px;
font-size: 13px;
border-radius: 2px;
color: #606266;
background-color: #f4f4f5;
}
.navmTop {
margin-top: 25px;
}
.navtipcolor {
margin: 0 12px;
color: #2f54eb;
}
.el-breadcrumb__inner.is-link:hover, .el-breadcrumb__inner a:hover {
color: #2f54eb;
}
.el-breadcrumb__item:last-child .el-breadcrumb__inner,
.el-breadcrumb__item:last-child .el-breadcrumb__inner a,
.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,
.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
font-weight: 700;
text-decoration: none;
cursor: pointer;
color: #303133;
}
</style>
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 17:21:32
* @LastEditors: 无尘
* @LastEditTime: 2020-07-20 14:35:39
-->
<template>
<div class="navheader">
<!-- logo -->
<div class="navheader-logo fl cursor-pointer" :class="{ moveleft: isCollapse, moveright: !isCollapse }" @click="toIndex"><span class="pro-name">好办管理平台</span></div>
<div class="navheader-item fl">
<template v-for="(menuitem, index) in menuHead">
<a :key="index" :class="['itemlink menu-mall menu-font-16']" @click="changeRouter(menuitem.url)">
<span :class="['inline-block bottom', menuitem.url.indexOf(pathName) != -1 ? 'current-module' : '']">{{ menuitem.rightName }}</span>
</a>
</template>
<!-- 最右侧用户信息 -->
<div class="navuserinfo fr">
<span class="span-log color-909399 iconfont iconrizhifuwu"></span>
<el-popover placement="bottom" title="" width="95" trigger="hover" popper-class="user-header-pop" style="min-width: 95px;">
<ul class="navsuerwrap">
<li class="user-item loginout" style="text-align: center" @click.stop="toLoginOut"><a class="usertext">退出登录</a></li>
</ul>
<a class="nav-user-name" slot="reference">
<span class="font-12 color-606266">{{ userInfo.staffDTO.staffName || '--' }}</span> <i class="iconfont iconxiala arrowico color-c0c4cc"></i>
</a>
</el-popover>
</div>
</div>
<!-- <div v-if="!checkShow && !$route.path.includes('enterpriseSet')" class="set-tip-body">
<set-tip v-if="!checkShow" :tipText="tipText"></set-tip>
</div> -->
</div>
</template>
<script>
// import setTip from '@/components/app/set-tip.vue';
import { getRequest, postRequest } from '@/api/api';
import errMsg from '@/common/js/error';
import qs from 'qs';
export default {
name: 'vue-office-header',
props: ['menuRouter', 'collapseFlag', 'projectName'],
components: {
// setTip
},
data() {
return {
checkShow: true,
tipText: '请先完成商户初始化设置后,再进行其他操作',
repProjectName: 'haoban-manage-web', // 项目名
// 当前路由
pathName: '',
isCollapse: false, // 是否收起左侧
// 菜单数据
menuHead: [
{
menuCode: null,
rightName: '工作台',
url: '/index',
parentCode: null,
project: 'office'
},
{
menuCode: null,
rightName: '通讯录',
url: '/contactsList',
parentCode: null,
project: 'office'
},
{
menuCode: null,
rightName: '审核中心',
url: '/unreview?/reviewed/reviewSet',
parentCode: null,
project: 'office'
},
{
menuCode: null,
rightName: '企业设置',
url: '/enterpriseSet?/adminList',
parentCode: null,
project: 'office'
}
// {
// menuCode: null,
// rightName: '企业数据',
// url: '/enterpriseUseData?/enterpriseUseData',
// parentCode: null,
// project: 'office'
// }
],
// 获取 location origin
baseUrl: '',
routePathName: '', // 当前路由值
userInfo: {
name: '',
phoneNumber: '',
headPic: '',
staffDTO: {
staffName: ''
}
}
};
},
beforeMount() {
const that = this;
let host = window.location.origin;
if (host.indexOf('localhost') != '-1') {
that.baseUrl = 'http://www.gicdev.com';
} else {
that.baseUrl = host;
}
},
methods: {
/**
* 获取企业数据开关
*/
getSwitchData(wxEnterpriseId) {
const that = this;
let para = {
wxEnterpriseId: wxEnterpriseId
};
getRequest('/haoban-manage3-web/web/use-haoban3-service', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
if (resData.result) {
if (that.menuHead[that.menuHead.length - 1].rightName.indexOf('企业数据') == -1) {
that.menuHead.push({
menuCode: null,
rightName: '企业数据',
url: '/enterpriseUseData?/enterpriseUseData',
parentCode: null,
project: 'office'
});
}
} else if (that.menuHead[that.menuHead.length - 1].rightName.indexOf('企业数据') != -1) {
that.menuHead.splice(that.menuHead.length - 1, 1);
}
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 获取显示的提示
*/
getTipData() {
const that = this;
let para = {};
getRequest('/haoban-manage3-web/is-wx-enterprise-secret-set', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
that.checkShow = resData.result;
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
toIndex() {
const that = this;
that.$router.push('/index');
},
/**
* 路由跳转
*/
changeRouter(path) {
const that = this;
that.$router.push(path);
},
// 处理折叠
handleCollapse() {
const that = this;
that.isCollapse = that.isCollapse == true ? false : true;
that.$emit('collapseTag', that.isCollapse);
},
// 跳转 gic 管理后台
toGicLogin() {
let toUrl = window.location.origin.includes('demogic.com') ? window.location.origin : 'https://hope.demogic.com';
window.location.href = toUrl + '/gic-web/#/';
},
//退出登录
toLoginOut() {
const that = this;
that
.$confirm('确认退出吗?', '提示', {
type: 'warning'
})
.then(() => {
that.axios
.post('/haoban-manage3-web/login-out', {})
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
that.$message({
message: '退出成功',
type: 'success'
});
// 跳转登录页
window.location.href = window.location.origin + '/haoban-3/#/login';
return;
}
that.$message.error({
duration: 1000,
message: resData.message
});
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
})
.catch(() => {});
},
// 触发父组件路由
toRouter(path, name, code) {
const that = this;
let obj = {
path: '/' + path,
name: name
};
that.$emit('toRouterView', obj);
},
/**
* 简单数组-->父子数组对象
*/
treeData(data) {
let tree = data.filter(father => {
//循环所有项
let branchArr = data.filter(child => {
return father.haobanMenuRightId == child.parentRightId; //返回每一项的子级数组
});
if (branchArr.length > 0) {
father.children = branchArr; //如果存在子级,则给父级添加一个children属性,并赋值
}
return father.parentRightId == -1; //返回第一层
});
return tree;
},
/**
* 获取菜单详情
*/
getMenuDetail() {
const that = this;
let para = {
router: that.routePathName,
project: that.repProjectName,
requestProject: that.repProjectName
};
that.axios
.post(that.baseUrl + '/haoban-manage-web/menu-detail', qs.stringify(para))
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
that.pathName = '/' + resData.result.top.url;
return;
}
that.$message.error({
duration: 1000,
message: resData.message
});
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 获取菜单
*/
getHeaderMenu() {
const that = this;
let para = {
project: that.repProjectName,
requestProject: that.repProjectName
};
that.axios
.post(that.baseUrl + '/haoban-manage-web/menu-list', qs.stringify(para))
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
resData.result.forEach(function(ele, index) {
ele.url = '/' + ele.url;
});
that.menuHead = that.treeData(resData.result);
that.$nextTick(() => {
that.userInfo = JSON.parse(localStorage.getItem('userInfos'));
if (!that.userInfo) {
that.userInfo = {
name: '',
headPic: '',
phoneNumber: ''
};
that.getUserData();
}
});
return;
}
that.$message.error({
duration: 1000,
message: resData.message
});
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
getUserData() {
const that = this;
that.axios
.get(that.baseUrl + '/haoban-manage-web/emp/get-user-info', {})
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
that.userInfo = resData.result;
localStorage.setItem('userInfos', JSON.stringify(resData.result));
return;
}
that.$message.error({
duration: 1000,
message: resData.message
});
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 登录 --- api
*/
toLogin() {
const that = this;
let para = {};
postRequest('/haoban-manage3-web/get-login-info', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
// localStorage.removeItem('userInfos');
if (!resData.result.staffDTO) {
resData.result.staffDTO = {
staffName: ''
};
}
localStorage.setItem('userInfos', JSON.stringify(resData.result));
that.userInfo = resData.result;
that.getSwitchData(resData.result.wxEnterpriseId);
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
}
},
watch: {
$route: {
handler: function(val, oldVal) {
// const that = this;
// that.getMenuDetail();
},
// 深度观察监听
deep: true
},
collapseFlag: function(newData, oldData) {
const that = this;
that.isCollapse = newData;
},
projectName: function(newData, oldData) {
const that = this;
that.repProjectName = newData || 'haoban-manage-web';
}
},
mounted() {
const that = this;
that.pathName = that.$route.path;
// 获取项目名 pathname (路由的hash)
that.routePathName = window.location.hash.split('/')[1];
if (that.routePathName.indexOf('?') != -1) {
that.routePathName = that.routePathName.split('?')[0];
}
if (that.routePathName.indexOf('/') != -1) {
that.routePathName = that.routePathName.split('/')[0];
}
// 项目名
that.repProjectName = that.projectName || 'haoban-manage-web';
that.isCollapse = that.collapseFlag;
// 获取菜单
that.toLogin();
that.getTipData();
/* if (!localStorage.getItem('userInfos')) {
that.toLogin();
} else {
that.userInfo = JSON.parse(localStorage.getItem('userInfos'));
} */
// Promise.all([that.getHeaderMenu(), that.getMenuDetail()]);
// that.userInfo = JSON.parse(localStorage.getItem('userInfos'));
}
};
</script>
<style lang="less" scoped>
@base-color: #353944;
@hover-color: #3c92eb;
@hoverbg-color: #20242d;
@main-color: #2f54eb;
@navbgcolor: #04143a;
@sidebgcolor: #020b21;
@userinfobgcolor: #ecf5ff;
@contentbgcolor: #f5f7fa;
@bordercolor: #dcdfe6;
@customnavcolor: #04143a;
@btnbgcolor: #f5f7fa;
@iconbgcolor: #e6e9f2;
@elmenuisactive: #2f54eb;
/* flex */
.flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.flex-1 {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.flex-column {
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
-o-flex-direction: column;
flex-direction: column;
}
.flex-row {
-webkit-flex-direction: row;
-moz-flex-direction: row;
-ms-flex-direction: row;
-o-flex-direction: row;
flex-direction: row;
}
.flex-align-center {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.flex-pack-center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.flex-between {
-webkit-justify-content: space-between;
justify-content: space-between;
}
.flex-wrap {
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-o-flex-wrap: wrap;
flex-wrap: wrap;
}
.border-box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.flex1(@width, @height) {
flex: 0 0 @width;
width: @width;
height: @height;
}
.set-tip-body {
position: fixed;
left: 50%;
top: 91px;
z-index: 999;
}
.pro-name {
font-size: 16px;
font-weight: 600;
color: rgba(48, 49, 51, 1);
line-height: 22px;
background: linear-gradient(270deg, rgba(91, 74, 219, 1) 0%, rgba(45, 168, 255, 1) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.user-item {
padding: 10px 0;
&:hover {
color: @main-color;
background-color: @userinfobgcolor;
cursor: pointer;
}
}
.navsuerwrap /deep/ {
.user-item {
color: #606266;
a {
color: #606266;
}
&:hover .usertext {
display: block;
color: @main-color;
background-color: @userinfobgcolor;
cursor: pointer;
}
}
.loginout {
// border-top: 1px solid #eee;
// box-sizing: border-box;
// padding: 15px 0;
// margin-bottom: 20px;
}
}
.navheader /deep/ {
position: fixed;
display: flex;
top: 0;
left: 0;
width: 100%;
/*min-width: 1400px;*/
height: 46px;
line-height: 46px;
font-size: 14px;
background-color: #fff;
padding: 0;
z-index: 99;
color: #fff;
-webkit-box-shadow: 0px 4px 6px 0px rgba(221, 227, 237, 0.29);
box-shadow: 0px 4px 6px 0px rgba(221, 227, 237, 0.29);
.fl {
float: left;
}
.fr {
float: right;
}
&-logo {
flex: 0 0 200px;
width: 200px;
height: 46px;
float: left;
padding-left: 50px;
font-size: 20px;
color: #1f2f3d;
text-align: left;
background: url('../assets/logo.png') no-repeat 20px center;
background-size: 22px;
.border-box;
}
&-pic {
vertical-align: middle;
}
&-item {
flex: 1;
}
.itemlink {
float: left;
display: inline-block;
width: 133px;
height: 44px;
text-align: center;
cursor: pointer;
color: #606266;
&.menu-font-16 {
font-size: 16px;
}
&.icon-collapse {
width: auto;
padding: 0 23px 0 14px;
}
&:hover {
color: @main-color;
}
}
.bottom:hover {
/* border-bottom: 2px solid @main-color; */
}
/* 选中 */
.current-module.bottom {
color: @main-color;
/* border-bottom: 2px solid @main-color; */
font-weight: 600;
position: relative;
&::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
margin: 0 auto;
width: 100%;
animation: borders 0.5s;
border-top: 2px solid #2f54ed;
}
}
/* logo */
.moveleft {
margin-left: -136px;
transition: all 0.3s ease;
background-position: 151px 10px;
color: transparent;
}
.moveright {
margin-left: 0px;
transition: all 0.2s ease;
}
}
li {
list-style: none;
}
/*用户信息*/
.navuserinfo {
/*width: 140px;*/
/*font-size: 0;*/
text-align: center;
padding-right: 20px;
.span-log {
position: relative;
font-size: 18px;
padding-right: 10px;
/* border-right: 1px solid #e4e7ed; */
&::after {
content: '';
position: absolute;
top: 3px;
right: 0;
width: 0;
height: 14px;
border-right: 1px solid #e4e7ed;
}
}
.el-button--text {
padding-right: 24px;
font-size: 14px;
color: #606266;
margin-left: 30px;
}
}
.nav-user-name {
position: relative;
display: inline-block;
padding: 0 20px 0 10px;
color: #606266;
text-align: center;
&:hover {
color: #2f54eb;
}
&:hover .arrowico {
transform: rotate(180deg);
}
}
.user-left-img {
img {
width: 24px;
height: 24px;
border-radius: 50%;
}
}
@keyframes borders {
from {
width: 0;
}
to {
width: 100%;
}
}
/* 当浏览器的可视区域小于1280px */
@media screen and (max-width: 1280px) {
.navheader {
min-width: 1280px;
}
}
@media screen and (min-width: 1280px) and (max-width: 1366px) {
.navheader {
min-width: 1280px;
}
}
@media screen and (min-width: 1366px) and (max-width: 1440px) {
.navheader {
min-width: 1366px;
}
}
@media screen and (min-width: 1440px) and (max-width: 1920px) {
.navheader {
min-width: 1440px;
}
}
</style>
function getOrigin() {
let origin = window.location.origin;
if (origin.indexOf('localhost') >= 0 || origin.indexOf('192.168') >= 0) {
origin = 'https://four.gicdev.com';
}
return origin;
}
export const origin = getOrigin();
// 请求成功的code
export const succCode = '0000';
// 未登录、登录超时code
export const notAuthCode = '6666';
// 后端请求拦截的标识,用于区分是ajax请求还是页面跳转
export const isRequest = { isControl: true };
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2019-09-11 18:18:32
* @LastEditors: 无尘
* @LastEditTime: 2020-07-08 14:46:27
*/
/* 全局过滤器 */
const dateFormat = function(timeSpan, format) {
if (!timeSpan) return;
timeSpan = timeSpan.toString().length === 10 ? timeSpan * 1000 : timeSpan;
let date = new Date(timeSpan);
let o = {
'M+': date.getMonth() + 1,
'D+': date.getDate(),
W: '日一二三四五六'.charAt(date.getDay()),
'h+': date.getHours(),
'm+': date.getMinutes(),
's+': date.getSeconds(),
'q+': Math.floor((date.getMonth() + 3) / 3),
S: date.getMilliseconds()
};
if (/(Y+)/.test(format)) {
format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length));
}
for (let k in o) {
if (new RegExp('(' + k + ')').test(format)) {
format = format.replace(RegExp.$1, RegExp.$1.length === 1 ? o[k] : ('00' + o[k]).substr(('' + o[k]).length));
}
}
return format;
};
/**
* 时间戳---> 年-月-日 时:分:秒
* @param timestamp
*/
const formatTimeStamp = function(data) {
if (!data) {
return;
}
let date = new Date(data);
let month = date.getMonth() + 1;
let day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
let newMonth = month < 10 ? '0' + month : month;
let hours = date.getHours() < 10 ? '0' + date.getHours() : date.getHours();
let minutes = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes();
let seconds = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds();
return `${date.getFullYear()}-${newMonth}-${day} ${hours}:${minutes}:${seconds}`;
};
/**
* 时间戳---> 年.月.日 时:分:秒
* @param timestamp
*/
const formatTimeYmdHms = function(data) {
if (!data) {
return;
}
let date = new Date(data);
let month = date.getMonth() + 1;
let day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
let newMonth = month < 10 ? '0' + month : month;
let hours = date.getHours() < 10 ? '0' + date.getHours() : date.getHours();
let minutes = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes();
let seconds = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds();
return `${date.getFullYear()}.${newMonth}.${day} ${hours}:${minutes}:${seconds}`;
};
/**
* 时间戳---> 年-月
* @param timestamp
*/
const timeStampToYm = function(data) {
if (!data) {
return;
}
let date = new Date(data);
let month = date.getMonth() + 1;
let newMonth = month < 10 ? '0' + month : month;
return `${date.getFullYear()}-${newMonth}`;
};
/**
* 时间戳---> 年-月-日
* @param timestamp
*/
const timeStampToYmd = function(data) {
if (!data) {
return;
}
let date = new Date(data);
let month = date.getMonth() + 1;
let day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
let newMonth = month < 10 ? '0' + month : month;
return `${date.getFullYear()}-${newMonth}-${day}`;
};
/**
* 时间戳---> 时:分:秒
* @param timestamp
*/
const timeStampToHms = function(data) {
if (!data) {
return;
}
let date = new Date(data);
let hours = date.getHours() < 10 ? '0' + date.getHours() : date.getHours();
let minutes = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes();
let seconds = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds();
return `${hours}:${minutes}:${seconds}`;
};
/**
* 时间戳---> *天*小时*分
* @param timestamp
*/
const timeStampSpace = function(date) {
if (!date) {
return;
}
let date2 = new Date();
let date3 = new Date(Number(date)).getTime() - date2.getTime(); //时间差的毫秒数
if (date3 < 0) {
return '';
}
//计算出相差天数
let days = Math.floor(date3 / (24 * 3600 * 1000));
//计算出小时数
let leave1 = date3 % (24 * 3600 * 1000); //计算天数后剩余的毫秒数
let hours = Math.floor(leave1 / (3600 * 1000));
//计算相差分钟数
let leave2 = leave1 % (3600 * 1000); //计算小时数后剩余的毫秒数
let minutes = Math.floor(leave2 / (60 * 1000));
//计算相差秒数
// let leave3 = leave2 % (60 * 1000); //计算分钟数后剩余的毫秒数
// let seconds = Math.round(leave3 / 1000);
return `${days}${hours}小时${minutes}分`;
};
/**
* 手机号格式化
* @param {String} phone
*/
const formatPhoneNum = function(phone) {
if (!phone) {
return '';
}
phone = phone.toString();
return phone.substr(0, 3) + '****' + phone.substr(7, 11);
};
/**
* 姓名格式化
* @param {String} phone
*/
const formatName = function(name) {
if (!name) {
return '';
}
name = name.toString();
return '**' + name.substr(name.length - 1, name.length);
};
/**
* 毫秒---> *时*分*秒
* @param timestamp
*/
const formatTime = function(msTime) {
if (!msTime) {
return '00:00:00';
}
let time = msTime / 1000;
let day = Math.floor(time / 60 / 60 / 24);
let hour = day * 24 + (Math.floor(time / 60 / 60) % 24) < 10 ? '0' + (day * 24 + (Math.floor(time / 60 / 60) % 24)) : day * 24 + (Math.floor(time / 60 / 60) % 24);
let minute = Math.floor(time / 60) % 60 < 10 ? '0' + (Math.floor(time / 60) % 60) : Math.floor(time / 60) % 60;
let second = Math.floor(time) % 60 < 10 ? '0' + (Math.floor(time) % 60) : Math.floor(time) % 60;
return `${hour}:${minute}:${second}`;
};
export default {
dateFormat,
formatTimeStamp,
timeStampToYm,
timeStampToYmd,
timeStampToHms,
formatTimeYmdHms,
formatPhoneNum,
formatName,
timeStampSpace,
formatTime
};
<template>
<dm-layout/>
</template>
<script>
export default {
name: 'layout'
}
</script>
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2020-07-16 16:37:05
* @LastEditors: 无尘
* @LastEditTime: 2020-07-20 14:28:50
*/
import 'babel-polyfill';
import 'element-ui/lib/theme-chalk/index.css';
import '@/styles/reset.less';
import '@/styles/font/iconfont.css';
import Vue from 'vue';
import VueRouter from 'vue-router';
import axios from 'axios';
import ElementUI from 'element-ui';
import App from './App.vue';
import router from './router';
import filters from '@/filters/index.js';
// import { isRequest, itemCode } from '@/config';
Vue.use(VueRouter);
Vue.use(ElementUI);
// 请求头这种添加请求标识
// Object.assign(axios.defaults.headers.common, isRequest);
axios.defaults.withCredentials = true;
Vue.prototype.axios = axios;
// 开启vue devtools.....
/* eslint-disable-next-line */
Vue.config.devtools = process.env.NODE_ENV !== 'production';
Vue.config.productionTip = false;
// 全局注册过滤器
Object.keys(filters).forEach(key => {
Vue.filter(key, filters[key]);
});
new Vue({
router,
render: h => h(App)
}).$mount('#app')
'use strict';
/* eslint-disable */
function _broadcast(componentName, eventName, params) {
this.$children.forEach(function(child) {
var name = child.$options.componentName;
if (name === componentName) {
child.$emit.apply(child, [eventName].concat(params));
} else {
_broadcast.apply(child, [componentName, eventName].concat([params]));
}
});
}
export default {
methods: {
dispatch: function dispatch(componentName, eventName, params) {
var parent = this.$parent || this.$root;
var name = parent.$options.componentName;
while (parent && (!name || name !== componentName)) {
parent = parent.$parent;
if (parent) {
name = parent.$options.componentName;
}
}
if (parent) {
parent.$emit.apply(parent, [eventName].concat(params));
}
},
broadcast: function broadcast(componentName, eventName, params) {
_broadcast.call(this, componentName, eventName, params);
}
}
};
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2020-07-17 10:38:29
* @LastEditors: 无尘
* @LastEditTime: 2020-07-17 11:07:42
*/
/* eslint-disable */
module.exports = (parantfile, file) => r => {
import('@/views/' + parantfile + '/' + file + '.vue').then(module => {
r(module);
});
};
import VueRouter from 'vue-router';
import { routes } from './routes.js';
const router = new VueRouter({
routes
});
export default router;
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2020-07-16 16:37:05
* @LastEditors: 无尘
* @LastEditTime: 2020-07-21 09:52:25
*/
import _import from './_import.js';
const errorPage = r => {
import('@/views/errorPage/index.vue').then(module => {
r(module);
});
};
export const routes = [
{
path: '/',
name: '/',
redirect: 'login'
},
{
path: '/login',
name: '登录',
component: _import('login', 'index')
},
{
path: '/index',
name: 'index',
component: _import('index', 'index')
},
{
path: '/403',
name: '无权访问',
component: errorPage
},
{
path: '/404',
name: 'error404',
component: errorPage
},
{
path: '/500',
name: 'error500',
component: errorPage
},
{
path: '*',
redirect: '/404',
hidden: true
}
]
// selected background color
@blue-selected: #f0f5ff;
// hover
@blue-hover: #597ef7;
// click
@blue-click: #1d39c4;
// normal、link、brand color
@blue: #2f54ed;
// success
@green-success: #52c41a;
// warning
@yellow-warning: #faad14;
// success
@red-error: #f5222d;
// 标题文字
@gray01: #303133;
// 常规信息、按钮文字
@gray02: #606266;
// 内容文字、说明文字
@gray03: #909399;
// 输入框说明文字
@gray-placeholder: #c0c4cc;
// 线框、输入框、下拉框的边框颜色
@gray-border: #c4c6cf;
// tab选项卡、表格单元格底部分割线
@gray-tab: #dcdfe6;
// 表头背景色
@gray-thead: #ebecf0;
// 分割线的颜色
@gray-separator: #e4e7ed;
// 背景底色
@gray-background: #f0f2f5;
// 输入框禁止输入的颜色
@gray-disable: #f5f7fa;
@import './colors.less';
.font-909399 {
color: #909399;
}
.damolish .dm-store-plus {
display: inline-block;
vertical-align: middle;
font-weight: bold;
color: #1890FF;
}
.option-dropdown {
padding: 13px 8px !important;
li {
padding: 0 8px;
text-align: center;
height: 32px;
line-height: 32px;
color: @gray02;
font-size: 14px;
cursor: pointer;
&.disabled {
cursor: no-drop;
}
&:hover, &.active {
background: #ecf5ff;
color: @blue;
}
}
padding: 13px 5px;
min-width: 170px;
&.gray {
li {
color: @gray02;
}
li:hover, li.active {
color: @gray02;
background: @gray-disable;
}
}
}
pre, textarea {
font-family: inherit;
}
@import "./colors.less";
.damolish {
/* 引用字体图标库的svg图标 */
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
/* button start */
.el-button {
padding: 8px 12px;
font-size: 14px;
&.is-disabled,
&.is-disabled:focus,
&.is-disabled:hover {
color: @gray-placeholder;
}
&:not(.el-button--text) {
&.is-disabled,
&.is-disabled:focus,
&.is-disabled:hover {
background-color: @gray-disable;
border-color: @gray-border;
color: @gray-placeholder;
}
}
&.is-loading:before {
background-color: rgba(255, 255, 255, 0.25);
}
&.el-button--mini,
&.el-button--small {
font-size: 12px;
}
&.el-button--mini,
&.el-button--mini.is-round {
padding: 7px 15px;
}
&.button-new-tag {
border-style: dashed;
}
}
:not(.el-transfer__buttons) .el-button & + .el-button {
margin-left: 10px;
}
.el-button--default {
color: @gray02;
background-color: #fff;
border-color: @gray-border;
&:hover {
color: @blue;
border-color: @blue;
}
&:active {
color: @blue-click;
border-color: @blue-click;
}
}
.el-button--primary {
color: #fff;
background-color: @blue;
border-color: @blue;
&:hover {
color: #fff;
background-color: @blue-hover;
border-color: @blue-hover;
}
&:active {
background-color: @blue-click;
border-color: @blue-click;
}
}
.el-button--danger {
color: @red-error;
background-color: @gray-disable;
border-color: @gray-border;
&:hover {
color: #fff;
background-color: @red-error;
border-color: @red-error;
}
&:active {
color: #fff;
background-color: #cf1322;
border-color: #cf1322;
}
}
.el-button--text {
padding: 0;
color: @blue;
&:hover {
color: @blue-hover;
}
&:active {
color: @blue-click;
}
}
/* 幽灵按钮 */
.specter {
&.el-button--default {
color: #fff;
background-color: transparent;
border-color: #fff;
&:hover {
color: #fff;
border-color: @blue;
background-color: @blue;
}
&:active {
color: #fff;
border-color: @blue-click;
background-color: @blue-click;
}
}
&.el-button--primary {
color: @blue;
background-color: transparent;
border-color: @blue;
&:hover {
color: #fff;
border-color: @blue;
background-color: @blue;
}
&:active {
color: #fff;
border-color: @blue-click;
background-color: @blue-click;
}
}
&.el-button--danger {
color: @red-error;
background-color: transparent;
border-color: @red-error;
&:hover {
color: #fff;
background-color: @red-error;
border-color: @red-error;
}
&:active {
color: #fff;
background-color: #cf1322;
border-color: #cf1322;
}
}
&.is-disabled,
&.is-disabled:focus,
&.is-disabled:hover {
background-color: transparent;
border-color: @gray-border;
color: @gray-placeholder;
}
}
.el-button-group > .el-button + .el-button {
margin-left: 0;
}
/* button end */
/* breadcrumb start*/
.el-breadcrumb__inner {
a,
&.is-link {
font-weight: 400;
color: @gray02;
}
}
.el-breadcrumb__item:last-child {
.el-breadcrumb__inner,
.el-breadcrumb__inner a,
.el-breadcrumb__inner a:hover,
.el-breadcrumb__inner:hover {
font-weight: 500;
color: @gray01;
}
}
.el-breadcrumb__separator[class*="icon"] {
font-size: 12px;
color: #a0a2ad;
}
/* breadcrumb end*/
/* dropdown start*/
.el-dropdown-menu__item,
.el-dropdown-menu__item:not(.is-disabled),
.el-dropdown-selfdefine {
.el-icon-arrow-down {
transition: all 0.5s;
}
}
.el-dropdown-menu__item:focus,
.el-dropdown-menu__item:not(.is-disabled):hover,
.el-dropdown-selfdefine:hover {
color: @blue;
.el-icon-arrow-down {
transform: rotateZ(-180deg);
}
}
/* dropdown end*/
/* pagination start*/
.el-pagination {
margin: 20px 0;
padding: 2px 0;
&.is-background .el-pager li:not(.disabled).active {
background-color: @blue;
}
&.is-background .el-pager li:not(.disabled):not(.active):hover {
color: @blue;
}
.el-select .el-input {
.el-input__inner {
height: 28px;
line-height: 27px;
}
.el-select__caret.is-reverse {
margin-top: -2px;
}
}
.btn-next {
margin-right: 0;
}
button:hover {
color: @blue;
}
}
.el-pagination__editor.el-input .el-input__inner:hover,
.el-pagination__sizes .el-input .el-input__inner:hover {
border-color: @blue;
}
.el-pager li {
&:hover, &.active {
color: @blue;
}
}
/* pagination end */
/* checkbox start*/
.el-checkbox {
color: @gray01;
&.is-bordered {
border-color: @gray-border;
&.el-checkbox--medium {
height: 32px;
}
&.is-checked {
border-color: @gray-border;
}
}
&.is-disabled {
color: @gray-placeholder;
.is-disabled .el-checkbox__inner {
border-color: @gray-placeholder;
background-color: @gray-disable;
}
}
}
.el-checkbox__inner:hover {
border-color: @blue;
}
.el-checkbox__input {
&.is-checked,
&.is-indeterminate {
.el-checkbox__inner {
background-color: @blue;
border-color: @blue;
}
}
&.is-focus {
.el-checkbox__inner {
border-color: @blue;
}
}
&.is-checked + .el-checkbox__label {
color: @gray02;
}
}
/* checkbox end*/
/* radio start */
.el-radio {
color: @gray01;
}
.el-radio__input.is-checked {
& + .el-radio__label {
color: @gray01;
}
.el-radio__inner {
border-color: @blue;
background-color: @blue;
}
}
.el-radio__inner:hover {
border-color: @blue;
}
.el-radio-group:not(.specter) .el-radio-button {
.el-radio-button__inner {
border: 1px solid #dcdfe6;
}
&.is-active .el-radio-button__inner {
border-color: @blue;
}
&:not(.is-active) .el-radio-button__inner:hover {
color: @blue;
border-color: @blue;
}
}
.el-radio-button:not(.is-active) .el-radio-button__orig-radio:checked + .el-radio-button__inner {
border-color: @blue;
background-color: @blue;
&:hover {
color: #fff;
}
}
.el-radio-group.specter {
.is-active {
.el-radio-button__inner {
color: @blue;
background-color: transparent;
}
}
}
/* radio end */
/* input start */
.el-input__inner {
padding: 0 12px;
height: 32px;
font-size: 14px;
line-height: 32px;
color: @gray01;
border-color: @gray-border;
&:hover {
border-color: @gray-placeholder;
}
}
.el-input--prefix .el-input__inner {
padding-left: 30px;
}
.el-input--suffix .el-input__inner {
padding-right: 30px;
}
.el-input.is-disabled .el-input__inner {
border-color: @gray-border;
}
.el-textarea__inner {
color: @gray01;
resize: none;
border-color: @gray-border;
&:focus {
border-color: @blue;
}
}
.el-input__count {
font-size: 12px;
color: #c0c4cc;
line-height: normal;
}
.el-cascader .el-input .el-input__inner:focus,
.el-cascader .el-input.is-focus .el-input__inner,
.el-input.is-active .el-input__inner,
.el-input__inner:focus {
border-color: @blue;
}
/* 可清空的输入框 清空按钮 */
.el-input__suffix .el-icon-error {
cursor: pointer;
}
/* input end */
/* input-number start */
.el-input-number {
// width: 90px;
line-height: 32px;
.el-input-number__decrease,
.el-input-number__increase {
line-height: 30px;
&:hover {
color: @blue;
}
&:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled) {
border-color: @blue;
}
}
&.is-controls-right {
&:hover {
.el-input-number__decrease,
.el-input-number__increase {
opacity: 1;
}
}
.el-input__inner {
text-align: left;
padding-left: 12px;
padding-right: 20px;
}
.el-input-number__decrease,
.el-input-number__increase {
width: 20px;
line-height: 15px;
opacity: 0;
transition: opacity 0.5s;
&:hover {
color: @blue;
&:not(.is-disabled)
~ .el-input
.el-input__inner:not(.is-disabled):not(:focus) {
border-color: @gray-border;
}
}
}
}
}
/* input-number end */
/* switch start */
.el-switch.is-checked .el-switch__core {
border-color: @blue;
background-color: @blue;
}
.el-switch__label.is-active {
color: @blue;
}
/* switch end */
/* select start */
.el-select {
.el-input {
border: none;
&.is-focus .el-input__inner {
border-color: @blue;
}
.el-input__inner {
border: 1px solid @gray-border;
}
}
.el-tag__close.el-icon-close {
background-color: transparent;
}
}
.el-select-dropdown__item.selected {
color: @blue;
}
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected {
color: @blue;
}
/* select end */
/* time select start */
.time-select-item.selected:not(.disabled),
.el-range-editor.is-active,
.el-range-editor.is-active:hover {
border-color: @blue;
}
.el-range-editor:not(.is-disabled) {
.el-range-input {
color: @gray01;
}
.el-range-separator {
width: auto;
color: @gray03;
}
.el-range__icon {
line-height: 30px;
}
.el-icon-time,
.el-icon-date {
color: @gray03;
}
}
/* time select end */
/* date picker start */
.el-date-table {
td.today:not(.end-date):not(.start-date) span {
color: @blue;
}
td.start-date span,
td.end-date span {
background-color: @blue;
}
}
.el-date-editor .el-range__close-icon {
line-height: 30px;
}
.el-picker-panel__icon-btn:hover {
color: @blue;
}
/* date picker end */
/* date time picker start*/
.el-date-table td.available:hover {
color: @blue;
}
.el-date-table td.current:not(.disabled) span {
color: #fff;
background-color: @blue;
}
/* date time picker end */
/* tag start */
.el-tag {
display: inline-flex;
align-items: center;
padding: 0 8px;
height: 22px;
line-height: 22px;
border-radius: 2px;
+ .el-tag {
margin-left: 6px;
}
.el-icon-close {
top: 0;
}
}
.el-tag--dark {
background-color: @blue;
border-color: @blue;
.el-tag__close:hover {
background-color: transparent;
}
&.el-tag--success {
background-color: @green-success;
border-color: @green-success;
}
&.el-tag--info {
background-color: @gray02;
border-color: @gray02;
}
&.el-tag--danger {
background-color: @red-error;
border-color: @red-error;
}
&.el-tag--warning {
background-color: @yellow-warning;
border-color: @yellow-warning;
}
&.el-tag--cyan {
background-color: #13c2c2;
border-color: #13c2c2;
}
&.el-tag--greekblue {
background-color: #2f54eb;
border-color: #2f54eb;
}
}
.el-tag--plain, .el-tag--light {
color: @blue;
background-color: #e6f7ff;
border-color: #91d5ff;
.el-tag__close:hover {
color: inherit;
background-color: transparent;
}
&.el-tag--success {
color: @green-success;
background-color: #f6ffed;
border-color: #b7eb8f;
}
&.el-tag--info {
color: @gray02;
border-color: @gray-tab;
background-color: #fafafa;
}
&.el-tag--danger {
color: @red-error;
background-color: #fff1f0;
border-color: #ffa39e;
}
&.el-tag--warning {
color: @yellow-warning;
background-color: #fff7e6;
border-color: #ffd591;
}
&.el-tag--cyan {
color: #13c2c2;
background-color: #e6fffb;
border-color: #87e8de;
}
&.el-tag--greekblue {
color: #2f54eb;
background-color: #f0f5ff;
border-color: #adc6ff;
}
}
/* tag end */
/* tabs start */
.el-tabs__active-bar {
display: none;
}
.el-tabs--bottom, .el-tabs--top {
.el-tabs__item.is-bottom:nth-child(2),
.el-tabs__item.is-top:nth-child(2) {
padding-left: 20px;
}
}
.el-tabs--bottom, .el-tabs--top {
.el-tabs__item.is-bottom:last-child,
.el-tabs__item.is-top:last-child{
padding-right: 20px;
}
}
.el-tabs:not(.el-tabs--card):not(.el-tabs--border-card) {
.el-tabs__item {
position: relative;
color: @gray02;
&.is-active {
color: @blue;
&::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
margin: 0 auto;
width: 100%;
animation: diffuse 0.5s;
border-top: 2px solid @blue;
}
}
}
}
.el-tabs.el-tabs--card {
>.el-tabs__header .el-tabs__nav {
border: none;
}
.el-tabs__item {
padding: 0 15px;
color: @gray02;
border: 1px solid #E4E7ED;
border-radius: 5px 5px 0 0;
background-color: #f2f3f7;
+.el-tabs__item {
margin-left: 4px;
}
&.is-active {
color: @blue;
border-bottom: none;
background-color: #fff;
&::before {
content: "";
position: absolute;
top: -1px;
left: 0;
right: 0;
z-index: 1;
margin: 0 auto;
width: 100%;
animation: diffuse 0.5s;
border-top: 2px solid @blue;
}
}
}
}
.el-tabs__header {
margin-bottom: 20px;
}
.el-tabs__nav-wrap::after {
height: 1px;
}
@keyframes diffuse {
from {
width: 0;
}
to {
width: 100%;
}
}
// }
/* tabs end */
/* table start */
// 解决使用表格固定列时,表格未超宽情况下,固定列底部有一条线的bug
:not(.el-table--scrollable-x) .el-table__body-wrapper {
&.is-scrolling-left~.el-table__fixed,
&.is-scrolling-none~.el-table__fixed,
&.is-scrolling-none~.el-table__fixed-right,
&.is-scrolling-right~.el-table__fixed-right {
&::before {
display: none;
}
}
}
.el-table {
font-size: 14px;
th {
background-color: @gray-thead;
.cell {
padding-right: 0;
font-size: 14px;
font-weight: 500;
color: @gray01;
}
}
.table-header__handle .cell {
display: flex;
justify-content: space-between;
align-items: center;
.el-icon-setting {
display: flex;
justify-content: center;
align-items: center;
width: 47px;
height: 47px;
font-size: 20px;
background-color: #e2e4e8;
color: #999;
cursor: pointer;
&::before {
content: "\e6ca";
}
}
}
.table-header__dropdown .cell {
padding-left: 0;
display: flex;
.el-dropdown {
padding-left: 0;
.icongengduo {
font-size: 12px;
color: @gray-border;
}
}
}
}
.el-table .cell,
.el-table th div,
.el-table--border td:first-child .cell,
.el-table--border th:first-child .cell {
padding-left: 20px;
}
/* table end */
/* table-empty start */
.el-table__empty-block {
height: 256px;
.el-table__empty-text {
line-height: normal;
&::before {
content: "";
display: block;
margin: 0 auto 22px;
width: 60px;
height: 60px;
background: url("../images/no-data_icon.png") no-repeat center;
}
}
}
/* table-empty end */
/* alert start */
.el-alert {
padding: 8px 16px;
}
.el-alert--success.is-light {
background-color: #f6ffed;
border: 1px solid #b7eb8f;
color: @green-success;
}
.el-alert--info.is-light {
color: @blue;
background-color: #e6f7ff;
border: 1px solid #91d5ff;
}
.el-alert--warning.is-light {
color: @yellow-warning;
background-color: #fffbe6;
border: 1px solid #ffe58f;
}
.el-alert--error.is-light {
color: @red-error;
background-color: #fff1f0;
border: 1px solid #ffa39e;
}
.el-alert--success.is-dark {
background-color: @green-success;
}
.el-alert--info.is-dark {
background-color: @blue;
}
.el-alert--warning.is-dark {
background-color: @yellow-warning;
}
.el-alert--error.is-dark {
background-color: @red-error;
}
.is-light .el-alert__content {
color: @gray02;
font-size: 14px;
.el-alert__title {
font-size: 14px;
}
}
/* alert end*/
/* form start */
.el-form-item {
margin-bottom: 20px;
&:last-child {
margin-bottom: 0;
}
}
.el-form-item.is-error .el-input__inner,
.el-form-item.is-error .el-input__inner:focus,
.el-form-item.is-error .el-textarea__inner,
.el-form-item.is-error .el-textarea__inner:focus,
.el-message-box__input input.invalid,
.el-message-box__input input.invalid:focus {
border-color: @red-error;
}
// .el-form-item.is-success .el-input__inner,
// .el-form-item.is-success .el-input__inner:focus,
// .el-form-item.is-success .el-textarea__inner,
// .el-form-item.is-success .el-textarea__inner:focus {
// border-color: @gray-border;
// }
.el-form-item__error {
color: @red-error;
}
.el-form-item__label {
line-height: 32px;
&::after {
content: ":";
}
}
.el-form-item__content,
.el-input__icon {
line-height: 32px;
}
/* form end */
/* 状态点 start */
.state-point {
display: flex;
align-items: center;
&::before {
content: "";
display: block;
margin-right: 6px;
width: 6px;
height: 6px;
border-radius: 6px;
}
}
.state-point-success::before {
background-color: @green-success;
}
.state-point-error::before {
background-color: @red-error;
}
.state-point-default::before {
background-color: #d9d9d9;
}
.state-point-warning::before {
background-color: @yellow-warning;
}
.state-point-loading::before {
background-color: @blue;
}
.state-point-loading-scale::before {
background-color: @blue;
animation: stateScale 1.2s ease-in-out infinite;
}
@keyframes stateScale {
from {
transform: scale(0.8);
box-shadow: 0 0 0 0 rgba(24, 144, 255, 0.1), 0 0 0 1px #fff,
0 0 0 0 rgba(24, 144, 255, 0.6);
}
to {
transform: scale(1);
box-shadow: 0 0 0px 2px rgba(24, 144, 255, 0.1), 0 0 0 2px #fff,
0 0 0 3px rgba(24, 144, 255, 0.6);
}
}
/* 状态点 end */
/* dialog start */
.el-dialog {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}
.el-dialog__body {
padding: 20px;
}
.el-dialog__headerbtn:focus .el-dialog__close,
.el-dialog__headerbtn:hover .el-dialog__close {
color: @blue;
}
/* dialog end */
/* progress start */
.el-progress-bar__inner {
background-color: @blue;
}
.el-progress.is-exception {
.el-progress-bar__inner {
background-color: @red-error;
}
.el-progress__text {
color: @red-error;
}
}
.el-progress.is-success {
.el-progress-bar__inner {
background-color: @green-success;
}
.el-progress__text {
color: @green-success;
}
}
/* progress end*/
/* cascader start */
.el-cascader {
line-height: 32px;
}
.el-cascader-panel {
max-width: 720px;
overflow-x: auto;
}
.el-cascader-node {
&.in-active-path,
&.is-active,
&.is-selectable.in-checked-path {
color: @blue;
}
}
.el-cascader__tags .el-tag .el-icon-close {
background: transparent;
color: inherit;
}
/* cascader end */
/* menu start */
.el-menu-item.is-active {
color: @blue;
}
/* menu end */
/* message start */
.el-message {
top: 20px !important;
padding: 8px 16px;
.el-message__content {
color: @gray02;
}
.el-icon-info {
color: @blue;
}
}
.el-message--success {
background-color: #f6ffed;
border-color: #b7eb8f;
}
.el-message--error {
background-color: #fff1f0;
border-color:#ffa39e;
}
.el-message-warning {
background-color: #fffbe6;
border-color: #ffe58f;
}
.el-message--info {
background-color:#E6F7FF;
border-color:#91D5FF;
}
/* message end */
/* tooltip start */
.tooltip-icon {
font-weight: inherit;
padding: 2px 0;
border-bottom: 1px dashed @blue;
}
/* tooltip end */
}
/**
按钮微动
**/
[ant-click-animating],
[ant-click-animating-without-extra-node] {
position: relative;
}
[ant-click-animating-without-extra-node]:after,
.ant-click-animating-node {
content: '';
position: absolute;
top: -1px;
left: -1px;
bottom: -1px;
right: -1px;
border-radius: inherit;
border: 0 solid #1890ff;
opacity: 0.2;
-webkit-animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
display: block;
pointer-events: none;
}
@-webkit-keyframes waveEffect {
100% {
top: -6px;
left: -6px;
bottom: -6px;
right: -6px;
border-width: 6px;
}
}
@keyframes waveEffect {
100% {
top: -6px;
left: -6px;
bottom: -6px;
right: -6px;
border-width: 6px;
}
}
@-webkit-keyframes fadeEffect {
100% {
opacity: 0;
}
}
@keyframes fadeEffect {
100% {
opacity: 0;
}
}
/* 框的微动效 */
.el-select .el-input__inner {
border: none;
}
.el-input__inner:focus{
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
border-right-width: 1px !important;
}
.el-textarea__inner:focus,
.el-range-editor.is-active,
.el-range-editor.is-active:hover {
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.el-select .el-input {
border: 1px solid #c0c4cc;
border-radius: 4px;
}
.el-select .el-input.is-focus {
border-color: #1890ff;
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.el-select .el-input .el-input__inner {
box-shadow: none;
}
/* 对话框的弹入 弹出效果 */
.dialog-fade-enter-active {
-webkit-animation: dialog-fade-in .3s;
animation: dialog-fade-in .3s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.dialog-fade-leave-active {
-webkit-animation: dialog-fade-out .3s;
animation: dialog-fade-out .3s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.dialog-fade-enter-active {
/* transform: scale(0); */
-webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}
.dialog-fade-leave-active {
-webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
@-webkit-keyframes dialog-fade-in{
0% {
opacity: 0;
}
1% {
transform: scale(0, 0);
}
100% {
opacity: 1;
transform: scale(1, 1);
}
}
@keyframes dialog-fade-in {
0% {
opacity: 0;
}
1% {
transform: scale(0, 0);
}
100% {
opacity: 1;
transform: scale(1, 1);
}
}
@-webkit-keyframes dialog-fade-out {
0% {
transform: scale(1, 1)
}
100% {
opacity: 0;
transform: scale(0, 0);
}
}
@keyframes dialog-fade-out{
0% {
transform: scale(1, 1)
}
100% {
opacity: 0;
transform: scale(0, 0);
}
}
.damo-table-animation {
-webkit-animation: table-animation 0.5s;
animation: table-animation 0.5s;
}
@keyframes table-animation {
0% {
opacity: 0;
}
100% {
transform: translateX(30px);
opacity: 1;
}
}
@-webkit-keyframes table-animation {
0% {
opacity: 0;
}
100% {
transform: translateX(-30px);
opacity: 1;
}
}
/* tag的reset */
.dm-reset-style .el-tag.el-tag--info .el-tag__close:hover {
color: #FFFFFF;
background-color: #f4f4f5;
}
.dm-reset-style .el-step-text {
position: relative;
top: -4px;
left: -4px;
display: inline-block;
vertical-align: text-top;
font-size: 14px;
background-color: #fff;
padding: 0 5px;
}
.dm-reset-style .el-step__title {
line-height: 24px;
}
.dm-reset-style .el-step__title.is-success {
color: #909399;
}
.dm-reset-style .is-process .is-text {
background-color: #409eff;
border-color: #409eff;
color: #fff;
}
.dm-reset-style .el-step__head.is-success {
color: #409eff;
border-color: #409eff;
}
.dm-reset-style .el-step__description {
max-width: 150px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
color: #c0c4cc;
}
/* 点状 */
.dm-reset-style .el-step__icon.is-dot {
height: 12px;
width: 12px;
top: 6px;
}
.dm-reset-style .el-step__title.is-dot {
margin-top: 10px;
}
.el-select-dropdown {
min-width: 214px;
}
/* .el-input__inner {
height: 32px !important;
} */
.damolish .el-transfer-panel__select .el-input__inner {
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
width: 142px;
/* margin-top: 8px; */
/* margin-left: -6px; */
}
.damolish .el-transfer-panel__select {
display: inline-block;
vertical-align: middle;
margin: 0;
margin-top: 15px;
margin-left: -6px;
}
.damolish .el-transfer-panel__body .el-select {
display: inline-block;
vertical-align: middle;
margin-top: 15px;
margin-left: 15px;
}
.damolish .el-transfer-panel__body {
border-top: 1px solid transparent;
}
.damolish .el-transfer__slot {
width: 270px;
}
\ No newline at end of file
/* Logo 字体 */
@font-face {
font-family: "iconfont logo";
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
}
.logo {
font-family: "iconfont logo";
font-size: 160px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* tabs */
.nav-tabs {
position: relative;
}
.nav-tabs .nav-more {
position: absolute;
right: 0;
bottom: 0;
height: 42px;
line-height: 42px;
color: #666;
}
#tabs {
border-bottom: 1px solid #eee;
}
#tabs li {
cursor: pointer;
width: 100px;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 16px;
border-bottom: 2px solid transparent;
position: relative;
z-index: 1;
margin-bottom: -1px;
color: #666;
}
#tabs .active {
border-bottom-color: #f00;
color: #222;
}
.tab-container .content {
display: none;
}
/* 页面布局 */
.main {
padding: 30px 100px;
width: 960px;
margin: 0 auto;
}
.main .logo {
color: #333;
text-align: left;
margin-bottom: 30px;
line-height: 1;
height: 110px;
margin-top: -50px;
overflow: hidden;
*zoom: 1;
}
.main .logo a {
font-size: 160px;
color: #333;
}
.helps {
margin-top: 40px;
}
.helps pre {
padding: 20px;
margin: 10px 0;
border: solid 1px #e7e1cd;
background-color: #fffdef;
overflow: auto;
}
.icon_lists {
width: 100% !important;
overflow: hidden;
*zoom: 1;
}
.icon_lists li {
width: 100px;
margin-bottom: 10px;
margin-right: 20px;
text-align: center;
list-style: none !important;
cursor: default;
}
.icon_lists li .code-name {
line-height: 1.2;
}
.icon_lists .icon {
display: block;
height: 100px;
line-height: 100px;
font-size: 42px;
margin: 10px auto;
color: #333;
-webkit-transition: font-size 0.25s linear, width 0.25s linear;
-moz-transition: font-size 0.25s linear, width 0.25s linear;
transition: font-size 0.25s linear, width 0.25s linear;
}
.icon_lists .icon:hover {
font-size: 100px;
}
.icon_lists .svg-icon {
/* 通过设置 font-size 来改变图标大小 */
width: 1em;
/* 图标和文字相邻时,垂直对齐 */
vertical-align: -0.15em;
/* 通过设置 color 来改变 SVG 的颜色/fill */
fill: currentColor;
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
normalize.css 中也包含这行 */
overflow: hidden;
}
.icon_lists li .name,
.icon_lists li .code-name {
color: #666;
}
/* markdown 样式 */
.markdown {
color: #666;
font-size: 14px;
line-height: 1.8;
}
.highlight {
line-height: 1.5;
}
.markdown img {
vertical-align: middle;
max-width: 100%;
}
.markdown h1 {
color: #404040;
font-weight: 500;
line-height: 40px;
margin-bottom: 24px;
}
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
color: #404040;
margin: 1.6em 0 0.6em 0;
font-weight: 500;
clear: both;
}
.markdown h1 {
font-size: 28px;
}
.markdown h2 {
font-size: 22px;
}
.markdown h3 {
font-size: 16px;
}
.markdown h4 {
font-size: 14px;
}
.markdown h5 {
font-size: 12px;
}
.markdown h6 {
font-size: 12px;
}
.markdown hr {
height: 1px;
border: 0;
background: #e9e9e9;
margin: 16px 0;
clear: both;
}
.markdown p {
margin: 1em 0;
}
.markdown>p,
.markdown>blockquote,
.markdown>.highlight,
.markdown>ol,
.markdown>ul {
width: 80%;
}
.markdown ul>li {
list-style: circle;
}
.markdown>ul li,
.markdown blockquote ul>li {
margin-left: 20px;
padding-left: 4px;
}
.markdown>ul li p,
.markdown>ol li p {
margin: 0.6em 0;
}
.markdown ol>li {
list-style: decimal;
}
.markdown>ol li,
.markdown blockquote ol>li {
margin-left: 20px;
padding-left: 4px;
}
.markdown code {
margin: 0 3px;
padding: 0 5px;
background: #eee;
border-radius: 3px;
}
.markdown strong,
.markdown b {
font-weight: 600;
}
.markdown>table {
border-collapse: collapse;
border-spacing: 0px;
empty-cells: show;
border: 1px solid #e9e9e9;
width: 95%;
margin-bottom: 24px;
}
.markdown>table th {
white-space: nowrap;
color: #333;
font-weight: 600;
}
.markdown>table th,
.markdown>table td {
border: 1px solid #e9e9e9;
padding: 8px 16px;
text-align: left;
}
.markdown>table th {
background: #F7F7F7;
}
.markdown blockquote {
font-size: 90%;
color: #999;
border-left: 4px solid #e9e9e9;
padding-left: 0.8em;
margin: 1em 0;
}
.markdown blockquote p {
margin: 0;
}
.markdown .anchor {
opacity: 0;
transition: opacity 0.3s ease;
margin-left: 8px;
}
.markdown .waiting {
color: #ccc;
}
.markdown h1:hover .anchor,
.markdown h2:hover .anchor,
.markdown h3:hover .anchor,
.markdown h4:hover .anchor,
.markdown h5:hover .anchor,
.markdown h6:hover .anchor {
opacity: 1;
display: inline-block;
}
.markdown>br,
.markdown>p>br {
clear: both;
}
.hljs {
display: block;
background: white;
padding: 0.5em;
color: #333333;
overflow-x: auto;
}
.hljs-comment,
.hljs-meta {
color: #969896;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-strong,
.hljs-emphasis,
.hljs-quote {
color: #df5000;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
color: #a71d5d;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute {
color: #0086b3;
}
.hljs-section,
.hljs-name {
color: #63a35c;
}
.hljs-tag {
color: #333333;
}
.hljs-title,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #795da3;
}
.hljs-addition {
color: #55a532;
background-color: #eaffea;
}
.hljs-deletion {
color: #bd2c00;
background-color: #ffecec;
}
.hljs-link {
text-decoration: underline;
}
/* 代码高亮 */
/* PrismJS 1.15.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre)>code[class*="language-"],
pre[class*="language-"] {
background: #f5f2f0;
}
/* Inline code */
:not(pre)>code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function,
.token.class-name {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>IconFont Demo</title>
<link rel="shortcut icon" href="https://img.alicdn.com/tps/i4/TB1_oz6GVXXXXaFXpXXJDFnIXXX-64-64.ico" type="image/x-icon"/>
<link rel="stylesheet" href="https://g.alicdn.com/thx/cube/1.3.2/cube.min.css">
<link rel="stylesheet" href="demo.css">
<link rel="stylesheet" href="iconfont.css">
<script src="iconfont.js"></script>
<!-- jQuery -->
<script src="https://a1.alicdn.com/oss/uploads/2018/12/26/7bfddb60-08e8-11e9-9b04-53e73bb6408b.js"></script>
<!-- 代码高亮 -->
<script src="https://a1.alicdn.com/oss/uploads/2018/12/26/a3f714d0-08e6-11e9-8a15-ebf944d7534c.js"></script>
</head>
<body>
<div class="main">
<h1 class="logo"><a href="https://www.iconfont.cn/" title="iconfont 首页" target="_blank">&#xe86b;</a></h1>
<div class="nav-tabs">
<ul id="tabs" class="dib-box">
<li class="dib active"><span>Unicode</span></li>
<li class="dib"><span>Font class</span></li>
<li class="dib"><span>Symbol</span></li>
</ul>
<a href="https://www.iconfont.cn/manage/index?manage_type=myprojects&projectId=1628375" target="_blank" class="nav-more">查看项目</a>
</div>
<div class="tab-container">
<div class="content unicode" style="display: block;">
<ul class="icon_lists dib-box">
<li class="dib">
<span class="icon iconfont">&#xeae0;</span>
<div class="name">明细备份</div>
<div class="code-name">&amp;#xeae0;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe60b;</span>
<div class="name">商品设置</div>
<div class="code-name">&amp;#xe60b;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe60a;</span>
<div class="name">我的顾客 icon</div>
<div class="code-name">&amp;#xe60a;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe613;</span>
<div class="name">刷新</div>
<div class="code-name">&amp;#xe613;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe606;</span>
<div class="name"></div>
<div class="code-name">&amp;#xe606;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe687;</span>
<div class="name">授权验证</div>
<div class="code-name">&amp;#xe687;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe62a;</span>
<div class="name">手机</div>
<div class="code-name">&amp;#xe62a;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xeab6;</span>
<div class="name">素材库</div>
<div class="code-name">&amp;#xeab6;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xeaae;</span>
<div class="name">文件</div>
<div class="code-name">&amp;#xeaae;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xeaad;</span>
<div class="name">播放</div>
<div class="code-name">&amp;#xeaad;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe612;</span>
<div class="name">表情</div>
<div class="code-name">&amp;#xe612;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe611;</span>
<div class="name">文字</div>
<div class="code-name">&amp;#xe611;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe6bc;</span>
<div class="name">代码</div>
<div class="code-name">&amp;#xe6bc;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe73a;</span>
<div class="name">图片</div>
<div class="code-name">&amp;#xe73a;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe62d;</span>
<div class="name">文件</div>
<div class="code-name">&amp;#xe62d;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe605;</span>
<div class="name">视频</div>
<div class="code-name">&amp;#xe605;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe61c;</span>
<div class="name">拖拽open</div>
<div class="code-name">&amp;#xe61c;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe845;</span>
<div class="name">投放</div>
<div class="code-name">&amp;#xe845;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xeaa9;</span>
<div class="name">策略</div>
<div class="code-name">&amp;#xeaa9;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe619;</span>
<div class="name">模板</div>
<div class="code-name">&amp;#xe619;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe64e;</span>
<div class="name">通讯录</div>
<div class="code-name">&amp;#xe64e;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe6bb;</span>
<div class="name">卡券记录</div>
<div class="code-name">&amp;#xe6bb;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe678;</span>
<div class="name">会话精灵icon-166</div>
<div class="code-name">&amp;#xe678;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe60e;</span>
<div class="name">失败</div>
<div class="code-name">&amp;#xe60e;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe63c;</span>
<div class="name">成功 (1)</div>
<div class="code-name">&amp;#xe63c;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe628;</span>
<div class="name">企业微信</div>
<div class="code-name">&amp;#xe628;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe629;</span>
<div class="name"></div>
<div class="code-name">&amp;#xe629;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe66b;</span>
<div class="name">性别女</div>
<div class="code-name">&amp;#xe66b;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe7a5;</span>
<div class="name">任务指派</div>
<div class="code-name">&amp;#xe7a5;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xea6c;</span>
<div class="name">完成任务</div>
<div class="code-name">&amp;#xea6c;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe6a4;</span>
<div class="name">导购微商城</div>
<div class="code-name">&amp;#xe6a4;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe918;</span>
<div class="name">定位</div>
<div class="code-name">&amp;#xe918;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xea5b;</span>
<div class="name">更多</div>
<div class="code-name">&amp;#xea5b;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xea7a;</span>
<div class="name">企业信息</div>
<div class="code-name">&amp;#xea7a;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xea79;</span>
<div class="name"></div>
<div class="code-name">&amp;#xea79;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe604;</span>
<div class="name">待审核</div>
<div class="code-name">&amp;#xe604;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe607;</span>
<div class="name">审核</div>
<div class="code-name">&amp;#xe607;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe772;</span>
<div class="name">审核</div>
<div class="code-name">&amp;#xe772;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe68c;</span>
<div class="name">更多</div>
<div class="code-name">&amp;#xe68c;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe634;</span>
<div class="name"></div>
<div class="code-name">&amp;#xe634;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe609;</span>
<div class="name">管理员列表</div>
<div class="code-name">&amp;#xe609;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xea78;</span>
<div class="name">部门</div>
<div class="code-name">&amp;#xea78;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe64a;</span>
<div class="name">下发</div>
<div class="code-name">&amp;#xe64a;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe603;</span>
<div class="name">更多</div>
<div class="code-name">&amp;#xe603;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe618;</span>
<div class="name">模板设置</div>
<div class="code-name">&amp;#xe618;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe750;</span>
<div class="name">日报</div>
<div class="code-name">&amp;#xe750;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe7f4;</span>
<div class="name">日报设置</div>
<div class="code-name">&amp;#xe7f4;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe77a;</span>
<div class="name">任务</div>
<div class="code-name">&amp;#xe77a;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe610;</span>
<div class="name">指标</div>
<div class="code-name">&amp;#xe610;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe601;</span>
<div class="name">话务技能组配置</div>
<div class="code-name">&amp;#xe601;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe7f6;</span>
<div class="name">不良评价设置</div>
<div class="code-name">&amp;#xe7f6;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe600;</span>
<div class="name">话务数据</div>
<div class="code-name">&amp;#xe600;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe61b;</span>
<div class="name">刷新</div>
<div class="code-name">&amp;#xe61b;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe6b6;</span>
<div class="name">卡券</div>
<div class="code-name">&amp;#xe6b6;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe65e;</span>
<div class="name">基础设置</div>
<div class="code-name">&amp;#xe65e;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe81a;</span>
<div class="name">添加 加号 无边框</div>
<div class="code-name">&amp;#xe81a;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe61a;</span>
<div class="name">成员1</div>
<div class="code-name">&amp;#xe61a;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe62f;</span>
<div class="name">navigate_next</div>
<div class="code-name">&amp;#xe62f;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe617;</span>
<div class="name">修改,笔</div>
<div class="code-name">&amp;#xe617;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe730;</span>
<div class="name">企业-填充</div>
<div class="code-name">&amp;#xe730;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe635;</span>
<div class="name">组织架构管理</div>
<div class="code-name">&amp;#xe635;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe602;</span>
<div class="name">店铺-块</div>
<div class="code-name">&amp;#xe602;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe608;</span>
<div class="name">下拉</div>
<div class="code-name">&amp;#xe608;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe65a;</span>
<div class="name">日志服务</div>
<div class="code-name">&amp;#xe65a;</div>
</li>
</ul>
<div class="article markdown">
<h2 id="unicode-">Unicode 引用</h2>
<hr>
<p>Unicode 是字体在网页端最原始的应用方式,特点是:</p>
<ul>
<li>兼容性最好,支持 IE6+,及所有现代浏览器。</li>
<li>支持按字体的方式去动态调整图标大小,颜色等等。</li>
<li>但是因为是字体,所以不支持多色。只能使用平台里单色的图标,就算项目里有多色图标也会自动去色。</li>
</ul>
<blockquote>
<p>注意:新版 iconfont 支持多色图标,这些多色图标在 Unicode 模式下将不能使用,如果有需求建议使用symbol 的引用方式</p>
</blockquote>
<p>Unicode 使用步骤如下:</p>
<h3 id="-font-face">第一步:拷贝项目下面生成的 <code>@font-face</code></h3>
<pre><code class="language-css"
>@font-face {
font-family: 'iconfont';
src: url('iconfont.eot');
src: url('iconfont.eot?#iefix') format('embedded-opentype'),
url('iconfont.woff2') format('woff2'),
url('iconfont.woff') format('woff'),
url('iconfont.ttf') format('truetype'),
url('iconfont.svg#iconfont') format('svg');
}
</code></pre>
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
<pre><code class="language-css"
>.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</code></pre>
<h3 id="-">第三步:挑选相应图标并获取字体编码,应用于页面</h3>
<pre>
<code class="language-html"
>&lt;span class="iconfont"&gt;&amp;#x33;&lt;/span&gt;
</code></pre>
<blockquote>
<p>"iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
</blockquote>
</div>
</div>
<div class="content font-class">
<ul class="icon_lists dib-box">
<li class="dib">
<span class="icon iconfont iconmingxibeifen"></span>
<div class="name">
明细备份
</div>
<div class="code-name">.iconmingxibeifen
</div>
</li>
<li class="dib">
<span class="icon iconfont iconshangpinshezhi"></span>
<div class="name">
商品设置
</div>
<div class="code-name">.iconshangpinshezhi
</div>
</li>
<li class="dib">
<span class="icon iconfont icongukeguanliicon"></span>
<div class="name">
我的顾客 icon
</div>
<div class="code-name">.icongukeguanliicon
</div>
</li>
<li class="dib">
<span class="icon iconfont iconshuaxin1"></span>
<div class="name">
刷新
</div>
<div class="code-name">.iconshuaxin1
</div>
</li>
<li class="dib">
<span class="icon iconfont icongou"></span>
<div class="name">
</div>
<div class="code-name">.icongou
</div>
</li>
<li class="dib">
<span class="icon iconfont iconshouquanyanzheng"></span>
<div class="name">
授权验证
</div>
<div class="code-name">.iconshouquanyanzheng
</div>
</li>
<li class="dib">
<span class="icon iconfont iconhuaban"></span>
<div class="name">
手机
</div>
<div class="code-name">.iconhuaban
</div>
</li>
<li class="dib">
<span class="icon iconfont iconsucaiku"></span>
<div class="name">
素材库
</div>
<div class="code-name">.iconsucaiku
</div>
</li>
<li class="dib">
<span class="icon iconfont iconwenjian1"></span>
<div class="name">
文件
</div>
<div class="code-name">.iconwenjian1
</div>
</li>
<li class="dib">
<span class="icon iconfont iconbofang1"></span>
<div class="name">
播放
</div>
<div class="code-name">.iconbofang1
</div>
</li>
<li class="dib">
<span class="icon iconfont iconbiaoqing"></span>
<div class="name">
表情
</div>
<div class="code-name">.iconbiaoqing
</div>
</li>
<li class="dib">
<span class="icon iconfont iconwenzi"></span>
<div class="name">
文字
</div>
<div class="code-name">.iconwenzi
</div>
</li>
<li class="dib">
<span class="icon iconfont icondaima"></span>
<div class="name">
代码
</div>
<div class="code-name">.icondaima
</div>
</li>
<li class="dib">
<span class="icon iconfont icontupian"></span>
<div class="name">
图片
</div>
<div class="code-name">.icontupian
</div>
</li>
<li class="dib">
<span class="icon iconfont iconwenjian"></span>
<div class="name">
文件
</div>
<div class="code-name">.iconwenjian
</div>
</li>
<li class="dib">
<span class="icon iconfont iconshipin"></span>
<div class="name">
视频
</div>
<div class="code-name">.iconshipin
</div>
</li>
<li class="dib">
<span class="icon iconfont icontuozhuaiopen"></span>
<div class="name">
拖拽open
</div>
<div class="code-name">.icontuozhuaiopen
</div>
</li>
<li class="dib">
<span class="icon iconfont icontoufang2"></span>
<div class="name">
投放
</div>
<div class="code-name">.icontoufang2
</div>
</li>
<li class="dib">
<span class="icon iconfont iconcelve"></span>
<div class="name">
策略
</div>
<div class="code-name">.iconcelve
</div>
</li>
<li class="dib">
<span class="icon iconfont iconmoban"></span>
<div class="name">
模板
</div>
<div class="code-name">.iconmoban
</div>
</li>
<li class="dib">
<span class="icon iconfont icontongxunlu"></span>
<div class="name">
通讯录
</div>
<div class="code-name">.icontongxunlu
</div>
</li>
<li class="dib">
<span class="icon iconfont iconwodeqiaquan-"></span>
<div class="name">
卡券记录
</div>
<div class="code-name">.iconwodeqiaquan-
</div>
</li>
<li class="dib">
<span class="icon iconfont iconhuihuajinglingicon-"></span>
<div class="name">
会话精灵icon-166
</div>
<div class="code-name">.iconhuihuajinglingicon-
</div>
</li>
<li class="dib">
<span class="icon iconfont iconshibai"></span>
<div class="name">
失败
</div>
<div class="code-name">.iconshibai
</div>
</li>
<li class="dib">
<span class="icon iconfont iconchenggong"></span>
<div class="name">
成功 (1)
</div>
<div class="code-name">.iconchenggong
</div>
</li>
<li class="dib">
<span class="icon iconfont iconqiyeweixin"></span>
<div class="name">
企业微信
</div>
<div class="code-name">.iconqiyeweixin
</div>
</li>
<li class="dib">
<span class="icon iconfont iconnan"></span>
<div class="name">
</div>
<div class="code-name">.iconnan
</div>
</li>
<li class="dib">
<span class="icon iconfont iconxingbienv"></span>
<div class="name">
性别女
</div>
<div class="code-name">.iconxingbienv
</div>
</li>
<li class="dib">
<span class="icon iconfont iconrenwuzhipai"></span>
<div class="name">
任务指派
</div>
<div class="code-name">.iconrenwuzhipai
</div>
</li>
<li class="dib">
<span class="icon iconfont iconwanchengrenwu"></span>
<div class="name">
完成任务
</div>
<div class="code-name">.iconwanchengrenwu
</div>
</li>
<li class="dib">
<span class="icon iconfont iconziyuan1"></span>
<div class="name">
导购微商城
</div>
<div class="code-name">.iconziyuan1
</div>
</li>
<li class="dib">
<span class="icon iconfont icondingwei"></span>
<div class="name">
定位
</div>
<div class="code-name">.icondingwei
</div>
</li>
<li class="dib">
<span class="icon iconfont icongengduo2"></span>
<div class="name">
更多
</div>
<div class="code-name">.icongengduo2
</div>
</li>
<li class="dib">
<span class="icon iconfont iconqiyexinxi"></span>
<div class="name">
企业信息
</div>
<div class="code-name">.iconqiyexinxi
</div>
</li>
<li class="dib">
<span class="icon iconfont iconjia"></span>
<div class="name">
</div>
<div class="code-name">.iconjia
</div>
</li>
<li class="dib">
<span class="icon iconfont icondaishenhe_orange"></span>
<div class="name">
待审核
</div>
<div class="code-name">.icondaishenhe_orange
</div>
</li>
<li class="dib">
<span class="icon iconfont iconrenwu1"></span>
<div class="name">
审核
</div>
<div class="code-name">.iconrenwu1
</div>
</li>
<li class="dib">
<span class="icon iconfont iconshenhe"></span>
<div class="name">
审核
</div>
<div class="code-name">.iconshenhe
</div>
</li>
<li class="dib">
<span class="icon iconfont icongengduo1"></span>
<div class="name">
更多
</div>
<div class="code-name">.icongengduo1
</div>
</li>
<li class="dib">
<span class="icon iconfont iconjian"></span>
<div class="name">
</div>
<div class="code-name">.iconjian
</div>
</li>
<li class="dib">
<span class="icon iconfont iconguanliyuanliebiao"></span>
<div class="name">
管理员列表
</div>
<div class="code-name">.iconguanliyuanliebiao
</div>
</li>
<li class="dib">
<span class="icon iconfont iconbumen"></span>
<div class="name">
部门
</div>
<div class="code-name">.iconbumen
</div>
</li>
<li class="dib">
<span class="icon iconfont iconxiafa"></span>
<div class="name">
下发
</div>
<div class="code-name">.iconxiafa
</div>
</li>
<li class="dib">
<span class="icon iconfont icongengduo"></span>
<div class="name">
更多
</div>
<div class="code-name">.icongengduo
</div>
</li>
<li class="dib">
<span class="icon iconfont iconxitongguanlitubiao_mobanshezhi"></span>
<div class="name">
模板设置
</div>
<div class="code-name">.iconxitongguanlitubiao_mobanshezhi
</div>
</li>
<li class="dib">
<span class="icon iconfont iconribao"></span>
<div class="name">
日报
</div>
<div class="code-name">.iconribao
</div>
</li>
<li class="dib">
<span class="icon iconfont iconribaoshezhi"></span>
<div class="name">
日报设置
</div>
<div class="code-name">.iconribaoshezhi
</div>
</li>
<li class="dib">
<span class="icon iconfont iconrenwu"></span>
<div class="name">
任务
</div>
<div class="code-name">.iconrenwu
</div>
</li>
<li class="dib">
<span class="icon iconfont iconzhibiao"></span>
<div class="name">
指标
</div>
<div class="code-name">.iconzhibiao
</div>
</li>
<li class="dib">
<span class="icon iconfont iconhuawujinengzupeizhi"></span>
<div class="name">
话务技能组配置
</div>
<div class="code-name">.iconhuawujinengzupeizhi
</div>
</li>
<li class="dib">
<span class="icon iconfont iconbuliangpingjiashezhi"></span>
<div class="name">
不良评价设置
</div>
<div class="code-name">.iconbuliangpingjiashezhi
</div>
</li>
<li class="dib">
<span class="icon iconfont iconhuawushuju"></span>
<div class="name">
话务数据
</div>
<div class="code-name">.iconhuawushuju
</div>
</li>
<li class="dib">
<span class="icon iconfont iconshuaxin"></span>
<div class="name">
刷新
</div>
<div class="code-name">.iconshuaxin
</div>
</li>
<li class="dib">
<span class="icon iconfont iconqiaquan"></span>
<div class="name">
卡券
</div>
<div class="code-name">.iconqiaquan
</div>
</li>
<li class="dib">
<span class="icon iconfont iconjichushezhi"></span>
<div class="name">
基础设置
</div>
<div class="code-name">.iconjichushezhi
</div>
</li>
<li class="dib">
<span class="icon iconfont icontianjiajiahaowubiankuang"></span>
<div class="name">
添加 加号 无边框
</div>
<div class="code-name">.icontianjiajiahaowubiankuang
</div>
</li>
<li class="dib">
<span class="icon iconfont iconchengyuan"></span>
<div class="name">
成员1
</div>
<div class="code-name">.iconchengyuan
</div>
</li>
<li class="dib">
<span class="icon iconfont iconnavigate_next"></span>
<div class="name">
navigate_next
</div>
<div class="code-name">.iconnavigate_next
</div>
</li>
<li class="dib">
<span class="icon iconfont iconchangyongicon-"></span>
<div class="name">
修改,笔
</div>
<div class="code-name">.iconchangyongicon-
</div>
</li>
<li class="dib">
<span class="icon iconfont iconqiye-tianchong"></span>
<div class="name">
企业-填充
</div>
<div class="code-name">.iconqiye-tianchong
</div>
</li>
<li class="dib">
<span class="icon iconfont iconzuzhijiagouguanli"></span>
<div class="name">
组织架构管理
</div>
<div class="code-name">.iconzuzhijiagouguanli
</div>
</li>
<li class="dib">
<span class="icon iconfont icondianpu-kuai"></span>
<div class="name">
店铺-块
</div>
<div class="code-name">.icondianpu-kuai
</div>
</li>
<li class="dib">
<span class="icon iconfont iconxiala"></span>
<div class="name">
下拉
</div>
<div class="code-name">.iconxiala
</div>
</li>
<li class="dib">
<span class="icon iconfont iconrizhifuwu"></span>
<div class="name">
日志服务
</div>
<div class="code-name">.iconrizhifuwu
</div>
</li>
</ul>
<div class="article markdown">
<h2 id="font-class-">font-class 引用</h2>
<hr>
<p>font-class 是 Unicode 使用方式的一种变种,主要是解决 Unicode 书写不直观,语意不明确的问题。</p>
<p>与 Unicode 使用方式相比,具有如下特点:</p>
<ul>
<li>兼容性良好,支持 IE8+,及所有现代浏览器。</li>
<li>相比于 Unicode 语意明确,书写更直观。可以很容易分辨这个 icon 是什么。</li>
<li>因为使用 class 来定义图标,所以当要替换图标时,只需要修改 class 里面的 Unicode 引用。</li>
<li>不过因为本质上还是使用的字体,所以多色图标还是不支持的。</li>
</ul>
<p>使用步骤如下:</p>
<h3 id="-fontclass-">第一步:引入项目下面生成的 fontclass 代码:</h3>
<pre><code class="language-html">&lt;link rel="stylesheet" href="./iconfont.css"&gt;
</code></pre>
<h3 id="-">第二步:挑选相应图标并获取类名,应用于页面:</h3>
<pre><code class="language-html">&lt;span class="iconfont iconxxx"&gt;&lt;/span&gt;
</code></pre>
<blockquote>
<p>"
iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
</blockquote>
</div>
</div>
<div class="content symbol">
<ul class="icon_lists dib-box">
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconmingxibeifen"></use>
</svg>
<div class="name">明细备份</div>
<div class="code-name">#iconmingxibeifen</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconshangpinshezhi"></use>
</svg>
<div class="name">商品设置</div>
<div class="code-name">#iconshangpinshezhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icongukeguanliicon"></use>
</svg>
<div class="name">我的顾客 icon</div>
<div class="code-name">#icongukeguanliicon</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconshuaxin1"></use>
</svg>
<div class="name">刷新</div>
<div class="code-name">#iconshuaxin1</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icongou"></use>
</svg>
<div class="name"></div>
<div class="code-name">#icongou</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconshouquanyanzheng"></use>
</svg>
<div class="name">授权验证</div>
<div class="code-name">#iconshouquanyanzheng</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconhuaban"></use>
</svg>
<div class="name">手机</div>
<div class="code-name">#iconhuaban</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconsucaiku"></use>
</svg>
<div class="name">素材库</div>
<div class="code-name">#iconsucaiku</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconwenjian1"></use>
</svg>
<div class="name">文件</div>
<div class="code-name">#iconwenjian1</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconbofang1"></use>
</svg>
<div class="name">播放</div>
<div class="code-name">#iconbofang1</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconbiaoqing"></use>
</svg>
<div class="name">表情</div>
<div class="code-name">#iconbiaoqing</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconwenzi"></use>
</svg>
<div class="name">文字</div>
<div class="code-name">#iconwenzi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icondaima"></use>
</svg>
<div class="name">代码</div>
<div class="code-name">#icondaima</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icontupian"></use>
</svg>
<div class="name">图片</div>
<div class="code-name">#icontupian</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconwenjian"></use>
</svg>
<div class="name">文件</div>
<div class="code-name">#iconwenjian</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconshipin"></use>
</svg>
<div class="name">视频</div>
<div class="code-name">#iconshipin</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icontuozhuaiopen"></use>
</svg>
<div class="name">拖拽open</div>
<div class="code-name">#icontuozhuaiopen</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icontoufang2"></use>
</svg>
<div class="name">投放</div>
<div class="code-name">#icontoufang2</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconcelve"></use>
</svg>
<div class="name">策略</div>
<div class="code-name">#iconcelve</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconmoban"></use>
</svg>
<div class="name">模板</div>
<div class="code-name">#iconmoban</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icontongxunlu"></use>
</svg>
<div class="name">通讯录</div>
<div class="code-name">#icontongxunlu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconwodeqiaquan-"></use>
</svg>
<div class="name">卡券记录</div>
<div class="code-name">#iconwodeqiaquan-</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconhuihuajinglingicon-"></use>
</svg>
<div class="name">会话精灵icon-166</div>
<div class="code-name">#iconhuihuajinglingicon-</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconshibai"></use>
</svg>
<div class="name">失败</div>
<div class="code-name">#iconshibai</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconchenggong"></use>
</svg>
<div class="name">成功 (1)</div>
<div class="code-name">#iconchenggong</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconqiyeweixin"></use>
</svg>
<div class="name">企业微信</div>
<div class="code-name">#iconqiyeweixin</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconnan"></use>
</svg>
<div class="name"></div>
<div class="code-name">#iconnan</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconxingbienv"></use>
</svg>
<div class="name">性别女</div>
<div class="code-name">#iconxingbienv</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconrenwuzhipai"></use>
</svg>
<div class="name">任务指派</div>
<div class="code-name">#iconrenwuzhipai</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconwanchengrenwu"></use>
</svg>
<div class="name">完成任务</div>
<div class="code-name">#iconwanchengrenwu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconziyuan1"></use>
</svg>
<div class="name">导购微商城</div>
<div class="code-name">#iconziyuan1</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icondingwei"></use>
</svg>
<div class="name">定位</div>
<div class="code-name">#icondingwei</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icongengduo2"></use>
</svg>
<div class="name">更多</div>
<div class="code-name">#icongengduo2</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconqiyexinxi"></use>
</svg>
<div class="name">企业信息</div>
<div class="code-name">#iconqiyexinxi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconjia"></use>
</svg>
<div class="name"></div>
<div class="code-name">#iconjia</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icondaishenhe_orange"></use>
</svg>
<div class="name">待审核</div>
<div class="code-name">#icondaishenhe_orange</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconrenwu1"></use>
</svg>
<div class="name">审核</div>
<div class="code-name">#iconrenwu1</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconshenhe"></use>
</svg>
<div class="name">审核</div>
<div class="code-name">#iconshenhe</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icongengduo1"></use>
</svg>
<div class="name">更多</div>
<div class="code-name">#icongengduo1</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconjian"></use>
</svg>
<div class="name"></div>
<div class="code-name">#iconjian</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconguanliyuanliebiao"></use>
</svg>
<div class="name">管理员列表</div>
<div class="code-name">#iconguanliyuanliebiao</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconbumen"></use>
</svg>
<div class="name">部门</div>
<div class="code-name">#iconbumen</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconxiafa"></use>
</svg>
<div class="name">下发</div>
<div class="code-name">#iconxiafa</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icongengduo"></use>
</svg>
<div class="name">更多</div>
<div class="code-name">#icongengduo</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconxitongguanlitubiao_mobanshezhi"></use>
</svg>
<div class="name">模板设置</div>
<div class="code-name">#iconxitongguanlitubiao_mobanshezhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconribao"></use>
</svg>
<div class="name">日报</div>
<div class="code-name">#iconribao</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconribaoshezhi"></use>
</svg>
<div class="name">日报设置</div>
<div class="code-name">#iconribaoshezhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconrenwu"></use>
</svg>
<div class="name">任务</div>
<div class="code-name">#iconrenwu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconzhibiao"></use>
</svg>
<div class="name">指标</div>
<div class="code-name">#iconzhibiao</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconhuawujinengzupeizhi"></use>
</svg>
<div class="name">话务技能组配置</div>
<div class="code-name">#iconhuawujinengzupeizhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconbuliangpingjiashezhi"></use>
</svg>
<div class="name">不良评价设置</div>
<div class="code-name">#iconbuliangpingjiashezhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconhuawushuju"></use>
</svg>
<div class="name">话务数据</div>
<div class="code-name">#iconhuawushuju</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconshuaxin"></use>
</svg>
<div class="name">刷新</div>
<div class="code-name">#iconshuaxin</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconqiaquan"></use>
</svg>
<div class="name">卡券</div>
<div class="code-name">#iconqiaquan</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconjichushezhi"></use>
</svg>
<div class="name">基础设置</div>
<div class="code-name">#iconjichushezhi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icontianjiajiahaowubiankuang"></use>
</svg>
<div class="name">添加 加号 无边框</div>
<div class="code-name">#icontianjiajiahaowubiankuang</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconchengyuan"></use>
</svg>
<div class="name">成员1</div>
<div class="code-name">#iconchengyuan</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconnavigate_next"></use>
</svg>
<div class="name">navigate_next</div>
<div class="code-name">#iconnavigate_next</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconchangyongicon-"></use>
</svg>
<div class="name">修改,笔</div>
<div class="code-name">#iconchangyongicon-</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconqiye-tianchong"></use>
</svg>
<div class="name">企业-填充</div>
<div class="code-name">#iconqiye-tianchong</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconzuzhijiagouguanli"></use>
</svg>
<div class="name">组织架构管理</div>
<div class="code-name">#iconzuzhijiagouguanli</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icondianpu-kuai"></use>
</svg>
<div class="name">店铺-块</div>
<div class="code-name">#icondianpu-kuai</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconxiala"></use>
</svg>
<div class="name">下拉</div>
<div class="code-name">#iconxiala</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#iconrizhifuwu"></use>
</svg>
<div class="name">日志服务</div>
<div class="code-name">#iconrizhifuwu</div>
</li>
</ul>
<div class="article markdown">
<h2 id="symbol-">Symbol 引用</h2>
<hr>
<p>这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇<a href="">文章</a>
这种用法其实是做了一个 SVG 的集合,与另外两种相比具有如下特点:</p>
<ul>
<li>支持多色图标了,不再受单色限制。</li>
<li>通过一些技巧,支持像字体那样,通过 <code>font-size</code>, <code>color</code> 来调整样式。</li>
<li>兼容性较差,支持 IE9+,及现代浏览器。</li>
<li>浏览器渲染 SVG 的性能一般,还不如 png。</li>
</ul>
<p>使用步骤如下:</p>
<h3 id="-symbol-">第一步:引入项目下面生成的 symbol 代码:</h3>
<pre><code class="language-html">&lt;script src="./iconfont.js"&gt;&lt;/script&gt;
</code></pre>
<h3 id="-css-">第二步:加入通用 CSS 代码(引入一次就行):</h3>
<pre><code class="language-html">&lt;style&gt;
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
&lt;/style&gt;
</code></pre>
<h3 id="-">第三步:挑选相应图标并获取类名,应用于页面:</h3>
<pre><code class="language-html">&lt;svg class="icon" aria-hidden="true"&gt;
&lt;use xlink:href="#icon-xxx"&gt;&lt;/use&gt;
&lt;/svg&gt;
</code></pre>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function () {
$('.tab-container .content:first').show()
$('#tabs li').click(function (e) {
var tabContent = $('.tab-container .content')
var index = $(this).index()
if ($(this).hasClass('active')) {
return
} else {
$('#tabs li').removeClass('active')
$(this).addClass('active')
tabContent.hide().eq(index).fadeIn()
}
})
})
</script>
</body>
</html>
@font-face {
font-family: "iconfont";
src: url('iconfont.eot?t=1593661133427');
/* IE9 */
src: url('iconfont.eot?t=1593661133427#iefix') format('embedded-opentype'),
/* IE6-IE8 */
url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2'),
url('iconfont.woff?t=1593661133427') format('woff'),
url('iconfont.ttf?t=1593661133427') format('truetype'),
/* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
url('iconfont.svg?t=1593661133427#iconfont') format('svg');
/* iOS 4.1- */
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.iconmingxibeifen:before {
content: "\eae0";
}
.iconshangpinshezhi:before {
content: "\e60b";
}
.icongukeguanliicon:before {
content: "\e60a";
}
.iconshuaxin1:before {
content: "\e613";
}
.icongou:before {
content: "\e606";
}
.iconshouquanyanzheng:before {
content: "\e687";
}
.iconhuaban:before {
content: "\e62a";
}
.iconsucaiku:before {
content: "\eab6";
}
.iconwenjian1:before {
content: "\eaae";
}
.iconbofang1:before {
content: "\eaad";
}
.iconbiaoqing:before {
content: "\e612";
}
.iconwenzi:before {
content: "\e611";
}
.icondaima:before {
content: "\e6bc";
}
.icontupian:before {
content: "\e73a";
}
.iconwenjian:before {
content: "\e62d";
}
.iconshipin:before {
content: "\e605";
}
.icontuozhuaiopen:before {
content: "\e61c";
}
.icontoufang2:before {
content: "\e845";
}
.iconcelve:before {
content: "\eaa9";
}
.iconmoban:before {
content: "\e619";
}
.icontongxunlu:before {
content: "\e64e";
}
.iconwodeqiaquan-:before {
content: "\e6bb";
}
.iconhuihuajinglingicon-:before {
content: "\e678";
}
.iconshibai:before {
content: "\e60e";
}
.iconchenggong:before {
content: "\e63c";
}
.iconqiyeweixin:before {
content: "\e628";
}
.iconnan:before {
content: "\e629";
}
.iconxingbienv:before {
content: "\e66b";
}
.iconrenwuzhipai:before {
content: "\e7a5";
}
.iconwanchengrenwu:before {
content: "\ea6c";
}
.iconziyuan1:before {
content: "\e6a4";
}
.icondingwei:before {
content: "\e918";
}
.icongengduo2:before {
content: "\ea5b";
}
.iconqiyexinxi:before {
content: "\ea7a";
}
.iconjia:before {
content: "\ea79";
}
.icondaishenhe_orange:before {
content: "\e604";
}
.iconrenwu1:before {
content: "\e607";
}
.iconshenhe:before {
content: "\e772";
}
.icongengduo1:before {
content: "\e68c";
}
.iconjian:before {
content: "\e634";
}
.iconguanliyuanliebiao:before {
content: "\e609";
}
.iconbumen:before {
content: "\ea78";
}
.iconxiafa:before {
content: "\e64a";
}
.icongengduo:before {
content: "\e603";
}
.iconxitongguanlitubiao_mobanshezhi:before {
content: "\e618";
}
.iconribao:before {
content: "\e750";
}
.iconribaoshezhi:before {
content: "\e7f4";
}
.iconrenwu:before {
content: "\e77a";
}
.iconzhibiao:before {
content: "\e610";
}
.iconhuawujinengzupeizhi:before {
content: "\e601";
}
.iconbuliangpingjiashezhi:before {
content: "\e7f6";
}
.iconhuawushuju:before {
content: "\e600";
}
.iconshuaxin:before {
content: "\e61b";
}
.iconqiaquan:before {
content: "\e6b6";
}
.iconjichushezhi:before {
content: "\e65e";
}
.icontianjiajiahaowubiankuang:before {
content: "\e81a";
}
.iconchengyuan:before {
content: "\e61a";
}
.iconnavigate_next:before {
content: "\e62f";
}
.iconchangyongicon-:before {
content: "\e617";
}
.iconqiye-tianchong:before {
content: "\e730";
}
.iconzuzhijiagouguanli:before {
content: "\e635";
}
.icondianpu-kuai:before {
content: "\e602";
}
.iconxiala:before {
content: "\e608";
}
.iconrizhifuwu:before {
content: "\e65a";
}
!(function(c){var h; var l; var a; var i; var t; var o; var s; var z='<svg><symbol id="iconmingxibeifen" viewBox="0 0 1024 1024"><path d="M880.64 553.545143V414.72c0-148.918857-124.854857-271.36-277.723429-271.36H255.853714c-61.952 0-112.493714 49.517714-112.493714 109.348571V609.28c0 148.918857 124.854857 271.36 277.650286 271.36h347.136c61.952 0 112.493714-49.517714 112.493714-109.348571a52.662857 52.662857 0 0 1 105.325714 0c0 118.491429-98.157714 214.674286-217.819428 214.674285H421.010286C210.505143 985.965714 38.034286 816.786286 38.034286 609.28V252.708571C38.034286 134.217143 136.192 38.034286 255.853714 38.034286h347.136c210.505143 0 382.976 169.179429 382.976 376.685714v138.752a52.662857 52.662857 0 1 1-105.325714 0z" fill="#C0C4CC" ></path><path d="M351.305143 357.595429h186.368a52.662857 52.662857 0 1 1 0 105.325714H351.305143a52.662857 52.662857 0 1 1 0-105.325714z m0 259.218285h315.977143a52.662857 52.662857 0 1 1 0 105.325715h-315.977143a52.662857 52.662857 0 1 1 0-105.325715z" fill="#C0C4CC" ></path></symbol><symbol id="iconshangpinshezhi" viewBox="0 0 1024 1024"><path d="M136.96 846.72c-45.632 0-79.872-33.92-79.872-79.04V135.936c0-45.184 34.24-78.976 79.936-78.976h517.056c45.632 0 79.872 33.792 79.872 78.976V293.76c0 16.96 11.456 28.224 28.544 28.224 17.152 0 28.544-11.264 28.544-28.16V135.872c0-73.344-62.784-135.424-136.96-135.424H136.96C62.848 0.512 0 62.592 0 135.936v637.44c0 73.28 62.784 135.36 136.96 135.36h152.96c17.152 0 28.544-11.328 28.544-28.224s-11.392-33.856-28.544-33.856H136.96z" fill="#2B81F0" ></path><path d="M706.624 762.048c-17.088 0-28.544-11.264-28.544-28.16 0-16.96 11.456-28.224 28.544-28.224 17.152 0 28.544 11.264 28.544 28.16 0 16.96-11.392 28.224-28.544 28.224m0-112.832c-45.632 0-85.632 39.488-85.632 84.608 0 45.12 40 84.608 85.632 84.608 45.696 0 85.632-39.488 85.632-84.608 0-45.12-34.24-84.608-85.632-84.608m-57.088-372.288c17.152-11.264 34.24-28.16 34.24-50.752 0-33.856-22.784-56.448-57.088-56.448-34.24 0-57.024 22.592-57.024 56.448 0 16.896 11.392 33.856 22.784 45.12-22.784 90.24-97.024 152.32-194.048 152.32-97.088 0-171.264-67.712-194.112-152.32 11.392-11.264 22.848-28.16 22.848-45.12 0-33.856-22.848-56.448-57.088-56.448s-57.088 22.592-57.088 56.448c0 22.528 11.392 45.12 34.24 50.752C170.048 389.76 272.768 480 398.4 480c125.568 0 222.592-84.608 251.136-203.072" fill="#2B81F0" ></path><path d="M815.104 886.144c-5.76 11.264-17.152 16.896-22.848 16.896H632.448c-11.456 0-17.152-5.632-22.848-16.896l-85.632-140.992c-5.76-11.328-5.76-16.96 0-28.224l79.936-141.056c5.696-11.264 17.088-16.896 22.784-16.896h159.872c11.392 0 17.088 5.632 22.848 16.896l79.872 141.056c3.456 5.248 11.456 22.592 5.76 28.16l-80 141.056z m131.264-197.44L866.56 547.712c-17.152-28.224-45.696-45.12-74.24-45.12H632.448c-28.544 0-57.088 16.896-74.24 45.12L478.272 688.64c-17.088 28.16-17.088 56.448 0 84.608l80 141.056c17.088 28.16 45.632 45.12 74.176 45.12h159.808c28.544 0 57.088-16.96 74.24-45.12l79.872-141.056c17.152-28.16 17.152-56.384 0-84.608" fill="#2B81F0" ></path></symbol><symbol id="icongukeguanliicon" viewBox="0 0 1040 1024"><path d="M512.761 521.23c-30.144 0-60.808-6.1-88.674-17.64-27.86-11.54-53.857-28.907-75.18-50.227-21.325-21.334-38.694-47.33-50.233-75.18-11.537-27.856-17.636-58.52-17.636-88.678 0-30.153 6.099-60.817 17.634-88.675 11.545-27.863 28.914-53.858 50.234-75.18 21.322-21.323 47.32-38.693 75.178-50.232 27.86-11.538 58.524-17.637 88.676-17.637 30.153 0 60.816 6.099 88.675 17.637 27.857 11.537 53.853 28.91 75.18 50.233 21.318 21.317 38.69 47.311 50.23 75.177 11.538 27.86 17.637 58.524 17.637 88.677 0 30.157-6.099 60.822-17.637 88.676-11.537 27.858-28.907 53.856-50.23 75.182-21.327 21.323-47.323 38.69-75.182 50.228-27.864 11.538-58.527 17.64-88.672 17.64z m0-396.243c-21.407 0-43.178 4.33-62.96 12.522-19.776 8.19-38.231 20.523-53.37 35.662-15.139 15.14-27.47 33.595-35.664 53.377-8.19 19.776-12.522 41.546-12.522 62.955 0 21.412 4.33 43.182 12.522 62.956 8.19 19.777 20.526 38.235 35.667 53.381 15.133 15.133 33.589 27.464 53.368 35.654 19.788 8.196 41.56 12.528 62.96 12.528s43.172-4.332 62.957-12.526c19.78-8.192 38.237-20.523 53.375-35.659 15.138-15.14 27.47-33.597 35.662-53.377 8.19-19.776 12.521-41.546 12.521-62.958 0-21.408-4.33-43.179-12.522-62.96-8.193-19.78-20.524-38.235-35.66-53.369-15.142-15.143-33.6-27.475-53.376-35.667-19.778-8.189-41.548-12.52-62.958-12.52zM512.761 966.219c-153.124 0-258.397-18.188-321.837-55.603-59.37-35.017-69.763-79.25-72.416-109.476-5.71-65.034 30.23-148.91 68.681-198.149 38.892-49.811 91.984-77.243 149.492-77.243 35.325 0 58.258 11.794 78.49 22.2 23.676 12.174 46.036 23.675 97.59 23.675 53.02 0 75.954-12.035 98.133-23.673 19.832-10.406 42.31-22.202 77.887-22.202 51.316 0 94.635 19.516 136.323 61.415 55.979 56.267 84.892 151.733 80.504 211.52-1.542 20.992-5.153 70.147-66.86 109-62.552 39.39-169.183 58.536-325.987 58.536zM336.683 592.956c-46.606 0-78.213 27.95-96.522 51.4-33.682 43.133-58.22 110.83-54.701 150.91 1.526 17.4 5.97 37.623 39.607 57.462 35.802 21.115 114.776 46.285 287.695 46.285 176.569 0 255.257-26.212 290.178-48.2 32.978-20.763 34.52-41.736 35.643-57.05 2.8-38.17-16.882-114.73-61.121-159.199-29.017-29.165-55.539-41.608-88.68-41.608-19.015 0-29.419 5.46-46.657 14.506-26.635 13.974-59.78 31.369-129.364 31.369-67.821 0-101.37-17.253-128.325-31.116-17.28-8.887-28.699-14.76-47.753-14.76zM987.515 752.71c-1.647 0-3.312-0.122-4.992-0.37-18.355-2.733-31.02-19.829-28.288-38.186 14.7-98.735-46.498-224.021-157.815-245.942a33.603 33.603 0 0 1-20.82-52.547c39.655-55.326 50.128-107.85 31.13-156.115-14.717-37.383-42.278-59.416-42.555-59.634l0.163 0.125 40.949-53.29c4.123 3.168 40.924 32.476 62.59 84.745 17.601 42.469 27.523 106.727-13.466 184.43 49.074 20.416 91.66 57.385 122.71 107.263 37.692 60.55 53.579 133.761 43.59 200.862-2.484 16.676-16.828 28.657-33.196 28.66zM36.442 752.71c-16.37 0-30.71-11.98-33.195-28.66-9.99-67.1 5.898-140.311 43.593-200.861 31.048-49.878 73.635-86.847 122.71-107.263-40.991-77.703-31.07-141.96-13.468-184.43 21.664-52.268 58.464-81.574 62.59-84.745l40.95 53.29 0.16-0.125c-0.275 0.218-27.837 22.25-42.554 59.634-18.996 48.264-8.524 100.789 31.131 156.115a33.606 33.606 0 0 1-20.819 52.547C116.22 490.132 55.022 615.419 69.722 714.153c2.732 18.357-9.933 35.453-28.288 38.186-1.678 0.25-3.344 0.371-4.992 0.371z" fill="#C8D0DC" ></path><path d="M205.535 173.764a33.121 33.121 0 1 0 67.786 0 33.121 33.121 0 1 0-67.786 0zM749.907 173.764a33.121 33.121 0 1 0 67.786 0 33.121 33.121 0 1 0-67.786 0z" fill="#C8D0DC" ></path></symbol><symbol id="iconshuaxin1" viewBox="0 0 1024 1024"><path d="M780.9 902.4c-9.7 0-19.3-4.4-25.6-12.8-10.6-14.1-7.8-34.2 6.4-44.8C867.4 765.4 928 644.1 928 512c0-229.4-186.6-416-416-416-17.7 0-32-14.3-32-32s14.3-32 32-32c264.7 0 480 215.3 480 480 0 152.4-70 292.4-192 384-5.7 4.3-12.5 6.4-19.1 6.4zM512 992C247.3 992 32 776.7 32 512c0-130 51.1-251.7 144-342.8 12.6-12.4 32.9-12.2 45.3 0.4 12.4 12.6 12.2 32.9-0.4 45.3C140.3 293.8 96 399.3 96 512c0 229.4 186.6 416 416 416 17.7 0 32 14.3 32 32s-14.3 32-32 32z" fill="#243154" ></path><path d="M601.6 230.4c-10.3 0-20.5-5-26.7-14.3L485.4 81.8c-9.8-14.7-5.8-34.6 8.9-44.4 14.7-9.8 34.6-5.8 44.4 8.9l89.6 134.4c9.8 14.7 5.8 34.6-8.9 44.4-5.5 3.6-11.7 5.3-17.8 5.3zM512 992c-10.3 0-20.5-5-26.7-14.3l-89.6-134.4c-9.8-14.7-5.8-34.6 8.9-44.4 14.7-9.8 34.5-5.8 44.4 8.9l89.6 134.4c9.8 14.7 5.8 34.6-8.9 44.4-5.4 3.7-11.6 5.4-17.7 5.4z" fill="#243154" ></path></symbol><symbol id="icongou" viewBox="0 0 1024 1024"><path d="M590.848 646.528l37.376 35.008-209.792 224.384-37.44-35.008z" fill="#666666" ></path><path d="M328.192 747.52l112.192 104.96-34.944 37.376-112.192-104.96z" fill="#666666" ></path></symbol><symbol id="iconshouquanyanzheng" viewBox="0 0 1024 1024"><path d="M768 768v-42.667c0-23.563-19.101-42.666-42.659-42.666H298.66c-23.558 0-42.659 19.102-42.659 42.666V768h512z m-554.667-42.667c0-47.128 38.204-85.333 85.326-85.333H725.34c47.124 0 85.326 38.208 85.326 85.333v85.334H213.333v-85.334z" fill="#777777" ></path><path d="M575.372 599.986c-6.842-19.572-10.618-38.655-10.766-55.49-0.087-9.918 1.062-19.247 3.766-27.907 3.746-12.002 10.4-22.593 20.734-30.407C620.956 462.097 640 424.67 640 384c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128 0 40.689 19.061 78.132 50.938 102.215 10.32 7.797 17 18.37 20.772 30.358 2.734 8.686 3.9 18.042 3.82 27.985-0.137 16.86-3.925 35.956-10.797 55.543-4.728 13.477-10.771 26.881-18.012 39.899h162.661c-7.242-13.052-13.284-26.494-18.01-40.014z m107.295 82.68H341.333c67.885-56.888 88.525-146.814 67.885-162.408-41.236-31.154-67.885-80.594-67.885-136.258 0-94.257 76.41-170.667 170.667-170.667S682.667 289.743 682.667 384c0 55.638-26.624 105.058-67.827 136.214-20.453 15.466 0 105.564 67.827 162.453z" fill="#777777" ></path></symbol><symbol id="iconhuaban" viewBox="0 0 1024 1024"><path d="M594.938802 775.459887H433.901427c-9.752089 0-19.51441-9.762322-19.51441-19.51441s9.762322-19.51441 19.51441-19.51441h161.037375c9.762322 0 19.51441 9.752089 19.51441 19.51441s-9.752089 19.51441-19.51441 19.51441z m0 0" fill="" ></path><path d="M594.938802 784.669625H433.901427c-14.766279 0-28.724148-13.957869-28.724148-28.724148s13.957869-28.724148 28.724148-28.724148h161.037375c14.766279 0 28.724148 13.957869 28.724147 28.724148s-13.957869 28.724148-28.724147 28.724148zM433.901427 745.640804c-4.625335 0-10.304673 5.679338-10.304673 10.304673s5.72027 10.304673 10.304673 10.304673h161.037375c4.717432 0 10.304673-5.587241 10.304672-10.304673s-5.587241-10.304673-10.304672-10.304673z" fill="" ></path><path d="M716.906424 951.089579H307.093576c-53.672303 0-102.41228-43.909981-102.412279-102.453212V175.363633c4.881161-53.672303 48.791142-102.453212 102.453212-102.453212h409.771915c53.672303 0 102.453212 43.909981 102.453211 102.453212v673.272734c-4.870928 53.672303-48.791142 102.453212-102.453211 102.453212zM307.093576 116.810169c-34.157893 0-58.543231 29.276732-58.54323 58.543231v673.282967c0 34.14766 29.276732 58.543231 58.54323 58.543231h409.812848c34.157893 0 58.543231-29.276732 58.54323-58.543231V175.363633c0-34.157893-29.276732-58.543231-58.54323-58.543231z m0 0" fill="" ></path><path d="M716.906424 960.299316H307.093576c-28.488788 0-56.834313-11.614502-77.771115-31.865691a110.189391 110.189391 0 0 1-33.902067-79.817724V174.565455a129.509374 129.509374 0 0 1 35.488188-76.921773c21.16193-21.86801 48.197626-33.9123 76.144062-33.912299h409.85378c28.488788 0 56.834313 11.614502 77.771115 31.865691a110.189391 110.189391 0 0 1 33.9123 79.817724V849.475477A129.488908 129.488908 0 0 1 793.081185 926.39725c-21.192629 21.857777-48.228325 33.902067-76.174761 33.902066zM213.891034 175.79342v672.842947a91.913179 91.913179 0 0 0 28.29436 66.51477c17.518967 16.95615 41.198225 26.677539 64.949115 26.677539h409.771915c22.901547 0 45.25051-10.048847 62.902506-28.294359a110.782908 110.782908 0 0 0 30.340968-65.36867V175.363633a91.913179 91.913179 0 0 0-28.29436-66.51477C764.336571 91.892713 740.657313 82.171324 716.906424 82.171324H307.093576c-22.901547 0-45.240277 10.048847-62.902506 28.294359A110.813607 110.813607 0 0 0 213.891034 175.79342z m503.01539 740.595915H307.093576c-32.745733 0-67.752968-27.230124-67.752968-67.752968V175.363633c0-32.745733 27.230124-67.752968 67.752968-67.752968h409.812848c32.745733 0 67.752968 27.230124 67.752968 67.752968v673.272734c0 32.725267-27.21989 67.752968-67.752968 67.752968zM307.093576 126.019906c-29.512092 0-49.333493 25.510973-49.333493 49.333494v673.282967c0 29.512092 25.510973 49.333493 49.333493 49.333493h409.812848c29.512092 0 49.333493-25.510973 49.333493-49.333493V175.363633c0-29.512092-25.510973-49.333493-49.333493-49.333493z" fill="" ></path></symbol><symbol id="iconsucaiku" viewBox="0 0 1024 1024"><path d="M268.8 484.352c-16.896 0-30.208 13.824-30.208 30.208 0 16.896 13.824 30.208 30.208 30.208 16.896 0 30.208-13.824 30.208-30.208s-13.312-30.208-30.208-30.208m0 216.576c-16.896 0-30.208 13.824-30.208 30.208 0 16.896 13.824 30.208 30.208 30.208 16.896 0 30.208-13.824 30.208-30.208 0-16.896-13.312-30.208-30.208-30.208m486.912-216.576h-378.88c-14.848 0-26.624 13.312-26.624 30.208v1.024c0 16.384 11.776 30.208 26.624 30.208h378.88c14.848 0 26.624-13.312 26.624-30.208v-1.024c0-16.896-12.288-30.208-26.624-30.208m0 216.576h-378.88c-14.848 0-26.624 13.312-26.624 29.696v1.024c0 16.384 11.776 30.208 26.624 30.208h378.88c14.848 0 26.624-13.312 26.624-30.208v-1.024c0-16.384-12.288-29.696-26.624-29.696" fill="#4C84FF" ></path><path d="M860.16 970.24H163.84c-76.288 0-138.24-61.952-138.24-138.24V400.896c0-76.288 61.952-138.24 138.24-138.24h696.32c76.288 0 138.24 61.952 138.24 138.24v431.616c0 75.776-61.952 137.728-138.24 137.728zM163.84 323.072c-42.496 0-77.312 34.816-77.312 77.312v431.616c0 42.496 34.816 77.312 77.312 77.312h696.32c42.496 0 77.312-34.816 77.312-77.312V400.896c0-42.496-34.816-77.312-77.312-77.312H163.84z" fill="#4C84FF" ></path><path d="M55.808 653.824c-16.896 0-30.208-13.824-30.208-30.208V192c0-76.288 61.952-138.24 138.24-138.24h238.08c6.656 0 13.312 2.048 18.432 6.144l270.336 208.896c13.312 10.24 15.872 29.184 5.632 42.496s-29.184 15.872-42.496 5.632L391.68 114.176H163.84c-42.496 0-77.312 34.816-77.312 77.312v431.616c0 16.896-13.824 30.72-30.72 30.72z" fill="#4C84FF" ></path></symbol><symbol id="iconwenjian1" viewBox="0 0 1024 1024"><path d="M146.432 5.12H614.4l307.2 305.664v668.672c0 24.064-19.456 43.52-44.032 43.52H146.432c-24.064 0-44.032-19.456-44.032-43.52V48.64C102.4 24.576 121.856 5.12 146.432 5.12z" fill="#3D6AE8" ></path><path d="M614.4 5.12l307.2 307.2h-239.104C645.12 312.32 614.4 281.6 614.4 244.224V5.12z" fill="#86ADF2" ></path><path d="M239.104 514.048h546.304v102.4H239.104zM239.104 718.848h546.304v102.4H239.104z" fill="#E1EDFF" ></path></symbol><symbol id="iconbofang1" viewBox="0 0 1024 1024"><path d="M10.24 512c0 276.992 224.256 501.76 501.248 501.76 276.992 0 501.76-224.256 501.76-501.248 0-276.992-224.256-501.76-501.248-501.76S10.24 235.008 10.24 512z" fill="#333333" fill-opacity=".8" ></path><path d="M391.68 376.32c0-53.248 58.368-85.504 103.424-57.856l193.536 118.784c43.008 26.624 43.008 89.088 0 115.712l-193.536 118.784c-45.056 27.648-103.424-4.608-103.424-57.856V376.32z m132.096 118.784l4.096 2.56v-5.12l-4.096 2.56z" fill="#FFFFFF" ></path></symbol><symbol id="iconbiaoqing" viewBox="0 0 1029 1024"><path d="M514.547 5.095c-281.32 0-509.452 228.127-509.452 509.452S233.125 1024 514.547 1024C795.765 1024 1024 795.872 1024 514.547S795.872 5.095 514.547 5.095z" fill="#FFDF6B" ></path><path d="M739.114 642.629c-12.838-5.711-27.918 0.198-33.624 13.042-24.352 55.326-92.827 111.06-191.045 111.06-92.42 0-163.845-57.364-191.253-110.658-6.42-12.527-21.907-17.423-34.337-10.999a25.529 25.529 0 0 0-11.106 34.332c18.646 36.38 50.537 70.208 89.663 95.064 44.424 28.33 95.166 43.202 146.82 43.202 53.39 0 104.335-14.061 147.231-40.553 40.655-25.065 72.648-60.93 90.28-100.871a24.877 24.877 0 0 0-12.629-33.62zM362.221 512.31c28.02 0 50.945-22.926 50.945-50.946V410.62c0-28.02-22.925-50.945-50.945-50.945s-50.945 22.925-50.945 50.945v50.746c0 28.02 22.925 50.946 50.945 50.946z m305.672 0c28.02 0 50.945-22.926 50.945-50.946V410.62c0-28.02-22.926-50.945-50.945-50.945s-50.946 22.925-50.946 50.945v50.746c0 28.02 22.926 50.946 50.946 50.946z" fill="#975D00" ></path></symbol><symbol id="iconwenzi" viewBox="0 0 1024 1024"><path d="M853.1 916.4H167.6c-34.9 0-63.3-28.4-63.3-63.3V167.6c0-34.9 28.4-63.3 63.3-63.3h685.5c34.9 0 63.3 28.4 63.3 63.3v685.5c0 34.9-28.4 63.3-63.3 63.3z m-685.5-772c-12.8 0-23.3 10.4-23.3 23.3v685.5c0 12.8 10.4 23.3 23.3 23.3h685.5c12.8 0 23.3-10.4 23.3-23.3V167.6c0-12.8-10.4-23.3-23.3-23.3H167.6z" fill="#403E3E" ></path><path d="M695.7 333.2H332.9V404h38.5v-31.7h122V685h-13.8v38.5h66.8V685h-11.2V372.3h122.3V404H696v-70.8z" fill="#403E3E" ></path></symbol><symbol id="icondaima" viewBox="0 0 1024 1024"><path d="M449.7 823.8c5 1.5 9.3 2.2 13.1 2.2 7.5 0 12.6-3 16.4-9.1l0.2-0.3 120.8-406.2 0.2-0.3c2.8-4.9 3.6-10.6 2.1-16-1.5-5.5-5-10-10-12.8-8.9-5.1-26.4 6.2-28.4 7.5l-0.8 0.6-120.7 405.5-0.2 0.3c-3.4 5.9-4.1 14-1.7 20.1 1.3 3 3.9 7 9 8.5z m238.5-95.4c0 5.7 2.2 11 6.3 15 4.2 4.1 9.7 6.2 15.3 6.2 5.6 0 11.2-2.1 15.5-6.4L870.2 625c3.9-3.9 6-9.6 5.7-16 0.3-6.2-1.8-11.9-6.1-16.1L725.5 475.1c-8.4-8.3-22.7-8.4-31-0.3-4.1 4-6.3 9.3-6.3 15 0 5.7 2.2 11 6.5 15.2l127.6 104.1-128.2 104.6c-3.8 3.7-5.9 9.1-5.9 14.7z m-381 14.6c4.5 4.4 10.1 6.6 15.8 6.6 5.5 0 10.9-2.1 15.2-6.3 4.1-4 6.3-9.3 6.3-15 0-5.7-2.3-11-6.5-15.2l-127.6-104 128.1-104.6c3.8-3.8 6-9.1 6-14.7 0-5.7-2.3-11-6.4-15-4.1-4-9.5-6.2-15.3-6.2-5.8 0-11.2 2.2-15.1 6L162.5 593.2c-3.9 3.9-6 9.6-5.7 16-0.3 6.2 1.8 11.9 6.1 16.1L307.2 743z" fill="#666666" ></path><path d="M855.9 61.8H176.8c-60.9 0-110.5 49.5-110.5 110.5v679.1c0 60.9 49.5 110.4 110.5 110.4h679.1c60.9 0 110.5-49.5 110.5-110.4V172.2c-0.1-60.9-49.6-110.4-110.5-110.4zM116.8 282.7h799.1V851c0 33.3-26.7 60.4-59.4 60.4H176.2c-32.8 0-59.4-27.1-59.4-60.4V282.7z m59.4-170.4h680.2c32.8 0 59.4 24.6 59.4 54.7v65.1h-799V167c0-30.1 26.7-54.7 59.4-54.7z" fill="#666666" ></path></symbol><symbol id="icontupian" viewBox="0 0 1024 1024"><path d="M823.986617 81.997526H204.012464c-66.164932 0-119.994931 53.829999-119.994932 119.994931v619.974154c0 66.164932 53.829999 119.994931 119.994932 119.994931h619.974153c66.164932 0 119.994931-53.829999 119.994932-119.994931V201.992457c0-66.165955-53.829999-119.994931-119.994932-119.994931z m-619.974153 59.997465h619.974153c33.082466 0 59.997466 26.915 59.997466 59.997466v118.788454c-140.010801 7.249101-270.549879 65.138556-370.296651 164.887374-44.722574 44.721551-80.997756 95.649454-108.104113 150.82817-40.761356-31.013341-90.24128-47.812959-142.285611-47.812958-42.603307 0-83.488483 11.262508-119.281687 32.355918V201.992457c-0.001023-33.082466 26.913976-59.997466 59.996443-59.997466z m-59.997466 679.97162V695.478801c32.589233-30.212092 74.667583-46.798862 119.281687-46.798862 43.954071 0 85.46858 16.071024 117.851105 45.437865-21.345144 59.487859-32.646538 122.800837-33.093723 187.845249H204.012464c-33.082466 0.001023-59.997466-26.913976-59.997466-59.996442z m679.971619 59.997465H408.052556c1.027399-133.769656 53.494355-259.305791 148.059104-353.871563 88.413656-88.411609 203.898877-140.017964 327.873446-147.204643v441.078741c-0.001023 33.082466-26.916023 59.997466-59.998489 59.997465z" fill="#272636" ></path><path d="M326.33951 429.332209c62.712297 0 113.731274-51.018977 113.731274-113.729228 0-62.712297-51.018977-113.731274-113.731274-113.731274-62.71025 0-113.729228 51.018977-113.729228 113.731274-0.001023 62.71025 51.018977 113.729228 113.729228 113.729228z m0-167.46406c29.629831 0 53.733808 24.103978 53.733808 53.733809 0 29.627784-24.103978 53.731762-53.733808 53.731762-29.627784 0-53.731762-24.103978-53.731762-53.731762-0.001023-29.628808 24.103978-53.733808 53.731762-53.733809z" fill="#272636" ></path></symbol><symbol id="iconwenjian" viewBox="0 0 1024 1024"><path d="M752 80H272c-70.4 0-128 57.6-128 128v608c0 70.4 57.6 128 128 128h353.6c33.6 0 65.6-12.8 91.2-36.8l126.4-126.4c24-24 36.8-56 36.8-91.2V208c0-70.4-57.6-128-128-128zM208 816V208c0-35.2 28.8-64 64-64h480c35.2 0 64 28.8 64 64v464h-96c-70.4 0-128 57.6-128 128v80H272c-35.2 0-64-28.8-64-64z m462.4 44.8c-4.8 4.8-9.6 8-14.4 11.2v-72c0-35.2 28.8-64 64-64h75.2L670.4 860.8z" fill="#515151" ></path><path d="M368 352h288c17.6 0 32-14.4 32-32s-14.4-32-32-32H368c-17.6 0-32 14.4-32 32s14.4 32 32 32z m128 256H368c-17.6 0-32 14.4-32 32s14.4 32 32 32h128c17.6 0 32-14.4 32-32s-14.4-32-32-32z m-128-96h288c17.6 0 32-14.4 32-32s-14.4-32-32-32H368c-17.6 0-32 14.4-32 32s14.4 32 32 32z" fill="#515151" ></path></symbol><symbol id="iconshipin" viewBox="0 0 1024 1024"><path d="M972.494 288.502c-12.008-20.047-36.422-29.773-60.737-24.314-11.314 2.58-21.735 8.634-31.659 18.658l-22.727 22.826c-14.093 14.192-28.284 28.284-42.476 42.476L782.243 380.8v-93.388c0-63.219-51.408-114.627-114.626-114.627H157.7c-63.219 0-114.627 51.408-114.627 114.627v449.377c0 63.218 51.408 114.627 114.627 114.627h509.916c63.218 0 114.626-51.409 114.626-114.627v-88.03c3.176 3.375 6.352 6.848 9.528 10.222 24.91 26.598 50.614 54.088 78.006 79.396 16.276 15.085 34.934 23.024 52.599 23.024 7.046 0 13.894-1.29 20.444-3.87 23.124-9.13 36.919-32.354 36.82-62.028 0-15.978-0.199-32.254-0.596-48.232-0.198-10.123 0-20.246 0.1-30.865 0.099-7.047 0.297-14.291 0.297-21.635v-75.922c0-26.796 0.199-53.989 0.397-80.388 0.199-26.895 0.397-54.584 0.397-81.975 0.1-11.513 0.298-20.345 0.596-28.682 0.397-11.115-0.1-25.704-8.337-39.3zM732.621 736.69c0 35.827-29.177 65.004-65.004 65.004H157.7c-35.827 0-65.005-29.177-65.005-65.004V287.31c0-35.827 29.178-65.004 65.005-65.004h509.916c35.827 0 65.004 29.177 65.004 65.004V736.69z m198.687-410.672c-0.298 8.832-0.496 18.062-0.596 30.17v0.198c0 27.193-0.198 54.982-0.396 81.777-0.199 26.4-0.397 53.79-0.397 80.686v75.922c0 6.847-0.1 13.894-0.199 20.742-0.198 10.619-0.397 21.635-0.1 32.85 0.299 15.58 0.497 31.46 0.497 47.14 0 5.062-1.19 14.093-5.558 15.88-3.572 1.389-12.703-1.787-21.04-9.528-26.1-24.116-51.21-50.912-75.425-76.914-14.886-15.88-30.17-32.255-45.751-48.034v-126.04l67.783-67.784 42.477-42.476 22.727-22.827c3.076-3.076 5.557-4.863 7.542-5.26 3.275-0.793 6.451 0.1 7.146 1.39 0.694 1.29 1.488 4.466 1.29 12.108z" fill="#333333" ></path><path d="M524.308 449.476l-153.233-86.838c-21.139-13.696-47.34-14.49-70.165-2.283-24.216 13.001-39.3 37.713-39.3 64.509v174.173c0 26.895 15.084 51.607 39.3 64.608 10.718 5.756 22.131 8.535 33.445 8.535 12.803 0 25.506-3.672 36.82-10.917l152.041-86.144c23.918-10.817 39.003-32.155 40.492-57.363 1.489-27.292-13.596-53.492-39.4-68.28z m-10.222 65.501c-0.298 4.764-2.58 11.215-11.81 15.185l-1.29 0.496-155.02 87.83-0.793 0.398-0.794 0.496c-8.138 5.458-16.078 2.58-20.048 0.496-6.053-3.275-13.1-10.619-13.1-20.841V424.864c0-10.123 7.047-17.566 13.1-20.742 2.283-1.191 5.955-2.68 10.123-2.68 3.077 0 6.55 0.794 9.925 3.077l0.694 0.496 154.523 87.533c11.314 6.352 14.887 15.78 14.49 22.43z" fill="#333333" ></path></symbol><symbol id="icontuozhuaiopen" viewBox="0 0 1024 1024"><path d="M781.7 354.5H241c-12.6 0-22.9-11.2-22.9-25s10.2-25 22.9-25h540.6c12.6 0 22.9 11.2 22.9 25s-10.2 25-22.8 25z" fill="#89A9C2" ></path><path d="M783.5 531.5H242.9c-12.6 0-22.9-11.2-22.9-25s10.2-25 22.9-25h540.6c12.6 0 22.9 11.2 22.9 25-0.1 13.8-10.3 25-22.9 25z" fill="#42769E" ></path><path d="M783.5 708.5H242.9c-12.6 0-22.9-11.2-22.9-25s10.2-25 22.9-25h540.6c12.6 0 22.9 11.2 22.9 25s-10.3 25-22.9 25z" fill="#89A9C2" ></path></symbol><symbol id="icontoufang2" viewBox="0 0 1024 1024"><path d="M506.654636 1023.580332c-22.405036 0-39.237246-5.800289-56.069456-17.457731L170.067304 843.145866C136.402884 825.688135 113.940982 784.972384 113.940982 738.399478V412.502874c0-17.457731 11.202518-29.115174 28.034728-40.772617l274.94505-122.204118h5.629692c5.572826 0 16.83221 5.800289 16.83221 11.657442 5.572826 11.600577 0 23.314885-11.259384 23.314886L147.605402 412.389143l353.476408 157.176446 359.049234-157.119581L579.670033 284.441601c-5.629692 0-5.629692-5.800289-11.202518-11.657443V255.326427c5.572826-5.800289 11.202518-11.600577 16.83221-11.600577h5.572826l274.94505 122.204119c16.83221 5.800289 28.034728 23.314885 28.034728 40.715751v331.753758c0 40.715751-22.405036 81.488368-56.069456 104.746388l-274.94505 162.976735a92.406558 92.406558 0 0 1-56.126321 17.457731z m16.83221-419.042415v378.326664l16.83221-5.857154 5.686557-5.800289 274.888185-162.976735c22.405036-11.600577 39.237246-40.715751 39.237246-69.830925V453.218625l-336.644198 151.319292zM153.235094 738.399478c0 29.115174 16.83221 58.230348 39.237246 69.830925l291.720394 168.777024V598.794494L153.291959 447.418336v290.981142z" fill="#F29054" ></path><path d="M530.196984 389.927241c-11.657443 0-17.514597-5.459095-17.514597-16.491017V65.964066L396.392288 175.771489c-5.857154 0-11.657443 5.459095-17.457731 5.459095-5.857154 0-11.657443 0-11.657443-5.459095-11.600577-11.031921-11.600577-22.006977-5.800288-27.466072L512.739252 5.515961C518.482675 0 524.282964 0 530.083253 0c5.857154 0 11.657443 0 11.657442 5.515961l151.262427 142.73259c5.800289 0 5.800289 5.515961 5.800289 11.031922 0 5.459095 0 10.975056-5.857155 10.975056-5.800289 5.515961-5.800289 5.515961-11.600577 5.51596s-11.657443 0-11.657442-5.51596L547.597849 60.39124v307.585889c0 16.491016-11.600577 21.950112-17.457731 21.950112z" fill="#F29054" ></path></symbol><symbol id="iconcelve" viewBox="0 0 1024 1024"><path d="M898.048 607.744c-4.608-310.784-135.168-496.64-459.776-461.312C283.136 163.84 174.08 272.896 146.944 425.472c-52.224 290.304 106.496 436.224 391.168 484.864-123.904 51.2-306.176-44.032-389.12-186.368C47.616 549.376 93.184 312.832 251.904 188.416c160.768-125.952 398.336-117.248 544.768 19.968 116.224 108.544 171.008 301.568 101.376 399.36z" ></path><path d="M491.52 769.536c39.936-73.728 80.384-147.456 128.512-235.52H337.92c61.952-107.52 123.904-215.552 185.856-323.072 18.432 114.688-79.36 177.152-111.104 288.256h275.456c-55.296 95.232-110.592 190.976-165.888 286.208-10.24-5.12-20.48-10.752-30.72-15.872zM794.624 922.624v-230.4l16.896 0.512v229.888zM904.192 740.864h16.384v181.76h-16.384zM685.056 922.624v-104.96l16.384-0.512v103.936z" ></path></symbol><symbol id="iconmoban" viewBox="0 0 1024 1024"><path d="M357.4272 993.28H141.1072a78.2336 78.2336 0 0 1-78.1312-77.9264v-378.5728a78.2336 78.2336 0 0 1 78.1312-78.1312h216.32a78.2336 78.2336 0 0 1 78.1312 78.1312v378.5728A78.2336 78.2336 0 0 1 357.4272 993.28zM141.1072 506.88a30.0544 30.0544 0 0 0-30.0032 30.0032v378.5728a30.0544 30.0544 0 0 0 30.0032 30.0032h216.32a30.0544 30.0544 0 0 0 30.0032-30.0032v-378.6752A30.0544 30.0544 0 0 0 357.4272 506.88zM898.2528 408.2176H141.1072A78.2336 78.2336 0 0 1 62.976 330.0864V113.7664A78.2336 78.2336 0 0 1 141.1072 35.84h757.1456a78.2336 78.2336 0 0 1 78.1312 77.9264v216.32a78.2336 78.2336 0 0 1-78.1312 78.1312zM141.1072 83.7632a30.0544 30.0544 0 0 0-30.0032 30.0032v216.32a30.0544 30.0544 0 0 0 30.0032 30.0032h757.1456a30.0544 30.0544 0 0 0 30.0032-30.0032V113.7664a30.0544 30.0544 0 0 0-30.0032-30.0032z" fill="" ></path><path d="M502.8352 507.3408l438.016 0 0 48.128-438.016 0 0-48.128Z" fill="" ></path><path d="M502.8352 695.04l438.016 0 0 48.128-438.016 0 0-48.128Z" fill="" ></path><path d="M502.8352 882.7904l438.016 0 0 48.128-438.016 0 0-48.128Z" fill="" ></path></symbol><symbol id="icontongxunlu" viewBox="0 0 1024 1024"><path d="M419 160.5h159.5c26.7 0 47.9-21.7 47.9-47.9 0-26.7-21.7-47.9-47.9-47.9H419c-26.7 0-47.9 21.7-47.9 47.9 0.1 26.7 21.3 47.9 47.9 47.9zM288.5 352.5h447.2c17.6 0 32.1-14.5 32.1-32.1s-14.5-32.1-32.1-32.1H288.5c-17.6 0-32.1 14.5-32.1 32.1 0 17.7 14.5 32.1 32.1 32.1zM735.7 479.5H288.5c-17.6 0-32.1 14.5-32.1 32.1s14.5 32.1 32.1 32.1h447.2c17.6 0 32.1-14.5 32.1-32.1-0.5-17.7-14.5-32.1-32.1-32.1zM735.7 671.5H288.5c-17.6 0-32.1 14.5-32.1 32.1s14.5 32.1 32.1 32.1h447.2c17.6 0 32.1-14.5 32.1-32.1-0.5-18.1-14.5-32.1-32.1-32.1z" fill="#95A7ED" ></path><path d="M831.5 96.8h-32.1c-17.6 0-32.1 14.5-32.1 32.1s14.5 32.1 32.1 32.1h32.1c35.2 0 63.7 28.5 63.7 63.7v606.7c0 35.2-28.5 63.7-63.7 63.7H192.7c-35.2 0-63.7-28.5-63.7-63.7V224.7c0-35.2 28.5-63.7 63.7-63.7h32.1c17.6 0 32.1-14.5 32.1-32.1s-14.5-32.1-32.1-32.1h-32.1c-70.5 0-127.8 56.9-127.8 127.8v606.7c0 70.5 57.4 127.8 127.8 127.8h638.8c70.5 0 127.8-57.4 127.8-127.8V224.7c0-70.9-57.3-127.9-127.8-127.9z" fill="#95A7ED" ></path></symbol><symbol id="iconwodeqiaquan-" viewBox="0 0 1024 1024"><path d="M419.887448 1016.358209c-25.472637 0-50.435821-10.698507-69.795024-29.548259-15.793035-15.793035-32.095522-31.58607-47.888558-47.888557l-11.20796-11.20796c-22.925373-22.925373-27.510448-48.39801-14.264677-78.455722 10.698507-23.434826 10.189055-49.416915-1.018905-70.81393-11.20796-21.906468-32.095522-37.19005-57.058706-42.284577-3.056716-0.509453-6.622886-1.018905-10.189055-1.018905l-4.585075-0.509453-0.509453-1.528358h-0.509452c-3.056716 1.018905-6.622886 2.037811-10.189055 2.547263-7.641791 2.037811-15.283582 4.075622-22.41592 7.132339-10.698507 4.585075-21.397015 7.132338-31.076617 7.132338-17.321393 0-32.604975-7.132338-47.379105-21.397015l-11.20796-11.20796c-15.793035-15.793035-31.58607-31.58607-47.379104-47.888557-40.246766-40.756219-40.246766-99.343284 0-140.099503C199.294414 362.730348 365.885458 196.648756 531.96705 30.567164c19.359204-19.359204 44.322388-30.567164 70.304478-30.567164 25.472637 0 50.435821 10.698507 70.304478 30.057711L718.936205 76.41791l11.717413 11.717413c22.925373 23.434826 27.510448 48.907463 13.755223 78.965175-11.717413 25.472637-10.189055 55.020896 4.585075 77.946268s39.737313 36.680597 66.738309 36.680597h3.056716c9.679602-0.509453 20.378109-3.056716 32.095522-8.151244 10.698507-4.585075 21.397015-7.132338 31.076617-7.132338 17.321393 0 32.604975 7.132338 47.379105 21.397015l11.717413 11.717413 46.869651 46.869652c40.246766 40.756219 40.756219 99.343284 0 140.099502-166.591045 166.591045-332.672637 333.18209-499.263681 499.263682-18.340299 20.378109-42.79403 30.567164-68.77612 30.567164zM204.388941 670.439801c6.113433 0 12.226866 0.509453 18.849751 1.018905 45.850746 6.113433 85.078607 32.095522 107.494528 72.342289 22.41592 40.246766 24.963184 87.625871 6.113432 129.910448-2.037811 4.075622-1.528358 6.622886 1.528359 9.679602 13.755224 13.755224 28.0199 27.510448 40.246766 40.246766l14.774129 14.774129c9.170149 9.170149 17.830846 13.755224 27.000995 13.755224 8.660697 0 17.321393-4.585075 26.491542-13.755224 0 0 436.600995-436.091542 496.206966-496.206965 16.302488-16.302488 16.302488-34.133333 0-50.435821l-17.830846-17.830846c-12.736318-12.736318-25.472637-25.472637-38.208955-38.718408-1.528358-1.528358-3.056716-2.547264-5.094528-2.547263-1.018905 0-2.547264 0.509453-4.075622 1.018905-19.359204 9.170149-39.227861 13.755224-60.115423 13.755224-3.056716-0.509453-5.60398-0.509453-8.151243-0.509453-5.60398-0.509453-11.20796-1.018905-16.302488-2.037811-44.831841-8.151244-82.531343-35.152239-103.418905-74.889552-20.887562-39.737313-22.41592-86.097512-3.56617-127.872637 2.037811-4.075622 1.528358-6.622886-2.03781-9.679602-12.736318-12.736318-25.472637-25.472637-38.208956-37.699502l-17.830845-17.830846c-8.151244-8.151244-16.81194-12.226866-25.472637-12.226865-8.660697 0-17.321393 4.075622-25.472637 12.226865l-497.735323 497.735324c-16.302488 16.302488-16.302488 34.133333 0 50.43582l19.868656 19.868657 36.171145 36.171144c1.528358 1.528358 3.566169 3.056716 6.113432 3.056717 1.018905 0 2.547264-0.509453 4.585075-1.018906 18.340299-8.660697 37.699502-12.736318 58.077612-12.736318z" fill="#262435" ></path><path d="M488.154115 700.497512c-8.660697 0-16.302488-3.566169-22.41592-9.679602-12.736318-13.245771-12.226866-32.604975 1.528358-46.360199l114.117413-114.117412 37.19005-37.19005 7.641791-7.641791 1.018905-1.018906c7.132338-7.132338 14.774129-14.774129 22.41592-21.906467 6.113433-6.113433 13.245771-9.170149 21.397015-9.17015 4.585075 0 9.170149 1.018905 13.755224 3.056717 11.717413 5.094527 18.849751 14.774129 19.359204 28.0199 0 10.189055-3.566169 17.830846-10.189054 24.453732l-48.39801 48.39801-132.967165 132.967164c-7.132338 6.622886-15.793035 10.189055-24.453731 10.189054z m-137.552239-136.533333c-12.736318-1.018905-22.41592-7.132338-27.510448-17.830846-5.60398-11.20796-4.585075-22.41592 2.547264-32.604975 1.528358-2.547264 4.075622-5.094527 6.113433-7.132338l71.323383-71.323383 105.966169-105.966169c8.151244-8.151244 15.793035-11.717413 24.963184-11.717413 2.547264 0 5.60398 0.509453 8.151244 1.018905 10.698507 2.547264 19.359204 10.698507 22.925373 20.887562 3.566169 10.698507 1.528358 21.906468-5.60398 30.567165-1.018905 1.528358-2.547264 3.056716-4.075622 4.585074L501.399886 426.921393l-125.325373 125.325373c-7.132338 7.132338-15.283582 10.698507-24.963184 11.20796l-0.509453 0.509453z" fill="#262435" ></path></symbol><symbol id="iconhuihuajinglingicon-" viewBox="0 0 1036 1024"><path d="M311.088608 437.597975h440.70886a25.924051 25.924051 0 1 0 0-51.848102H311.088608a25.924051 25.924051 0 1 0 0 51.848102zM311.088608 592.364557h352.567088a25.924051 25.924051 0 0 0 0-51.848101H311.088608a25.924051 25.924051 0 0 0 0 51.848101z" fill="#444444" ></path><path d="M866.381772 184.060759H170.580253A40.96 40.96 0 0 0 129.620253 225.020759v509.926076a40.96 40.96 0 0 0 40.96 40.96h381.861266l138.17519 107.32557a40.96 40.96 0 0 0 43.033924 4.407089 40.96 40.96 0 0 0 23.072405-37.071393v-74.661266h110.177215A40.96 40.96 0 0 0 907.341772 734.946835V225.020759a40.96 40.96 0 0 0-40.96-40.96zM855.493671 724.058734h-110.177215a41.219241 41.219241 0 0 0-40.96 41.219241V829.56962l-123.398481-95.918987a41.996962 41.996962 0 0 0-25.924051-8.554937H181.468354V235.908861h674.025317z" fill="#444444" ></path></symbol><symbol id="iconshibai" viewBox="0 0 1024 1024"><path d="M512 16.516129C238.344258 16.516129 16.516129 238.344258 16.516129 512c0 273.655742 221.828129 495.483871 495.483871 495.483871 273.655742 0 495.483871-221.828129 495.483871-495.483871A495.483871 495.483871 0 0 0 512 16.516129z m0 929.032258C272.565677 945.548387 78.451613 751.434323 78.451613 512S272.565677 78.451613 512 78.451613 945.548387 272.565677 945.548387 512 751.434323 945.548387 512 945.548387z" fill="#F83431" ></path><path d="M687.269161 336.714323a30.967742 30.967742 0 0 0-43.965935 0L512 468.347871l-131.303226-131.633548a31.099871 31.099871 0 1 0-43.982451 43.982451l131.633548 131.303226-131.633548 131.303226a31.099871 31.099871 0 0 0 43.982451 43.965935L512 555.668645l131.303226 131.600516a31.099871 31.099871 0 0 0 43.965935-43.965935L555.668645 512l131.600516-131.303226a30.967742 30.967742 0 0 0 0-43.982451z" fill="#F83431" ></path></symbol><symbol id="iconchenggong" viewBox="0 0 1024 1024"><path d="M512 1024C227.84 1024 0 796.16 0 512S227.84 0 512 0s512 227.84 512 512-227.84 512-512 512z m0-69.632c244.224 0 442.368-197.632 442.368-442.368S756.224 69.632 512 69.632 69.632 267.776 69.632 512s198.144 442.368 442.368 442.368z" fill="#49C958" ></path><path d="M733.184 302.592c-141.824 86.016-244.224 195.584-290.816 251.392L330.24 465.408l-51.2 39.424 195.584 197.632c32.768-86.016 139.776-253.44 269.824-372.224l-11.264-27.648z" fill="#49C958" ></path></symbol><symbol id="iconqiyeweixin" viewBox="0 0 1024 1024"><path d="M661.12 716.92c-2.59 2.38-3.92 5.69-3.62 9.05 0.3 3.36 2.19 6.43 5.16 8.39 26.84 23.23 44.12 54.36 48.88 88.06 6.86 23.25 31.38 38.13 57.19 34.71 25.81-3.42 44.82-24.09 44.31-48.18-0.5-24.09-20.35-44.06-46.28-46.57-33.97-5.87-64.93-21.83-88.18-45.46-4.81-4.46-12.63-4.46-17.46 0zM870.89 641.29c-8.37 7.72-13.62 17.86-14.85 28.73-6.28 31.42-23.5 60.09-49.04 81.62-3.43 3.04-4.68 7.62-3.21 11.79 1.47 4.17 5.39 7.2 10.09 7.8 4.71 0.59 9.36-1.35 11.99-5.01 25.13-24.81 58.82-40.78 95.29-45.17 20.97-5.24 36.15-22.04 37.98-42.04 1.84-20-10.05-38.93-29.76-47.36-19.71-8.44-43.02-4.58-58.34 9.64h-0.15zM725.32 506.64c-14.05 13.01-18.76 32.32-12.13 49.65 6.64 17.33 23.44 29.6 43.22 31.55 34 5.8 65.02 21.71 88.33 45.32 3.28 3.17 8.24 4.32 12.76 2.97 4.52-1.36 7.8-4.98 8.44-9.33s-1.46-8.65-5.42-11.08c-26.84-23.23-44.12-54.36-48.88-88.06-4.91-16.37-18.86-29.09-36.63-33.42-17.77-4.33-36.69 0.39-49.69 12.4zM699.95 581.26l-0.93 0.86c-25.22 25.67-59.48 42.24-96.68 46.74-17.86 4.35-31.83 17.23-36.56 33.73s0.48 34.08 13.67 46.04c14.08 12.98 34.98 17.34 53.73 11.21 18.75-6.13 32.03-21.67 34.14-39.94 6.33-31.44 23.6-60.1 49.19-81.62 5.08-4.22 5.5-11.46 0.93-16.15-4.58-4.71-12.41-5.1-17.49-0.87z" fill="#999999" ></path><path d="M387.78 169.13c-92.66 9.43-176.66 46.03-236.99 103.21-23.98 22.59-43.47 48.03-57.86 75.19-45.69 84.98-38.05 186.16 19.96 264.46 16.4 22.87 43.31 51.46 67.91 71.76l-11.14 80.91-1.24 3.43c-0.31 1-0.31 2.14-0.46 3.14l-0.31 2.57 0.31 2.57c0.83 8.91 6.56 16.8 15.17 20.9 8.61 4.09 18.89 3.81 27.22-0.74h0.46l1.7-1.14 26.61-12.29 79.36-36.88c37.71 10.02 76.78 14.98 116.02 14.72 48.52 0.1 96.68-7.64 142.32-22.87-22.9-6.99-37.49-27.71-35.12-49.89-47.2 14.02-97.08 18.6-146.34 13.44l-7.89-1a379.84 379.84 0 0 1-52.6-10.15c-9.39-2.7-19.57-1.72-28.15 2.72l-2.17 1-65.28 35.45-2.78 1.57c-1.55 0.86-2.32 1.14-3.09 1.14-2.42-0.15-4.27-2.05-4.18-4.29l2.48-9.29 2.94-10.15 4.64-16.73 5.41-18.58c3.61-10.38-0.38-21.72-9.9-28.16-25.66-17.6-47.93-39.05-65.9-63.47-45.86-61.64-52.02-141.39-16.09-208.42 11.76-21.73 27.23-41.88 46.41-60.04 49.5-47.17 119.11-77.19 196.15-84.91a395.9 395.9 0 0 1 80.13 0c76.57 8.15 145.88 38.6 195.07 85.48 19.03 18.15 34.5 38.6 45.94 60.33 15.31 28.88 23.05 59.47 23.05 90.77 0 3.29-0.31 6.58-0.46 9.72 20.31-11.56 46.55-8.72 63.42 6.86l2.32 2.57c3.97-46.69-5.76-93.51-28.15-135.52-14.66-27.7-33.98-53.08-57.24-75.19-63.32-58.82-146.74-95.55-236.06-103.93a471.348 471.348 0 0 0-95.6-0.27z" fill="#999999" ></path></symbol><symbol id="iconnan" viewBox="0 0 1024 1024"><path d="M963.145004 85.826737c-0.2415-1.446955-0.347924-2.932796-0.862647-4.349051l-0.037862-0.030699c-0.862647-2.347464-2.273786-4.279467-3.620457-6.348592-0.032746-0.068562-0.068562-0.105401-0.099261-0.173962-0.900509-1.378393-1.316995-2.894933-2.416026-4.175089-0.242524-0.273223-0.590448-0.378623-0.832971-0.651846-1.721201-1.863441-3.862981-3.105734-6.000668-4.553713 0-0.036839-0.030699-0.036839-0.068562-0.074701-1.620917-1.099031-3.067872-2.446725-4.826935-3.241834l-0.036839 0c-4.347005-1.930979-9.106402-3.137457-14.144138-3.137457L688.717817 59.089793c-19.075451 0-34.499745 15.454994-34.499745 34.499745 0 19.038612 15.424294 34.493605 34.499745 34.493605l150.19986 0L674.29534 273.253454c-63.404052-47.606251-141.851729-76.174913-227.057319-76.174913-209.229279 0-379.474684 170.244382-379.474684 379.474684S238.007719 956.026886 447.238021 956.026886c209.223139 0 379.467521-170.244382 379.467521-379.474684 0-99.076506-38.46301-189.116195-100.903108-256.761851l169.897482-149.788491 0 130.569778c0 19.044752 15.424294 34.499745 34.499745 34.499745s34.499745-15.454994 34.499745-34.499745L964.699406 93.591585C964.699406 90.827635 963.766151 88.416725 963.145004 85.826737L963.145004 85.826737zM757.712191 576.553225c0 171.213453-139.266857 310.474171-310.474171 310.474171-171.177638 0-310.481334-139.260717-310.481334-310.474171 0-171.175591 139.303696-310.474171 310.481334-310.474171C618.444311 266.079054 757.712191 405.376611 757.712191 576.553225L757.712191 576.553225zM757.712191 576.553225" ></path></symbol><symbol id="iconxingbienv" viewBox="0 0 1024 1024"><path d="M581.423387 59.423511c-210.595616 0-381.927653 171.34243-381.927653 381.934049 0 92.077372 32.749196 176.629845 87.205675 242.661875l-39.577566 39.580964-71.019249-71.014652c-6.948289-6.963279-16.201415-10.791683-26.042343-10.791683-9.830735 0-19.079464 3.828404-26.042743 10.791683-14.36626 14.358265-14.36626 37.717428 0 52.091482l71.012653 71.000662-92.580031 92.583029c-14.36626 14.359264-14.36626 37.732417 0 52.091482 6.952286 6.964278 16.205013 10.791683 26.042343 10.791683l0 0c9.833733 0 19.082462-3.827405 26.042343-10.776693l92.591023-92.599018 71.008656 71.016651c6.948289 6.948289 16.201016 10.776693 26.042343 10.776693l0.003997 0c9.833333 0 19.083062-3.813415 26.045341-10.776693 14.36626-14.373255 14.36626-37.732417 0-52.092681l-71.011654-71.014652 39.577167-39.568173c66.021038 54.446885 150.573511 87.195681 242.629897 87.195681 210.60461 0 381.933049-171.343429 381.933049-381.949039C963.356436 230.765341 792.027997 59.423511 581.423387 59.423511zM581.423387 749.61676c-169.963365 0-308.245809-138.28884-308.245809-308.2592S411.456025 133.09736 581.423387 133.09736c169.97036 0 308.2592 138.289839 308.2592 308.2602S751.393547 749.61676 581.423387 749.61676z" ></path></symbol><symbol id="iconrenwuzhipai" viewBox="0 0 1024 1024"><path d="M1000.701907 739.261035c-14.090463-13.532425-32.505722-20.507902-51.897547-20.228882l-105.887739 1.116076c1.395095-5.719891 2.092643-11.858311 2.092643-17.857221 0-21.902997-9.486649-42.550409-25.948774-56.780381-14.92752-12.974387-34.040327-19.112807-53.711171-17.578202-19.810354 1.674114-37.667575 11.021253-50.362943 26.367303l-51.618529 62.360762c-17.159673 10.742234-29.855041 21.902997-38.92316 31.529156l-49.944415 0.418528c-14.648501 0.13951-26.367302 11.858311-26.367302 26.367303v175.363488c0 14.508992 11.579292 26.367302 26.088283 26.367302l65.290464 0.697548 120.954768 39.20218 3.627248 0.976566c11.718801 3.06921 22.740054 5.99891 34.737875 6.417439h1.953133c23.856131 0 44.503542-11.439782 57.059401-31.668665 1.674114-2.650681 3.487738-5.719891 5.161853-9.06812 22.461035-9.06812 38.225613-30.552589 43.387465-60.12861 1.116076-5.719891 1.534605-11.021253 1.534605-15.904087 9.06812-10.323706 14.788011-23.437602 16.322616-38.644142l28.599455-0.13951c39.760218-1.534605 70.870845-34.319346 70.870845-74.637602v-2.79019c-0.418529-19.810354-8.649591-38.225613-23.019074-51.758039z m-46.317166 58.454496c0 10.323706-7.673025 18.833787-17.578201 19.112807l-52.595096 0.139509c-6.975477 0-13.532425 3.208719-17.857221 8.510082-4.324796 5.301362-6.13842 12.416349-4.603814 19.252316 0.279019 1.813624 0.558038 3.766757 0.697547 5.719891 0.13951 1.395095 0.13951 2.790191 0.13951 4.045777 0 6.696458-1.813624 11.300272-5.301362 13.671934-8.091553 5.301362-11.99782 14.788011-9.905178 24.27466 0.279019 1.116076 0.418529 2.511172 0.418529 3.906267 0 1.953134-0.13951 4.045777-0.558038 6.556948-1.395095 7.812534-4.603815 17.438692-12.276839 18.415259-8.92861 1.116076-16.462125 7.394005-19.112807 16.043597-0.976567 3.348229-3.06921 6.975477-4.882834 9.905177-3.06921 5.022343-7.254496 5.580381-10.881744 5.580381-5.022343-0.13951-11.718801-1.813624-19.810354-4.045776l-109.794005-35.435423c-2.232153-0.697548-4.603815-1.116076-6.975477-1.116076l-40.178747-0.418529h-1.534605v-107.422343l34.598366-0.139509c6.975477-0.13951 13.392916-3.06921 17.717711-8.510082 5.859401-7.254496 16.462125-17.857221 33.06376-27.901908 2.232153-1.395095 4.185286-2.9297 5.859401-5.022343l47.572752-57.617439c3.06921-3.766757 7.533515-6.13842 12.276839-6.556948 4.882834-0.558038 9.347139 0.976567 12.974387 4.185286 4.185286 3.627248 6.696458 8.92861 6.696457 14.788011 0 4.603815-1.534605 8.92861-4.603814 12.834878l-9.06812 11.85831c-5.301362 6.975477-6.277929 16.183106-2.511172 23.995641s11.718801 12.834877 20.368393 13.113896c5.440872 0.13951 11.858311 1.255586 19.949863 0.13951l119.001635-1.255586c4.743324 0 9.06812 1.534605 12.695368 4.882834 3.627248 3.348229 5.719891 8.231063 5.99891 13.532425l17.857221 0.558038h-17.857221z" ></path><path d="M784.322616 530.275749c-0.697548-0.837057-1.255586-1.674114-1.953134-2.511171-37.667575-40.039237-73.661035-67.383106-98.772752-84.124251 36.970027-46.735695 59.152044-105.748229 59.152044-169.783106C742.748774 122.907902 620.119891 0 469.170572 0 318.221253 0 195.313351 122.907902 195.313351 273.857221c0 72.40545 28.320436 138.39346 74.358584 187.361308C203.823433 506.419619-5.022343 671.59891 0.13951 938.759673c0.976567 47.014714 40.736785 85.100817 88.588555 85.100817h289.621799c19.670845-0.697548 35.435422-16.880654 35.435422-36.691008 0-19.252316-14.788011-35.016894-33.761308-36.551498-0.279019 0-0.697548 0-0.976567-0.13951H138.253951c-20.228883 0-55.803815-13.392916-55.803815-56.222343 0-189.174932 192.80218-344.449046 246.513352-385.46485 41.015804 24.553678 89.007084 38.644142 140.207084 38.644141 59.849591 0 115.234877-19.391826 160.435968-52.037057 22.600545 15.625068 59.431063 43.805995 97.517166 83.566213 6.975477 8.510082 17.438692 13.950954 29.297002 13.950953 20.786921 0 37.667575-16.880654 37.667575-37.667575 0-9.486649-3.766757-18.415259-9.765667-24.972207zM267.858311 273.857221C267.858311 162.807629 358.120981 72.544959 469.170572 72.544959c110.910082 0 201.172752 90.26267 201.172752 201.172752 0 110.910082-90.26267 201.172752-201.172752 201.172752-111.049591 0.13951-201.312262-90.123161-201.312261-201.033242z" ></path></symbol><symbol id="iconwanchengrenwu" viewBox="0 0 1024 1024"><path d="M293.376 409.088c15.36 15.36 39.424 15.36 54.784 0l136.704-136.704c15.36-15.36 15.36-39.424 0-54.784-15.36-15.36-39.424-15.36-54.784 0L320.512 326.656l-51.2-51.2c-15.36-15.36-39.424-15.36-54.784 0-15.36 15.36-15.36 39.424 0 54.784l78.848 78.848z" ></path><path d="M939.008 6.144H84.992C63.488 6.144 46.08 23.552 46.08 45.056v933.888c0 21.504 17.408 38.912 38.912 38.912h854.528c21.504 0 38.912-17.408 38.912-38.912V45.056c-0.512-21.504-17.92-38.912-39.424-38.912z m-38.4 934.4H123.392V83.456h776.704v857.088z" ></path><path d="M344.576 567.808c-74.752 0-135.68 60.928-135.68 135.68s60.928 135.68 135.68 135.68 135.68-60.928 135.68-135.68c0-75.264-60.416-135.68-135.68-135.68z m0 193.536c-32.256 0-58.368-26.112-58.368-58.368 0-32.256 26.112-58.368 58.368-58.368s58.368 26.112 58.368 58.368c0 32.256-26.112 58.368-58.368 58.368z m273.92-400.896h183.808c21.504 0 38.912-17.408 38.912-38.912s-17.408-38.912-38.912-38.912h-183.808c-21.504 0-38.912 17.408-38.912 38.912s17.408 38.912 38.912 38.912z m0 397.312h183.808c21.504 0 38.912-17.408 38.912-38.912s-17.408-38.912-38.912-38.912h-183.808c-21.504 0-38.912 17.408-38.912 38.912s17.408 38.912 38.912 38.912z" ></path></symbol><symbol id="iconziyuan1" viewBox="0 0 1024 1024"><path d="M870.122529 0h-715.698925A138.735484 138.735484 0 0 0 18.440809 137.634409v562.649462a137.083871 137.083871 0 0 0 138.184946 136.533333h41.84086l304.99785 187.182796v-187.182796h366.658064a135.432258 135.432258 0 0 0 135.432258-136.533333V137.634409A137.083871 137.083871 0 0 0 870.122529 0z m-104.051613 545.582796c-51.2 67.716129-135.982796 101.849462-253.247312 101.849462s-203.148387-34.683871-252.146236-101.849462A296.189247 296.189247 0 0 1 217.184895 330.322581a59.458065 59.458065 0 0 1-18.167742-43.492473 61.660215 61.660215 0 1 1 123.32043 0 63.862366 63.862366 0 0 1-37.987097 55.053763 229.023656 229.023656 0 0 0 31.380645 163.509677c35.784946 48.447312 102.4 73.221505 197.092473 73.221506a235.07957 235.07957 0 0 0 198.193549-73.772043 235.07957 235.07957 0 0 0 35.234408-159.105377 61.660215 61.660215 0 1 1 84.232258-55.053763 60.55914 60.55914 0 0 1-17.066666 42.391398 306.649462 306.649462 0 0 1-47.346237 212.507527z" ></path></symbol><symbol id="icondingwei" viewBox="0 0 1234 1024"><path d="M314.368 673.28c-1.024-1.536 1.024 1.024 0 0z" ></path><path d="M617.472 0.512c-223.744 0-404.48 180.736-404.48 402.944 0 102.4 39.936 198.144 103.424 269.312l262.656 330.752c20.48 26.112 54.272 26.112 75.264 0l261.632-330.752c66.56-71.68 107.008-163.84 107.008-269.312C1021.952 181.248 840.704 0.512 617.472 0.512z m0 605.184c-112.128 0-202.752-90.624-202.752-202.24s90.624-202.24 202.752-202.24c112.128 0 202.752 90.624 202.752 202.24-0.512 112.128-90.624 202.24-202.752 202.24z" ></path></symbol><symbol id="icongengduo2" viewBox="0 0 1024 1024"><path d="M512 1024C230.4 1024 0 793.6 0 512S230.4 0 512 0s512 230.4 512 512-230.4 512-512 512z m0-960c-246.272 0-448 201.728-448 448s201.728 448 448 448 448-201.728 448-448-201.728-448-448-448z" fill="#222222" ></path><path d="M189.44 512c0 40.448 32.768 73.216 73.216 73.216s73.216-32.768 73.216-73.216-32.768-73.216-73.216-73.216S189.44 471.552 189.44 512z m249.856 0c0 40.448 32.768 73.216 73.216 73.216s73.216-32.768 73.216-73.216-32.768-73.216-73.216-73.216-73.216 32.768-73.216 73.216z m249.344 0c0 40.448 32.768 73.216 73.216 73.216s73.216-32.768 73.216-73.216-32.768-73.216-73.216-73.216-73.216 32.768-73.216 73.216z" fill="#333333" ></path></symbol><symbol id="iconqiyexinxi" viewBox="0 0 1024 1024"><path d="M445.952 281.6H380.416c-18.432 0-32.768 14.848-32.768 32.768 0 18.432 14.848 32.768 32.768 32.768h66.048c18.432 0 32.768-14.848 32.768-32.768 0-17.92-14.848-32.768-33.28-32.768z m0 131.584H380.416c-18.432 0-32.768 14.848-32.768 32.768 0 18.432 14.848 32.768 32.768 32.768h66.048c18.432 0 32.768-14.848 32.768-32.768 0-17.92-14.848-32.768-33.28-32.768z m0 131.584H380.416c-18.432 0-32.768 14.848-32.768 32.768 0 18.432 14.848 32.768 32.768 32.768h66.048c18.432 0 32.768-14.848 32.768-32.768 0-17.92-14.848-32.768-33.28-32.768z m0 131.584H380.416c-18.432 0-32.768 14.848-32.768 32.768 0 18.432 14.848 32.768 32.768 32.768h66.048c18.432 0 32.768-14.848 32.768-32.768 0-17.92-14.848-32.768-33.28-32.768zM643.584 281.6h-66.048c-18.432 0-32.768 14.848-32.768 32.768 0 18.432 14.848 32.768 32.768 32.768h66.048c18.432 0 32.768-14.848 32.768-32.768 0-17.92-14.336-32.768-32.768-32.768z m0 131.584h-66.048c-18.432 0-32.768 14.848-32.768 32.768 0 18.432 14.848 32.768 32.768 32.768h66.048c18.432 0 32.768-14.848 32.768-32.768 0-17.92-14.336-32.768-32.768-32.768z m0 131.584h-66.048c-18.432 0-32.768 14.848-32.768 32.768 0 18.432 14.848 32.768 32.768 32.768h66.048c18.432 0 32.768-14.848 32.768-32.768 0-17.92-14.336-32.768-32.768-32.768z m0 131.584h-66.048c-18.432 0-32.768 14.848-32.768 32.768 0 18.432 14.848 32.768 32.768 32.768h66.048c18.432 0 32.768-14.848 32.768-32.768 0-17.92-14.336-32.768-32.768-32.768z" ></path><path d="M972.8 873.984h-66.048V281.6c0-36.352-29.696-66.048-66.048-66.048h-131.584V150.016c0-36.352-29.696-66.048-66.048-66.048h-460.8c-36.352 0-66.048 29.696-66.048 66.048v723.968H51.2c-18.432 0-32.768 14.848-32.768 32.768s14.848 32.768 32.768 32.768h921.6c18.432 0 32.768-14.848 32.768-32.768 0-17.92-14.336-32.768-32.768-32.768z m-790.016 0V150.016h460.8v723.968h-460.8z m526.848 0V281.6h131.584v592.384h-131.584z" ></path></symbol><symbol id="iconjia" viewBox="0 0 1024 1024"><path d="M811.52 28.16h-599.04c-122.88 0-184.32 61.44-184.32 184.32v599.04c0 122.88 61.44 184.32 184.32 184.32h599.04c122.88 0 184.32-61.44 184.32-184.32v-599.04c0-122.88-61.44-184.32-184.32-184.32z m138.24 783.36c0 92.16-46.08 138.24-138.24 138.24h-599.04c-92.16 0-138.24-46.08-138.24-138.24v-599.04c0-92.16 46.08-138.24 138.24-138.24h599.04c92.16 0 138.24 46.08 138.24 138.24v599.04z" ></path><path d="M488.96 488.96v-286.72h46.08v286.72h286.72v46.08h-286.72v286.72h-46.08v-286.72h-286.72v-46.08h286.72z" ></path></symbol><symbol id="icondaishenhe_orange" viewBox="0 0 1024 1024"><path d="M288.7 536.2c-15.4 0-27.9 10.3-27.9 23s12.5 23 27.9 23h111.6c15.4 0 27.9-10.3 27.9-23s-12.5-23-27.9-23H288.7zM638 408c0-12.7-12.5-23-27.9-23H288.7c-15.4 0-27.9 10.3-27.9 23s12.5 23 27.9 23H610c15.5 0 28-10.2 28-23zM610 239.4H288.7c-15.4 0-27.9 10.3-27.9 23s12.5 23 27.9 23H610c15.4 0 27.9-10.3 27.9-23 0.1-12.7-12.4-23-27.9-23zM740 513.1c-121.5 0-220 98.5-220 220s98.5 220 220 220 220-98.5 220-220-98.5-220-220-220z m0 394c-95.9 0-174-78.1-174-174s78.1-174 174-174 174 78.1 174 174-78.1 174-174 174z" fill="#ff7200" ></path><path d="M488.4 907.1h-348c-16.6 0-30-13.4-30-30v-738c0-16.6 13.4-30 30-30h618c16.6 0 30 13.4 30 30v294h46v-305c0-35.9-29.1-65-65-65h-640c-35.9 0-65 29.1-65 65v760c0 35.9 29.1 65 65 65h359v-46z" fill="#ff7200" ></path><path d="M727.7 777.8c-12.7 0-23-10.3-23-23v-94c0-12.7 10.3-23 23-23 12.6 0 23 10.3 23 23v94c0 12.6-10.4 23-23 23z" fill="#ff7200" ></path><path d="M844.7 755.2c0 12.7-10.3 23-23 23h-94c-12.7 0-23-10.3-23-23s10.3-23 23-23h94c12.6 0 23 10.4 23 23z" fill="#ff7200" ></path></symbol><symbol id="iconrenwu1" viewBox="0 0 1024 1024"><path d="M704 153.6h-384l-17.28 76.8h419.0208L704 153.6zM308.736 102.4h406.528c13.568 0 25.4976 10.496 28.9792 25.5744L768 230.4H256l23.7568-102.4256c3.4816-15.104 15.3856-25.5744 28.9792-25.5744z" fill="#606A80" ></path><path d="M281.6 486.4h256a25.6 25.6 0 0 1 0 51.2H281.6a25.6 25.6 0 0 1 0-51.2z" fill="#606A80" ></path><path d="M256 384m25.6 0l460.8 0q25.6 0 25.6 25.6l0 0q0 25.6-25.6 25.6l-460.8 0q-25.6 0-25.6-25.6l0 0q0-25.6 25.6-25.6Z" fill="#606A80" ></path><path d="M478.8992 681.344a25.6 25.6 0 0 0-36.1984 36.1984l118.1952 118.1952 203.264-203.2384a25.6 25.6 0 0 0-36.224-36.1984l-167.04 167.04-81.9968-81.9968z" fill="#606A80" ></path><path d="M153.6 256v614.4h716.8V256H153.6z m154.4448-51.2l-10.9568 51.2 430.976 0.0512L716.6976 204.8H870.4a51.2 51.2 0 0 1 51.2 51.2v614.4a51.2 51.2 0 0 1-51.2 51.2H153.6a51.2 51.2 0 0 1-51.2-51.2V256a51.2 51.2 0 0 1 51.2-51.2h154.4448z" fill="#606A80" ></path></symbol><symbol id="iconshenhe" viewBox="0 0 1024 1024"><path d="M436.736 995.328H177.664c-49.152 0-89.6-40.448-89.6-89.6V138.24c0-49.152 40.448-89.6 89.6-89.6h638.464c49.152 0 89.6 40.448 89.6 89.6v316.928c0 15.36-12.8 28.16-28.16 28.16s-28.16-12.8-28.16-28.16V138.24c0-18.432-14.848-33.28-33.28-33.28H177.664c-18.432 0-33.28 14.848-33.28 33.28v767.488c0 18.432 14.848 33.28 33.28 33.28h259.584c15.36 0 28.16 12.8 28.16 28.16s-12.8 28.16-28.672 28.16z" fill="#707070" ></path><path d="M587.776 284.16H249.344c-15.36 0-28.16-12.8-28.16-28.16s12.8-28.16 28.16-28.16h338.432c15.36 0 28.16 12.8 28.16 28.16s-12.8 28.16-28.16 28.16z m108.032 146.432H249.344c-15.36 0-28.16-12.8-28.16-28.16s12.8-28.16 28.16-28.16h446.464c15.36 0 28.16 12.8 28.16 28.16s-12.8 28.16-28.16 28.16z m-108.032 145.92H249.344c-15.36 0-28.16-12.8-28.16-28.16s12.8-28.16 28.16-28.16h338.432c15.36 0 28.16 12.8 28.16 28.16s-12.8 28.16-28.16 28.16z m326.656 236.544h-45.056c-11.776-23.552-24.064-53.248-24.064-67.584 0-3.584 0.512-5.12 6.656-13.312 10.752-14.336 27.136-36.352 27.136-91.136 0-58.368-47.616-105.984-105.984-105.984s-105.984 47.616-105.984 105.984c0 54.784 16.384 76.8 27.136 91.136 5.632 7.68 6.656 9.216 6.656 12.8 0 14.336-12.288 44.032-24.064 67.584h-59.392c-35.328 0-64 26.624-64 58.88v61.952c0 32.768 28.672 58.88 64 58.88h296.96c35.328 0 64-26.624 64-58.88v-61.952c0-31.744-28.672-58.368-64-58.368zM750.08 745.472c0-20.48-9.216-32.256-16.384-42.496-8.704-11.776-17.408-23.04-17.408-61.44 0-31.232 25.088-56.32 56.32-56.32s56.32 25.088 56.32 56.32c0 37.376-8.704 49.664-16.896 61.44l-0.512 0.512c-7.168 9.728-16.384 22.016-16.384 41.984 0 19.968 8.704 45.568 18.944 67.584h-82.944c10.24-22.528 18.944-48.128 18.944-67.584zM602.624 871.936c0-4.608 6.144-9.728 14.848-9.728h296.96c8.704 0 14.848 5.12 14.848 9.728v61.952c0 4.608-6.144 9.728-14.848 9.728h-296.96c-8.704 0-14.848-5.12-14.848-9.728v-61.952z" fill="#707070" ></path></symbol><symbol id="icongengduo1" viewBox="0 0 1024 1024"><path d="M234.666667 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z" fill="#292929" ></path><path d="M512 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z" fill="#292929" ></path><path d="M789.333333 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z" fill="#292929" ></path></symbol><symbol id="iconjian" viewBox="0 0 1024 1024"><path d="M707.047619 536.380952h-390.095238c-14.628571 0-24.380952-9.752381-24.380952-24.380952s9.752381-24.380952 24.380952-24.380952h390.095238c14.628571 0 24.380952 9.752381 24.380952 24.380952s-9.752381 24.380952-24.380952 24.380952z" fill="#003930" ></path><path d="M853.333333 1024h-682.666666C78.019048 1024 0 945.980952 0 853.333333v-682.666666C0 78.019048 78.019048 0 170.666667 0h682.666666C945.980952 0 1024 78.019048 1024 170.666667v682.666666c0 97.52381-73.142857 170.666667-170.666667 170.666667zM170.666667 48.761905C102.4 48.761905 48.761905 102.4 48.761905 170.666667v682.666666C48.761905 921.6 102.4 975.238095 170.666667 975.238095h682.666666c68.266667 0 121.904762-53.638095 121.904762-121.904762v-682.666666C975.238095 102.4 921.6 48.761905 853.333333 48.761905h-682.666666z" fill="#003930" ></path></symbol><symbol id="iconguanliyuanliebiao" viewBox="0 0 1024 1024"><path d="M937.472 958.464c2.56-3.072 4.608-6.144 6.656-9.728-2.048 3.072-4.096 6.656-6.656 9.728zM839.68 736.768h-129.536c-13.312 0-24.064-10.752-24.064-24.064s10.752-24.064 24.064-24.064H839.68c13.312 0 24.064 10.752 24.064 24.064s-10.752 24.064-24.064 24.064zM839.68 837.12h-231.424c-13.312 0-24.064-10.752-24.064-24.064s10.752-24.064 24.064-24.064H839.68c13.312 0 24.064 10.752 24.064 24.064s-10.752 24.064-24.064 24.064zM839.68 937.472h-129.536c-13.312 0-24.064-10.752-24.064-24.064s10.752-24.064 24.064-24.064H839.68c13.312 0 24.064 10.752 24.064 24.064s-10.752 24.064-24.064 24.064zM514.56 23.04C377.344 23.04 266.24 132.608 266.24 267.264S377.344 512 514.56 512 762.88 402.432 762.88 267.264 651.776 23.04 514.56 23.04z m0 442.88c-111.104 0-201.216-88.576-201.216-198.144s90.112-198.144 201.216-198.144 201.216 88.576 201.216 198.144S625.664 465.92 514.56 465.92z" fill="#303133" ></path><path d="M758.272 906.752c2.048-2.048 3.584-4.608 4.608-7.168-1.536 2.048-3.072 4.608-4.608 7.168zM514.56 825.856c0-109.568 75.776-201.728 178.176-225.792-20.992-4.096-41.984-6.656-64-6.656H421.888c-175.104 0-317.44 140.288-320 315.392v20.48c0 71.168 143.36 71.168 320 71.168H593.92c-48.64-42.496-79.36-104.96-79.36-174.592zM506.88 958.464l-126.464-5.12c-128.512 0-229.376-11.264-229.376-62.976V875.52c1.536-126.976 120.832-238.592 247.296-238.592l97.28-9.728h7.168 0c20.48-0.512 64-1.536 77.312 1.024-74.24 17.92-129.536 107.52-129.536 187.392 0 50.176 20.992 112.128 56.32 142.848z" fill="#303133" ></path></symbol><symbol id="iconbumen" viewBox="0 0 1024 1024"><path d="M384 249.856V134.144c0-38.912-31.232-70.144-70.144-70.144H134.144c-38.912 0-70.144 31.232-70.144 70.144v116.224c0 38.912 31.232 70.144 70.144 70.144h180.224c38.4-0.512 69.632-31.744 69.632-70.656zM889.856 704h-180.224c-38.912 0-70.144 31.232-70.144 70.144v116.224c0 38.912 31.232 70.144 70.144 70.144h180.224c38.912 0 70.144-31.232 70.144-70.144v-116.224c0-38.912-31.232-70.144-70.144-70.144zM889.856 384h-180.224c-38.912 0-70.144 31.232-70.144 70.144v116.224c0 38.912 31.232 70.144 70.144 70.144h180.224c38.912 0 70.144-31.232 70.144-70.144V454.144c0-38.912-31.232-70.144-70.144-70.144zM536.064 503.808H264.192V423.936c0-22.016-17.92-39.936-39.936-39.936S184.32 401.92 184.32 423.936v432.128c0 22.016 17.92 39.936 39.936 39.936h311.808c22.016 0 39.936-17.92 39.936-39.936s-17.92-39.936-39.936-39.936H264.192v-231.936h271.872c22.016 0 39.936-17.92 39.936-39.936s-17.92-40.448-39.936-40.448z" fill="#999999" ></path></symbol><symbol id="iconxiafa" viewBox="0 0 1024 1024"><path d="M482.742857 958.171429H124.342857c-65.828571 0-124.342857-51.2-124.342857-117.028572V117.028571C0 51.2 51.2 0 124.342857 0h592.457143c65.828571 0 124.342857 51.2 124.342857 117.028571v226.742858c0 21.942857-14.628571 36.571429-36.571428 36.571428s-36.571429-14.628571-36.571429-36.571428V117.028571c0-29.257143-21.942857-51.2-51.2-51.2H124.342857c-29.257143 0-51.2 21.942857-51.2 51.2v716.8c0 29.257143 21.942857 51.2 51.2 51.2h431.542857c14.628571 0 29.257143 14.628571 29.257143 36.571429s-14.628571 36.571429-36.571428 36.571429h-65.828572z" fill="#02B980" ></path><path d="M768 541.257143c0-21.942857 14.628571-36.571429 36.571429-36.571429s36.571429 14.628571 36.571428 36.571429v270.628571l73.142857-65.828571c14.628571-14.628571 36.571429-14.628571 51.2 0 14.628571 14.628571 14.628571 36.571429 0 43.885714l-153.6 146.285714-51.2-51.2L658.285714 789.942857c-7.314286-14.628571-7.314286-29.257143 0-43.885714 0-14.628571 21.942857-14.628571 36.571429 0l65.828571 65.828571 7.314286 7.314286V541.257143zM256 358.4h343.771429c21.942857 0 36.571429-14.628571 36.571428-36.571429S614.4 292.571429 592.457143 292.571429H256c-21.942857 0-36.571429 14.628571-36.571429 36.571428s14.628571 29.257143 36.571429 29.257143zM256 577.828571h343.771429c21.942857 0 36.571429-14.628571 36.571428-36.571428S614.4 512 592.457143 512H256c-21.942857 0-36.571429 14.628571-36.571429 36.571429s14.628571 29.257143 36.571429 29.257142z" fill="#02B980" ></path></symbol><symbol id="icongengduo" viewBox="0 0 1024 1024"><path d="M512 260.20664233m-59.49194128 0a59.49194128 59.49194128 0 1 0 118.98388256 0 59.49194128 59.49194128 0 1 0-118.98388256 0Z" fill="#AFAEAE" ></path><path d="M512 501.10710866m-59.49194128 0a59.49194128 59.49194128 0 1 0 118.98388256 0 59.49194128 59.49194128 0 1 0-118.98388256 0Z" fill="#AFAEAE" ></path><path d="M512 742.00757646m-59.49194128 0a59.49194128 59.49194128 0 1 0 118.98388256 0 59.49194128 59.49194128 0 1 0-118.98388256 0Z" fill="#AFAEAE" ></path></symbol><symbol id="iconxitongguanlitubiao_mobanshezhi" viewBox="0 0 1024 1024"><path d="M870.4 925.4H153.6c-30.3 0-55-24.7-55-55V153.6c0-30.3 24.7-55 55-55h716.8c30.3 0 55 24.7 55 55v716.8c0 30.3-24.7 55-55 55z m-685.8-86h654.8V184.6H184.6v654.8z" ></path><path d="M730.2 448.7H293.8c-6.6 0-12-5.4-12-12v-150c0-6.6 5.4-12 12-12h436.5c6.6 0 12 5.4 12 12v150c-0.1 6.6-5.5 12-12.1 12zM443.8 702.7h-150c-6.6 0-12-5.4-12-12v-150c0-6.6 5.4-12 12-12h150c6.6 0 12 5.4 12 12v150c0 6.6-5.4 12-12 12zM722.7 702.7h-150c-6.6 0-12-5.4-12-12v-150c0-6.6 5.4-12 12-12h150c6.6 0 12 5.4 12 12v150c0 6.6-5.4 12-12 12z" ></path></symbol><symbol id="iconribao" viewBox="0 0 1024 1024"><path d="M783.36 0H212.195556C142.222222 0 85.333333 58.766222 85.333333 131.299556V853.333333c0 72.533333 56.832 131.299556 126.862223 131.299556h571.164444c70.030222 0 126.862222-58.766222 126.862222-131.299556V131.299556C910.222222 58.766222 853.390222 0 783.36 0z m69.973333 865.564444c0 37.262222-28.956444 67.413333-64.625777 67.413334H206.848C171.235556 932.977778 142.222222 902.826667 142.222222 865.564444V124.302222C142.222222 87.04 171.178667 56.888889 206.848 56.888889h581.859556c35.669333 0 64.625778 30.151111 64.625777 67.413333v741.262222z" fill="#333333" ></path><path d="M682.666667 737.735111h-398.222223a28.444444 28.444444 0 1 0 0 56.888889h398.222223a28.444444 28.444444 0 1 0 0-56.888889z m0-170.666667h-398.222223a28.444444 28.444444 0 1 0 0 56.888889h398.222223a28.444444 28.444444 0 1 0 0-56.888889zM584.248889 329.671111c0-11.264-1.422222-23.153778-4.209778-35.555555a93.468444 93.468444 0 0 0-15.815111-34.588445 73.045333 73.045333 0 0 0-37.774222-27.306667A121.287111 121.287111 0 0 0 492.088889 227.555556H369.777778v214.755555h122.311111c33.564444 0 58.311111-13.312 74.410667-40.106667 11.832889-19.740444 17.692444-43.918222 17.692444-72.533333zM426.666667 284.444444h62.805333c17.749333 0 29.696 4.437333 35.612444 13.368889 5.916444 8.931556 8.931556 21.674667 8.931556 38.343111 0 12.060444-1.991111 22.471111-5.973333 31.232-7.224889 15.928889-20.081778 23.779556-38.570667 23.779556H426.666667V284.444444z" fill="#333333" ></path></symbol><symbol id="iconribaoshezhi" viewBox="0 0 1024 1024"><path d="M908.972612 659.413356H714.526802a72.916929 72.916929 0 0 0-72.916929 72.916929v218.751786A72.916929 72.916929 0 0 0 714.526802 1023.999h194.44581a72.916929 72.916929 0 0 0 72.916929-72.916929V902.469119a24.305976 24.305976 0 0 0-48.611952 0v72.917928H690.220826V708.025309h243.056763v72.916928a24.305976 24.305976 0 0 0 48.611952 0V732.329285a72.916929 72.916929 0 0 0-72.916929-72.916929z m-10.694989-267.362739a417.329592 417.329592 0 0 0-29.652971-72.916929 123.22988 123.22988 0 0 0-3.888996-166.979837 116.909886 116.909886 0 0 0-83.854919-34.756966 118.125885 118.125885 0 0 0-80.207921 31.596969 401.043608 401.043608 0 0 0-71.45993-30.38197 118.611884 118.611884 0 0 0-237.222769 0 399.34261 399.34261 0 0 0-71.70193 30.38197 118.125885 118.125885 0 0 0-80.208921-31.596969 116.909886 116.909886 0 0 0-84.583918 35.242966 123.22988 123.22988 0 0 0-2.915997 166.493837 417.329592 417.329592 0 0 0-29.652971 72.916929 121.528881 121.528881 0 0 0 0 241.841764 415.384594 415.384594 0 0 0 29.652971 72.916929 123.22988 123.22988 0 0 0 2.915997 167.709836 116.909886 116.909886 0 0 0 84.583918 35.242966 118.125885 118.125885 0 0 0 80.209921-31.59697 399.34261 399.34261 0 0 0 71.45793 30.381971A121.528881 121.528881 0 0 0 510.602001 1023.999a112.29189 112.29189 0 0 0 33.784967-5.589995 36.215965 36.215965 0 0 0 20.90298-51.04195 34.999966 34.999966 0 0 0-41.07696-18.715981 45.451956 45.451956 0 0 1-14.339986 2.429997 48.610953 48.610953 0 0 1-47.152954-46.179955l-1.944998-51.04195-48.610953-14.826985a328.369679 328.369679 0 0 1-58.819942-24.304977l-44.236957-24.305976-37.186964 34.270967a48.610953 48.610953 0 0 1-32.326968 12.639987 46.179955 46.179955 0 0 1-33.298967-13.854986 48.610953 48.610953 0 0 1-0.729-66.839935l33.541967-37.917963-24.305976-45.207956a341.737666 341.737666 0 0 1-24.304976-60.035941l-14.583986-48.610953-49.339952-2.673997a48.610953 48.610953 0 0 1 0-97.222905l50.069951-2.672997 14.582986-48.611953a341.737666 341.737666 0 0 1 24.304977-60.034941l24.305976-45.207956-34.269967-37.916963a48.610953 48.610953 0 0 1 1.213999-66.597935 46.179955 46.179955 0 0 1 33.299968-13.610987 48.610953 48.610953 0 0 1 32.325968 12.638988l37.187964 34.269966 44.235956-24.304976a329.099679 329.099679 0 0 1 58.819943-24.305976l48.610953-14.825986 2.673997-51.04195a47.152954 47.152954 0 0 1 94.305908 0l1.944998 50.555951 48.610952 14.825985a328.369679 328.369679 0 0 1 58.819943 24.305977l44.235957 24.305976 36.701964-33.784967a48.610953 48.610953 0 0 1 32.325968-12.639988 46.179955 46.179955 0 0 1 33.299968 13.854987 48.610953 48.610953 0 0 1 1.214999 66.354935l-33.541968 37.916963 24.304977 45.207956a341.737666 341.737666 0 0 1 24.305976 60.034941l14.583986 48.611953 49.339952 2.672997a48.610953 48.610953 0 0 1 36.701964 75.590926 33.055968 33.055968 0 0 0 8.019992 48.611953l7.049993 4.374995a31.353969 31.353969 0 0 0 41.804959-8.749991 121.528881 121.528881 0 0 0-89.687912-192.744812z m-367.501641-38.645962a156.771847 156.771847 0 0 1 129.791873 117.396885 159.688844 159.688844 0 0 1 1.701998 70.485931 37.673963 37.673963 0 0 0 17.013984 40.589961 35.485965 35.485965 0 0 0 52.499948-24.304977 235.52177 235.52177 0 0 0 0-97.222905 226.771779 226.771779 0 0 0-445.037565 86.771916 229.445776 229.445776 0 0 0 178.160826 189.340815 224.82778 224.82778 0 0 0 61.73694 4.131996 36.458964 36.458964 0 1 0-5.833995-72.916929 145.833858 145.833858 0 0 1-77.777924-16.284984 158.959845 158.959845 0 0 1-86.041916-118.854884 156.771847 156.771847 0 0 1 173.785831-179.132825z m317.43169 403.231606h-48.610953a36.458964 36.458964 0 0 0 0 72.916929h48.610953a36.458964 36.458964 0 1 0 0-72.916929z m0 97.222905h-48.610953a36.458964 36.458964 0 0 0 0 72.916929h48.610953a36.458964 36.458964 0 1 0 0-72.916929z" ></path></symbol><symbol id="iconrenwu" viewBox="0 0 1024 1024"><path d="M837.632 74.24H178.688c-60.416 0-110.08 49.152-110.08 110.08v658.944c0 60.416 49.152 110.08 110.08 110.08h658.944c60.416 0 110.08-49.152 110.08-110.08V184.32c0-60.928-49.152-110.08-110.08-110.08z m64.512 754.176c0 44.032-35.328 79.36-79.36 79.36H193.536c-44.032 0-79.36-35.328-79.36-79.36V199.168c0-44.032 35.328-79.36 79.36-79.36h629.248c44.032 0 79.36 35.328 79.36 79.36v629.248z" fill="#666666" ></path><path d="M401.92 313.856L316.416 400.384l-38.912-39.424c-11.776-11.776-31.232-11.776-38.912 0-11.776 11.776-11.776 31.232 0 39.424l62.464 62.976c4.096 4.096 11.776 7.68 23.552 7.68s11.776-4.096 23.552-7.68l104.96-105.984c11.776-11.776 11.776-31.232 0-39.424-24.064-11.776-39.936-11.776-51.2-4.096zM759.808 360.96H491.008c-19.456 0-27.136 11.776-27.136 27.648 0 19.456 11.776 27.648 27.136 27.648h268.288c19.456 0 27.136-11.776 27.136-27.648 0.512-15.872-11.264-27.648-26.624-27.648zM331.776 538.112c-50.688 0-89.6 39.424-89.6 90.624s38.912 90.624 89.6 90.624 89.6-39.424 89.6-90.624c0-55.296-43.008-90.624-89.6-90.624z m0 118.272c-19.456 0-31.232-11.776-31.232-31.232s11.776-31.232 31.232-31.232 31.232 11.776 31.232 31.232c0 18.944-15.872 31.232-31.232 31.232zM759.808 596.992H491.008c-19.456 0-27.136 11.776-27.136 27.648 0 15.872 11.776 27.648 27.136 27.648h268.288c19.456 0 27.136-11.776 27.136-27.648 0.512-15.872-11.264-27.648-26.624-27.648z" fill="#666666" ></path></symbol><symbol id="iconzhibiao" viewBox="0 0 1024 1024"><path d="M649.671111 951.182222c14.449778 0 26.168889-11.320889 26.168889-25.258666v-275.968a25.713778 25.713778 0 0 0-26.168889-25.258667 25.713778 25.713778 0 0 0-26.168889 25.258667v275.911111c0 13.880889 11.719111 25.315556 26.168889 25.315555z m-228.636444 0c14.449778 0 26.168889-11.320889 26.168889-25.258666V539.534222a25.713778 25.713778 0 0 0-26.168889-25.258666 25.713778 25.713778 0 0 0-26.168889 25.258666v386.275556a25.713778 25.713778 0 0 0 26.168889 25.372444z m-202.524445-246.101333v220.728889a25.713778 25.713778 0 0 1-26.168889 25.258666 25.713778 25.713778 0 0 1-26.225777-25.258666v-220.728889c0-13.937778 11.719111-25.258667 26.168888-25.258667s26.168889 11.320889 26.168889 25.258667z m722.432-370.915556a26.055111 26.055111 0 0 1-26.339555-25.656889V201.671111l-295.822223 291.84c-0.170667 0.113778-0.284444 0.113778-0.398222 0.284445-0.341333 0.227556-0.967111 0.455111-1.422222 0.910222-0.227556 0.227556-0.512 0.455111-0.568889 0.682666a25.258667 25.258667 0 0 1-35.271111-0.227555l-211.740444-207.644445-265.671112 261.973334a27.704889 27.704889 0 0 1-38.855111 0 27.136 27.136 0 0 1 0-38.513778l281.6-277.504a27.477333 27.477333 0 0 1 10.24-6.257778 24.746667 24.746667 0 0 1 27.306667 5.12l0.284444 0.398222 0.398223 0.284445c0.113778 0.227556 0.341333 0.341333 0.568889 0.455111l0.227555 0.455111 209.806222 205.653333 277.959111-273.749333h-103.765333a25.941333 25.941333 0 0 1-26.168889-25.713778c0-14.222222 11.719111-25.656889 26.168889-25.656889h163.100445a25.998222 25.998222 0 0 1 16.725333 1.649778l0.227555 0.113778c10.638222 3.754667 17.578667 13.084444 17.578667 24.007111v168.277333c0 14.222222-11.719111 25.656889-26.168889 25.656889zM883.655111 951.182222a25.998222 25.998222 0 0 1-26.168889-25.770666V532.821333c0-14.222222 11.719111-25.656889 26.168889-25.656889s26.168889 11.491556 26.168889 25.6v392.760889c0 14.165333-11.719111 25.656889-26.168889 25.656889z" ></path></symbol><symbol id="iconhuawujinengzupeizhi" viewBox="0 0 1024 1024"><path d="M699.5 981.2c-143.8 0-296.6-77.9-408.8-208.5-130.5-151.9-180.9-348.9-128.4-501.9 15-43.6 51-74.8 96.4-83.5 49.9-10 102.8 9.3 138 50.2l72.4 84.2c33.1 38.6 30.1 95.7-6.7 127.3l-0.1 0.1-11 9.4c-11.8 10.1-24 17.1-36.5 24-4.1 2.3-14.8 8.1-17.7 11-3.6 17.6 0.8 45 11.9 73.7 11.9 30.7 30.1 59.4 49.7 78.6 16.7 16.4 39.9 32.6 63.8 44.6s46 18.5 60.8 17.7c3.1-1.1 12-12.1 17.2-18.6 7.6-9.5 17.1-21.4 29.4-32l12-10.3c16.7-14.4 39.1-21.1 61.6-18.4 21.2 2.7 40.7 13.2 54.8 29.7l85.7 99.7c32 37.3 42.9 88.2 28.4 132.9-13.3 41.2-45 70.6-86.9 80.5-27.5 6.3-56.4 9.6-86 9.6zM285.1 227.1c-6.1 0-12.1 0.6-18.1 1.8h-0.1c-30.3 5.8-54.4 26.6-64.3 55.7-23.2 67.7-24.3 146.6-3.2 228.3 21.3 82.6 64.1 162.9 123.7 232.2 104.3 121.3 245.1 193.7 376.6 193.7 26.3 0 51.9-2.9 76.2-8.6 27.1-6.4 47.6-25.5 56.3-52.3 9.9-30.7 2.2-66-20.2-92.1L726.1 686c-7.2-8.5-17.1-13.8-27.8-15.2-10.6-1.3-21 1.8-28.6 8.4l-12.1 10.4c-9.3 8-17.1 17.7-23.9 26.3-14.1 17.6-26.3 32.8-47 34.4h-0.4c-47.9 3-117.6-35.4-157.3-74.3-23.8-23.3-45.5-57.4-59.6-93.6-14.7-37.8-19.5-73.1-13.6-99.4 4.3-19.1 20.9-28.3 38.5-37.9 10.9-6 20.6-11.5 29.3-19l0.1-0.1 11-9.3c19-16.4 19.9-46.6 2.1-67.4l-72.4-84.2c-20.8-24.3-50-38-79.3-38zM702.4 111.1c-60.4 0-109.9 49.5-109.9 109.9S642 330.9 702.4 330.9 812.3 281.4 812.3 221s-49.4-109.9-109.9-109.9z m0 180.6c-38.9 0-70.7-31.8-70.7-70.7s31.8-70.7 70.7-70.7 70.7 31.8 70.7 70.7c0 38.9-31.8 70.7-70.7 70.7z" fill="#475669" ></path><path d="M700.1 134.7c-11 0-19.6-8.6-19.6-19.6V83.6c0-11 8.6-19.6 19.6-19.6s19.6 8.6 19.6 19.6V115c0 11-8.7 19.7-19.6 19.7zM627.8 167.2c-5.1 0-10.2-2-14.1-5.9l-22.8-23.5c-7.5-7.9-7.5-20.4 0.4-27.9s20.4-7.5 27.9 0.4l22.8 23.5c7.5 7.8 7.5 20.4-0.4 27.9-3.9 3.6-8.7 5.5-13.8 5.5zM598 240.6h-31.4c-11 0-19.6-8.6-19.6-19.6s8.6-19.6 19.6-19.6H598c11 0 19.6 8.6 19.6 19.6s-8.6 19.6-19.6 19.6zM606.2 338c-5.1 0-10.2-2-13.7-5.9-7.9-7.9-7.9-20 0-27.9l23.2-23.2c7.8-7.9 20-7.9 27.9 0s7.9 20 0 27.9l-23.2 23.2c-3.9 3.9-9 5.9-14.2 5.9zM704 378c-11 0-19.6-8.6-19.6-19.6v-35.3c0-11 8.6-19.6 19.6-19.6s19.6 8.6 19.6 19.6v35.3c0 11-8.6 19.6-19.6 19.6zM800.1 337.2c-5.1 0-10.2-2-13.7-5.9l-23.2-23.2c-7.8-7.8-7.8-20 0-27.9 7.9-7.8 20-7.8 27.9 0l23.2 23.2c7.9 7.9 7.9 20 0 27.9-3.9 3.9-9 5.9-14.2 5.9zM841.4 240.6H806c-11 0-19.6-8.6-19.6-19.6s8.6-19.6 19.6-19.6h35.3c11 0 19.6 8.6 19.6 19.6 0.1 11-8.5 19.6-19.5 19.6zM775.8 166.4c-5.1 0-10.2-2-13.7-5.9-7.8-7.8-7.8-20 0-27.9l23.2-23.2c7.8-7.8 20-7.8 27.9 0 7.8 7.9 7.8 20 0 27.9L790 160.5c-4 4-9.1 5.9-14.2 5.9z" fill="#475669" ></path></symbol><symbol id="iconbuliangpingjiashezhi" viewBox="0 0 1024 1024"><path d="M898.048 392.192c-7.68-25.088-17.408-49.664-29.696-72.704 42.496-48.128 40.448-120.832-4.096-166.912-22.016-22.528-52.224-34.816-83.968-34.816-29.696 0-58.368 11.264-80.384 31.744-22.528-12.288-46.592-22.528-71.68-30.208 1.024-66.048-52.224-119.296-117.76-119.296S392.192 53.248 392.192 118.784c-25.088 7.68-48.64 17.92-71.68 30.208-22.016-20.48-50.688-31.744-80.384-31.744-31.744 0-62.464 12.288-84.48 35.328-44.032 46.592-45.056 118.784-3.072 166.4-12.288 23.552-22.016 47.616-29.696 72.704-66.56 6.656-115.712 66.048-108.544 133.12 5.632 57.344 51.2 102.912 108.544 108.544 7.68 25.088 17.408 49.664 29.696 72.704-43.008 48.128-41.984 121.344 3.072 167.936 22.016 22.528 52.736 35.328 84.48 35.328 29.696 0 58.368-11.264 80.384-31.744 22.528 12.288 46.592 22.528 71.68 30.208 3.072 63.488 55.296 114.176 118.784 115.2 11.264 0 23.04-2.048 33.792-5.632 18.944-6.144 29.184-26.624 23.04-45.568-0.512-2.048-1.536-3.584-2.048-5.12-7.168-15.36-24.576-23.552-40.96-18.944-4.608 1.536-9.216 2.56-14.336 2.56-25.6-0.512-46.08-20.992-47.104-46.08l-2.048-51.2-48.64-14.848c-20.48-6.144-39.936-14.336-58.88-24.064l-44.032-24.064-37.376 34.304c-8.704 8.192-20.48 12.8-32.256 12.8-12.288 0-24.576-5.12-33.28-13.824-17.92-18.432-18.432-48.128-0.512-67.072l33.792-37.888-24.064-45.056c-10.24-18.944-17.92-39.424-24.064-59.904l-14.336-48.64-49.152-2.56c-26.624 0-48.64-22.016-48.64-48.64s22.016-48.64 48.64-48.64l50.176-2.56 14.336-48.64c6.144-20.992 14.336-40.96 24.064-59.904l24.064-45.056-34.304-37.888c-17.408-18.944-16.896-48.128 1.024-66.56 8.704-8.704 20.992-13.824 33.28-13.824 11.776 0 23.552 4.608 32.256 12.8l37.376 34.304 44.032-24.064c18.944-9.728 38.4-17.92 58.88-24.064l48.64-14.848 2.56-51.2c0-26.112 20.992-47.104 47.104-47.104s47.104 20.992 47.104 47.104l2.048 50.688 48.64 14.848c20.48 6.144 39.936 14.336 58.88 24.064l44.032 24.064 36.864-33.792c8.704-8.192 20.48-12.8 32.256-12.8 12.288 0 24.576 5.12 33.28 13.824 17.92 18.432 18.432 47.104 1.024 66.56l-33.792 37.888 24.064 45.056c10.24 18.944 17.92 39.424 24.064 59.904l14.336 48.64 49.152 2.56c26.624 2.048 46.592 25.6 45.056 52.224-0.512 8.192-3.584 16.384-8.192 23.552-11.264 14.336-9.216 34.816 5.12 46.592 1.024 0.512 2.048 1.536 3.072 2.048l7.168 4.608c13.824 8.704 32.256 4.608 41.984-8.704 39.424-54.272 27.648-130.048-26.624-169.984-18.944-13.824-40.448-21.504-63.488-23.04z" ></path><path d="M530.944 353.28C593.92 362.496 645.12 409.088 660.48 471.04c5.632 23.04 6.144 47.104 1.536 70.656-3.584 15.872 3.072 32.256 16.896 40.448 16.896 9.728 38.912 3.584 48.64-13.312 2.048-3.584 3.584-7.168 4.096-11.264 6.656-32.256 6.656-65.024 0-97.28-26.624-122.368-147.968-199.68-270.336-173.056-117.76 26.112-195.072 140.288-174.592 260.096 14.336 93.696 85.504 168.96 178.176 189.44 20.48 4.096 40.96 5.632 61.952 4.096 19.968-1.536 35.328-19.456 33.792-39.424-1.536-19.968-19.456-35.328-39.424-33.792-27.136 2.048-53.76-3.584-77.824-16.384-46.592-23.04-78.336-67.584-86.016-118.784-12.8-85.504 46.08-165.376 131.584-178.688 13.312-2.048 27.648-2.048 41.984-0.512z" ></path><path d="M706.048 1022.464c-3.072 0-5.632-0.512-8.704-1.024-32.256-6.656-46.08-25.6-58.88-54.784-7.168-16.384-22.016-58.88-35.328-96.768h-25.088v-284.672h265.216c35.84 0 65.536 29.184 66.56 65.024l21.504 173.568v1.536c0 49.152-28.672 66.56-55.808 66.56h-90.112l0.512 1.536c13.312 53.76-8.192 86.528-22.016 101.376-15.872 16.896-38.912 27.648-57.856 27.648zM660.48 834.56c22.016 61.952 37.888 103.936 41.472 112.128 2.048 5.12 5.632 7.168 7.68 7.68 5.12-3.584 18.432-15.872 13.824-36.352l-23.552-93.184h163.328l-21.504-171.008h-181.76V834.56z" ></path></symbol><symbol id="iconhuawushuju" viewBox="0 0 1024 1024"><path d="M724.8 960c-161.8 0-333.7-87.7-459.9-234.6-71.7-83.5-123.2-180.4-149.1-280.3-26.1-100.9-24.5-199.3 4.6-284.3 16.9-49 57.5-84.1 108.5-93.9 56.1-11.1 115.6 10.5 155.2 56.4l81.4 94.7c37.2 43.4 33.9 107.6-7.5 143.2l-12.4 10.6c-13.6 11.7-28.4 20-40.2 26.6l-0.8 0.5c-5.2 2.8-16.9 9.4-20.1 12.5-4.1 19.8 0.9 50.6 13.4 82.8 13.4 34.6 33.8 66.7 56 88.4 18.8 18.5 45 36.7 71.8 50.3 26.9 13.5 51.8 20.7 68.4 19.9 3.6-1.1 13.8-14 19.3-20.9 8-10.1 19-24 33-36.1l13.5-11.6c18.7-16.3 44-23.8 69.4-20.6 23.7 2.9 45.5 14.7 61.5 33.2L887.5 709c36 41.8 48.3 99.2 32 149.5-15.1 46.5-50.7 79.4-97.8 90.5-31 7.3-63.6 11-96.9 11zM258.5 111.8c-6.8 0-13.5 0.7-20.3 2h-0.2c-34.1 6.5-61.2 29.9-72.4 62.6-26.1 76.1-27.4 164.9-3.6 256.8 24 92.9 72.1 183.2 139.1 261.2 117.3 136.6 275.7 218 423.7 218 29.5 0 58.4-3.3 86-9.8 30.5-7.1 53.6-28.6 63.4-58.7 11.2-34.6 2.5-74.3-22.7-103.7L755 627.8c-8.2-9.6-19.3-15.6-31.1-17-12-1.5-23.9 2-32.4 9.4l-0.1 0.1-13.5 11.6c-10.5 9.1-19.6 20.5-26.9 29.7-15.8 19.8-29.4 36.8-52.8 38.7h-0.5c-54 3.4-132.4-39.9-176.9-83.7-26.8-26.2-51.3-64.6-67.1-105.2-16.6-42.5-22-82.3-15.2-111.8 4.8-21.3 22.6-31.1 43.3-42.6l0.8-0.4c11-6.1 22.3-12.4 32.2-21l0.1-0.1 12.4-10.6c21.3-18.4 22.4-52.4 2.4-75.8L348 154.4c-23.5-27.2-56.5-42.6-89.5-42.6zM499.2 177.3c-5.8-5.8-9-13.6-9-21.8 0-17 13.7-30.7 30.7-30.7h322.8c17 0 30.7 13.7 30.7 30.7s-13.7 30.7-30.7 30.7H520.9c-8.1 0.2-15.9-3.1-21.7-8.9zM577.5 314.1c-5.8-5.8-9-13.6-9-21.8 0-17 13.7-30.7 30.7-30.7h237.6c17 0 30.7 13.7 30.7 30.7S853.8 323 836.8 323H599.2c-8.2 0.1-16-3.2-21.7-8.9z" fill="#475669" ></path></symbol><symbol id="iconshuaxin" viewBox="0 0 1024 1024"><path d="M514.2192079454815 918.1151486862221c201.94797037037037 0 370.6078142767407-144.24855043792593 401.6767327952593-341.7581037037037 2.2192079454814815-11.096042154666666-6.657625050074073-24.411293468444445-17.75366720474074-24.41129225481481-13.315251313777777-2.2192079454814815-24.411293468444445 6.657625050074073-24.411293468444445 17.75366720474074-28.849710573037036 177.53667690192594-177.53667690192594 306.2507680805926-357.2925629629629 306.2507680805926-199.72876242488888 0-361.73098006755555-162.00221764266664-361.73098006755555-361.73098006755555s162.00221764266664-361.73098006755555 361.73098006755555-361.73097885392593c177.53667690192594 0 326.22364444444446 126.49488201955555 357.2925629629629 301.81235097599995 2.2192079454814815 11.096042154666666 13.315251313777777 19.97287636385185 24.411293468444445 17.75366720474074 11.096042154666666 0 19.97287636385185-11.096042154666666 19.972875150222222-22.19208430933333V152.48822909155558c0-13.315251313777777-8.876834209185184-22.19208430933333-22.19208430933333-22.19208552296296s-22.19208430933333 8.876834209185184-22.19208430933333 22.19208552296296v164.22142558814815C800.4971008758519 190.21477266014818 667.3445925925926 105.88485131377786 514.2192079454815 105.88485131377786 290.0791532657778 105.88485131377786 108.10405925925926 287.8599453202962 108.10405925925926 512S290.0791532657778 918.1151486862221 514.2192079454815 918.1151486862221z" fill="" ></path></symbol><symbol id="iconqiaquan" viewBox="0 0 1024 1024"><path d="M698.8 532.8c-11.5 0-20.8 9.3-20.8 20.8V595c0 11.5 9.3 20.8 20.8 20.8s20.8-9.3 20.8-20.8v-41.5c-0.1-11.5-9.4-20.7-20.8-20.7zM698.8 678c-11.5 0-20.8 9.3-20.8 20.8v41.5c0 11.5 9.3 20.8 20.8 20.8s20.8-9.3 20.8-20.8v-41.5c-0.1-11.5-9.4-20.8-20.8-20.8z" ></path><path d="M802.5 346h-1.8L538.4 126c-23.2-19.5-51.6-29-79.9-29-35.6 0-71 15.1-95.5 44.3l-62.9 75c4.8-0.6 9.6-1.1 14.4-1.1 6 0 12.1 0.6 18.1 1.6-6.1-0.9-12.1-1.6-18.1-1.6-50.9 0-98.9 31.5-117.3 81.9l-21 57.6C130 372.9 97 418 97 470.5v332C97 871 153 927 221.5 927h581C871 927 927 871 927 802.5V694.9c-6.5 2.3-13.4 3.8-20.8 3.8s-14.2-1.5-20.8-3.8c-24.1-8.6-41.5-31.4-41.5-58.4s17.4-49.8 41.5-58.4c6.5-2.3 13.4-3.8 20.8-3.8s14.2 1.5 20.8 3.8V470.5C927 402 871 346 802.5 346zM394.8 168c15.7-18.7 39-29.5 63.7-29.5 19.5 0 38.4 6.8 53.2 19.3L736.1 346h-40.4L356.8 222.7c-2.1-0.8-4.3-1.1-6.4-1.7l44.4-53zM236.3 311.3c11.9-32.6 43.3-54.6 78.3-54.6 9.6 0 19 1.7 28.1 5L574.4 346H223.6l12.7-34.7zM221.5 346z m-21 1.9c-0.8 0.1-1.7 0.2-2.5 0.4 0.8-0.2 1.7-0.2 2.5-0.4z m-13.3 3.1h-0.1 0.1z m698.3 183.8c-47.4 9.6-83 51.5-83 101.7s35.6 92 83 101.7v64.3c0 45.8-37.2 83-83 83h-83V844c0-11.5-9.3-20.8-20.8-20.8S678 832.5 678 844v41.5H221.5c-45.8 0-83-37.2-83-83v-332c0-45.8 37.2-83 83-83H678v62.3c0 11.5 9.3 20.8 20.8 20.8s20.8-9.3 20.8-20.8v-62.3h83c45.8 0 83 37.2 83 83v64.3z" ></path><path d="M508.4 490.9c-8.1-8.1-21.2-8.1-29.3 0l-70.8 70.8-70.8-70.8c-8.1-8.1-21.2-8.1-29.3 0-8.1 8.1-8.1 21.2 0 29.3l60.5 60.5h-43.3c-11.5 0-20.8 9.3-20.8 20.8s9.3 20.8 20.8 20.8h62.3v41.5h-62.3c-11.5 0-20.8 9.3-20.8 20.8s9.3 20.8 20.8 20.8h62.3v62.3c0 11.5 9.3 20.8 20.8 20.8s20.8-9.3 20.8-20.8v-62.3h62.3c11.5 0 20.8-9.3 20.8-20.8s-9.3-20.8-20.8-20.8H429v-41.5h62.3c11.5 0 20.8-9.3 20.8-20.8s-9.3-20.8-20.8-20.8H448l60.5-60.5c8-8.1 8-21.2-0.1-29.3z" ></path></symbol><symbol id="iconjichushezhi" viewBox="0 0 1024 1024"><path d="M320 277.3c58.9 0 106.7-47.8 106.7-106.7S378.9 64 320 64s-106.7 47.8-106.7 106.7S261.1 277.3 320 277.3z m0-170.6c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64z" fill="#000000" ></path><path d="M128 192h87.5c-1.4-6.9-2.1-14-2.1-21.3 0-7.3 0.8-14.4 2.1-21.3H128c-11.7 0-21.3 9.6-21.3 21.3 0 11.7 9.6 21.3 21.3 21.3zM896 192c11.7 0 21.3-9.6 21.3-21.3 0-11.7-9.6-21.3-21.3-21.3H424.5c1.4 6.9 2.1 14 2.1 21.3 0 7.3-0.8 14.4-2.1 21.3H896zM320 746.7c-58.9 0-106.7 47.8-106.7 106.7S261.1 960 320 960s106.7-47.8 106.7-106.7S378.9 746.7 320 746.7z m0 170.6c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64c0 35.4-28.7 64-64 64z" fill="#000000" ></path><path d="M128 832c-11.7 0-21.3 9.6-21.3 21.3 0 11.7 9.6 21.3 21.3 21.3h87.5c-1.4-6.9-2.1-14-2.1-21.3 0-7.3 0.8-14.4 2.1-21.3H128zM896 832H424.5c1.4 6.9 2.1 14 2.1 21.3 0 7.3-0.8 14.4-2.1 21.3H896c11.7 0 21.3-9.6 21.3-21.3 0-11.7-9.6-21.3-21.3-21.3zM128 490.7c-11.7 0-21.3 9.6-21.3 21.3 0 11.7 9.6 21.3 21.3 21.3h471.5c-1.4-6.9-2.1-14-2.1-21.3 0-7.3 0.8-14.4 2.1-21.3H128zM896 490.7h-87.5c1.4 6.9 2.1 14 2.1 21.3 0 7.3-0.8 14.4-2.1 21.3H896c11.7 0 21.3-9.6 21.3-21.3 0-11.7-9.6-21.3-21.3-21.3z" fill="#000000" ></path><path d="M704 405.3c-58.9 0-106.7 47.8-106.7 106.7S645.1 618.7 704 618.7 810.7 570.9 810.7 512 762.9 405.3 704 405.3z m0 170.7c-35.3 0-64-28.7-64-64s28.7-64 64-64 64 28.7 64 64-28.7 64-64 64z" fill="#000000" ></path></symbol><symbol id="icontianjiajiahaowubiankuang" viewBox="0 0 1024 1024"><path d="M864 448 512 448 512 96C512 78.08 497.92 64 480 64 462.08 64 448 78.08 448 96L448 448 96 448C78.08 448 64 462.08 64 480 64 497.92 78.08 512 96 512L448 512l0 352C448 881.92 462.08 896 480 896 497.92 896 512 881.92 512 864L512 512l352 0C881.92 512 896 497.92 896 480 896 462.08 881.92 448 864 448z" ></path></symbol><symbol id="iconchengyuan" viewBox="0 0 1024 1024"><path d="M401.1 312.7m-193.8 0a193.8 193.8 0 1 0 387.6 0 193.8 193.8 0 1 0-387.6 0Z" ></path><path d="M738.9 833.2c0 169.3-675.5 169.3-675.5 0S214.6 562 401.1 562s337.8 101.9 337.8 271.2zM644.7 63.5c-47.2 0-90.4 16.9-124 44.9 75.3 36.5 127.4 113.5 127.4 202.9 0 50.8-17 97.5-45.3 135.2 13.5 3 27.4 4.6 41.8 4.6 107 0 193.8-86.8 193.8-193.8S751.8 63.5 644.7 63.5z" ></path><path d="M622.6 513.2c-20.4 0-83.1 6.1-104.2 16.1 131.8 26.8 275.1 129.3 275.1 293.1 0 25.6-10.4 48.2-28.7 67.9 110.1-18 195.5-58.2 195.5-120.6 0.1-175.4-151.2-256.5-337.7-256.5z" ></path></symbol><symbol id="iconnavigate_next" viewBox="0 0 1024 1024"><path d="M645.518222 522.808889L380.245333 306.460444a28.444444 28.444444 0 1 1 35.953778-44.032l291.271111 237.454223a28.444444 28.444444 0 0 1 0.796445 43.349333l-291.214223 257.479111a28.444444 28.444444 0 0 1-37.660444-42.666667l266.126222-235.235555z" fill="#5A6677" ></path></symbol><symbol id="iconchangyongicon-" viewBox="0 0 1024 1024"><path d="M308.906667 653.866667a21.333333 21.333333 0 0 1-15.146667-6.4 21.333333 21.333333 0 0 1-5.76-18.986667l16.426667-85.333333a21.333333 21.333333 0 0 1 5.973333-11.093334l306.773333-307.413333a21.333333 21.333333 0 0 1 30.293334 0l69.333333 69.333333a21.333333 21.333333 0 0 1 0 30.08L409.813333 631.04a21.333333 21.333333 0 0 1-11.093333 5.973333l-85.333333 16.426667z m36.266666-96.64l-9.386666 48.426666L384 597.333333l287.36-288.213333-39.04-39.253333zM789.333333 768H234.666667a21.333333 21.333333 0 0 1 0-42.666667h554.666666a21.333333 21.333333 0 0 1 0 42.666667z" fill="#333333" ></path></symbol><symbol id="iconqiye-tianchong" viewBox="0 0 1024 1024"><path d="M992 902.4h-64V460.8c0-38.4-25.6-73.6-57.6-83.2l-252.8-80c-9.6-3.2-19.2 0-28.8 3.2-6.4 6.4-12.8 16-12.8 25.6v576h-32v-768c0-25.6-9.6-44.8-28.8-60.8-22.4-16-51.2-19.2-80-12.8L163.2 137.6C124.8 147.2 96 185.6 96 227.2v678.4H32c-19.2 0-32 12.8-32 32s12.8 32 32 32h960c19.2 0 32-12.8 32-32s-12.8-35.2-32-35.2z m-272-288h64c19.2 0 32 12.8 32 32s-12.8 32-32 32h-64c-19.2 0-32-12.8-32-32s12.8-32 32-32zM256 358.4h128c19.2 0 32 12.8 32 32s-12.8 32-32 32H256c-19.2 0-32-12.8-32-32s12.8-32 32-32z m0 256h128c19.2 0 32 12.8 32 32s-12.8 32-32 32H256c-19.2 0-32-12.8-32-32s12.8-32 32-32z" ></path></symbol><symbol id="iconzuzhijiagouguanli" viewBox="0 0 1024 1024"><path d="M771.208533 921.6c-27.136 0-54.135467-35.310933-54.135466-62.139733V660.616533c0-26.811733 28.757333-46.0288 55.9104-46.0288h63.488L836.7104 477.866667H546.030933v136.721066h66.013867c27.118933 0 53.5552 21.76 53.5552 48.605867v198.826667C665.6 888.866133 639.1808 921.6 612.0448 921.6H411.4432C384.3072 921.6 358.4 888.866133 358.4 862.037333V663.1936c0-26.8288 25.9072-48.605867 53.0432-48.605867h66.628267V477.866667H187.733333v136.721066h57.514667c27.118933 0 61.952 21.777067 61.952 48.64v198.826667C307.2 888.8832 278.1696 921.6 251.016533 921.6H49.851733C22.698667 921.6 0 888.8832 0 862.0544v-198.826667c0-26.8288 21.998933-48.605867 49.117867-48.605866h71.645866v-156.416c0-26.8288 22.016-48.605867 49.152-48.605867h308.394667l-0.238933-68.317867h67.959466L545.860267 409.6h308.206933c27.118933 0 49.134933 21.76 49.134933 48.605867l-0.221866 156.416h71.645866c27.118933 0 49.152 21.742933 49.152 48.5888v198.843733c0 26.8288-24.064 59.5456-51.2 59.5456h-201.386666z m184.302934-68.317867V682.222933h-170.666667v171.0592h170.666667zM597.333333 853.333333V682.222933H426.666667V853.333333h170.666666z m-358.4 0V682.222933H68.266667V853.333333h170.666666z m119.466667-559.650133V98.816C358.4 72.533333 380.962133 51.2 408.832 51.2h206.336C642.986667 51.2 665.6 72.516267 665.6 98.816v194.901333c0 26.282667-22.562133 47.616-50.432 47.616h-206.336C380.9792 341.2992 358.4 319.982933 358.4 293.6832zM597.333333 119.466667H426.666667v153.6h170.666666V119.466667z" fill="#121649" ></path></symbol><symbol id="icondianpu-kuai" viewBox="0 0 1024 1024"><path d="M923.73 506.56s-34.79-236.19-57.23-320.99c-22.43-84.8-114.16-87.2-114.16-87.2H302.37c-124.44-6.85-143.88 87.64-143.88 87.64l-58.9 326.01c-1.87 9.66 1.13 33.97 2.79 40.81 26.88 110.85 148.26 118.31 202.84 46.78 7.38-9.67 15.7-9.04 20.37-0.65 46.74 84.11 149.92 57.02 177.93-2.05 5.55-11.69 18.87-12.51 27.23 1.85 47.53 81.64 132.76 52.16 167.66-3.68 8.8-14.07 19.97-7.87 21.94-3.71 1.46 3.1 43.68 83.7 131.94 46.28s71.44-131.09 71.44-131.09zM640.25 395.44c-7.36 7.36-17.52 11.93-28.69 11.93H413.58c-22.34 0-40.62-18.27-40.62-40.61 0-11.17 4.57-21.32 11.93-28.69 7.36-7.36 17.52-11.93 28.69-11.93h197.98c22.34 0 40.62 18.28 40.62 40.62 0 11.17-4.57 21.32-11.93 28.68z" ></path><path d="M852.29 707.65v170.34c0 26.4-21.6 48-48 48H217.78c-26.4 0-48-21.6-48-48V707.82c45.98 19.17 102.72 14.67 135.44-28.21 7.38-9.67 15.7-9.04 20.37-0.65 46.74 84.11 149.92 57.02 177.93-2.05 5.55-11.69 18.87-12.51 27.23 1.85 47.53 81.64 132.76 52.16 167.66-3.68 8.8-14.07 19.97-7.87 21.94-3.71 1.46 3.1 43.68 73.7 131.94 36.28z" ></path></symbol><symbol id="iconxiala" viewBox="0 0 1024 1024"><path d="M755.342 433.89L537.778 671.8a34.238 34.238 0 0 1-25.718 11.637 34.238 34.238 0 0 1-25.72-11.637L268.777 433.89c-10.621-11.218-13.903-27.568-8.414-42.009s18.737-24.525 34.133-25.897h434.949c15.455 1.313 28.761 11.337 34.251 25.838 5.55 14.5 2.268 30.79-8.354 42.068z" ></path></symbol><symbol id="iconrizhifuwu" viewBox="0 0 1024 1024"><path d="M183 630c-13.807 0-25-11.193-25-25V455c0-13.807 11.193-25 25-25s25 11.193 25 25v150c0 13.807-11.193 25-25 25zM791 847H233c-41.355 0-75-33.645-75-75v-17c0-13.808 11.193-25 25-25s25 11.192 25 25v17c0 13.785 11.215 25 25 25h558c13.785 0 25-11.215 25-25V583c0-13.808 11.192-25 25-25s25 11.192 25 25v189c0 41.355-33.645 75-75 75zM841 460c-13.808 0-25-11.193-25-25V252c0-13.785-11.215-25-25-25H233c-13.785 0-25 11.215-25 25v59c0 13.807-11.193 25-25 25s-25-11.193-25-25v-59c0-41.355 33.645-75 75-75h558c41.355 0 75 33.645 75 75v183c0 13.807-11.192 25-25 25zM230 404h-98c-11.046 0-20-8.954-20-20s8.954-20 20-20h98c11.046 0 20 8.954 20 20s-8.954 20-20 20zM230 697h-98c-11.046 0-20-8.954-20-20s8.954-20 20-20h98c11.046 0 20 8.954 20 20s-8.954 20-20 20z" ></path><path d="M666 408H358c-13.807 0-25-11.193-25-25s11.193-25 25-25h308c13.807 0 25 11.193 25 25s-11.193 25-25 25zM666 553H358c-13.807 0-25-11.193-25-25s11.193-25 25-25h308c13.807 0 25 11.193 25 25s-11.193 25-25 25zM666 698H358c-13.807 0-25-11.193-25-25s11.193-25 25-25h308c13.807 0 25 11.193 25 25s-11.193 25-25 25zM841 606c-52.383 0-95-42.617-95-95s42.617-95 95-95 95 42.617 95 95-42.617 95-95 95z m0-140c-24.813 0-45 20.187-45 45s20.187 45 45 45 45-20.187 45-45-20.187-45-45-45z" ></path></symbol></svg>'; var p=(h=document.getElementsByTagName('script'))[h.length-1].getAttribute('data-injectcss');if(p&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write('<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>')}catch(c){console&&console.log(c)}}function v(){o||(o=!0,i())}l=function(){var c; var h; var l; var a; var i; var t=document.createElement('div');t.innerHTML=z,z=null,(c=t.getElementsByTagName('svg')[0])&&(c.setAttribute('aria-hidden','true'),c.style.position='absolute',c.style.width=0,c.style.height=0,c.style.overflow='hidden',h=c,(l=document.body).firstChild?(a=h,(i=l.firstChild).parentNode.insertBefore(a,i)):l.appendChild(h))},document.addEventListener?~['complete','loaded','interactive'].indexOf(document.readyState)?setTimeout(l,0):(a=function(){document.removeEventListener('DOMContentLoaded',a,!1),l()},document.addEventListener('DOMContentLoaded',a,!1)):document.attachEvent&&(i=l,t=c.document,o=!1,(s=function(){try{t.documentElement.doScroll('left')}catch(c){return void setTimeout(s,50)}v()})(),t.onreadystatechange=function(){'complete'==t.readyState&&(t.onreadystatechange=null,v())})})(window);
\ No newline at end of file
{
"id": "1628375",
"name": "好办后台3.0",
"font_family": "iconfont",
"css_prefix_text": "icon",
"description": "",
"glyphs": [
{
"icon_id": "15674954",
"name": "明细备份",
"font_class": "mingxibeifen",
"unicode": "eae0",
"unicode_decimal": 60128
},
{
"icon_id": "9355504",
"name": "商品设置",
"font_class": "shangpinshezhi",
"unicode": "e60b",
"unicode_decimal": 58891
},
{
"icon_id": "8837045",
"name": "我的顾客 icon",
"font_class": "gukeguanliicon",
"unicode": "e60a",
"unicode_decimal": 58890
},
{
"icon_id": "5835478",
"name": "刷新",
"font_class": "shuaxin1",
"unicode": "e613",
"unicode_decimal": 58899
},
{
"icon_id": "8527133",
"name": "勾",
"font_class": "gou",
"unicode": "e606",
"unicode_decimal": 58886
},
{
"icon_id": "2957800",
"name": "授权验证",
"font_class": "shouquanyanzheng",
"unicode": "e687",
"unicode_decimal": 59015
},
{
"icon_id": "6030873",
"name": "手机",
"font_class": "huaban",
"unicode": "e62a",
"unicode_decimal": 58922
},
{
"icon_id": "14718929",
"name": "素材库",
"font_class": "sucaiku",
"unicode": "eab6",
"unicode_decimal": 60086
},
{
"icon_id": "14420516",
"name": "文件",
"font_class": "wenjian1",
"unicode": "eaae",
"unicode_decimal": 60078
},
{
"icon_id": "14418445",
"name": "播放",
"font_class": "bofang1",
"unicode": "eaad",
"unicode_decimal": 60077
},
{
"icon_id": "8500016",
"name": "表情",
"font_class": "biaoqing",
"unicode": "e612",
"unicode_decimal": 58898
},
{
"icon_id": "11468518",
"name": "文字",
"font_class": "wenzi",
"unicode": "e611",
"unicode_decimal": 58897
},
{
"icon_id": "2728991",
"name": "代码",
"font_class": "daima",
"unicode": "e6bc",
"unicode_decimal": 59068
},
{
"icon_id": "3592283",
"name": "图片",
"font_class": "tupian",
"unicode": "e73a",
"unicode_decimal": 59194
},
{
"icon_id": "11111600",
"name": "文件",
"font_class": "wenjian",
"unicode": "e62d",
"unicode_decimal": 58925
},
{
"icon_id": "12480765",
"name": "视频",
"font_class": "shipin",
"unicode": "e605",
"unicode_decimal": 58885
},
{
"icon_id": "6310928",
"name": "拖拽open",
"font_class": "tuozhuaiopen",
"unicode": "e61c",
"unicode_decimal": 58908
},
{
"icon_id": "7784437",
"name": "投放",
"font_class": "toufang2",
"unicode": "e845",
"unicode_decimal": 59461
},
{
"icon_id": "14265997",
"name": "策略",
"font_class": "celve",
"unicode": "eaa9",
"unicode_decimal": 60073
},
{
"icon_id": "3355206",
"name": "模板",
"font_class": "moban",
"unicode": "e619",
"unicode_decimal": 58905
},
{
"icon_id": "6590542",
"name": "通讯录",
"font_class": "tongxunlu",
"unicode": "e64e",
"unicode_decimal": 58958
},
{
"icon_id": "4778446",
"name": "卡券记录",
"font_class": "wodeqiaquan-",
"unicode": "e6bb",
"unicode_decimal": 59067
},
{
"icon_id": "10328047",
"name": "会话精灵icon-166",
"font_class": "huihuajinglingicon-",
"unicode": "e678",
"unicode_decimal": 59000
},
{
"icon_id": "10600646",
"name": "失败",
"font_class": "shibai",
"unicode": "e60e",
"unicode_decimal": 58894
},
{
"icon_id": "9929338",
"name": "成功 (1)",
"font_class": "chenggong",
"unicode": "e63c",
"unicode_decimal": 58940
},
{
"icon_id": "12558975",
"name": "企业微信",
"font_class": "qiyeweixin",
"unicode": "e628",
"unicode_decimal": 58920
},
{
"icon_id": "711192",
"name": "男",
"font_class": "nan",
"unicode": "e629",
"unicode_decimal": 58921
},
{
"icon_id": "1170471",
"name": "性别女",
"font_class": "xingbienv",
"unicode": "e66b",
"unicode_decimal": 58987
},
{
"icon_id": "9893462",
"name": "任务指派",
"font_class": "renwuzhipai",
"unicode": "e7a5",
"unicode_decimal": 59301
},
{
"icon_id": "13038924",
"name": "完成任务",
"font_class": "wanchengrenwu",
"unicode": "ea6c",
"unicode_decimal": 60012
},
{
"icon_id": "3829037",
"name": "导购微商城",
"font_class": "ziyuan1",
"unicode": "e6a4",
"unicode_decimal": 59044
},
{
"icon_id": "11194337",
"name": "定位",
"font_class": "dingwei",
"unicode": "e918",
"unicode_decimal": 59672
},
{
"icon_id": "12941308",
"name": "更多",
"font_class": "gengduo2",
"unicode": "ea5b",
"unicode_decimal": 59995
},
{
"icon_id": "13503188",
"name": "企业信息",
"font_class": "qiyexinxi",
"unicode": "ea7a",
"unicode_decimal": 60026
},
{
"icon_id": "13491052",
"name": "加",
"font_class": "jia",
"unicode": "ea79",
"unicode_decimal": 60025
},
{
"icon_id": "3485141",
"name": "待审核",
"font_class": "daishenhe_orange",
"unicode": "e604",
"unicode_decimal": 58884
},
{
"icon_id": "5836128",
"name": "审核",
"font_class": "renwu1",
"unicode": "e607",
"unicode_decimal": 58887
},
{
"icon_id": "11698950",
"name": "审核",
"font_class": "shenhe",
"unicode": "e772",
"unicode_decimal": 59250
},
{
"icon_id": "12082911",
"name": "更多",
"font_class": "gengduo1",
"unicode": "e68c",
"unicode_decimal": 59020
},
{
"icon_id": "7394770",
"name": "减",
"font_class": "jian",
"unicode": "e634",
"unicode_decimal": 58932
},
{
"icon_id": "11638604",
"name": "管理员列表",
"font_class": "guanliyuanliebiao",
"unicode": "e609",
"unicode_decimal": 58889
},
{
"icon_id": "13399655",
"name": "部门",
"font_class": "bumen",
"unicode": "ea78",
"unicode_decimal": 60024
},
{
"icon_id": "5294661",
"name": "下发",
"font_class": "xiafa",
"unicode": "e64a",
"unicode_decimal": 58954
},
{
"icon_id": "5148246",
"name": "更多",
"font_class": "gengduo",
"unicode": "e603",
"unicode_decimal": 58883
},
{
"icon_id": "12989784",
"name": "模板设置",
"font_class": "xitongguanlitubiao_mobanshezhi",
"unicode": "e618",
"unicode_decimal": 58904
},
{
"icon_id": "3916374",
"name": "日报",
"font_class": "ribao",
"unicode": "e750",
"unicode_decimal": 59216
},
{
"icon_id": "7825126",
"name": "日报设置",
"font_class": "ribaoshezhi",
"unicode": "e7f4",
"unicode_decimal": 59380
},
{
"icon_id": "4129364",
"name": "任务",
"font_class": "renwu",
"unicode": "e77a",
"unicode_decimal": 59258
},
{
"icon_id": "7089057",
"name": "指标",
"font_class": "zhibiao",
"unicode": "e610",
"unicode_decimal": 58896
},
{
"icon_id": "4691084",
"name": "话务技能组配置",
"font_class": "huawujinengzupeizhi",
"unicode": "e601",
"unicode_decimal": 58881
},
{
"icon_id": "7825502",
"name": "不良评价设置",
"font_class": "buliangpingjiashezhi",
"unicode": "e7f6",
"unicode_decimal": 59382
},
{
"icon_id": "4840616",
"name": "话务数据",
"font_class": "huawushuju",
"unicode": "e600",
"unicode_decimal": 58880
},
{
"icon_id": "2667402",
"name": "刷新",
"font_class": "shuaxin",
"unicode": "e61b",
"unicode_decimal": 58907
},
{
"icon_id": "7629059",
"name": "卡券",
"font_class": "qiaquan",
"unicode": "e6b6",
"unicode_decimal": 59062
},
{
"icon_id": "7504755",
"name": "基础设置",
"font_class": "jichushezhi",
"unicode": "e65e",
"unicode_decimal": 58974
},
{
"icon_id": "689296",
"name": "添加 加号 无边框",
"font_class": "tianjiajiahaowubiankuang",
"unicode": "e81a",
"unicode_decimal": 59418
},
{
"icon_id": "12290473",
"name": "成员1",
"font_class": "chengyuan",
"unicode": "e61a",
"unicode_decimal": 58906
},
{
"icon_id": "12590456",
"name": "navigate_next",
"font_class": "navigate_next",
"unicode": "e62f",
"unicode_decimal": 58927
},
{
"icon_id": "9402957",
"name": "修改,笔",
"font_class": "changyongicon-",
"unicode": "e617",
"unicode_decimal": 58903
},
{
"icon_id": "8349112",
"name": "企业-填充",
"font_class": "qiye-tianchong",
"unicode": "e730",
"unicode_decimal": 59184
},
{
"icon_id": "12820193",
"name": "组织架构管理",
"font_class": "zuzhijiagouguanli",
"unicode": "e635",
"unicode_decimal": 58933
},
{
"icon_id": "7110127",
"name": "店铺-块",
"font_class": "dianpu-kuai",
"unicode": "e602",
"unicode_decimal": 58882
},
{
"icon_id": "7289570",
"name": "下拉",
"font_class": "xiala",
"unicode": "e608",
"unicode_decimal": 58888
},
{
"icon_id": "7101325",
"name": "日志服务",
"font_class": "rizhifuwu",
"unicode": "e65a",
"unicode_decimal": 58970
}
]
}
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<!--
2013-9-30: Created.
-->
<svg>
<metadata>
Created by iconfont
</metadata>
<defs>
<font id="iconfont" horiz-adv-x="1024" >
<font-face
font-family="iconfont"
font-weight="500"
font-stretch="normal"
units-per-em="1024"
ascent="896"
descent="-128"
/>
<missing-glyph />
<glyph glyph-name="mingxibeifen" unicode="&#60128;" d="M880.64 342.454857V481.28c0 148.918857-124.854857 271.36-277.723429 271.36H255.853714c-61.952 0-112.493714-49.517714-112.493714-109.348571V286.72c0-148.918857 124.854857-271.36 277.650286-271.36h347.136c61.952 0 112.493714 49.517714 112.493714 109.348571a52.662857 52.662857 0 0 0 105.325714 0c0-118.491429-98.157714-214.674286-217.819428-214.674285H421.010286C210.505143-89.965714 38.034286 79.213714 38.034286 286.72V643.291429C38.034286 761.782857 136.192 857.965714 255.853714 857.965714h347.136c210.505143 0 382.976-169.179429 382.976-376.685714v-138.752a52.662857 52.662857 0 1 0-105.325714 0zM351.305143 538.404571h186.368a52.662857 52.662857 0 1 0 0-105.325714H351.305143a52.662857 52.662857 0 1 0 0 105.325714z m0-259.218285h315.977143a52.662857 52.662857 0 1 0 0-105.325715h-315.977143a52.662857 52.662857 0 1 0 0 105.325715z" horiz-adv-x="1024" />
<glyph glyph-name="shangpinshezhi" unicode="&#58891;" d="M136.96 49.28c-45.632 0-79.872 33.92-79.872 79.04V760.064c0 45.184 34.24 78.976 79.936 78.976h517.056c45.632 0 79.872-33.792 79.872-78.976V602.24c0-16.96 11.456-28.224 28.544-28.224 17.152 0 28.544 11.264 28.544 28.16V760.128c0 73.344-62.784 135.424-136.96 135.424H136.96C62.848 895.488 0 833.408 0 760.064v-637.44c0-73.28 62.784-135.36 136.96-135.36h152.96c17.152 0 28.544 11.328 28.544 28.224s-11.392 33.856-28.544 33.856H136.96zM706.624 133.952c-17.088 0-28.544 11.264-28.544 28.16 0 16.96 11.456 28.224 28.544 28.224 17.152 0 28.544-11.264 28.544-28.16 0-16.96-11.392-28.224-28.544-28.224m0 112.832c-45.632 0-85.632-39.488-85.632-84.608 0-45.12 40-84.608 85.632-84.608 45.696 0 85.632 39.488 85.632 84.608 0 45.12-34.24 84.608-85.632 84.608m-57.088 372.288c17.152 11.264 34.24 28.16 34.24 50.752 0 33.856-22.784 56.448-57.088 56.448-34.24 0-57.024-22.592-57.024-56.448 0-16.896 11.392-33.856 22.784-45.12-22.784-90.24-97.024-152.32-194.048-152.32-97.088 0-171.264 67.712-194.112 152.32 11.392 11.264 22.848 28.16 22.848 45.12 0 33.856-22.848 56.448-57.088 56.448s-57.088-22.592-57.088-56.448c0-22.528 11.392-45.12 34.24-50.752C170.048 506.24 272.768 416 398.4 416c125.568 0 222.592 84.608 251.136 203.072M815.104 9.856c-5.76-11.264-17.152-16.896-22.848-16.896H632.448c-11.456 0-17.152 5.632-22.848 16.896l-85.632 140.992c-5.76 11.328-5.76 16.96 0 28.224l79.936 141.056c5.696 11.264 17.088 16.896 22.784 16.896h159.872c11.392 0 17.088-5.632 22.848-16.896l79.872-141.056c3.456-5.248 11.456-22.592 5.76-28.16l-80-141.056z m131.264 197.44L866.56 348.288c-17.152 28.224-45.696 45.12-74.24 45.12H632.448c-28.544 0-57.088-16.896-74.24-45.12L478.272 207.36c-17.088-28.16-17.088-56.448 0-84.608l80-141.056c17.088-28.16 45.632-45.12 74.176-45.12h159.808c28.544 0 57.088 16.96 74.24 45.12l79.872 141.056c17.152 28.16 17.152 56.384 0 84.608" horiz-adv-x="1024" />
<glyph glyph-name="gukeguanliicon" unicode="&#58890;" d="M512.761 374.77c-30.144 0-60.808 6.1-88.674 17.64-27.86 11.54-53.857 28.907-75.18 50.227-21.325 21.334-38.694 47.33-50.233 75.18-11.537 27.856-17.636 58.52-17.636 88.678 0 30.153 6.099 60.817 17.634 88.675 11.545 27.863 28.914 53.858 50.234 75.18 21.322 21.323 47.32 38.693 75.178 50.232 27.86 11.538 58.524 17.637 88.676 17.637 30.153 0 60.816-6.099 88.675-17.637 27.857-11.537 53.853-28.91 75.18-50.233 21.318-21.317 38.69-47.311 50.23-75.177 11.538-27.86 17.637-58.524 17.637-88.677 0-30.157-6.099-60.822-17.637-88.676-11.537-27.858-28.907-53.856-50.23-75.182-21.327-21.323-47.323-38.69-75.182-50.228-27.864-11.538-58.527-17.64-88.672-17.64z m0 396.243c-21.407 0-43.178-4.33-62.96-12.522-19.776-8.19-38.231-20.523-53.37-35.662-15.139-15.14-27.47-33.595-35.664-53.377-8.19-19.776-12.522-41.546-12.522-62.955 0-21.412 4.33-43.182 12.522-62.956 8.19-19.777 20.526-38.235 35.667-53.381 15.133-15.133 33.589-27.464 53.368-35.654 19.788-8.196 41.56-12.528 62.96-12.528s43.172 4.332 62.957 12.526c19.78 8.192 38.237 20.523 53.375 35.659 15.138 15.14 27.47 33.597 35.662 53.377 8.19 19.776 12.521 41.546 12.521 62.958 0 21.408-4.33 43.179-12.522 62.96-8.193 19.78-20.524 38.235-35.66 53.369-15.142 15.143-33.6 27.475-53.376 35.667-19.778 8.189-41.548 12.52-62.958 12.52zM512.761-70.219c-153.124 0-258.397 18.188-321.837 55.603-59.37 35.017-69.763 79.25-72.416 109.476-5.71 65.034 30.23 148.91 68.681 198.149 38.892 49.811 91.984 77.243 149.492 77.243 35.325 0 58.258-11.794 78.49-22.2 23.676-12.174 46.036-23.675 97.59-23.675 53.02 0 75.954 12.035 98.133 23.673 19.832 10.406 42.31 22.202 77.887 22.202 51.316 0 94.635-19.516 136.323-61.415 55.979-56.267 84.892-151.733 80.504-211.52-1.542-20.992-5.153-70.147-66.86-109-62.552-39.39-169.183-58.536-325.987-58.536zM336.683 303.044c-46.606 0-78.213-27.95-96.522-51.4-33.682-43.133-58.22-110.83-54.701-150.91 1.526-17.4 5.97-37.623 39.607-57.462 35.802-21.115 114.776-46.285 287.695-46.285 176.569 0 255.257 26.212 290.178 48.2 32.978 20.763 34.52 41.736 35.643 57.05 2.8 38.17-16.882 114.73-61.121 159.199-29.017 29.165-55.539 41.608-88.68 41.608-19.015 0-29.419-5.46-46.657-14.506-26.635-13.974-59.78-31.369-129.364-31.369-67.821 0-101.37 17.253-128.325 31.116-17.28 8.887-28.699 14.76-47.753 14.76zM987.515 143.29c-1.647 0-3.312 0.122-4.992 0.37-18.355 2.733-31.02 19.829-28.288 38.186 14.7 98.735-46.498 224.021-157.815 245.942a33.603 33.603 0 0 0-20.82 52.547c39.655 55.326 50.128 107.85 31.13 156.115-14.717 37.383-42.278 59.416-42.555 59.634l0.163-0.125 40.949 53.29c4.123-3.168 40.924-32.476 62.59-84.745 17.601-42.469 27.523-106.727-13.466-184.43 49.074-20.416 91.66-57.385 122.71-107.263 37.692-60.55 53.579-133.761 43.59-200.862-2.484-16.676-16.828-28.657-33.196-28.66zM36.442 143.29c-16.37 0-30.71 11.98-33.195 28.66-9.99 67.1 5.898 140.311 43.593 200.861 31.048 49.878 73.635 86.847 122.71 107.263-40.991 77.703-31.07 141.96-13.468 184.43 21.664 52.268 58.464 81.574 62.59 84.745l40.95-53.29 0.16 0.125c-0.275-0.218-27.837-22.25-42.554-59.634-18.996-48.264-8.524-100.789 31.131-156.115a33.606 33.606 0 0 0-20.819-52.547C116.22 405.868 55.022 280.581 69.722 181.847c2.732-18.357-9.933-35.453-28.288-38.186-1.678-0.25-3.344-0.371-4.992-0.371zM205.535 722.236a33.121 33.121 0 1 1 67.786 0 33.121 33.121 0 1 1-67.786 0zM749.907 722.236a33.121 33.121 0 1 1 67.786 0 33.121 33.121 0 1 1-67.786 0z" horiz-adv-x="1040" />
<glyph glyph-name="shuaxin1" unicode="&#58899;" d="M780.9-6.4c-9.7 0-19.3 4.4-25.6 12.8-10.6 14.1-7.8 34.2 6.4 44.8C867.4 130.6 928 251.9 928 384c0 229.4-186.6 416-416 416-17.7 0-32 14.3-32 32s14.3 32 32 32c264.7 0 480-215.3 480-480 0-152.4-70-292.4-192-384-5.7-4.3-12.5-6.4-19.1-6.4zM512-96C247.3-96 32 119.3 32 384c0 130 51.1 251.7 144 342.8 12.6 12.4 32.9 12.2 45.3-0.4 12.4-12.6 12.2-32.9-0.4-45.3C140.3 602.2 96 496.7 96 384c0-229.4 186.6-416 416-416 17.7 0 32-14.3 32-32s-14.3-32-32-32zM601.6 665.6c-10.3 0-20.5 5-26.7 14.3L485.4 814.2c-9.8 14.7-5.8 34.6 8.9 44.4 14.7 9.8 34.6 5.8 44.4-8.9l89.6-134.4c9.8-14.7 5.8-34.6-8.9-44.4-5.5-3.6-11.7-5.3-17.8-5.3zM512-96c-10.3 0-20.5 5-26.7 14.3l-89.6 134.4c-9.8 14.7-5.8 34.6 8.9 44.4 14.7 9.8 34.5 5.8 44.4-8.9l89.6-134.4c9.8-14.7 5.8-34.6-8.9-44.4-5.4-3.7-11.6-5.4-17.7-5.4z" horiz-adv-x="1024" />
<glyph glyph-name="gou" unicode="&#58886;" d="M590.848 249.472l37.376-35.008-209.792-224.384-37.44 35.008zM328.192 148.48l112.192-104.96-34.944-37.376-112.192 104.96z" horiz-adv-x="1024" />
<glyph glyph-name="shouquanyanzheng" unicode="&#59015;" d="M768 128v42.667c0 23.563-19.101 42.666-42.659 42.666H298.66c-23.558 0-42.659-19.102-42.659-42.666V128h512z m-554.667 42.667c0 47.128 38.204 85.333 85.326 85.333H725.34c47.124 0 85.326-38.208 85.326-85.333v-85.334H213.333v85.334zM575.372 296.014c-6.842 19.572-10.618 38.655-10.766 55.49-0.087 9.918 1.062 19.247 3.766 27.907 3.746 12.002 10.4 22.593 20.734 30.407C620.956 433.903 640 471.33 640 512c0 70.692-57.308 128-128 128-70.692 0-128-57.308-128-128 0-40.689 19.061-78.132 50.938-102.215 10.32-7.797 17-18.37 20.772-30.358 2.734-8.686 3.9-18.042 3.82-27.985-0.137-16.86-3.925-35.956-10.797-55.543-4.728-13.477-10.771-26.881-18.012-39.899h162.661c-7.242 13.052-13.284 26.494-18.01 40.014z m107.295-82.68H341.333c67.885 56.888 88.525 146.814 67.885 162.408-41.236 31.154-67.885 80.594-67.885 136.258 0 94.257 76.41 170.667 170.667 170.667S682.667 606.257 682.667 512c0-55.638-26.624-105.058-67.827-136.214-20.453-15.466 0-105.564 67.827-162.453z" horiz-adv-x="1024" />
<glyph glyph-name="huaban" unicode="&#58922;" d="M594.938802 120.54011300000002H433.901427c-9.752089 0-19.51441 9.762322-19.51441 19.51441s9.762322 19.51441 19.51441 19.51441h161.037375c9.762322 0 19.51441-9.752089 19.51441-19.51441s-9.752089-19.51441-19.51441-19.51441z m0 0M594.938802 111.330375H433.901427c-14.766279 0-28.724148 13.957869-28.724148 28.724148s13.957869 28.724148 28.724148 28.724148h161.037375c14.766279 0 28.724148-13.957869 28.724147-28.724148s-13.957869-28.724148-28.724147-28.724148zM433.901427 150.359196c-4.625335 0-10.304673-5.679338-10.304673-10.304673s5.72027-10.304673 10.304673-10.304673h161.037375c4.717432 0 10.304673 5.587241 10.304672 10.304673s-5.587241 10.304673-10.304672 10.304673zM716.906424-55.08957899999996H307.093576c-53.672303 0-102.41228 43.909981-102.412279 102.453212V720.6363670000001c4.881161 53.672303 48.791142 102.453212 102.453212 102.453212h409.771915c53.672303 0 102.453212-43.909981 102.453211-102.453212v-673.272734c-4.870928-53.672303-48.791142-102.453212-102.453211-102.453212zM307.093576 779.189831c-34.157893 0-58.543231-29.276732-58.54323-58.543231v-673.282967c0-34.14766 29.276732-58.543231 58.54323-58.543231h409.812848c34.157893 0 58.543231 29.276732 58.54323 58.543231V720.6363670000001c0 34.157893-29.276732 58.543231-58.54323 58.543231z m0 0M716.906424-64.29931599999998H307.093576c-28.488788 0-56.834313 11.614502-77.771115 31.865691a110.189391 110.189391 0 0 0-33.902067 79.817724V721.4345450000001a129.509374 129.509374 0 0 0 35.488188 76.921773c21.16193 21.86801 48.197626 33.9123 76.144062 33.912299h409.85378c28.488788 0 56.834313-11.614502 77.771115-31.865691a110.189391 110.189391 0 0 0 33.9123-79.817724V46.524523000000045A129.488908 129.488908 0 0 0 793.081185-30.397249999999985c-21.192629-21.857777-48.228325-33.902067-76.174761-33.902066zM213.891034 720.20658v-672.842947a91.913179 91.913179 0 0 1 28.29436-66.51477c17.518967-16.95615 41.198225-26.677539 64.949115-26.677539h409.771915c22.901547 0 45.25051 10.048847 62.902506 28.294359a110.782908 110.782908 0 0 1 30.340968 65.36867V720.6363670000001a91.913179 91.913179 0 0 1-28.29436 66.51477C764.336571 804.107287 740.657313 813.828676 716.906424 813.828676H307.093576c-22.901547 0-45.240277-10.048847-62.902506-28.294359A110.813607 110.813607 0 0 1 213.891034 720.20658z m503.01539-740.595915H307.093576c-32.745733 0-67.752968 27.230124-67.752968 67.752968V720.6363670000001c0 32.745733 27.230124 67.752968 67.752968 67.752968h409.812848c32.745733 0 67.752968-27.230124 67.752968-67.752968v-673.272734c0-32.725267-27.21989-67.752968-67.752968-67.752968zM307.093576 769.980094c-29.512092 0-49.333493-25.510973-49.333493-49.333494v-673.282967c0-29.512092 25.510973-49.333493 49.333493-49.333493h409.812848c29.512092 0 49.333493 25.510973 49.333493 49.333493V720.6363670000001c0 29.512092-25.510973 49.333493-49.333493 49.333493z" horiz-adv-x="1024" />
<glyph glyph-name="sucaiku" unicode="&#60086;" d="M268.8 411.648c-16.896 0-30.208-13.824-30.208-30.208 0-16.896 13.824-30.208 30.208-30.208 16.896 0 30.208 13.824 30.208 30.208s-13.312 30.208-30.208 30.208m0-216.576c-16.896 0-30.208-13.824-30.208-30.208 0-16.896 13.824-30.208 30.208-30.208 16.896 0 30.208 13.824 30.208 30.208 0 16.896-13.312 30.208-30.208 30.208m486.912 216.576h-378.88c-14.848 0-26.624-13.312-26.624-30.208v-1.024c0-16.384 11.776-30.208 26.624-30.208h378.88c14.848 0 26.624 13.312 26.624 30.208v1.024c0 16.896-12.288 30.208-26.624 30.208m0-216.576h-378.88c-14.848 0-26.624-13.312-26.624-29.696v-1.024c0-16.384 11.776-30.208 26.624-30.208h378.88c14.848 0 26.624 13.312 26.624 30.208v1.024c0 16.384-12.288 29.696-26.624 29.696M860.16-74.24H163.84c-76.288 0-138.24 61.952-138.24 138.24V495.104c0 76.288 61.952 138.24 138.24 138.24h696.32c76.288 0 138.24-61.952 138.24-138.24v-431.616c0-75.776-61.952-137.728-138.24-137.728zM163.84 572.928c-42.496 0-77.312-34.816-77.312-77.312v-431.616c0-42.496 34.816-77.312 77.312-77.312h696.32c42.496 0 77.312 34.816 77.312 77.312V495.104c0 42.496-34.816 77.312-77.312 77.312H163.84zM55.808 242.176c-16.896 0-30.208 13.824-30.208 30.208V704c0 76.288 61.952 138.24 138.24 138.24h238.08c6.656 0 13.312-2.048 18.432-6.144l270.336-208.896c13.312-10.24 15.872-29.184 5.632-42.496s-29.184-15.872-42.496-5.632L391.68 781.824H163.84c-42.496 0-77.312-34.816-77.312-77.312v-431.616c0-16.896-13.824-30.72-30.72-30.72z" horiz-adv-x="1024" />
<glyph glyph-name="wenjian1" unicode="&#60078;" d="M146.432 890.88H614.4l307.2-305.664v-668.672c0-24.064-19.456-43.52-44.032-43.52H146.432c-24.064 0-44.032 19.456-44.032 43.52V847.36C102.4 871.424 121.856 890.88 146.432 890.88zM614.4 890.88l307.2-307.2h-239.104C645.12 583.68 614.4 614.4 614.4 651.776V890.88zM239.104 381.952h546.304v-102.4H239.104zM239.104 177.152h546.304v-102.4H239.104z" horiz-adv-x="1024" />
<glyph glyph-name="bofang1" unicode="&#60077;" d="M10.24 384c0-276.992 224.256-501.76 501.248-501.76 276.992 0 501.76 224.256 501.76 501.248 0 276.992-224.256 501.76-501.248 501.76S10.24 660.992 10.24 384zM391.68 519.68c0 53.248 58.368 85.504 103.424 57.856l193.536-118.784c43.008-26.624 43.008-89.088 0-115.712l-193.536-118.784c-45.056-27.648-103.424 4.608-103.424 57.856V519.68z m132.096-118.784l4.096-2.56v5.12l-4.096-2.56z" horiz-adv-x="1024" />
<glyph glyph-name="biaoqing" unicode="&#58898;" d="M514.547 890.905c-281.32 0-509.452-228.127-509.452-509.452S233.125-128 514.547-128C795.765-128 1024 100.128 1024 381.453S795.872 890.905 514.547 890.905zM739.114 253.371c-12.838 5.711-27.918-0.198-33.624-13.042-24.352-55.326-92.827-111.06-191.045-111.06-92.42 0-163.845 57.364-191.253 110.658-6.42 12.527-21.907 17.423-34.337 10.999a25.529 25.529 0 0 1-11.106-34.332c18.646-36.38 50.537-70.208 89.663-95.064 44.424-28.33 95.166-43.202 146.82-43.202 53.39 0 104.335 14.061 147.231 40.553 40.655 25.065 72.648 60.93 90.28 100.871a24.877 24.877 0 0 1-12.629 33.62zM362.221 383.69c28.02 0 50.945 22.926 50.945 50.946V485.38c0 28.02-22.925 50.945-50.945 50.945s-50.945-22.925-50.945-50.945v-50.746c0-28.02 22.925-50.946 50.945-50.946z m305.672 0c28.02 0 50.945 22.926 50.945 50.946V485.38c0 28.02-22.926 50.945-50.945 50.945s-50.946-22.925-50.946-50.945v-50.746c0-28.02 22.926-50.946 50.946-50.946z" horiz-adv-x="1029" />
<glyph glyph-name="wenzi" unicode="&#58897;" d="M853.1-20.4H167.6c-34.9 0-63.3 28.4-63.3 63.3V728.4c0 34.9 28.4 63.3 63.3 63.3h685.5c34.9 0 63.3-28.4 63.3-63.3v-685.5c0-34.9-28.4-63.3-63.3-63.3z m-685.5 772c-12.8 0-23.3-10.4-23.3-23.3v-685.5c0-12.8 10.4-23.3 23.3-23.3h685.5c12.8 0 23.3 10.4 23.3 23.3V728.4c0 12.8-10.4 23.3-23.3 23.3H167.6zM695.7 562.8H332.9V492h38.5v31.7h122V211h-13.8v-38.5h66.8V211h-11.2V523.7h122.3V492H696v70.8z" horiz-adv-x="1024" />
<glyph glyph-name="daima" unicode="&#59068;" d="M449.7 72.2c5-1.5 9.3-2.2 13.1-2.2 7.5 0 12.6 3 16.4 9.1l0.2 0.3 120.8 406.2 0.2 0.3c2.8 4.9 3.6 10.6 2.1 16-1.5 5.5-5 10-10 12.8-8.9 5.1-26.4-6.2-28.4-7.5l-0.8-0.6-120.7-405.5-0.2-0.3c-3.4-5.9-4.1-14-1.7-20.1 1.3-3 3.9-7 9-8.5z m238.5 95.4c0-5.7 2.2-11 6.3-15 4.2-4.1 9.7-6.2 15.3-6.2 5.6 0 11.2 2.1 15.5 6.4L870.2 271c3.9 3.9 6 9.6 5.7 16 0.3 6.2-1.8 11.9-6.1 16.1L725.5 420.9c-8.4 8.3-22.7 8.4-31 0.3-4.1-4-6.3-9.3-6.3-15 0-5.7 2.2-11 6.5-15.2l127.6-104.1-128.2-104.6c-3.8-3.7-5.9-9.1-5.9-14.7z m-381-14.6c4.5-4.4 10.1-6.6 15.8-6.6 5.5 0 10.9 2.1 15.2 6.3 4.1 4 6.3 9.3 6.3 15 0 5.7-2.3 11-6.5 15.2l-127.6 104 128.1 104.6c3.8 3.8 6 9.1 6 14.7 0 5.7-2.3 11-6.4 15-4.1 4-9.5 6.2-15.3 6.2-5.8 0-11.2-2.2-15.1-6L162.5 302.8c-3.9-3.9-6-9.6-5.7-16-0.3-6.2 1.8-11.9 6.1-16.1L307.2 153zM855.9 834.2H176.8c-60.9 0-110.5-49.5-110.5-110.5v-679.1c0-60.9 49.5-110.4 110.5-110.4h679.1c60.9 0 110.5 49.5 110.5 110.4V723.8c-0.1 60.9-49.6 110.4-110.5 110.4zM116.8 613.3h799.1V45c0-33.3-26.7-60.4-59.4-60.4H176.2c-32.8 0-59.4 27.1-59.4 60.4V613.3z m59.4 170.4h680.2c32.8 0 59.4-24.6 59.4-54.7v-65.1h-799V729c0 30.1 26.7 54.7 59.4 54.7z" horiz-adv-x="1024" />
<glyph glyph-name="tupian" unicode="&#59194;" d="M823.986617 814.002474H204.012464c-66.164932 0-119.994931-53.829999-119.994932-119.994931v-619.974154c0-66.164932 53.829999-119.994931 119.994932-119.994931h619.974153c66.164932 0 119.994931 53.829999 119.994932 119.994931V694.007543c0 66.165955-53.829999 119.994931-119.994932 119.994931z m-619.974153-59.997465h619.974153c33.082466 0 59.997466-26.915 59.997466-59.997466v-118.788454c-140.010801-7.249101-270.549879-65.138556-370.296651-164.887374-44.722574-44.721551-80.997756-95.649454-108.104113-150.82817-40.761356 31.013341-90.24128 47.812959-142.285611 47.812958-42.603307 0-83.488483-11.262508-119.281687-32.355918V694.007543c-0.001023 33.082466 26.913976 59.997466 59.996443 59.997466z m-59.997466-679.97162V200.521199c32.589233 30.212092 74.667583 46.798862 119.281687 46.798862 43.954071 0 85.46858-16.071024 117.851105-45.437865-21.345144-59.487859-32.646538-122.800837-33.093723-187.845249H204.012464c-33.082466-0.001023-59.997466 26.913976-59.997466 59.996442z m679.971619-59.997465H408.052556c1.027399 133.769656 53.494355 259.305791 148.059104 353.871563 88.413656 88.411609 203.898877 140.017964 327.873446 147.204643v-441.078741c-0.001023-33.082466-26.916023-59.997466-59.998489-59.997465zM326.33951 466.667791c62.712297 0 113.731274 51.018977 113.731274 113.729228 0 62.712297-51.018977 113.731274-113.731274 113.731274-62.71025 0-113.729228-51.018977-113.729228-113.731274-0.001023-62.71025 51.018977-113.729228 113.729228-113.729228z m0 167.46406c29.629831 0 53.733808-24.103978 53.733808-53.733809 0-29.627784-24.103978-53.731762-53.733808-53.731762-29.627784 0-53.731762 24.103978-53.731762 53.731762-0.001023 29.628808 24.103978 53.733808 53.731762 53.733809z" horiz-adv-x="1024" />
<glyph glyph-name="wenjian" unicode="&#58925;" d="M752 816H272c-70.4 0-128-57.6-128-128v-608c0-70.4 57.6-128 128-128h353.6c33.6 0 65.6 12.8 91.2 36.8l126.4 126.4c24 24 36.8 56 36.8 91.2V688c0 70.4-57.6 128-128 128zM208 80V688c0 35.2 28.8 64 64 64h480c35.2 0 64-28.8 64-64v-464h-96c-70.4 0-128-57.6-128-128v-80H272c-35.2 0-64 28.8-64 64z m462.4-44.8c-4.8-4.8-9.6-8-14.4-11.2v72c0 35.2 28.8 64 64 64h75.2L670.4 35.2zM368 544h288c17.6 0 32 14.4 32 32s-14.4 32-32 32H368c-17.6 0-32-14.4-32-32s14.4-32 32-32z m128-256H368c-17.6 0-32-14.4-32-32s14.4-32 32-32h128c17.6 0 32 14.4 32 32s-14.4 32-32 32z m-128 96h288c17.6 0 32 14.4 32 32s-14.4 32-32 32H368c-17.6 0-32-14.4-32-32s14.4-32 32-32z" horiz-adv-x="1024" />
<glyph glyph-name="shipin" unicode="&#58885;" d="M972.494 607.498c-12.008 20.047-36.422 29.773-60.737 24.314-11.314-2.58-21.735-8.634-31.659-18.658l-22.727-22.826c-14.093-14.192-28.284-28.284-42.476-42.476L782.243 515.2v93.388c0 63.219-51.408 114.627-114.626 114.627H157.7c-63.219 0-114.627-51.408-114.627-114.627v-449.377c0-63.218 51.408-114.627 114.627-114.627h509.916c63.218 0 114.626 51.409 114.626 114.627v88.03c3.176-3.375 6.352-6.848 9.528-10.222 24.91-26.598 50.614-54.088 78.006-79.396 16.276-15.085 34.934-23.024 52.599-23.024 7.046 0 13.894 1.29 20.444 3.87 23.124 9.13 36.919 32.354 36.82 62.028 0 15.978-0.199 32.254-0.596 48.232-0.198 10.123 0 20.246 0.1 30.865 0.099 7.047 0.297 14.291 0.297 21.635v75.922c0 26.796 0.199 53.989 0.397 80.388 0.199 26.895 0.397 54.584 0.397 81.975 0.1 11.513 0.298 20.345 0.596 28.682 0.397 11.115-0.1 25.704-8.337 39.3zM732.621 159.31c0-35.827-29.177-65.004-65.004-65.004H157.7c-35.827 0-65.005 29.177-65.005 65.004V608.69c0 35.827 29.178 65.004 65.005 65.004h509.916c35.827 0 65.004-29.177 65.004-65.004V159.31z m198.687 410.672c-0.298-8.832-0.496-18.062-0.596-30.17v-0.198c0-27.193-0.198-54.982-0.396-81.777-0.199-26.4-0.397-53.79-0.397-80.686v-75.922c0-6.847-0.1-13.894-0.199-20.742-0.198-10.619-0.397-21.635-0.1-32.85 0.299-15.58 0.497-31.46 0.497-47.14 0-5.062-1.19-14.093-5.558-15.88-3.572-1.389-12.703 1.787-21.04 9.528-26.1 24.116-51.21 50.912-75.425 76.914-14.886 15.88-30.17 32.255-45.751 48.034v126.04l67.783 67.784 42.477 42.476 22.727 22.827c3.076 3.076 5.557 4.863 7.542 5.26 3.275 0.793 6.451-0.1 7.146-1.39 0.694-1.29 1.488-4.466 1.29-12.108zM524.308 446.524l-153.233 86.838c-21.139 13.696-47.34 14.49-70.165 2.283-24.216-13.001-39.3-37.713-39.3-64.509v-174.173c0-26.895 15.084-51.607 39.3-64.608 10.718-5.756 22.131-8.535 33.445-8.535 12.803 0 25.506 3.672 36.82 10.917l152.041 86.144c23.918 10.817 39.003 32.155 40.492 57.363 1.489 27.292-13.596 53.492-39.4 68.28z m-10.222-65.501c-0.298-4.764-2.58-11.215-11.81-15.185l-1.29-0.496-155.02-87.83-0.793-0.398-0.794-0.496c-8.138-5.458-16.078-2.58-20.048-0.496-6.053 3.275-13.1 10.619-13.1 20.841V471.136c0 10.123 7.047 17.566 13.1 20.742 2.283 1.191 5.955 2.68 10.123 2.68 3.077 0 6.55-0.794 9.925-3.077l0.694-0.496 154.523-87.533c11.314-6.352 14.887-15.78 14.49-22.43z" horiz-adv-x="1024" />
<glyph glyph-name="tuozhuaiopen" unicode="&#58908;" d="M781.7 541.5H241c-12.6 0-22.9 11.2-22.9 25s10.2 25 22.9 25h540.6c12.6 0 22.9-11.2 22.9-25s-10.2-25-22.8-25zM783.5 364.5H242.9c-12.6 0-22.9 11.2-22.9 25s10.2 25 22.9 25h540.6c12.6 0 22.9-11.2 22.9-25-0.1-13.8-10.3-25-22.9-25zM783.5 187.5H242.9c-12.6 0-22.9 11.2-22.9 25s10.2 25 22.9 25h540.6c12.6 0 22.9-11.2 22.9-25s-10.3-25-22.9-25z" horiz-adv-x="1024" />
<glyph glyph-name="toufang2" unicode="&#59461;" d="M506.654636-127.580332c-22.405036 0-39.237246 5.800289-56.069456 17.457731L170.067304 52.854134C136.402884 70.311865 113.940982 111.027616 113.940982 157.600522V483.497126c0 17.457731 11.202518 29.115174 28.034728 40.772617l274.94505 122.204118h5.629692c5.572826 0 16.83221-5.800289 16.83221-11.657442 5.572826-11.600577 0-23.314885-11.259384-23.314886L147.605402 483.610857l353.476408-157.176446 359.049234 157.119581L579.670033 611.558399c-5.629692 0-5.629692 5.800289-11.202518 11.657443V640.673573c5.572826 5.800289 11.202518 11.600577 16.83221 11.600577h5.572826l274.94505-122.204119c16.83221-5.800289 28.034728-23.314885 28.034728-40.715751v-331.753758c0-40.715751-22.405036-81.488368-56.069456-104.746388l-274.94505-162.976735a92.406558 92.406558 0 0 0-56.126321-17.457731z m16.83221 419.042415v-378.326664l16.83221 5.857154 5.686557 5.800289 274.888185 162.976735c22.405036 11.600577 39.237246 40.715751 39.237246 69.830925V442.781375l-336.644198-151.319292zM153.235094 157.600522c0-29.115174 16.83221-58.230348 39.237246-69.830925l291.720394-168.777024V297.205506L153.291959 448.581664v-290.981142zM530.196984 506.072759c-11.657443 0-17.514597 5.459095-17.514597 16.491017V830.035934L396.392288 720.228511c-5.857154 0-11.657443-5.459095-17.457731-5.459095-5.857154 0-11.657443 0-11.657443 5.459095-11.600577 11.031921-11.600577 22.006977-5.800288 27.466072L512.739252 890.484039C518.482675 896 524.282964 896 530.083253 896c5.857154 0 11.657443 0 11.657442-5.515961l151.262427-142.73259c5.800289 0 5.800289-5.515961 5.800289-11.031922 0-5.459095 0-10.975056-5.857155-10.975056-5.800289-5.515961-5.800289-5.515961-11.600577-5.51596s-11.657443 0-11.657442 5.51596L547.597849 835.60876v-307.585889c0-16.491016-11.600577-21.950112-17.457731-21.950112z" horiz-adv-x="1024" />
<glyph glyph-name="celve" unicode="&#60073;" d="M898.048 288.256c-4.608 310.784-135.168 496.64-459.776 461.312C283.136 732.16 174.08 623.104 146.944 470.528c-52.224-290.304 106.496-436.224 391.168-484.864-123.904-51.2-306.176 44.032-389.12 186.368C47.616 346.624 93.184 583.168 251.904 707.584c160.768 125.952 398.336 117.248 544.768-19.968 116.224-108.544 171.008-301.568 101.376-399.36zM491.52 126.464c39.936 73.728 80.384 147.456 128.512 235.52H337.92c61.952 107.52 123.904 215.552 185.856 323.072 18.432-114.688-79.36-177.152-111.104-288.256h275.456c-55.296-95.232-110.592-190.976-165.888-286.208-10.24 5.12-20.48 10.752-30.72 15.872zM794.624-26.624v230.4l16.896-0.512v-229.888zM904.192 155.136h16.384v-181.76h-16.384zM685.056-26.624v104.96l16.384 0.512v-103.936z" horiz-adv-x="1024" />
<glyph glyph-name="moban" unicode="&#58905;" d="M357.4272-97.28H141.1072a78.2336 78.2336 0 0 0-78.1312 77.9264v378.5728a78.2336 78.2336 0 0 0 78.1312 78.1312h216.32a78.2336 78.2336 0 0 0 78.1312-78.1312v-378.5728A78.2336 78.2336 0 0 0 357.4272-97.28zM141.1072 389.12a30.0544 30.0544 0 0 1-30.0032-30.0032v-378.5728a30.0544 30.0544 0 0 1 30.0032-30.0032h216.32a30.0544 30.0544 0 0 1 30.0032 30.0032v378.6752A30.0544 30.0544 0 0 1 357.4272 389.12zM898.2528 487.7824H141.1072A78.2336 78.2336 0 0 0 62.976 565.9136V782.2336A78.2336 78.2336 0 0 0 141.1072 860.16h757.1456a78.2336 78.2336 0 0 0 78.1312-77.9264v-216.32a78.2336 78.2336 0 0 0-78.1312-78.1312zM141.1072 812.2368a30.0544 30.0544 0 0 1-30.0032-30.0032v-216.32a30.0544 30.0544 0 0 1 30.0032-30.0032h757.1456a30.0544 30.0544 0 0 1 30.0032 30.0032V782.2336a30.0544 30.0544 0 0 1-30.0032 30.0032zM502.8352 388.6592l438.016 0 0-48.128-438.016 0 0 48.128ZM502.8352 200.96l438.016 0 0-48.128-438.016 0 0 48.128ZM502.8352 13.2096l438.016 0 0-48.128-438.016 0 0 48.128Z" horiz-adv-x="1024" />
<glyph glyph-name="tongxunlu" unicode="&#58958;" d="M419 735.5h159.5c26.7 0 47.9 21.7 47.9 47.9 0 26.7-21.7 47.9-47.9 47.9H419c-26.7 0-47.9-21.7-47.9-47.9 0.1-26.7 21.3-47.9 47.9-47.9zM288.5 543.5h447.2c17.6 0 32.1 14.5 32.1 32.1s-14.5 32.1-32.1 32.1H288.5c-17.6 0-32.1-14.5-32.1-32.1 0-17.7 14.5-32.1 32.1-32.1zM735.7 416.5H288.5c-17.6 0-32.1-14.5-32.1-32.1s14.5-32.1 32.1-32.1h447.2c17.6 0 32.1 14.5 32.1 32.1-0.5 17.7-14.5 32.1-32.1 32.1zM735.7 224.5H288.5c-17.6 0-32.1-14.5-32.1-32.1s14.5-32.1 32.1-32.1h447.2c17.6 0 32.1 14.5 32.1 32.1-0.5 18.1-14.5 32.1-32.1 32.1zM831.5 799.2h-32.1c-17.6 0-32.1-14.5-32.1-32.1s14.5-32.1 32.1-32.1h32.1c35.2 0 63.7-28.5 63.7-63.7v-606.7c0-35.2-28.5-63.7-63.7-63.7H192.7c-35.2 0-63.7 28.5-63.7 63.7V671.3c0 35.2 28.5 63.7 63.7 63.7h32.1c17.6 0 32.1 14.5 32.1 32.1s-14.5 32.1-32.1 32.1h-32.1c-70.5 0-127.8-56.9-127.8-127.8v-606.7c0-70.5 57.4-127.8 127.8-127.8h638.8c70.5 0 127.8 57.4 127.8 127.8V671.3c0 70.9-57.3 127.9-127.8 127.9z" horiz-adv-x="1024" />
<glyph glyph-name="wodeqiaquan-" unicode="&#59067;" d="M419.887448-120.358209c-25.472637 0-50.435821 10.698507-69.795024 29.548259-15.793035 15.793035-32.095522 31.58607-47.888558 47.888557l-11.20796 11.20796c-22.925373 22.925373-27.510448 48.39801-14.264677 78.455722 10.698507 23.434826 10.189055 49.416915-1.018905 70.81393-11.20796 21.906468-32.095522 37.19005-57.058706 42.284577-3.056716 0.509453-6.622886 1.018905-10.189055 1.018905l-4.585075 0.509453-0.509453 1.528358h-0.509452c-3.056716-1.018905-6.622886-2.037811-10.189055-2.547263-7.641791-2.037811-15.283582-4.075622-22.41592-7.132339-10.698507-4.585075-21.397015-7.132338-31.076617-7.132338-17.321393 0-32.604975 7.132338-47.379105 21.397015l-11.20796 11.20796c-15.793035 15.793035-31.58607 31.58607-47.379104 47.888557-40.246766 40.756219-40.246766 99.343284 0 140.099503C199.294414 533.269652 365.885458 699.351244 531.96705 865.432836c19.359204 19.359204 44.322388 30.567164 70.304478 30.567164 25.472637 0 50.435821-10.698507 70.304478-30.057711L718.936205 819.58209l11.717413-11.717413c22.925373-23.434826 27.510448-48.907463 13.755223-78.965175-11.717413-25.472637-10.189055-55.020896 4.585075-77.946268s39.737313-36.680597 66.738309-36.680597h3.056716c9.679602 0.509453 20.378109 3.056716 32.095522 8.151244 10.698507 4.585075 21.397015 7.132338 31.076617 7.132338 17.321393 0 32.604975-7.132338 47.379105-21.397015l11.717413-11.717413 46.869651-46.869652c40.246766-40.756219 40.756219-99.343284 0-140.099502-166.591045-166.591045-332.672637-333.18209-499.263681-499.263682-18.340299-20.378109-42.79403-30.567164-68.77612-30.567164zM204.388941 225.560199c6.113433 0 12.226866-0.509453 18.849751-1.018905 45.850746-6.113433 85.078607-32.095522 107.494528-72.342289 22.41592-40.246766 24.963184-87.625871 6.113432-129.910448-2.037811-4.075622-1.528358-6.622886 1.528359-9.679602 13.755224-13.755224 28.0199-27.510448 40.246766-40.246766l14.774129-14.774129c9.170149-9.170149 17.830846-13.755224 27.000995-13.755224 8.660697 0 17.321393 4.585075 26.491542 13.755224 0 0 436.600995 436.091542 496.206966 496.206965 16.302488 16.302488 16.302488 34.133333 0 50.435821l-17.830846 17.830846c-12.736318 12.736318-25.472637 25.472637-38.208955 38.718408-1.528358 1.528358-3.056716 2.547264-5.094528 2.547263-1.018905 0-2.547264-0.509453-4.075622-1.018905-19.359204-9.170149-39.227861-13.755224-60.115423-13.755224-3.056716 0.509453-5.60398 0.509453-8.151243 0.509453-5.60398 0.509453-11.20796 1.018905-16.302488 2.037811-44.831841 8.151244-82.531343 35.152239-103.418905 74.889552-20.887562 39.737313-22.41592 86.097512-3.56617 127.872637 2.037811 4.075622 1.528358 6.622886-2.03781 9.679602-12.736318 12.736318-25.472637 25.472637-38.208956 37.699502l-17.830845 17.830846c-8.151244 8.151244-16.81194 12.226866-25.472637 12.226865-8.660697 0-17.321393-4.075622-25.472637-12.226865l-497.735323-497.735324c-16.302488-16.302488-16.302488-34.133333 0-50.43582l19.868656-19.868657 36.171145-36.171144c1.528358-1.528358 3.566169-3.056716 6.113432-3.056717 1.018905 0 2.547264 0.509453 4.585075 1.018906 18.340299 8.660697 37.699502 12.736318 58.077612 12.736318zM488.154115 195.502488c-8.660697 0-16.302488 3.566169-22.41592 9.679602-12.736318 13.245771-12.226866 32.604975 1.528358 46.360199l114.117413 114.117412 37.19005 37.19005 7.641791 7.641791 1.018905 1.018906c7.132338 7.132338 14.774129 14.774129 22.41592 21.906467 6.113433 6.113433 13.245771 9.170149 21.397015 9.17015 4.585075 0 9.170149-1.018905 13.755224-3.056717 11.717413-5.094527 18.849751-14.774129 19.359204-28.0199 0-10.189055-3.566169-17.830846-10.189054-24.453732l-48.39801-48.39801-132.967165-132.967164c-7.132338-6.622886-15.793035-10.189055-24.453731-10.189054z m-137.552239 136.533333c-12.736318 1.018905-22.41592 7.132338-27.510448 17.830846-5.60398 11.20796-4.585075 22.41592 2.547264 32.604975 1.528358 2.547264 4.075622 5.094527 6.113433 7.132338l71.323383 71.323383 105.966169 105.966169c8.151244 8.151244 15.793035 11.717413 24.963184 11.717413 2.547264 0 5.60398-0.509453 8.151244-1.018905 10.698507-2.547264 19.359204-10.698507 22.925373-20.887562 3.566169-10.698507 1.528358-21.906468-5.60398-30.567165-1.018905-1.528358-2.547264-3.056716-4.075622-4.585074L501.399886 469.078607l-125.325373-125.325373c-7.132338-7.132338-15.283582-10.698507-24.963184-11.20796l-0.509453-0.509453z" horiz-adv-x="1024" />
<glyph glyph-name="huihuajinglingicon-" unicode="&#59000;" d="M311.088608 458.402025h440.70886a25.924051 25.924051 0 1 1 0 51.848102H311.088608a25.924051 25.924051 0 1 1 0-51.848102zM311.088608 303.635443h352.567088a25.924051 25.924051 0 0 1 0 51.848101H311.088608a25.924051 25.924051 0 0 1 0-51.848101zM866.381772 711.939241H170.580253A40.96 40.96 0 0 1 129.620253 670.979241v-509.926076a40.96 40.96 0 0 1 40.96-40.96h381.861266l138.17519-107.32557a40.96 40.96 0 0 1 43.033924-4.407089 40.96 40.96 0 0 1 23.072405 37.071393v74.661266h110.177215A40.96 40.96 0 0 1 907.341772 161.053165V670.979241a40.96 40.96 0 0 1-40.96 40.96zM855.493671 171.941266h-110.177215a41.219241 41.219241 0 0 1-40.96-41.219241V66.43038l-123.398481 95.918987a41.996962 41.996962 0 0 1-25.924051 8.554937H181.468354V660.091139h674.025317z" horiz-adv-x="1036" />
<glyph glyph-name="shibai" unicode="&#58894;" d="M512 879.483871C238.344258 879.483871 16.516129 657.655742 16.516129 384c0-273.655742 221.828129-495.483871 495.483871-495.483871 273.655742 0 495.483871 221.828129 495.483871 495.483871A495.483871 495.483871 0 0 1 512 879.483871z m0-929.032258C272.565677-49.548387 78.451613 144.565677 78.451613 384S272.565677 817.548387 512 817.548387 945.548387 623.434323 945.548387 384 751.434323-49.548387 512-49.548387zM687.269161 559.285677a30.967742 30.967742 0 0 1-43.965935 0L512 427.652129l-131.303226 131.633548a31.099871 31.099871 0 1 1-43.982451-43.982451l131.633548-131.303226-131.633548-131.303226a31.099871 31.099871 0 0 1 43.982451-43.965935L512 340.331355l131.303226-131.600516a31.099871 31.099871 0 0 1 43.965935 43.965935L555.668645 384l131.600516 131.303226a30.967742 30.967742 0 0 1 0 43.982451z" horiz-adv-x="1024" />
<glyph glyph-name="chenggong" unicode="&#58940;" d="M512-128C227.84-128 0 99.84 0 384S227.84 896 512 896s512-227.84 512-512-227.84-512-512-512z m0 69.632c244.224 0 442.368 197.632 442.368 442.368S756.224 826.368 512 826.368 69.632 628.224 69.632 384s198.144-442.368 442.368-442.368zM733.184 593.408c-141.824-86.016-244.224-195.584-290.816-251.392L330.24 430.592l-51.2-39.424 195.584-197.632c32.768 86.016 139.776 253.44 269.824 372.224l-11.264 27.648z" horiz-adv-x="1024" />
<glyph glyph-name="qiyeweixin" unicode="&#58920;" d="M661.12 179.08c-2.59-2.38-3.92-5.69-3.62-9.05 0.3-3.36 2.19-6.43 5.16-8.39 26.84-23.23 44.12-54.36 48.88-88.06 6.86-23.25 31.38-38.13 57.19-34.71 25.81 3.42 44.82 24.09 44.31 48.18-0.5 24.09-20.35 44.06-46.28 46.57-33.97 5.87-64.93 21.83-88.18 45.46-4.81 4.46-12.63 4.46-17.46 0zM870.89 254.71c-8.37-7.72-13.62-17.86-14.85-28.73-6.28-31.42-23.5-60.09-49.04-81.62-3.43-3.04-4.68-7.62-3.21-11.79 1.47-4.17 5.39-7.2 10.09-7.8 4.71-0.59 9.36 1.35 11.99 5.01 25.13 24.81 58.82 40.78 95.29 45.17 20.97 5.24 36.15 22.04 37.98 42.04 1.84 20-10.05 38.93-29.76 47.36-19.71 8.44-43.02 4.58-58.34-9.64h-0.15zM725.32 389.36c-14.05-13.01-18.76-32.32-12.13-49.65 6.64-17.33 23.44-29.6 43.22-31.55 34-5.8 65.02-21.71 88.33-45.32 3.28-3.17 8.24-4.32 12.76-2.97 4.52 1.36 7.8 4.98 8.44 9.33s-1.46 8.65-5.42 11.08c-26.84 23.23-44.12 54.36-48.88 88.06-4.91 16.37-18.86 29.09-36.63 33.42-17.77 4.33-36.69-0.39-49.69-12.4zM699.95 314.74l-0.93-0.86c-25.22-25.67-59.48-42.24-96.68-46.74-17.86-4.35-31.83-17.23-36.56-33.73s0.48-34.08 13.67-46.04c14.08-12.98 34.98-17.34 53.73-11.21 18.75 6.13 32.03 21.67 34.14 39.94 6.33 31.44 23.6 60.1 49.19 81.62 5.08 4.22 5.5 11.46 0.93 16.15-4.58 4.71-12.41 5.1-17.49 0.87zM387.78 726.87c-92.66-9.43-176.66-46.03-236.99-103.21-23.98-22.59-43.47-48.03-57.86-75.19-45.69-84.98-38.05-186.16 19.96-264.46 16.4-22.87 43.31-51.46 67.91-71.76l-11.14-80.91-1.24-3.43c-0.31-1-0.31-2.14-0.46-3.14l-0.31-2.57 0.31-2.57c0.83-8.91 6.56-16.8 15.17-20.9 8.61-4.09 18.89-3.81 27.22 0.74h0.46l1.7 1.14 26.61 12.29 79.36 36.88c37.71-10.02 76.78-14.98 116.02-14.72 48.52-0.1 96.68 7.64 142.32 22.87-22.9 6.99-37.49 27.71-35.12 49.89-47.2-14.02-97.08-18.6-146.34-13.44l-7.89 1a379.84 379.84 0 0 0-52.6 10.15c-9.39 2.7-19.57 1.72-28.15-2.72l-2.17-1-65.28-35.45-2.78-1.57c-1.55-0.86-2.32-1.14-3.09-1.14-2.42 0.15-4.27 2.05-4.18 4.29l2.48 9.29 2.94 10.15 4.64 16.73 5.41 18.58c3.61 10.38-0.38 21.72-9.9 28.16-25.66 17.6-47.93 39.05-65.9 63.47-45.86 61.64-52.02 141.39-16.09 208.42 11.76 21.73 27.23 41.88 46.41 60.04 49.5 47.17 119.11 77.19 196.15 84.91a395.9 395.9 0 0 0 80.13 0c76.57-8.15 145.88-38.6 195.07-85.48 19.03-18.15 34.5-38.6 45.94-60.33 15.31-28.88 23.05-59.47 23.05-90.77 0-3.29-0.31-6.58-0.46-9.72 20.31 11.56 46.55 8.72 63.42-6.86l2.32-2.57c3.97 46.69-5.76 93.51-28.15 135.52-14.66 27.7-33.98 53.08-57.24 75.19-63.32 58.82-146.74 95.55-236.06 103.93a471.348 471.348 0 0 1-95.6 0.27z" horiz-adv-x="1024" />
<glyph glyph-name="nan" unicode="&#58921;" d="M963.145004 810.173263c-0.2415 1.446955-0.347924 2.932796-0.862647 4.349051l-0.037862 0.030699c-0.862647 2.347464-2.273786 4.279467-3.620457 6.348592-0.032746 0.068562-0.068562 0.105401-0.099261 0.173962-0.900509 1.378393-1.316995 2.894933-2.416026 4.175089-0.242524 0.273223-0.590448 0.378623-0.832971 0.651846-1.721201 1.863441-3.862981 3.105734-6.000668 4.553713 0 0.036839-0.030699 0.036839-0.068562 0.074701-1.620917 1.099031-3.067872 2.446725-4.826935 3.241834l-0.036839 0c-4.347005 1.930979-9.106402 3.137457-14.144138 3.137457L688.717817 836.910207c-19.075451 0-34.499745-15.454994-34.499745-34.499745 0-19.038612 15.424294-34.493605 34.499745-34.493605l150.19986 0L674.29534 622.746546c-63.404052 47.606251-141.851729 76.174913-227.057319 76.174913-209.229279 0-379.474684-170.244382-379.474684-379.474684S238.007719-60.026886 447.238021-60.026886c209.223139 0 379.467521 170.244382 379.467521 379.474684 0 99.076506-38.46301 189.116195-100.903108 256.761851l169.897482 149.788491 0-130.569778c0-19.044752 15.424294-34.499745 34.499745-34.499745s34.499745 15.454994 34.499745 34.499745L964.699406 802.408415C964.699406 805.172365 963.766151 807.583275 963.145004 810.173263L963.145004 810.173263zM757.712191 319.446775c0-171.213453-139.266857-310.474171-310.474171-310.474171-171.177638 0-310.481334 139.260717-310.481334 310.474171 0 171.175591 139.303696 310.474171 310.481334 310.474171C618.444311 629.920946 757.712191 490.623389 757.712191 319.446775L757.712191 319.446775zM757.712191 319.446775" horiz-adv-x="1024" />
<glyph glyph-name="xingbienv" unicode="&#58987;" d="M581.423387 836.576489c-210.595616 0-381.927653-171.34243-381.927653-381.934049 0-92.077372 32.749196-176.629845 87.205675-242.661875l-39.577566-39.580964-71.019249 71.014652c-6.948289 6.963279-16.201415 10.791683-26.042343 10.791683-9.830735 0-19.079464-3.828404-26.042743-10.791683-14.36626-14.358265-14.36626-37.717428 0-52.091482l71.012653-71.000662-92.580031-92.583029c-14.36626-14.359264-14.36626-37.732417 0-52.091482 6.952286-6.964278 16.205013-10.791683 26.042343-10.791683l0 0c9.833733 0 19.082462 3.827405 26.042343 10.776693l92.591023 92.599018 71.008656-71.016651c6.948289-6.948289 16.201016-10.776693 26.042343-10.776693l0.003997 0c9.833333 0 19.083062 3.813415 26.045341 10.776693 14.36626 14.373255 14.36626 37.732417 0 52.092681l-71.011654 71.014652 39.577167 39.568173c66.021038-54.446885 150.573511-87.195681 242.629897-87.195681 210.60461 0 381.933049 171.343429 381.933049 381.949039C963.356436 665.234659 792.027997 836.576489 581.423387 836.576489zM581.423387 146.38324c-169.963365 0-308.245809 138.28884-308.245809 308.2592S411.456025 762.90264 581.423387 762.90264c169.97036 0 308.2592-138.289839 308.2592-308.2602S751.393547 146.38324 581.423387 146.38324z" horiz-adv-x="1024" />
<glyph glyph-name="renwuzhipai" unicode="&#59301;" d="M1000.701907 156.738965c-14.090463 13.532425-32.505722 20.507902-51.897547 20.228882l-105.887739-1.116076c1.395095 5.719891 2.092643 11.858311 2.092643 17.857221 0 21.902997-9.486649 42.550409-25.948774 56.780381-14.92752 12.974387-34.040327 19.112807-53.711171 17.578202-19.810354-1.674114-37.667575-11.021253-50.362943-26.367303l-51.618529-62.360762c-17.159673-10.742234-29.855041-21.902997-38.92316-31.529156l-49.944415-0.418528c-14.648501-0.13951-26.367302-11.858311-26.367302-26.367303v-175.363488c0-14.508992 11.579292-26.367302 26.088283-26.367302l65.290464-0.697548 120.954768-39.20218 3.627248-0.976566c11.718801-3.06921 22.740054-5.99891 34.737875-6.417439h1.953133c23.856131 0 44.503542 11.439782 57.059401 31.668665 1.674114 2.650681 3.487738 5.719891 5.161853 9.06812 22.461035 9.06812 38.225613 30.552589 43.387465 60.12861 1.116076 5.719891 1.534605 11.021253 1.534605 15.904087 9.06812 10.323706 14.788011 23.437602 16.322616 38.644142l28.599455 0.13951c39.760218 1.534605 70.870845 34.319346 70.870845 74.637602v2.79019c-0.418529 19.810354-8.649591 38.225613-23.019074 51.758039z m-46.317166-58.454496c0-10.323706-7.673025-18.833787-17.578201-19.112807l-52.595096-0.139509c-6.975477 0-13.532425-3.208719-17.857221-8.510082-4.324796-5.301362-6.13842-12.416349-4.603814-19.252316 0.279019-1.813624 0.558038-3.766757 0.697547-5.719891 0.13951-1.395095 0.13951-2.790191 0.13951-4.045777 0-6.696458-1.813624-11.300272-5.301362-13.671934-8.091553-5.301362-11.99782-14.788011-9.905178-24.27466 0.279019-1.116076 0.418529-2.511172 0.418529-3.906267 0-1.953134-0.13951-4.045777-0.558038-6.556948-1.395095-7.812534-4.603815-17.438692-12.276839-18.415259-8.92861-1.116076-16.462125-7.394005-19.112807-16.043597-0.976567-3.348229-3.06921-6.975477-4.882834-9.905177-3.06921-5.022343-7.254496-5.580381-10.881744-5.580381-5.022343 0.13951-11.718801 1.813624-19.810354 4.045776l-109.794005 35.435423c-2.232153 0.697548-4.603815 1.116076-6.975477 1.116076l-40.178747 0.418529h-1.534605v107.422343l34.598366 0.139509c6.975477 0.13951 13.392916 3.06921 17.717711 8.510082 5.859401 7.254496 16.462125 17.857221 33.06376 27.901908 2.232153 1.395095 4.185286 2.9297 5.859401 5.022343l47.572752 57.617439c3.06921 3.766757 7.533515 6.13842 12.276839 6.556948 4.882834 0.558038 9.347139-0.976567 12.974387-4.185286 4.185286-3.627248 6.696458-8.92861 6.696457-14.788011 0-4.603815-1.534605-8.92861-4.603814-12.834878l-9.06812-11.85831c-5.301362-6.975477-6.277929-16.183106-2.511172-23.995641s11.718801-12.834877 20.368393-13.113896c5.440872-0.13951 11.858311-1.255586 19.949863-0.13951l119.001635 1.255586c4.743324 0 9.06812-1.534605 12.695368-4.882834 3.627248-3.348229 5.719891-8.231063 5.99891-13.532425l17.857221-0.558038h-17.857221zM784.322616 365.724251c-0.697548 0.837057-1.255586 1.674114-1.953134 2.511171-37.667575 40.039237-73.661035 67.383106-98.772752 84.124251 36.970027 46.735695 59.152044 105.748229 59.152044 169.783106C742.748774 773.092098 620.119891 896 469.170572 896 318.221253 896 195.313351 773.092098 195.313351 622.142779c0-72.40545 28.320436-138.39346 74.358584-187.361308C203.823433 389.580381-5.022343 224.40109 0.13951-42.759673c0.976567-47.014714 40.736785-85.100817 88.588555-85.100817h289.621799c19.670845 0.697548 35.435422 16.880654 35.435422 36.691008 0 19.252316-14.788011 35.016894-33.761308 36.551498-0.279019 0-0.697548 0-0.976567 0.13951H138.253951c-20.228883 0-55.803815 13.392916-55.803815 56.222343 0 189.174932 192.80218 344.449046 246.513352 385.46485 41.015804-24.553678 89.007084-38.644142 140.207084-38.644141 59.849591 0 115.234877 19.391826 160.435968 52.037057 22.600545-15.625068 59.431063-43.805995 97.517166-83.566213 6.975477-8.510082 17.438692-13.950954 29.297002-13.950953 20.786921 0 37.667575 16.880654 37.667575 37.667575 0 9.486649-3.766757 18.415259-9.765667 24.972207zM267.858311 622.142779C267.858311 733.192371 358.120981 823.455041 469.170572 823.455041c110.910082 0 201.172752-90.26267 201.172752-201.172752 0-110.910082-90.26267-201.172752-201.172752-201.172752-111.049591-0.13951-201.312262 90.123161-201.312261 201.033242z" horiz-adv-x="1024" />
<glyph glyph-name="wanchengrenwu" unicode="&#60012;" d="M293.376 486.912c15.36-15.36 39.424-15.36 54.784 0l136.704 136.704c15.36 15.36 15.36 39.424 0 54.784-15.36 15.36-39.424 15.36-54.784 0L320.512 569.344l-51.2 51.2c-15.36 15.36-39.424 15.36-54.784 0-15.36-15.36-15.36-39.424 0-54.784l78.848-78.848zM939.008 889.856H84.992C63.488 889.856 46.08 872.448 46.08 850.944v-933.888c0-21.504 17.408-38.912 38.912-38.912h854.528c21.504 0 38.912 17.408 38.912 38.912V850.944c-0.512 21.504-17.92 38.912-39.424 38.912z m-38.4-934.4H123.392V812.544h776.704v-857.088zM344.576 328.192c-74.752 0-135.68-60.928-135.68-135.68s60.928-135.68 135.68-135.68 135.68 60.928 135.68 135.68c0 75.264-60.416 135.68-135.68 135.68z m0-193.536c-32.256 0-58.368 26.112-58.368 58.368 0 32.256 26.112 58.368 58.368 58.368s58.368-26.112 58.368-58.368c0-32.256-26.112-58.368-58.368-58.368z m273.92 400.896h183.808c21.504 0 38.912 17.408 38.912 38.912s-17.408 38.912-38.912 38.912h-183.808c-21.504 0-38.912-17.408-38.912-38.912s17.408-38.912 38.912-38.912z m0-397.312h183.808c21.504 0 38.912 17.408 38.912 38.912s-17.408 38.912-38.912 38.912h-183.808c-21.504 0-38.912-17.408-38.912-38.912s17.408-38.912 38.912-38.912z" horiz-adv-x="1024" />
<glyph glyph-name="ziyuan1" unicode="&#59044;" d="M870.122529 896h-715.698925A138.735484 138.735484 0 0 1 18.440809 758.365591v-562.649462a137.083871 137.083871 0 0 1 138.184946-136.533333h41.84086l304.99785-187.182796v187.182796h366.658064a135.432258 135.432258 0 0 1 135.432258 136.533333V758.365591A137.083871 137.083871 0 0 1 870.122529 896z m-104.051613-545.582796c-51.2-67.716129-135.982796-101.849462-253.247312-101.849462s-203.148387 34.683871-252.146236 101.849462A296.189247 296.189247 0 0 0 217.184895 565.677419a59.458065 59.458065 0 0 0-18.167742 43.492473 61.660215 61.660215 0 1 0 123.32043 0 63.862366 63.862366 0 0 0-37.987097-55.053763 229.023656 229.023656 0 0 1 31.380645-163.509677c35.784946-48.447312 102.4-73.221505 197.092473-73.221506a235.07957 235.07957 0 0 1 198.193549 73.772043 235.07957 235.07957 0 0 1 35.234408 159.105377 61.660215 61.660215 0 1 0 84.232258 55.053763 60.55914 60.55914 0 0 0-17.066666-42.391398 306.649462 306.649462 0 0 0-47.346237-212.507527z" horiz-adv-x="1024" />
<glyph glyph-name="dingwei" unicode="&#59672;" d="M314.368 222.72c-1.024 1.536 1.024-1.024 0 0zM617.472 895.488c-223.744 0-404.48-180.736-404.48-402.944 0-102.4 39.936-198.144 103.424-269.312l262.656-330.752c20.48-26.112 54.272-26.112 75.264 0l261.632 330.752c66.56 71.68 107.008 163.84 107.008 269.312C1021.952 714.752 840.704 895.488 617.472 895.488z m0-605.184c-112.128 0-202.752 90.624-202.752 202.24s90.624 202.24 202.752 202.24c112.128 0 202.752-90.624 202.752-202.24-0.512-112.128-90.624-202.24-202.752-202.24z" horiz-adv-x="1234" />
<glyph glyph-name="gengduo2" unicode="&#59995;" d="M512-128C230.4-128 0 102.4 0 384S230.4 896 512 896s512-230.4 512-512-230.4-512-512-512z m0 960c-246.272 0-448-201.728-448-448s201.728-448 448-448 448 201.728 448 448-201.728 448-448 448zM189.44 384c0-40.448 32.768-73.216 73.216-73.216s73.216 32.768 73.216 73.216-32.768 73.216-73.216 73.216S189.44 424.448 189.44 384z m249.856 0c0-40.448 32.768-73.216 73.216-73.216s73.216 32.768 73.216 73.216-32.768 73.216-73.216 73.216-73.216-32.768-73.216-73.216z m249.344 0c0-40.448 32.768-73.216 73.216-73.216s73.216 32.768 73.216 73.216-32.768 73.216-73.216 73.216-73.216-32.768-73.216-73.216z" horiz-adv-x="1024" />
<glyph glyph-name="qiyexinxi" unicode="&#60026;" d="M445.952 614.4H380.416c-18.432 0-32.768-14.848-32.768-32.768 0-18.432 14.848-32.768 32.768-32.768h66.048c18.432 0 32.768 14.848 32.768 32.768 0 17.92-14.848 32.768-33.28 32.768z m0-131.584H380.416c-18.432 0-32.768-14.848-32.768-32.768 0-18.432 14.848-32.768 32.768-32.768h66.048c18.432 0 32.768 14.848 32.768 32.768 0 17.92-14.848 32.768-33.28 32.768z m0-131.584H380.416c-18.432 0-32.768-14.848-32.768-32.768 0-18.432 14.848-32.768 32.768-32.768h66.048c18.432 0 32.768 14.848 32.768 32.768 0 17.92-14.848 32.768-33.28 32.768z m0-131.584H380.416c-18.432 0-32.768-14.848-32.768-32.768 0-18.432 14.848-32.768 32.768-32.768h66.048c18.432 0 32.768 14.848 32.768 32.768 0 17.92-14.848 32.768-33.28 32.768zM643.584 614.4h-66.048c-18.432 0-32.768-14.848-32.768-32.768 0-18.432 14.848-32.768 32.768-32.768h66.048c18.432 0 32.768 14.848 32.768 32.768 0 17.92-14.336 32.768-32.768 32.768z m0-131.584h-66.048c-18.432 0-32.768-14.848-32.768-32.768 0-18.432 14.848-32.768 32.768-32.768h66.048c18.432 0 32.768 14.848 32.768 32.768 0 17.92-14.336 32.768-32.768 32.768z m0-131.584h-66.048c-18.432 0-32.768-14.848-32.768-32.768 0-18.432 14.848-32.768 32.768-32.768h66.048c18.432 0 32.768 14.848 32.768 32.768 0 17.92-14.336 32.768-32.768 32.768z m0-131.584h-66.048c-18.432 0-32.768-14.848-32.768-32.768 0-18.432 14.848-32.768 32.768-32.768h66.048c18.432 0 32.768 14.848 32.768 32.768 0 17.92-14.336 32.768-32.768 32.768zM972.8 22.016h-66.048V614.4c0 36.352-29.696 66.048-66.048 66.048h-131.584V745.984c0 36.352-29.696 66.048-66.048 66.048h-460.8c-36.352 0-66.048-29.696-66.048-66.048v-723.968H51.2c-18.432 0-32.768-14.848-32.768-32.768s14.848-32.768 32.768-32.768h921.6c18.432 0 32.768 14.848 32.768 32.768 0 17.92-14.336 32.768-32.768 32.768z m-790.016 0V745.984h460.8v-723.968h-460.8z m526.848 0V614.4h131.584v-592.384h-131.584z" horiz-adv-x="1024" />
<glyph glyph-name="jia" unicode="&#60025;" d="M811.52 867.84h-599.04c-122.88 0-184.32-61.44-184.32-184.32v-599.04c0-122.88 61.44-184.32 184.32-184.32h599.04c122.88 0 184.32 61.44 184.32 184.32v599.04c0 122.88-61.44 184.32-184.32 184.32z m138.24-783.36c0-92.16-46.08-138.24-138.24-138.24h-599.04c-92.16 0-138.24 46.08-138.24 138.24v599.04c0 92.16 46.08 138.24 138.24 138.24h599.04c92.16 0 138.24-46.08 138.24-138.24v-599.04zM488.96 407.04v286.72h46.08v-286.72h286.72v-46.08h-286.72v-286.72h-46.08v286.72h-286.72v46.08h286.72z" horiz-adv-x="1024" />
<glyph glyph-name="daishenhe_orange" unicode="&#58884;" d="M288.7 359.79999999999995c-15.4 0-27.9-10.3-27.9-23s12.5-23 27.9-23h111.6c15.4 0 27.9 10.3 27.9 23s-12.5 23-27.9 23H288.7zM638 488c0 12.7-12.5 23-27.9 23H288.7c-15.4 0-27.9-10.3-27.9-23s12.5-23 27.9-23H610c15.5 0 28 10.2 28 23zM610 656.6H288.7c-15.4 0-27.9-10.3-27.9-23s12.5-23 27.9-23H610c15.4 0 27.9 10.3 27.9 23 0.1 12.7-12.4 23-27.9 23zM740 382.9c-121.5 0-220-98.5-220-220s98.5-220 220-220 220 98.5 220 220-98.5 220-220 220z m0-394c-95.9 0-174 78.1-174 174s78.1 174 174 174 174-78.1 174-174-78.1-174-174-174zM488.4-11.100000000000023h-348c-16.6 0-30 13.4-30 30v738c0 16.6 13.4 30 30 30h618c16.6 0 30-13.4 30-30v-294h46v305c0 35.9-29.1 65-65 65h-640c-35.9 0-65-29.1-65-65v-760c0-35.9 29.1-65 65-65h359v46zM727.7 118.20000000000005c-12.7 0-23 10.3-23 23v94c0 12.7 10.3 23 23 23 12.6 0 23-10.3 23-23v-94c0-12.6-10.4-23-23-23zM844.7 140.79999999999995c0-12.7-10.3-23-23-23h-94c-12.7 0-23 10.3-23 23s10.3 23 23 23h94c12.6 0 23-10.4 23-23z" horiz-adv-x="1024" />
<glyph glyph-name="renwu1" unicode="&#58887;" d="M704 742.4h-384l-17.28-76.8h419.0208L704 742.4zM308.736 793.6h406.528c13.568 0 25.4976-10.496 28.9792-25.5744L768 665.6H256l23.7568 102.4256c3.4816 15.104 15.3856 25.5744 28.9792 25.5744zM281.6 409.6h256a25.6 25.6 0 0 0 0-51.2H281.6a25.6 25.6 0 0 0 0 51.2zM256 512m25.6 0l460.8 0q25.6 0 25.6-25.6l0 0q0-25.6-25.6-25.6l-460.8 0q-25.6 0-25.6 25.6l0 0q0 25.6 25.6 25.6ZM478.8992 214.656a25.6 25.6 0 0 1-36.1984-36.1984l118.1952-118.1952 203.264 203.2384a25.6 25.6 0 0 1-36.224 36.1984l-167.04-167.04-81.9968 81.9968zM153.6 640v-614.4h716.8V640H153.6z m154.4448 51.2l-10.9568-51.2 430.976-0.0512L716.6976 691.2H870.4a51.2 51.2 0 0 0 51.2-51.2v-614.4a51.2 51.2 0 0 0-51.2-51.2H153.6a51.2 51.2 0 0 0-51.2 51.2V640a51.2 51.2 0 0 0 51.2 51.2h154.4448z" horiz-adv-x="1024" />
<glyph glyph-name="shenhe" unicode="&#59250;" d="M436.736-99.328H177.664c-49.152 0-89.6 40.448-89.6 89.6V757.76c0 49.152 40.448 89.6 89.6 89.6h638.464c49.152 0 89.6-40.448 89.6-89.6v-316.928c0-15.36-12.8-28.16-28.16-28.16s-28.16 12.8-28.16 28.16V757.76c0 18.432-14.848 33.28-33.28 33.28H177.664c-18.432 0-33.28-14.848-33.28-33.28v-767.488c0-18.432 14.848-33.28 33.28-33.28h259.584c15.36 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.672-28.16zM587.776 611.84H249.344c-15.36 0-28.16 12.8-28.16 28.16s12.8 28.16 28.16 28.16h338.432c15.36 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z m108.032-146.432H249.344c-15.36 0-28.16 12.8-28.16 28.16s12.8 28.16 28.16 28.16h446.464c15.36 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z m-108.032-145.92H249.344c-15.36 0-28.16 12.8-28.16 28.16s12.8 28.16 28.16 28.16h338.432c15.36 0 28.16-12.8 28.16-28.16s-12.8-28.16-28.16-28.16z m326.656-236.544h-45.056c-11.776 23.552-24.064 53.248-24.064 67.584 0 3.584 0.512 5.12 6.656 13.312 10.752 14.336 27.136 36.352 27.136 91.136 0 58.368-47.616 105.984-105.984 105.984s-105.984-47.616-105.984-105.984c0-54.784 16.384-76.8 27.136-91.136 5.632-7.68 6.656-9.216 6.656-12.8 0-14.336-12.288-44.032-24.064-67.584h-59.392c-35.328 0-64-26.624-64-58.88v-61.952c0-32.768 28.672-58.88 64-58.88h296.96c35.328 0 64 26.624 64 58.88v61.952c0 31.744-28.672 58.368-64 58.368zM750.08 150.528c0 20.48-9.216 32.256-16.384 42.496-8.704 11.776-17.408 23.04-17.408 61.44 0 31.232 25.088 56.32 56.32 56.32s56.32-25.088 56.32-56.32c0-37.376-8.704-49.664-16.896-61.44l-0.512-0.512c-7.168-9.728-16.384-22.016-16.384-41.984 0-19.968 8.704-45.568 18.944-67.584h-82.944c10.24 22.528 18.944 48.128 18.944 67.584zM602.624 24.064c0 4.608 6.144 9.728 14.848 9.728h296.96c8.704 0 14.848-5.12 14.848-9.728v-61.952c0-4.608-6.144-9.728-14.848-9.728h-296.96c-8.704 0-14.848 5.12-14.848 9.728v61.952z" horiz-adv-x="1024" />
<glyph glyph-name="gengduo1" unicode="&#59020;" d="M234.666667 384m-64 0a64 64 0 1 1 128 0 64 64 0 1 1-128 0ZM512 384m-64 0a64 64 0 1 1 128 0 64 64 0 1 1-128 0ZM789.333333 384m-64 0a64 64 0 1 1 128 0 64 64 0 1 1-128 0Z" horiz-adv-x="1024" />
<glyph glyph-name="jian" unicode="&#58932;" d="M707.047619 359.619048h-390.095238c-14.628571 0-24.380952 9.752381-24.380952 24.380952s9.752381 24.380952 24.380952 24.380952h390.095238c14.628571 0 24.380952-9.752381 24.380952-24.380952s-9.752381-24.380952-24.380952-24.380952zM853.333333-128h-682.666666C78.019048-128 0-49.980952 0 42.666667v682.666666C0 817.980952 78.019048 896 170.666667 896h682.666666C945.980952 896 1024 817.980952 1024 725.333333v-682.666666c0-97.52381-73.142857-170.666667-170.666667-170.666667zM170.666667 847.238095C102.4 847.238095 48.761905 793.6 48.761905 725.333333v-682.666666C48.761905-25.6 102.4-79.238095 170.666667-79.238095h682.666666c68.266667 0 121.904762 53.638095 121.904762 121.904762v682.666666C975.238095 793.6 921.6 847.238095 853.333333 847.238095h-682.666666z" horiz-adv-x="1024" />
<glyph glyph-name="guanliyuanliebiao" unicode="&#58889;" d="M937.472-62.464c2.56 3.072 4.608 6.144 6.656 9.728-2.048-3.072-4.096-6.656-6.656-9.728zM839.68 159.232h-129.536c-13.312 0-24.064 10.752-24.064 24.064s10.752 24.064 24.064 24.064H839.68c13.312 0 24.064-10.752 24.064-24.064s-10.752-24.064-24.064-24.064zM839.68 58.88h-231.424c-13.312 0-24.064 10.752-24.064 24.064s10.752 24.064 24.064 24.064H839.68c13.312 0 24.064-10.752 24.064-24.064s-10.752-24.064-24.064-24.064zM839.68-41.472h-129.536c-13.312 0-24.064 10.752-24.064 24.064s10.752 24.064 24.064 24.064H839.68c13.312 0 24.064-10.752 24.064-24.064s-10.752-24.064-24.064-24.064zM514.56 872.96C377.344 872.96 266.24 763.392 266.24 628.736S377.344 384 514.56 384 762.88 493.568 762.88 628.736 651.776 872.96 514.56 872.96z m0-442.88c-111.104 0-201.216 88.576-201.216 198.144s90.112 198.144 201.216 198.144 201.216-88.576 201.216-198.144S625.664 430.08 514.56 430.08zM758.272-10.752c2.048 2.048 3.584 4.608 4.608 7.168-1.536-2.048-3.072-4.608-4.608-7.168zM514.56 70.144c0 109.568 75.776 201.728 178.176 225.792-20.992 4.096-41.984 6.656-64 6.656H421.888c-175.104 0-317.44-140.288-320-315.392v-20.48c0-71.168 143.36-71.168 320-71.168H593.92c-48.64 42.496-79.36 104.96-79.36 174.592zM506.88-62.464l-126.464 5.12c-128.512 0-229.376 11.264-229.376 62.976V20.48c1.536 126.976 120.832 238.592 247.296 238.592l97.28 9.728h7.168 0c20.48 0.512 64 1.536 77.312-1.024-74.24-17.92-129.536-107.52-129.536-187.392 0-50.176 20.992-112.128 56.32-142.848z" horiz-adv-x="1024" />
<glyph glyph-name="bumen" unicode="&#60024;" d="M384 646.144V761.856c0 38.912-31.232 70.144-70.144 70.144H134.144c-38.912 0-70.144-31.232-70.144-70.144v-116.224c0-38.912 31.232-70.144 70.144-70.144h180.224c38.4 0.512 69.632 31.744 69.632 70.656zM889.856 192h-180.224c-38.912 0-70.144-31.232-70.144-70.144v-116.224c0-38.912 31.232-70.144 70.144-70.144h180.224c38.912 0 70.144 31.232 70.144 70.144v116.224c0 38.912-31.232 70.144-70.144 70.144zM889.856 512h-180.224c-38.912 0-70.144-31.232-70.144-70.144v-116.224c0-38.912 31.232-70.144 70.144-70.144h180.224c38.912 0 70.144 31.232 70.144 70.144V441.856c0 38.912-31.232 70.144-70.144 70.144zM536.064 392.192H264.192V472.064c0 22.016-17.92 39.936-39.936 39.936S184.32 494.08 184.32 472.064v-432.128c0-22.016 17.92-39.936 39.936-39.936h311.808c22.016 0 39.936 17.92 39.936 39.936s-17.92 39.936-39.936 39.936H264.192v231.936h271.872c22.016 0 39.936 17.92 39.936 39.936s-17.92 40.448-39.936 40.448z" horiz-adv-x="1024" />
<glyph glyph-name="xiafa" unicode="&#58954;" d="M482.742857-62.171429H124.342857c-65.828571 0-124.342857 51.2-124.342857 117.028572V778.971429C0 844.8 51.2 896 124.342857 896h592.457143c65.828571 0 124.342857-51.2 124.342857-117.028571v-226.742858c0-21.942857-14.628571-36.571429-36.571428-36.571428s-36.571429 14.628571-36.571429 36.571428V778.971429c0 29.257143-21.942857 51.2-51.2 51.2H124.342857c-29.257143 0-51.2-21.942857-51.2-51.2v-716.8c0-29.257143 21.942857-51.2 51.2-51.2h431.542857c14.628571 0 29.257143-14.628571 29.257143-36.571429s-14.628571-36.571429-36.571428-36.571429h-65.828572zM768 354.742857c0 21.942857 14.628571 36.571429 36.571429 36.571429s36.571429-14.628571 36.571428-36.571429v-270.628571l73.142857 65.828571c14.628571 14.628571 36.571429 14.628571 51.2 0 14.628571-14.628571 14.628571-36.571429 0-43.885714l-153.6-146.285714-51.2 51.2L658.285714 106.057143c-7.314286 14.628571-7.314286 29.257143 0 43.885714 0 14.628571 21.942857 14.628571 36.571429 0l65.828571-65.828571 7.314286-7.314286V354.742857zM256 537.6h343.771429c21.942857 0 36.571429 14.628571 36.571428 36.571429S614.4 603.428571 592.457143 603.428571H256c-21.942857 0-36.571429-14.628571-36.571429-36.571428s14.628571-29.257143 36.571429-29.257143zM256 318.171429h343.771429c21.942857 0 36.571429 14.628571 36.571428 36.571428S614.4 384 592.457143 384H256c-21.942857 0-36.571429-14.628571-36.571429-36.571429s14.628571-29.257143 36.571429-29.257142z" horiz-adv-x="1024" />
<glyph glyph-name="gengduo" unicode="&#58883;" d="M512 635.79335767m-59.49194128 0a59.49194128 59.49194128 0 1 1 118.98388256 0 59.49194128 59.49194128 0 1 1-118.98388256 0ZM512 394.89289134m-59.49194128 0a59.49194128 59.49194128 0 1 1 118.98388256 0 59.49194128 59.49194128 0 1 1-118.98388256 0ZM512 153.99242354m-59.49194128 0a59.49194128 59.49194128 0 1 1 118.98388256 0 59.49194128 59.49194128 0 1 1-118.98388256 0Z" horiz-adv-x="1024" />
<glyph glyph-name="xitongguanlitubiao_mobanshezhi" unicode="&#58904;" d="M870.4-29.4H153.6c-30.3 0-55 24.7-55 55V742.4c0 30.3 24.7 55 55 55h716.8c30.3 0 55-24.7 55-55v-716.8c0-30.3-24.7-55-55-55z m-685.8 86h654.8V711.4H184.6v-654.8zM730.2 447.3H293.8c-6.6 0-12 5.4-12 12v150c0 6.6 5.4 12 12 12h436.5c6.6 0 12-5.4 12-12v-150c-0.1-6.6-5.5-12-12.1-12zM443.8 193.3h-150c-6.6 0-12 5.4-12 12v150c0 6.6 5.4 12 12 12h150c6.6 0 12-5.4 12-12v-150c0-6.6-5.4-12-12-12zM722.7 193.3h-150c-6.6 0-12 5.4-12 12v150c0 6.6 5.4 12 12 12h150c6.6 0 12-5.4 12-12v-150c0-6.6-5.4-12-12-12z" horiz-adv-x="1024" />
<glyph glyph-name="ribao" unicode="&#59216;" d="M783.36 896H212.195556C142.222222 896 85.333333 837.233778 85.333333 764.700444V42.666667c0-72.533333 56.832-131.299556 126.862223-131.299556h571.164444c70.030222 0 126.862222 58.766222 126.862222 131.299556V764.700444C910.222222 837.233778 853.390222 896 783.36 896z m69.973333-865.564444c0-37.262222-28.956444-67.413333-64.625777-67.413334H206.848C171.235556-36.977778 142.222222-6.826667 142.222222 30.435556V771.697778C142.222222 808.96 171.178667 839.111111 206.848 839.111111h581.859556c35.669333 0 64.625778-30.151111 64.625777-67.413333v-741.262222zM682.666667 158.264889h-398.222223a28.444444 28.444444 0 1 1 0-56.888889h398.222223a28.444444 28.444444 0 1 1 0 56.888889z m0 170.666667h-398.222223a28.444444 28.444444 0 1 1 0-56.888889h398.222223a28.444444 28.444444 0 1 1 0 56.888889zM584.248889 566.328889c0 11.264-1.422222 23.153778-4.209778 35.555555a93.468444 93.468444 0 0 1-15.815111 34.588445 73.045333 73.045333 0 0 1-37.774222 27.306667A121.287111 121.287111 0 0 1 492.088889 668.444444H369.777778v-214.755555h122.311111c33.564444 0 58.311111 13.312 74.410667 40.106667 11.832889 19.740444 17.692444 43.918222 17.692444 72.533333zM426.666667 611.555556h62.805333c17.749333 0 29.696-4.437333 35.612444-13.368889 5.916444-8.931556 8.931556-21.674667 8.931556-38.343111 0-12.060444-1.991111-22.471111-5.973333-31.232-7.224889-15.928889-20.081778-23.779556-38.570667-23.779556H426.666667V611.555556z" horiz-adv-x="1024" />
<glyph glyph-name="ribaoshezhi" unicode="&#59380;" d="M908.972612 236.586644H714.526802a72.916929 72.916929 0 0 1-72.916929-72.916929v-218.751786A72.916929 72.916929 0 0 1 714.526802-127.999h194.44581a72.916929 72.916929 0 0 1 72.916929 72.916929V-6.469119a24.305976 24.305976 0 0 1-48.611952 0v-72.917928H690.220826V187.974691h243.056763v-72.916928a24.305976 24.305976 0 0 1 48.611952 0V163.670715a72.916929 72.916929 0 0 1-72.916929 72.916929z m-10.694989 267.362739a417.329592 417.329592 0 0 1-29.652971 72.916929 123.22988 123.22988 0 0 1-3.888996 166.979837 116.909886 116.909886 0 0 1-83.854919 34.756966 118.125885 118.125885 0 0 1-80.207921-31.596969 401.043608 401.043608 0 0 1-71.45993 30.38197 118.611884 118.611884 0 0 1-237.222769 0 399.34261 399.34261 0 0 1-71.70193-30.38197 118.125885 118.125885 0 0 1-80.208921 31.596969 116.909886 116.909886 0 0 1-84.583918-35.242966 123.22988 123.22988 0 0 1-2.915997-166.493837 417.329592 417.329592 0 0 1-29.652971-72.916929 121.528881 121.528881 0 0 1 0-241.841764 415.384594 415.384594 0 0 1 29.652971-72.916929 123.22988 123.22988 0 0 1 2.915997-167.709836 116.909886 116.909886 0 0 1 84.583918-35.242966 118.125885 118.125885 0 0 1 80.209921 31.59697 399.34261 399.34261 0 0 1 71.45793-30.381971A121.528881 121.528881 0 0 1 510.602001-127.999a112.29189 112.29189 0 0 1 33.784967 5.589995 36.215965 36.215965 0 0 1 20.90298 51.04195 34.999966 34.999966 0 0 1-41.07696 18.715981 45.451956 45.451956 0 0 0-14.339986-2.429997 48.610953 48.610953 0 0 0-47.152954 46.179955l-1.944998 51.04195-48.610953 14.826985a328.369679 328.369679 0 0 0-58.819942 24.304977l-44.236957 24.305976-37.186964-34.270967a48.610953 48.610953 0 0 0-32.326968-12.639987 46.179955 46.179955 0 0 0-33.298967 13.854986 48.610953 48.610953 0 0 0-0.729 66.839935l33.541967 37.917963-24.305976 45.207956a341.737666 341.737666 0 0 0-24.304976 60.035941l-14.583986 48.610953-49.339952 2.673997a48.610953 48.610953 0 0 0 0 97.222905l50.069951 2.672997 14.582986 48.611953a341.737666 341.737666 0 0 0 24.304977 60.034941l24.305976 45.207956-34.269967 37.916963a48.610953 48.610953 0 0 0 1.213999 66.597935 46.179955 46.179955 0 0 0 33.299968 13.610987 48.610953 48.610953 0 0 0 32.325968-12.638988l37.187964-34.269966 44.235956 24.304976a329.099679 329.099679 0 0 0 58.819943 24.305976l48.610953 14.825986 2.673997 51.04195a47.152954 47.152954 0 0 0 94.305908 0l1.944998-50.555951 48.610952-14.825985a328.369679 328.369679 0 0 0 58.819943-24.305977l44.235957-24.305976 36.701964 33.784967a48.610953 48.610953 0 0 0 32.325968 12.639988 46.179955 46.179955 0 0 0 33.299968-13.854987 48.610953 48.610953 0 0 0 1.214999-66.354935l-33.541968-37.916963 24.304977-45.207956a341.737666 341.737666 0 0 0 24.305976-60.034941l14.583986-48.611953 49.339952-2.672997a48.610953 48.610953 0 0 0 36.701964-75.590926 33.055968 33.055968 0 0 1 8.019992-48.611953l7.049993-4.374995a31.353969 31.353969 0 0 1 41.804959 8.749991 121.528881 121.528881 0 0 1-89.687912 192.744812z m-367.501641 38.645962a156.771847 156.771847 0 0 0 129.791873-117.396885 159.688844 159.688844 0 0 0 1.701998-70.485931 37.673963 37.673963 0 0 1 17.013984-40.589961 35.485965 35.485965 0 0 1 52.499948 24.304977 235.52177 235.52177 0 0 1 0 97.222905 226.771779 226.771779 0 0 1-445.037565-86.771916 229.445776 229.445776 0 0 1 178.160826-189.340815 224.82778 224.82778 0 0 1 61.73694-4.131996 36.458964 36.458964 0 1 1-5.833995 72.916929 145.833858 145.833858 0 0 0-77.777924 16.284984 158.959845 158.959845 0 0 0-86.041916 118.854884 156.771847 156.771847 0 0 0 173.785831 179.132825z m317.43169-403.231606h-48.610953a36.458964 36.458964 0 0 1 0-72.916929h48.610953a36.458964 36.458964 0 1 1 0 72.916929z m0-97.222905h-48.610953a36.458964 36.458964 0 0 1 0-72.916929h48.610953a36.458964 36.458964 0 1 1 0 72.916929z" horiz-adv-x="1024" />
<glyph glyph-name="renwu" unicode="&#59258;" d="M837.632 821.76H178.688c-60.416 0-110.08-49.152-110.08-110.08v-658.944c0-60.416 49.152-110.08 110.08-110.08h658.944c60.416 0 110.08 49.152 110.08 110.08V711.6800000000001c0 60.928-49.152 110.08-110.08 110.08z m64.512-754.176c0-44.032-35.328-79.36-79.36-79.36H193.536c-44.032 0-79.36 35.328-79.36 79.36V696.832c0 44.032 35.328 79.36 79.36 79.36h629.248c44.032 0 79.36-35.328 79.36-79.36v-629.248zM401.92 582.144L316.416 495.616l-38.912 39.424c-11.776 11.776-31.232 11.776-38.912 0-11.776-11.776-11.776-31.232 0-39.424l62.464-62.976c4.096-4.096 11.776-7.68 23.552-7.68s11.776 4.096 23.552 7.68l104.96 105.984c11.776 11.776 11.776 31.232 0 39.424-24.064 11.776-39.936 11.776-51.2 4.096zM759.808 535.04H491.008c-19.456 0-27.136-11.776-27.136-27.648 0-19.456 11.776-27.648 27.136-27.648h268.288c19.456 0 27.136 11.776 27.136 27.648 0.512 15.872-11.264 27.648-26.624 27.648zM331.776 357.88800000000003c-50.688 0-89.6-39.424-89.6-90.624s38.912-90.624 89.6-90.624 89.6 39.424 89.6 90.624c0 55.296-43.008 90.624-89.6 90.624z m0-118.272c-19.456 0-31.232 11.776-31.232 31.232s11.776 31.232 31.232 31.232 31.232-11.776 31.232-31.232c0-18.944-15.872-31.232-31.232-31.232zM759.808 299.00800000000004H491.008c-19.456 0-27.136-11.776-27.136-27.648 0-15.872 11.776-27.648 27.136-27.648h268.288c19.456 0 27.136 11.776 27.136 27.648 0.512 15.872-11.264 27.648-26.624 27.648z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiao" unicode="&#58896;" d="M649.671111-55.182222c14.449778 0 26.168889 11.320889 26.168889 25.258666v275.968a25.713778 25.713778 0 0 1-26.168889 25.258667 25.713778 25.713778 0 0 1-26.168889-25.258667v-275.911111c0-13.880889 11.719111-25.315556 26.168889-25.315555z m-228.636444 0c14.449778 0 26.168889 11.320889 26.168889 25.258666V356.465778a25.713778 25.713778 0 0 1-26.168889 25.258666 25.713778 25.713778 0 0 1-26.168889-25.258666v-386.275556a25.713778 25.713778 0 0 1 26.168889-25.372444z m-202.524445 246.101333v-220.728889a25.713778 25.713778 0 0 0-26.168889-25.258666 25.713778 25.713778 0 0 0-26.225777 25.258666v220.728889c0 13.937778 11.719111 25.258667 26.168888 25.258667s26.168889-11.320889 26.168889-25.258667z m722.432 370.915556a26.055111 26.055111 0 0 0-26.339555 25.656889V694.328889l-295.822223-291.84c-0.170667-0.113778-0.284444-0.113778-0.398222-0.284445-0.341333-0.227556-0.967111-0.455111-1.422222-0.910222-0.227556-0.227556-0.512-0.455111-0.568889-0.682666a25.258667 25.258667 0 0 0-35.271111 0.227555l-211.740444 207.644445-265.671112-261.973334a27.704889 27.704889 0 0 0-38.855111 0 27.136 27.136 0 0 0 0 38.513778l281.6 277.504a27.477333 27.477333 0 0 0 10.24 6.257778 24.746667 24.746667 0 0 0 27.306667-5.12l0.284444-0.398222 0.398223-0.284445c0.113778-0.227556 0.341333-0.341333 0.568889-0.455111l0.227555-0.455111 209.806222-205.653333 277.959111 273.749333h-103.765333a25.941333 25.941333 0 0 0-26.168889 25.713778c0 14.222222 11.719111 25.656889 26.168889 25.656889h163.100445a25.998222 25.998222 0 0 0 16.725333-1.649778l0.227555-0.113778c10.638222-3.754667 17.578667-13.084444 17.578667-24.007111v-168.277333c0-14.222222-11.719111-25.656889-26.168889-25.656889zM883.655111-55.182222a25.998222 25.998222 0 0 0-26.168889 25.770666V363.178667c0 14.222222 11.719111 25.656889 26.168889 25.656889s26.168889-11.491556 26.168889-25.6v-392.760889c0-14.165333-11.719111-25.656889-26.168889-25.656889z" horiz-adv-x="1024" />
<glyph glyph-name="huawujinengzupeizhi" unicode="&#58881;" d="M699.5-85.2c-143.8 0-296.6 77.9-408.8 208.5-130.5 151.9-180.9 348.9-128.4 501.9 15 43.6 51 74.8 96.4 83.5 49.9 10 102.8-9.3 138-50.2l72.4-84.2c33.1-38.6 30.1-95.7-6.7-127.3l-0.1-0.1-11-9.4c-11.8-10.1-24-17.1-36.5-24-4.1-2.3-14.8-8.1-17.7-11-3.6-17.6 0.8-45 11.9-73.7 11.9-30.7 30.1-59.4 49.7-78.6 16.7-16.4 39.9-32.6 63.8-44.6s46-18.5 60.8-17.7c3.1 1.1 12 12.1 17.2 18.6 7.6 9.5 17.1 21.4 29.4 32l12 10.3c16.7 14.4 39.1 21.1 61.6 18.4 21.2-2.7 40.7-13.2 54.8-29.7l85.7-99.7c32-37.3 42.9-88.2 28.4-132.9-13.3-41.2-45-70.6-86.9-80.5-27.5-6.3-56.4-9.6-86-9.6zM285.1 668.9c-6.1 0-12.1-0.6-18.1-1.8h-0.1c-30.3-5.8-54.4-26.6-64.3-55.7-23.2-67.7-24.3-146.6-3.2-228.3 21.3-82.6 64.1-162.9 123.7-232.2 104.3-121.3 245.1-193.7 376.6-193.7 26.3 0 51.9 2.9 76.2 8.6 27.1 6.4 47.6 25.5 56.3 52.3 9.9 30.7 2.2 66-20.2 92.1L726.1 210c-7.2 8.5-17.1 13.8-27.8 15.2-10.6 1.3-21-1.8-28.6-8.4l-12.1-10.4c-9.3-8-17.1-17.7-23.9-26.3-14.1-17.6-26.3-32.8-47-34.4h-0.4c-47.9-3-117.6 35.4-157.3 74.3-23.8 23.3-45.5 57.4-59.6 93.6-14.7 37.8-19.5 73.1-13.6 99.4 4.3 19.1 20.9 28.3 38.5 37.9 10.9 6 20.6 11.5 29.3 19l0.1 0.1 11 9.3c19 16.4 19.9 46.6 2.1 67.4l-72.4 84.2c-20.8 24.3-50 38-79.3 38zM702.4 784.9c-60.4 0-109.9-49.5-109.9-109.9S642 565.1 702.4 565.1 812.3 614.6 812.3 675s-49.4 109.9-109.9 109.9z m0-180.6c-38.9 0-70.7 31.8-70.7 70.7s31.8 70.7 70.7 70.7 70.7-31.8 70.7-70.7c0-38.9-31.8-70.7-70.7-70.7zM700.1 761.3c-11 0-19.6 8.6-19.6 19.6V812.4c0 11 8.6 19.6 19.6 19.6s19.6-8.6 19.6-19.6V781c0-11-8.7-19.7-19.6-19.7zM627.8 728.8c-5.1 0-10.2 2-14.1 5.9l-22.8 23.5c-7.5 7.9-7.5 20.4 0.4 27.9s20.4 7.5 27.9-0.4l22.8-23.5c7.5-7.8 7.5-20.4-0.4-27.9-3.9-3.6-8.7-5.5-13.8-5.5zM598 655.4h-31.4c-11 0-19.6 8.6-19.6 19.6s8.6 19.6 19.6 19.6H598c11 0 19.6-8.6 19.6-19.6s-8.6-19.6-19.6-19.6zM606.2 558c-5.1 0-10.2 2-13.7 5.9-7.9 7.9-7.9 20 0 27.9l23.2 23.2c7.8 7.9 20 7.9 27.9 0s7.9-20 0-27.9l-23.2-23.2c-3.9-3.9-9-5.9-14.2-5.9zM704 518c-11 0-19.6 8.6-19.6 19.6v35.3c0 11 8.6 19.6 19.6 19.6s19.6-8.6 19.6-19.6v-35.3c0-11-8.6-19.6-19.6-19.6zM800.1 558.8c-5.1 0-10.2 2-13.7 5.9l-23.2 23.2c-7.8 7.8-7.8 20 0 27.9 7.9 7.8 20 7.8 27.9 0l23.2-23.2c7.9-7.9 7.9-20 0-27.9-3.9-3.9-9-5.9-14.2-5.9zM841.4 655.4H806c-11 0-19.6 8.6-19.6 19.6s8.6 19.6 19.6 19.6h35.3c11 0 19.6-8.6 19.6-19.6 0.1-11-8.5-19.6-19.5-19.6zM775.8 729.6c-5.1 0-10.2 2-13.7 5.9-7.8 7.8-7.8 20 0 27.9l23.2 23.2c7.8 7.8 20 7.8 27.9 0 7.8-7.9 7.8-20 0-27.9L790 735.5c-4-4-9.1-5.9-14.2-5.9z" horiz-adv-x="1024" />
<glyph glyph-name="buliangpingjiashezhi" unicode="&#59382;" d="M898.048 503.808c-7.68 25.088-17.408 49.664-29.696 72.704 42.496 48.128 40.448 120.832-4.096 166.912-22.016 22.528-52.224 34.816-83.968 34.816-29.696 0-58.368-11.264-80.384-31.744-22.528 12.288-46.592 22.528-71.68 30.208 1.024 66.048-52.224 119.296-117.76 119.296S392.192 842.752 392.192 777.216c-25.088-7.68-48.64-17.92-71.68-30.208-22.016 20.48-50.688 31.744-80.384 31.744-31.744 0-62.464-12.288-84.48-35.328-44.032-46.592-45.056-118.784-3.072-166.4-12.288-23.552-22.016-47.616-29.696-72.704-66.56-6.656-115.712-66.048-108.544-133.12 5.632-57.344 51.2-102.912 108.544-108.544 7.68-25.088 17.408-49.664 29.696-72.704-43.008-48.128-41.984-121.344 3.072-167.936 22.016-22.528 52.736-35.328 84.48-35.328 29.696 0 58.368 11.264 80.384 31.744 22.528-12.288 46.592-22.528 71.68-30.208 3.072-63.488 55.296-114.176 118.784-115.2 11.264 0 23.04 2.048 33.792 5.632 18.944 6.144 29.184 26.624 23.04 45.568-0.512 2.048-1.536 3.584-2.048 5.12-7.168 15.36-24.576 23.552-40.96 18.944-4.608-1.536-9.216-2.56-14.336-2.56-25.6 0.512-46.08 20.992-47.104 46.08l-2.048 51.2-48.64 14.848c-20.48 6.144-39.936 14.336-58.88 24.064l-44.032 24.064-37.376-34.304c-8.704-8.192-20.48-12.8-32.256-12.8-12.288 0-24.576 5.12-33.28 13.824-17.92 18.432-18.432 48.128-0.512 67.072l33.792 37.888-24.064 45.056c-10.24 18.944-17.92 39.424-24.064 59.904l-14.336 48.64-49.152 2.56c-26.624 0-48.64 22.016-48.64 48.64s22.016 48.64 48.64 48.64l50.176 2.56 14.336 48.64c6.144 20.992 14.336 40.96 24.064 59.904l24.064 45.056-34.304 37.888c-17.408 18.944-16.896 48.128 1.024 66.56 8.704 8.704 20.992 13.824 33.28 13.824 11.776 0 23.552-4.608 32.256-12.8l37.376-34.304 44.032 24.064c18.944 9.728 38.4 17.92 58.88 24.064l48.64 14.848 2.56 51.2c0 26.112 20.992 47.104 47.104 47.104s47.104-20.992 47.104-47.104l2.048-50.688 48.64-14.848c20.48-6.144 39.936-14.336 58.88-24.064l44.032-24.064 36.864 33.792c8.704 8.192 20.48 12.8 32.256 12.8 12.288 0 24.576-5.12 33.28-13.824 17.92-18.432 18.432-47.104 1.024-66.56l-33.792-37.888 24.064-45.056c10.24-18.944 17.92-39.424 24.064-59.904l14.336-48.64 49.152-2.56c26.624-2.048 46.592-25.6 45.056-52.224-0.512-8.192-3.584-16.384-8.192-23.552-11.264-14.336-9.216-34.816 5.12-46.592 1.024-0.512 2.048-1.536 3.072-2.048l7.168-4.608c13.824-8.704 32.256-4.608 41.984 8.704 39.424 54.272 27.648 130.048-26.624 169.984-18.944 13.824-40.448 21.504-63.488 23.04zM530.944 542.72C593.92 533.504 645.12 486.912 660.48 424.96c5.632-23.04 6.144-47.104 1.536-70.656-3.584-15.872 3.072-32.256 16.896-40.448 16.896-9.728 38.912-3.584 48.64 13.312 2.048 3.584 3.584 7.168 4.096 11.264 6.656 32.256 6.656 65.024 0 97.28-26.624 122.368-147.968 199.68-270.336 173.056-117.76-26.112-195.072-140.288-174.592-260.096 14.336-93.696 85.504-168.96 178.176-189.44 20.48-4.096 40.96-5.632 61.952-4.096 19.968 1.536 35.328 19.456 33.792 39.424-1.536 19.968-19.456 35.328-39.424 33.792-27.136-2.048-53.76 3.584-77.824 16.384-46.592 23.04-78.336 67.584-86.016 118.784-12.8 85.504 46.08 165.376 131.584 178.688 13.312 2.048 27.648 2.048 41.984 0.512zM706.048-126.464c-3.072 0-5.632 0.512-8.704 1.024-32.256 6.656-46.08 25.6-58.88 54.784-7.168 16.384-22.016 58.88-35.328 96.768h-25.088v284.672h265.216c35.84 0 65.536-29.184 66.56-65.024l21.504-173.568v-1.536c0-49.152-28.672-66.56-55.808-66.56h-90.112l0.512-1.536c13.312-53.76-8.192-86.528-22.016-101.376-15.872-16.896-38.912-27.648-57.856-27.648zM660.48 61.44c22.016-61.952 37.888-103.936 41.472-112.128 2.048-5.12 5.632-7.168 7.68-7.68 5.12 3.584 18.432 15.872 13.824 36.352l-23.552 93.184h163.328l-21.504 171.008h-181.76V61.44z" horiz-adv-x="1024" />
<glyph glyph-name="huawushuju" unicode="&#58880;" d="M724.8-64c-161.8 0-333.7 87.7-459.9 234.6-71.7 83.5-123.2 180.4-149.1 280.3-26.1 100.9-24.5 199.3 4.6 284.3 16.9 49 57.5 84.1 108.5 93.9 56.1 11.1 115.6-10.5 155.2-56.4l81.4-94.7c37.2-43.4 33.9-107.6-7.5-143.2l-12.4-10.6c-13.6-11.7-28.4-20-40.2-26.6l-0.8-0.5c-5.2-2.8-16.9-9.4-20.1-12.5-4.1-19.8 0.9-50.6 13.4-82.8 13.4-34.6 33.8-66.7 56-88.4 18.8-18.5 45-36.7 71.8-50.3 26.9-13.5 51.8-20.7 68.4-19.9 3.6 1.1 13.8 14 19.3 20.9 8 10.1 19 24 33 36.1l13.5 11.6c18.7 16.3 44 23.8 69.4 20.6 23.7-2.9 45.5-14.7 61.5-33.2L887.5 187c36-41.8 48.3-99.2 32-149.5-15.1-46.5-50.7-79.4-97.8-90.5-31-7.3-63.6-11-96.9-11zM258.5 784.2c-6.8 0-13.5-0.7-20.3-2h-0.2c-34.1-6.5-61.2-29.9-72.4-62.6-26.1-76.1-27.4-164.9-3.6-256.8 24-92.9 72.1-183.2 139.1-261.2 117.3-136.6 275.7-218 423.7-218 29.5 0 58.4 3.3 86 9.8 30.5 7.1 53.6 28.6 63.4 58.7 11.2 34.6 2.5 74.3-22.7 103.7L755 268.2c-8.2 9.6-19.3 15.6-31.1 17-12 1.5-23.9-2-32.4-9.4l-0.1-0.1-13.5-11.6c-10.5-9.1-19.6-20.5-26.9-29.7-15.8-19.8-29.4-36.8-52.8-38.7h-0.5c-54-3.4-132.4 39.9-176.9 83.7-26.8 26.2-51.3 64.6-67.1 105.2-16.6 42.5-22 82.3-15.2 111.8 4.8 21.3 22.6 31.1 43.3 42.6l0.8 0.4c11 6.1 22.3 12.4 32.2 21l0.1 0.1 12.4 10.6c21.3 18.4 22.4 52.4 2.4 75.8L348 741.6c-23.5 27.2-56.5 42.6-89.5 42.6zM499.2 718.7c-5.8 5.8-9 13.6-9 21.8 0 17 13.7 30.7 30.7 30.7h322.8c17 0 30.7-13.7 30.7-30.7s-13.7-30.7-30.7-30.7H520.9c-8.1-0.2-15.9 3.1-21.7 8.9zM577.5 581.9c-5.8 5.8-9 13.6-9 21.8 0 17 13.7 30.7 30.7 30.7h237.6c17 0 30.7-13.7 30.7-30.7S853.8 573 836.8 573H599.2c-8.2-0.1-16 3.2-21.7 8.9z" horiz-adv-x="1024" />
<glyph glyph-name="shuaxin" unicode="&#58907;" d="M514.2192079454815-22.115148686222142c201.94797037037037 0 370.6078142767407 144.24855043792593 401.6767327952593 341.7581037037037 2.2192079454814815 11.096042154666666-6.657625050074073 24.411293468444445-17.75366720474074 24.41129225481481-13.315251313777777 2.2192079454814815-24.411293468444445-6.657625050074073-24.411293468444445-17.75366720474074-28.849710573037036-177.53667690192594-177.53667690192594-306.2507680805926-357.2925629629629-306.2507680805926-199.72876242488888 0-361.73098006755555 162.00221764266664-361.73098006755555 361.73098006755555s162.00221764266664 361.73098006755555 361.73098006755555 361.73097885392593c177.53667690192594 0 326.22364444444446-126.49488201955555 357.2925629629629-301.81235097599995 2.2192079454814815-11.096042154666666 13.315251313777777-19.97287636385185 24.411293468444445-17.75366720474074 11.096042154666666 0 19.97287636385185 11.096042154666666 19.972875150222222 22.19208430933333V743.5117709084444c0 13.315251313777777-8.876834209185184 22.19208430933333-22.19208430933333 22.19208552296296s-22.19208430933333-8.876834209185184-22.19208430933333-22.19208552296296v-164.22142558814815C800.4971008758519 705.7852273398519 667.3445925925926 790.1151486862221 514.2192079454815 790.1151486862221 290.0791532657778 790.1151486862221 108.10405925925926 608.1400546797038 108.10405925925926 384S290.0791532657778-22.115148686222142 514.2192079454815-22.115148686222142z" horiz-adv-x="1024" />
<glyph glyph-name="qiaquan" unicode="&#59062;" d="M698.8 363.2c-11.5 0-20.8-9.3-20.8-20.8V301c0-11.5 9.3-20.8 20.8-20.8s20.8 9.3 20.8 20.8v41.5c-0.1 11.5-9.4 20.7-20.8 20.7zM698.8 218c-11.5 0-20.8-9.3-20.8-20.8v-41.5c0-11.5 9.3-20.8 20.8-20.8s20.8 9.3 20.8 20.8v41.5c-0.1 11.5-9.4 20.8-20.8 20.8zM802.5 550h-1.8L538.4 770c-23.2 19.5-51.6 29-79.9 29-35.6 0-71-15.1-95.5-44.3l-62.9-75c4.8 0.6 9.6 1.1 14.4 1.1 6 0 12.1-0.6 18.1-1.6-6.1 0.9-12.1 1.6-18.1 1.6-50.9 0-98.9-31.5-117.3-81.9l-21-57.6C130 523.1 97 478 97 425.5v-332C97 25 153-31 221.5-31h581C871-31 927 25 927 93.5V201.1c-6.5-2.3-13.4-3.8-20.8-3.8s-14.2 1.5-20.8 3.8c-24.1 8.6-41.5 31.4-41.5 58.4s17.4 49.8 41.5 58.4c6.5 2.3 13.4 3.8 20.8 3.8s14.2-1.5 20.8-3.8V425.5C927 494 871 550 802.5 550zM394.8 728c15.7 18.7 39 29.5 63.7 29.5 19.5 0 38.4-6.8 53.2-19.3L736.1 550h-40.4L356.8 673.3c-2.1 0.8-4.3 1.1-6.4 1.7l44.4 53zM236.3 584.7c11.9 32.6 43.3 54.6 78.3 54.6 9.6 0 19-1.7 28.1-5L574.4 550H223.6l12.7 34.7zM221.5 550z m-21-1.9c-0.8-0.1-1.7-0.2-2.5-0.4 0.8 0.2 1.7 0.2 2.5 0.4z m-13.3-3.1h-0.1 0.1z m698.3-183.8c-47.4-9.6-83-51.5-83-101.7s35.6-92 83-101.7v-64.3c0-45.8-37.2-83-83-83h-83V52c0 11.5-9.3 20.8-20.8 20.8S678 63.5 678 52v-41.5H221.5c-45.8 0-83 37.2-83 83v332c0 45.8 37.2 83 83 83H678v-62.3c0-11.5 9.3-20.8 20.8-20.8s20.8 9.3 20.8 20.8v62.3h83c45.8 0 83-37.2 83-83v-64.3zM508.4 405.1c-8.1 8.1-21.2 8.1-29.3 0l-70.8-70.8-70.8 70.8c-8.1 8.1-21.2 8.1-29.3 0-8.1-8.1-8.1-21.2 0-29.3l60.5-60.5h-43.3c-11.5 0-20.8-9.3-20.8-20.8s9.3-20.8 20.8-20.8h62.3v-41.5h-62.3c-11.5 0-20.8-9.3-20.8-20.8s9.3-20.8 20.8-20.8h62.3v-62.3c0-11.5 9.3-20.8 20.8-20.8s20.8 9.3 20.8 20.8v62.3h62.3c11.5 0 20.8 9.3 20.8 20.8s-9.3 20.8-20.8 20.8H429v41.5h62.3c11.5 0 20.8 9.3 20.8 20.8s-9.3 20.8-20.8 20.8H448l60.5 60.5c8 8.1 8 21.2-0.1 29.3z" horiz-adv-x="1024" />
<glyph glyph-name="jichushezhi" unicode="&#58974;" d="M320 618.7c58.9 0 106.7 47.8 106.7 106.7S378.9 832 320 832s-106.7-47.8-106.7-106.7S261.1 618.7 320 618.7z m0 170.6c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zM128 704h87.5c-1.4 6.9-2.1 14-2.1 21.3 0 7.3 0.8 14.4 2.1 21.3H128c-11.7 0-21.3-9.6-21.3-21.3 0-11.7 9.6-21.3 21.3-21.3zM896 704c11.7 0 21.3 9.6 21.3 21.3 0 11.7-9.6 21.3-21.3 21.3H424.5c1.4-6.9 2.1-14 2.1-21.3 0-7.3-0.8-14.4-2.1-21.3H896zM320 149.29999999999995c-58.9 0-106.7-47.8-106.7-106.7S261.1-64 320-64s106.7 47.8 106.7 106.7S378.9 149.29999999999995 320 149.29999999999995z m0-170.6c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64c0-35.4-28.7-64-64-64zM128 64c-11.7 0-21.3-9.6-21.3-21.3 0-11.7 9.6-21.3 21.3-21.3h87.5c-1.4 6.9-2.1 14-2.1 21.3 0 7.3 0.8 14.4 2.1 21.3H128zM896 64H424.5c1.4-6.9 2.1-14 2.1-21.3 0-7.3-0.8-14.4-2.1-21.3H896c11.7 0 21.3 9.6 21.3 21.3 0 11.7-9.6 21.3-21.3 21.3zM128 405.3c-11.7 0-21.3-9.6-21.3-21.3 0-11.7 9.6-21.3 21.3-21.3h471.5c-1.4 6.9-2.1 14-2.1 21.3 0 7.3 0.8 14.4 2.1 21.3H128zM896 405.3h-87.5c1.4-6.9 2.1-14 2.1-21.3 0-7.3-0.8-14.4-2.1-21.3H896c11.7 0 21.3 9.6 21.3 21.3 0 11.7-9.6 21.3-21.3 21.3zM704 490.7c-58.9 0-106.7-47.8-106.7-106.7S645.1 277.29999999999995 704 277.29999999999995 810.7 325.1 810.7 384 762.9 490.7 704 490.7z m0-170.7c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64z" horiz-adv-x="1024" />
<glyph glyph-name="tianjiajiahaowubiankuang" unicode="&#59418;" d="M864 448 512 448 512 800C512 817.92 497.92 832 480 832 462.08 832 448 817.92 448 800L448 448 96 448C78.08 448 64 433.92 64 416 64 398.08 78.08 384 96 384L448 384l0-352C448 14.08 462.08 0 480 0 497.92 0 512 14.08 512 32L512 384l352 0C881.92 384 896 398.08 896 416 896 433.92 881.92 448 864 448z" horiz-adv-x="1024" />
<glyph glyph-name="chengyuan" unicode="&#58906;" d="M401.1 583.3m-193.8 0a193.8 193.8 0 1 1 387.6 0 193.8 193.8 0 1 1-387.6 0ZM738.9 62.8c0-169.3-675.5-169.3-675.5 0S214.6 334 401.1 334s337.8-101.9 337.8-271.2zM644.7 832.5c-47.2 0-90.4-16.9-124-44.9 75.3-36.5 127.4-113.5 127.4-202.9 0-50.8-17-97.5-45.3-135.2 13.5-3 27.4-4.6 41.8-4.6 107 0 193.8 86.8 193.8 193.8S751.8 832.5 644.7 832.5zM622.6 382.8c-20.4 0-83.1-6.1-104.2-16.1 131.8-26.8 275.1-129.3 275.1-293.1 0-25.6-10.4-48.2-28.7-67.9 110.1 18 195.5 58.2 195.5 120.6 0.1 175.4-151.2 256.5-337.7 256.5z" horiz-adv-x="1024" />
<glyph glyph-name="navigate_next" unicode="&#58927;" d="M645.518222 373.191111L380.245333 589.539556a28.444444 28.444444 0 1 0 35.953778 44.032l291.271111-237.454223a28.444444 28.444444 0 0 0 0.796445-43.349333l-291.214223-257.479111a28.444444 28.444444 0 0 0-37.660444 42.666667l266.126222 235.235555z" horiz-adv-x="1024" />
<glyph glyph-name="changyongicon-" unicode="&#58903;" d="M308.906667 242.133333a21.333333 21.333333 0 0 0-15.146667 6.4 21.333333 21.333333 0 0 0-5.76 18.986667l16.426667 85.333333a21.333333 21.333333 0 0 0 5.973333 11.093334l306.773333 307.413333a21.333333 21.333333 0 0 0 30.293334 0l69.333333-69.333333a21.333333 21.333333 0 0 0 0-30.08L409.813333 264.96000000000004a21.333333 21.333333 0 0 0-11.093333-5.973333l-85.333333-16.426667z m36.266666 96.64l-9.386666-48.426666L384 298.66666699999996l287.36 288.213333-39.04 39.253333zM789.333333 128H234.666667a21.333333 21.333333 0 0 0 0 42.666667h554.666666a21.333333 21.333333 0 0 0 0-42.666667z" horiz-adv-x="1024" />
<glyph glyph-name="qiye-tianchong" unicode="&#59184;" d="M992-6.4h-64V435.2c0 38.4-25.6 73.6-57.6 83.2l-252.8 80c-9.6 3.2-19.2 0-28.8-3.2-6.4-6.4-12.8-16-12.8-25.6v-576h-32v768c0 25.6-9.6 44.8-28.8 60.8-22.4 16-51.2 19.2-80 12.8L163.2 758.4C124.8 748.8 96 710.4 96 668.8v-678.4H32c-19.2 0-32-12.8-32-32s12.8-32 32-32h960c19.2 0 32 12.8 32 32s-12.8 35.2-32 35.2z m-272 288h64c19.2 0 32-12.8 32-32s-12.8-32-32-32h-64c-19.2 0-32 12.8-32 32s12.8 32 32 32zM256 537.6h128c19.2 0 32-12.8 32-32s-12.8-32-32-32H256c-19.2 0-32 12.8-32 32s12.8 32 32 32z m0-256h128c19.2 0 32-12.8 32-32s-12.8-32-32-32H256c-19.2 0-32 12.8-32 32s12.8 32 32 32z" horiz-adv-x="1024" />
<glyph glyph-name="zuzhijiagouguanli" unicode="&#58933;" d="M771.208533-25.6c-27.136 0-54.135467 35.310933-54.135466 62.139733V235.383467c0 26.811733 28.757333 46.0288 55.9104 46.0288h63.488L836.7104 418.133333H546.030933v-136.721066h66.013867c27.118933 0 53.5552-21.76 53.5552-48.605867v-198.826667C665.6 7.133867 639.1808-25.6 612.0448-25.6H411.4432C384.3072-25.6 358.4 7.133867 358.4 33.962667V232.8064c0 26.8288 25.9072 48.605867 53.0432 48.605867h66.628267V418.133333H187.733333v-136.721066h57.514667c27.118933 0 61.952-21.777067 61.952-48.64v-198.826667C307.2 7.1168 278.1696-25.6 251.016533-25.6H49.851733C22.698667-25.6 0 7.1168 0 33.9456v198.826667c0 26.8288 21.998933 48.605867 49.117867 48.605866h71.645866v156.416c0 26.8288 22.016 48.605867 49.152 48.605867h308.394667l-0.238933 68.317867h67.959466L545.860267 486.4h308.206933c27.118933 0 49.134933-21.76 49.134933-48.605867l-0.221866-156.416h71.645866c27.118933 0 49.152-21.742933 49.152-48.5888v-198.843733c0-26.8288-24.064-59.5456-51.2-59.5456h-201.386666z m184.302934 68.317867V213.777067h-170.666667v-171.0592h170.666667zM597.333333 42.666667V213.777067H426.666667V42.666667h170.666666z m-358.4 0V213.777067H68.266667V42.666667h170.666666z m119.466667 559.650133V797.184C358.4 823.466667 380.962133 844.8 408.832 844.8h206.336C642.986667 844.8 665.6 823.483733 665.6 797.184v-194.901333c0-26.282667-22.562133-47.616-50.432-47.616h-206.336C380.9792 554.7008 358.4 576.017067 358.4 602.3168zM597.333333 776.533333H426.666667v-153.6h170.666666V776.533333z" horiz-adv-x="1024" />
<glyph glyph-name="dianpu-kuai" unicode="&#58882;" d="M923.73 389.44s-34.79 236.19-57.23 320.99c-22.43 84.8-114.16 87.2-114.16 87.2H302.37c-124.44 6.85-143.88-87.64-143.88-87.64l-58.9-326.01c-1.87-9.66 1.13-33.97 2.79-40.81 26.88-110.85 148.26-118.31 202.84-46.78 7.38 9.67 15.7 9.04 20.37 0.65 46.74-84.11 149.92-57.02 177.93 2.05 5.55 11.69 18.87 12.51 27.23-1.85 47.53-81.64 132.76-52.16 167.66 3.68 8.8 14.07 19.97 7.87 21.94 3.71 1.46-3.1 43.68-83.7 131.94-46.28s71.44 131.09 71.44 131.09zM640.25 500.56c-7.36-7.36-17.52-11.93-28.69-11.93H413.58c-22.34 0-40.62 18.27-40.62 40.61 0 11.17 4.57 21.32 11.93 28.69 7.36 7.36 17.52 11.93 28.69 11.93h197.98c22.34 0 40.62-18.28 40.62-40.62 0-11.17-4.57-21.32-11.93-28.68zM852.29 188.35v-170.34c0-26.4-21.6-48-48-48H217.78c-26.4 0-48 21.6-48 48V188.18c45.98-19.17 102.72-14.67 135.44 28.21 7.38 9.67 15.7 9.04 20.37 0.65 46.74-84.11 149.92-57.02 177.93 2.05 5.55 11.69 18.87 12.51 27.23-1.85 47.53-81.64 132.76-52.16 167.66 3.68 8.8 14.07 19.97 7.87 21.94 3.71 1.46-3.1 43.68-73.7 131.94-36.28z" horiz-adv-x="1024" />
<glyph glyph-name="xiala" unicode="&#58888;" d="M755.342 462.11L537.778 224.2a34.238 34.238 0 0 0-25.718-11.637 34.238 34.238 0 0 0-25.72 11.637L268.777 462.11c-10.621 11.218-13.903 27.568-8.414 42.009s18.737 24.525 34.133 25.897h434.949c15.455-1.313 28.761-11.337 34.251-25.838 5.55-14.5 2.268-30.79-8.354-42.068z" horiz-adv-x="1024" />
<glyph glyph-name="rizhifuwu" unicode="&#58970;" d="M183 266c-13.807 0-25 11.193-25 25V441c0 13.807 11.193 25 25 25s25-11.193 25-25v-150c0-13.807-11.193-25-25-25zM791 49H233c-41.355 0-75 33.645-75 75v17c0 13.808 11.193 25 25 25s25-11.192 25-25v-17c0-13.785 11.215-25 25-25h558c13.785 0 25 11.215 25 25V313c0 13.808 11.192 25 25 25s25-11.192 25-25v-189c0-41.355-33.645-75-75-75zM841 436c-13.808 0-25 11.193-25 25V644c0 13.785-11.215 25-25 25H233c-13.785 0-25-11.215-25-25v-59c0-13.807-11.193-25-25-25s-25 11.193-25 25v59c0 41.355 33.645 75 75 75h558c41.355 0 75-33.645 75-75v-183c0-13.807-11.192-25-25-25zM230 492h-98c-11.046 0-20 8.954-20 20s8.954 20 20 20h98c11.046 0 20-8.954 20-20s-8.954-20-20-20zM230 199h-98c-11.046 0-20 8.954-20 20s8.954 20 20 20h98c11.046 0 20-8.954 20-20s-8.954-20-20-20zM666 488H358c-13.807 0-25 11.193-25 25s11.193 25 25 25h308c13.807 0 25-11.193 25-25s-11.193-25-25-25zM666 343H358c-13.807 0-25 11.193-25 25s11.193 25 25 25h308c13.807 0 25-11.193 25-25s-11.193-25-25-25zM666 198H358c-13.807 0-25 11.193-25 25s11.193 25 25 25h308c13.807 0 25-11.193 25-25s-11.193-25-25-25zM841 290c-52.383 0-95 42.617-95 95s42.617 95 95 95 95-42.617 95-95-42.617-95-95-95z m0 140c-24.813 0-45-20.187-45-45s20.187-45 45-45 45 20.187 45 45-20.187 45-45 45z" horiz-adv-x="1024" />
</font>
</defs></svg>
/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
@import "./colors.less";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: normal;
vertical-align: baseline;
box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* custom */
a {
color: inherit;
text-decoration: none;
-webkit-backface-visibility: hidden;
}
li {
list-style: none;
}
input::-webkit-input-placeholder{
color: @gray-placeholder;
}
input:-ms-input-placeholder{
color: @gray-placeholder;
}
input::-moz-placeholder{
color: @gray-placeholder;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
::-webkit-scrollbar-track {
-webkit-border-radius: 6px;
border-radius: 6px;
}
::-webkit-scrollbar-track-piece {
/*background-color: rgba(0, 0, 0, 0.2);
-webkit-border-radius: 6px;*/
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 6px;
border-radius: 6px;
background-color: rgba(0, 0, 0, 0.1)
}
@-moz-document url-prefix(http: //),url-prefix(https://) {
/* 滚动条颜色 */
scrollbar {
-moz-appearance: none !important;
width: 5px;
height: 5px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
/* 滚动条按钮颜色 */
thumb, scrollbarbutton {
-moz-appearance: none !important;
}
/* 鼠标悬停时按钮颜色 */
thumb:hover, scrollbarbutton:hover {
-moz-appearance: none !important;
}
/* 隐藏上下箭头 */
scrollbarbutton {
display: none !important;
}
/* 纵向滚动条宽度 */
scrollbar[orient="vertical"] {
/*min-width: 15px !important;*/
}
}
scrollbar {
/* clear useragent default style*/
-moz-appearance: none !important;
}
/* buttons at two ends */
scrollbarbutton {
-moz-appearance: none !important;
}
/* the sliding part*/
thumb {
-moz-appearance: none !important;
}
scrollcorner {
-moz-appearance: none !important;
resize: both;
}
/* vertical or horizontal */
scrollbar[orient="vertical"] {
color: silver;
}
-moz-scrollbar-track {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar-face {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar-arrow {
width: 5px;
border: none;
background: #ff0000;
}
-moz-scrollbar {
-moz-scrollbar-width: 15px;
-moz-scrollbar-border: 1px solid black;
-moz-scrollbar-background-color: white;
-moz-scrollbar-track-background-color: silver;
-moz-scrollbar-arrow-background-color: silver;
-moz-scrollbar-arrow-color: blue;
}
/*::-webkit-scrollbar-button {
color: #c8cbd3;
}*/
html, body {
width: 100%;
height: 100%;
background-color: @gray-background;
font-size: 14px;
font-family: "Helvetica Neue", "Helvetica", "PingFang SC", "Hiragino Sans GB","Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}
body {
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input:focus {
box-shadow: none;
outline: none;
}
.fl {
float: left;
}
.fr {
float: right;
}
.clearfix:before,
.clearfix:after {
display: block;
visibility: hidden;
height: 0;
content: "";
clear: both;
}
.clearfix {
zoom: 1;
}
.inline-block {
display: inline-block;
}
.block {
display: block;
}
.vertical-top {
vertical-align: top;
}
.vertical-middle {
vertical-align: middle;
}
.border-box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.border-radius-18 {
border-radius: 18px;
}
.cursor-pointer {
cursor: pointer;
}
.t-rt {
text-align: right;
}
.t-ct {
text-align: center;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.color-fff {
color: #fff;
}
.color-1890ff {
color: #2f54eb;
}
.color-c0c4cc {
color: #c0c4cc;
}
.color-606266 {
color: #606266;
}
.color-303133 {
color: #303133;
}
.color-f56c6c {
color: #f56c6c;
}
.color-909399 {
color: #909399;
}
.color-2f54eb {
color: #2F54EB;
}
.color-dedfe6 {
color: #dedfe6;
}
.p-0 {
padding: 0;
}
.p-20 {
padding: 20px;
}
.p-24 {
padding: 24px;
}
.p-60 {
padding: 60px;
}
.p-45 {
padding: 45px;
}
.p-l-5 {
padding-left: 5px;
}
.p-l-6 {
padding-left: 6px;
}
.p-l-8 {
padding-left: 8px;
}
.p-l-10 {
padding-left: 10px;
}
.p-l-12 {
padding-left: 12px;
}
.p-l-14 {
padding-left: 14px;
}
.p-l-15 {
padding-left: 15px;
}
.p-l-20 {
padding-left: 20px;
}
.p-l-40 {
padding-left: 40px;
}
.p-l-60 {
padding-left: 60px;
}
.p-l-110 {
padding-left: 110px;
}
.p-lr-11 {
padding: 0 11px;
}
.p-r-6 {
padding-right: 6px;
}
.p-r-10 {
padding-right: 10px;
}
.p-r-20 {
padding-right: 20px;
}
.p-t-12 {
padding-top: 12px;
}
.p-t-14 {
padding-top: 14px;
}
.p-t-20 {
padding-top: 20px;
}
.p-t-35 {
padding-top: 35px;
}
.p-t-185 {
padding-top: 185px;
}
.m-l-10 {
margin-left: 10px;
}
.m-l-16 {
margin-left: 16px;
}
.m-t-8 {
margin-top: 8px;
}
.m-t-10 {
margin-top: 10px;
}
.m-t-15 {
margin-top: 15px;
}
.m-t-20 {
margin-top: 20px;
}
.m-t-22 {
margin-top: 22px;
}
.m-t-24 {
margin-top: 24px;
}
.m-t-30 {
margin-top: 30px;
}
.m-t-40 {
margin-top: 40px;
}
.m-t-45 {
margin-top: 45px;
}
.m-r-10 {
margin-right: 10px;
}
.m-r-20 {
margin-right: 20px;
}
.m-b-10 {
margin-bottom: 10px;
}
.m-b-16 {
margin-bottom: 16px;
}
.m-b-20 {
margin-bottom: 20px;
}
.m-b-25 {
margin-bottom: 25px;
}
.m-b-40 {
margin-bottom: 40px;
}
.m-b-60 {
margin-bottom: 60px;
}
.m-20 {
margin: 20px;
}
.font-0 {
font-size: 0;
}
.font-10 {
font-size: 10px;
}
.font-12 {
font-size: 12px;
}
.font-13 {
font-size: 13px;
}
.font-14 {
font-size: 14px;
}
.font-16 {
font-size: 16px;
}
.font-20 {
font-size: 20px;
}
.font-30 {
font-size: 30px;
}
.font-w-400 {
font-weight: 400;
}
.font-w-500 {
font-weight: 500;
}
.font-w-600 {
font-weight: 600;
}
.line-h-1 {
line-height: 1;
}
.line-h-18 {
line-height: 18px;
}
.w-80 {
width: 80px;
}
.w-105 {
width: 105px;
}
.w-118 {
width: 118px;
}
.w-130 {
width: 130px;
}
.w-250 {
width: 250px;
}
.w-500 {
width: 500px;
}
.w-680 {
width: 680px;
}
.inline-block {
display: inline-block;
}
.block {
display: block;
}
.text-ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* flex */
.flex {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.flex-1 {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.flex-column {
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
-o-flex-direction: column;
flex-direction: column;
}
.flex-row {
-webkit-flex-direction: row;
-moz-flex-direction: row;
-ms-flex-direction: row;
-o-flex-direction: row;
flex-direction: row;
}
.flex-align-center {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.flex-align-start {
-webkit-box-align: flex-start;
-webkit-align-items: flex-start;
-ms-flex-align: flex-start;
align-items: flex-start;
}
.flex-pack-center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.flex-start {
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-o-justify-content: flex-start;
justify-content: flex-start;
}
.flex-wrap {
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-o-flex-wrap: wrap;
flex-wrap: wrap;
}
.flex-space-between {
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-o-justify-content: space-between;
justify-content: space-between;
}
/* 表格隐藏省略 */
.el-table .el-table-column--selection .cell {
text-overflow: clip;
}
/* 单选 */
.el-table .hide-ellipsis .cell {
text-overflow: clip;
}
const TokenKey = 'Admin-Token'
export function getToken() {
return localStorage.getItem(TokenKey);
}
export function setToken(token) {
return localStorage.setItem(TokenKey, token);
}
export function removeToken() {
return localStorage.removeItem(TokenKey);
}
import Vue from 'vue'
import Clipboard from 'clipboard'
function clipboardSuccess() {
Vue.prototype.$message({
message: '复制成功',
type: 'success',
duration: 1500
})
}
function clipboardError() {
Vue.prototype.$message({
message: '复制失败',
type: 'error'
})
}
export default function handleClipboard(text, event) {
const clipboard = new Clipboard(event.target, {
text: () => text
})
clipboard.on('success', () => {
clipboardSuccess()
clipboard.off('error')
clipboard.off('success')
clipboard.destroy()
})
clipboard.on('error', () => {
clipboardError()
clipboard.off('error')
clipboard.off('success')
clipboard.destroy()
})
clipboard.onClick(event)
}
/**
* 传入参数 向url后追加 返回新的url
* @param {string} uri 原始url
* @param {string} key 追加的key
* @param {string} value 追加的key的value
*/
export const updateQueryStringParameter = (uri, key, value) => {
if (!value) {
return uri;
}
var re = new RegExp('([?&])' + key + '=.*?(&|$)', 'i');
var separator = uri.indexOf('?') !== -1 ? '&' : '?';
if (uri.match(re)) {
return uri.replace(re, '$1' + key + '=' + value + '$2');
} else {
return uri + separator + key + '=' + value;
}
};
// 序列化反序列化法 深拷贝对象
export const deepClone = obj => {
return JSON.parse(JSON.stringify(obj));
};
\ No newline at end of file
[{"city":"中国大陆","code":"+86"},{"city":"中国香港","code":"+852"},{"city":"中国澳门","code":"+853"},{"city":"中国台湾","code":"+886"},{"city":"新加坡","code":"+65"},{"city":"阿富汗","code":"+93"},{"city":"阿尔巴尼亚","code":"+355"},{"city":"阿尔格拉","code":"+213"},{"city":"安道尔","code":"+376"},{"city":"安哥拉","code":"+244"},{"city":"安圭拉","code":"+1264"},{"city":"阿森松岛","code":"+247"},{"city":"安提瓜和巴布达","code":"+1268"},{"city":"阿根廷","code":"+54"},{"city":"亚美尼亚","code":"+374"},{"city":"阿鲁巴","code":"+297"},{"city":"澳大利亚","code":"+61"},{"city":"奥地利","code":"+43"},{"city":"阿塞拜疆","code":"+994"},{"city":"巴哈马","code":"+1242"},{"city":"巴林","code":"+973"},{"city":"孟加拉国","code":"+880"},{"city":"巴巴多斯","code":"+1246"},{"city":"白俄罗斯","code":"+375"},{"city":"比利时","code":"+32"},{"city":"伯利兹","code":"+501"},{"city":"贝宁","code":"+229"},{"city":"百慕大","code":"+1441"},{"city":"不丹","code":"+975"},{"city":"玻利维亚","code":"+591"},{"city":"波斯尼亚和黑塞哥维那","code":"+387"},{"city":"博茨瓦纳","code":"+267"},{"city":"巴西","code":"+55"},{"city":"文莱","code":"+673"},{"city":"保加利亚","code":"+359"},{"city":"布基纳法索","code":"+226"},{"city":"布隆迪","code":"+257"},{"city":"柬埔寨","code":"+855"},{"city":"喀麦隆","code":"+237"},{"city":"加拿大","code":"+1"},{"city":"佛得角","code":"+238"},{"city":"开曼群岛","code":"+1345"},{"city":"中非共和国","code":"+236"},{"city":"乍得","code":"+235"},{"city":"智利","code":"+56"},{"city":"哥伦比亚","code":"+57"},{"city":"科摩罗","code":"+269"},{"city":"刚果共和国","code":"+242"},{"city":"刚果民主共和国","code":"+243"},{"city":"库克群岛","code":"+682"},{"city":"哥斯达黎加","code":"+506"},{"city":"科特迪沃","code":"+225"},{"city":"克罗地亚","code":"+385"},{"city":"古巴","code":"+53"},{"city":"塞浦路斯","code":"+357"},{"city":"+捷克共和国","code":"+420"},{"city":"丹麦","code":"+45"},{"city":"吉布提","code":"+253"},{"city":"多米尼加","code":"+1767"},{"city":"多米尼加共和国","code":"+1809"},{"city":"厄瓜多尔","code":"+593"},{"city":"埃及","code":"+20"},{"city":"艾萨尔瓦多","code":"+503"},{"city":"爱沙尼亚","code":"+372"},{"city":"埃塞俄比亚","code":"+251"},{"city":"法罗群岛","code":"+298"},{"city":"斐济","code":"+679"},{"city":"芬兰","code":"+358"},{"city":"法国","code":"+33"},{"city":"法属圭亚那","code":"+594"},{"city":"法属波利尼西亚","code":"+689"},{"city":"加蓬","code":"+241"},{"city":"冈比亚","code":"+220"},{"city":"格鲁吉亚","code":"+995"},{"city":"德国","code":"+94"},{"city":"加纳","code":"+233"},{"city":"直布罗陀","code":"+350"},{"city":"希腊","code":"+30"},{"city":"格陵兰","code":"+299"},{"city":"格林纳达","code":"+1473"},{"city":"瓜德罗普","code":"+590"},{"city":"关岛","code":"+1671"},{"city":"危地马拉","code":"+502"},{"city":"几内亚","code":"+240"},{"city":"根西","code":"+44"},{"city":"几内亚","code":"+224"},{"city":"圭亚那","code":"+592"},{"city":"海地","code":"+509"},{"city":"洪都拉斯","code":"+504"},{"city":"缅甸","code":"+95"},{"city":"匈牙利","code":"+36"},{"city":"冰岛","code":"+354"},{"city":"印度","code":"+91"},{"city":"印度尼西亚","code":"+62"},{"city":"伊朗","code":"+98"},{"city":"伊拉克","code":"+964"},{"city":"爱尔兰","code":"+353"},{"city":"马恩岛","code":"+44"},{"city":"以色列","code":"+972"},{"city":"意大利","code":"+93"},{"city":"牙买加","code":"+1876"},{"city":"日本","code":"+81"},{"city":"泽西岛","code":"+44"},{"city":"约旦","code":"+962"},{"city":"哈萨克斯坦","code":"+7"},{"city":"肯尼亚","code":"+254"},{"city":"科索沃","code":"+383"},{"city":"科威特","code":"+965"},{"city":"吉尔吉斯斯坦","code":"+996"},{"city":"老挝","code":"+856"},{"city":"拉脱维亚","code":"+371"},{"city":"黎巴嫩","code":"+961"},{"city":"莱索托","code":"+266"},{"city":"利比里亚","code":"+231"},{"city":"利比亚","code":"+218"},{"city":"列支敦士登","code":"+423"},{"city":"立陶宛","code":"+370"},{"city":"卢森堡","code":"+352"},{"city":"马其顿","code":"+389"},{"city":"马达加斯加","code":"+261"},{"city":"马拉维","code":"+265"},{"city":"马来西亚","code":"+60"},{"city":"马尔代夫","code":"+960"},{"city":"马里","code":"+223"},{"city":"马耳他","code":"+356"},{"city":"马提尼克","code":"+596"},{"city":"毛里塔尼亚","code":"+222"},{"city":"毛里求斯","code":"+230"},{"city":"马约特","code":"+262"},{"city":"墨西哥","code":"+52"},{"city":"摩尔多瓦","code":"+373"},{"city":"摩纳哥","code":"+377"},{"city":"蒙古","code":"+976"},{"city":"黑山","code":"+382"},{"city":"蒙特塞拉特","code":"+1664"},{"city":"摩洛哥","code":"+212"},{"city":"莫桑比克","code":"+258"},{"city":"纳米比亚","code":"+264"},{"city":"尼泊尔","code":"+977"},{"city":"荷兰","code":"+31"},{"city":"荷属安的列斯","code":"+599"},{"city":"新喀里多尼亚","code":"+687"},{"city":"新西兰","code":"+64"},{"city":"尼加拉瓜","code":"+505"},{"city":"尼日尔","code":"+227"},{"city":"尼日利亚","code":"+234"},{"city":"挪威","code":"+47"},{"city":"阿曼","code":"+968"},{"city":"巴基斯坦","code":"+92"},{"city":"巴勒斯坦","code":"+970"},{"city":"巴拿马","code":"+507"},{"city":"巴布亚新几内亚","code":"+675"},{"city":"巴拉圭","code":"+595"},{"city":"秘鲁","code":"+51"},{"city":"菲律宾","code":"+63"},{"city":"波兰","code":"+48"},{"city":"葡萄牙","code":"+351"},{"city":"波多黎各","code":"+1"},{"city":"库塔","code":"+974"},{"city":"留尼汪","code":"+262"},{"city":"罗马尼亚","code":"+40"},{"city":"俄罗斯","code":"+7"},{"city":"卢旺达","code":"+250"},{"city":"萨摩亚东部","code":"+684"},{"city":"萨摩亚西部","code":"+685"},{"city":"圣马力诺","code":"+378"},{"city":"圣多美和普林西比","code":"+239"},{"city":"沙特阿拉伯","code":"+966"},{"city":"塞内加尔","code":"+221"},{"city":"塞尔维亚","code":"+381"},{"city":"塞舌尔","code":"+248"},{"city":"塞拉利昂","code":"+232"},{"city":"斯洛伐克","code":"+421"},{"city":"斯洛文尼亚","code":"+386"},{"city":"南非","code":"+27"},{"city":"韩国","code":"+82"},{"city":"西班牙","code":"+34"},{"city":"斯里兰卡","code":"+94"},{"city":"圣基茨和尼维斯","code":"+1869"},{"city":"圣卢西亚","code":"+1758"},{"city":"圣文森特","code":"+1784"},{"city":"苏丹","code":"+249"},{"city":"苏里南","code":"+597"},{"city":"斯威士兰","code":"+268"},{"city":"瑞典","code":"+46"},{"city":"瑞士","code":"+41"},{"city":"叙利亚","code":"+963"},{"city":"塔吉克斯坦","code":"+992"},{"city":"坦桑尼亚","code":"+255"},{"city":"泰国","code":"+66"},{"city":"东帝汶","code":"+670"},{"city":"多哥","code":"+228"},{"city":"汤加","code":"+676"},{"city":"特立尼达和多巴哥","code":"+1868"},{"city":"突尼斯","code":"+216"},{"city":"土耳其","code":"+90"},{"city":"土库曼斯坦","code":"+993"},{"city":"特克斯和凯科斯群岛","code":"+1649"},{"city":"乌干达","code":"+256"},{"city":"乌克兰","code":"+380"},{"city":"阿拉伯联合酋长国","code":"+971"},{"city":"英国","code":"+44"},{"city":"美国","code":"+1"},{"city":"乌拉圭","code":"+598"},{"city":"乌兹别克斯坦","code":"+998"},{"city":"瓦努阿图","code":"+678"},{"city":"委内瑞拉","code":"+58"},{"city":"越南","code":"+84"},{"city":"维尔京群岛","code":"+1340"},{"city":"也门","code":"+967"},{"city":"赞比亚","code":"+260"},{"city":"津巴布韦","code":"+263"}]
\ No newline at end of file
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2020-07-16 16:37:05
* @LastEditors: 无尘
* @LastEditTime: 2020-07-20 15:30:44
*/
import axios from 'axios';
import qs from 'qs';
import { Message } from 'element-ui';
import { origin, succCode, notAuthCode } from '@/config/index.js';
/* eslint-disable-next-line */
// const BASEURL = process.env.NODE_ENV !== 'production' ? 'https://four.gicdev.com' : '';
axios.defaults.baseURL = origin;
const request = (opt, params) => {
params = Object.assign({}, params);
opt = Object.assign({}, opt);
let requestConfig = {
// 请求路径
url: '',
params: '',
data: '',
// 请求type
method: 'get',
// request body 是否使用 formData格式
useFormData: false,
// response 是否使用 code === '0000' 验证
useIntercept: true,
// 设置headers
headers: {}
}
requestConfig = Object.assign(requestConfig, opt);
if (requestConfig.useFormData) params = qs.stringify(params);
switch (requestConfig.method.toLowerCase()) {
case 'get':
requestConfig.params = params;
break;
case 'post':
requestConfig.data = params;
break;
default:
requestConfig.data = params;
break;
}
return new Promise((resolve, reject) => {
axios(requestConfig).then(res => {
let resp = res.data;
if (resp.code == notAuthCode) {
window.location.href = `${origin}/haoban-4/#/login`;
return;
}
if (requestConfig.useIntercept && resp.code != succCode) {
Message({
message: resp.message || '未知错误',
type: 'warning'
});
return reject(resp);
}
resolve(resp);
}).catch(error => {
let response = error.response ||{};
let data = response.data || {};
Message({
message: data.message || '未知错误',
type: 'warning'
})
reject(error);
})
});
}
export {axios, request};
<template>
<div style="background:#f0f2f5;margin-top: -20px;height:100%;">
<div class="wscn-http404">
<div class="pic-404">
<img class="pic-404__parent" :src="img_403" alt="403" />
</div>
<div class="bullshit">
<!-- <div class="bullshit__oops">403</div> -->
<div class="bullshit__headline">{{ message }}</div>
<a href="#/companyGroup" class="bullshit__return-home">返回首页</a>
</div>
</div>
</div>
</template>
<script>
import img_403 from '@/assets/403_images/error_403.svg';
export default {
name: 'page403',
data() {
return {
img_403
};
},
computed: {
message() {
return '抱歉,你无权访问该页面';
}
}
};
</script>
<style lang="less" scoped>
.wscn-http404 {
position: relative;
width: 1200px;
margin: 20px auto 60px;
padding: 0 100px;
overflow: hidden;
.pic-404 {
position: relative;
float: left;
width: 600px;
padding: 150px 152px 150px 0;
text-align: right;
overflow: hidden;
&__parent {
width: 100%;
max-width: 430px;
}
&__child {
position: absolute;
&.left {
width: 80px;
top: 17px;
left: 220px;
opacity: 0;
animation-name: cloudLeft;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
&.mid {
width: 46px;
top: 10px;
left: 420px;
opacity: 0;
animation-name: cloudMid;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1.2s;
}
&.right {
width: 62px;
top: 100px;
left: 500px;
opacity: 0;
animation-name: cloudRight;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
@keyframes cloudLeft {
0% {
top: 17px;
left: 220px;
opacity: 0;
}
20% {
top: 33px;
left: 188px;
opacity: 1;
}
80% {
top: 81px;
left: 92px;
opacity: 1;
}
100% {
top: 97px;
left: 60px;
opacity: 0;
}
}
@keyframes cloudMid {
0% {
top: 10px;
left: 420px;
opacity: 0;
}
20% {
top: 40px;
left: 360px;
opacity: 1;
}
70% {
top: 130px;
left: 180px;
opacity: 1;
}
100% {
top: 160px;
left: 120px;
opacity: 0;
}
}
@keyframes cloudRight {
0% {
top: 100px;
left: 500px;
opacity: 0;
}
20% {
top: 120px;
left: 460px;
opacity: 1;
}
80% {
top: 180px;
left: 340px;
opacity: 1;
}
100% {
top: 200px;
left: 300px;
opacity: 0;
}
}
}
}
.bullshit {
position: relative;
float: left;
width: 300px;
padding: 150px 0;
overflow: hidden;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
height: 360px;
&__oops {
color: #434e59;
font-size: 72px;
font-weight: 600;
line-height: 72px;
margin-bottom: 24px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-fill-mode: forwards;*/
}
&__headline {
color: rgba(0, 0, 0, 0.45);
font-size: 20px;
line-height: 28px;
margin-bottom: 16px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;*/
}
&__return-home {
display: inline-block;
height: 32px;
line-height: 32px;
font-weight: 400;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
background-image: none;
white-space: nowrap;
padding: 0 15px;
font-size: 14px;
border-radius: 4px;
border: 1px solid #2f54eb;
color: #fff;
background-color: #2f54eb;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
cursor: pointer;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.3s;
animation-fill-mode: forwards;*/
}
@keyframes slideUp {
0% {
transform: translateY(60px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
}
}
</style>
<template>
<div style="background:#f0f2f5;margin-top: -20px;height:100%;">
<div class="wscn-http404">
<div class="pic-404">
<img class="pic-404__parent" :src="img_404" alt="404" />
</div>
<div class="bullshit">
<!-- <div class="bullshit__oops">404</div> -->
<div class="bullshit__headline">{{ message }}</div>
<a href="#/companyGroup" class="bullshit__return-home">返回首页</a>
</div>
</div>
</div>
</template>
<script>
import img_404 from '@/assets/404_images/error_404.svg';
export default {
name: 'page404',
data() {
return {
img_404
};
},
computed: {
message() {
return '抱歉,你访问的页面不存在';
}
},
/* eslint-disable */
mounted() {
}
};
</script>
<style lang="less" scoped>
.wscn-http404 {
position: relative;
width: 1200px;
margin: 20px auto 60px;
padding: 0 100px;
overflow: hidden;
.pic-404 {
position: relative;
float: left;
width: 600px;
padding: 150px 152px 150px 0;
text-align: right;
overflow: hidden;
&__parent {
width: 100%;
max-width: 430px;
}
&__child {
position: absolute;
&.left {
width: 80px;
top: 17px;
left: 220px;
opacity: 0;
animation-name: cloudLeft;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
&.mid {
width: 46px;
top: 10px;
left: 420px;
opacity: 0;
animation-name: cloudMid;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1.2s;
}
&.right {
width: 62px;
top: 100px;
left: 500px;
opacity: 0;
animation-name: cloudRight;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
@keyframes cloudLeft {
0% {
top: 17px;
left: 220px;
opacity: 0;
}
20% {
top: 33px;
left: 188px;
opacity: 1;
}
80% {
top: 81px;
left: 92px;
opacity: 1;
}
100% {
top: 97px;
left: 60px;
opacity: 0;
}
}
@keyframes cloudMid {
0% {
top: 10px;
left: 420px;
opacity: 0;
}
20% {
top: 40px;
left: 360px;
opacity: 1;
}
70% {
top: 130px;
left: 180px;
opacity: 1;
}
100% {
top: 160px;
left: 120px;
opacity: 0;
}
}
@keyframes cloudRight {
0% {
top: 100px;
left: 500px;
opacity: 0;
}
20% {
top: 120px;
left: 460px;
opacity: 1;
}
80% {
top: 180px;
left: 340px;
opacity: 1;
}
100% {
top: 200px;
left: 300px;
opacity: 0;
}
}
}
}
.bullshit {
position: relative;
float: left;
width: 300px;
padding: 150px 0;
overflow: hidden;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
height: 360px;
&__oops {
color: #434e59;
font-size: 72px;
font-weight: 600;
line-height: 72px;
margin-bottom: 24px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-fill-mode: forwards;*/
}
&__headline {
color: rgba(0, 0, 0, 0.45);
font-size: 20px;
line-height: 28px;
margin-bottom: 16px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;*/
}
&__return-home {
display: inline-block;
height: 32px;
line-height: 32px;
font-weight: 400;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
background-image: none;
white-space: nowrap;
padding: 0 15px;
font-size: 14px;
border-radius: 4px;
border: 1px solid #2f54eb;
color: #fff;
background-color: #2f54eb;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
cursor: pointer;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.3s;
animation-fill-mode: forwards;*/
}
@keyframes slideUp {
0% {
transform: translateY(60px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
}
}
</style>
<template>
<div style="background:#f0f2f5;margin-top: -20px;height:100%;">
<div class="wscn-http404">
<div class="pic-404">
<img class="pic-404__parent" :src="img_500" alt="500" />
</div>
<div class="bullshit">
<!-- <div class="bullshit__oops">500</div> -->
<div class="bullshit__headline">{{ message }}</div>
<a href="#/companyGroup" class="bullshit__return-home">返回首页</a>
</div>
</div>
</div>
</template>
<script>
import img_500 from '@/assets/500_images/error_500.svg';
export default {
name: 'page500',
data() {
return {
img_500
};
},
computed: {
message() {
return '抱歉,服务器出错了';
}
}
};
</script>
<style lang="less" scoped>
.wscn-http404 {
position: relative;
width: 1200px;
margin: 20px auto 60px;
padding: 0 100px;
overflow: hidden;
.pic-404 {
position: relative;
float: left;
width: 600px;
padding: 150px 152px 150px 0;
text-align: right;
overflow: hidden;
&__parent {
width: 100%;
max-width: 430px;
}
&__child {
position: absolute;
&.left {
width: 80px;
top: 17px;
left: 220px;
opacity: 0;
animation-name: cloudLeft;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
&.mid {
width: 46px;
top: 10px;
left: 420px;
opacity: 0;
animation-name: cloudMid;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1.2s;
}
&.right {
width: 62px;
top: 100px;
left: 500px;
opacity: 0;
animation-name: cloudRight;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
@keyframes cloudLeft {
0% {
top: 17px;
left: 220px;
opacity: 0;
}
20% {
top: 33px;
left: 188px;
opacity: 1;
}
80% {
top: 81px;
left: 92px;
opacity: 1;
}
100% {
top: 97px;
left: 60px;
opacity: 0;
}
}
@keyframes cloudMid {
0% {
top: 10px;
left: 420px;
opacity: 0;
}
20% {
top: 40px;
left: 360px;
opacity: 1;
}
70% {
top: 130px;
left: 180px;
opacity: 1;
}
100% {
top: 160px;
left: 120px;
opacity: 0;
}
}
@keyframes cloudRight {
0% {
top: 100px;
left: 500px;
opacity: 0;
}
20% {
top: 120px;
left: 460px;
opacity: 1;
}
80% {
top: 180px;
left: 340px;
opacity: 1;
}
100% {
top: 200px;
left: 300px;
opacity: 0;
}
}
}
}
.bullshit {
position: relative;
float: left;
width: 300px;
padding: 150px 0;
overflow: hidden;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
height: 360px;
&__oops {
color: #434e59;
font-size: 72px;
font-weight: 600;
line-height: 72px;
margin-bottom: 24px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-fill-mode: forwards;*/
}
&__headline {
color: rgba(0, 0, 0, 0.45);
font-size: 20px;
line-height: 28px;
margin-bottom: 16px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;*/
}
&__return-home {
display: inline-block;
height: 32px;
line-height: 32px;
font-weight: 400;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
background-image: none;
white-space: nowrap;
padding: 0 15px;
font-size: 14px;
border-radius: 4px;
border: 1px solid #2f54eb;
color: #fff;
background-color: #2f54eb;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
cursor: pointer;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.3s;
animation-fill-mode: forwards;*/
}
@keyframes slideUp {
0% {
transform: translateY(60px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
}
}
</style>
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2019-10-28 09:32:04
* @LastEditors: 无尘
* @LastEditTime: 2020-07-20 10:02:34
-->
<template>
<div style="background:#f0f2f5;margin-top: -20px;height:100vh;">
<div class="wscn-http404">
<div class="pic-404">
<img class="pic-404__parent" :src="img_404" alt="404" />
</div>
<div class="bullshit">
<!-- <div class="bullshit__oops">404</div> -->
<div class="bullshit__headline">{{ message }}</div>
<a href="#/login" class="bullshit__return-home" rel="noopener noreferrer">返回好办登录页</a>
</div>
</div>
</div>
</template>
<script>
import img_404 from '@/assets/gic-error.png';
export default {
name: 'page404',
data() {
return {
img_404
};
},
computed: {
message() {
return '登录遇到错误啦!请确认您是否是好办小程序管理员。如不是,请联系管理员在<企业微信-我的企业-权限管理>添加好办管理员';
}
},
/* eslint-disable */
mounted() {
}
};
</script>
<style lang="less" scoped>
.wscn-http404 {
position: relative;
width: 1200px;
margin: 20px auto 60px;
padding: 0 100px;
overflow: hidden;
.pic-404 {
position: relative;
width: 100%;
padding: 150px 0 0 ;
text-align: center;
overflow: hidden;
&__parent {
width: 148px;
max-width: 430px;
}
&__child {
position: absolute;
&.left {
width: 80px;
top: 17px;
left: 220px;
opacity: 0;
animation-name: cloudLeft;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
&.mid {
width: 46px;
top: 10px;
left: 420px;
opacity: 0;
animation-name: cloudMid;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1.2s;
}
&.right {
width: 62px;
top: 100px;
left: 500px;
opacity: 0;
animation-name: cloudRight;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
@keyframes cloudLeft {
0% {
top: 17px;
left: 220px;
opacity: 0;
}
20% {
top: 33px;
left: 188px;
opacity: 1;
}
80% {
top: 81px;
left: 92px;
opacity: 1;
}
100% {
top: 97px;
left: 60px;
opacity: 0;
}
}
@keyframes cloudMid {
0% {
top: 10px;
left: 420px;
opacity: 0;
}
20% {
top: 40px;
left: 360px;
opacity: 1;
}
70% {
top: 130px;
left: 180px;
opacity: 1;
}
100% {
top: 160px;
left: 120px;
opacity: 0;
}
}
@keyframes cloudRight {
0% {
top: 100px;
left: 500px;
opacity: 0;
}
20% {
top: 120px;
left: 460px;
opacity: 1;
}
80% {
top: 180px;
left: 340px;
opacity: 1;
}
100% {
top: 200px;
left: 300px;
opacity: 0;
}
}
}
}
.bullshit {
position: relative;
width: 100%;
padding: 46px 0;
overflow: hidden;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
&__oops {
color: #434e59;
font-size: 72px;
font-weight: 600;
line-height: 72px;
margin-bottom: 24px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-fill-mode: forwards;*/
}
&__headline {
color: #606266;
font-size: 14px;
line-height: 28px;
margin-bottom: 37px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;*/
}
&__return-home {
display: inline-block;
height: 32px;
line-height: 32px;
font-weight: 400;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
background-image: none;
white-space: nowrap;
padding: 0 15px;
font-size: 14px;
border-radius: 4px;
border: 1px solid #2f54eb;
color: #fff;
background-color: #2f54eb;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
cursor: pointer;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.3s;
animation-fill-mode: forwards;*/
&:hover {
color: #fff;
background-color: #597ef7;
border-color: #597ef7;
}
&:active {
color: #fff;
background-color: #597ef7;
border-color: #597ef7;
}
}
@keyframes slideUp {
0% {
transform: translateY(60px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
}
}
</style>
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors: 无尘
* @LastEditTime: 2020-07-17 10:40:42
-->
<template>
<div style="background:#f0f2f5;margin-top: -20px;height:100vh;">
<div class="wscn-http404">
<div class="pic-404">
<img class="pic-404__parent" :src="imgSrc" alt="404" />
</div>
<div class="bullshit">
<!-- <div class="bullshit__oops">404</div> -->
<div class="bullshit__headline">{{ message }}</div>
<a href="#/index" class="bullshit__return-home">返回首页</a>
</div>
</div>
</div>
</template>
<script>
import img_403 from '@/assets/403_images/error_403.svg';
import img_404 from '@/assets/404_images/error_404.svg';
import img_500 from '@/assets/500_images/error_500.svg';
export default {
name: 'errpage',
data() {
return {
imgSrc: '',
message: '',
srcList: {
403: img_403,
404: img_404,
500: img_500
},
msgList: {
403: '抱歉,你无权访问该页面',
404: '抱歉,你访问的页面不存在',
500: '抱歉,服务器出错了'
}
};
},
mounted() {
var that = this;
var path = that.$route.path.split('/')[1];
that.imgSrc = that.srcList[path];
that.message = that.msgList[path];
}
};
</script>
<style lang="less" scoped>
.wscn-http404 {
position: relative;
width: 1200px;
margin: 20px auto 60px;
padding: 0 100px;
overflow: hidden;
.pic-404 {
position: relative;
float: left;
width: 600px;
padding: 150px 152px 150px 0;
text-align: right;
overflow: hidden;
&__parent {
width: 100%;
max-width: 430px;
}
&__child {
position: absolute;
&.left {
width: 80px;
top: 17px;
left: 220px;
opacity: 0;
animation-name: cloudLeft;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
&.mid {
width: 46px;
top: 10px;
left: 420px;
opacity: 0;
animation-name: cloudMid;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1.2s;
}
&.right {
width: 62px;
top: 100px;
left: 500px;
opacity: 0;
animation-name: cloudRight;
animation-duration: 2s;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-delay: 1s;
}
@keyframes cloudLeft {
0% {
top: 17px;
left: 220px;
opacity: 0;
}
20% {
top: 33px;
left: 188px;
opacity: 1;
}
80% {
top: 81px;
left: 92px;
opacity: 1;
}
100% {
top: 97px;
left: 60px;
opacity: 0;
}
}
@keyframes cloudMid {
0% {
top: 10px;
left: 420px;
opacity: 0;
}
20% {
top: 40px;
left: 360px;
opacity: 1;
}
70% {
top: 130px;
left: 180px;
opacity: 1;
}
100% {
top: 160px;
left: 120px;
opacity: 0;
}
}
@keyframes cloudRight {
0% {
top: 100px;
left: 500px;
opacity: 0;
}
20% {
top: 120px;
left: 460px;
opacity: 1;
}
80% {
top: 180px;
left: 340px;
opacity: 1;
}
100% {
top: 200px;
left: 300px;
opacity: 0;
}
}
}
}
.bullshit {
position: relative;
float: left;
width: 300px;
padding: 150px 0;
overflow: hidden;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
height: 360px;
&__oops {
color: #434e59;
font-size: 72px;
font-weight: 600;
line-height: 72px;
margin-bottom: 24px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-fill-mode: forwards;*/
}
&__headline {
color: rgba(0, 0, 0, 0.45);
font-size: 20px;
line-height: 28px;
margin-bottom: 16px;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.1s;
animation-fill-mode: forwards;*/
}
&__return-home {
display: inline-block;
height: 32px;
line-height: 32px;
font-weight: 400;
text-align: center;
-ms-touch-action: manipulation;
touch-action: manipulation;
background-image: none;
white-space: nowrap;
padding: 0 15px;
font-size: 14px;
border-radius: 4px;
border: 1px solid #2f54eb;
color: #fff;
background-color: #2f54eb;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
cursor: pointer;
/*animation-name: slideUp;
animation-duration: 0.5s;
animation-delay: 0.3s;
animation-fill-mode: forwards;*/
&:hover {
color: #fff;
background-color: #597ef7;
border-color: #597ef7;
}
&:active {
color: #fff;
background-color: #597ef7;
border-color: #597ef7;
}
}
@keyframes slideUp {
0% {
transform: translateY(60px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
}
}
</style>
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors: 无尘
* @LastEditTime: 2020-07-17 11:45:18
-->
<template>
<div id="index">
<vue-office-header ref="headerMenu" :projectName="projectName" @collapseTag="collapseTag" @toRouterView="toRouterView"> </vue-office-header>
<div id="content" class="content">
<div class="content-body border-box" style="min-height: calc(100vh - 46px);">
<div class="index-body flex flex-row">
<div class="index-body-left">
<div class="index-body-left_top border-box">
<div class="app-title font-16 color-303133 flex flex-space-between">
<span class="font-16 color-303133 font-w-600 line-h-32 color-primary">已使用</span>
</div>
<ul>
<li class="border-box" v-for="(item, index) in purchaseApp" :key="index + 'app'" @click="toAppView(item)">
<div class="app-li-cell border-box flex">
<div class="app-cell-left">
<img :src="item.applicationUrl" alt="img" />
</div>
<div class="app-cell-right flex flex-column flex-align-center flex-pack-center">
<div class="app-name font-14 color-303133">{{ item.applicationName }}</div>
<div v-if="!item.applicationPath" class="app-info">
<span class="font-14 color-909399">里面为空~</span>
<!-- <div class="app-version font-12 color-909399">{{ item.versionName }}</div> -->
<!-- <div class="app-date font-12 color-909399">{{ item.date | timeStampToYmd }}</div> -->
</div>
</div>
<div class="app-cell-arrow">
<el-dropdown class="app-cell-dropdown" trigger="hover">
<span class="el-dropdown-link"><i class="el-icon-more el-icon--right" style="cursor: pointer;"></i> </span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item class="p-0">
<span @click.stop="changeSwitch(item)">{{ item.openFlag == 1 ? '停用' : '启用' }}</span>
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>
</div>
</li>
</ul>
</div>
<div v-if="noPurchaseApp.length" class="bg-space"></div>
<div :class="['index-body-left_bottom border-box', noPurchaseApp.length ? 'bottom-0' : 'bottom-9999']">
<div class="app-title font-16 color-303133">已停用</div>
<ul>
<li class="border-box" v-for="(item, index) in noPurchaseApp" :key="index + 'appno'">
<div class="app-li-cell border-box flex">
<div class="app-cell-left">
<img :src="item.applicationUrl" alt="img" />
</div>
<div class="app-cell-right">
<div class="app-name stop-app-name font-14 color-303133">{{ item.applicationName }}</div>
<div class="app-info stop-app-info">
<el-switch v-model="item.openFlag" active-text="" inactive-text="" @change="changeAppSwitch($event, item)"> </el-switch>
<!-- <div class="app-describe font-12 color-909399">{{ item.describe }}</div> -->
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="index-body-right">
<div class="index-body-right_top border-box">
<div class="serve-info">
<div class="serve-date-info">
<div class="font-14 color-909399 p-t-10 m-b-13" style="font-weight:300;">{{ new Date().getTime() | timeStampToYm }}</div>
<div class="font-12 color-909399">农历{{ getLunarDay(new Date().getFullYear(), new Date().getMonth() + 1, new Date().getDate()) }}</div>
<div class="serve-date-day">
<div class="serve-date-day_inner ">
<div class="color-fff font-26 p-t-10" style="letter-spacing: 2px;">{{ new Date().getDate() }}</div>
<div class="color-fff font-12">{{ weeks[new Date().getDay()] }}</div>
</div>
</div>
</div>
<div class="serve-version flex">
<span class="w-86 font-14 color-909399 text-left">企业</span>
<span class="font-14 color-303133">{{ versionData.corpName }}</span>
</div>
<div class="serve-date flex m-t-20">
<span class="w-86 font-14 color-909399 text-left">版本</span>
<span class="font-14 color-303133">{{ versionData.smallVersion }}</span>
</div>
<div v-if="false" class="serve-store flex m-t-20">
<span class="w-86 font-14 color-909399 text-left">
<!-- <el-popover placement="top-start" title="" width="200" trigger="hover" content="GIC已同步上线门店总数,实时获取">
<span class="w-86 font-14 color-909399 text-left" slot="reference" style="cursor: pointer;padding-bottom: 2px; border-bottom: 1px dashed #2F54EB;">门店总数</span>
</el-popover> -->
<el-tooltip class="item" effect="dark" content="GIC已同步上线门店总数,实时获取" placement="top-start">
<span class="w-86 font-14 color-909399 text-left" style="cursor: pointer;padding-bottom: 2px; border-bottom: 1px dashed #2F54EB;">门店总数</span>
</el-tooltip>
</span>
<span class="font-14 color-303133 ">{{ versionData.storeTotal }}</span
><!-- <span v-if="versionData.storeTotal > versionData.storeNum" class=" cursor-pointer font-12 p-l-10 color-f5222d" @click="toOverStore">{{ versionData.storeTotal - versionData.storeNum }}家门店溢出)</span> -->
</div>
<!-- <div class="serve-btn text-center m-t-30">
<el-button type="primary" @click="goShopping">前往订购</el-button>
</div> -->
</div>
</div>
<div class="bg-margin-10"></div>
<div class="index-body-right_bottom border-box">
<div class="help-title font-16 color-303133 font-w-600">帮助中心</div>
<ul class="help-list m-t-15">
<li v-for="(item, index) in helpList" :key="index + 'help'" class="cursor-pointer font-14 color-606266" @click="toRedirect(item)">
{{ item.helpTitle }}
</li>
<li class="text-center li-more cursor-pointer" @click="goUdesk">查看更多</li>
</ul>
</div>
</div>
</div>
</div>
<!-- <vue-gic-footer></vue-gic-footer> -->
</div>
</div>
</template>
<script>
// 公共头部菜单
import vueOfficeHeader from '@/components/vue-office-header.vue';
import { getRequest } from '@/api/api';
import errMsg from '@/common/js/error';
import showMsg from '@/common/js/showmsg';
export default {
name: 'index',
data() {
return {
checkShow: true,
tipText: '请先完成商户初始化设置后,再进行其他操作',
projectName: 'haoban-manage-web', // 当前项目名
contentHeight: '0px', // 页面内容高度
collapseFlag: false, // 折叠参数
showCustomDialog: false, // 自定义弹框显示标志
customType: '', // 自定义弹框标志
customTitle: '', // 自定义弹框标题
wxEnterpriseId: localStorage.getItem('userInfos') ? JSON.parse(localStorage.getItem('userInfos')).wxEnterpriseId : '',
// 购买应用
purchaseApp: [
/* {
applicationId: 1,
applicationUrl: 'https://hope.demogic.com/mobile-haoban-file/images/appicon/workbench/customer_center.png',
applicationName: '我的顾客',
versionName: '基础版',
date: new Date().getTime(),
describe: '应用描述应用描述应用描述应用描述应用描述'
} */
],
weeks: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],
// 未购买应用
noPurchaseApp: [],
versionData: {
id: 1,
smallVersion: '',
corpName: '',
date: new Date().getTime(),
storeNum: 100,
storeTotal: ''
},
helpList: [
/* {
helpId: 1,
helpTitle: '测试帮助中心',
helpUrl: ''
} */
]
};
},
methods: {
// getExpired() {
// const that = this;
// let para = {
// enterpriseId: that.wxEnterpriseId || localStorage.getItem('userInfos') ? JSON.parse(localStorage.getItem('userInfos')).wxEnterpriseId : ''
// };
// getRequest('/haoban-manage3-web/enterprise-is-over', para)
// .then(res => {
// let resData = res.data;
// if (resData.errorCode == 1) {
// that.expiredFlag = resData.result;
// return;
// }
// errMsg.errorMsg(resData);
// })
// .catch(function(error) {
// that.$message.error({
// duration: 1000,
// message: error.message
// });
// });
// },
/**
* 跳转更多 udesk
*/
goUdesk() {
window.open('https://demogic.udesk.cn/hc/categories/96671?api_name=');
},
/* eslint-disable */
getLunarDay(solarYear, solarMonth, solarDay) {
// 拷贝别人又自己调整过的获取农历日期的代码,想要原来的代码估计百度一下就有了
const madd = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334];
// const tgString = '甲乙丙丁戊己庚辛壬癸'
// const dzString = '子丑寅卯辰巳午未申酉戌亥'
const numString = '一二三四五六七八九十';
const monString = '正二三四五六七八九十冬腊';
const CalendarData = [0xa4b, 0x5164b, 0x6a5, 0x6d4, 0x415b5, 0x2b6, 0x957, 0x2092f, 0x497, 0x60c96, 0xd4a, 0xea5, 0x50da9, 0x5ad, 0x2b6, 0x3126e, 0x92e, 0x7192d, 0xc95, 0xd4a, 0x61b4a, 0xb55, 0x56a, 0x4155b, 0x25d, 0x92d, 0x2192b, 0xa95, 0x71695, 0x6ca, 0xb55, 0x50ab5, 0x4da, 0xa5b, 0x30a57, 0x52b, 0x8152a, 0xe95, 0x6aa, 0x615aa, 0xab5, 0x4b6, 0x414ae, 0xa57, 0x526, 0x31d26, 0xd95, 0x70b55, 0x56a, 0x96d, 0x5095d, 0x4ad, 0xa4d, 0x41a4d, 0xd25, 0x81aa5, 0xb54, 0xb6a, 0x612da, 0x95b, 0x49b, 0x41497, 0xa4b, 0xa164b, 0x6a5, 0x6d4, 0x615b4, 0xab6, 0x957, 0x5092f, 0x497, 0x64b, 0x30d4a, 0xea5, 0x80d65, 0x5ac, 0xab6, 0x5126d, 0x92e, 0xc96, 0x41a95, 0xd4a, 0xda5, 0x20b55, 0x56a, 0x7155b, 0x25d, 0x92d, 0x5192b, 0xa95, 0xb4a, 0x416aa, 0xad5, 0x90ab5, 0x4ba, 0xa5b, 0x60a57, 0x52b, 0xa93, 0x40e95];
if (!(solarYear < 1921 || solarYear > 2100)) {
solarMonth = parseInt(solarMonth) > 0 ? solarMonth - 1 : 11;
const timeArr = [solarYear, solarMonth, solarDay];
let TheDate = timeArr.length !== 3 ? new Date() : new Date(timeArr[0], timeArr[1], timeArr[2]);
let total;
let m;
let n;
let k;
let isEnd = false;
let theDateYear = TheDate.getFullYear();
total = (theDateYear - 1921) * 365 + Math.floor((theDateYear - 1921) / 4) + madd[TheDate.getMonth()] + TheDate.getDate() - 38;
if (theDateYear % 4 === 0 && TheDate.getMonth() > 1) {
total++;
}
for (m = 0; ; m++) {
k = CalendarData[m] < 0xfff ? 11 : 12;
for (n = k; n >= 0; n--) {
if (total <= this.getBit(CalendarData[m], n)) {
isEnd = true;
break;
}
total = total - this.getBit(CalendarData[m], n);
}
if (isEnd) {
break;
}
}
let cMonth;
let cDay; // cYear,
// cYear = 1921 + m
cMonth = k - n + 1;
cDay = total;
if (k === 12) {
if (cMonth === Math.floor(CalendarData[m] / 0x10000) + 1) {
cMonth = 1 - cMonth;
}
if (cMonth > Math.floor(CalendarData[m] / 0x10000) + 1) {
cMonth--;
}
}
// let run = ''
let cDayStr = numString.charAt(cDay - 1);
/* if (cMonth < 1) {
run = '(闰)'
} */
if (cDay % 10 !== 0 || cDay === 10) {
cDayStr = numString.charAt((cDay - 1) % 10);
}
console.log();
return cDay === 1 ? monString.charAt(cMonth - 1) + '月初一' : monString.charAt(cMonth - 1) + '月' + (cDay < 11 ? '初' : cDay < 20 ? '十' : cDay < 30 ? '廿' : '三十') + cDayStr; // tgString.charAt((cYear - 4) % 10) + dzString.charAt((cYear - 4) % 12) + '年 ' + run + monString.charAt(cMonth - 1) + '月' +
}
},
getBit(m, n) {
// 也是拷贝的,不是很明白这段代码干嘛的,不过很明显是处理二进制数据的
return 29 + ((m >> n) & 1);
},
/**
* 帮助中心跳转
*/
toRedirect(item) {
if (!item.helpUrl) {
return false;
}
window.open(item.helpUrl);
},
/**
* 路由跳转
*/
changeRoute(route) {
this.$router.push(route);
},
/**
* 跳转溢出门店
*/
toOverStore() {
const that = this;
that.changeRoute('/overStoreList');
},
/**
* 跳转应用
*/
toAppView(item) {
const that = this;
if (!item.applicationPath) {
//无更多设置项,不可进入!
showMsg.showmsg('无更多设置项,不可进入!', 'warning');
return false;
}
that.changeRoute(`${item.applicationPath}`);
},
/**
* 跳转购买
*/
goShopping(item) {
const that = this;
that.changeRoute(`/`);
},
/**
* 处理路由跳转
*/
toRouterView(val) {
const that = this;
// 模拟检查数据,有两个参数
that.$router.push({
path: val.path
});
},
/**
* 启用停用应用
*/
changeSwitch(item) {
const that = this;
let flag = item.openFlag == 1 ? '关闭' : '开启';
that
.$confirm(`确认${flag}${item.applicationName}】应用吗?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
that.postSwitch(item);
})
.catch(() => {
item.openFlag == 1;
});
},
postSwitch(item) {
let that = this;
let para = {
wxEnterpriseId: that.wxEnterpriseId || localStorage.getItem('userInfos') ? JSON.parse(localStorage.getItem('userInfos')).wxEnterpriseId : '',
applicationId: item.applicationId,
openFlag: item.openFlag == 1 ? 0 : 1
};
getRequest('/haoban-manage3-web/open-or-close', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
showMsg.showmsg('操作成功', 'success');
that.getAppData(1);
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 启用停用应用
*/
changeAppSwitch(e, item) {
const that = this;
that
.$confirm(`确定要${e == true ? '启用' : '停用'}${item.applicationName}】?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
that.postAppSwitch(item);
})
.catch(() => {
item.openFlag = false;
});
},
postAppSwitch(item) {
const that = this;
let para = {
wxEnterpriseId: that.wxEnterpriseId || localStorage.getItem('userInfos') ? JSON.parse(localStorage.getItem('userInfos')).wxEnterpriseId : '',
applicationId: item.applicationId,
openFlag: item.openFlag ? 1 : 0
};
getRequest('/haoban-manage3-web/open-or-close', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
showMsg.showmsg('启用成功', 'success');
that.getAppData(1);
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 折叠事件
*/
collapseTag(val) {
const that = this;
that.collapseFlag = val;
},
/**
* 弹窗提示
*/
toAlert() {
const that = this;
that
.$confirm('您所在企业尚未订购好办 ,请前往升级版本后继续使用。', '提示', {
confirmButtonText: '立即前往订购',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
window.open('');
});
},
toTip() {
const that = this;
that
.$confirm('您没有该功能的使用权限,请联系管理员授权后继续使用。', '提示', {
confirmButtonText: '知道了',
type: 'warning'
})
.then(() => {
window.open('');
});
},
/**
* 获取帮助中心
*/
getHelpData() {
const that = this;
getRequest('/haoban-manage3-web/get-help-list', {})
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
that.helpList = resData.result || [];
return;
}
that.$message.error({
duration: 1000,
message: resData.message
});
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 获取数据概览
*/
getAppData(type) {
const that = this;
let para = {
wxEnterpriseId: that.wxEnterpriseId || localStorage.getItem('userInfos') ? JSON.parse(localStorage.getItem('userInfos')).wxEnterpriseId : '',
type: type // 1已购买2未购买
};
getRequest('/haoban-manage3-web/application-open-close-list', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
resData.result.open.forEach(ele => {
ele.openFlag = 1;
});
that.purchaseApp = JSON.parse(JSON.stringify(resData.result.open)) || [];
resData.result.close.forEach(ele => {
ele.openFlag = false;
});
that.noPurchaseApp = JSON.parse(JSON.stringify(resData.result.close)) || [];
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 获取绑定
*/
getBindData() {
const that = this;
let para = {};
getRequest('/haoban-manage3-web/has-bind-contract', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
if (!resData.result) {
that.getBindUrl();
}
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 获取绑定
*/
getBindUrl() {
const that = this;
let para = {};
getRequest('/haoban-manage3-web/get-auth-url', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
window.location.href = `${resData.result}`;
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 登录 --- api
*/
toLogin() {
const that = this;
return new Promise((resolve, reject) => {
let para = {};
getRequest('/haoban-manage3-web/get-login-info', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
// localStorage.removeItem('userInfos');
localStorage.setItem('userInfos', JSON.stringify(resData.result));
resolve(resData.result.wxEnterpriseId);
return;
}
errMsg.errorMsg(resData);
resolve({
wxEnterpriseId: ''
});
})
.catch(function(error) {
resolve({
wxEnterpriseId: ''
});
that.$message.error({
duration: 1000,
message: error.message
});
});
});
},
/**
* 获取显示的提示
*/
getTipData() {
const that = this;
let para = {};
getRequest('/haoban-manage3-web/is-wx-enterprise-secret-set', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
that.checkShow = resData.result;
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
/**
* 获取企业数据
*/
getCompanyData() {
const that = this;
const para = {
wxEnterpriseId: that.wxEnterpriseId
};
getRequest('/haoban-manage3-web/wxEnterprise-detail', para)
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
that.versionData = resData.result;
return false;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
},
async mounted() {
const that = this;
that.getBindData();
that.wxEnterpriseId = await that.toLogin();
that.getAppData(1);
that.getHelpData();
/* that.getAppData(2); */
// that.getTipData();
that.getCompanyData();
that.contentHeight = (document.documentElement.clientHeight || document.body.clientHeight) - 92 + 'px';
},
components: {
vueOfficeHeader
}
};
</script>
<style lang="less" scoped>
// @import '~less_vars';
.color-f5222d {
color: @red-error;
}
.line-h-32 {
line-height: 32px;
}
.font-26 {
font-size: 26px;
}
.p-t-10 {
padding-top: 10px;
}
.m-t-15 {
margin-top: 15px;
}
.m-b-13 {
margin-bottom: 5px;
}
.m-b-13 {
margin-bottom: 13px;
}
.w-86 {
width: 86px;
}
.serve-date-info {
position: relative;
margin-bottom: 45px;
.serve-date-day {
position: absolute;
top: 0;
right: 23px;
width: 74px;
height: 67px;
text-align: center;
.serve-date-day_inner {
position: relative;
height: 100%;
text-align: center;
background: linear-gradient(180deg, rgba(47, 84, 235, 1) 0%, rgba(116, 153, 253, 1) 100%);
border-radius: 0 0 10px 10px;
&::after {
content: '';
width: 0;
height: 0;
border-left: 37px solid transparent;
border-right: 37px solid transparent;
border-bottom: 10px solid #fff;
position: absolute;
bottom: 0px;
left: 50%;
-webkit-transform: translate(-50%);
-moz-transform: translate(-50%);
transform: translate(-50%);
}
}
}
}
#index {
.content {
padding-top: 46px;
box-sizing: border-box;
/*overflow: auto;*/
min-width: 1400px;
height: auto;
background: #f0f2f5;
.content-body {
display: flex;
flex-direction: column;
padding: 20px;
background: #f0f2f5;
overflow: hidden;
/* display */
.top {
vertical-align: top;
}
.middle {
vertical-align: middle;
}
.m-t-24 {
margin-top: 24px;
}
.m-r-24 {
margin-right: 24px;
}
.bg-margin-10 {
width: 100%;
height: 10px;
background: #f0f2f5;
}
.border-b-e4e7e7 {
border-bottom: 1px solid #e4e7e7;
}
.radius-2 {
border-radius: 2px;
}
.icon-zidingyi {
cursor: pointer;
&:hover {
color: #2f54eb;
}
}
.icon-xinxixianshi {
cursor: pointer;
color: #909399;
font-size: 14px;
}
.square-item {
width: 40px;
height: 40px;
border-radius: 4px;
i {
font-size: 24px;
color: #fff;
}
}
.index-body {
width: 100%;
min-height: 340px;
.index-body-left {
flex: 1;
margin: 0px 10px 0px 0px;
min-height: calc(100vh - 86px);
background: #fff;
.app-title {
padding: 15px 0 18px 10px;
font-weight: 600;
}
ul {
font-size: 0;
li {
display: inline-block;
padding: 0 10px;
font-size: 14px;
cursor: pointer;
height: 106px;
.app-li-cell {
position: relative;
width: 186px;
height: 81px;
padding: 10px;
border-radius: 4px;
border: 1px solid #e4e7ed;
transition: all 0.3s;
.app-cell-arrow {
position: absolute;
right: 10px;
top: 8px;
width: 20px;
height: 20px;
.el-dropdown-link {
display: inline-block;
width: 20px;
height: 20px;
i {
color: #c0c4cc;
}
&:hover {
i {
color: #606266;
}
}
}
}
img {
width: 60px;
height: 60px;
border-radius: 10px;
}
.app-cell-right {
padding-left: 10px;
.app-name {
align-self: flex-start;
line-height: 22px;
&.stop-app-name {
margin-top: 6px;
}
}
.app-info {
margin-top: 3px;
line-height: 16px;
&.stop-app-info {
margin-top: 6px;
}
}
}
}
&:hover {
.app-li-cell {
// border-color: #2f54eb;
-webkit-transform: translateY(-3px);
-moz-transform: translateY(-3px);
-o-transform: translateY(-3px);
transform: translateY(-3px);
box-shadow: 0 2px 7px rgba(122, 138, 203, 0.2);
}
}
}
}
.index-body-left_top {
width: 100%;
padding: 10px;
background: #fff;
}
.bg-space {
width: 100%;
height: 10px;
background: #f0f2f5;
}
.index-body-left_bottom {
position: relative;
bottom: 0;
width: 100%;
padding: 10px;
background: #fff;
transition: all 0.3s;
&.bottom-0 {
bottom: 0;
}
&.bottom-9999 {
bottom: -9999px;
}
.app-describe {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
.index-body-right {
width: 312px;
background: #fff;
.index-body-right_top {
width: 100%;
height: 197px;
padding: 0px 0 20px 30px;
background: #fff;
.serve-btn {
.el-button--primary {
width: 133px;
height: 32px;
// background: #2f54eb;
border-radius: 2px;
}
}
}
.index-body-right_bottom {
width: 100%;
// height: 100%;
padding: 30px;
background: #fff;
.help-list {
li {
height: 40px;
line-height: 40px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
transition: all 0.3s;
&:hover {
color: #303133;
-webkit-transform: translateX(5px);
-moz-transform: translateX(5px);
transform: translateX(5px);
}
/* border-bottom: 1px solid #e4e7ed; */
&.li-more {
font-size: 14px;
color: #909399;
&:hover {
color:#2f54ed;
-webkit-transform: translateX(0px);
-moz-transform: translateX(0px);
transform: translateX(0px);
}
}
}
}
}
}
}
}
}
}
/* 隐藏 头部 */
.navheader {
div.itemlink-gic.bottom {
display: none;
}
a.itemlink.bottom {
display: none;
}
}
.el-table__empty-block {
height: 256px;
}
.el-table__empty-text {
width: auto;
margin-bottom: 80px;
&::before {
content: ' ';
display: block;
width: 60px;
height: 60px;
background: url(../../assets/no-data_icon.png) no-repeat center;
margin: 0px auto 22px auto;
}
}
.el-submenu__title {
height: 40px;
line-height: 40px;
}
.user-header-pop {
min-width: 95px;
}
.el-popover.user-header-pop {
min-width: 95px;
}
.el-menu.el-menu--popup {
background: #020b21;
border-radius: 4px;
}
/* 输入框 focus*/
.el-form-item.is-success .el-input__inner,
.el-form-item.is-success .el-input__inner:focus,
.el-form-item.is-success .el-textarea__inner,
.el-form-item.is-success .el-textarea__inner:focus {
border-color: #dcdfe6;
}
/* 箭头*/
.icon-to-pre {
cursor: pointer;
font-size: 18px;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.icon-to-next {
cursor: pointer;
font-size: 18px;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
}
/* 富文本编辑器 */
.mce-tinymce {
-webkit-box-shadow: none;
box-shadow: none;
}
</style>
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2020-07-16 10:44:45
* @LastEditors: 无尘
* @LastEditTime: 2020-07-17 11:21:20
-->
<template>
<div class="login-wrap">
<section>
<div class="login-body-top">
<div class="login-body-head">
<div class="login-body-head_inner border-box flex">
<img class="login-body-logo" src="../../assets/logo.png" alt="logo" />
<span class="login-body-title p-l-7">好办管理后台</span>
</div>
</div>
<div class="login-body-qrcode">
<div class="login-qrcode-inner border-box">
<div class="qrcode-title font-18 color-303133 m-b-20">企业微信扫码登录</div>
<div id="qrcode" title=""></div>
<div class="qrcode-refresh m-t-20">
<el-button class="font-12" type="text" @click="refreshCode">刷新 <span class="color-2f54eb iconfont iconshuaxin"></span></el-button>
</div>
</div>
</div>
<div class="bg-dot"></div>
<div class="bg-dot-center"></div>
</div>
<div class="login-body-bottom"></div>
</section>
<footer class="p-t-35">
<vue-gic-footer></vue-gic-footer>
</footer>
</div>
</template>
<script>
import errMsg from '@/common/js/error';
import { postRequest } from '@/api/api';
export default {
name: 'login',
data() {
return {
qrcodeNum: '', // 二维码数据
};
},
computed: {},
methods: {
/**
* 处理路由跳转
*/
toRouterView(val) {
const that = this;
// 模拟检查数据,有两个参数
that.$router.push({
path: val.path
});
},
/**
* 登录---获取二维码字符串 API
*/
getQrcode() {
const that = this;
postRequest('/haoban-manage3-web/get-login-qrcode', {})
.then(res => {
let resData = res.data;
if (resData.errorCode == 1) {
that.qrcodeNum = resData.result;
window.location.href = `${resData.result}`;
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
}
},
mounted() {
const that = this;
that.getQrcode();
// that.toLogin();
if (!!localStorage.getItem('userInfos')) {
localStorage.removeItem('userInfos');
}
},
components: {}
};
</script>
<style lang="less" scoped>
.login-wrap {
width: 100%;
min-height: 100vh;
.p-l-7 {
padding-left: 7px;
}
.login-body-top {
position: relative;
width: 100%;
height: 431px;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-color: #2f54eb;
.login-body-head {
width: 100%;
.login-body-head_inner {
width: 100%;
padding: 22px 0 0 24px;
img {
width: 25px;
}
.login-body-title {
font-weight: 600;
color: #fff;
font-size: 18px;
padding-top: 5px;
}
}
}
.bg-dot {
position: absolute;
left: 50%;
bottom: -93px;
margin-left: -500px;
width: 87px;
height: 142px;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.bg-dot-center {
position: absolute;
left: 50%;
bottom: -233px;
margin-left: -71px;
width: 142px;
height: 87px;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.login-body-qrcode {
position: absolute;
left: 50%;
bottom: -173px;
margin-left: -183px;
width: 366px;
height: 343px;
background: rgba(255, 255, 255, 1);
box-shadow: 0px 6px 8px 0px rgba(208, 213, 232, 0.27);
border-radius: 5px;
z-index: 1;
.login-qrcode-inner {
width: 100%;
padding: 40px 88px 25px 88px;
text-align: center;
#qrcode {
width: 190px;
height: 190px;
}
}
}
}
.login-body-bottom {
width: 100%;
height: 300px;
background: #fff;
}
}
</style>
/*
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2020-07-16 16:37:05
* @LastEditors: 无尘
* @LastEditTime: 2020-07-21 09:51:23
*/
const path = require("path");
function resolve(dir) {
return path.join(__dirname, dir)
}
const port = process.env.port || process.env.npm_config_port || 8088 // dev port
module.exports = {
lintOnSave: process.env.NODE_ENV === 'development',
productionSourceMap: process.env.NODE_ENV !== 'production',
// publicPath: process.env.NODE_ENV === 'production' ? '/damo-system' : '/',
devServer: {
port: port,
open: true,
overlay: {
warnings: false,
errors: true
},
// proxy: {}
},
configureWebpack: config => {
config.externals = {
vue: 'Vue',
vuex: 'Vuex',
axios: 'axios',
};
config.resolve = {
alias: {
'@': resolve('src'),
'less_vars': '@/styles/colors.less'
}
};
config.entry.app = ["babel-polyfill", "./src/main.js"];
if (process.env.NODE_ENV === 'production') {
config.optimization.minimizer[0].options.terserOptions.compress.warnings = false;
config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true;
config.optimization.minimizer[0].options.terserOptions.compress.drop_debugger = true;
config.optimization.minimizer[0].options.terserOptions.compress.pure_funcs = [
'console.log'
];
}
},
chainWebpack: config => {
const types = ['vue-modules', 'vue', 'normal-modules', 'normal']
types.forEach(type => addStyleResource(config.module.rule('less').oneOf(type)));
},
css: {
loaderOptions: {
less: {
javascriptEnabled: true
}
}
}
};
function addStyleResource(rule) {
rule.use('style-resource')
.loader('style-resources-loader')
.options({
patterns: [
path.resolve(__dirname, './src/styles/colors.less'), // 需要全局导入的less
],
})
}
/* css: {
loaderOptions: {
// 给 less-loader 传递 Less.js 相关选项
less: {
// http://lesscss.org/usage/#less-options-strict-units `Global Variables`
// `primary` is global variables fields name
globalVars: {
primary: '#fff'
}
}
}
}
};*/
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment