Commit ad33ddb2 authored by 李堔's avatar 李堔

【n】new

parent 4c9a5344
Pipeline #231 canceled with stages
{
"plugins": [["import", {
"libraryName": "view-design",
"libraryDirectory": "src/components"
}]]
}
\ No newline at end of file
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
/logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# TypeScript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# parcel-bundler cache (https://parceljs.org/)
.cache
# next.js build output
.next
# nuxt.js build output
.nuxt
# Nuxt generate
dist
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless
# IDE / Editor
.idea
# Service worker
sw.*
# macOS
.DS_Store
# Vim swap files
*.swp
# test
## Build Setup
```bash
# install dependencies
$ npm install
# serve with hot reload at localhost:3000
$ npm run dev
# build for production and launch server
$ npm run build
$ npm run start
# generate static project
$ npm run generate
```
For detailed explanation on how things work, check out [Nuxt.js docs](https://nuxtjs.org).
生命周期
middleware
nuxt.config.js > 布局(layout) > 页面(page)
\ No newline at end of file
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"@/*": ["./*"],
"~~/*": ["./*"],
"@@/*": ["./*"]
}
},
"exclude": ["node_modules", ".nuxt", "dist"]
}
export default {
// Global page headers: https://go.nuxtjs.dev/config-head
ssr:true,
target:"static",
srcDir:'src/',
head: {
title: '北京见著科技有限公司-- MES系统',
htmlAttrs: {
lang: 'en'
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
// Global CSS: https://go.nuxtjs.dev/config-css
css: [
'view-design/dist/styles/iview.css',
{
src: '@assets/theme/layout.less',
lang: 'less'
}
],
router:{
middleware:"auth",
//扩展路由
extendRoutes(routes,resolve){
// console.warn(routes);
// routes.push({
// name:"root",
// path:"/index",
// component:resolve(__dirname,"pages/index.vue")
// })
}
},
// loading: {
// color: 'blue',
// height: '5px'
// },
// axios:{
// proxy:true,
// },
// proxy:{
// "/":{
// target:"http://localhost:519/"
// }
// },
// loading:"~/components/loading.vue",
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
plugins: [
'@/plugins/view-ui',
'~/plugins/router',
{
src:'~/plugins/axios',
ssr:true
}
],
// Auto import components: https://go.nuxtjs.dev/config-components
components: true,
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
buildModules: [
],
// Modules: https://go.nuxtjs.dev/config-modules
modules: [
'@nuxtjs/axios'
],
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {
extractCSS: { allChunks: true }
// optimization:{
// splitChunks:{
// }
// }
}
}
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"name": "test",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/proxy": "^2.1.0",
"babel-plugin-import": "^1.13.3",
"core-js": "^3.9.1",
"countup.js": "^1.9.3",
"nuxt": "^2.15.3",
"view-design": "^4.5.0"
},
"devDependencies": {
"less": "^4.1.1",
"less-loader": "^7.3.0"
}
}
import axios from 'axios';
import Config from '@/config';
import { Message, Notice, LoadingBar } from 'view-design';
// 创建一个错误
function errorCreate(msg) {
const err = new Error(msg);
errorLog(err);
throw err;
}
// 记录和显示错误
function errorLog(err) {
if (err && err.response && err.response.status == 500) {
console.log(err.response)
Message.error({
content: err.response.data.error.message,
duration: 5
})
return;
}
// 添加到日志
// $nuxt.$store.dispatch('admin/log/push', {
// message: '数据请求异常',
// type: 'error',
// meta: {
// error: err
// }
// });
// 打印到控制台
if (process.env.NODE_ENV === 'development') {
console.warn(err.response);
console.log(err);
}
// 显示提示,可配置使用 iView 的 $Message 还是 $Notice 组件来显示
if (Config.messageType == 1) {
Message.error({
content: err.message,
duration: Setting.modalDuration
});
} else if (Config.messageType == 2) {
Notice.error({
title: '提示',
desc: err.message,
duration: Setting.modalDuration
});
}
}
// 创建一个 axios 实例
const service = axios.create({
baseURL: Config.apiBaseUrl,
timeout: Config.timeout, // 请求超时时间
transformRequest: [(data) => {
function dateFormat(date, fmt) {
if (null == date || undefined == date) return '';
var o = {
"M+": date.getMonth() + 1, //月份
"d+": date.getDate(), //日
"h+": date.getHours(), //小时
"m+": date.getMinutes(), //分
"s+": date.getSeconds(), //秒
"S+": date.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (date.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o)
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
return fmt;
}
Date.prototype.toJSON = function () {
return dateFormat(this, 'yyyy-MM-ddThh:mm:ss.SSSZ')
}
return JSON.stringify(data)
}]
});
// 设置post请求头
service.defaults.headers.post['Content-Type'] = 'application/json';
service.defaults.headers.delete['Content-Type'] = 'application/json';
service.defaults.headers.put['Content-Type'] = 'application/json';
// 请求拦截器
service.interceptors.request.use(
config => {
// 在请求发送之前做一些处理
const token = sessionStorage.getItem('token');
const linkId = localStorage.getItem("linkId");
if (linkId) {
config.headers['linkId'] = linkId;
}
console.warn(Config)
// 让每个请求携带token-- ['X-Token']为自定义key 请根据实际情况自行修改
config.headers['Authorization'] = 'Bearer ' + token;
LoadingBar.start()
return config;
},
error => {
// 发送失败
// console.log(error);
Promise.reject(error);
}
);
// 响应拦截器
service.interceptors.response.use(
response => {
LoadingBar.finish()
// dataAxios 是 axios 返回数据中的 data
const dataAxios = response.data;
// 这个状态码是和后端约定的
const { code } = dataAxios;
// 根据 code 进行判断
if (code === undefined) {
// 如果没有 code 代表这不是项目后端开发的接口
return dataAxios;
} else {
// 有 code 代表这是一个后端接口 可以进行进一步的判断
switch (code) {
case 0:
// [ 示例 ] code === 0 代表没有错误
return dataAxios.data;
case 'xxx':
// [ 示例 ] 其它和后台约定的 code
errorCreate(`[ code: xxx ] ${dataAxios.msg}: ${response.config.url}`);
break;
default:
// 不是正确的 code
errorCreate(`${dataAxios.msg}: ${response.config.url}`);
break;
}
}
},
error => {
if (error && error.response) {
switch (error.response.status) {
case 400: error.message = '请求错误'; break;
case 401: error.message = '未授权,请登录'; break;
case 403: error.message = '拒绝访问'; break;
case 404: error.message = `请求地址出错: ${error.response.config.url}`; break;
case 408: error.message = '请求超时'; break;
case 500: error.message = '服务器内部错误'; break;
case 501: error.message = '服务未实现'; break;
case 502: error.message = '网关错误'; break;
case 503: error.message = '服务不可用'; break;
case 504: error.message = '网关超时'; break;
case 505: error.message = 'HTTP版本不受支持'; break;
default: break;
}
}
errorLog(error);
LoadingBar.error()
// console.warn("Erro:",error)
return Promise.reject(error);
}
);
let api = service.get;
let get = (url, params) => {
if (params) {
return api(url, { "params": params })
} else {
return api(url)
}
}
service.get = get;
export default service;
<!DOCTYPE html>
<html {{ HTML_ATTRS }}>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{ HEAD }}
</head>
<body {{ BODY_ATTRS }}>
{{ APP }}
</body>
</html>
\ No newline at end of file
# ASSETS
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your un-compiled assets such as LESS, SASS, or JavaScript.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#webpacked).
@font-face {
font-family: "iconfont"; /* Project id 2480204 */
src: url('iconfont.woff2?t=1622183498211') format('woff2'),
url('iconfont.woff?t=1622183498211') format('woff'),
url('iconfont.ttf?t=1622183498211') format('truetype');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.iconlujing1086:before {
content: "\e686";
}
.iconziyuan7:before {
content: "\e685";
}
.iconcixi:before {
content: "\e67f";
}
.iconchukong:before {
content: "\e680";
}
.icongongyeji:before {
content: "\e681";
}
.iconkuozhanxing:before {
content: "\e682";
}
.iconrenyuanfankui:before {
content: "\e683";
}
.iconwifi:before {
content: "\e684";
}
.iconfuwuzhiliang:before {
content: "\e679";
}
.iconshujugongxiang:before {
content: "\e67a";
}
.iconchanpincanshu:before {
content: "\e67b";
}
.iconyujingnengli:before {
content: "\e67c";
}
.iconshujuzhiliang:before {
content: "\e67d";
}
.iconyewuchuangxin:before {
content: "\e67e";
}
.iconyunduanbushu:before {
content: "\e674";
}
.iconkekuozhanxing:before {
content: "\e675";
}
.iconkuaisushangxian:before {
content: "\e676";
}
.iconlinghuopeizhi:before {
content: "\e677";
}
.iconchengbenjiaodi:before {
content: "\e678";
}
.iconjieshengchengben:before {
content: "\e6ff";
}
.iconpeisong:before {
content: "\e604";
}
.icontigaoxiaoshuai:before {
content: "\ee40";
}
.iconVR:before {
content: "\e60c";
}
.iconduocanshu:before {
content: "\e670";
}
.iconzuiyou:before {
content: "\e671";
}
.iconAI:before {
content: "\e672";
}
.iconmubiao:before {
content: "\e673";
}
.iconpingheng:before {
content: "\e606";
}
.iconERP:before {
content: "\e66a";
}
.iconJOT:before {
content: "\e66b";
}
.iconplm:before {
content: "\e66c";
}
.iconyouxiang-:before {
content: "\e6af";
}
.icondianhua01:before {
content: "\e68f";
}
.icondianhua:before {
content: "\e605";
}
.iconzhuce-youxiang:before {
content: "\e68e";
}
!function(c){var l,h,i,o,t,a,s='<svg><symbol id="iconlujing1086" viewBox="0 0 1024 1024"><path d="M912.399894 400.836a387.474473 387.474473 0 0 0-400.605429-400.605429 401.050546 401.050546 0 0 0-400.605428 400.605429c0 163.090921 221.534802 439.286109 340.603637 587.554629l8.902343 10.90537a65.877337 65.877337 0 0 0 102.376943 0l8.902343-10.90537C690.865092 840.122108 912.399894 563.926921 912.399894 400.836z m-402.697479 116.08655a148.045962 148.045962 0 1 1 148.045962-148.045961 148.134985 148.134985 0 0 1-148.045962 148.045961z" fill="#FFFFFF" ></path></symbol><symbol id="iconziyuan7" viewBox="0 0 1024 1024"><path d="M511.83949 1023.646377c-66.470544 0-112.999925-33.235272-112.999924-79.764653s47.526439-79.764653 112.999924-79.764653a156.538131 156.538131 0 0 1 82.091122 22.267632 315.735084 315.735084 0 0 0 185.78517-132.941087A113.66463 113.66463 0 0 1 697.957013 644.764276v-132.941088a111.670514 111.670514 0 0 1 99.705816-112.999924v-19.941164a285.823339 285.823339 0 0 0-571.646678 0v19.941164a111.670514 111.670514 0 0 1 99.705816 112.335219v132.941088a111.670514 111.670514 0 0 1-112.999924 112.999924h-66.470544A111.670514 111.670514 0 0 1 33.251574 644.764276v-132.941088A111.670514 111.670514 0 0 1 132.95739 398.823264v-19.941164a378.8821 378.8821 0 0 1 757.764201 0v19.941164a111.670514 111.670514 0 0 1 99.705816 112.335219v132.941088a112.002867 112.002867 0 0 1-107.682281 112.999924 406.467376 406.467376 0 0 1-269.205703 220.682206 115.991099 115.991099 0 0 1-101.699933 45.864676z m299.117448-531.764352a18.2794 18.2794 0 0 0-19.941163 19.941163v132.941088a18.2794 18.2794 0 0 0 19.941163 19.941163h66.470544a18.2794 18.2794 0 0 0 19.941163-19.941163v-132.941088a18.2794 18.2794 0 0 0-19.941163-19.941163z m-664.705439 0a18.2794 18.2794 0 0 0-19.941163 19.941163v132.941088a18.2794 18.2794 0 0 0 19.941163 19.941163h66.470544a18.2794 18.2794 0 0 0 19.941163-19.941163v-132.941088a18.2794 18.2794 0 0 0-19.941163-19.941163z" ></path></symbol><symbol id="iconcixi" viewBox="0 0 1024 1024"><path d="M64.3 0h244.9v163.2H64.3V0z m653 0h244.9v163.2H717.3V0z m0 205.3v366.1c0 113.8-91.5 205.3-205.3 205.3s-205.3-91.5-205.3-205.3V205.3H61.8v368.5C61.8 821.2 262.2 1024 512 1024c247.3 0 450.2-200.3 450.2-450.2V205.3H717.3z" fill="#2A60A4" ></path></symbol><symbol id="iconchukong" viewBox="0 0 1024 1024"><path d="M628.2 401.6c-8 2.2-16.4 1.9-26-1.7l-1.8-0.4c-17.7-9.1-25.3-31-18.4-56.2l1.5-3.8c11.1-21.8 15.8-45.6 15.1-76.2-0.4-48.9-19.7-95.3-55.5-131.3-34.1-35.3-81-55.5-130.2-56.2-48.3 0-94.8 19.4-129.6 54.4-35.5 35.4-54.3 82.4-54.7 131.5 0.3 54.9 22.8 104 65.4 142.4 7.8 7.8 12.4 18.2 12.8 29.2 0.3 10.3-3.8 20.7-11.9 28.2-6.7 6.9-19.9 14-30.1 14-5.9-0.1-16.1 0.1-25.4-9.5-55.9-47-89.4-121.3-89.1-199.7-0.5-70.6 27-138.6 76.6-188.9C276.2 27.3 342.7 0 413.1 0c145.9 0.4 264.8 120.8 265 267.7 0.1 39-7.7 77.7-22.9 113.7l-1.9 3.1-2.7 2.4c-3.8 5.3-12 11.9-22.4 14.7zM870 565.7l3.7 284.1-1.9 2c-0.7 0.6-1.3 1.3-1.3 1.9v1.3l-0.6 1.3-46.7 90c2.6 7.3 5.2 15.1 5.2 21.7 0 29.7-26.4 55.9-55.9 55.9h-370c-29.7 0-55.9-26.4-55.9-55.9 0-8.6 1.9-14.6 3.9-19.8L217 782c-22.2-29.5-47.8-88-5.8-123.5 13.8-9.9 27.6-14.4 46.7-14.4h1.3c23 3.9 46 18.3 67.8 42.6l1.3 1.3 21.7 23.7V336.4c0-35.3 25-91.3 91.3-91.3 32.1 0 52.5 13.8 63.7 25 28.2 28.2 28.2 65.6 28.2 66.9v121.6c9.9-4.7 21.7-7.3 36.2-7.3 21.6 0 39.4 7.3 53.8 21.7 1.9 2.1 3.9 4.1 5.2 6.6 17-21.6 38.1-30.8 63.1-28.2 36.8 3.2 54.5 31.4 64.4 55.1 11-6.6 23.5-12.5 42.6-12.5 58.4 0.1 71.5 62.5 71.5 71.7z m-92.1 427.8c11.2 0 23-9.9 23.7-23 0-13.8-9.2-23-23-23H409.3c-13.8 0-23 9.2-23 23s9.2 23 23 23h368.6z" fill="#2A60A4" ></path></symbol><symbol id="icongongyeji" viewBox="0 0 1024 1024"><path d="M458.8 1023.9c-21 0-38-17-38-38v-70.1c-78.6-16-150.7-54.6-207.6-111.1L147 842.9h-0.1c-18.2 10.5-41.4 4.3-51.9-13.9v-0.1l-57.4-99.5c-10.5-18.2-4.2-41.4 13.9-52l60.8-35.1c-25.4-76.1-28.1-157.9-7.8-235.4l-66.2-38.2c-18.2-10.5-24.4-33.7-13.9-51.9l57.4-99.5c10.5-18.2 33.8-24.4 51.9-13.9l60.8 35.1c53.1-60 122.7-103.2 200-124.3V38c0-21 17-38 38-38h114.8c21 0 38 17 38 38v70.1C638.6 119 689.2 140.4 734 171L627.9 333.4C591.3 307.7 547.7 294 503 294c-120.4 0-218 97.6-218 218.1 0 120.4 97.6 218 218 218s218-97.6 218-218l194.1-0.1v0.1c0 35.4-4.5 70.6-13.5 104.8l66.2 38.2c18.1 10.5 24.3 33.7 13.8 51.9l-57.5 99.4c-10.5 18.2-33.7 24.4-51.9 14l-60.9-35.2c-53.1 60.1-122.7 103.3-200 124.4V986c0 21-17 38-38 38l-114.5-0.1z m497.3-563.4l-51-1.6-78.3-2.6-119-3.9c-26-0.9-46.5-22.7-45.6-48.7 0.3-8.3 2.7-16.3 7.1-23.3l40.9-65.9 84.3-135.8 5.7-9.3c13.8-22.1 43-28.9 65.1-15.1 7 4.4 12.7 10.5 16.6 17.7L999 390.9c0.7 1.3 1.3 2.7 1.9 4.1 10.1 24-1.2 51.6-25.2 61.7-5.8 2.4-12 3.7-18.2 3.7l-1.4 0.1z" fill="#00166E" ></path></symbol><symbol id="iconkuozhanxing" viewBox="0 0 1024 1024"><path d="M105 0h236.3c57.8 0 105 47.3 105 105v236.3c0 57.8-47.3 105-105 105H105c-57.8 0-105-47.3-105-105V105C0 47.3 47.3 0 105 0z m0 577.6h236.3c57.8 0 105 47.3 105 105V919c0 57.8-47.3 105-105 105H105C47.3 1024 0 976.7 0 919V682.7c0-57.8 47.3-105.1 105-105.1z m577.7 0H919c57.8 0 105 47.3 105 105V919c0 57.8-47.3 105-105 105H682.7c-57.8 0-105-47.3-105-105V682.7c-0.1-57.8 47.2-105.1 105-105.1zM848.1 24.9l136.5 136.5c34.1 34.1 34.1 88 0 122.1L848.1 421.4c-34.1 34.1-88 34.1-122.1 0L589.5 283.6c-34.1-34.1-34.1-88 0-122.1L727.3 24.9c32.8-32.8 88-32.8 120.8 0z" fill="#2A60A4" ></path></symbol><symbol id="iconrenyuanfankui" viewBox="0 0 1024 1024"><path d="M1024 726.8c0 33.5-30.1 58.7-63.3 58.7H563.2s-240.9 145.3-262 159.2c-21.1 13.9-45.2 2.8-45.2-16.8V785.4H63.3C27.1 785.4 0 757.5 0 726.8v-595c0-33.5 30.1-58.7 63.3-58.7h897.5c36.1 0 63.3 27.9 63.3 58.7v595zM807.4 365.7c-41 0-76 31.5-76 71.7s32.2 74.6 73.1 74.6c40.9 0 73-31.5 73-74.6 2.9-37.3-29.2-71.7-70.1-71.7z m-368.5 73.2c0 40.4 32.7 73.1 73.1 73.1s73.1-32.7 73.1-73.1-32.7-73.1-73.1-73.1-73.1 32.7-73.1 73.1z m-292.6 0c0 40.4 32.7 73.1 73.1 73.1s73.1-32.7 73.1-73.1-32.7-73.1-73.1-73.1-73.1 32.7-73.1 73.1z" fill="#2A60A4" ></path></symbol><symbol id="iconwifi" viewBox="0 0 1024 1024"><path d="M0 361.9L93.1 455c231.3-231.3 606.4-231.3 837.8 0l93.1-93.1C741.4 79.4 283 79.4 0 361.9z m372.4 372.4L512 873.9l139.6-139.6c-76.9-77.1-201.7-77.3-278.8-0.4l-0.4 0.4zM186.2 548.1l93.1 93.1c128.5-128.5 337-128.5 465.5 0l93.1-93.1c-179.7-179.6-471.6-179.6-651.7 0z" fill="#2A60A4" ></path></symbol><symbol id="iconfuwuzhiliang" viewBox="0 0 1024 1024"><path d="M68.6 1016.1c-37.9 0-68.6-30.7-68.6-68.6V392.7c0-22 10.5-42.7 28.3-55.6L464.3 21C488 3.8 520.1 3.5 544 20.4l450.8 316.9c18.3 12.8 29.2 33.8 29.1 56.2v554.1c0 37.9-30.8 68.6-68.6 68.6H68.6z m3.6-621.5v549.3h879.5V395.3L504.6 81 72.2 394.6z m97.1 329.8c-9.6-9.7-9.6-25.2 0-34.9l192.2-192.2c4.6-4.6 10.8-7.2 17.3-7.2 6.6 0 12.9 2.6 17.6 7.2l174.7 174.8 209.2-209.2H665c-13.6 0.3-24.9-10.4-25.2-24-0.3-13.6 10.4-24.9 24-25.2H838.1c13.6 0.1 24.6 11.1 24.6 24.7v173.1h0.1c0.3 13.6-10.4 24.9-24 25.2s-24.9-10.4-25.2-24V499.5l-225 225c-7 7-17.6 9.1-26.7 5.4-3.1-1.2-5.8-3.1-8.1-5.4L378.9 549.6 204.1 724.4c-4.6 4.6-10.9 7.3-17.4 7.3-6.6 0-12.9-2.6-17.4-7.3z" fill="#00166E" ></path></symbol><symbol id="iconshujugongxiang" viewBox="0 0 1024 1024"><path d="M511.94273 1024c-120.2-0.1-235.6-47.2-321.6-131.2-68.6 30.2-148.6-0.9-178.8-69.5-30.2-68.6 0.9-148.6 69.5-178.8 68.6-30.2 148.6 0.9 178.8 69.5 7.6 17.2 11.5 35.8 11.5 54.6 0 30.1-10 59.3-28.4 83C355.84273 957.1 519.84273 987 662.74273 928c4-1.7 8.3-2.6 12.6-2.6 18.2 0 33 14.8 33.1 33 0 13.4-8.1 25.5-20.4 30.6-55.6 23.1-115.1 35-175.3 34.9l-0.8 0.1zM135.84273 699.1c-38.4 0-69.6 31.1-69.7 69.6 0 38.4 31.1 69.6 69.6 69.7 38.4 0 69.6-31.1 69.7-69.6-0.1-38.5-31.2-69.7-69.6-69.7z m752.5 205.2c-74.9 0.7-136.3-59.4-137-134.3-0.7-74.9 59.4-136.2 134.3-136.9h2.8c3.9 0 7.8 0.2 11.6 0.5 29.2-159.9-42.9-321.3-181.5-406.2-15.2-10.2-19.2-30.8-9-45.9 0.1-0.1 0.1-0.2 0.2-0.3 6.2-8.9 16.4-14.3 27.3-14.3 5.5 0 11 1.4 15.9 4.1 165.6 100.8 249.8 294.9 210.2 484.7 62.5 41.3 79.7 125.4 38.4 187.8-25.1 38-67.6 60.8-113.2 60.8z m0-205.2c-38.4 0-69.6 31.1-69.7 69.6 0 38.4 31.1 69.6 69.6 69.7 38.4 0 69.6-31.1 69.7-69.6-0.1-38.6-31.3-69.7-69.6-69.7zM83.64273 565.9c-18.1-1.1-32-16.6-30.9-34.8C67.04273 341.6 195.64273 180 377.04273 123.4 383.84273 48.7 449.94273-6.3 524.64273 0.6s129.7 72.9 122.8 147.6c-6.9 74.7-72.9 129.7-147.6 122.8-49.6-4.6-92.7-35.9-112.4-81.7-151.6 50-257.8 186.7-268.8 345.9-1.3 17.2-15.6 30.6-32.9 30.7h-2.1zM512.14273 66.3c-38.4 0-69.6 31.1-69.6 69.6 0 38.4 31.1 69.6 69.6 69.6 38.4 0 69.6-31.1 69.6-69.6-0.1-38.4-31.2-69.6-69.6-69.6z" fill="#00166E" ></path></symbol><symbol id="iconchanpincanshu" viewBox="0 0 1024 1024"><path d="M133.2 1024c-19.6 0-35.5-15.9-35.5-35.5V615.2c0-19.6 15.9-35.5 35.5-35.5s35.5 15.9 35.5 35.5v373.4c0 19.5-15.9 35.4-35.5 35.4z m757.6-1.5c-19.6 0-35.4-15.9-35.5-35.5V883.1c0.1-19.6 16-35.4 35.6-35.4 19.5 0.1 35.3 15.9 35.4 35.4V987c0 19.7-15.9 35.6-35.5 35.5z m-378.8 0c-19.6 0-35.5-15.9-35.5-35.5V754c-0.1-19.6 15.8-35.6 35.4-35.6 19.6-0.1 35.6 15.8 35.6 35.4V987c0 19.7-15.9 35.6-35.5 35.5z m378.8-246.6c-73.1 0-132.4-59.3-132.4-132.4s59.3-132.4 132.4-132.4 132.4 59.3 132.4 132.4c-0.2 73.1-59.4 132.3-132.4 132.4z m0-204.9c-40.1 0-72.6 32.5-72.6 72.6 0 40.1 32.5 72.6 72.6 72.6 40.1 0 72.6-32.5 72.6-72.6 0-40.1-32.5-72.6-72.6-72.6zM512 647.3c-73.1 0-132.4-59.3-132.4-132.4S438.9 382.6 512 382.6 644.3 441.9 644.3 515c0 73-59.2 132.3-132.3 132.3z m0-204.9c-40.1 0-72.6 32.5-72.6 72.6 0 40.1 32.5 72.6 72.6 72.6 40.1 0 72.6-32.5 72.6-72.6-0.1-40.1-32.6-72.5-72.6-72.6z m-378.8 69.2C60.1 511.6 0.8 452.3 0.8 379.2s59.3-132.4 132.4-132.4 132.4 59.3 132.4 132.4c-0.1 73.2-59.3 132.4-132.4 132.4z m0-204.9c-40.1 0-72.6 32.5-72.6 72.6s32.5 72.6 72.6 72.6c40.1 0 72.6-32.5 72.6-72.6-0.1-40.1-32.5-72.5-72.6-72.6z m757.6 136.2c-19.6 0-35.5-15.9-35.5-35.5v-372c0.1-19.6 16-35.4 35.6-35.4 19.5 0.1 35.3 15.9 35.4 35.4v372c0 19.6-15.9 35.4-35.5 35.5zM512 313.7c-19.6 0-35.5-15.9-35.5-35.5V35.4c0.1-19.6 16-35.4 35.6-35.4 19.5 0.1 35.3 15.9 35.4 35.4v242.9c0 19.5-15.9 35.4-35.5 35.4zM133.2 180.3c-19.6 0-35.4-15.9-35.5-35.5v-108c0-19.6 15.9-35.5 35.5-35.5s35.5 15.9 35.5 35.5v108.1c0 19.6-15.9 35.5-35.5 35.4z" fill="#00166E" ></path></symbol><symbol id="iconyujingnengli" viewBox="0 0 1024 1024"><path d="M62.2 1024c-15.4 0-27.9-12.5-27.9-27.9s12.5-27.9 27.9-27.9h899.6c15.4 0 27.9 12.5 27.9 27.9s-12.5 27.9-27.9 27.9H62.2z m151.7-92.6c-37 0-66.9-30-66.9-66.9V575.4c0.9-97 40.7-189.6 110.4-257.1 68.9-68.2 162.6-105.5 259.5-103.4C715.1 216.6 875.4 376.8 877 575v289.6c-0.1 37-30 66.9-67 66.9l-596.1-0.1z m85.5-569.9c-58.2 56.2-91.4 133.4-92.2 214.3v288.7c0 3.7 3 6.7 6.7 6.7l63.6 0.2h532.6c3.7 0 6.7-3 6.8-6.7V575.4c-1.6-165.4-135.4-299-300.7-300.3H512c-79.6-0.2-155.9 30.8-212.6 86.4z m203.8 286H371l165.2-272.1-33 204.1h132.2L470.1 851.7l33.1-204.2z m358.7-291.1v-0.1c-8.9-15.5-3.6-35.2 11.8-44.2l74.9-43.5c15.5-8.9 35.2-3.6 44.1 11.8l0.1 0.1c8.9 15.6 3.6 35.4-11.9 44.5l-74.7 43.3c-15.5 9-35.3 3.7-44.3-11.8 0.1 0 0-0.1 0-0.1z m-744.2 11.9L43 325c-15.5-9.1-20.8-28.9-11.9-44.5 8.9-15.5 28.6-20.8 44.1-11.9h0.1l74.9 43.4c15.4 9 20.7 28.8 11.9 44.3v0.1c-8.9 15.5-28.7 20.9-44.3 12 0-0.1 0-0.1-0.1-0.1z m596.2-160.4c-15.5-9-20.7-28.8-11.8-44.3l43.2-75.2c8.8-15.5 28.6-20.9 44.1-12.1l0.2 0.1c15.5 9 20.8 28.9 11.9 44.4L758.3 196c-9 15.6-28.8 20.9-44.4 11.9zM265.7 196l-43.2-75.1c-8.9-15.5-3.6-35.4 11.9-44.4 15.4-9 35.2-3.7 44.2 11.7l0.1 0.2 43.3 75.2c8.9 15.5 3.6 35.4-12 44.3s-35.4 3.7-44.3-11.9z m243.5-46.2c-17.9 0-32.4-14.5-32.4-32.4V32.7c1.4-19.4 18.3-34 37.7-32.6 17.5 1.3 31.4 15.2 32.6 32.6v84.6c0 17.9-14.5 32.4-32.4 32.5h-5.5z" fill="#00166E" ></path></symbol><symbol id="iconshujuzhiliang" viewBox="0 0 1024 1024"><path d="M988.6 18.1H812.3C792.8 18 777 33.8 777 53.3s15.7 35.3 35.2 35.3H904.1L663 326.4 324.7 37.9c-14.8-12.6-37-10.8-49.7 3.9L9.4 351.2l-0.7 0.8c-12.8 14.7-11.3 37 3.4 49.8 14.7 12.8 37 11.3 49.8-3.4 0.3-0.4 0.7-0.8 1-1.2l242.8-282.8 336.2 286.7c13.9 11.9 34.6 11.1 47.6-1.7l263.8-260v90.4c0 19.5 15.8 35.3 35.3 35.3 19.5 0 35.3-15.8 35.3-35.3V53.4c-0.1-19.5-15.8-35.3-35.3-35.3z m0.1 352.8c-19.5 0-35.3 15.8-35.3 35.3v564.4c0 19.5 15.8 35.3 35.3 35.3s35.3-15.8 35.3-35.3V406.2c0-19.5-15.8-35.3-35.3-35.3z m-635 0c-19.5 0-35.3 15.8-35.3 35.3v564.4c0 19.5 15.8 35.3 35.3 35.3s35.3-15.8 35.3-35.3V406.2c0-19.5-15.8-35.3-35.3-35.3z m317.5 211.7c-19.5 0-35.3 15.8-35.3 35.3v352.8c0 19.5 15.8 35.3 35.3 35.3 19.5 0 35.3-15.8 35.3-35.3V617.8c0-19.5-15.8-35.2-35.3-35.2z m-635.1 0C16.6 582.6 0.8 598.4 0.8 617.9v352.8c0 19.5 15.8 35.3 35.3 35.3s35.3-15.8 35.3-35.3V617.8c0-19.5-15.8-35.2-35.3-35.2z" fill="#00166E" ></path></symbol><symbol id="iconyewuchuangxin" viewBox="0 0 1024 1024"><path d="M455.1 1011.2c-20.4-0.4-36.7-17.3-36.3-37.7 0.4-19.9 16.4-35.9 36.3-36.3h111c20.4 0.4 36.7 17.3 36.3 37.7-0.4 19.9-16.4 35.9-36.3 36.3h-111z m-62.6-108.1c-20.4-0.4-36.7-17.3-36.3-37.7 0.4-19.9 16.4-35.9 36.3-36.3h238.9c20.4 0.4 36.7 17.3 36.3 37.7-0.4 19.9-16.4 35.9-36.3 36.3H392.5zM367 755.2c-136.7-73.5-187.9-243.9-114.4-380.6 26.1-48.5 65.9-88.3 114.4-114.4 90.9-51.2 202-51.2 293 0 90.7 49 146.5 144.4 145 247.4-0.9 102.4-56.2 196.6-145.1 247.5-91 51.3-202.1 51.3-292.9 0.1z m36-431C335.8 361 293.5 431.1 292.4 507.7c1.1 76.6 43.3 146.7 110.5 183.5 68.6 38.6 152.4 38.6 221 0 65.8-37.8 106.8-107.6 107.7-183.5v-2c0.6-75.8-40.8-145.7-107.7-181.5-68.6-38.6-152.3-38.6-220.9 0z m473.1 223.4c-20.4 0-37-16.6-36.9-37 0-20.4 16.5-36.9 36.9-36.9H987c20.4 0 37 16.6 36.9 37 0 20.4-16.5 36.9-36.9 36.9H876.1z m-839.1 0c-19.9-1.3-35.7-17.1-37-37 0.4-20.3 16.7-36.6 37-37h110.9c20.4 0 37 16.6 36.9 37 0 20.4-16.5 36.9-36.9 36.9l-110.9 0.1zM745.2 283c-14.2-14-14.2-36.9-0.2-51l0.1-0.1 76.8-76.8c14.1-14.1 37.1-14.1 51.2 0 14.1 14.1 14.1 37.1 0 51.2L796.4 283c-14.1 14.1-36.9 14.2-51.1 0.1-0.1 0-0.1 0-0.1-0.1z m-517.7 0l-76.8-74c-14.2-17-14.2-39.8 2.8-51.2 14.1-11.4 34.3-11.4 48.4 0l76.8 76.8c13.4 14.9 12.1 37.7-2.7 51.1l-0.1 0.1c-6.8 4-14.5 6.1-22.3 6.1-9.5 0.1-18.7-3-26.1-8.9zM475 152.2V47c2-20.2 19.6-35.3 39.9-34.1 18.1-0.7 33.4 13.4 34.1 31.5V155.1c-1.6 19.2-17.7 34-37 34.1-20.3-0.4-36.7-16.7-37-37z" fill="#00166E" ></path></symbol><symbol id="iconyunduanbushu" viewBox="0 0 1024 1024"><path d="M421.2 838.1H251.9C127.3 838.1 20.1 748.6 2.7 630c-10.5-70.9 10.2-142.5 56.8-196.4 46.8-54.2 114.6-85.3 186.1-85.3 8.5 0 16.8 0.5 25.2 1.6 1.3 0.3 3.5-0.3 4.1-3 20.2-90.3 84.3-165.7 171.3-201.7 88-36.3 186.6-26.5 270.7 27 75.8 48.2 122.5 132.7 124.9 226 0.3 12.4 0.3 23.1-0.9 35.1 0 1 1.3 2.8 3.3 3 49.5 5.2 95.2 28.5 128.4 65.9 37.9 42 55.9 96.9 50.5 154.5-2.1 22.3-21.9 38.6-44.1 36.5-22.3-2.1-38.6-21.8-36.5-44.1 3.3-34.7-7.4-67.6-30.2-92.8-20-22.4-47.1-36.4-76.6-39.4-45.5-4.8-78.6-44.4-75.5-90.2 0.9-9.2 0.9-16.8 0.7-26.5-1.7-66.2-34.4-126-87.5-159.7-62.4-39.7-132.2-47-196.3-20.5-62.6 25.9-108.7 80-123.2 144.7-9.6 42-47.6 69.5-90.7 65.7l-1.6-0.2c-5.4-0.7-10.7-1-16.1-1-47.9 0-93.4 20.9-124.8 57.3-31.6 36.6-45.1 83.4-38 131.7 11.7 79.2 84.4 139 169.2 139h169.3c22.4 0 40.5 18.1 40.5 40.5 0 22.3-18.2 40.4-40.5 40.4z" ></path><path d="M879.1 710.9c-1.4-7.7-8.7-15.5-16.4-17.2l-5.7-1.3c-13.9-4.2-25.6-13.6-32.9-26.1-7.3-12.7-9.5-27.7-6-42l1.8-5.4c2.3-7.5-0.7-17.8-6.7-22.9 0 0-5.4-4.6-20.5-13.3-15.1-8.7-21.6-11.2-21.6-11.2-7.4-2.7-17.7-0.1-23.1 5.6l-4 4.3c-10.5 10-24.4 15.6-39 15.5-14.6 0-28.6-5.6-39.1-15.7l-3.8-4.2c-5.3-5.7-15.7-8.3-23.1-5.6 0 0-6.6 2.4-21.7 11.2-15.1 8.8-20.5 13.4-20.5 13.4-6 5.1-8.9 15.3-6.6 22.8l1.6 5.5c3.4 14.2 1.2 29.2-6 41.9s-19.1 22.1-33.1 26.2l-5.5 1.2c-7.5 1.8-15 9.5-16.4 17.2 0 0-1.2 6.9-1.2 24.5s1.2 24.5 1.2 24.5c1.4 7.8 8.7 15.5 16.4 17.2l5.4 1.2c14 4.1 25.9 13.6 33.1 26.3 7.5 13.2 9.4 28.3 6 42l-1.6 5.3c-2.3 7.5 0.7 17.8 6.7 22.9 0 0 5.4 4.6 20.5 13.3 15.1 8.8 21.7 11.2 21.7 11.2 7.3 2.7 17.7 0.1 23.1-5.6l3.8-4.1c21.9-21 56.5-21 78.4 0l3.8 4.1c5.3 5.7 15.7 8.3 23.1 5.6 0 0 6.6-2.4 21.7-11.2 15.1-8.8 20.4-13.3 20.4-13.3 6-5 9-15.3 6.7-22.9l-1.6-5.5c-3.4-14.2-1.2-29.1 6-41.8 7.3-12.7 19.1-22.1 33.1-26.3l5.4-1.2c7.5-1.8 15-9.5 16.4-17.2 0 0 1.2-6.9 1.2-24.5-0.2-17.4-1.4-24.4-1.4-24.4z m-174 94.9c-38.6 0-69.9-31.5-69.9-70.4-0.1-38.7 31.1-70.1 69.8-70.3h0.1c38.6 0 69.9 31.5 69.9 70.4-0.1 38.8-31.4 70.3-69.9 70.3z" ></path></symbol><symbol id="iconkekuozhanxing" viewBox="0 0 1024 1024"><path d="M534.147837 964.905771c0-59.194219-46.495459-110.189239-105.689679-110.889171-60.794063-0.799922-108.689386 46.59545-108.689385 107.189532v3.799629c0 32.596817-26.397422 58.994239-58.994239 58.994239H133.186993C59.59418 1023.90001 0 964.30583 0 890.713016V763.125476c0-32.596817 26.397422-58.994239 58.994239-58.994239 59.194219 0 110.189239-46.495459 110.889171-105.689679 0.799922-60.794063-46.59545-108.689386-107.189532-108.689385H58.994239c-32.596817 0-58.994239-26.397422-58.994239-58.994239V303.170394C0 229.57758 59.59418 169.9834 133.186993 169.9834h110.08925C250.375549 73.592813 328.467923 0 426.958305 0s176.582756 73.592813 183.682062 169.9834h110.089249c73.592813 0 133.186993 59.59418 133.186994 133.186994v110.089249c96.390587 6.999316 169.9834 85.19168 169.9834 183.682062s-73.592813 176.582756-169.9834 183.682062v110.089249c0 73.592813-59.59418 133.186993-133.186994 133.186994H593.142076c-32.596817 0-58.994239-26.397422-58.994239-58.994239z m186.581779-17.998242c30.996973 0 56.194512-25.197539 56.194513-56.194513V763.125476c0-32.596817 26.397422-58.994239 58.994238-58.994239 59.194219 0 110.189239-46.495459 110.889171-105.689679 0.799922-60.794063-46.59545-108.689386-107.189532-108.689385H835.918367c-32.596817 0-58.994239-26.397422-58.994238-58.994239V303.170394c0-30.996973-25.197539-56.194512-56.194513-56.194513H593.142076c-32.596817 0-58.994239-26.397422-58.994239-58.994239 0-59.194219-46.495459-110.189239-105.689679-110.889171-60.794063-0.799922-108.689386 46.59545-108.689385 107.189533v3.799629c0 32.596817-26.397422 58.994239-58.994239 58.994238H133.186993c-30.996973 0-56.194512 25.197539-56.194512 56.194513v110.089249c96.390587 6.999316 169.9834 85.19168 169.9834 183.682062S173.383068 773.524461 76.992481 780.623767v110.089249c0 30.996973 25.197539 56.194512 56.194512 56.194513h110.08925c6.999316-96.390587 85.19168-169.9834 183.682062-169.9834s176.582756 73.592813 183.682062 169.9834h110.089249z" ></path></symbol><symbol id="iconkuaisushangxian" viewBox="0 0 1024 1024"><path d="M512 972.4c-68.9 0-135.9-13.6-199.3-40.3-60.9-25.7-115.7-62.6-162.8-109.6-47.2-47.4-84.1-102.1-109.6-162.8C13.6 596.8 0 529.7 0 460.4 0 434.8 20.9 414 46.5 414S93 434.8 93 460.4c0 231 187.9 418.9 418.9 418.9 231 0 418.9-187.9 418.9-418.9 0-25.6 20.9-46.5 46.5-46.5 25.4 0 46.4 20.8 46.8 46.3 0 69-13.5 136.1-40.3 199.5-25.7 60.9-62.6 115.7-109.7 162.8-47.4 47.2-102.1 84.1-162.8 109.6-63 26.8-130.1 40.3-199.3 40.3z" ></path><path d="M507.4 693.5c-25.6 0-46.5-20.9-46.5-46.5V210L315.2 355.8c-8.8 8.8-20.4 13.6-32.9 13.6-12.4 0-24.4-5-32.8-13.6-8.7-8.6-13.5-20.2-13.6-32.6 0-12.5 4.8-24.2 13.6-33l224.9-225c8.7-8.8 20.5-13.6 33.1-13.6 12.7 0 24.6 5 33.2 13.6l224.9 225c8.8 8.6 13.6 20.3 13.6 32.6 0 12.5-4.8 24.2-13.6 33s-20.4 13.6-32.9 13.6-24.2-4.8-32.9-13.6L553.9 210v437c0 25.6-20.8 46.5-46.5 46.5z" ></path></symbol><symbol id="iconlinghuopeizhi" viewBox="0 0 1024 1024"><path d="M884.5 703l-22.4-12.8c-17.2-9.9-40.4 5.5-41.7 27.8l-4.6 82.1-4.6 82.1c-1.1 20.7 21.7 33.7 38.9 22.3l68.5-45.6 68.5-45.6c18.5-12.3 20.1-40.1 2.9-50l-24-13.7M142.1 320.8l22.4 12.8c17.2 9.9 40.4-5.5 41.7-27.8l4.6-82.1 4.6-82.1c1.1-20.7-21.7-33.7-38.9-22.3L108 164.9l-68.5 45.6c-18.5 12.3-20.1 40.1-2.9 50l24 13.7" ></path><path d="M512 1024C229.7 1024 0 794.3 0 512c0-117.8 41-232.7 115.3-323.8 16.3-19.9 45.6-22.8 65.5-6.6 19.9 16.3 22.8 45.6 6.6 65.5-60.8 74.5-94.3 168.6-94.3 264.9C93.1 743 281 930.9 512 930.9c25.7 0 46.5 20.8 46.5 46.5 0 25.8-20.8 46.6-46.5 46.6zM872.7 852.8c-10.3 0-20.8-3.4-29.4-10.5-19.9-16.3-22.9-45.6-6.6-65.5C897.5 702.4 931 608.3 931 512c0-180-114.5-339.5-284.9-397-43-14.5-88.1-21.9-134-21.9-25.7 0-46.5-20.8-46.5-46.5S486.3 0 512 0c56 0 111.1 9 163.8 26.8C884.1 97 1024 292 1024 512c0 117.7-40.9 232.6-115.3 323.6-9.2 11.3-22.5 17.2-36 17.2z" ></path><path d="M390.3 722.8L268.5 512l121.7-210.8h243.5L755.5 512 633.7 722.8H390.3zM328 512l92 159.4h184L696 512l-92-159.4H420L328 512z" ></path><path d="M512 619.9c-59.5 0-107.9-48.4-107.9-107.9S452.5 404.1 512 404.1 619.9 452.5 619.9 512 571.5 619.9 512 619.9z m0-164.4c-31.1 0-56.5 25.3-56.5 56.5s25.3 56.5 56.5 56.5 56.5-25.3 56.5-56.5-25.4-56.5-56.5-56.5z" ></path></symbol><symbol id="iconchengbenjiaodi" viewBox="0 0 1024 1024"><path d="M806.3 675.7c10.2 0 18.5 8.3 18.5 18.5v135.9L883 772c3.5-3.5 8.2-5.4 13.1-5.4s9.7 2 13.1 5.4c3.5 3.4 5.4 8.1 5.4 13 0 5-1.9 9.6-5.4 13.2L819.5 888c-3.5 3.5-8.2 5.4-13.2 5.4-5.1 0-9.8-2-13.2-5.4l-89.7-89.8c-3.5-3.5-5.4-8.1-5.4-13 0-5 1.9-9.6 5.4-13.2 3.5-3.5 8.2-5.4 13.1-5.4 5 0 9.6 1.9 13.1 5.4l58.2 58.2v-136c0-10.2 8.3-18.5 18.5-18.5z" ></path><path d="M428.2 1016.2C147.1 1016.2 0 912.7 0 810.5v-597C0 111.3 147.1 7.8 428.2 7.8c280 0 427.3 103.1 428.2 204.9v308c-16.3-3.1-33.1-4.7-50.1-4.7-11.2 0-22.4 0.7-33.3 2.1 0.4-2.1 0.7-4.2 0.7-6.2V339.8l-26 13.8c-80.1 43-190.5 65.8-319.4 65.8-128.8 0-239.2-22.7-319.4-65.8L83 339.8V512c0 44.5 115.4 124 345.3 124 60.4 0 116.3-5.5 166.4-16.4-21.3 27.3-37.3 58.7-46.7 92-37.5 4.7-77.7 7.2-119.7 7.2-129 0-239.4-22.7-319.4-65.6L83 639.1v171.6c0 44.4 115.4 123.8 345.3 123.8 52.4 0 101.8-4.4 147.1-12.9 16 27.1 37 51.4 61.4 71.3-61.6 15.4-131.7 23.3-208.6 23.3z m0-925.6c-229.9 0-345.3 79.5-345.3 124 0 44.4 115.4 123.8 345.3 123.8 230 0 345.4-79.4 345.4-123.8 0-44.6-115.4-124-345.4-124z" ></path><path d="M806.3 1002.2c-120.1 0-217.7-97.7-217.7-217.7s97.7-217.7 217.7-217.7S1024 664.5 1024 784.5s-97.7 217.7-217.7 217.7z m0-377.4c-88 0-159.7 71.6-159.7 159.7s71.6 159.7 159.7 159.7S966 872.6 966 784.5s-71.7-159.7-159.7-159.7z" ></path></symbol><symbol id="iconjieshengchengben" viewBox="0 0 1024 1024"><path d="M719.872 765.44c-120.832 0-183.296-41.472-183.296-59.392v-79.872c41.984 22.528 102.912 37.888 183.296 37.888s141.312-15.36 183.296-37.888v79.872c0 17.92-62.464 59.392-183.296 59.392m0 166.912c-120.832 0-183.296-41.472-183.296-59.392V793.6c41.984 22.528 102.912 37.888 183.296 37.888s141.312-15.36 183.296-37.888v79.872c0 17.408-62.464 58.88-183.296 58.88m0-452.096c120.832 0 183.296 41.472 183.296 59.392S840.704 599.04 719.872 599.04s-183.296-41.472-183.296-59.392 62.464-59.392 183.296-59.392m0-66.048c-163.84 0-249.344 62.976-249.344 124.928v333.824c0 61.952 85.504 124.928 249.344 124.928 162.304 0 247.808-61.952 249.344-123.904v-335.36c-0.512-61.44-86.016-124.416-249.344-124.416m-295.424-322.56c187.904 0 303.616 64.512 303.616 110.592 0 46.08-115.712 110.592-303.616 110.592-187.904 0-303.616-64.512-303.616-110.592 0-46.592 115.712-110.592 303.616-110.592m0 286.72c114.176 0 232.448-25.088 303.616-72.704v87.04h66.048V201.728C794.112 87.552 603.648 25.6 424.448 25.6S54.784 87.552 54.784 201.728v519.68c0 114.688 190.464 176.128 369.152 176.128v-66.048c-187.904 0-303.616-64.512-303.616-110.592v-156.16c71.168 47.616 189.44 72.704 303.616 72.704v-66.048C236.032 571.392 120.32 506.88 120.32 460.8V305.664c71.68 47.616 189.952 72.704 304.128 72.704" fill="" ></path></symbol><symbol id="iconpeisong" viewBox="0 0 1024 1024"><path d="M905.3 430.2c-14-22.5-33.9-40.9-57.5-53.3l-164.9-86.5v-98.7c0-35-28.6-63.5-63.7-63.5H152.1c-35.1 0-63.7 28.6-63.7 63.7v552.8c0 34.9 28.4 63.3 63.3 63.3h63c6 23.9 19.8 45.5 39 61.1 20.3 16.6 46 25.7 72.3 25.7 26.3 0 51.9-9.1 72.3-25.6 19.2-15.6 33-37.2 39-61h5.9v-0.2h134.5c6 23.9 19.8 45.5 39 61.1 20.3 16.5 46 25.6 72.2 25.6 26.2 0 51.9-9.1 72.2-25.6 19.2-15.6 32.9-37.2 39-61h2v-0.2h61c35.2 0 63.9-28.6 63.9-63.9V505.3c0-26.4-7.5-52.3-21.7-75.1zM152.1 187.9h467.1c2.1 0 3.9 1.8 3.9 3.7v98.6c0 22.9 12.6 43.4 32.9 53.5l164 86.1c29.1 15.3 47.1 44.2 47.1 75.4v216.5c0 14.4-11.7 26.2-26.2 26.2H799c-14.1-49.2-58.9-83.3-110.1-83.3s-96 34.1-110.1 83.3H436.2c-14.2-49.2-59.1-83.3-110.2-83.3s-95.9 34.1-110 83.3h-41.5c-14.4 0-26.2-11.8-26.2-26.2l-0.1-530.2c0-1.9 1.9-3.6 3.9-3.6z m118.8 589.4c1.2-28.1 24.1-51.3 52.2-52.7 1-0.1 2-0.1 2.9-0.1 14.2 0 27.5 5.3 37.9 15.2 11.1 10.5 17.2 24.7 17.2 40 0 30.4-24.7 55.1-55.1 55.1-15.1 0-29.3-6-39.8-17-10.5-10.9-15.9-25.3-15.3-40.5z m362.9 0c1.2-28.1 24.1-51.3 52.2-52.7 1-0.1 2-0.1 2.9-0.1 14.2 0 27.5 5.3 37.9 15.2 11.1 10.5 17.2 24.7 17.2 40 0 30.4-24.7 55.1-55.1 55.1-15.1 0-29.3-6-39.8-17-10.5-10.9-15.9-25.3-15.3-40.5z" ></path><path d="M637.9 601.8H769c15.9 0 29.2-12.1 30.3-27.6 0.6-8.4-2.2-16.4-7.9-22.6-5.6-6.1-13.6-9.5-21.9-9.5H667.7v-99c0-16.5-13.4-29.9-29.9-29.9-8 0-15.5 3.1-21.2 8.8-5.6 5.7-8.7 13.1-8.6 21.1V572c0 16.4 13.4 29.8 29.9 29.8z" ></path></symbol><symbol id="icontigaoxiaoshuai" viewBox="0 0 1024 1024"><path d="M 923.3 475.3 c -20.2 0 -36.7 16.4 -36.7 36.7 c 0 206.9 -167.8 374.7 -374.7 374.7 C 305 886.7 137.2 719 137.2 512 c 0 -206.9 167.8 -374.7 374.7 -374.7 c 57.7 -0.1 114.6 13.2 166.2 38.9 c 18.2 9 40.2 1.6 49.2 -16.6 c 9 -18.2 1.6 -40.2 -16.6 -49.2 C 649 79.7 581 63.8 512 64 C 264.6 64 64 264.6 64 512 s 200.6 448 448 448 s 448 -200.6 448 -448 c 0 -20.2 -16.4 -36.7 -36.7 -36.7 Z" fill="#2c2c2c" ></path><path d="M 805.2 389.8 c -0.3 -6.8 -2.5 -13.3 -6.5 -18.7 l -1.6 -1.6 c -6.4 -8.2 -16.3 -12.9 -26.7 -12.8 h -3.9 c -1.6 -0.2 -3.1 -0.2 -4.7 0 l -134.2 1.8 c -18.8 0 -34 15.2 -34 34 s 15.2 34 34 34 h 57.2 L 532.6 584.1 L 413.4 468.4 L 411 466 c -9.5 -9.3 -23.6 -12 -35.8 -6.7 c -4.9 1.8 -9.2 4.6 -12.8 8.4 L 226.9 608.5 c -13.7 13.8 -13.7 36.1 0 49.9 c 6.5 6.4 15.3 10 24.4 10 c 9.3 -0.1 18.2 -3.9 24.6 -10.6 l 115.7 -120.1 L 513.8 656 c 12.8 12.6 33.4 12.6 46.2 0 l 177.8 -183.3 v 61.1 c 0 18.8 15.2 34 34 34 s 34 -15.2 34 -34 l -0.6 -144 Z" fill="#2c2c2c" ></path></symbol><symbol id="iconVR" viewBox="0 0 1024 1024"><path d="M512 0a512 512 0 1 1 0 1024A512 512 0 0 1 512 0z m0 85.333333a426.666667 426.666667 0 1 0 0 853.333334 426.666667 426.666667 0 0 0 0-853.333334zM310.954667 336.952889c11.093333 0 20.48 11.662222 22.357333 27.534222 5.802667 58.368 11.207111 116.792889 16.270222 175.217778l86.755556-183.182222c4.608-9.784889 19.114667-19.569778 28.899555-19.569778h217.144889c73.784889 0 100.977778 47.616 100.977778 102.115555 0 39.139556-23.722667 84.764444-76.231111 106.552889l40.049778 122.88c3.982222 11.093333 0 21.390222-10.808889 21.390223h-51.939556c-12.913778 0-21.048889-3.982222-24.974222-16.668445l-32.483556-117.191111h-31.175111l-23.665777 116.280889c-1.763556 8.817778-6.314667 17.578667-22.414223 17.578667h-41.358222c-10.979556 0-20.252444-8.533333-18.545778-17.066667l37.148445-185.173333h125.269333c39.082667 0 48.469333-29.752889 48.469333-44.088889 0-21.845333-11.889778-33.223111-32.142222-33.223111H495.843556l-142.336 279.552H289.678222l-36.750222-323.356445c-1.706667-14.791111 8.419556-29.582222 20.252444-29.582222z" fill="#333333" ></path></symbol><symbol id="iconduocanshu" viewBox="0 0 1024 1024"><path d="M888.163265 375.963285c-9.299092 0-14.598574 0-356.96514 148.085538l45.995508-370.463822c2.499756-19.298115-11.598867-36.696416-31.196953-39.096182-18.798164-2.199785-37.996289-3.299678-56.794454-3.299677-234.577092 0-432.857729 172.483156-461.254955 401.160824-31.096963 249.775608 150.885265 477.753344 405.460404 508.150376 18.798164 2.199785 37.996289 3.499658 56.794454 3.499658 234.577092 0 432.857729-172.483156 461.154965-401.160824 9.399082-76.092569-0.899912-153.784982-29.89708-224.878039-5.599453-13.298701-18.698174-21.997852-33.296749-21.997852z m-7.799238 238.276731c-23.997656 193.481105-191.781271 339.466849-390.161898 339.466849-15.998438 0-32.196856-0.999902-48.095303-2.799727C226.627868 924.909677 72.742896 732.128503 98.940338 520.849136c23.997656-193.481105 191.781271-339.466849 390.161898-339.466849 4.0996 0 8.29919 0.09999 12.398789 0.19998L452.40582 576.943658c-1.599844 12.498779 3.799629 24.997559 14.198613 32.396836 10.398984 7.499268 23.997656 8.999121 35.796504 3.99961 115.988673-50.195098 292.271458-126.087687 364.464408-155.984768 15.398496 50.495069 19.898057 104.189825 13.498682 156.88468z m117.388536-383.762524C943.557856 105.189728 824.469485 16.89835 686.982912 0.19998c-11.798848-1.499854-22.497803 6.799336-23.997657 18.298214l-45.395566 358.365003c-0.999902 7.399277 2.199785 14.798555 8.399179 19.398106 3.699639 2.799727 8.29919 4.19959 12.898741 4.199589 2.799727 0 5.699443-0.499951 8.399179-1.699834l339.066888-140.686261c5.199492-2.099795 9.399082-6.299385 11.498877-11.498877 2.299775-5.099502 2.099795-10.998926-0.09999-16.098428z" ></path></symbol><symbol id="iconzuiyou" viewBox="0 0 1024 1024"><path d="M525.4 943.8c-1.9 0-3.8-0.2-5.8-0.4-1.2-0.1-2.5-0.3-3.7-0.3-1.3 0-2.5 0.1-3.7 0.3-1.8 0.2-3.6 0.3-5.3 0.3-6.7 0-12.2-2.4-16.3-7L8.7 387.8c-12.1-14.4-11.4-35.2 1.3-48.6L250.8 93.3c4.5-4.6 12.9-13.1 23.9-13.1h444.4c9.5 0 16.6 6.6 21.4 11l272.1 248.7c6.7 5.7 11 14.4 11.4 23.6 0.6 8.9-2.5 18-8.6 24.7l-474 548.7c-4.2 4.6-9.5 6.9-16 6.9zM516 810.2l148.3-412.3H369.6L516 810.2z m-91.4-55.7L297.6 398H113.8l310.8 356.5z m185.5-5.6l300.9-351H736.7l-126.6 351zM289.2 329l74.2-180h-74.6L113 329h176.2z m614.8 0L706.2 149h-52.5l90 180H904z m-236.9 0L577 149H437.6l-74.1 180h303.6z" ></path></symbol><symbol id="iconAI" viewBox="0 0 1024 1024"><path d="M661.3 349.4h65.1v322.2h-65.1zM499.8 349.3h-68.9L305.5 671.6h69l26.6-73.2h128.7l28.3 73.2h70.7l-129-322.3z m-78.7 194.8l43.5-119.5L509 544.1h-87.9zM70.7 763.2L73 635l72.3 1.3-1.5 86.2 365.7 217.9 220.7-123.6 35.4 63.1L508.4 1024z" ></path><path d="M809.4 770.6l71.5-42v-429L667.8 170.2l37.6-61.9 247.9 150.5V770L846 833zM74.3 544.5V249.4L520.7 0l105.5 65.6-38.2 61.5L518.7 84 146.6 291.9v252.6z" ></path></symbol><symbol id="iconmubiao" viewBox="0 0 1024 1024"><path d="M506.20003 306.4v-0.8c19.4 0 35.1-15.7 35.1-35.1 0-19.4-15.7-35.1-35.1-35.1-156.3-0.2-283.1 126.4-283.2 282.7-0.1 156.3 126.5 283.1 282.8 283.1S788.90003 674.7 789.00003 518.4c0-13.5-1-27.1-2.9-40.5h-1.3c-3.4-17.6-20.4-29.2-38-25.8-15.1 2.9-26.1 15.9-26.4 31.2h-0.6c3.1 14.5 0.6 19.7 0.6 34.6 0 116.8-97.5 211.8-214.2 211.8-116.9-0.2-211.6-94.9-211.8-211.8 0-116.8 94.6-211.5 211.4-211.5h0.4zM605.00003 199.9l21.4 139.9-0.7 0.7-117.1 117.2h-2.4c-33.4-0.1-60.5 26.9-60.6 60.3-0.1 0.3-0.1 0.7 0 1.1v0.9l2.3 12.6c5.4 21.5 22.3 38.3 43.8 43.6l12.5 2.3h1.7c33.4 0.1 60.6-26.9 60.7-60.3v-2.8l117.9-117.9 145.4 22.2 3.9-3.9L1024.00003 225.3l-195.7-27.8v-1.3L798.50003 0.3l-15.3 15.3-179 178.7 0.8 5.6z m66.3 13.1l78.7-74.9 0.6 3.5 19.9 114 13.9 0.6 106.9 14.6-2.9 2.8-81.7 75.5h-0.7l-118.2-13.9v-1.5l-17.2-120 0.7-0.7z m320.4 185.2C986.00003 387 974.60003 380 962.00003 379.9c-18.8 0-34 15.2-34 34 0.1 5.8 1.8 11.5 4.9 16.5 7.2 31.6 7.3 55.1 7.3 87.8-0.2 239.9-194.8 434.2-434.7 434S71.50003 757.3 71.70003 517.4c0.2-239.7 194.5-433.9 434.2-434 32.5 0 64.9 3.6 96.6 10.8l0.4-1.2c1.8 0.6 3.6 1 5.4 1.2 19.4-0.8 34.5-17.1 33.7-36.5-0.5-13.5-8.7-25.5-21.1-30.8-45.6-13.4-66.6-14.6-115-14.6C226.60003 12.2 0.10003 238.5 0.00003 517.8s226.2 505.8 505.5 505.9 505.8-226.2 505.9-505.5v-0.2c0-48.5-5.2-74.4-18.6-120.6l-1.1 0.8z" ></path></symbol><symbol id="iconpingheng" viewBox="0 0 1625 1024"><path d="M267.553444 747.257852c55.402481 0 103.778306 41.484297 103.778306 103.778305S322.955925 954.814463 267.553444 954.814463s-103.778306-48.375825-103.778305-103.778306S212.150963 747.257852 267.553444 747.257852z m0-69.185537c-96.886778 0-172.963843 76.077065-172.963843 172.963842s76.077065 172.963843 172.963843 172.963843 172.963843-82.968593 172.963843-172.963843c0-96.886778-76.077065-172.963843-172.963843-172.963842M648.073898 69.185537c55.402481 0 103.778306 48.375825 103.778306 103.778306s-48.375825 103.778306-103.778306 103.778305-103.778306-41.484297-103.778305-103.778305c0-62.294009 48.375825-103.778306 103.778305-103.778306z m0-69.185537c-96.886778 0-172.963843 76.077065-172.963843 172.963843s76.077065 172.963843 172.963843 172.963842 172.963843-76.077065 172.963843-172.963842c0-89.995249-76.077065-172.963843-172.963843-172.963843M1028.594352 747.257852c55.402481 0 103.778306 48.375825 103.778306 103.778305s-48.375825 103.778306-103.778306 103.778306-103.778306-48.375825-103.778306-103.778306 48.375825-103.778306 103.778306-103.778305z m0-69.185537c-96.886778 0-172.963843 76.077065-172.963843 172.963842s76.077065 172.963843 172.963843 172.963843 172.963843-76.077065 172.963843-172.963843-76.077065-172.963843-172.963843-172.963842" ></path><path d="M917.924518 719.556611c20.809712-13.783056 34.592769-27.70124 62.294009-34.592768L758.743732 304.443389c-13.783056 13.783056-34.592769 27.70124-55.402481 34.592768l214.583267 380.520454zM378.223278 719.556611l214.448139-380.520454c-20.809712-6.891528-41.484297-20.809712-55.402481-34.592768L322.955925 684.963843c20.674584 6.891528 41.484297 20.674584 55.267353 34.592768zM862.522037 885.628926c0-13.783056-6.891528-20.809712-6.891528-34.592769 0-13.783056 0-20.809712 6.891528-34.592768H433.625759c6.891528 6.891528 6.891528 20.809712 6.891528 34.592768 0 13.783056 0 20.809712-6.891528 34.592769h428.896278z" ></path></symbol><symbol id="iconERP" viewBox="0 0 1024 1024"><path d="M237.8 621.3V402.7h148.7v47.9h-94.9v36.5h81.1V535h-81.1v38.4h94.9v47.9H237.8zM535.2 621.3L496.5 540h-18.1v81.4h-53.7V402.7h86.6c48.5 0 74.6 34.4 74.6 70.3 0 29.8-18.4 48.5-35.6 57.1l47.3 91.2h-62.4z m-26.4-170.4h-30.4v44.2h30.4c14.7 0 23.3-10.8 23.3-22.1s-8.6-22.1-23.3-22.1zM711.5 543.3h-32.9v78h-53.8V402.7h86.6c48.5 0 74.6 34.4 74.6 70.3s-25.9 70.3-74.5 70.3z m-2.4-92.4h-30.4v44.2h30.4c14.7 0 23.3-10.8 23.3-22.1s-8.6-22.1-23.3-22.1z" ></path><path d="M512 87.8c233.9 0 424.2 190.3 424.2 424.2S745.9 936.2 512 936.2 87.8 745.9 87.8 512 278.1 87.8 512 87.8M512 0C229.2 0 0 229.2 0 512s229.2 512 512 512 512-229.2 512-512S794.8 0 512 0z" ></path></symbol><symbol id="iconJOT" viewBox="0 0 1024 1024"><path d="M310.6 623.2c-25.5 0-41.8-6.1-59.6-24l35.3-35c6.8 6.8 12.3 11.1 24.3 11.1 16.6 0 28.6-9.2 28.6-30.1V402.7H393v143.7c-0.1 51.9-41.2 76.8-82.4 76.8zM571.4 598.6c-16 16-34.4 24.6-61.1 24.6-26.7 0-45.1-8.6-61.1-24.6-23-23-22.1-53.8-22.1-86.6s-0.9-63.6 22.1-86.6c16-16 34.4-24.6 61.1-24.6 26.7 0 45.1 8.6 61.1 24.6 23 23 22.1 53.8 22.1 86.6s1 63.6-22.1 86.6z m-39.6-140.3c-4-5.2-11.7-9.5-21.5-9.5s-17.5 4.3-21.5 9.5c-4.9 6.5-8 13.8-8 53.8s3.1 47 8 53.4c4 5.2 11.7 9.8 21.5 9.8s17.5-4.6 21.5-9.8c4.9-6.5 8-13.5 8-53.4s-3.1-47.4-8-53.8zM719.2 450.6v170.8h-53.8V450.6h-53.7v-47.9H773v47.9h-53.8z" ></path><path d="M512 87.8c233.9 0 424.2 190.3 424.2 424.2S745.9 936.2 512 936.2 87.8 745.9 87.8 512 278.1 87.8 512 87.8M512 0C229.2 0 0 229.2 0 512s229.2 512 512 512 512-229.2 512-512S794.8 0 512 0z" ></path></symbol><symbol id="iconplm" viewBox="0 0 1024 1024"><path d="M371.7 534h-23v54.7H311V435.4h60.7c34 0 52.3 24.1 52.3 49.3 0 25.1-18.3 49.3-52.3 49.3z m-1.7-64.8h-21.3v31H370c10.3 0 16.4-7.5 16.4-15.5s-6.1-15.5-16.4-15.5zM446 588.6V435.4h37.7v119.7h64.4v33.6H446zM675.3 588.6v-73.4l-21.7 37.9h-24.1l-21.7-37.9v73.4H570V435.4h37l34.4 67.6 34.4-67.6h37v153.3h-37.5z" ></path><path d="M713.4 201.4c-76.7 0-147.1 28-201.3 74.4-54.2-46.4-124.6-74.4-201.4-74.4C139.4 201.4 0 340.8 0 512c0 171.3 139.4 310.6 310.6 310.6 76.8 0 147.2-28.1 201.4-74.3 54.2 46.4 124.6 74.3 201.3 74.3 171.3 0 310.6-139.3 310.6-310.6 0.1-171.2-139.2-310.6-310.5-310.6z m0 563.3c-61.2 0-117.3-21.7-160.9-57.9-15.1-12.7-28.7-26.9-40.4-42.4-11.8 15.7-25.4 29.9-40.5 42.4-43.7 36.2-99.9 57.9-160.9 57.9-139.4 0-252.6-113.4-252.6-252.7 0-139.2 113.3-252.6 252.6-252.6 61.1 0 117.2 21.7 160.9 57.9 15.1 12.5 28.7 26.8 40.5 42.4 11.7-15.7 25.3-29.7 40.4-42.4 43.6-36.2 99.8-57.9 160.9-57.9C852.7 259.4 966 372.8 966 512c-0.1 139.3-113.3 252.7-252.6 252.7z" ></path></symbol><symbol id="iconyouxiang-" viewBox="0 0 1024 1024"><path d="M1021.407 146.857L512.645 574.783 3.909 146.857zM0.007 183.402L339.886 471.24 0.007 876.743z" ></path><path d="M39.354 877.144L363.529 494.4 512.54 616.772l149.274-126.179 324.157 386.551zM1023.993 876.743L684.122 471.24l339.871-287.838z" ></path></symbol><symbol id="icondianhua01" viewBox="0 0 1024 1024"><path d="M 451.801 292.3 c 21.8 0 35.6 -14.4999 35.6 -35.6 s -14.4999 -35.6 -35.6 -35.6 c -118.8 0.700036 -214.6 96.3999 -215.2 215.2 c 0 21.8 14.4999 35.6 35.6 35.6 c 21.8 0 35.6 -14.4999 35.6 -35.6 c 0.699965 -79.3 64.6998 -143.3 144 -144 Z m 0 -143.2 c 21.8 0 35.6 -14.4999 35.6 -35.6 s -14.4999 -35.6 -35.6 -35.6 c -197.4 0 -358.5 161.7 -358.5 358.5 c 0 21.8 14.4999 35.6 35.6 35.6 c 21.8 0 35.6 -14.4999 35.6 -35.6 c 0.100409 -158 129.5 -287.3 287.3 -287.3 Z M 326.3 633.6 C 286.7 594 226 590.7 183 626.3 l -140.5 111 C -4.4 772.9 -11.7 841.6 24.6 887.8 c 3.3 3.3 3.3 7.3 7.30003 7.30003 l 97.0002 97.0002 c 93.0998 93.0998 344.6 -39.5994 585 -279.9 s 369.7 -487.9 279.9 -580.9 l -97.0002 -97.0002 c -42.9 -42.9 -110.9 -42.9 -150.501 0 l -7.30003 7.30003 l -111 139.8 c -35.6 42.9 -32.3 103.6 7.29982 143.3 L 696 385.4 c -39.6 64.7 -82.5 122.1 -132.7 172.3 c -50.2 50.2 -107.6 93.0998 -172.3 132.7 l -64.7 -56.8 Z m -96.9999 50.1999 c 14.5 -10.6 35.6 -10.6 46.9001 3.3 l 82.4999 79.1999 c 11.2 11.2 28.4 13.9 42.9 7.30003 c 77.9 -42.3 149.2 -95.6997 211.9 -157.8 c 62.7 -62.7 115.5 -134 157.8 -211.9 c 6.60004 -14.5 3.99996 -31.7 -7.30003 -42.9 l -82.5003 -82.5003 c -14.5 -14.5 -14.5 -32.3 -3.3 -46.9001 l 114.9 -140 s 0 -3.3 3.3 -3.3 c 13.2 -13.9 35 -14.5 48.9 -1.30002 l 1.3 1.3 l 97.0002 97.0002 c 46.9 46.9 -71.9997 268.7 -279.9 480.6 C 455.1 877.2 229.3 992.1 182.4 945.2 L 82.1 844.9 c -10.6 -14.5 -10.6 -39.6 7.29996 -50.2 l 139.9 -110.9 Z" ></path></symbol><symbol id="icondianhua" viewBox="0 0 1024 1024"><path d="M621.40595 714.104975c3.09997 0 21.692792-15.494851 27.889732-18.593822 12.396881-6.197941 21.693792-12.395881 30.989703-15.494851 65.079375-27.889732 120.85884-9.296911 195.234125 80.573227 46.484554 55.780465 58.879435 102.265018 43.385584 145.650601-12.395881 30.989703-40.286613 55.780465-83.671197 80.572227-3.09997 3.09997-27.890732 18.593822-37.187643 21.692792-105.363989 65.078375-350.181638-83.671197-526.820943-343.982698C94.584007 407.30892 48.100453 131.502568 156.563412 63.326222l15.494851-9.296911 15.494852-9.29691c55.781465-34.088673 89.869137-49.583524 130.15575-43.385584 40.286613 6.197941 77.474256 37.187643 105.364989 92.969108 61.979405 117.75887 49.582524 173.540334-30.989703 226.222828-6.197941 3.09897-27.890732 15.494851-27.890732 18.593821-18.593822 12.395881 12.395881 96.067078 92.969107 207.629007 77.473256 117.76087 142.550632 182.838245 164.243424 167.343394z" ></path></symbol><symbol id="iconzhuce-youxiang" viewBox="0 0 1024 1024"><path d="M105.5 922.1C47.3 922.1 0 874.8 0 816.7V207.3c0-58.1 47.3-105.4 105.5-105.4h813.1c58.2 0 105.5 47.3 105.5 105.4v609.4c0 55.9-43.7 102.1-99.4 105.3H105.5zM75.4 816.7c0 16.6 13.5 30.1 30.1 30.1h813.1c16.6 0 30.1-13.5 30.1-30.1V231.2L536.1 574.7c-6.8 5.6-15.3 8.8-24.1 8.8s-17.4-3.1-24.1-8.8L75.4 231.2v585.5zM512 496.8l383.7-319.6H128.3L512 496.8z" ></path></symbol></svg>',m=(m=document.getElementsByTagName("script"))[m.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 v(){t||(t=!0,i())}l=function(){var c,l,h;(h=document.createElement("div")).innerHTML=s,s=null,(l=h.getElementsByTagName("svg")[0])&&(l.setAttribute("aria-hidden","true"),l.style.position="absolute",l.style.width=0,l.style.height=0,l.style.overflow="hidden",c=l,(h=document.body).firstChild?(l=h.firstChild).parentNode.insertBefore(c,l):h.appendChild(c))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(l,0):(h=function(){document.removeEventListener("DOMContentLoaded",h,!1),l()},document.addEventListener("DOMContentLoaded",h,!1)):document.attachEvent&&(i=l,o=c.document,t=!1,(a=function(){try{o.documentElement.doScroll("left")}catch(c){return void setTimeout(a,50)}v()})(),o.onreadystatechange=function(){"complete"==o.readyState&&(o.onreadystatechange=null,v())})}(window);
\ No newline at end of file
{
"id": "2480204",
"name": "jianzhu",
"font_family": "iconfont",
"css_prefix_text": "icon",
"description": "公司网站",
"glyphs": [
{
"icon_id": "21892568",
"name": "路径 1086",
"font_class": "lujing1086",
"unicode": "e686",
"unicode_decimal": 59014
},
{
"icon_id": "21411991",
"name": "客服",
"font_class": "ziyuan7",
"unicode": "e685",
"unicode_decimal": 59013
},
{
"icon_id": "20952435",
"name": "磁吸",
"font_class": "cixi",
"unicode": "e67f",
"unicode_decimal": 59007
},
{
"icon_id": "20952436",
"name": "触控",
"font_class": "chukong",
"unicode": "e680",
"unicode_decimal": 59008
},
{
"icon_id": "20952437",
"name": "工业级",
"font_class": "gongyeji",
"unicode": "e681",
"unicode_decimal": 59009
},
{
"icon_id": "20952438",
"name": "扩展性",
"font_class": "kuozhanxing",
"unicode": "e682",
"unicode_decimal": 59010
},
{
"icon_id": "20952439",
"name": "人员反馈",
"font_class": "renyuanfankui",
"unicode": "e683",
"unicode_decimal": 59011
},
{
"icon_id": "20952440",
"name": "wifi",
"font_class": "wifi",
"unicode": "e684",
"unicode_decimal": 59012
},
{
"icon_id": "20945481",
"name": "服务质量",
"font_class": "fuwuzhiliang",
"unicode": "e679",
"unicode_decimal": 59001
},
{
"icon_id": "20945482",
"name": "数据共享",
"font_class": "shujugongxiang",
"unicode": "e67a",
"unicode_decimal": 59002
},
{
"icon_id": "20945483",
"name": "产品参数",
"font_class": "chanpincanshu",
"unicode": "e67b",
"unicode_decimal": 59003
},
{
"icon_id": "20945484",
"name": "预警能力",
"font_class": "yujingnengli",
"unicode": "e67c",
"unicode_decimal": 59004
},
{
"icon_id": "20945485",
"name": "数据质量",
"font_class": "shujuzhiliang",
"unicode": "e67d",
"unicode_decimal": 59005
},
{
"icon_id": "20945486",
"name": "业务创新",
"font_class": "yewuchuangxin",
"unicode": "e67e",
"unicode_decimal": 59006
},
{
"icon_id": "20935213",
"name": "云端部署",
"font_class": "yunduanbushu",
"unicode": "e674",
"unicode_decimal": 58996
},
{
"icon_id": "20935214",
"name": "可扩展性",
"font_class": "kekuozhanxing",
"unicode": "e675",
"unicode_decimal": 58997
},
{
"icon_id": "20935215",
"name": "快速上线",
"font_class": "kuaisushangxian",
"unicode": "e676",
"unicode_decimal": 58998
},
{
"icon_id": "20935216",
"name": "灵活配置",
"font_class": "linghuopeizhi",
"unicode": "e677",
"unicode_decimal": 58999
},
{
"icon_id": "20935217",
"name": "成本较低",
"font_class": "chengbenjiaodi",
"unicode": "e678",
"unicode_decimal": 59000
},
{
"icon_id": "5469096",
"name": "节省成本",
"font_class": "jieshengchengben",
"unicode": "e6ff",
"unicode_decimal": 59135
},
{
"icon_id": "11462175",
"name": "配送",
"font_class": "peisong",
"unicode": "e604",
"unicode_decimal": 58884
},
{
"icon_id": "16871888",
"name": "提高效率",
"font_class": "tigaoxiaoshuai",
"unicode": "ee40",
"unicode_decimal": 60992
},
{
"icon_id": "18062827",
"name": "VR",
"font_class": "VR",
"unicode": "e60c",
"unicode_decimal": 58892
},
{
"icon_id": "20846388",
"name": "多参数",
"font_class": "duocanshu",
"unicode": "e670",
"unicode_decimal": 58992
},
{
"icon_id": "20846389",
"name": "最优",
"font_class": "zuiyou",
"unicode": "e671",
"unicode_decimal": 58993
},
{
"icon_id": "20846390",
"name": "AI",
"font_class": "AI",
"unicode": "e672",
"unicode_decimal": 58994
},
{
"icon_id": "20846391",
"name": "目标",
"font_class": "mubiao",
"unicode": "e673",
"unicode_decimal": 58995
},
{
"icon_id": "3851155",
"name": "平衡",
"font_class": "pingheng",
"unicode": "e606",
"unicode_decimal": 58886
},
{
"icon_id": "20843459",
"name": "ERP",
"font_class": "ERP",
"unicode": "e66a",
"unicode_decimal": 58986
},
{
"icon_id": "20843472",
"name": "JOT",
"font_class": "JOT",
"unicode": "e66b",
"unicode_decimal": 58987
},
{
"icon_id": "20843473",
"name": "plm",
"font_class": "plm",
"unicode": "e66c",
"unicode_decimal": 58988
},
{
"icon_id": "5354204",
"name": "邮箱",
"font_class": "youxiang-",
"unicode": "e6af",
"unicode_decimal": 59055
},
{
"icon_id": "18368451",
"name": "电 话01",
"font_class": "dianhua01",
"unicode": "e68f",
"unicode_decimal": 59023
},
{
"icon_id": "20719703",
"name": "电 话",
"font_class": "dianhua",
"unicode": "e605",
"unicode_decimal": 58885
},
{
"icon_id": "19830215",
"name": "注册-邮箱",
"font_class": "zhuce-youxiang",
"unicode": "e68e",
"unicode_decimal": 59022
}
]
}
<?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" >
<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="cixi" unicode="&#59007;" d="M64.3 896h244.9v-163.2H64.3V896z m653 0h244.9v-163.2H717.3V896z m0-205.3v-366.1c0-113.8-91.5-205.3-205.3-205.3s-205.3 91.5-205.3 205.3V690.7H61.8v-368.5C61.8 74.8 262.2-128 512-128c247.3 0 450.2 200.3 450.2 450.2V690.7H717.3z" horiz-adv-x="1024" />
<glyph glyph-name="chukong" unicode="&#59008;" d="M628.2 494.4c-8-2.2-16.4-1.9-26 1.7l-1.8 0.4c-17.7 9.1-25.3 31-18.4 56.2l1.5 3.8c11.1 21.8 15.8 45.6 15.1 76.2-0.4 48.9-19.7 95.3-55.5 131.3-34.1 35.3-81 55.5-130.2 56.2-48.3 0-94.8-19.4-129.6-54.4-35.5-35.4-54.3-82.4-54.7-131.5 0.3-54.9 22.8-104 65.4-142.4 7.8-7.8 12.4-18.2 12.8-29.2 0.3-10.3-3.8-20.7-11.9-28.2-6.7-6.9-19.9-14-30.1-14-5.9 0.1-16.1-0.1-25.4 9.5-55.9 47-89.4 121.3-89.1 199.7-0.5 70.6 27 138.6 76.6 188.9C276.2 868.7 342.7 896 413.1 896c145.9-0.4 264.8-120.8 265-267.7 0.1-39-7.7-77.7-22.9-113.7l-1.9-3.1-2.7-2.4c-3.8-5.3-12-11.9-22.4-14.7zM870 330.3l3.7-284.1-1.9-2c-0.7-0.6-1.3-1.3-1.3-1.9v-1.3l-0.6-1.3-46.7-90c2.6-7.3 5.2-15.1 5.2-21.7 0-29.7-26.4-55.9-55.9-55.9h-370c-29.7 0-55.9 26.4-55.9 55.9 0 8.6 1.9 14.6 3.9 19.8L217 114c-22.2 29.5-47.8 88-5.8 123.5 13.8 9.9 27.6 14.4 46.7 14.4h1.3c23-3.9 46-18.3 67.8-42.6l1.3-1.3 21.7-23.7V559.6c0 35.3 25 91.3 91.3 91.3 32.1 0 52.5-13.8 63.7-25 28.2-28.2 28.2-65.6 28.2-66.9v-121.6c9.9 4.7 21.7 7.3 36.2 7.3 21.6 0 39.4-7.3 53.8-21.7 1.9-2.1 3.9-4.1 5.2-6.6 17 21.6 38.1 30.8 63.1 28.2 36.8-3.2 54.5-31.4 64.4-55.1 11 6.6 23.5 12.5 42.6 12.5 58.4-0.1 71.5-62.5 71.5-71.7z m-92.1-427.8c11.2 0 23 9.9 23.7 23 0 13.8-9.2 23-23 23H409.3c-13.8 0-23-9.2-23-23s9.2-23 23-23h368.6z" horiz-adv-x="1024" />
<glyph glyph-name="gongyeji" unicode="&#59009;" d="M458.8-127.9c-21 0-38 17-38 38v70.1c-78.6 16-150.7 54.6-207.6 111.1L147 53.1h-0.1c-18.2-10.5-41.4-4.3-51.9 13.9v0.1l-57.4 99.5c-10.5 18.2-4.2 41.4 13.9 52l60.8 35.1c-25.4 76.1-28.1 157.9-7.8 235.4l-66.2 38.2c-18.2 10.5-24.4 33.7-13.9 51.9l57.4 99.5c10.5 18.2 33.8 24.4 51.9 13.9l60.8-35.1c53.1 60 122.7 103.2 200 124.3V858c0 21 17 38 38 38h114.8c21 0 38-17 38-38v-70.1C638.6 777 689.2 755.6 734 725L627.9 562.6C591.3 588.3 547.7 602 503 602c-120.4 0-218-97.6-218-218.1 0-120.4 97.6-218 218-218s218 97.6 218 218l194.1 0.1v-0.1c0-35.4-4.5-70.6-13.5-104.8l66.2-38.2c18.1-10.5 24.3-33.7 13.8-51.9l-57.5-99.4c-10.5-18.2-33.7-24.4-51.9-14l-60.9 35.2c-53.1-60.1-122.7-103.3-200-124.4V-90c0-21-17-38-38-38l-114.5 0.1z m497.3 563.4l-51 1.6-78.3 2.6-119 3.9c-26 0.9-46.5 22.7-45.6 48.7 0.3 8.3 2.7 16.3 7.1 23.3l40.9 65.9 84.3 135.8 5.7 9.3c13.8 22.1 43 28.9 65.1 15.1 7-4.4 12.7-10.5 16.6-17.7L999 505.1c0.7-1.3 1.3-2.7 1.9-4.1 10.1-24-1.2-51.6-25.2-61.7-5.8-2.4-12-3.7-18.2-3.7l-1.4-0.1z" horiz-adv-x="1024" />
<glyph glyph-name="kuozhanxing" unicode="&#59010;" d="M105 896h236.3c57.8 0 105-47.3 105-105v-236.3c0-57.8-47.3-105-105-105H105c-57.8 0-105 47.3-105 105V791C0 848.7 47.3 896 105 896z m0-577.6h236.3c57.8 0 105-47.3 105-105V-23c0-57.8-47.3-105-105-105H105C47.3-128 0-80.7 0-23V213.3c0 57.8 47.3 105.1 105 105.1z m577.7 0H919c57.8 0 105-47.3 105-105V-23c0-57.8-47.3-105-105-105H682.7c-57.8 0-105 47.3-105 105V213.3c-0.1 57.8 47.2 105.1 105 105.1zM848.1 871.1l136.5-136.5c34.1-34.1 34.1-88 0-122.1L848.1 474.6c-34.1-34.1-88-34.1-122.1 0L589.5 612.4c-34.1 34.1-34.1 88 0 122.1L727.3 871.1c32.8 32.8 88 32.8 120.8 0z" horiz-adv-x="1024" />
<glyph glyph-name="renyuanfankui" unicode="&#59011;" d="M1024 169.2c0-33.5-30.1-58.7-63.3-58.7H563.2s-240.9-145.3-262-159.2c-21.1-13.9-45.2-2.8-45.2 16.8V110.6H63.3C27.1 110.6 0 138.5 0 169.2v595c0 33.5 30.1 58.7 63.3 58.7h897.5c36.1 0 63.3-27.9 63.3-58.7v-595zM807.4 530.3c-41 0-76-31.5-76-71.7s32.2-74.6 73.1-74.6c40.9 0 73 31.5 73 74.6 2.9 37.3-29.2 71.7-70.1 71.7z m-368.5-73.2c0-40.4 32.7-73.1 73.1-73.1s73.1 32.7 73.1 73.1-32.7 73.1-73.1 73.1-73.1-32.7-73.1-73.1z m-292.6 0c0-40.4 32.7-73.1 73.1-73.1s73.1 32.7 73.1 73.1-32.7 73.1-73.1 73.1-73.1-32.7-73.1-73.1z" horiz-adv-x="1024" />
<glyph glyph-name="wifi" unicode="&#59012;" d="M0 534.1L93.1 441c231.3 231.3 606.4 231.3 837.8 0l93.1 93.1C741.4 816.6 283 816.6 0 534.1z m372.4-372.4L512 22.1l139.6 139.6c-76.9 77.1-201.7 77.3-278.8 0.4l-0.4-0.4zM186.2 347.9l93.1-93.1c128.5 128.5 337 128.5 465.5 0l93.1 93.1c-179.7 179.6-471.6 179.6-651.7 0z" horiz-adv-x="1024" />
<glyph glyph-name="fuwuzhiliang" unicode="&#59001;" d="M68.6-120.1c-37.9 0-68.6 30.7-68.6 68.6V503.3c0 22 10.5 42.7 28.3 55.6L464.3 875C488 892.2 520.1 892.5 544 875.6l450.8-316.9c18.3-12.8 29.2-33.8 29.1-56.2v-554.1c0-37.9-30.8-68.6-68.6-68.6H68.6z m3.6 621.5v-549.3h879.5V500.7L504.6 815 72.2 501.4z m97.1-329.8c-9.6 9.7-9.6 25.2 0 34.9l192.2 192.2c4.6 4.6 10.8 7.2 17.3 7.2 6.6 0 12.9-2.6 17.6-7.2l174.7-174.8 209.2 209.2H665c-13.6-0.3-24.9 10.4-25.2 24-0.3 13.6 10.4 24.9 24 25.2H838.1c13.6-0.1 24.6-11.1 24.6-24.7v-173.1h0.1c0.3-13.6-10.4-24.9-24-25.2s-24.9 10.4-25.2 24V396.5l-225-225c-7-7-17.6-9.1-26.7-5.4-3.1 1.2-5.8 3.1-8.1 5.4L378.9 346.4 204.1 171.6c-4.6-4.6-10.9-7.3-17.4-7.3-6.6 0-12.9 2.6-17.4 7.3z" horiz-adv-x="1024" />
<glyph glyph-name="shujugongxiang" unicode="&#59002;" d="M511.94273-128c-120.2 0.1-235.6 47.2-321.6 131.2-68.6-30.2-148.6 0.9-178.8 69.5-30.2 68.6 0.9 148.6 69.5 178.8 68.6 30.2 148.6-0.9 178.8-69.5 7.6-17.2 11.5-35.8 11.5-54.6 0-30.1-10-59.3-28.4-83C355.84273-61.1 519.84273-91 662.74273-32c4 1.7 8.3 2.6 12.6 2.6 18.2 0 33-14.8 33.1-33 0-13.4-8.1-25.5-20.4-30.6-55.6-23.1-115.1-35-175.3-34.9l-0.8-0.1zM135.84273 196.9c-38.4 0-69.6-31.1-69.7-69.6 0-38.4 31.1-69.6 69.6-69.7 38.4 0 69.6 31.1 69.7 69.6-0.1 38.5-31.2 69.7-69.6 69.7z m752.5-205.2c-74.9-0.7-136.3 59.4-137 134.3-0.7 74.9 59.4 136.2 134.3 136.9h2.8c3.9 0 7.8-0.2 11.6-0.5 29.2 159.9-42.9 321.3-181.5 406.2-15.2 10.2-19.2 30.8-9 45.9 0.1 0.1 0.1 0.2 0.2 0.3 6.2 8.9 16.4 14.3 27.3 14.3 5.5 0 11-1.4 15.9-4.1 165.6-100.8 249.8-294.9 210.2-484.7 62.5-41.3 79.7-125.4 38.4-187.8-25.1-38-67.6-60.8-113.2-60.8z m0 205.2c-38.4 0-69.6-31.1-69.7-69.6 0-38.4 31.1-69.6 69.6-69.7 38.4 0 69.6 31.1 69.7 69.6-0.1 38.6-31.3 69.7-69.6 69.7zM83.64273 330.1c-18.1 1.1-32 16.6-30.9 34.8C67.04273 554.4 195.64273 716 377.04273 772.6 383.84273 847.3 449.94273 902.3 524.64273 895.4s129.7-72.9 122.8-147.6c-6.9-74.7-72.9-129.7-147.6-122.8-49.6 4.6-92.7 35.9-112.4 81.7-151.6-50-257.8-186.7-268.8-345.9-1.3-17.2-15.6-30.6-32.9-30.7h-2.1zM512.14273 829.7c-38.4 0-69.6-31.1-69.6-69.6 0-38.4 31.1-69.6 69.6-69.6 38.4 0 69.6 31.1 69.6 69.6-0.1 38.4-31.2 69.6-69.6 69.6z" horiz-adv-x="1024" />
<glyph glyph-name="chanpincanshu" unicode="&#59003;" d="M133.2-128c-19.6 0-35.5 15.9-35.5 35.5V280.8c0 19.6 15.9 35.5 35.5 35.5s35.5-15.9 35.5-35.5v-373.4c0-19.5-15.9-35.4-35.5-35.4z m757.6 1.5c-19.6 0-35.4 15.9-35.5 35.5V12.9c0.1 19.6 16 35.4 35.6 35.4 19.5-0.1 35.3-15.9 35.4-35.4V-91c0-19.7-15.9-35.6-35.5-35.5z m-378.8 0c-19.6 0-35.5 15.9-35.5 35.5V142c-0.1 19.6 15.8 35.6 35.4 35.6 19.6 0.1 35.6-15.8 35.6-35.4V-91c0-19.7-15.9-35.6-35.5-35.5z m378.8 246.6c-73.1 0-132.4 59.3-132.4 132.4s59.3 132.4 132.4 132.4 132.4-59.3 132.4-132.4c-0.2-73.1-59.4-132.3-132.4-132.4z m0 204.9c-40.1 0-72.6-32.5-72.6-72.6 0-40.1 32.5-72.6 72.6-72.6 40.1 0 72.6 32.5 72.6 72.6 0 40.1-32.5 72.6-72.6 72.6zM512 248.7c-73.1 0-132.4 59.3-132.4 132.4S438.9 513.4 512 513.4 644.3 454.1 644.3 381c0-73-59.2-132.3-132.3-132.3z m0 204.9c-40.1 0-72.6-32.5-72.6-72.6 0-40.1 32.5-72.6 72.6-72.6 40.1 0 72.6 32.5 72.6 72.6-0.1 40.1-32.6 72.5-72.6 72.6z m-378.8-69.2C60.1 384.4 0.8 443.7 0.8 516.8s59.3 132.4 132.4 132.4 132.4-59.3 132.4-132.4c-0.1-73.2-59.3-132.4-132.4-132.4z m0 204.9c-40.1 0-72.6-32.5-72.6-72.6s32.5-72.6 72.6-72.6c40.1 0 72.6 32.5 72.6 72.6-0.1 40.1-32.5 72.5-72.6 72.6z m757.6-136.2c-19.6 0-35.5 15.9-35.5 35.5v372c0.1 19.6 16 35.4 35.6 35.4 19.5-0.1 35.3-15.9 35.4-35.4v-372c0-19.6-15.9-35.4-35.5-35.5zM512 582.3c-19.6 0-35.5 15.9-35.5 35.5V860.6c0.1 19.6 16 35.4 35.6 35.4 19.5-0.1 35.3-15.9 35.4-35.4v-242.9c0-19.5-15.9-35.4-35.5-35.4zM133.2 715.7c-19.6 0-35.4 15.9-35.5 35.5v108c0 19.6 15.9 35.5 35.5 35.5s35.5-15.9 35.5-35.5v-108.1c0-19.6-15.9-35.5-35.5-35.4z" horiz-adv-x="1024" />
<glyph glyph-name="yujingnengli" unicode="&#59004;" d="M62.2-128c-15.4 0-27.9 12.5-27.9 27.9s12.5 27.9 27.9 27.9h899.6c15.4 0 27.9-12.5 27.9-27.9s-12.5-27.9-27.9-27.9H62.2z m151.7 92.6c-37 0-66.9 30-66.9 66.9V320.6c0.9 97 40.7 189.6 110.4 257.1 68.9 68.2 162.6 105.5 259.5 103.4C715.1 679.4 875.4 519.2 877 321v-289.6c-0.1-37-30-66.9-67-66.9l-596.1 0.1z m85.5 569.9c-58.2-56.2-91.4-133.4-92.2-214.3v-288.7c0-3.7 3-6.7 6.7-6.7l63.6-0.2h532.6c3.7 0 6.7 3 6.8 6.7V320.6c-1.6 165.4-135.4 299-300.7 300.3H512c-79.6 0.2-155.9-30.8-212.6-86.4z m203.8-286H371l165.2 272.1-33-204.1h132.2L470.1 44.3l33.1 204.2z m358.7 291.1v0.1c-8.9 15.5-3.6 35.2 11.8 44.2l74.9 43.5c15.5 8.9 35.2 3.6 44.1-11.8l0.1-0.1c8.9-15.6 3.6-35.4-11.9-44.5l-74.7-43.3c-15.5-9-35.3-3.7-44.3 11.8 0.1 0 0 0.1 0 0.1z m-744.2-11.9L43 571c-15.5 9.1-20.8 28.9-11.9 44.5 8.9 15.5 28.6 20.8 44.1 11.9h0.1l74.9-43.4c15.4-9 20.7-28.8 11.9-44.3v-0.1c-8.9-15.5-28.7-20.9-44.3-12 0 0.1 0 0.1-0.1 0.1z m596.2 160.4c-15.5 9-20.7 28.8-11.8 44.3l43.2 75.2c8.8 15.5 28.6 20.9 44.1 12.1l0.2-0.1c15.5-9 20.8-28.9 11.9-44.4L758.3 700c-9-15.6-28.8-20.9-44.4-11.9zM265.7 700l-43.2 75.1c-8.9 15.5-3.6 35.4 11.9 44.4 15.4 9 35.2 3.7 44.2-11.7l0.1-0.2 43.3-75.2c8.9-15.5 3.6-35.4-12-44.3s-35.4-3.7-44.3 11.9z m243.5 46.2c-17.9 0-32.4 14.5-32.4 32.4V863.3c1.4 19.4 18.3 34 37.7 32.6 17.5-1.3 31.4-15.2 32.6-32.6v-84.6c0-17.9-14.5-32.4-32.4-32.5h-5.5z" horiz-adv-x="1024" />
<glyph glyph-name="shujuzhiliang" unicode="&#59005;" d="M988.6 877.9H812.3C792.8 878 777 862.2 777 842.7s15.7-35.3 35.2-35.3H904.1L663 569.6 324.7 858.1c-14.8 12.6-37 10.8-49.7-3.9L9.4 544.8l-0.7-0.8c-12.8-14.7-11.3-37 3.4-49.8 14.7-12.8 37-11.3 49.8 3.4 0.3 0.4 0.7 0.8 1 1.2l242.8 282.8 336.2-286.7c13.9-11.9 34.6-11.1 47.6 1.7l263.8 260v-90.4c0-19.5 15.8-35.3 35.3-35.3 19.5 0 35.3 15.8 35.3 35.3V842.6c-0.1 19.5-15.8 35.3-35.3 35.3z m0.1-352.8c-19.5 0-35.3-15.8-35.3-35.3v-564.4c0-19.5 15.8-35.3 35.3-35.3s35.3 15.8 35.3 35.3V489.8c0 19.5-15.8 35.3-35.3 35.3z m-635 0c-19.5 0-35.3-15.8-35.3-35.3v-564.4c0-19.5 15.8-35.3 35.3-35.3s35.3 15.8 35.3 35.3V489.8c0 19.5-15.8 35.3-35.3 35.3z m317.5-211.7c-19.5 0-35.3-15.8-35.3-35.3v-352.8c0-19.5 15.8-35.3 35.3-35.3 19.5 0 35.3 15.8 35.3 35.3V278.2c0 19.5-15.8 35.2-35.3 35.2z m-635.1 0C16.6 313.4 0.8 297.6 0.8 278.1v-352.8c0-19.5 15.8-35.3 35.3-35.3s35.3 15.8 35.3 35.3V278.2c0 19.5-15.8 35.2-35.3 35.2z" horiz-adv-x="1024" />
<glyph glyph-name="yewuchuangxin" unicode="&#59006;" d="M455.1-115.2c-20.4 0.4-36.7 17.3-36.3 37.7 0.4 19.9 16.4 35.9 36.3 36.3h111c20.4-0.4 36.7-17.3 36.3-37.7-0.4-19.9-16.4-35.9-36.3-36.3h-111z m-62.6 108.1c-20.4 0.4-36.7 17.3-36.3 37.7 0.4 19.9 16.4 35.9 36.3 36.3h238.9c20.4-0.4 36.7-17.3 36.3-37.7-0.4-19.9-16.4-35.9-36.3-36.3H392.5zM367 140.8c-136.7 73.5-187.9 243.9-114.4 380.6 26.1 48.5 65.9 88.3 114.4 114.4 90.9 51.2 202 51.2 293 0 90.7-49 146.5-144.4 145-247.4-0.9-102.4-56.2-196.6-145.1-247.5-91-51.3-202.1-51.3-292.9-0.1z m36 431C335.8 535 293.5 464.9 292.4 388.3c1.1-76.6 43.3-146.7 110.5-183.5 68.6-38.6 152.4-38.6 221 0 65.8 37.8 106.8 107.6 107.7 183.5v2c0.6 75.8-40.8 145.7-107.7 181.5-68.6 38.6-152.3 38.6-220.9 0z m473.1-223.4c-20.4 0-37 16.6-36.9 37 0 20.4 16.5 36.9 36.9 36.9H987c20.4 0 37-16.6 36.9-37 0-20.4-16.5-36.9-36.9-36.9H876.1z m-839.1 0c-19.9 1.3-35.7 17.1-37 37 0.4 20.3 16.7 36.6 37 37h110.9c20.4 0 37-16.6 36.9-37 0-20.4-16.5-36.9-36.9-36.9l-110.9-0.1zM745.2 613c-14.2 14-14.2 36.9-0.2 51l0.1 0.1 76.8 76.8c14.1 14.1 37.1 14.1 51.2 0 14.1-14.1 14.1-37.1 0-51.2L796.4 613c-14.1-14.1-36.9-14.2-51.1-0.1-0.1 0-0.1 0-0.1 0.1z m-517.7 0l-76.8 74c-14.2 17-14.2 39.8 2.8 51.2 14.1 11.4 34.3 11.4 48.4 0l76.8-76.8c13.4-14.9 12.1-37.7-2.7-51.1l-0.1-0.1c-6.8-4-14.5-6.1-22.3-6.1-9.5-0.1-18.7 3-26.1 8.9zM475 743.8V849c2 20.2 19.6 35.3 39.9 34.1 18.1 0.7 33.4-13.4 34.1-31.5V740.9c-1.6-19.2-17.7-34-37-34.1-20.3 0.4-36.7 16.7-37 37z" horiz-adv-x="1024" />
<glyph glyph-name="yunduanbushu" unicode="&#58996;" d="M421.2 57.9H251.9C127.3 57.9 20.1 147.4 2.7 266c-10.5 70.9 10.2 142.5 56.8 196.4 46.8 54.2 114.6 85.3 186.1 85.3 8.5 0 16.8-0.5 25.2-1.6 1.3-0.3 3.5 0.3 4.1 3 20.2 90.3 84.3 165.7 171.3 201.7 88 36.3 186.6 26.5 270.7-27 75.8-48.2 122.5-132.7 124.9-226 0.3-12.4 0.3-23.1-0.9-35.1 0-1 1.3-2.8 3.3-3 49.5-5.2 95.2-28.5 128.4-65.9 37.9-42 55.9-96.9 50.5-154.5-2.1-22.3-21.9-38.6-44.1-36.5-22.3 2.1-38.6 21.8-36.5 44.1 3.3 34.7-7.4 67.6-30.2 92.8-20 22.4-47.1 36.4-76.6 39.4-45.5 4.8-78.6 44.4-75.5 90.2 0.9 9.2 0.9 16.8 0.7 26.5-1.7 66.2-34.4 126-87.5 159.7-62.4 39.7-132.2 47-196.3 20.5-62.6-25.9-108.7-80-123.2-144.7-9.6-42-47.6-69.5-90.7-65.7l-1.6 0.2c-5.4 0.7-10.7 1-16.1 1-47.9 0-93.4-20.9-124.8-57.3-31.6-36.6-45.1-83.4-38-131.7 11.7-79.2 84.4-139 169.2-139h169.3c22.4 0 40.5-18.1 40.5-40.5 0-22.3-18.2-40.4-40.5-40.4zM879.1 185.1c-1.4 7.7-8.7 15.5-16.4 17.2l-5.7 1.3c-13.9 4.2-25.6 13.6-32.9 26.1-7.3 12.7-9.5 27.7-6 42l1.8 5.4c2.3 7.5-0.7 17.8-6.7 22.9 0 0-5.4 4.6-20.5 13.3-15.1 8.7-21.6 11.2-21.6 11.2-7.4 2.7-17.7 0.1-23.1-5.6l-4-4.3c-10.5-10-24.4-15.6-39-15.5-14.6 0-28.6 5.6-39.1 15.7l-3.8 4.2c-5.3 5.7-15.7 8.3-23.1 5.6 0 0-6.6-2.4-21.7-11.2-15.1-8.8-20.5-13.4-20.5-13.4-6-5.1-8.9-15.3-6.6-22.8l1.6-5.5c3.4-14.2 1.2-29.2-6-41.9s-19.1-22.1-33.1-26.2l-5.5-1.2c-7.5-1.8-15-9.5-16.4-17.2 0 0-1.2-6.9-1.2-24.5s1.2-24.5 1.2-24.5c1.4-7.8 8.7-15.5 16.4-17.2l5.4-1.2c14-4.1 25.9-13.6 33.1-26.3 7.5-13.2 9.4-28.3 6-42l-1.6-5.3c-2.3-7.5 0.7-17.8 6.7-22.9 0 0 5.4-4.6 20.5-13.3 15.1-8.8 21.7-11.2 21.7-11.2 7.3-2.7 17.7-0.1 23.1 5.6l3.8 4.1c21.9 21 56.5 21 78.4 0l3.8-4.1c5.3-5.7 15.7-8.3 23.1-5.6 0 0 6.6 2.4 21.7 11.2 15.1 8.8 20.4 13.3 20.4 13.3 6 5 9 15.3 6.7 22.9l-1.6 5.5c-3.4 14.2-1.2 29.1 6 41.8 7.3 12.7 19.1 22.1 33.1 26.3l5.4 1.2c7.5 1.8 15 9.5 16.4 17.2 0 0 1.2 6.9 1.2 24.5-0.2 17.4-1.4 24.4-1.4 24.4z m-174-94.9c-38.6 0-69.9 31.5-69.9 70.4-0.1 38.7 31.1 70.1 69.8 70.3h0.1c38.6 0 69.9-31.5 69.9-70.4-0.1-38.8-31.4-70.3-69.9-70.3z" horiz-adv-x="1024" />
<glyph glyph-name="kekuozhanxing" unicode="&#58997;" d="M534.147837-68.905771c0 59.194219-46.495459 110.189239-105.689679 110.889171-60.794063 0.799922-108.689386-46.59545-108.689385-107.189532v-3.799629c0-32.596817-26.397422-58.994239-58.994239-58.994239H133.186993C59.59418-127.90001 0-68.30583 0 5.286984V132.874524c0 32.596817 26.397422 58.994239 58.994239 58.994239 59.194219 0 110.189239 46.495459 110.889171 105.689679 0.799922 60.794063-46.59545 108.689386-107.189532 108.689385H58.994239c-32.596817 0-58.994239 26.397422-58.994239 58.994239V592.829606C0 666.42242 59.59418 726.0166 133.186993 726.0166h110.08925C250.375549 822.407187 328.467923 896 426.958305 896s176.582756-73.592813 183.682062-169.9834h110.089249c73.592813 0 133.186993-59.59418 133.186994-133.186994v-110.089249c96.390587-6.999316 169.9834-85.19168 169.9834-183.682062s-73.592813-176.582756-169.9834-183.682062v-110.089249c0-73.592813-59.59418-133.186993-133.186994-133.186994H593.142076c-32.596817 0-58.994239 26.397422-58.994239 58.994239z m186.581779 17.998242c30.996973 0 56.194512 25.197539 56.194513 56.194513V132.874524c0 32.596817 26.397422 58.994239 58.994238 58.994239 59.194219 0 110.189239 46.495459 110.889171 105.689679 0.799922 60.794063-46.59545 108.689386-107.189532 108.689385H835.918367c-32.596817 0-58.994239 26.397422-58.994238 58.994239V592.829606c0 30.996973-25.197539 56.194512-56.194513 56.194513H593.142076c-32.596817 0-58.994239 26.397422-58.994239 58.994239 0 59.194219-46.495459 110.189239-105.689679 110.889171-60.794063 0.799922-108.689386-46.59545-108.689385-107.189533v-3.799629c0-32.596817-26.397422-58.994239-58.994239-58.994238H133.186993c-30.996973 0-56.194512-25.197539-56.194512-56.194513v-110.089249c96.390587-6.999316 169.9834-85.19168 169.9834-183.682062S173.383068 122.475539 76.992481 115.376233v-110.089249c0-30.996973 25.197539-56.194512 56.194512-56.194513h110.08925c6.999316 96.390587 85.19168 169.9834 183.682062 169.9834s176.582756-73.592813 183.682062-169.9834h110.089249z" horiz-adv-x="1024" />
<glyph glyph-name="kuaisushangxian" unicode="&#58998;" d="M512-76.4c-68.9 0-135.9 13.6-199.3 40.3-60.9 25.7-115.7 62.6-162.8 109.6-47.2 47.4-84.1 102.1-109.6 162.8C13.6 299.2 0 366.3 0 435.6 0 461.2 20.9 482 46.5 482S93 461.2 93 435.6c0-231 187.9-418.9 418.9-418.9 231 0 418.9 187.9 418.9 418.9 0 25.6 20.9 46.5 46.5 46.5 25.4 0 46.4-20.8 46.8-46.3 0-69-13.5-136.1-40.3-199.5-25.7-60.9-62.6-115.7-109.7-162.8-47.4-47.2-102.1-84.1-162.8-109.6-63-26.8-130.1-40.3-199.3-40.3zM507.4 202.5c-25.6 0-46.5 20.9-46.5 46.5V686L315.2 540.2c-8.8-8.8-20.4-13.6-32.9-13.6-12.4 0-24.4 5-32.8 13.6-8.7 8.6-13.5 20.2-13.6 32.6 0 12.5 4.8 24.2 13.6 33l224.9 225c8.7 8.8 20.5 13.6 33.1 13.6 12.7 0 24.6-5 33.2-13.6l224.9-225c8.8-8.6 13.6-20.3 13.6-32.6 0-12.5-4.8-24.2-13.6-33s-20.4-13.6-32.9-13.6-24.2 4.8-32.9 13.6L553.9 686v-437c0-25.6-20.8-46.5-46.5-46.5z" horiz-adv-x="1024" />
<glyph glyph-name="linghuopeizhi" unicode="&#58999;" d="M884.5 193l-22.4 12.8c-17.2 9.9-40.4-5.5-41.7-27.8l-4.6-82.1-4.6-82.1c-1.1-20.7 21.7-33.7 38.9-22.3l68.5 45.6 68.5 45.6c18.5 12.3 20.1 40.1 2.9 50l-24 13.7M142.1 575.2l22.4-12.8c17.2-9.9 40.4 5.5 41.7 27.8l4.6 82.1 4.6 82.1c1.1 20.7-21.7 33.7-38.9 22.3L108 731.1l-68.5-45.6c-18.5-12.3-20.1-40.1-2.9-50l24-13.7M512-128C229.7-128 0 101.7 0 384c0 117.8 41 232.7 115.3 323.8 16.3 19.9 45.6 22.8 65.5 6.6 19.9-16.3 22.8-45.6 6.6-65.5-60.8-74.5-94.3-168.6-94.3-264.9C93.1 153 281-34.9 512-34.9c25.7 0 46.5-20.8 46.5-46.5 0-25.8-20.8-46.6-46.5-46.6zM872.7 43.2c-10.3 0-20.8 3.4-29.4 10.5-19.9 16.3-22.9 45.6-6.6 65.5C897.5 193.6 931 287.7 931 384c0 180-114.5 339.5-284.9 397-43 14.5-88.1 21.9-134 21.9-25.7 0-46.5 20.8-46.5 46.5S486.3 896 512 896c56 0 111.1-9 163.8-26.8C884.1 799 1024 604 1024 384c0-117.7-40.9-232.6-115.3-323.6-9.2-11.3-22.5-17.2-36-17.2zM390.3 173.2L268.5 384l121.7 210.8h243.5L755.5 384 633.7 173.2H390.3zM328 384l92-159.4h184L696 384l-92 159.4H420L328 384zM512 276.1c-59.5 0-107.9 48.4-107.9 107.9S452.5 491.9 512 491.9 619.9 443.5 619.9 384 571.5 276.1 512 276.1z m0 164.4c-31.1 0-56.5-25.3-56.5-56.5s25.3-56.5 56.5-56.5 56.5 25.3 56.5 56.5-25.4 56.5-56.5 56.5z" horiz-adv-x="1024" />
<glyph glyph-name="chengbenjiaodi" unicode="&#59000;" d="M806.3 220.3c10.2 0 18.5-8.3 18.5-18.5v-135.9L883 124c3.5 3.5 8.2 5.4 13.1 5.4s9.7-2 13.1-5.4c3.5-3.4 5.4-8.1 5.4-13 0-5-1.9-9.6-5.4-13.2L819.5 8c-3.5-3.5-8.2-5.4-13.2-5.4-5.1 0-9.8 2-13.2 5.4l-89.7 89.8c-3.5 3.5-5.4 8.1-5.4 13 0 5 1.9 9.6 5.4 13.2 3.5 3.5 8.2 5.4 13.1 5.4 5 0 9.6-1.9 13.1-5.4l58.2-58.2v136c0 10.2 8.3 18.5 18.5 18.5zM428.2-120.2C147.1-120.2 0-16.7 0 85.5v597C0 784.7 147.1 888.2 428.2 888.2c280 0 427.3-103.1 428.2-204.9v-308c-16.3 3.1-33.1 4.7-50.1 4.7-11.2 0-22.4-0.7-33.3-2.1 0.4 2.1 0.7 4.2 0.7 6.2V556.2l-26-13.8c-80.1-43-190.5-65.8-319.4-65.8-128.8 0-239.2 22.7-319.4 65.8L83 556.2V384c0-44.5 115.4-124 345.3-124 60.4 0 116.3 5.5 166.4 16.4-21.3-27.3-37.3-58.7-46.7-92-37.5-4.7-77.7-7.2-119.7-7.2-129 0-239.4 22.7-319.4 65.6L83 256.9v-171.6c0-44.4 115.4-123.8 345.3-123.8 52.4 0 101.8 4.4 147.1 12.9 16-27.1 37-51.4 61.4-71.3-61.6-15.4-131.7-23.3-208.6-23.3z m0 925.6c-229.9 0-345.3-79.5-345.3-124 0-44.4 115.4-123.8 345.3-123.8 230 0 345.4 79.4 345.4 123.8 0 44.6-115.4 124-345.4 124zM806.3-106.2c-120.1 0-217.7 97.7-217.7 217.7s97.7 217.7 217.7 217.7S1024 231.5 1024 111.5s-97.7-217.7-217.7-217.7z m0 377.4c-88 0-159.7-71.6-159.7-159.7s71.6-159.7 159.7-159.7S966 23.4 966 111.5s-71.7 159.7-159.7 159.7z" horiz-adv-x="1024" />
<glyph glyph-name="jieshengchengben" unicode="&#59135;" d="M719.872 130.56c-120.832 0-183.296 41.472-183.296 59.392v79.872c41.984-22.528 102.912-37.888 183.296-37.888s141.312 15.36 183.296 37.888v-79.872c0-17.92-62.464-59.392-183.296-59.392m0-166.912c-120.832 0-183.296 41.472-183.296 59.392V102.4c41.984-22.528 102.912-37.888 183.296-37.888s141.312 15.36 183.296 37.888v-79.872c0-17.408-62.464-58.88-183.296-58.88m0 452.096c120.832 0 183.296-41.472 183.296-59.392S840.704 296.96 719.872 296.96s-183.296 41.472-183.296 59.392 62.464 59.392 183.296 59.392m0 66.048c-163.84 0-249.344-62.976-249.344-124.928v-333.824c0-61.952 85.504-124.928 249.344-124.928 162.304 0 247.808 61.952 249.344 123.904v335.36c-0.512 61.44-86.016 124.416-249.344 124.416m-295.424 322.56c187.904 0 303.616-64.512 303.616-110.592 0-46.08-115.712-110.592-303.616-110.592-187.904 0-303.616 64.512-303.616 110.592 0 46.592 115.712 110.592 303.616 110.592m0-286.72c114.176 0 232.448 25.088 303.616 72.704v-87.04h66.048V694.272C794.112 808.448 603.648 870.4 424.448 870.4S54.784 808.448 54.784 694.272v-519.68c0-114.688 190.464-176.128 369.152-176.128v66.048c-187.904 0-303.616 64.512-303.616 110.592v156.16c71.168-47.616 189.44-72.704 303.616-72.704v66.048C236.032 324.608 120.32 389.12 120.32 435.2V590.336c71.68-47.616 189.952-72.704 304.128-72.704" horiz-adv-x="1024" />
<glyph glyph-name="peisong" unicode="&#58884;" d="M905.3 465.8c-14 22.5-33.9 40.9-57.5 53.3l-164.9 86.5v98.7c0 35-28.6 63.5-63.7 63.5H152.1c-35.1 0-63.7-28.6-63.7-63.7v-552.8c0-34.9 28.4-63.3 63.3-63.3h63c6-23.9 19.8-45.5 39-61.1 20.3-16.6 46-25.7 72.3-25.7 26.3 0 51.9 9.1 72.3 25.6 19.2 15.6 33 37.2 39 61h5.9v0.2h134.5c6-23.9 19.8-45.5 39-61.1 20.3-16.5 46-25.6 72.2-25.6 26.2 0 51.9 9.1 72.2 25.6 19.2 15.6 32.9 37.2 39 61h2v0.2h61c35.2 0 63.9 28.6 63.9 63.9V390.7c0 26.4-7.5 52.3-21.7 75.1zM152.1 708.1h467.1c2.1 0 3.9-1.8 3.9-3.7v-98.6c0-22.9 12.6-43.4 32.9-53.5l164-86.1c29.1-15.3 47.1-44.2 47.1-75.4v-216.5c0-14.4-11.7-26.2-26.2-26.2H799c-14.1 49.2-58.9 83.3-110.1 83.3s-96-34.1-110.1-83.3H436.2c-14.2 49.2-59.1 83.3-110.2 83.3s-95.9-34.1-110-83.3h-41.5c-14.4 0-26.2 11.8-26.2 26.2l-0.1 530.2c0 1.9 1.9 3.6 3.9 3.6z m118.8-589.4c1.2 28.1 24.1 51.3 52.2 52.7 1 0.1 2 0.1 2.9 0.1 14.2 0 27.5-5.3 37.9-15.2 11.1-10.5 17.2-24.7 17.2-40 0-30.4-24.7-55.1-55.1-55.1-15.1 0-29.3 6-39.8 17-10.5 10.9-15.9 25.3-15.3 40.5z m362.9 0c1.2 28.1 24.1 51.3 52.2 52.7 1 0.1 2 0.1 2.9 0.1 14.2 0 27.5-5.3 37.9-15.2 11.1-10.5 17.2-24.7 17.2-40 0-30.4-24.7-55.1-55.1-55.1-15.1 0-29.3 6-39.8 17-10.5 10.9-15.9 25.3-15.3 40.5zM637.9 294.2H769c15.9 0 29.2 12.1 30.3 27.6 0.6 8.4-2.2 16.4-7.9 22.6-5.6 6.1-13.6 9.5-21.9 9.5H667.7v99c0 16.5-13.4 29.9-29.9 29.9-8 0-15.5-3.1-21.2-8.8-5.6-5.7-8.7-13.1-8.6-21.1V324c0-16.4 13.4-29.8 29.9-29.8z" horiz-adv-x="1024" />
<glyph glyph-name="tigaoxiaoshuai" unicode="&#60992;" d="M923.3 420.7c-20.2 0-36.7-16.4-36.7-36.7 0-206.9-167.8-374.7-374.7-374.7C305 9.299999999999954 137.2 177 137.2 384c0 206.9 167.8 374.7 374.7 374.7 57.7 0.1 114.6-13.2 166.2-38.9 18.2-9 40.2-1.6 49.2 16.6 9 18.2 1.6 40.2-16.6 49.2C649 816.3 581 832.2 512 832 264.6 832 64 631.4 64 384s200.6-448 448-448 448 200.6 448 448c0 20.2-16.4 36.7-36.7 36.7ZM805.2 506.2c-0.3 6.8-2.5 13.3-6.5 18.7l-1.6 1.6c-6.4 8.2-16.3 12.9-26.7 12.8h-3.9c-1.6 0.2-3.1 0.2-4.7 0l-134.2-1.8c-18.8 0-34-15.2-34-34s15.2-34 34-34h57.2L532.6 311.9 413.4 427.6 411 430c-9.5 9.3-23.6 12-35.8 6.7-4.9-1.8-9.2-4.6-12.8-8.4L226.9 287.5c-13.7-13.8-13.7-36.1 0-49.9 6.5-6.4 15.3-10 24.4-10 9.3 0.1 18.2 3.9 24.6 10.6l115.7 120.1L513.8 240c12.8-12.6 33.4-12.6 46.2 0l177.8 183.3v-61.1c0-18.8 15.2-34 34-34s34 15.2 34 34l-0.6 144Z" horiz-adv-x="1024" />
<glyph glyph-name="VR" unicode="&#58892;" d="M512 896a512 512 0 1 0 0-1024A512 512 0 0 0 512 896z m0-85.333333a426.666667 426.666667 0 1 1 0-853.333334 426.666667 426.666667 0 0 1 0 853.333334zM310.954667 559.047111c11.093333 0 20.48-11.662222 22.357333-27.534222 5.802667-58.368 11.207111-116.792889 16.270222-175.217778l86.755556 183.182222c4.608 9.784889 19.114667 19.569778 28.899555 19.569778h217.144889c73.784889 0 100.977778-47.616 100.977778-102.115555 0-39.139556-23.722667-84.764444-76.231111-106.552889l40.049778-122.88c3.982222-11.093333 0-21.390222-10.808889-21.390223h-51.939556c-12.913778 0-21.048889 3.982222-24.974222 16.668445l-32.483556 117.191111h-31.175111l-23.665777-116.280889c-1.763556-8.817778-6.314667-17.578667-22.414223-17.578667h-41.358222c-10.979556 0-20.252444 8.533333-18.545778 17.066667l37.148445 185.173333h125.269333c39.082667 0 48.469333 29.752889 48.469333 44.088889 0 21.845333-11.889778 33.223111-32.142222 33.223111H495.843556l-142.336-279.552H289.678222l-36.750222 323.356445c-1.706667 14.791111 8.419556 29.582222 20.252444 29.582222z" horiz-adv-x="1024" />
<glyph glyph-name="duocanshu" unicode="&#58992;" d="M888.163265 520.036715c-9.299092 0-14.598574 0-356.96514-148.085538l45.995508 370.463822c2.499756 19.298115-11.598867 36.696416-31.196953 39.096182-18.798164 2.199785-37.996289 3.299678-56.794454 3.299677-234.577092 0-432.857729-172.483156-461.254955-401.160824-31.096963-249.775608 150.885265-477.753344 405.460404-508.150376 18.798164-2.199785 37.996289-3.499658 56.794454-3.499658 234.577092 0 432.857729 172.483156 461.154965 401.160824 9.399082 76.092569-0.899912 153.784982-29.89708 224.878039-5.599453 13.298701-18.698174 21.997852-33.296749 21.997852z m-7.799238-238.276731c-23.997656-193.481105-191.781271-339.466849-390.161898-339.466849-15.998438 0-32.196856 0.999902-48.095303 2.799727C226.627868-28.909677 72.742896 163.871497 98.940338 375.150864c23.997656 193.481105 191.781271 339.466849 390.161898 339.466849 4.0996 0 8.29919-0.09999 12.398789-0.19998L452.40582 319.056342c-1.599844-12.498779 3.799629-24.997559 14.198613-32.396836 10.398984-7.499268 23.997656-8.999121 35.796504-3.99961 115.988673 50.195098 292.271458 126.087687 364.464408 155.984768 15.398496-50.495069 19.898057-104.189825 13.498682-156.88468z m117.388536 383.762524C943.557856 790.810272 824.469485 879.10165 686.982912 895.80002c-11.798848 1.499854-22.497803-6.799336-23.997657-18.298214l-45.395566-358.365003c-0.999902-7.399277 2.199785-14.798555 8.399179-19.398106 3.699639-2.799727 8.29919-4.19959 12.898741-4.199589 2.799727 0 5.699443 0.499951 8.399179 1.699834l339.066888 140.686261c5.199492 2.099795 9.399082 6.299385 11.498877 11.498877 2.299775 5.099502 2.099795 10.998926-0.09999 16.098428z" horiz-adv-x="1024" />
<glyph glyph-name="zuiyou" unicode="&#58993;" d="M525.4-47.8c-1.9 0-3.8 0.2-5.8 0.4-1.2 0.1-2.5 0.3-3.7 0.3-1.3 0-2.5-0.1-3.7-0.3-1.8-0.2-3.6-0.3-5.3-0.3-6.7 0-12.2 2.4-16.3 7L8.7 508.2c-12.1 14.4-11.4 35.2 1.3 48.6L250.8 802.7c4.5 4.6 12.9 13.1 23.9 13.1h444.4c9.5 0 16.6-6.6 21.4-11l272.1-248.7c6.7-5.7 11-14.4 11.4-23.6 0.6-8.9-2.5-18-8.6-24.7l-474-548.7c-4.2-4.6-9.5-6.9-16-6.9zM516 85.8l148.3 412.3H369.6L516 85.8z m-91.4 55.7L297.6 498H113.8l310.8-356.5z m185.5 5.6l300.9 351H736.7l-126.6-351zM289.2 567l74.2 180h-74.6L113 567h176.2z m614.8 0L706.2 747h-52.5l90-180H904z m-236.9 0L577 747H437.6l-74.1-180h303.6z" horiz-adv-x="1024" />
<glyph glyph-name="AI" unicode="&#58994;" d="M661.3 546.6h65.1v-322.2h-65.1zM499.8 546.7h-68.9L305.5 224.4h69l26.6 73.2h128.7l28.3-73.2h70.7l-129 322.3z m-78.7-194.8l43.5 119.5L509 351.9h-87.9zM70.7 132.8L73 261l72.3-1.3-1.5-86.2 365.7-217.9 220.7 123.6 35.4-63.1L508.4-128zM809.4 125.4l71.5 42v429L667.8 725.8l37.6 61.9 247.9-150.5V126L846 63zM74.3 351.5V646.6L520.7 896l105.5-65.6-38.2-61.5L518.7 812 146.6 604.1v-252.6z" horiz-adv-x="1024" />
<glyph glyph-name="mubiao" unicode="&#58995;" d="M506.20003 589.6v0.8c19.4 0 35.1 15.7 35.1 35.1 0 19.4-15.7 35.1-35.1 35.1-156.3 0.2-283.1-126.4-283.2-282.7-0.1-156.3 126.5-283.1 282.8-283.1S788.90003 221.3 789.00003 377.6c0 13.5-1 27.1-2.9 40.5h-1.3c-3.4 17.6-20.4 29.2-38 25.8-15.1-2.9-26.1-15.9-26.4-31.2h-0.6c3.1-14.5 0.6-19.7 0.6-34.6 0-116.8-97.5-211.8-214.2-211.8-116.9 0.2-211.6 94.9-211.8 211.8 0 116.8 94.6 211.5 211.4 211.5h0.4zM605.00003 696.1l21.4-139.9-0.7-0.7-117.1-117.2h-2.4c-33.4 0.1-60.5-26.9-60.6-60.3-0.1-0.3-0.1-0.7 0-1.1v-0.9l2.3-12.6c5.4-21.5 22.3-38.3 43.8-43.6l12.5-2.3h1.7c33.4-0.1 60.6 26.9 60.7 60.3v2.8l117.9 117.9 145.4-22.2 3.9 3.9L1024.00003 670.7l-195.7 27.8v1.3L798.50003 895.7l-15.3-15.3-179-178.7 0.8-5.6z m66.3-13.1l78.7 74.9 0.6-3.5 19.9-114 13.9-0.6 106.9-14.6-2.9-2.8-81.7-75.5h-0.7l-118.2 13.9v1.5l-17.2 120 0.7 0.7z m320.4-185.2C986.00003 509 974.60003 516 962.00003 516.1c-18.8 0-34-15.2-34-34 0.1-5.8 1.8-11.5 4.9-16.5 7.2-31.6 7.3-55.1 7.3-87.8-0.2-239.9-194.8-434.2-434.7-434S71.50003 138.7 71.70003 378.6c0.2 239.7 194.5 433.9 434.2 434 32.5 0 64.9-3.6 96.6-10.8l0.4 1.2c1.8-0.6 3.6-1 5.4-1.2 19.4 0.8 34.5 17.1 33.7 36.5-0.5 13.5-8.7 25.5-21.1 30.8-45.6 13.4-66.6 14.6-115 14.6C226.60003 883.8 0.10003 657.5 0.00003 378.2s226.2-505.8 505.5-505.9 505.8 226.2 505.9 505.5v0.2c0 48.5-5.2 74.4-18.6 120.6l-1.1-0.8z" horiz-adv-x="1024" />
<glyph glyph-name="pingheng" unicode="&#58886;" d="M267.553444 148.742148c55.402481 0 103.778306-41.484297 103.778306-103.778305S322.955925-58.814463 267.553444-58.814463s-103.778306 48.375825-103.778305 103.778306S212.150963 148.742148 267.553444 148.742148z m0 69.185537c-96.886778 0-172.963843-76.077065-172.963843-172.963842s76.077065-172.963843 172.963843-172.963843 172.963843 82.968593 172.963843 172.963843c0 96.886778-76.077065 172.963843-172.963843 172.963842M648.073898 826.814463c55.402481 0 103.778306-48.375825 103.778306-103.778306s-48.375825-103.778306-103.778306-103.778305-103.778306 41.484297-103.778305 103.778305c0 62.294009 48.375825 103.778306 103.778305 103.778306z m0 69.185537c-96.886778 0-172.963843-76.077065-172.963843-172.963843s76.077065-172.963843 172.963843-172.963842 172.963843 76.077065 172.963843 172.963842c0 89.995249-76.077065 172.963843-172.963843 172.963843M1028.594352 148.742148c55.402481 0 103.778306-48.375825 103.778306-103.778305s-48.375825-103.778306-103.778306-103.778306-103.778306 48.375825-103.778306 103.778306 48.375825 103.778306 103.778306 103.778305z m0 69.185537c-96.886778 0-172.963843-76.077065-172.963843-172.963842s76.077065-172.963843 172.963843-172.963843 172.963843 76.077065 172.963843 172.963843-76.077065 172.963843-172.963843 172.963842M917.924518 176.443389c20.809712 13.783056 34.592769 27.70124 62.294009 34.592768L758.743732 591.556611c-13.783056-13.783056-34.592769-27.70124-55.402481-34.592768l214.583267-380.520454zM378.223278 176.443389l214.448139 380.520454c-20.809712 6.891528-41.484297 20.809712-55.402481 34.592768L322.955925 211.036157c20.674584-6.891528 41.484297-20.674584 55.267353-34.592768zM862.522037 10.371074c0 13.783056-6.891528 20.809712-6.891528 34.592769 0 13.783056 0 20.809712 6.891528 34.592768H433.625759c6.891528-6.891528 6.891528-20.809712 6.891528-34.592768 0-13.783056 0-20.809712-6.891528-34.592769h428.896278z" horiz-adv-x="1625" />
<glyph glyph-name="ERP" unicode="&#58986;" d="M237.8 274.7V493.3h148.7v-47.9h-94.9v-36.5h81.1V361h-81.1v-38.4h94.9v-47.9H237.8zM535.2 274.7L496.5 356h-18.1v-81.4h-53.7V493.3h86.6c48.5 0 74.6-34.4 74.6-70.3 0-29.8-18.4-48.5-35.6-57.1l47.3-91.2h-62.4z m-26.4 170.4h-30.4v-44.2h30.4c14.7 0 23.3 10.8 23.3 22.1s-8.6 22.1-23.3 22.1zM711.5 352.7h-32.9v-78h-53.8V493.3h86.6c48.5 0 74.6-34.4 74.6-70.3s-25.9-70.3-74.5-70.3z m-2.4 92.4h-30.4v-44.2h30.4c14.7 0 23.3 10.8 23.3 22.1s-8.6 22.1-23.3 22.1zM512 808.2c233.9 0 424.2-190.3 424.2-424.2S745.9-40.2 512-40.2 87.8 150.1 87.8 384 278.1 808.2 512 808.2M512 896C229.2 896 0 666.8 0 384s229.2-512 512-512 512 229.2 512 512S794.8 896 512 896z" horiz-adv-x="1024" />
<glyph glyph-name="JOT" unicode="&#58987;" d="M310.6 272.8c-25.5 0-41.8 6.1-59.6 24l35.3 35c6.8-6.8 12.3-11.1 24.3-11.1 16.6 0 28.6 9.2 28.6 30.1V493.3H393v-143.7c-0.1-51.9-41.2-76.8-82.4-76.8zM571.4 297.4c-16-16-34.4-24.6-61.1-24.6-26.7 0-45.1 8.6-61.1 24.6-23 23-22.1 53.8-22.1 86.6s-0.9 63.6 22.1 86.6c16 16 34.4 24.6 61.1 24.6 26.7 0 45.1-8.6 61.1-24.6 23-23 22.1-53.8 22.1-86.6s1-63.6-22.1-86.6z m-39.6 140.3c-4 5.2-11.7 9.5-21.5 9.5s-17.5-4.3-21.5-9.5c-4.9-6.5-8-13.8-8-53.8s3.1-47 8-53.4c4-5.2 11.7-9.8 21.5-9.8s17.5 4.6 21.5 9.8c4.9 6.5 8 13.5 8 53.4s-3.1 47.4-8 53.8zM719.2 445.4v-170.8h-53.8V445.4h-53.7v47.9H773v-47.9h-53.8zM512 808.2c233.9 0 424.2-190.3 424.2-424.2S745.9-40.2 512-40.2 87.8 150.1 87.8 384 278.1 808.2 512 808.2M512 896C229.2 896 0 666.8 0 384s229.2-512 512-512 512 229.2 512 512S794.8 896 512 896z" horiz-adv-x="1024" />
<glyph glyph-name="plm" unicode="&#58988;" d="M371.7 362h-23v-54.7H311V460.6h60.7c34 0 52.3-24.1 52.3-49.3 0-25.1-18.3-49.3-52.3-49.3z m-1.7 64.8h-21.3v-31H370c10.3 0 16.4 7.5 16.4 15.5s-6.1 15.5-16.4 15.5zM446 307.4V460.6h37.7v-119.7h64.4v-33.6H446zM675.3 307.4v73.4l-21.7-37.9h-24.1l-21.7 37.9v-73.4H570V460.6h37l34.4-67.6 34.4 67.6h37v-153.3h-37.5zM713.4 694.6c-76.7 0-147.1-28-201.3-74.4-54.2 46.4-124.6 74.4-201.4 74.4C139.4 694.6 0 555.2 0 384c0-171.3 139.4-310.6 310.6-310.6 76.8 0 147.2 28.1 201.4 74.3 54.2-46.4 124.6-74.3 201.3-74.3 171.3 0 310.6 139.3 310.6 310.6 0.1 171.2-139.2 310.6-310.5 310.6z m0-563.3c-61.2 0-117.3 21.7-160.9 57.9-15.1 12.7-28.7 26.9-40.4 42.4-11.8-15.7-25.4-29.9-40.5-42.4-43.7-36.2-99.9-57.9-160.9-57.9-139.4 0-252.6 113.4-252.6 252.7 0 139.2 113.3 252.6 252.6 252.6 61.1 0 117.2-21.7 160.9-57.9 15.1-12.5 28.7-26.8 40.5-42.4 11.7 15.7 25.3 29.7 40.4 42.4 43.6 36.2 99.8 57.9 160.9 57.9C852.7 636.6 966 523.2 966 384c-0.1-139.3-113.3-252.7-252.6-252.7z" horiz-adv-x="1024" />
<glyph glyph-name="youxiang-" unicode="&#59055;" d="M1021.407 749.143L512.645 321.217 3.909 749.143zM0.007 712.598L339.886 424.76 0.007 19.257zM39.354 18.856L363.529 401.6 512.54 279.228l149.274 126.179 324.157-386.551zM1023.993 19.257L684.122 424.76l339.871 287.838z" horiz-adv-x="1024" />
<glyph glyph-name="dianhua01" unicode="&#59023;" d="M451.801 603.7c21.8 0 35.6 14.4999 35.6 35.6s-14.4999 35.6-35.6 35.6c-118.8-0.700036-214.6-96.3999-215.2-215.2 0-21.8 14.4999-35.6 35.6-35.6 21.8 0 35.6 14.4999 35.6 35.6 0.699965 79.3 64.6998 143.3 144 144Zm0 143.2c21.8 0 35.6 14.4999 35.6 35.6s-14.4999 35.6-35.6 35.6c-197.4 0-358.5-161.7-358.5-358.5 0-21.8 14.4999-35.6 35.6-35.6 21.8 0 35.6 14.4999 35.6 35.6 0.100409 158 129.5 287.3 287.3 287.3ZM326.3 262.4C286.7 302 226 305.29999999999995 183 269.70000000000004l-140.5-111C-4.4 123.10000000000002-11.7 54.39999999999998 24.6 8.200000000000045c3.3-3.3 3.3-7.3 7.30003-7.30003l97.0002-97.0002c93.0998-93.0998 344.6 39.5994 585 279.9s369.7 487.9 279.9 580.9l-97.0002 97.0002c-42.9 42.9-110.9 42.9-150.501 0l-7.30003-7.30003-111-139.8c-35.6-42.9-32.3-103.6 7.29982-143.3L696 510.6c-39.6-64.7-82.5-122.1-132.7-172.3-50.2-50.2-107.6-93.0998-172.3-132.7l-64.7 56.8Zm-96.9999-50.1999c14.5 10.6 35.6 10.6 46.9001-3.3l82.4999-79.1999c11.2-11.2 28.4-13.9 42.9-7.30003 77.9 42.3 149.2 95.6997 211.9 157.8 62.7 62.7 115.5 134 157.8 211.9 6.60004 14.5 3.99996 31.7-7.30003 42.9l-82.5003 82.5003c-14.5 14.5-14.5 32.3-3.3 46.9001l114.9 140s0 3.3 3.3 3.3c13.2 13.9 35 14.5 48.9 1.30002l1.3-1.3 97.0002-97.0002c46.9-46.9-71.9997-268.7-279.9-480.6C455.1 18.799999999999954 229.3-96.10000000000002 182.4-49.200000000000045L82.1 51.10000000000002c-10.6 14.5-10.6 39.6 7.29996 50.2l139.9 110.9Z" horiz-adv-x="1024" />
<glyph glyph-name="dianhua" unicode="&#58885;" d="M621.40595 181.895025c3.09997 0 21.692792 15.494851 27.889732 18.593822 12.396881 6.197941 21.693792 12.395881 30.989703 15.494851 65.079375 27.889732 120.85884 9.296911 195.234125-80.573227 46.484554-55.780465 58.879435-102.265018 43.385584-145.650601-12.395881-30.989703-40.286613-55.780465-83.671197-80.572227-3.09997-3.09997-27.890732-18.593822-37.187643-21.692792-105.363989-65.078375-350.181638 83.671197-526.820943 343.982698C94.584007 488.69108 48.100453 764.497432 156.563412 832.673778l15.494851 9.296911 15.494852 9.29691c55.781465 34.088673 89.869137 49.583524 130.15575 43.385584 40.286613-6.197941 77.474256-37.187643 105.364989-92.969108 61.979405-117.75887 49.582524-173.540334-30.989703-226.222828-6.197941-3.09897-27.890732-15.494851-27.890732-18.593821-18.593822-12.395881 12.395881-96.067078 92.969107-207.629007 77.473256-117.76087 142.550632-182.838245 164.243424-167.343394z" horiz-adv-x="1024" />
<glyph glyph-name="zhuce-youxiang" unicode="&#59022;" d="M105.5-26.1C47.3-26.1 0 21.2 0 79.3V688.7c0 58.1 47.3 105.4 105.5 105.4h813.1c58.2 0 105.5-47.3 105.5-105.4v-609.4c0-55.9-43.7-102.1-99.4-105.3H105.5zM75.4 79.3c0-16.6 13.5-30.1 30.1-30.1h813.1c16.6 0 30.1 13.5 30.1 30.1V664.8L536.1 321.3c-6.8-5.6-15.3-8.8-24.1-8.8s-17.4 3.1-24.1 8.8L75.4 664.8v-585.5zM512 399.2l383.7 319.6H128.3L512 399.2z" horiz-adv-x="1024" />
</font>
</defs></svg>
@theme: #005385;
@page-width: 1400px;
::-webkit-scrollbar {
width: 8px;
height: 8px;
background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 8px @theme;
border-radius: 10px;
background-color: #F5F5F5;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
border-radius: 2px;
-webkit-box-shadow: inset 0 0 8px @theme;
background-color: #bdbdbd;
}
/*滑块效果*/
::-webkit-scrollbar-thumb:hover {
border-radius: 2px;
-webkit-box-shadow: inset 0 0 8px @theme;
background: rgba(0, 0, 0, 0.8);
}
html {
scrollbar-face-color: #bfbfbf;
/*滚动条颜色*/
scrollbar-highlight-color: @theme;
scrollbar-3dlight-color: @theme;
scrollbar-darkshadow-color: @theme;
scrollbar-Shadow-color: #adadad;
/*滑块边色*/
scrollbar-arrow-color: rgba(0, 0, 0, 0.8);
/*箭头颜色*/
scrollbar-track-color: #eeeeee;
/*背景颜色*/
font-family: 'Microsoft YaHei';
color: #232323;
}
a {
color: @theme;
}
a:hover {
color: @theme;
cursor: pointer;
}
.bg {
margin-top: 50px;
background-color: #EEEEEE;
padding-bottom: 50px;
}
.form {
padding: 10px 50px;
}
.flex {
display: flex;
}
.flexd {
display: flex;
flex-direction: column;
}
.fg {
flex-grow: 1;
}
a.an {
cursor: auto;
}
.pt20 {
padding-top: 20px;
}
.ac {
text-align: center;
}
.ar {
text-align: right;
}
.pr {
position: relative;
.pa {
position: absolute;
z-index: 9;
}
}
.mainf {
.header {
height: 100px;
background: rgba(@theme, 0.5);
padding: 30px 0;
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 99;
&.home{
background-color: transparent;
}
.nav {
width: @page-width;
margin: 0 auto;
display: flex;
.phone {
display: none;
}
.menu {
flex-grow: 1;
font-size: 18px;
font-family: Microsoft YaHei;
font-weight: 400;
line-height: 100px;
margin-top: -30px;
padding-left: 160px;
>a {
color: #FFFFFF;
font-weight: 400;
min-width: 180px;
display: inline-block;
text-align: center;
position: relative;
.flexd {
position: absolute;
z-index: 1099;
background-color: @theme;
left: 50%;
transform: translateX(-50%);
top: 99px;
width: 680px;
display: none;
height: 180px;
overflow: hidden;
animation: hover .3s 1 ease-in;
.fg {
padding: 20px 20px 20px 30px;
h4 {
font-size: 16px;
font-family: Microsoft YaHei;
line-height: 50px;
text-align: left;
padding-left: 20px;
}
a {
padding: 0 20px;
text-align: left;
color: rgba(white, 0.7);
font-size: 14px;
font-weight: 400;
display: block;
line-height: 30px;
&:hover {
color: rgba(#FFFFFF, 1);
font-weight: bold;
}
&.cur {
color: rgba(#FFFFFF, 1);
font-weight: bold;
}
}
}
}
@keyframes hover {
0%{
height: 0;
}
50%{
height: 90px;
}
100%{
height: 180px;
}
}
&.cur {
&::after {
content: "";
height: 4px;
width: 30px;
margin-left: -15px;
background-color: white;
position: absolute;
bottom: 20px;
left: 50%;
}
}
&:hover,
&.cur {
font-weight: bold;
}
&:hover {
background-color: @theme;
.flexd {
display: block;
animation: hover .3s 1 ease-in;
animation-direction:alternate;
}
}
}
}
.ad {
font-size: 20px;
font-family: Microsoft YaHei;
font-weight: 400;
line-height: 26px;
color: #FFFFFF;
i {
font-size: 30px;
}
}
}
}
}
.kfcode {
text-align: center;
padding: 50px;
}
// silder
.silder {
position: fixed;
right: 0;
top: 50vh;
transform: translateY(-50%);
width: 80px;
z-index: 999;
a {
display: inline-block;
width: 80px;
height: 80px;
background-color: @theme;
color: white;
font-size: 14px;
margin-bottom: 20px;
display: flex;
flex-direction: column;
div {
text-align: center;
flex-grow: 1;
&.tc {
padding-top: 15px;
}
}
&.pr {
.telphone {
position: absolute;
right: 0;
width: 210px;
background-color: @theme;
line-height: 50px;
font-size: 24px;
display: none;
border-top-left-radius: 5px;
}
}
&:hover {
.telphone {
display: block;
}
}
}
z-index: 99;
}
h1 {
font-size: 30px;
font-family: Alibaba Sans;
font-weight: 900;
height: 80px;
line-height: 80px;
color: #232323;
position: relative;
text-align: center;
margin: 0 0 65px 0;
&::after {
content: "";
height: 6px;
background-color: @theme;
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 60px;
bottom: -5px;
}
}
h2,
h3 {
font-size: 30px;
font-family: Alibaba Sans;
font-weight: 900;
line-height: 60px;
color: #232323;
border-left: 10px solid @theme;
padding-left: 12px;
}
h3 {
margin: 20px 0;
border-left: none;
position: relative;
padding-left: 20px;
&::before {
content: "";
width: 10px;
height: 10px;
background-color: #000;
position: absolute;
top: 45%;
left: -5px;
}
}
.con {
font-size: 16px;
line-height: 30px;
font-size: 16px;
font-family: Microsoft YaHei;
font-weight: 400;
color: #232323;
p {
margin-bottom: 30px;
}
img {
max-width: 900px;
margin: 40px 0;
}
}
.pt50 {
padding-top: 50px;
}
.banner1 {
img {
width: 100%;
}
}
.main {
width: @page-width;
margin: 0 auto;
}
.ivu-carousel-dots {
li {
button {
height: 6px;
width: 6px;
border-radius: 3px;
background-color: #232323;
margin-right: 10px;
}
}
}
.body {
min-height: 850px;
line-height: 24px;
.banner {
height: 960px;
.btn-apply {
width: 140px;
line-height: 48px;
background-color: transparent;
border: 1px solid white;
z-index: 99;
color: white;
position: absolute;
top: 60%;
left: 20%;
font-size: 20px;
font-family: Microsoft YaHei;
font-weight: 400;
cursor: pointer;
&:hover {
background-color: @theme;
}
}
.ivu-carousel-dots {
transform: translateY(-60px);
li {
button {
height: 6px;
width: 6px;
border-radius: 3px;
background-color: #FFFFFF;
}
&.ivu-carousel-active {
button {
width: 20px;
}
}
}
}
img {
width: 100%;
max-height: 960px;
}
}
.banner-new {
height: 100vh;
width: 100%;
overflow: hidden;
.pr {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
.act{
animation: scale 16s infinite;
}
@keyframes scale {
0%{
transform: scale(1);
}
50%{
transform: scale(1.2);
}
100%{
transform: scale(1);
}
}
.pa {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(#232323, 0.7);
display: flex;
align-items: center;
justify-content: center;
.kouhao {
text-align: center;
width: 50%;
// background-color: red;
color: white;
.k1 {
font-size: 72px;
font-family: Microsoft YaHei;
font-weight: bold;
line-height: 95px;
color: #FFFFFF;
letter-spacing: 20px;
margin-bottom: 40px;
}
.k2 {
font-size: 48px;
font-family: FZLanTingHeiS-EL-GB;
font-weight: 400;
line-height: 55px;
color: #FFFFFF;
letter-spacing: 10px;
line-height: 60px;
margin-bottom: 20px;
}
.k3 {
margin-top: 60px;
font-size: 18px;
font-family: Microsoft YaHei;
font-weight: 400;
line-height: 36px;
color: #FFFFFF;
}
}
}
}
}
.pb50 {
padding-bottom: 50px;
}
.notice {
line-height: 60px;
width: @page-width;
margin: 0 auto;
text-align: center;
.title {
font-size: 16px;
font-family: Microsoft YaHei;
font-weight: bold;
color: @theme;
margin-right: 50px;
}
}
.product {
padding-top: 35px;
h1 {
margin-bottom: 10px;
}
h5 {
font-size: 20px;
font-family: Microsoft YaHei;
font-weight: bold;
line-height: 60px;
color: #232323;
}
.flex {
align-items: center;
justify-content: space-between;
}
a.item {
display: inline-block;
width: 400px;
margin-top: 30px;
p {
font-size: 18px;
font-family: Microsoft YaHei;
font-weight: bold;
line-height: 45px;
text-align: center;
padding-left: -50px;
}
&.w2 {
width: 600px;
}
}
.item1 {
a {
img {
width: 600px;
height: 320px;
}
}
}
}
.service {
padding-top: 65px;
.ivu-carousel-dots {
height: 50px;
line-height: 50px;
padding-top: 15px;
}
.pr {
height: 537px;
}
.pa {
width: 560px;
background: @theme;
opacity: 0.8;
color: white;
top: 0;
left: 0;
bottom: 0;
z-index: 19;
padding: 56px 49px;
.flexd {
height: 100%;
}
.title {
height: 80px;
border-left: 4px solid #FFFFFF;
padding: 0 0 0 10px;
font-size: 30px;
font-family: Microsoft YaHei;
font-weight: 300;
}
.info {
font-size: 14px;
// font-family: "宋体";
margin-top: 30px;
text-indent: 28px;
}
.moreal {
width: 100px;
text-align: center;
border: 1px solid #FFFFFF;
font-size: 14px;
font-family: Microsoft YaHei;
font-weight: 400;
line-height: 36px;
color: #FFFFFF;
display: inline-block;
background-color: transparent;
cursor: pointer;
&:hover {
background-color: @theme;
}
}
}
}
.custom {
padding-top: 35px;
img {
width: 100%;
margin: 0 0 20px 0;
}
}
.news {
padding: 120px 0;
.pic {
padding: 0 60px 0 0;
image {
height: 400px;
width: 500px;
}
}
.fg {
font-family: "宋体";
.news-title {
line-height: 50px;
border-bottom: 1px solid #805555;
.tab {
display: inline-block;
line-height: 50px;
position: relative;
font-size: 18px;
font-family: Microsoft YaHei;
font-weight: 400;
color: #232323;
border-bottom: 4px solid @theme;
}
margin-bottom: 20px;
}
ul {
li {
list-style: none;
a.title {
font-size: 16px;
font-family: "宋体";
font-weight: bold;
line-height: 30px;
color: #000000;
}
p {
line-height: 20px;
margin-bottom: 15px;
font-size: 14px;
}
}
}
.more {
font-size: 14px;
font-family: "宋体";
font-weight: 400;
line-height: 19px;
color: #232323;
}
}
}
}
.footer {
padding-top: 30px;
padding-bottom: 20px;
h5 {
font-size: 20px;
font-family: Microsoft YaHei;
font-weight: bold;
line-height: 70px;
}
background: #444444;
color: white;
.main {
.pt40 {
padding-top: 40px;
}
.flex {
width: 100%;
flex-shrink: 0;
align-content: space-between;
justify-content: space-between;
.about {
p {
line-height: 30px;
font-size: 14px;
font-family: Microsoft YaHei;
padding-right: 100px;
}
}
.product {
h4 {
font-size: 14px;
font-family: Microsoft YaHei;
font-weight: bold;
margin-bottom: 10px;
margin-top: -5px;
}
a {
line-height: 30px;
font-weight: normal;
font-family: Microsoft YaHei;
display: block;
}
}
>.fg {
width: 40%;
// background-color: red;
flex-grow: 0;
flex-shrink: 0;
}
.contact {
p {
font-size: 14px;
font-family: Microsoft YaHei;
font-weight: 400;
line-height: 35px;
i {
margin-right: 16px;
}
}
}
.code {
padding-top: 30px;
.code-title {
font-size: 14px;
font-family: Microsoft YaHei;
font-weight: 400;
line-height: 40px;
}
img {
// border: 1px dashed #eee;
}
}
}
}
a {
color: white;
}
.ba {
font-size: 14px;
// font-family: "宋体";
}
}
.f16 {
font-size: 16px;
}
/*公用组件 发送消息*/
.send {
.red {
color: red;
}
.form {
padding-top: 30px;
display: flex;
.item {
flex-grow: 1;
input {
height: 36px;
border: 1px solid #DCDFE6;
opacity: 1;
padding-left: 10px;
&:focus {
// border-color: red;
border: 1px solid red;
}
}
input:focus {
border: 1px solid red;
}
button {
line-height: 36px;
background: @theme;
text-align: center;
padding: 0 40px;
color: #FFFFFF;
border: none;
&:hover {
background: #021d8b;
cursor: pointer;
}
}
}
}
}
.pr {
position: relative;
}
.b {
font-weight: bold;
}
/* 关于我们*/
.jobs {
margin-bottom: 70px;
a {
font-size: 20px;
font-family: Microsoft YaHei;
font-weight: 400;
line-height: 50px;
color: @theme;
}
}
.jobinfo {
.item {
display: flex;
margin-bottom: 20px;
label {
width: 150px;
display: block;
text-align: right;
}
.fg {
flex-grow: 1;
}
}
}
a.news {
.b {
font-size: 16px;
font-family: Microsoft YaHei;
font-weight: bold;
}
p {
font-family: Microsoft YaHei;
font-weight: 400;
margin-bottom: 20px;
}
}
/* 产品信息 */
.product-main {
font-size: 14px;
font-family: Microsoft YaHei;
font-weight: 400;
line-height: 24px;
color: #232323;
margin-top: 100px;
padding-bottom: 50px;
h5 {
font-size: 30px;
font-family: Microsoft YaHei;
font-weight: 400;
line-height: 120px;
color: #005385;
text-align: center;
}
.ac {
b {
font-size: 20px;
}
img {
margin: 20px 0;
max-width: 1200px;
}
}
h6 {
position: relative;
height: 60px;
padding-top: 5px;
border-left: 10px solid #005385;
font-size: 30px;
font-family: Alibaba Sans;
font-weight: 900;
line-height: 47px;
color: #232323;
padding-left: 12px;
span {
position: absolute;
font-size: 36px;
font-family: Microsoft YaHei;
font-weight: 400;
color: rgba(#005385, 0.2);
left: 16px;
z-index: -1;
top: 20px;
}
margin: 50px 0;
}
p {
margin-bottom: 30px;
}
.menu {
position: fixed;
top: 120px;
right: 150px;
width: 80px;
background: #ffffff;
box-shadow: 0px 0px 10px rgba(12, 83, 133, 0.2);
border-radius: 8px;
.title {
font-size: 18px;
font-family: Microsoft YaHei;
font-weight: bold;
line-height: 24px;
color: #0c5385;
box-shadow: 0px 0px 10px rgba(12, 83, 133, 0.2);
height: 80px;
display: flex;
align-items: center;
justify-content: center;
span {
width: 40px;
// background: red;
display: inline-block;
}
}
ul.nav {
list-style: none;
width: 60px;
margin: 0 auto;
li {
min-height: 89px;
font-size: 18px;
font-family: Microsoft YaHei;
font-weight: 400;
color: #aaaaaa;
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid #f5f5f5;
span {
width: 40px;
// background: red;
display: inline-block;
}
&:hover {
cursor: pointer;
color: #0c5385;
}
}
li.cur {
color: #0c5385;
}
}
.back {
height: 80px;
color: #0c5385;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
span {
width: 40px;
display: inline-block;
text-align: center;
}
&:hover {
cursor: pointer;
}
}
}
.problem {
display: flex;
flex-wrap: wrap;
padding: 50px;
.item {
width: 50%;
line-height: 60px;
.seq {
font-size: 48px;
font-family: DINCond-Black;
font-weight: 400;
line-height: 57px;
color: rgba(#005385, 0.3);
margin-right: 19px;
}
&.s1 {
padding-left: 100px;
}
}
}
.function {
padding: 50px 0;
.cards {
display: flex;
min-height: 150px;
.operate {
width: 60px;
display: flex;
align-items: center;
color: #005385;
font-weight: bold;
&.disabled {
color: rgba(#005385, 0.3);
}
}
.card-body {
flex-grow: 1;
overflow: hidden;
display: flex;
.card-item {
width: 20%;
padding: 20px 16px;
flex-shrink: 0;
text-align: center;
// background-color: gray;
.card {
height: 100%;
width: 100%;
background: #ffffff;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
opacity: 1;
border-radius: 10px;
text-align: left;
padding: 20px 16px;
.card-title {
font-size: 30px;
font-weight: 300;
line-height: 120%;
color: #005385;
margin-bottom: 16px;
}
.card-info {
line-height: 20px;
font-size: 14px;
color: #232323;
}
}
}
}
}
}
.advantage {
.advantage-items {
position: absolute;
left: 615px;
top: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
color: white;
height: 644px;
.item {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
.img {
width: 56px;
height: 56px;
line-height: 56px;
background: #FFFFFF;
border-radius: 50%;
display: flex;
flex-shrink: 0;
align-items: center;
justify-content: center;
margin-left: -28px;
}
.item-info {
flex-grow: 1;
padding-left: 55px;
.item-title {
font-size: 20px;
font-family: Microsoft YaHei;
line-height: 35px;
}
}
}
}
}
.scene {
ul {
height: 300px;
margin-bottom: 50px;
overflow: hidden;
li {
height: 300px;
list-style: none;
float: left;
width: 160px;
overflow: hidden;
transition: all 0.2s;
position: relative;
.title {
display: none;
position: absolute;
width: 100%;
height: 40px;
left: 0;
line-height: 40px;
z-index: 99;
background: rgba(#232323, 0.4);
bottom: 0;
color: white;
padding-left: 50px;
}
&.cur {
width: 600px;
transition: all 0.3s;
.title {
display: block;
}
}
}
}
&.s5 {
li {
width: 200px;
}
}
&.s3 {
li {
width: 400px;
}
}
&.s4 {
li {
width: 266.66px;
}
}
&.s2 {
li {
width: 600px;
&.cur {
width: 800px;
}
}
}
}
.improtImg {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
}
/*见著*/
.compnay-info {
.ac {
img {
margin-bottom: 50px;
}
}
.bg {
margin-top: -10px;
padding-top: 88px;
}
.flex {
.fg {
&.info {
padding-left: 60px;
.info-title {
text-align: center;
font-size: 30px;
font-family: Alibaba Sans;
color: #232323;
padding: 50px 20px;
}
.info-content {
padding: 25px 30px;
p {
font-size: 14px;
font-family: Microsoft YaHei;
font-weight: 400;
line-height: 60px;
color: #6E6E6E;
}
}
}
}
}
.jobs {
.job {
display: flex;
flex-direction: column;
flex-grow: 1;
flex-shrink: 0;
.job-title {
font-size: 24px;
font-family: Alibaba Sans;
font-weight: 500;
line-height: 50px;
color: #232323;
display: block;
}
.job-items {
display: flex;
line-height: 35px;
justify-content: space-between;
flex-wrap: wrap;
flex-direction: column;
a {
// min-width: 33%;
font-size: 16px;
flex-shrink: 0;
display: block;
}
}
}
}
}
/* 案例 */
.case-main {
.case {
.fg {
width: 50%;
flex-shrink: 0;
&.info {
padding: 50px;
}
&.img {
text-align: center;
padding: 50px;
}
}
color: #6E6E6E;
.case-title {
font-size: 28px;
line-height: 110px;
img {
vertical-align: middle;
}
margin-bottom: 30px;
}
p {
font-size: 18px;
line-height: 30px;
}
}
.bt1 {
border-bottom: 1px solid #707070;
}
}
/* 职位详情*/
.job-items {
.job-tabs {
display: flex;
border-left: 1px solid #005385;
margin-bottom: 50px;
.tab {
background: #eaeaea;
height: 100px;
line-height: 100px;
text-align: center;
flex-grow: 1;
font-size: 28px;
color: rgba(#005385, 0.5);
border-right: 1px solid #005385;
cursor: pointer;
&.cur,
&:hover {
color: #005385;
font-weight: bold;
background-color: white;
border-top: 5px solid #005385;
}
}
}
.job {
margin-bottom: 50px;
font-size: 16px;
color: #232323;
.job-title {
font-size: 24px;
font-family: Alibaba Sans;
font-weight: bold;
line-height: 45px;
}
.flex {
line-height: 30px;
}
}
}
.case1 {
height: auto;
color: #333333;
.topImg {
height: 600px;
img {
height: 100%;
width: 100%;
}
}
.caseText {
padding: 0 400px;
background: #ffffff;
display: flex;
flex-direction: column;
line-height: 40px;
.titleLine {
font-size: 30px;
margin-top: 70px;
font-weight: bolder;
}
P span {
margin-left: 50px;
display: inline-block;
}
.tD {
text-indent: 2em;
}
.s1 {
font-size: 18px;
font-weight: bolder;
margin: 10px 0;
margin-top: 40px;
}
.s2 {
font-size: 14px;
font-weight: bolder;
}
.foot {
position: relative;
margin-top: 100px;
font-size: 18px;
margin-bottom: 20px;
p {
cursor: pointer;
}
p:hover {
color: #005385;
}
}
}
}
@import url("./phone");
/*移动端适配*/
@media screen and (max-width:600px) {
.mainf {
width: 100%;
// overflow: hidden;
.main {
width: 100%;
padding: 0 0px;
}
h1 {
font-size: 24px;
height: 60px;
line-height: 60px;
}
.header {
background-color: @theme;
height: 60px;
position: inherit;
padding: 0;
i {
font-size: 24px;
color: white;
line-height: 60px;
margin: 0 5px;
&.icondianhua {
font-size: 18px;
}
}
.nav {
width: 100%;
line-height: 60px;
display: flex;
position: relative;
.phone {
display: block;
}
.logo {
margin-right: 0;
flex-grow: 1;
text-align: center;
display: block;
line-height: 60px;
img {
vertical-align: middle;
width: 60%;
}
}
.menu {
display: block;
background-color: white;
position: absolute;
z-index: 99;
width: 100%;
top: 80px;
padding: 0 0 0 10px;
>a {
width: 100%;
line-height: 25px;
font-size: 14px;
color: @theme;
display: block;
text-align: left;
min-width: 100%;
padding: 0 5px;
&.cur {
background-color: rgba(@theme, 0.1);
position: relative;
&::before {
width: 2px;
left: 0;
top: 0;
content: "";
height: 25px;
background-color: @theme ;
position: absolute;
}
&::after {
display: none;
}
}
.flexd {
position: static;
display: block;
background-color: white;
transform: translateX(-4px);
width: 100%;
.fg {
color: black;
padding: 0;
text-align: left;
h4 {
font-size: 14px;
font-weight: bold;
line-height: 20px;
padding: 0 10px;
}
a {
color: @theme;
display: block;
text-align: left;
padding: 0 10px;
&:hover {
color: @theme;
font-weight: bold;
}
}
}
}
&:hover {
background-color: white;
}
}
}
.ad {
font-size: 20px;
line-height: 60px;
min-width: 180px;
font-weight: bold;
i {
font-size: 20px;
margin: 0;
vertical-align: -1px;
}
}
}
}
.banner {
height: 189px;
}
.notice {
width: 100%;
line-height: 150%;
}
.flex {
flex-direction: column;
}
.footer {
height: auto;
.flex {
.about {
padding: 0 20px;
p {
padding: 0;
}
}
.product {
.flex {
flex-direction: column;
}
padding:0;
}
.fg {
width: calc(100% - 20px);
padding-left: 20px;
}
}
.contact {
line-height: 30px;
font-size: 14px;
}
}
.body {
.service {
.pr {
height: auto;
}
.pa {
width: 60%;
padding: 5px 10px 0 5px;
bottom: 7px;
overflow: hidden;
.title {
height: 40px;
font-size: 18px;
line-height: 20px;
}
.info {
// height: 60px;
// background-color: red;
// width: 100%;
margin-top: 5px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
/* 将对象作为弹性伸缩盒子模型显示 */
-webkit-line-clamp: 4;
/* 控制最多显示几行 */
-webkit-box-orient: vertical;
/* 设置或检索伸缩盒对象的子元素的排列方式 */
}
}
}
}
.product {
a.item {
// width: 90%;
img {
width: calc(100vw - 20px);
}
// &.w2{
// width: 90%;
// img{
// width: 100vw;
// }
// }
width: 100%;
&.w2 {
width: 100%;
}
}
}
}
.banner1 {
img {
height: auto;
}
}
img {
max-width: 100vw;
}
.compnay-info {
.flex {
.fg {
img {
max-width: 100vw;
}
p {
padding-left: 20px;
}
}
}
.job-items .job-tabs .tab {
height: 35px;
line-height: 35px;
font-size: 18px;
}
}
.product-main {
.problem {
padding: 0;
.item {
line-height: 20px;
width: 100%;
.seq {
font-size: 24px;
margin-right: 0;
}
&.s1 {
padding-left: 0;
}
}
}
.ac {
img {
max-width: 100vw;
}
}
.menu {
display: none;
}
.function {
padding: 0;
.cards {
flex-direction: column;
height: auto;
.operate {
display: none;
background-color: red;
}
.card-body {
flex-direction: column;
.card-item {
width: 100%;
}
}
}
}
}
.case-main {
width: 100%;
.case {
.fg {
.case-title {
font-size: 20px;
line-height: 40px;
img {
vertical-align: top;
float: left;
}
}
width: 100%;
&.info {
padding: 10px;
}
&.img {
padding: 0;
width: calc(100vw - 20px);
&.o1 {
order: 10;
}
}
}
}
}
.case1 {
color: #333333;
width: 100%;
.caseText {
width: 100%;
padding: 0 20px;
background: #ffffff;
display: flex;
flex-direction: column;
line-height: 40px;
.titleLine {
font-size: 22px;
line-height: 40px;
margin-top: 70px;
font-weight: bolder;
}
P span {
margin-left: 50px;
display: inline-block;
}
.tD {
text-indent: 2em;
}
.s1 {
font-size: 14px;
font-weight: bolder;
margin-top: 20px;
}
.s2 {
font-size: 12px;
font-weight: bolder;
}
.foot {
position: relative;
margin-top: 100px;
font-size: 16px;
margin-bottom: 20px;
p {
cursor: pointer;
}
p:hover {
color: #005385;
}
}
}
}
}
<template>
<svg class="NuxtLogo" width="245" height="180" viewBox="0 0 452 342" xmlns="http://www.w3.org/2000/svg">
<path
d="M139 330l-1-2c-2-4-2-8-1-13H29L189 31l67 121 22-16-67-121c-1-2-9-14-22-14-6 0-15 2-22 15L5 303c-1 3-8 16-2 27 4 6 10 12 24 12h136c-14 0-21-6-24-12z"
fill="#00C58E"
/>
<path
d="M447 304L317 70c-2-2-9-15-22-15-6 0-15 3-22 15l-17 28v54l39-67 129 230h-49a23 23 0 0 1-2 14l-1 1c-6 11-21 12-23 12h76c3 0 17-1 24-12 3-5 5-14-2-26z"
fill="#108775"
/>
<path
d="M376 330v-1l1-2c1-4 2-8 1-12l-4-12-102-178-15-27h-1l-15 27-102 178-4 12a24 24 0 0 0 2 15c4 6 10 12 24 12h190c3 0 18-1 25-12zM256 152l93 163H163l93-163z"
fill="#2F495E"
/>
</svg>
</template>
<style>
.NuxtLogo {
animation: 1s appear;
margin: auto;
}
@keyframes appear {
0% {
opacity: 0;
}
}
</style>
# COMPONENTS
**This directory is not required, you can delete it if you don't want to use it.**
The components directory contains your Vue.js Components.
_Nuxt.js doesn't supercharge these components._
<template>
<span class="ivu-count-up"></span>
</template>
<script>
import CountUp from 'countup.js';
export default {
name: 'CountUp',
props: {
start: {
type: Number,
required: false,
default: 0
},
end: {
type: Number,
required: true
},
// 小数位数
decimals: {
type: Number,
required: false,
default: 0
},
// 持续时间
duration: {
type: Number,
required: false,
default: 2
},
// countup.js 设置项
options: {
type: Object,
required: false,
default () {
return {};
}
},
callback: {
type: Function,
required: false,
default: () => {}
}
},
data () {
return {
CountUp: null
};
},
watch: {
end (value) {
if (this.CountUp && this.CountUp.update) {
this.CountUp.update(value);
}
}
},
mounted () {
this.init();
},
methods: {
init () {
if (!this.CountUp) {
this.CountUp = new CountUp(
this.$el,
this.start,
this.end,
this.decimals,
this.duration,
this.options
);
this.CountUp.start(() => {
this.callback(this.CountUp);
});
}
},
destroy () {
this.CountUp = null;
}
},
beforeDestroy () {
this.destroy();
},
start (callback) {
if (this.CountUp && this.CountUp.start) {
this.CountUp.start(() => {
callback && callback(this.CountUp);
});
}
},
pauseResume () {
if (this.CountUp && this.CountUp.pauseResume) {
this.CountUp.pauseResume();
}
},
reset () {
if (this.CountUp && this.CountUp.reset) {
this.CountUp.reset();
}
},
update (newEndVal) {
if (this.CountUp && this.CountUp.update) {
this.CountUp.update(newEndVal);
}
}
};
</script>
\ No newline at end of file
<template>
<div v-if="loading">
loading....
</div>
</template>
<script>
export default {
data () {
return {
loading:false
}
},
components: {
},
methods: {
start(){
this.loading=true;
},
finish(){
this.loading=false;
}
}
}
</script>
<style lang="less">
</style>
<template>
<div class="function">
<div class="cards">
<div class="operate" :class="{disabled:last}" v-if="list.length>5">
<Icon type="ios-arrow-back" size="60" @click="page(-1)"/>
</div>
<div class="card-body">
<div class="card-item" v-for="(li,i) in items" :key="i">
<div class="card">
<div class="card-title" v-html="li.title">
</div>
<div class="card-info" v-html="li.content"></div>
</div>
</div>
</div>
<div class="operate" :class="{disabled:next}" v-if="list.length>5">
<Icon type="ios-arrow-forward" size="60" @click="page(1)"/>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'ProductFuntions',
props:{
list:{
type:Array,
default:[]
}
},
data(){
return {
index:0,
}
},
methods:{
page(n){
this.index+=n;
if(this.index<0){
this.index=0;
} else if(this.index>this.list.length-5){
this.index=this.list.length-5;
}
}
},
computed:{
items(){
return this.list.filter((u,i)=>{
return i>=this.index&&i<this.index+5;
})
},
next(){
return this.list.length-this.index-5==0;
},
last(){
return this.index==0
}
}
}
</script>
\ No newline at end of file
<template>
<div class="menu" v-if="1==2">
<div class="title">
<span v-text="title"></span>
</div>
<ul class="nav">
<li @click="go(0)" :class="{ cur: index == 0 }">
<span>产品简介</span>
</li>
<li @click="go(1)" :class="{ cur: index == 1 }">
<span>核心优势</span>
</li>
<li @click="go(2)" :class="{ cur: index == 2 }">
<span>应对问题</span>
</li>
<li @click="go(3)" :class="{ cur: index == 3 }">
<span>主要功能</span>
</li>
<li @click="go(4)" :class="{ cur: index == 4 }">
<span>适配场景</span>
</li>
<li @click="go(5)" :class="{ cur: index == 5 }">
<span>应用价值</span>
</li>
</ul>
<div class="back" @click="go(-1)">
<span>
<Icon type="ios-arrow-up" size="30" />
顶部
</span>
</div>
</div>
</template>
<script>
export default {
name: "ProductMenu",
data() {
return {
index: 0,
steps: [],
};
},
props: {
title: {
type: String,
default: "目录",
},
},
mounted() {
window.addEventListener("scroll", (e) => {
let y = window.scrollY;
this.steps.forEach((v, i) => {
console.warn("scrooll", v, window.scrollY);
if (v - y < 160) {
this.index = i;
}
});
});
let timer = setInterval(() => {
if (document.readyState == "complete") {
this.initStep();
window.clearInterval(timer);
console.warn(this.steps);
}
}, 1000);
},
methods: {
go(i) {
if (i == -1) {
window.scrollTo(0, 0);
this.index = 0;
} else {
let item = document.getElementById("h" + i);
window.scrollTo(0, item.offsetTop - 120);
this.index = i;
console.warn(i, this.steps[i], item.offsetTop);
}
},
initStep() {
let ul = [];
for (let index = 0; index < 6; index++) {
let item = document.getElementById("h" + index);
ul.push(item.offsetTop);
}
this.steps = ul;
console.warn(this.steps);
},
},
computed: {},
};
</script>
\ No newline at end of file
<template>
<div class="problem">
<div class="item" v-for="(li,i) in list" :class="{ s1: i % 4 < 2 }">
<span class="seq"> 0{{ i+1 }} </span>
{{li}}
</div>
</div>
</template>
<script>
export default {
name: 'ProductProblem',
props:{
list:{
type:Array,
default:[]
}
}
}
</script>
\ No newline at end of file
<template>
<div class="main send">
<h2>想要体验一下</h2>
<div class="form">
<div class="item">
<span class="red">*</span>
<input type="text" placeholder="您的手机号码">
</div>
<div class="item">
<span class="red">*</span>
<input type="text" placeholder="您的称呼">
</div>
<div class="item">
<span class="red">*</span>
<input type="text" placeholder="公司名称">
</div>
<div class="item">
<span class="red">*</span>
<input type="text" placeholder="邮箱">
</div>
<div class="item">
<span class="red">*</span>
<input type="text" placeholder="所在行业">
</div>
<div class="item">
<button>提交</button>
</div>
</div>
</div>
</template>
<script>
export default {
name:"send",
props:{
type:{
type:String
}
},
data () {
return {
}
},
components: {
},
methods: {
}
}
</script>
<style lang="less">
</style>
const env = process.env.NODE_ENV;
const Config = {
/**
* @description: 消息提示类型
*[,'Message','Notice']
*/
messageType: 0,
/**
* @description: 消息提示显示时间,单位秒
*/
messageDuration: 3,
/**
* @description: 默认接口地址
*/
// apiBaseUrl: "http://localhost:6066",
apiBaseUrl: "http://47.92.102.113:6066",
// apiBaseUrl: "http://154.8.185.122:8002",
timeout: 30000, // 请求超时时间
}
export default Config;
\ No newline at end of file
# LAYOUTS
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your Application Layouts.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/views#layouts).
<template>
<div class="mainf">
<div class="header" :class="{home:'/'==$nuxt.$route.path&&top}">
<div class="nav">
<Icon class="phone" type="md-menu" @click="show" />
<a class="logo" href="/" ><img src="@/assets/theme/images/logo.png" alt=""
/></a>
<div class="menu" v-show="menuShow" >
<nuxt-link to="/" :class="{cur:'/'==$nuxt.$route.path}">首页</nuxt-link>
<a class="an" :class="{cur:$nuxt.$route.path.indexOf('/product')===0}">产品
<div class="flexd">
<div class="flex">
<div class="fg">
<h4>智能制造</h4>
<nuxt-link to="/product/mes" :class="{cur:$nuxt.$route.path.indexOf('/product/mes')===0}">MES智能化制造执行</nuxt-link>
<nuxt-link to="/product/saas" :class="{cur:$nuxt.$route.path.indexOf('/product/saas')===0}">SaaS MES云端协同</nuxt-link>
<nuxt-link to="/product/aps" :class="{cur:$nuxt.$route.path.indexOf('/product/aps')===0}">APS高级排产</nuxt-link>
</div>
<div class="fg">
<h4>大数据</h4>
<nuxt-link to="/product/bigdata" :class="{cur:$nuxt.$route.path.indexOf('/product/bigdata')===0}">数据中台</nuxt-link>
<nuxt-link to="/product/phm" :class="{cur:$nuxt.$route.path.indexOf('/product/phm')===0}">PHM健康管理</nuxt-link>
</div>
<div class="fg">
<h4>工业互联</h4>
<nuxt-link to="/product/mdc" :class="{cur:$nuxt.$route.path.indexOf('/product/mdc')===0}">MDC数据采集</nuxt-link>
<nuxt-link to="/product/dnc" :class="{cur:$nuxt.$route.path.indexOf('/product/dnc')===0}">DNC数控联网</nuxt-link>
</div>
</div>
</div>
</li>
</ul>
</a>
<nuxt-link to="/case" :class="{cur:$nuxt.$route.path.indexOf('/case')===0}">案例</nuxt-link>
<nuxt-link to="/about" :class="{cur:$nuxt.$route.path.indexOf('/about')===0}">我们</nuxt-link>
</div>
<div class="ad">
<Icon custom="iconfont icondianhua" />{{config.phone}}
</div>
</div>
</div>
<Nuxt class="body" />
<div class="footer">
<div class="main ">
<div class=" flex">
<div class="fg about">
<h5>关于见著科技</h5>
<p>  北京见著科技有限公司,致力于为科研和制造业企业提供智能化解决方案。公司依托对大数据、AI及IOT等技术的研究,聚焦大数据智能应用和生产智能化领域,为企业提供量身定制的高端产品解决方案,助力企业智能化升级。公司总部在北京,在西安、无锡设有研发中心和分支机构。
</p>
</div>
<div class="fg product">
<h5>产品</h5>
<div class="flex">
<div class="fg">
<h4>智能制造</h4>
<nuxt-link to="/product/mes">MES智能化制造执行</nuxt-link>
<nuxt-link to="/product/saas">SaaS MES云端协同</nuxt-link>
<nuxt-link to="/product/aps">APS高级排产</nuxt-link>
</div>
<div class="fg">
<h4>大数据</h4>
<nuxt-link to="/product/bigdata">数据中台</nuxt-link>
<nuxt-link to="/product/phm">PHM健康管理</nuxt-link>
</div>
<div class="fg">
<h4>工业互联</h4>
<nuxt-link to="/product/mdc">MDC数据采集</nuxt-link>
<nuxt-link to="/product/dnc">DNC数控联网</nuxt-link>
</div>
</div>
</div>
</div>
<div class="pt40"></div>
<div class="flex">
<div class="fg contact">
<h5>联系我们</h5>
<div >
<p class="phone"><Icon custom="iconfont icondianhua" size="20"/>
{{config.phone}}</p>
<p class="email">
<Icon custom="iconfont iconyouxiang-" size="20"/>
{{config.email}}
</p>
<p class="address">
<Icon custom="iconfont iconlujing1086" size="20"/>
{{config.address}}
</p>
</div>
</div>
<div class="fg code flex">
<div class="fg">
<div class="code-title">
见著科技公众号
</div>
<img src="/images/home/code/gzh.png"/>
</div>
<div class="fg">
<div class="code-title">
见著云MES客服
</div>
<img src="/images/home/code/kf.png"/>
</div>
<div class="fg">
<div class="code-title">
知乎主页
</div>
<a href="http://zhihu.com/people/jianzhukeji" target="_blank"> <img src="/images/home/code/zh.png"/></a>
</div>
</div>
</div>
<div class="pt50"></div>
</div>
<div class="main ac ba">
<span class="bq">
Copyright &copy; 2021 {{config.company}}  
</span>
<a href="https://beian.miit.gov.cn/">{{config.icp}}</a>
</div>
</div>
<div class="silder">
<a @click="send('线上留言')">
<div class="tc"><Icon custom="iconfont iconzhuce-youxiang" size="30"/></div>
<div>
线上留言
</div>
</a>
<a class="pr">
<div class="flexd">
<div class="tc"><Icon custom="iconfont icondianhua01" size="30"/></div>
<div>
电话沟通
</div>
</div>
<div class="telphone">
<Icon custom="iconfont icondianhua01" size="30"/>{{config.phone}}
</div>
</a>
<a @click="contact">
<div class="tc"><Icon custom="iconfont iconziyuan7" size="30"/></div>
<div>
联系客服
</div>
</a>
</div>
<BackTop></BackTop>
<Modal :value="$store.state.modal.show" width="650" title="请留下以下信息,以便于我们联系您" @on-visible-change="hide">
<div class="form">
<Form ref="form" :model="entity" :rules="rules" label-position="top">
<FormItem label="手机" prop="phone">
<Input v-model.trim="entity.phone" placeholder="请填写11位手机号"></Input>
</FormItem>
<FormItem label="姓名" prop="name">
<Input v-model.trim="entity.name" placeholder="请填写您的姓名"></Input>
</FormItem>
<FormItem label="公司" prop="company">
<Input v-model.trim="entity.company" placeholder="请填写您的公司名称"></Input>
</FormItem>
<FormItem label="行业" prop="industry">
<Input v-model.trim="entity.industry" placeholder="请填写您的行业"></Input>
</FormItem>
<FormItem label="邮箱" prop="email">
<Input v-model.trim="entity.email" placeholder="请填写您的邮箱"></Input>
</FormItem>
</Form>
</div>
<div class="ac" slot="footer">
<Button type="primary" @click="sendMessage">留言</Button>
</div>
</Modal>
<Modal
v-model="codeShow"
title="联系客服"
footer-hide
>
<div class="kfcode">
<img src="/images/home/code/kf2.png"/>
</div>
</Modal>
</div>
</template>
<script>
export default {
// loading:true,
middleware({ redirect }) {
console.warn("middleware", "layouts");
// redirect("/reg")
},
data() {
return {
menuShow: true,
codeShow: false,
config: {
company: "北京见著科技有限公司",
phone: " 010-68661832",
email: "sales@mes123.com",
icp: "京ICP备2021010830号",
address: "北京市朝阳区慧忠北路103号洛克时代中心A座",
},
entity: {
phone: "",
name: "",
company: "",
industry: "",
email: "",
note: "",
type: "",
},
screenY:0,
rules: {
phone: [
{ required: true, message: "请填写11位手机号", trigger: "blur" },
{
type: "string",
pattern: /^1[3456789]\d{9}/,
message: "手机号格式错误",
trigger: "blur",
},
],
name: [
{
required: true,
message: "请填写您的姓名",
trigger: "blur",
},
],
company: [
{ required: true, message: "请填写公司名称", trigger: "blur" },
],
email: [{ type: "email", message: "邮箱格式错误", trigger: "blur" }],
},
};
},
mounted() {
// console.warn("process", process, process.bowser);
// if (process.bowser) {
// if (this.isPhone()) {
// this.menuShow = false;
// }
// }
if (this.isPhone()) {
this.menuShow = false;
}
window.addEventListener("scroll", (e) => {
this.screenY=window.scrollY;
});
},
methods: {
isPhone() {
let flag = false;
flag = navigator.userAgent.match(
/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
);
return flag;
},
hideMenu() {
this.hideMenu = true;
},
send(msg) {
this.$store.commit("openModal", msg);
},
sendMessage() {
this.$refs.form.validate((v) => {
if (v) {
this.$api.post("/message/create", this.entity).then((r) => {
if (r.success) {
this.$Message.success("留言成功!");
this.hide(false);
}
});
}else{
this.$Message.error("请检查输入!")
}
});
},
show() {
this.menuShow = !this.menuShow;
},
contact() {
this.codeShow = true;
},
hide(e) {
if (!e) {
this.$store.commit("closeModal");
}
},
},
computed:{
top(){
return this.screenY<200
}
},
watch: {
$route() {
if (this.isPhone()) {
this.menuShow = false;
}
},
},
};
</script>
<template>
<div class="main">
<h1 v-if="error.statusCode">页面不存在</h1>
<h1 v-else>发生异常</h1>
<Button>跳转道首页</Button>
</div>
</template>
<script>
export default {
data () {
return {
}
},
props:["error"],
methods: {
}
}
</script>
<style lang="less">
</style>
# MIDDLEWARE
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your application middleware.
Middleware let you define custom functions that can be run before rendering either a page or a group of pages.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing#middleware).
export default ({
store,
route,
redirect,
params,
query,
req,
res
})=>{
/**
* content
* store 状态树
*/
console.warn("middleware");
// redirect("/login")
// console.warn("middleware",context)
}
\ No newline at end of file
<template>
<div  class="compnay-info">
<div class="banner1">
<img src="/images/about.png" alt="关于我们" />
</div>
<div class="main pt50 job-items">
<div class="job-tabs">
<div class="tab" :class="{cur:type=='市场'}" @click="change('市场')">市场</div>
<div class="tab" :class="{cur:type=='开发'}" @click="change('开发')">开发</div>
<div class="tab" :class="{cur:type=='销售'}" @click="change('销售')">销售</div>
</div>
<div class="jobs">
<div class="job" v-for="(job, i) in jobs">
<div class="job-title">
{{ job.title }}
</div>
<div class="flex">
<label class="job-label"> 工作地点: </label>
<div class="fg" v-html="job.city"></div>
</div>
<div class="flex">
<label class="job-label"> 工作描述: </label>
<div class="fg" v-html="job.info"></div>
</div>
<div class="flex">
<label class="job-label"> 任职要求: </label>
<div class="fg" v-html="job.ask"></div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
head: {
title: "加入我们---北京见著科技有限公司--MES系统",
},
name: "",
data() {
return {
type:this.$route.params.type
};
},
computed:{
jobs(){
return this.$store.state.jobs.filter(u=>{
return u.type==this.type
})
}
},
methods:{
change(type){
this.type=type;
}
}
};
</script>
<template>
<div class="compnay-info">
<div class="banner1">
<img src="/images/about.png" alt="关于我们" />
</div>
<div class="bg">
<div class="main">
<div class="flex">
<div class="fg">
<img src="/images/about/map.png" alt="成长之路" />
</div>
<div class="fg info">
<div class="info-title">关于我们</div>
<div class="info-content">
<p>   北京见著科技有限公司,致力于为科研和制造业企业提供智能化解决方案。公司依托对大数据、AI及IOT等技术的研究,聚焦大数据智能应用和生产智能化领域,为企业提供量身定制的高端产品解决方案,助力企业智能化升级。<br/>
  公司坚持自主研发与创新发展, 汇聚了企业管理、应用数学、计算机、自动化和系统工程等领域的专业人才,并与众多科研院所和大学建立科研合作,打造出了一系列技术领先、极具竞争力的产品,服务于广大客户。公司总部在北京,在西安、无锡设有研发中心和分支机构。
</p>
</div>
</div>
</div>
</div>
<div class="pt50"></div>
</div>
<div class="main pt50">
<h1>我们的成长之路</h1>
<div class="ac">
<img src="/images/about/life.png" alt="成长之路" />
</div>
</div>
<div class="main pt50">
<h1>加入我们</h1>
<div class="jobs flex">
<div class="job fg " v-for="(c,i) in list" :key="i">
<div class="job-title">
{{c[0].type}}
</div>
<div class="job-items" >
<nuxt-link v-for="(job,j) in c" :key="i+'-'+j" :to="{ name: 'about-id', params: { id: job.id ,type:c[0].type} }">
{{ job.title }}
</nuxt-link>
</div>
</div>
</div>
</div>
<div class="pt50"></div>
</div>
</template>
<script>
export default {
head: {
title: "关于我们---北京见著科技有限公司--MES系统",
},
data() {
let groupBy = (list, fn) => {
const groups = {};
list.forEach(function (o) {
const group = JSON.stringify(fn(o));
groups[group] = groups[group] || [];
groups[group].push(o);
});
return groups;
};
let list = groupBy(this.$store.state.jobs, (u) => {
return u.type;
});
console.warn(list, "vvvv,", this.$store.state.jobs);
return {
list: list,
};
},
components: {},
methods: {},
};
</script>
\ No newline at end of file
<template>
<div class="case1">
<div class="banner1">
<img src="/images/about.png" alt="关于我们" />
</div>
<div class="caseText">
<h4 class="titleLine">中国航天科技集团某研究所MES系统</h4>
<h5 class="s1">项目概述</h5>
<p class="tD">建立针对涡轮、冲压、固体及组合动力装置的生产管理体系,实现对生产计划和工时的信息化集成管理。</p>
<p class="tD"> 对所内生产配套产品,搭建集资源、工艺及工时等信息为一体的基础数据平台,形成从年度到月度计划、从班组到操作者计划的扁平化信息传递和动态执行更新,实现对计划与工时进行按项目、按人员的一
对一精准采集与统计。</p>
<p class="tD">建立起面向整体任务的预先评价、面向生产过程的执行管控,以及面向参与全员的绩效考评,探索计划工时信息化协同管理对提高生产绩效管理和加速生产效能提升的积极效果。 </p>
<h5 class="s1">项目实施</h5>
<p>(1)集成ERP和PLM系统,共享订单、设备、人员、工艺、生产BOM与NC程序数据。</p>
<p> (2)搭建基础数据管理平台,实现工艺、资源、人员等信息关联。</p>
<p> (3)建立多级计划管理体系,实现计划精准传递和实时监控统计。</p>
<p> (4)通过计划工时协同管理,实现精准动态统计和多维考核评价。</p>
<p> (5)深度融合管理开发团队,实现系统开发测试和优化高效并行。</p>
<h5 class="s1">项目效果</h5>
<p class="s2">改变了生产管理模式,提升了生产管理效能</p>
<p class="tD">将所内传统的逐级向下的传递式计划管理与逐级向上的报送式工时管理模式转变为对计划与工时的一体化协同管理模式。</p>
<p class="s2">促进了人才队伍的发展,培养了一支熟悉信息化和智能化管理的队伍</p>
<p class="tD">项目的开发实施涉及到所外开发公司和所内型号、生产、质量、物资、检测、信息化、试验、各工艺和车间等十几个部门的各类生产过程参与人员,频繁的业务沟通讨论和流程设计协调,锻炼了一支熟悉网
络化、信息化、智能化的管理队伍。</p>
<p class="s2">降低了人力成本和时间成本,提高了发展活力</p>
<p class="tD">将各单位生产管理相关人员需求减少约15人,节省了各级调度人员在计划沟通反馈和工时统计填报上的时间投入,降低了人力成本,提高了人员工作积极性。</p>
<div class="foot">
<p class="bp">
上一篇:已经是最新的一篇了
<!-- <span>1</span> -->
</p>
<router-link :to="'/case/case2'">
<p>下一篇:中国航天科技集团某研究所</p>
</router-link>
</div>
<div class="pt50"></div>
</div>
</div>
</template>
<script>
export default {
head: {
title: "案例---北京见著科技有限公司--MES系统",
},
name: "",
data() {
return {};
}
};
</script>
\ No newline at end of file
<template>
<div class="case1">
<div class="banner1">
<img src="/images/about.png" alt="关于我们" />
</div>
<div class="caseText">
<h4 class="titleLine">中国航天科技集团某厂MES系统</h4>
<h5 class="s1">项目概述</h5>
<p class="tD"> 本项目是针对装配车间的车间级的 MES 生产执行系统。电子装配车间是产品工艺的最后一个环节,是信息化建设从机械加工向装配的扩展和延伸。项目的目的在于实现从接单到生产制造的“一站式”管控和
信息化管理。并通过试点先行,快速见效,在稳定运行的基础上向全所推广。</p>
<h5 class="s1">项目实施</h5>
<p>(1)系统边界划分与数据管理:ERP与MES主数据共享、MRP计划与MES的数据传递、生产报工数据的实时集成。</p>
<p>(2)数据采集:实现从原材料批次、产品序列号、生产工单、配送需求单等全流程使用一维,提高数据采集效率并防呆防错。</p>
<p>(3)计划调度:实现对生产任务的全过程管控,包括任务的分卡,调度排产,现场扰动处理,根据现场情况二次排产;提高问题处理效率和管理强度;实现现场管理透明化,使得生产节拍更具连贯性;对物
料和产品技术状态的齐套性检查,控制工单下达,避免现场生产待料等待的浪费;计划下达后系统自动发送站内信,责任明确,反应迅速。</p>
<p>(4)生产执行:第一时间接收工单任务,并根据物料条码进行物料安装,通过条码识别对配套件起到防错漏作用。;用工位摄像头可进行在制品图像管理。</p>
<p>(5)物料管理配送:中转库物料统一条码管理,方便数据定位和分拣;可与立体库AGV集成,实现物料一体化管理和配送。</p>
<p>(6)质量管控和追溯管理:检测模版和隔离工单管理将检测工序和不良品管控要求落地,生产工序过程、操作人员、检验结果、关键设备参数等通过工单管理和设备数据集成采集实现追溯的电子化。</p>
<p>(7)现场目视化管理:生产现场通过液晶显示屏将看板需求及其紧要程度进行展示,指导各工序生产安排;大屏能够对物料缺件信息进行快速上报,并对生产绩效进行现场展示,提升生产执行保障能力。</p>
<h5 class="s1">项目效果</h5>
<p class="tD">项目实现了“透明管控,高效执行,连续流动”三大核心目标。通过采用工人自动刷卡(出入证)及扫描《生产过程跟踪卡》进行自动报开工与完工,节省了车间调度现场巡察记录时间;生产进度信息可在会
议室投影展示,节省了领导、调度、生产线工人之间的沟通时间;通过现场的目视化和质量追溯电子化管理,提高了操作效率,为生产和质量过程控制及持续改善提供了详实准确数据;改变了传统的生产管
理模式,在生产管理的扁平化、智能化、透明化上取得良好开端,获得了提质、增效、降本、少人化、精细化五大管理实效。</p>
<div class="foot">
<router-link :to="'/case/case1'">
<p>上一篇:中国航天科技集团某研究所</p>
</router-link>
<p class="bp2">
下一篇:已经到底了
<!-- <span>1</span> -->
</p>
</div>
<div class="pt50"></div>
</div>
</div>
</template>
<script>
export default {
head: {
title: "案例---北京见著科技有限公司--MES系统",
},
name: "",
data() {
return {};
}
};
</script>
<template>
<div class="case-main">
<div class="banner1">
<img src="/images/about.png" alt="关于我们" />
</div>
<div class="main">
<div class="case flex bt1">
<div class="info fg">
<router-link :to="'/case/case1'">
<div class="case-title">
<img src="/images/case/a2.png" />中国航天科工集团某研究所 MES 系统
</div>
<p>  建立针对涡轮、冲压、固体及组合动力装置的生产管理体系,实现对生产计划和工时的信息化集成管理。
<br />  对所内生产配套产品,搭建集资源、工艺及工时等信息为一体的基础数据平台,形成从年度到月度计划、从班组到操作者计划的扁平化信息传递和动态执行更新,实现对计划与工时进行按项目、按人员的一对一精准采集与统计。
</p>
</router-link>
</div>
<div class="img fg">
<img src="/images/case/al.png" />
</div>
</div>
<div class="case flex">
<div class="img fg o1">
<img src="/images/case/al2.png" />
</div>
<div class="info fg">
<router-link :to="'/case/case2'">
<div class="case-title">
<img src="/images/case/a1.png" /> 中国航天科技集团某厂 MES 系统
</div>
<p>  本项目是针对装配车间的车间级的 MES
生产执行系统。电子装配车间是产品工艺的最后一个环节,是信息化建设从机械加工向装配的扩展和延伸。项目的目的在于实现从接单到生产制造的“一站式”管控和信息化管理。并通过试点先行,快速见效,在稳定运行的基础上向全所推广。
</p>
</router-link>
</div>
</div>
<div class="pt50"></div>
<h1>典型客户</h1>
<div class="ac">
<img src="/images/case/logos.png" />
</div>
<div class="pt50"></div>
</div>
</div>
</template>
<script>
export default {
head: {
title: "案例---北京见著科技有限公司--MES系统",
},
name: "",
data() {
return {};
},
};
</script>
\ No newline at end of file
<template>
<div>
<div class="banner-new">
<div class="pr">
<img class="act" src="/images/banner/new.jpg" />
<div class="pa">
<div class="kouhao">
<div class="k1">见微知著</div>
<div class="k2">成为中国企业走向智能化的好伙伴</div>
<img src="/images/banner/kouhao.png" />
<div class="k3">
以集团型、定制化智能制造方案为基石<br />
领先研发标准化、轻量化智能制造云平台<br />
助力企业轻松步入智能化发展快车道<br />
</div>
</div>
</div>
</div>
</div>
<div class="notice" v-if="false">
<span class="title"> 见著新闻动态 </span>
<a>
北京见著科技有限公司于8月8日于A股上市北京见著科技有限公司于8月8日于A股上市
</a>
</div>
<div class="main product">
<div class="pt50"></div>
<h1>我们的产品</h1>
<div class="pt50"></div>
<h5>智能制造</h5>
<div class="flex">
<nuxt-link class="item" to="/product/mes">
<img src="/images/home/product/p1.png" />
<p>MES智能化制造</p>
</nuxt-link>
<nuxt-link class="item" to="/product/saas">
<img src="/images/home/product/p2.png" />
<p>SaaS MES云端协同</p>
</nuxt-link>
<nuxt-link class="item" to="/product/aps">
<img src="/images/home/product/p3.png" />
<p>APS高级排产</p>
</nuxt-link>
</div>
<div class="pt50"></div>
<h5>大数据应用</h5>
<div class="flex">
<nuxt-link class="item w2" to="/product/bigdata">
<img src="/images/home/product/p4.png" />
<p>数据中台</p>
</nuxt-link>
<nuxt-link class="item w2" to="/product/phm">
<img src="/images/home/product/p5.png" alt="phm" />
<p>PHM健康管理</p>
</nuxt-link>
</div>
<div class="pt50"></div>
<h5>工业互联</h5>
<div class="flex">
<nuxt-link class="item w2" to="/product/mdc">
<img src="/images/home/product/p6.png" />
<p>MDC数据采集</p>
</nuxt-link>
<nuxt-link class="item w2" to="/product/dnc">
<img src="/images/home/product/p7.png" alt="MES" />
<p>DNC数控联网</p>
</nuxt-link>
</div>
</div>
<div class="pt50"></div>
<div class="service bg">
<div class="main">
<h1>20年大项目经验积累</h1>
<Carousel
autoplay
v-model="value2"
loop
:autoplay-speed="5000"
dots="outside"
>
<CarouselItem>
<div class="pr">
<img src="/images/home/al/a1.jpg" alt="我们服务于" />
<div class="pa">
<div class="flexd">
<div class="title">中国航天科工集团某研究所</div>
<div class="info fg">
建立针对涡轮、冲压、固体及组合动力装置的生产管理体系,实现对生产计划和工时的信息化集成管理。
对所内生产配套产品,搭建集资源、工艺及工时等信息为一体的基础数据平台,形成从年度到月度计划、从班组到操作者计划的扁平化信息传递和动态执行更新,实现对计划与工时进行按项目、按人员的一对一精准采集与统计。
</div>
<div class="ar">
<a class="moreal" href="/case/case1">查看</a>
</div>
</div>
</div>
</div>
</CarouselItem>
<CarouselItem>
<div class="pr">
<img src="/images/home/al/a2.jpg" alt="我们服务于" />
<div class="pa">
<div class="flexd">
<div class="title">中国航天科技集团某厂</div>
<div class="info fg">
本项目是针对装配车间的车间级的 MES
生产执行系统。电子装配车间是产品工艺的最后一个环节,是信息化建设从机械加工向装配的扩展和延伸。项目的目的在于实现从接单到生产制造的“一站式”管控和信息化管理。并通过试点先行,快速见效,在稳定运行的基础上向全所推广。
</div>
<div class="ar">
<a class="moreal" href="/case/case2">查看</a>
</div>
</div>
</div>
</div>
</CarouselItem>
</Carousel>
</div>
</div>
<div class="main custom">
<h1>我们的客户</h1>
<div class="ac">
<img src="/images/home/customs.png" alt="" />
</div>
<div class="pt50 ac">
<nuxt-link to="/case">查看更多>></nuxt-link>
</div>
<div class="pt50"></div>
</div>
</div>
</template>
<script>
export default {
head: {
title: "北京见著科技有限公司--MES系统",
},
middleware(context) {
console.warn("middleware", "page");
},
validate(params, query) {
console.warn("validate");
// console.warn("params",params)
// console.warn("query",query)
return true;
},
async asyncData({ $axios }) {
// let { data } = await $axios.get("/data/list.json");
// return {
// title2: data
// };
},
data() {
return {
title2: "hooho",
value2: 1,
auto: false,
};
},
methods: {
send(msg) {
this.$store.commit("openModal", msg);
},
},
};
</script>
\ No newline at end of file
<template>
<div>
<div class="banner1">
<img src="/images/about.png" alt="关于我们" />
</div>
<div class="main pt50">
<h1>这是一篇新闻详细</h1>
<div class="ac">
{{new Date()}}
</div>
<div class="pt50 con">
职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职
位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位
介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介
绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍详情职位介绍
详情职位介绍详情
</div>
<div class="pt50">
<p>
上一篇:没有了
</p>
<p>
下一篇:没有了
</p>
</div>
<div class="pt50"></div>
</div>
</div>
</template>
<script>
export default {
head:{
title:"新闻中心---北京见著科技有限公司--MES系统"
},
name: "",
data() {
return {};
},
};
</script>
<template>
<div>
<div class="banner1">
<img src="/images/about.png" alt="关于我们" />
</div>
<div class="main pt50">
<h1>公司动态</h1>
<Row>
<Col :span="8" v-for="i in 6" :key="i">
<nuxt-link class="news" :to="{ name: 'news-id', params: { id: i } }">
<img src="/images/empty.jpg" alt="没有图片">
<div class="b">这是第一篇新闻的标题,居中,加粗</div>
<p>
这是第一篇新闻的标题,居中,加粗这是第一篇新闻的标题,居中,加粗这是第一篇新闻的标题,居中
</p>
</nuxt-link>
</Col>
</Row>
</div>
<div class="main pt50">
<h1>行业动态</h1>
<Row>
<Col :span="8" v-for="i in 6" :key="i">
<nuxt-link class="news" :to="{ name: 'news-id', params: { id: i } }">
<img src="/images/empty.jpg" alt="没有图片">
<div class="b">这是第一篇新闻的标题,居中,加粗</div>
<p>
这是第一篇新闻的标题,居中,加粗这是第一篇新闻的标题,居中,加粗这是第一篇新闻的标题
</p>
</nuxt-link>
</Col>
</Row>
</div>
<div class="pt50"></div>
</div>
</template>
<script>
export default {
head:{
title:"新闻中心---北京见著科技有限公司--MES系统"
},
data() {
return {
list: [
{
id: 1,
name: "JAVA开发工程师",
},
{
id: 2,
name: "SAAS开发工程师",
},
{
id: 3,
name: "软件测试工程师",
},
{
id: 4,
name: "高级产品经理",
},
{
id: 5,
name: "开发运维工程师",
},
],
};
},
components: {},
methods: {},
};
</script>
\ No newline at end of file
<template>
<div class="main product-main">
<h5>APS高级排产</h5>
<h6 id="h0">
产品简介
<span>INTRODUCTION</span>
</h6>
<div class="pb50">
<p>
  APS(Advanced Planning and
Scheduling)即高级计划与排产,运用数学模型和相关技术为复杂的生产和供应问题找出优化的解决方案。
APS能够显著提高企业经济效益,它能及时响应客户需求,快速同步生产计划,提供准确的交货日期,减少在制品与成品库存,自动识别潜在瓶颈,最终提高企业管理水平。
</p>
</div>
<h6 id="h1">
核心优势
<span>ADVANTAGE</span>
</h6>
<div>
<div class="advantage">
<div class="img">
<img src="/images/product/aps/advantage.png" alt />
</div>
</div>
</div>
<h6 id="h2">
应对问题
<span>PROBLEM</span>
</h6>
<product-problem :list="product.problems" />
<h6 id="h3">
主要功能
<span>FUNCTION</span>
</h6>
<product-functions :list="product.functions" />
<h6 id="h4">
适配场景
<span>SCENE</span>
</h6>
<p>
  适用于离散型企业,特别针对品种多、批量小、工艺流程变化快,对生产计划要求高,却又缺乏计划排产工具的生产型企业。
</p>
<div class="scene s2">
<ul>
<li
class="scene-img"
v-for="(li, i) in list"
:key="i"
@mouseover="hover(i)"
:class="{ cur: pointIndex == i }"
>
<img :src="li.img" alt="" />
<div class="title">
{{ li.title }}
</div>
</li>
</ul>
</div>
<h6 id="h5">
应用价值
<span>VALUE</span>
</h6>
<div class="ac">
<img src="/images/product/aps/value.png" alt />
</div>
<div class="pt50"></div>
<product-menu title="APS" />
</div>
</template>
<script>
export default {
head: {
title: "APS高级排产--北京见著科技有限公司--MES系统",
},
name: "",
data() {
return {
list: [
{
title: "订单管理",
img: "/images/product/aps/scenarios1.png",
},
{
title: "方案对比",
img: "/images/product/aps/scenarios2.png",
},
],
pointIndex: 0,
product: {
problems: [
"加工周期不确定",
"生产准备不及时",
"现场信息不透明",
"设备利用率低下",
"交货期延迟",
"产品质量不稳定",
],
functions: [
{
title: "销售<br/>部门",
content: "快速确定订单交期",
},
{
title: "计划<br/>部门",
content: "模拟多种排产方案",
},
{
title: "生产<br/>管理部门",
content: "实时掌控生产进度",
},
{
title: "任务<br/>调度部门",
content: "敏捷响应资源变化",
},
],
},
};
},
methods: {
hover(i) {
this.pointIndex = i;
},
},
};
</script>
<template>
<div class="main product-main">
<h5>数据中台</h5>
<h6 id="h0">
产品简介
<span>INTRODUCTION</span>
</h6>
<p>  数据中台汇集企业内各类业务平台数据,通过数据接口获取各平台数据,对数据进行集中管理,建立数据关联,通过数据计算和加工为用户挖掘数据价值,同时作为各个业务的数据源,为业务系统提供数据和计算服务。
</p><p>  见著科技的数据中台可对接公司信息化管理系统ERP企业资源计划、PLM产品生命周期管理、MES制造执行系统、BPM业务流程管理、KMS知识管理系统等,应用大数据技术,对收集的海量数据进行采集、清洗、动态展示、建立模型、预测分析等技术处理,实现从设计、工艺、制造、交付到运维的全生命周期数据管理。
</p>
<div class="improtImg">
<img src="/images/product/bigdata/top1.png" alt />
</div>
<h6 id="h1">
核心优势
<span>ADVANTAGE</span>
</h6>
<div>
<div class="advantage">
<div class="img">
<img src="/images/product/bigdata/img.png" alt />
</div>
</div>
</div>
<h6 id="h2">
应对问题
<span>PROBLEM</span>
</h6>
<product-problem :list="product.problems" />
<h6 id="h3">
主要功能
<span>FUNCTION</span>
</h6>
<product-functions class="bigdata" :list="product.functions" />
<div class="ac">
<b>
各业务单元关注不同内容,支持根据客户需求定制化功能,以及不同数据权限的控制
</b>
<img src="/images/product/bigdata/6.png" alt />
</div>
<h6 id="h4">
适配场景
<span>SCENE</span>
</h6>
<p>  适用于已实施企业资源计划管理(ERP)系统、产品生命周期管理(PLM)系统、企业生产制造管理(MES)系统的企业,帮助企业实现需求管理、项目管理、产品管理、物料管理、BOM管理、配置管理、工艺管理等功能。</p>
<div class="improtImg">
<img src="/images/product/bigdata/5.png" alt />
</div>
<h6 id="h5">
应用价值
<span>VALUE</span>
</h6>
<div class="ac">
<img src="/images/product/bigdata/bottom.png" alt />
</div>
<div class="pt50"></div>
<product-menu title="数据中台" />
</div>
</template>
<script>
export default {
head: {
title: "数据中台--北京见著科技有限公司--MES系统",
},
name: "",
data() {
return {
pointIndex: 1,
product: {
problems: [
"运维参数、工艺参数、质量数据采集",
"确立时间参照,圈取故障点抽取实效参数,清洗数据",
"修正参数区间及权重,优化映射关系指数",
"确认工艺参数与产品质量映射管理基本要素建模 ,推断生产条件的合理区间",
"分析故障点和实效参数规划强弱级关联、标签化分类,提纯关联因子"
],
functions: [
{
title: "生产管理对接<br/>MES系统数据",
content: ""
},
{
title: "质量管控对接<br/>QS系统数据",
content: ""
},
{
title: "智能运维监控<br/>—故障管理、<br/>预警管理",
content: ""
},
{
title: "管理业务<br/>场景设计",
content: ""
},
{
title: "故障信息与<br/>产品信息联通",
content: ""
},
{
title: "基于大数据<br/>的产品全生命周期管理(PLM)",
content: ""
},
{
title: "基于大数据<br/>的健康管理(PHM)",
content: ""
}
]
}
};
},
methods: {
hover(i) {
this.pointIndex = i;
}
}
};
</script>
<template>
<div class="main product-main">
<h5>DNC数控联网</h5>
<h6 id="h0">
产品简介
<span>INTRODUCTION</span>
</h6>
<div class="pb50">
<p>
  DNC(Distributed Numerical
Control)分布式数控,将企业数控设备的网络化,集中化管理,实现NC程序的系统化管理,实现NC程序规范化管理;NC程序版本控制,历时追溯;远程调用NC程序加工;NC程序实时上传下载;对加工设备有效整合,提高设备利用率,减少辅助时间;实现模拟加工到实际加工的枢纽。
</p>
</div>
<h6 id="h1">
核心优势
<span>ADVANTAGE</span>
</h6>
<div>
<div class="advantage">
<div class="img">
<img src="/images/product/dnc/img.png" alt />
</div>
</div>
</div>
<h6 id="h2">
应对问题
<span>PROBLEM</span>
</h6>
<product-problem :list="product.problems" />
<h6 id="h3">
主要功能
<span>FUNCTION</span>
</h6>
<product-functions :list="product.functions" />
<h6 id="h4">
适配场景
<span>SCENE</span>
</h6>
<p>  适用于数控加工车间。</p>
<div class="scene s4">
<ul>
<li
class="scene-img"
v-for="(li, i) in list"
:key="i"
@mouseover="hover(i)"
:class="{ cur: pointIndex == i }"
>
<img :src="li.img" alt />
<div class="title">{{ li.title }}</div>
</li>
</ul>
</div>
<h6 id="h5">
应用价值
<span>VALUE</span>
</h6>
<div class="improtImg">
<img src="/images/product/dnc/bottom.png" alt />
</div>
<div class="pt50"></div>
<product-menu title="DNC" />
</div>
</template>
<script>
export default {
name: "",
head: {
title: "DNC数控联网--北京见著科技有限公司--MES系统",
},
data() {
return {
pointIndex: 0,
list: [
{
title: "数控车床",
img: "/images/product/dnc/1.png",
},
{
title: "数控铣床",
img: "/images/product/dnc/2.png",
},
{
title: "激光切割",
img: "/images/product/dnc/3.png",
},
{
title: "齿轮加工",
img: "/images/product/dnc/4.png",
}
],
product: {
problems: [
"手工录入程序效率低",
"U盘拷入程序,容易被病毒攻击",
"程序未集中管理,查询不方便",
"缺乏版本管理,导致管理混乱",
"程序文件和零件、工艺未关联,容易漏发、错发",
],
functions: [
{
title: "程序<br/>上传",
content: "支持设备内数控程序文件一键上传到服务器",
},
{
title: "程序<br/>下载",
content: "支持数控程序文件受控后一键下载到设备",
},
{
title: "程序<br/>审核",
content:
"提供数控程序审批流程,在系统内完成数控程序的审批、审核,保证程序的正确性",
},
{
title: "程序<br/>对比",
content:
"提供文本比较功能,可以在系统内对两个程序文件进行对比,快速标记文件差异之处",
},
{
title: "程序<br/>版本管理",
content:
"提供程序版本管理,不同版本对应不同零件、工序,便于管理和追溯",
},
],
},
};
},
methods: {
hover(i) {
this.pointIndex = i;
},
},
};
</script>
<template>
<div class="main product-main">
<h5>MDC数据采集</h5>
<h6 id="h0">
产品简介
<span> INTRODUCTION </span>
</h6>
<p>
  MDC (Manufacturing Data Collection & Status
Management)系统通过TCP/IP或者其他协议,将数控设备接入到系统中,通过配置设备采集驱动,实现将设备状态数据、过程数据进行收集和状态展示,并对设备利用率、故障率进行分析,帮助企业提升设备利用率、降低故障率
</p>
<h6 id="h1">
核心优势
<span> ADVANTAGE </span>
</h6>
<div>
<div class="advantage">
<div class="img">
<img src="/images/product/mdc/img.png" alt="" />
</div>
</div>
</div>
<h6 id="h2">
应对问题
<span> PROBLEM </span>
</h6>
<product-problem :list="product.problems" />
<h6 id="h3">
主要功能
<span> FUNCTION </span>
</h6>
<product-functions :list="product.functions" />
<h6 id="h4">
适配场景
<span> SCENE </span>
</h6>
<p></p>
<div class="scene s3">
<ul>
<li
class="scene-img"
v-for="(li, i) in list"
:key="i"
@mouseover="hover(i)"
:class="{ cur: pointIndex == i }"
>
<img :src="li.img" alt="" />
<div class="title">
{{ li.title }}
</div>
</li>
</ul>
</div>
<h6 id="h5">
应用价值
<span> VALUE </span>
</h6>
<div class="ac">
<img src="/images/product/mdc/bottom.png" alt="" />
</div>
<product-menu title="MDC" />
</div>
</template>
<script>
export default {
name: "",
head: {
title: "MDC数据采集--北京见著科技有限公司--MES系统",
},
data() {
return {
list: [
{
title: "数控车间",
img: "/images/product/mdc/1.png",
},
{
title: "能源监控",
img: "/images/product/mdc/2.png",
},
{
title: "物流设备",
img: "/images/product/mdc/3.png",
},
],
pointIndex: 0,
product: {
problems: [
"设备工作状态无法及时获知",
"设备历史加工信息无法查询",
"设备利用率无法计算",
"设备生产数据无法追溯",
"刀具寿命无法监控",
],
functions: [
{
title: "设备<br/>状态监控",
content: "实现设备开关机、加工、维修等运行状态实时监控",
},
{
title: "设备<br/>故障采集",
content:
"实时获得机床加工及故障数据,为机床维修、车间安排生产、改善生产效率提供智能决策依据",
},
{
title: "设备<br/>利用率分析",
content: "对设备状态进行远程监控采集,对设备利用效率进行统计分析",
},
{
title: "设备<br/>撞击保护",
content:
"超敏感数控设备撞击保护,避免调错程序、选错坐标给机床造成伤害",
},
{
title: "数控刀具<br/>加工监控",
content: "小直径加工的断刀、重载断续切削的崩刀、高精密加工的磨损",
},
{
title: "设备<br/>健康监控",
content:
"非接触式传动部件磨损监控,实时监控重要传动部件的磨损数据,设备维护未雨绸缪",
},
],
},
};
},
methods: {
hover(i) {
this.pointIndex = i;
},
},
};
</script>
<template>
<div class="main product-main">
<h5>MES智能化制造执行</h5>
<h6 id="h0">
产品简介
<span>INTRODUCTION</span>
</h6>
<div class="pb50">
<p>
  见著MES(Manufacturing Execution System)
制造执行系统建立在见著10余年集团型离散制造企业MES定制开发的基础之上,结合最新IT技术自主研发,形成了符合MESA/ISA-S95标准新一代企业级MES系统。
</p>
<p>
  MES控制和记录产品生产过程中的所有要素(人机料法环测)的活动,将决策层(ERP)的信息转化并传递到执行层(IOT),对从订单下达到产品完成的整个生产过程进行优化管理,
对工厂发生的实时事件及时做出反应和报告,并用数据进行指导和处理。能够有效地优化企业的生产管理模式,强化过程管理和控制,为企业智能制造提供必要支撑。
</p>
</div>
<h6 id="h1">
核心优势
<span>ADVANTAGE</span>
</h6>
<div>
<div class="advantage">
<div class="img">
<img src="/images/product/mes/img.png" alt />
</div>
</div>
</div>
<h6 id="h2">
应对问题
<span>PROBLEM</span>
</h6>
<product-problem :list="product.problems" />
<h6 id="h3">
主要功能
<span>FUNCTION</span>
</h6>
<product-functions :list="product.functions" />
<h6 id="h4">
适配场景
<span>SCENE</span>
</h6>
<p>
  适用于大中型企业,产品种类多,工艺复杂,各车间协同业务比较繁杂,标准化模块满足不了企业应用,需要定制化开发来满足需求。
</p>
<div class="scene">
<ul>
<li
class="scene-img"
v-for="(li, i) in list"
:key="i"
@mouseover="hover(i)"
:class="{ cur: pointIndex == i }"
>
<img :src="li.img" alt />
<div class="title">{{ li.title }}</div>
</li>
</ul>
</div>
<h6 id="h5">
应用价值
<span>VALUE</span>
</h6>
<div class="ac">
<img src="/images/product/mes/bottom.png" alt />
</div>
<div class="pt50"></div>
<product-menu title="MES" />
</div>
</template>
<script>
export default {
name: "",
head: {
title: "MES智能化制造执行--北京见著科技有限公司--MES系统",
},
data() {
return {
list: [
{
title: "装配(作业岛)",
img: "/images/product/mes/s1.png",
},
{
title: "装配(流水线)",
img: "/images/product/mes/s2.png",
},
{
title: "钳工(群组式)",
img: "/images/product/mes/s3.png",
},
{
title: "机加(串行式)",
img: "/images/product/mes/s4.png",
},
{
title: "电柜(动态资源)",
img: "/images/product/mes/s5.png",
},
{
title: "委外(合同式)",
img: "/images/product/mes/s6.png",
},
],
pointIndex: 0,
product: {
problems: [
"无法快速制定可执行的生产计划",
"无法灵活应对插单等带来的计划变更",
"对生产要素缺乏数字化管理",
"没有全面的数据采集,存在数据盲点",
"车间现状没有透明化,不能实现可视化工厂",
"没有可靠的品质可控手段,质量数据不能全向追溯",
"各个系统数据不能共享,存在数据孤岛",
"各业务部门没有实现数字化协同,工作效率低下",
],
functions: [
{
title: "主生产<br/>计划管理",
content:
"帮助企业实现主生产计划的排产,结合现有产能、节拍,一键形成各车间、物资采购、产前准备等部门的月度计划数据。",
},
{
title: "作业<br/>计划管理",
content:
"给车间计划调度人员提供APS排产工具,在有限资源约束条件下,进行均衡生产,快速反应,降低库存,减少成本,并通过对生产状况信息的获取,反馈给主生产计划,并根据实际的生产情况做出相应的调整,系统支持分卡、回收等操作。",
},
{
title: "质量<br/>管理",
content:
"依据质量标准和规范,对质量检验项形成电子卡,并和工艺规程绑定,形成卡控式管理,控制(QC)并预防出错,针对异常问题,支持不合格品审理,提供品质异常报警,提供动态的品质数据监控,避免质量问题批量性产生。",
},
{
title: "物料<br/>管理",
content:
"实现企业物流全生命周期管理,从物料编码、物流分类、物料主数据、BOM、仓储、配套出库、安装等过程进行管控和记录,实现物料的全向追溯。",
},
{
title: "制造<br/>资源管理",
content:
"实现企业工装、工具、量具刀具、模具的管理,包括库存预警、有效期预警,并结合生产计划对制造资源库房进行生产准备的监控。",
},
{
title: "工艺<br/>规程管理",
content:
"实现电子化工艺规程的管理,可以通过和PDM等系统集成,接收工艺路线,同时维护工艺路线的资源信息、工时信息,实现电子作业指导书下达现场指导生产。",
},
],
},
};
},
methods: {
hover(i) {
this.pointIndex = i;
},
},
};
</script>
<template>
<div class="main product-main">
<h5>PHM健康管理</h5>
<h6 id="h0">
产品简介
<span> INTRODUCTION </span>
</h6>
<div class="pb50">
<p>
  PHM预测与健康管理技术(Prognostics Health Management)
是综合利用现代化信息技术、人工智能技术的最新研究成果而提出的一种全新的管理健康状况的解决方案,其目的在于为设备运行保障、应急处置、维修活动提供决策支持,具备故障检测与隔离、故障诊断、故障预测、健康管理和部件寿命追踪等能力。
</p>
<p>
  见著科技大数据PHM利用见著科技数据中台服务,通过对接企业的信息化管理系统ERP、PLM、MES、BPM、SCE、KMS等,对产品数据进行采集、清洗、动态展示、建立模型、预测分析等处理,从而实现产品故障预测与健康管理。
</p>
</div>
<h6 id="h1">
核心优势
<span> ADVANTAGE </span>
</h6>
<div>
<div class="advantage">
<div class="img">
<img src="/images/product/phm/img.png" alt="" />
</div>
</div>
</div>
<h6 id="h2">
应对问题
<span> PROBLEM </span>
</h6>
<product-problem :list="product.problems" />
<h6 id="h3">
主要功能
<span> FUNCTION </span>
</h6>
<product-functions :list="product.functions" />
<div class="improtImg">
<img src="/images/product/phm/improt.png" alt="" />
</div>
<h6 id="h4">
适配场景
<span> SCENE </span>
</h6>
<p>
  PHM适用于是密集应用大数据的典型工业领域,是工业互联网的重要组成部分。PHM强调资产设备管理中的状态感知、数据监控与分析,通过监控设备健康状况、故障频发区域与周期,预测故障的发生,从而大幅度提高运维效率。
</p>
<div class="scene s5">
<ul>
<li
class="scene-img"
v-for="(li, i) in list"
:key="i"
@mouseover="hover(i)"
:class="{ cur: pointIndex == i }"
>
<img :src="li.img" alt="" />
<div class="title">
{{ li.title }}
</div>
</li>
</ul>
</div>
<h6 id="h5">
应用价值
<span> VALUE </span>
</h6>
<div class="ac">
<img src="/images/product/phm/bottom.png" alt="" />
</div>
<div class="pt50"></div>
<product-menu title="PHM" />
</div>
</template>
<script>
export default {
head: {
title: "PHM健康管理---北京见著科技有限公司--MES系统",
},
name: "",
data() {
return {
list: [
{
title: "轨道交通",
img: "/images/product/phm/a1.png",
},
{
title: "船舶制造",
img: "/images/product/phm/a2.png",
},
{
title: "军工制造",
img: "/images/product/phm/a3.png",
},
{
title: "航天航空",
img: "/images/product/phm/a4.png",
},
{
title: "核能发电",
img: "/images/product/phm/a5.png",
},
],
pointIndex: 0,
product: {
problems: [
"数据质量差",
"数据延迟严重",
"设备故障数据与设备运行数据无法自动对应",
"缺乏设备故障预警",
"设备运行参数、故障、GPG等数据不能实时调取",
],
functions: [
{
title: "参数<br/>管理",
content:
" 展示故障发生时间段的故障参数及参数曲线,提供参数历史数据订阅查询,提供参数库管理。",
},
{
title: "模型<br/>库",
content:
"对设备进行管理和维护,根据不同用户设置权限限制,按建设模型的不同阶段展示不同的模型相关属性,并提供新建模型、升级版本、模型重用和展示模型效果等功能。",
},
{
title: "预警<br/>信息管理",
content:
"展示所有实时预警信息和预警相关的统计图表,提供多维度的查询和导出功能,支持查看预警的相关实时参数和参数曲线,支持预警信息自动发送以及初步判断。",
},
{
title: "健康<br/>评估",
content:
"根据既定规则对设备进行健康度评测,动态监控车辆的运行状态和健康状态,为潜在维修问题的发现和诊断,突发故障的高效处理,以及决策提供数据依据,从而提高维保效率和质量,保障设备更加安全可靠地运行。",
},
],
},
};
},
methods: {
hover(i) {
this.pointIndex = i;
},
},
};
</script>
<template>
<div class="main product-main">
<h5>SaaS MES云端协同</h5>
<h6 id="h0">
产品简介
<span> INTRODUCTION </span>
</h6>
<div class="pb50">
<p>
  见著SaaS MES是一款基于 SaaS 模式的轻量
MES,专为中小型、离散型制造企业而研发,旨在解决生产过程中的信息孤岛化、计划碎片化、数据非可视化等影响产品交付和增加生产成本的问题,助力企业以低成本,快速实
<span class="f16">现对项目、订单、物料、设备等生产要素的信息化、智能化管理。</span>
</p>
</div>
<h6 id="h1">
核心优势
<span> ADVANTAGE </span>
</h6>
<div>
<img src="/images/product/saas/1.png" />
</div>
<h6 id="h2">
应对问题
<span> PROBLEM </span>
</h6>
<product-problem :list="product.problems" />
<h6 id="h3">
主要功能
<span> FUNCTION </span>
</h6>
<product-functions :list="product.functions" />
<h6 id="h4">
适配场景
<span> SCENE </span>
</h6>
<p>
  SaaS MES主要适合中小企业,生产业务相对简单,不需要太多定制化需求。
</p>
<div class="scene s5">
<ul>
<li
class="scene-img"
v-for="(li, i) in list"
:key="i"
@mouseover="hover(i)"
:class="{ cur: pointIndex == i }"
>
<img :src="li.img" alt />
<div class="title">{{ li.title }}</div>
</li>
</ul>
</div>
<h6 id="h5">
应用价值
<span> VALUE </span>
</h6>
<div class="ac">
<img src="/images/product/saas/3.png" alt="" />
</div>
<div class="pt50"></div>
<product-menu title="SaaS MES" />
</div>
</template>
<script>
export default {
name: "",
head: {
title: "SaaS MES云端协同---北京见著科技有限公司--MES系统",
},
data() {
return {
list: [
{
title: "装配(作业岛)",
img: "/images/product/mes/s1.png",
},
{
title: "装配(流水线)",
img: "/images/product/mes/s2.png",
},
{
title: "钳工(群组式)",
img: "/images/product/mes/s3.png",
},
{
title: "机加(串行式)",
img: "/images/product/mes/s4.png",
},
{
title: "电柜(动态资源)",
img: "/images/product/mes/s5.png",
},
],
pointIndex: 0,
product: {
problems: [
"排产手段落后",
"配套缺件影响生产",
"绩效管理粗放松散",
"生产经验不能传承",
"订单交付无法保证",
"生产过程存在黑箱",
"产品质量参差不齐",
],
functions: [
{
title: "订单<br/>管理",
content:
"订单编号<br/>订单报价<br/>订单状态<br/>紧急程度<br/>订单监控<br/>电子对账单",
},
{
title: "资源<br/>管理",
content:
"设备类型<br/>设备管理<br/>排产资源<br/>库房库位<br/>库房管<br/>理料单配套<br/>制造资源",
},
{
title: "工艺<br/>管理",
content: "工艺规程<br/>物料管理<br/>产品管理<br/>工厂日历",
},
{
title: "生产<br/>计划",
content: "计划管理<br/>排产结果<br/>异常变更<br/>生产计划",
},
{
title: "生产<br/>执行",
content:
"班组派工<br/>工单执行<br/>转序交接<br/>工时提交<br/>工时统计",
},
{
title: "质量<br/>管理",
content: "原材料复验<br/>产品合格证<br/>质量检验<br/>数据包追溯",
},
],
},
};
},
methods: {
hover(i) {
this.pointIndex = i;
},
},
};
</script>
\ No newline at end of file
# PLUGINS
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains Javascript plugins that you want to run before mounting the root Vue.js application.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins).
export default ({ $axios }) => {
$axios.defaults.timeout = 10000;
$axios.defaults.baseURl="http://localhost:519";
//请求拦截:
$axios.onRequest(config => {
config.headers.token = "hello!";
// console.log("axios",config);
return config;
});
$axios.onRequest(res => {
return res;
})
}
\ No newline at end of file
export default({app,redirect})=>{
// console.log("插件");
app.router.beforeEach((to,form,next)=>{
// console.warn("插件守卫");
// app.$nuxt.$loading.start();
next();
})
app.router.afterEach((to,from)=>{
// console.warn("后置守卫")
// app.$nuxt.$loading.finish();
})
}
\ No newline at end of file
import Vue from 'vue'
import {Icon,Input,Carousel,Modal,Button,CarouselItem,FormItem,Form,BackTop,Message} from 'view-design'
// import locale from 'view-design/dist/locale/en-US' // Change locale, check node_modules/view-design/dist/locale
import '@/assets/icon/iconfont.css';
import Request from '@/api/request';
import Send from "@/components/send";
import CountUp from "@/components/count-up";
import ProductMenu from "@/components/product-menu";
import ProductProblem from "@/components/product-problem";
import ProductFunctions from "@/components/product-functions";
Vue.component("CountUp",CountUp)
Vue.component("Send",Send);
Vue.component("ProductMenu",ProductMenu);
Vue.component("ProductProblem",ProductProblem);
Vue.component("ProductFunctions",ProductFunctions);
Vue.component("Icon",Icon);
Vue.component("Input",Input);
Vue.component("Carousel",Carousel);
Vue.component("Modal",Modal);
Vue.component("Button",Button);
Vue.component("CarouselItem",CarouselItem);
Vue.component("Form",Form);
Vue.component("FormItem",FormItem);
Vue.component("BackTop",BackTop);
// Vue.use(ViewUI)
export default (({app,store})=>{
Vue.prototype.$api=Request;
Vue.prototype.$Message=Message;
})
\ No newline at end of file
# STATIC
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your static files.
Each file inside this directory is mapped to `/`.
Thus you'd want to delete this README.md before deploying to production.
Example: `/static/robots.txt` is mapped as `/robots.txt`.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#static).
{
"title2":"nuxt数据"
}
\ No newline at end of file
# STORE
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains your Vuex Store files.
Vuex Store option is implemented in the Nuxt.js framework.
Creating a file in this directory automatically activates the option in the framework.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store).
export const actions={
nuxtServerInit(store,context){
// console.warn("nuxtServerInit",store,context)
// console.warn("nuxtServerInit")
}
}
export const state=()=>({
count:1,
user:{},
modal:{
show:false,
type:""
},
jobs:[
{
id: 1,
title: "新媒体运营",
type: "市场",
city: "北京",
info: `1.负责公司微信公众号的日常维护,包括文案撰写.图文编辑和发布;<br/>
2.负责公司对外宣传材料的制作;<br/>
3.公司网站内容的日常维护和更新;<br/>
4.协助公司线下活动的策划与执行;<br/>
5.其他有助于公司市场推广的工作。<br/>`,
ask: `1.负责公司微信公众号的日常维护,包括文案撰写.图文编辑和发布;<br/>
2.负责公司对外宣传材料的制作;<br/>
3.公司网站内容的日常维护和更新;<br/>
4.协助公司线下活动的策划与执行;<br/>
5.其他有助于公司市场推广的工作。<br/>`,
},
{
id: 2,
title: "销售工程师",
type: "销售",
city: "北京/西安",
info: `1.发掘潜在客户,跟进客户,促进项目成单;<br/>
2.熟悉产品,能够详细准确的做产品的PPT介绍;<br/>
3.完成公司给予的销售任务,全力以赴,达成销售目标。<br/>`,
ask: `1.大专及以上学历,电子或计算机相关专业优先;<br/>
2.有过一年以上销售工作经验,做过软件行业销售优先;<br/>
3.勤奋.积极主动.乐于沟通,能够承担一定的工作强度和压力;<br/>
4.有较强的语言表达能力以及沟通技巧;<br/>
5.有工程.质量.数据类管理软件的销售经验优先。<br/>`,
},
{
id: 3,
title: "电话销售经理(软件)",
type: "销售",
city: "西安",
info: `1.良好的执行能力,以结果为导向,带领销售团队完成业绩;<br/>
2.健全销售团队的管理体系,持续培训和提升团队销售技能,实现更高的销售人效;<br/>
3.对销售人员进行业务培训和相关的激励及指导;`,
ask: `1.1年以上的电话销售团队管理经验;<br/>
2.有过5人以上销售团队管理经验;<br/>
3.具备良好的组织沟通能力和执行力,优秀的管理合作意识。<br/>`,
},
{
id: 4,
title: "电话销售(软件)",
type: "销售",
city: "西安",
info: `1.根据公司提供的客户资源,负责电话信息调研,补全客户基本信息。<br/>
2.完成公司既定的信息任务。<br/>
3.建立潜在客户档案。<br/>
4.维护老客户关系,反馈情况。<br/>
5.协助部门做好销售的辅助工作。`,
ask: `1.学历大专以上,良好的沟通表达能力和应变能力。<br/>
2.有电话销售经验者优先。<br/>
3.良好的职业道德及责任心。<br/>`,
},
{
id: 5,
title: "web前端开发工程师",
type: "开发",
city: "北京",
info: `1.参与公司项目前端的设计与开发;<br/>
2.与后端开发人员紧密配合,确认调用接口,保证功能的完整<br/>
3.负责互联网产品的单元测试,保证产品质量;<br/>
4.参与系统的部署.监控和维护,确保系统的正常运行;<br/>
5.参与对业务系统进行性能优化,提高系统的健壮性.<br/>`,
ask: `1.具有3-5年以上前端工作经验;有成功上线产品。<br/>
2.精通html5.css3.JavaScript等新功能,熟悉页面架构和布局.模块分离设计经验;<br/>
3.熟练使用Vue+Vue-router+Vuex+axios,iviewui。有Gis工作经验者优先考虑;<br/>
4.熟悉前端工具构建流程,有相关开发实践经验;<br/>
5.对css/JavaScript性能优化.解决多浏览器兼容性问题有一定的经验;<br/>
6.良好的沟通能力和团队合作精神;<br/>
7.认真细致.责任心强,具有较强的执行力,能够承受较强的工作压力。前端框架采用Vue.ui采用iview;加分项ElementUI<br/>`,
},
{
id: 6,
title: "Java开发工程师",
type: "开发",
city: "北京/西安",
info: `1.根据软件需求说明书和软件设计文档实现软件产品;<br/>
2.从事具体的软件开发,核心模块代码编写;<br/>
3.开发和维护统一的软件开发架构,发现和解决存在的软件设计问题;<br/>
4.按软件工程流程编写和提交设计文件和相关文档;<br/>
5.能独立学习技术并解决问题;<br/>`,
ask: `1.3年及以上相关工作经验;<br/>
2.熟悉Spring/Mybatis/Dubbo/SpringCloud等开源框架,对相关技术原理有较深入理解,从事过大型高并发架构设计者,SAAS模式开发经验者优先;<br/>
3.熟练应用Mysql/MongoDB等主流数据库;熟练应用Redis等;<br/>
4.有一定的业务抽象.逻辑分析能力;<br/>
5.有分布式系统开发经验优先;有大规模高并发系统开发经验优先;<br/>
6.良好的沟通能力和团队合作精神;<br/>
7.认真细致.责任心强,具有较强的执行力,能够承受较强的工作压力。<br/>`,
},
{
id: 7,
title: "电气工程师",
type: "开发",
city: "北京",
info: `1.编写调试程序,对硬件电路进行功能调试.验证;<br/>
2.协助硬件电路联入产品系统,进行产品的整体性能验证;<br/>`,
ask: `1.本科以上学历,电子/电气/自动化相关专业背景;<br/>
2.2年以上项目经历;<br/>
3.熟悉PLC或嵌入式MCU电路系统;<br/>
4.熟悉产品电子电路的开发流程;<br/>
5.具有较好的机械设计.电气原理图.电气控制流程概念;<br/>
6.有弱电电路接线经验,有电工资质。<br/>
7.可以适应出差。<br/>`,
},
]
})
export const getters={
}
export const mutations={
openModal(state,msg){
state.modal={
show:true,
type:msg
}
},
closeModal(state){
state.modal={
show:false,
type:""
}
}
}
\ No newline at end of file
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