This commit is contained in:
2026-02-27 12:24:34 +08:00
commit 6fb4800283
697 changed files with 103089 additions and 0 deletions

30
.gitignore vendored Normal file
View File

@@ -0,0 +1,30 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
.DS_Store
dist
dist-ssr
coverage
*.local
/cypress/videos/
/cypress/screenshots/
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.tsbuildinfo

3
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar"]
}

195
COLOR_GUIDE.md Normal file
View File

@@ -0,0 +1,195 @@
# 颜色使用指南
## 🎨 主题色系统
本项目采用统一的颜色管理系统,支持主题切换和颜色规范化管理。
### 主色调
- **主色调**: `#5D7EEB` (蓝色)
- **CSS变量**: `var(--color-primary)`
- **Tailwind类名**: `bg-primary`, `text-primary`, `border-primary`
## 📁 文件结构
```
src/assets/
├── colors.css # 统一颜色变量定义
├── vant-theme.css # Vant组件主题配置
├── main.css # 主样式文件(导入所有样式)
└── base.css # 基础样式
tailwind.config.js # Tailwind颜色配置
```
## 🎯 使用方式
### 1. CSS变量方式推荐
```css
/* 在CSS中使用 */
.my-button {
background-color: var(--color-primary);
color: var(--color-text-white);
border-color: var(--color-border-primary);
}
.my-text {
color: var(--color-text-secondary);
}
```
### 2. Tailwind类名方式
```html
<!-- 在HTML中使用 -->
<button class="bg-primary text-white border-primary">
主要按钮
</button>
<div class="text-gray-600 bg-gray-50">
文本内容
</div>
```
### 3. Vue组件中使用
```vue
<template>
<div class="service-card" :style="{ backgroundColor: serviceColor }">
<h3 class="text-primary">{{ title }}</h3>
<p class="text-gray-600">{{ description }}</p>
</div>
</template>
<script setup>
// 使用CSS变量
const serviceColor = 'var(--color-service-personal)';
</script>
```
## 🌈 颜色分类
### 主题色系
- `--color-primary`: 主色调 (#5D7EEB)
- `--color-primary-50``--color-primary-900`: 主色调渐变
- `--color-primary-light`: 浅色变体
- `--color-primary-dark`: 深色变体
### 语义化颜色
- `--color-success`: 成功色 (#07c160)
- `--color-warning`: 警告色 (#ff976a)
- `--color-danger`: 危险色 (#ee0a24)
- `--color-info`: 信息色 (#1989fa)
### 文本颜色
- `--color-text-primary`: 主要文本 (#323233)
- `--color-text-secondary`: 次要文本 (#646566)
- `--color-text-tertiary`: 三级文本 (#969799)
- `--color-text-white`: 白色文本 (#ffffff)
### 背景颜色
- `--color-bg-primary`: 主要背景 (#ffffff)
- `--color-bg-secondary`: 次要背景 (#fafafa)
- `--color-bg-tertiary`: 三级背景 (#f8f8f8)
### 业务特定颜色
- `--color-service-personal`: 个人大数据服务色
- `--color-service-company`: 小微企业服务色
- `--color-service-loan`: 贷前风险服务色
## 🔧 自定义主题
### 修改主色调
1. **更新CSS变量** (`src/assets/colors.css`)
```css
:root {
--color-primary: #your-new-color;
--color-primary-light: rgba(your-rgb, 0.1);
--color-primary-dark: rgba(your-rgb, 0.8);
}
```
2. **更新Vant主题** (`src/assets/vant-theme.css`)
```css
:root {
--van-theme-primary: #your-new-color;
}
```
3. **更新Tailwind配置** (`tailwind.config.js`)
```js
colors: {
primary: {
DEFAULT: '#your-new-color',
// ... 其他变体
}
}
```
### 添加新颜色
`src/assets/colors.css` 中添加:
```css
:root {
--color-custom: #your-color;
--color-custom-light: rgba(your-rgb, 0.1);
}
```
## 📱 响应式颜色
```css
/* 移动端特定颜色 */
@media (max-width: 768px) {
.text-primary-mobile {
color: var(--color-primary) !important;
}
}
```
## 🌙 暗色主题
项目支持暗色主题自动切换:
```css
@media (prefers-color-scheme: dark) {
:root {
--color-text-primary: #ffffff;
--color-bg-primary: #1a1a1a;
/* ... 其他暗色变量 */
}
}
```
## ✅ 最佳实践
### 推荐做法
- ✅ 使用CSS变量而不是硬编码颜色
- ✅ 使用语义化的颜色名称
- ✅ 使用Tailwind类名进行快速开发
- ✅ 保持颜色命名的一致性
### 避免做法
- ❌ 硬编码颜色值 (`color: #5D7EEB`)
- ❌ 使用任意值 (`bg-[#5D7EEB]`)
- ❌ 混合使用不同的颜色管理方式
- ❌ 忽略颜色对比度和可访问性
## 🔍 调试工具
### 浏览器开发者工具
1. 打开开发者工具
2. 在Elements面板中查看CSS变量
3. 在Computed面板中查看最终计算值
### 颜色检查工具
- [WebAIM Contrast Checker](https://webaim.org/resources/contrastchecker/)
- [Coolors](https://coolors.co/) - 颜色搭配工具
## 📚 相关文档
- [VANT_THEME_CONFIG.md](./VANT_THEME_CONFIG.md) - Vant主题配置说明
- [Tailwind CSS Colors](https://tailwindcss.com/docs/customizing-colors)
- [CSS Custom Properties](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties)

29
README.md Normal file
View File

@@ -0,0 +1,29 @@
# hm-website
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
## Customize configuration
See [Vite Configuration Reference](https://vite.dev/config/).
## Project Setup
```sh
pnpm install
```
### Compile and Hot-Reload for Development
```sh
pnpm dev
```
### Compile and Minify for Production
```sh
pnpm build
```

137
VANT_THEME_CONFIG.md Normal file
View File

@@ -0,0 +1,137 @@
# Vant 主题色配置说明
## 概述
本项目已配置 Vant UI 组件库的主题色为 `#5D7EEB`,所有相关组件都会使用这个颜色作为主色调。
## 配置文件位置
- 主题配置文件:`src/assets/vant-theme.css`
- 统一颜色变量:`src/assets/colors.css`
- 主样式文件:`src/assets/main.css`(已导入主题配置)
- Tailwind配置`tailwind.config.js`
## 配置方法
### 方法一CSS 变量覆盖(推荐)
```css
:root {
--van-primary-color: #5D7EEB;
}
```
### 方法二:直接覆盖组件样式
```css
.van-button--primary {
background-color: #5D7EEB !important;
border-color: #5D7EEB !important;
}
```
### 方法三使用Tailwind类名
```html
<button class="bg-primary text-white">按钮</button>
```
## 已配置的组件
以下组件已经配置为主题色 `#5D7EEB`
### 基础组件
- ✅ 按钮 (Button) - 主要按钮
- ✅ 开关 (Switch) - 开启状态
- ✅ 复选框 (Checkbox) - 选中状态
- ✅ 单选框 (Radio) - 选中状态
- ✅ 滑动条 (Slider) - 进度条和按钮
- ✅ 进度条 (Progress) - 进度填充
- ✅ 评分 (Rate) - 已评分星星
- ✅ 步进器 (Stepper) - 加减按钮
- ✅ 标签 (Tag) - 主要类型标签
- ✅ 徽章 (Badge) - 主要类型徽章
### 导航组件
- ✅ 导航栏 (NavBar) - 背景色
- ✅ 标签栏 (Tabbar) - 激活状态
- ✅ 步骤条 (Steps) - 激活步骤
- ✅ 侧边栏 (Sidebar) - 选中项
### 反馈组件
- ✅ 通知栏 (NoticeBar) - 主要类型
- ✅ 轮播图 (Swipe) - 指示器
- ✅ 加载 (Loading) - 加载动画
- ✅ 弹窗 (Dialog) - 标题栏
### 表单组件
- ✅ 选择器 (Picker) - 确认按钮
- ✅ 日期选择器 (DatetimePicker) - 确认按钮
- ✅ 地区选择器 (Area) - 确认按钮
- ✅ 搜索 (Search) - 操作按钮
- ✅ 日历 (Calendar) - 选中日期
- ✅ 时间选择器 (TimePicker) - 确认按钮
- ✅ 密码输入框 (PasswordInput) - 聚焦边框
### 业务组件
- ✅ 商品卡片 (Card) - 价格颜色
- ✅ 优惠券 (Coupon) - 折扣颜色
- ✅ 地址编辑 (AddressEdit) - 默认地址
- ✅ 商品规格选择器 (Sku) - 选中项
- ✅ 购物车 (SubmitBar) - 价格颜色
- ✅ 提交订单栏 (SubmitBar) - 主要按钮
- ✅ 联系人列表 (ContactList) - 选中项
- ✅ 树形选择器 (TreeSelect) - 选中项
## 测试页面
可以通过访问 `/example` 路由来查看主题色配置效果,该页面展示了各种 Vant 组件的主题色应用情况。
## 自定义主题色
如果需要修改主题色,只需要:
1. 修改 `src/assets/vant-theme.css` 文件中的颜色值
2. 修改 `src/assets/colors.css` 文件中的 `--color-primary` 变量
3. 修改 `tailwind.config.js` 中的 primary 颜色配置
4. 将所有的 `#5D7EEB` 替换为新的颜色值
## 颜色管理规范
### 1. 使用CSS变量
```css
/* 推荐使用CSS变量 */
color: var(--color-primary);
background-color: var(--color-bg-primary);
/* 不推荐:硬编码颜色 */
color: #5D7EEB;
background-color: #ffffff;
```
### 2. 使用Tailwind类名
```html
<!-- 推荐使用Tailwind类名 -->
<div class="bg-primary text-white">内容</div>
<!-- 不推荐:使用任意值 -->
<div class="bg-[#5D7EEB] text-[#ffffff]">内容</div>
```
### 3. 颜色命名规范
- `--color-primary`: 主色调
- `--color-success`: 成功色
- `--color-warning`: 警告色
- `--color-danger`: 危险色
- `--color-text-*`: 文本颜色
- `--color-bg-*`: 背景颜色
- `--color-border-*`: 边框颜色
## 注意事项
1. 使用了 `!important` 来确保样式优先级
2. 配置了激活状态的半透明效果 `rgba(93, 126, 235, 0.8)`
3. 部分组件配置了悬停和聚焦状态的颜色
4. 所有配置都基于 Vant 4.x 版本
5. 支持暗色主题自动切换
6. 提供了完整的颜色变量系统,便于维护和扩展
## 参考文档
- [Vant 主题定制官方文档](https://vant-ui.github.io/vant-weapp/#/theme)
- [Vant 样式变量参考](https://github.com/youzan/vant-weapp/blob/dev/packages/common/style/var.less)

5007
example.json Normal file

File diff suppressed because it is too large Load Diff

187
index.html Normal file
View File

@@ -0,0 +1,187 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=3, user-scalable=no"
/>
<!-- 基础SEO信息 -->
<title>
天远助手|大数据风险报告查询与代理平台,支持个人和企业多场景风控应用
</title>
<meta
name="description"
content="天远助手,专业大数据风险报告查询与代理平台,支持个人信用查询、小微企业风控、贷前风险背调等多场景报告应用,免费开通代理权限,助力高效识别信用与风险。"
/>
<meta
name="keywords"
content="大数据风险报告查询、大数据风险评估、大数据分析报告、个人大数据风险查询、小微企业风险、贷前风险背调、代理管理平台、免费开通代理、风险管控平台、信用风险分析、企业风险报告、贷前信用审核、失信人名单查询、被执行人信息、信用黑名单查询"
/>
<meta name="author" content="天远助手" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<meta name="baidu-site-verification" content="" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.zhinengcha.cn/" />
<meta property="og:title" content="天远助手|大数据风险报告查询与代理平台,支持个人和企业多场景风控应用" />
<meta property="og:description" content="天远助手,专业大数据风险报告查询与代理平台,支持个人信用查询、小微企业风控、贷前风险背调等多场景报告应用,免费开通代理权限,助力高效识别信用与风险。" />
<meta property="og:site_name" content="天远助手" />
<meta property="og:locale" content="zh_CN" />
<!-- Twitter -->
<meta property="twitter:card" content="summary" />
<meta property="twitter:url" content="https://www.zhinengcha.cn/" />
<meta property="twitter:title" content="天远助手|大数据风险报告查询与代理平台,支持个人和企业多场景风控应用" />
<meta property="twitter:description" content="天远助手,专业大数据风险报告查询与代理平台,支持个人信用查询、小微企业风控、贷前风险背调等多场景报告应用,免费开通代理权限,助力高效识别信用与风险。" />
<!-- 其他重要meta标签 -->
<meta name="theme-color" content="#3498db" />
<meta name="msapplication-TileColor" content="#3498db" />
<meta name="application-name" content="天远助手" />
<meta name="apple-mobile-web-app-title" content="天远助手" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- 结构化数据 -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "天远助手",
"url": "https://www.zhinengcha.cn/",
"description": "专业大数据风险报告查询与代理平台,支持个人信用查询、小微企业风控、贷前风险背调等多场景报告应用",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.zhinengcha.cn/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "天远助手",
"url": "https://www.zhinengcha.cn/",
"description": "专业大数据风险报告查询与代理平台,支持个人和企业多场景风控应用"
}
</script>
<script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
<script>
window.jWeixin = window.wx;
delete window.wx;
</script>
<!-- 预加载关键资源 -->
<link rel="preconnect" href="https://www.zhinengcha.cn">
<link rel="preconnect" href="https://res.wx.qq.com">
<link rel="dns-prefetch" href="https://www.zhinengcha.cn">
<link rel="dns-prefetch" href="https://res.wx.qq.com">
<style>
/* 基础样式 */
html {
font-size: 16px;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
body {
margin: 0;
padding: 0;
min-width: 320px;
}
/* 确保所有元素在缩放时保持相对位置 */
* {
box-sizing: border-box;
}
/* 防止水平滚动 */
#app {
width: 100%;
max-width: 100vw;
}
/* 响应式字体大小 */
@media screen and (max-width: 480px) {
html {
font-size: 14px;
}
}
@media screen and (min-width: 481px) and (max-width: 768px) {
html {
font-size: 15px;
}
}
/* 加载页面样式 */
#app-loading {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #fff;
z-index: 9999;
font-family: Arial, sans-serif;
color: #666;
}
/* 加载动画 */
.loading-spinner {
width: 50px;
height: 50px;
border: 5px solid #ccc;
border-top: 5px solid #3498db;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 16px;
/* 与文字的间距 */
}
/* 文字样式 */
.loading-text {
font-size: 16px;
color: #666;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="app-loading">
<div class="loading-spinner"></div>
<div class="loading-text">加载中</div>
</div>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>

8
jsconfig.json Normal file
View File

@@ -0,0 +1,8 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 KiB

41
package.json Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "hm-website",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@vant/area-data": "^2.0.0",
"@vueuse/core": "^11.3.0",
"axios": "^1.7.7",
"crypto-js": "^4.2.0",
"echarts": "^5.5.1",
"lodash": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.2.6",
"qrcode": "^1.5.4",
"vant": "^4.9.9",
"vue": "^3.5.12",
"vue-echarts": "^7.0.3",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@vant/auto-import-resolver": "^1.2.1",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"sass-embedded": "^1.81.0",
"tailwindcss": "^3.4.15",
"terser": "^5.43.1",
"unplugin-auto-import": "^0.18.5",
"unplugin-vue-components": "^0.27.5",
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
},
"packageManager": "pnpm@10.9.0+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f"
}

3394
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

6
postcss.config.js Normal file
View File

@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

BIN
public/image/help/13.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

BIN
public/image/help/14.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

BIN
public/image/help/15.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 KiB

BIN
public/image/help/18.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 864 KiB

BIN
public/image/help/19.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 619 KiB

BIN
public/image/help/20.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 KiB

BIN
public/image/help/21.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 719 KiB

BIN
public/image/help/22.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 878 KiB

BIN
public/image/help/23.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 929 KiB

BIN
public/image/help/24.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 KiB

BIN
public/image/help/25.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 886 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 367 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 940 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 257 KiB

BIN
public/image/shot_nonal.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
public/image/shot_svip.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
public/image/shot_vip.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754404619413" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9425" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M256.8 67.7H319v892.5h-62.2zM64.7 67.7h62.2v892.5H64.7zM896.1 67.7h62.2v892.5h-62.2zM704 67.7h62.2v892.5H704z" fill="#981f3c" p-id="9426"></path><path d="M860 690c-33.7-95.2-108.9-167.4-201.9-193.9v-90.5c5-0.8 9.5-3.2 13-6.9 4.4-4.5 6.8-10.9 6.8-17.3V326c0-96.7-74.3-175.5-166.2-175.5-92.9 0-168.3 79.8-168.3 177.7v53.2c0 12.1 8.4 22.3 19.8 24.2v91.3c-127.3 37-217.6 159.9-217.6 299.9v139c0 13.5 10.9 24.5 23.6 24.5H476V715.4c-72.7-14.4-131.8-73.8-147.1-152.5 11.8-6.2 24-11.5 36.4-15.7 13.5 71.3 73.5 125.4 145.2 125.4 72 0 132.2-54.4 145.2-126.3 12.4 4.1 24.5 9.2 36.1 15.2-15.3 81.5-77.5 142.7-153.5 155v243.7h316.4c12.7 0 23.6-10.9 23.6-24.5v-139c-0.1-36.4-6.3-72.5-18.3-106.7zM511.7 199.1c48.6 0 90.6 31.1 109.4 74.6H400.8c19.5-43.5 61.8-74.6 110.9-74.6zM631.4 326v30.9H389.9v-28.7c0-1.8-0.4-3.8-0.3-5.6h242.3c-0.1 0.9-0.5 2.3-0.5 3.4z" fill="#981f3c" p-id="9427"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1,6 @@
<?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 t="1754333494410" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="52011" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
<path d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z" fill="#999999" p-id="52012"></path>
<path d="M512 336c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176z" fill="#999999" p-id="52013"></path>
</svg>

After

Width:  |  Height:  |  Size: 695 B

View File

@@ -0,0 +1 @@
<?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 t="1754333257044" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="22517" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M706.816 399.104a219.6736 219.6736 0 0 1 38.7584 125.2352 219.904 219.904 0 0 1-64.6656 156.3648 219.2128 219.2128 0 0 1-156.1088 64.768c-59.008 0-114.4576-23.04-156.1088-64.768a219.904 219.904 0 0 1-64.6656-156.3648 219.904 219.904 0 0 1 64.6656-156.3648 219.2128 219.2128 0 0 1 137.9328-64.0512L500.736 230.4C349.3888 242.6112 230.4 369.5872 230.4 524.3392 230.4 687.1552 362.24 819.2 524.8 819.2S819.2 687.1552 819.2 524.3392c0-62.0032-19.0976-119.3728-51.6608-166.8352l-60.7488 41.5744z" fill="#1492FF" p-id="22518"></path><path d="M497.4592 1.28v486.8352c-20.2752 0-36.6592 16.768-36.6592 37.5296 0 20.7872 16.384 37.5552 36.6592 37.5552 20.3008 0 36.6848-16.768 36.6848-37.5552 0-9.0368-3.0976-17.2288-8.2688-23.68L895.3088 195.4816l0.4608-0.4864c0.128 0 0.128-0.1024 0.2304-0.1024C802.1504 76.032 658.688 0 497.8176 0h-0.3584v1.28z" fill="#1492FF" p-id="22519"></path><path d="M934.656 221.7728l-0.4608 0.4608c-0.1024 0-0.1024 0.128-0.2304 0.128l-59.648 41.0624c16.3584 24.0896 30.464 49.664 41.7792 76.7744a436.224 436.224 0 0 1 34.4832 170.9312c0 59.3152-11.5712 116.9152-34.4832 170.9568a436.736 436.736 0 0 1-94.0288 139.648 438.4512 438.4512 0 0 1-139.392 94.208A434.2272 434.2272 0 0 1 512 950.4256c-59.2128 0-116.736-11.5712-170.6752-34.5344a435.9168 435.9168 0 0 1-139.392-94.208 439.2704 439.2704 0 0 1-94.0288-139.6224 436.224 436.224 0 0 1-34.4832-170.9568c0-59.3152 11.5712-116.9152 34.4832-170.9312a436.736 436.736 0 0 1 94.0288-139.648 438.4512 438.4512 0 0 1 139.392-94.208 432.8448 432.8448 0 0 1 135.6288-33.152L471.2192 1.28 471.1168 0C207.4368 20.7616 0 241.6384 0 511.1296 0 794.2912 229.1968 1024 512 1024s512-229.5808 512-512.8704a511.488 511.488 0 0 0-89.344-289.3568z" fill="#1492FF" p-id="22520"></path></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754333494410" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="52011" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M512.7 42.8v58.5c21.2 0 42.7 1.7 63.8 4.9 109.7 16.9 206.2 75.5 271.8 165 65.6 89.5 92.4 199.2 75.5 308.9-31 200.8-207.2 352.2-410 352.2-21.2 0-42.7-1.7-63.9-4.9-226.4-35-382.2-247.5-347.3-474 31-200.8 207.2-352.2 410-352.2l0.1-58.4m-0.1 0c-229.9 0-431.7 167.6-467.8 401.8C5 703.2 182.3 945.2 441 985.1c24.5 3.8 48.8 5.6 72.8 5.6 229.9 0 431.7-167.6 467.8-401.8 39.9-258.7-137.5-500.7-396.2-540.6-24.5-3.7-48.8-5.5-72.8-5.5z" fill="#e5a716" p-id="52012"></path><path d="M811.4 571c-1.1 0-2.2-0.1-3.3-0.2-16-1.8-27.6-16.3-25.8-32.3C798.2 397.3 700.5 269.7 560 248c-35.2-5.4-59.8-5.2-87.7 0.9-15.8 3.5-31.3-6.6-34.8-22.3s6.6-31.3 22.3-34.8c35.1-7.7 66.7-8.1 109.1-1.6 171.7 26.5 291 182.3 271.6 354.8-1.7 15-14.4 26-29.1 26zM203.4 558.1c-16.2 0-29.3-13.1-29.2-29.3 0-14.8 1.1-45.2 4-63.7 13.2-85.4 50.9-154.4 112.1-205.2 12.4-10.3 30.9-8.6 41.2 3.9 10.3 12.4 8.6 30.9-3.9 41.2-49.9 41.3-80.7 98.2-91.6 169.1-2 13-3.3 38.6-3.3 54.9-0.1 16-13.2 29.1-29.3 29.1z" fill="#e5a716" p-id="52013"></path><path d="M513.1 489.8c1.4 0 2.8 0.1 4.2 0.3 9.6 1.5 15.1 7.3 17.6 10.7 2.5 3.4 6.4 10.4 4.9 20-2 13-13.4 22.8-26.5 22.8-1.4 0-2.8-0.1-4.2-0.3-14.7-2.3-24.7-16-22.5-30.7 2-13 13.4-22.8 26.5-22.8m0-58.4c-41.4 0-77.7 30.2-84.3 72.4-7.2 46.6 24.8 90.2 71.4 97.4 4.4 0.7 8.8 1 13.1 1 41.4 0 77.7-30.2 84.3-72.4 7.2-46.6-24.8-90.2-71.4-97.4-4.4-0.7-8.8-1-13.1-1z" fill="#e5a716" p-id="52014"></path><path d="M472.2 464.7c-11 0-21.5-6.2-26.5-16.9L357 257.9c-6.8-14.6-0.5-32 14.1-38.9 14.6-6.8 32.1-0.5 38.9 14.1L498.7 423c6.8 14.6 0.5 32-14.1 38.9-4 1.9-8.2 2.8-12.4 2.8z" fill="#e5a716" p-id="52015"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754333291816" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="26157" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M980.992 713.045333L927.914667 512c-4.608-56.32-47.957333-87.722667-100.010667-87.722667H618.496a96.256 96.256 0 0 0-100.181333 99.328 96.597333 96.597333 0 0 0-100.522667-99.328H204.8c-51.2 0-94.549333 29.525333-99.157333 85.333334L55.125333 706.901333c-5.632 66.901333 37.546667 130.901333 98.474667 130.901334h58.197333v132.266666h612.864v-132.266666h57.685334c61.781333 0 104.277333-57.856 98.645333-124.757334z m-302.421333 49.322667c-39.765333 62.634667-139.434667 139.946667-143.530667 143.018667a25.770667 25.770667 0 0 1-17.066667 5.973333 26.624 26.624 0 0 1-17.066666-5.973333c-4.096-3.413333-103.594667-80.384-143.530667-143.018667a158.037333 158.037333 0 0 1-31.402667-88.576c0-66.389333 49.664-120.490667 110.421334-120.490667a107.690667 107.690667 0 0 1 81.578666 38.912 105.642667 105.642667 0 0 1 81.408-38.912c60.928 0 110.250667 54.101333 110.250667 120.490667a155.136 155.136 0 0 1-31.061333 88.576zM303.274667 347.648a153.6 153.6 0 0 0 148.821333-148.821333 153.6 153.6 0 0 0-148.821333-148.992A153.6 153.6 0 0 0 153.6 198.826667a153.6 153.6 0 0 0 149.674667 148.821333zM716.8 347.648a153.6 153.6 0 0 0 148.821333-148.821333A153.6 153.6 0 0 0 716.8 49.834667a153.6 153.6 0 0 0-148.992 148.992A153.6 153.6 0 0 0 716.8 347.648z" fill="#E9575C" opacity=".9" p-id="26158"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754333373798" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="36788" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M839.21 64.19H184.79A120.59 120.59 0 0 0 64.2 184.79v654.42a120.6 120.6 0 0 0 120.59 120.6H514V936.9L487.12 807q-5-24.15-17.49-75.71l-7.05-29.12 16.73-24.86c30.29-45.11 55.69-98.51 75.3-158.77l20.62-63.22 63.69 19.15 13 3.9v-5.94h194.35v0.44H959.8V184.79a120.59 120.59 0 0 0-120.59-120.6zM462.42 415.75H462l-95.62-1.17-0.38 39.17 50.7 1a30 30 0 0 1-0.59 59.9h-0.58l-50.26-1-0.58 47.91a30 30 0 0 1-30 29.6h-0.35a29.94 29.94 0 0 1-29.6-30.3l0.58-48.35-49.87-1a30 30 0 0 1 0.59-59.91h0.58l49.44 1 0.47-38.76-96.86-1.19a30 30 0 0 1 0.38-59.9h0.38l96.82 1.18 0.32-25.54-86.08-86.07A30 30 0 1 1 263.84 200l72.39 72.4 72.4-72.4A30 30 0 1 1 451 242.32l-83.5 83.48-0.35 28.88 95.65 1.17a30 30 0 0 1-0.38 59.9z" fill="#13227a" p-id="36789"></path><path d="M619.31 539.64l57 17.13a848.9 848.9 0 0 1-36.83 93.59v307.73h-57.43V753.15q-13.5 20.34-28.27 40-5.14-24.84-18-78 50.98-75.72 83.53-175.51z m37.26 133.63H720v-38.55h-46.3v-46.25H720v-48h58.2v48H839v-47.54h58.25v47.54h53.11v46.25h-53.09v38.55h62.53v46.26H656.57zM679.7 959.8V742.65h257.83v216.29h-58.25v-20.13H738v21z m199.58-170.89H738v29.55h141.28zM738 892.56h141.28V863H738z m40.2-219.29H839v-38.55h-60.8z" fill="#13227a" p-id="36790"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754333328691" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="34433" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M795.5 733.3h-55.3c-15.3 0-27.7-12.4-27.7-27.7 0-15.3 12.4-27.7 27.7-27.7H769l-37.5-42.6c-9.1-10.4-8.9-26 0.6-36.1 4.3-4.6 10.3-7.1 16.5-7 6.2 0.1 12.2 2.8 16.3 7.6l57.6 65.5c0.3 0.3 0.5 0.6 0.7 0.9 0.2-0.3 0.5-0.6 0.7-0.9l57.6-65.5c4.1-4.7 10-7.4 16.3-7.5 6.3-0.1 12.3 2.4 16.5 7 9.5 10.1 9.7 25.7 0.6 36.1L877.4 678h28.8c15.3 0 27.7 12.4 27.7 27.7 0 15.3-12.4 27.7-27.7 27.7h-55.3v55.3h55.3c15.3 0 27.7 12.4 27.7 27.7 0 15.3-12.4 27.7-27.7 27.7h-55.3V913c0 15.3-12.4 27.7-27.7 27.7-15.3 0-27.7-12.4-27.7-27.7v-69.1h-55.3c-15.3 0-27.7-12.4-27.7-27.7 0-15.3 12.4-27.7 27.7-27.7h55.3v-55.2z m0 0" fill="#df3a62" p-id="34434"></path><path d="M645.5 940.7H225c-9.2 0-13.8-4.6-13.8-13.8 0-9.2 4.6-13.8 13.8-13.8h394.5c-19.9-24.4-35.5-52.4-45.7-83H225c-9.2 0-13.8-4.6-13.8-13.8 0-9.2 4.6-13.8 13.8-13.8h341.3c-3.8-17.8-5.9-36.3-5.9-55.3 0-9.3 0.5-18.6 1.4-27.7H225c-9.2 0-13.8-4.6-13.8-13.8 0-9.2 4.6-13.8 13.8-13.8h341.3c9.3-43.3 29.3-82.7 57.1-115.2H493.7c-24.3 0-45.6-0.7-64-2.3-16.6-1.2-33.1-4.1-49.2-8.5-13.4-3.7-26.1-9.6-37.6-17.4-11.4-8.1-21.5-18-30-29.2-6.3 12.7-14.7 24.2-24.8 34.1-10.8 10.8-25.4 21.8-43.8 33-14.7 8.9-24.8 7.9-30.2-3-2.7-4.8-3.5-10.3-2.3-15.7 1.2-4.9 6.1-9.8 14.6-14.6 20.8-11.6 35.9-25.3 45.4-41.2 9.4-15.9 14.1-30.8 14.1-44.8V307.6c0-4.8-2-7.2-6.2-7.2h-47.6c-7.5 0-12.6-1.6-15.1-4.9-2.5-3.2-3.8-8.1-3.8-14.6s1.3-11.3 3.8-14.4c2.6-3 7.6-4.6 15.1-4.6h55.8c14.3 0 24 3.7 28.9 11 5 7.3 7.4 19.6 7.4 36.6v149.1c6.1 16 13.2 29.1 21.3 39.2 8 10.1 18.3 18 31 23.8 12.6 5.8 28.4 9.8 47.1 12 18.8 2.2 42.2 3.3 70.2 3.3h171.5c44-33.1 98.6-52.7 157.9-52.7V124.8c0-73.8-36.9-110.6-110.6-110.6H200.8C127.1 14.2 90.2 51 90.2 124.8v774.4c0 73.8 36.9 110.6 110.6 110.6h511.7c18.8 0 35.2-2.4 49.3-7.2-44.1-10.5-83.9-32.2-116.3-61.9z m-286-777.3c3.1-3.6 7.7-5.4 13.8-5.4h113.2v-40c0-6.8 1.9-11.8 5.6-14.9 3.9-3.1 8.8-4.8 13.8-4.6 6.2 0 11 1.4 14.6 4.3 3.6 2.9 5.4 8 5.4 15.1V158h140.3c6.2 0 10.8 1.8 13.9 5.4 3.1 3.6 4.6 7.9 4.6 13.1 0 5.8-1.4 10.3-4.1 13.6-2.8 3.3-7.5 4.9-14.4 4.9H526v48h125c6.5 0 11.3 1.8 14.3 5.4 3.1 3.6 4.6 7.7 4.6 12.6 0 5.8-1.5 10.4-4.4 13.8-2.9 3.4-7.7 5.1-14.6 5.1H526v51.2h105c10.6 0 19.3 1 26.1 3.1 6.4 1.8 12 5.9 15.6 11.5 3.6 5.6 6 13.5 7.2 23.6 1.2 10.1 1.6 23.2 1.3 39.2-0.3 20.2-3.1 36.5-8.5 48.9-5.3 12.5-12.8 21.8-22.5 27.9-9.7 6.1-21.6 9.2-35.6 9.2s-29.9-2.6-47.6-7.7c-4.1-1.1-8-2.8-11.5-5.1-2.5-1.6-4.6-3.8-6.1-6.4-1.2-2.1-1.8-4.5-1.8-6.9 0-2.4 0.3-4.6 1-6.6 2.4-7.5 5.7-12.1 10-13.8 4.3-1.7 10.2-1.5 17.7 0.5 12 3.4 22 5.6 30.2 6.6s14.9 0.2 20-2.5 9-7.7 11.5-15.1c2.6-7.4 4.2-17.9 4.9-31.5 0.7-15.4-0.4-25.4-3.3-30.2-2.9-4.8-9.5-7.2-19.8-7.2H526V512c0 6.8-1.8 11.8-5.4 14.9-3.6 3-8.4 4.6-14.6 4.6-5 0.2-10-1.6-13.8-4.8-3.8-3.3-5.6-8.1-5.6-14.6V368.5h-123c-7.9 0-13.1-1.3-15.9-3.8-2.7-2.5-4.1-7.6-4.1-15.1 0-6.8 1.5-11.6 4.6-14.4 3.1-2.7 8.2-4.1 15.4-4.1h123v-51.2h-98.4c-6.8 0-11.7-1.7-14.6-5.1-2.9-3.4-4.3-8-4.3-13.8 0-4.8 1.5-9 4.6-12.6 3-3.6 7.9-5.4 14.3-5.4h98.4v-48.1H373.3c-6.8 0-11.6-1.7-14.4-4.9-2.7-3.2-4.1-7.7-4.1-13.6 0.1-5.1 1.6-9.4 4.7-13z m-118.9-43.3c3.8-4.8 8.1-7.2 13.1-7.4 5-0.2 11.2 2.7 18.7 8.5 13.7 10.9 26.7 22.3 39.2 34.1 12.5 11.8 23.3 23.1 32.5 34 5.8 6.5 8.8 12.1 9 16.7 0.2 4.6-1.9 9.1-6.4 13.6-4.8 4.8-9.9 6.8-15.4 5.9-5.5-0.8-11.6-5.2-18.5-13-9.4-11.2-19.5-21.8-30.2-31.8-11.1-10.5-22.8-20.4-34.9-29.7-7.2-5.8-11.1-11.2-11.8-16.1-0.6-5.2 1-10 4.7-14.8z" fill="#df3a62" p-id="34435"></path></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754333237372" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21534" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M495.872 607.744C328.32 607.744 192 471.424 192 303.872 192 136.32 328.32 0 495.872 0c167.552 0 303.872 136.32 303.872 303.872 0 167.552-136.32 303.872-303.872 303.872z m0-80c-123.424 0-223.872-100.448-223.872-223.872C272 180.48 372.448 80 495.872 80c123.424 0 223.872 100.448 223.872 223.872 0 123.424-100.448 223.872-223.872 223.872z m0 32c141.12 0 255.872-114.752 255.872-255.872S636.96 48 495.872 48C354.752 48 240 162.784 240 303.872c0 141.12 114.784 255.872 255.872 255.872z m-8.416-100.128h53.728c-2.176-14.528-2.912-26.144-2.912-46.816v-24.672H592c15.968 0 25.76 0.704 38.08 2.88v-41.344a198.4 198.4 0 0 1-38.08 2.88H538.24v-10.528l11.968-18.88h42.464c16 0 25.76 0.736 38.112 2.912V284.672c-11.968 2.176-21.76 2.912-38.08 2.912h-20.352l50.08-79.84c6.528-10.56 21.056-31.232 25.792-37.376h-62.816c-2.88 9.792-7.264 18.88-17.408 35.904l-53.728 91.84-53.696-92.16c-10.176-17.088-14.176-25.056-17.44-35.584H380.8c5.44 6.88 14.88 21.024 25.376 37.376l50.464 79.84h-20.32c-16.704 0-26.144-0.736-38.112-2.88v41.344c12.352-2.176 21.44-2.88 38.112-2.88h42.112l11.968 18.496v10.88H435.52c-16.704 0-25.408-0.736-38.08-2.88v41.344c12.32-2.176 21.76-2.88 38.08-2.88h54.816v24.64c0 17.824-1.088 32.704-2.88 46.848z" fill="#F18406" p-id="21535"></path><path d="M526.016 1023.488c-25.568 0-52.64-7.072-82.752-21.696-21.696-10.496-90.368-46.016-140.512-72l-1.216-0.576-39.008-20.16c-14.08-7.264-24.064-10.624-31.36-10.624-7.136 0-14.848 3.2-28.48 11.872L137.28 952.8a12.96 12.96 0 0 1-18.752-5.504l-116.16-257.824a12.928 12.928 0 0 1 6.304-16.96l10.88-5.056c11.84-5.504 116.96-54.304 168.096-74.464 27.84-10.976 52.736-16.32 76.096-16.32 45.024 0 75.328 19.072 107.392 39.264l0.704 0.448 5.952 3.744c19.456 12.16 77.344 54.272 85.44 60.224 7.808 4.288 63.264 34.016 115.84 34.016 42.688 0 76.384 0 100.416 7.2 27.648 8.288 40.544 25.728 40.544 54.912 0 24.768-15.776 43.392-45.6 53.824a159.36 159.36 0 0 1-43.904 8.192h-158.08c-20.096 0-44.48-3.712-72.512-11.04l-55.136-11.456a12.896 12.896 0 0 1-5.984-3.04 245.92 245.92 0 0 1-13.792-13.28l-38.176-40.64a12.896 12.896 0 1 1 14.272-20.736l51.616 21.12c0.704 0.256 71.808 29.056 119.68 29.056h157.6c19.616-0.896 38.816-8.192 40-12.16 0-1.856 0-4.096-0.192-4.96a16.8 16.8 0 0 0-3.776-1.536c-11.808-3.712-39.424-5.44-86.944-5.44-70.272 0-139.136-39.68-142.016-41.376a10.112 10.112 0 0 1-0.512-0.32l-1.088-0.704a12.032 12.032 0 0 1-0.576-0.416c-0.64-0.448-64.928-47.36-83.616-59.04l-5.952-3.744-0.832-0.512c-26.912-16.96-50.176-31.552-80.768-31.552-16.96 0-35.84 4.16-57.76 12.8-36.352 14.336-102.72 44.448-142.912 62.912l83.264 184.832 29.312-19.04c18.752-11.904 35.36-19.808 55.488-19.808 16 0 32.256 4.832 54.272 16.16 9.184 4.704 23.04 11.84 39.104 20.16l0.512 0.32c47.328 24.448 118.848 61.44 140.064 71.744 23.168 11.2 43.104 16.672 60.928 16.672 26.048 0 45.728-12.352 66.56-25.408 5.6-3.52 11.232-7.04 17.12-10.464 36.64-21.12 291.2-189.76 317.824-208.576 28.832-20.352 33.376-32 33.984-36.064 0.288-1.856 0.096-4.352-3.36-8.832-5.184-6.784-12.416-9.92-22.688-9.92-15.232 0-34.72 6.944-57.92 20.672l-24.096 14.24a12.896 12.896 0 0 1-19.136-13.888l6.08-27.296c1.056-4.864 0-7.04-1.088-8.352-2.24-2.816-8.064-5.664-15.968-5.664-22.016 0-39.84 6.72-52.896 19.968l-9.824 9.984a12.864 12.864 0 0 1-19.424-1.28l-8.48-11.136c-11.424-15.04-19.2-18.112-27.328-18.112-12.864 0-33.216 8.736-62.24 26.752-13.248 8.192-28.928 18.144-29.376 18.4a13.024 13.024 0 0 1-8.224 1.312l-54.08-9.312c-5.344-0.96-12.288-5.152-13.216-10.56-0.928-5.344-1.056-2.56 3.68-5.216 0.736-0.416 50.784-35.84 74.88-50.784 34.816-21.6 60.672-21.216 80.8-20.736 2.592 0.064 5.248 0.128 7.776 0.128 18.56 0 34.88 6.24 49.792 19.104 19.424-12.16 42.848-18.56 68.16-18.56 22.528 0 42.56 8.896 54.976 24.384 1.92 2.432 3.68 4.992 5.184 7.68 18.72-7.808 36.192-11.744 51.968-11.744 32.8 0 52 16 62.336 29.44 11.2 14.56 15.68 30.336 13.152 46.784-3.552 23.616-20.896 45.696-54.56 69.44-26.88 19.008-284.48 189.632-321.696 211.072-5.024 2.912-10.08 6.08-15.392 9.408-24.832 15.584-52.864 33.152-93.28 33.152z" fill="#F18406" p-id="21536"></path></svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754404688006" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="14037" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M662.07744 711.43424c-7.70048 0-14.09024-2.62144-19.16928-7.86432-5.07904-5.24288-7.61856-11.63264-7.61856-19.16928V534.7328h202.50624v61.93152c0 5.07904-1.80224 9.4208-5.40672 13.02528-3.60448 3.44064-7.94624 5.16096-13.02528 5.16096h-42.76224l14.49984 25.31328h47.9232v23.83872H804.864l27.27936 47.43168h-38.58432l-27.27936-47.43168h-97.0752v18.67776c0 2.12992 0.73728 3.93216 2.21184 5.40672 1.47456 1.47456 3.2768 2.21184 5.40672 2.21184h14.49984l-9.58464 21.13536h-19.6608z m90.43968-71.2704l-14.7456-25.31328h-68.56704v25.31328h83.31264z m49.152-49.39776c1.6384 0 3.44064-0.49152 5.40672-1.47456 1.96608-1.14688 2.94912-2.37568 2.94912-3.6864v-26.78784h-140.82048v31.9488h132.46464z" fill="#c0c140" p-id="14038"></path><path d="M143.36 128c0-33.93024 27.50976-61.44 61.44-61.44h614.4c33.93024 0 61.44 27.50976 61.44 61.44v227.84a20.48 20.48 0 0 1-40.96 0V128a20.48 20.48 0 0 0-20.48-20.48H204.8a20.48 20.48 0 0 0-20.48 20.48v768a20.48 20.48 0 0 0 20.48 20.48h514.56a20.48 20.48 0 0 1 0 40.96H204.8c-33.93024 0-61.44-27.50976-61.44-61.44V128z" fill="#c0c140" p-id="14039"></path><path d="M337.92 430.08a10.24 10.24 0 0 0-10.24 10.24v348.16a10.24 10.24 0 0 0 10.24 10.24h220.16v40.96H337.92c-28.27776 0-51.2-22.92224-51.2-51.2V440.32c0-28.27776 22.92224-51.2 51.2-51.2h220.16v40.96H337.92z" fill="#c0c140" p-id="14040"></path><path d="M532.48 389.12a40.96 40.96 0 0 1 40.96-40.96h327.68a40.96 40.96 0 0 1 40.96 40.96v471.04a40.96 40.96 0 0 1-40.96 40.96h-327.68a40.96 40.96 0 0 1-40.96-40.96V389.12z m368.64 0h-327.68v471.04h327.68V389.12zM245.76 189.44a20.48 20.48 0 0 1 20.48-20.48h491.52a20.48 20.48 0 0 1 0 40.96H266.24a20.48 20.48 0 0 1-20.48-20.48zM245.76 307.2a20.48 20.48 0 0 1 20.48-20.48h491.52a20.48 20.48 0 0 1 0 40.96H266.24a20.48 20.48 0 0 1-20.48-20.48z" fill="#c0c140" p-id="14041"></path></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754333425555" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="43811" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M490.496 50.176c95.232 0 192 80.896 223.744 186.368 28.16 93.184-6.144 186.88-93.184 255.488-77.312 60.928-161.28 66.048-247.808 15.36-161.792-95.232-157.184-321.024 10.24-422.912 31.744-19.456 65.536-29.696 107.008-34.304 1.536 3.072-1.024-2.56 0 0zM133.12 948.736c-1.024 0-2.048-0.512-3.072-0.512-74.24-15.872-77.824-21.504-54.784-91.648 15.36-47.616 29.696-95.232 46.592-141.824C148.48 640 205.824 601.6 281.6 598.016c88.576-4.608 177.664-2.048 266.752-1.024 30.72 0.512 35.84 10.752 23.04 38.912-3.072 7.168-7.168 13.824-11.264 20.48-51.712 83.456-68.608 172.544-45.056 269.312 9.728 39.936 2.048 47.104-38.4 48.128-20.48 0.512-40.96 0-61.44 0 0.512 0-195.072-15.36-282.112-25.088z m809.984-2.56V548.864l-55.808-37.376-202.752 90.624v70.144l-112.128 38.912v234.496h-11.264v27.648h36.864V727.04l148.992-48.64v294.912h101.888v-30.208h-23.04v-268.8l-53.76-32.768-60.416 20.992v-44.544l146.432-65.024v420.352h102.912v-27.648h-17.92v0.512z m-327.68-155.648l107.52-34.816V709.12l-107.52 37.376v44.032z m0 60.416l107.52-23.04v-46.592l-107.52 27.648v41.984z m0 62.464l107.52-13.824v-46.592l-107.52 16.384v44.032z m0 60.416l107.52-2.56v-46.08l-107.52 4.608v44.032z" fill="#376e3b" p-id="43812"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754404527130" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2421" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M242 272H62A30.01043438 30.01043438 0 0 1 32 242V152C32 85.82260906 85.82260906 32 152 32S272 85.82260906 272 152v90A30.01043438 30.01043438 0 0 1 242 272zM92 212h120V152a60.06260906 60.06260906 0 0 0-60-60 60.06260906 60.06260906 0 0 0-60 60v60zM842 812a29.96869594 29.96869594 0 0 1-30-30V152A60.06260906 60.06260906 0 0 0 752 92 29.98956562 29.98956562 0 1 1 752 32c66.17739094 0 120 53.82260906 120 120v630a29.96869594 29.96869594 0 0 1-30 30zM332 992c-66.17739094 0-120-53.82260906-120-120v-90a29.98956562 29.98956562 0 1 1 60 0V872a60.06260906 60.06260906 0 0 0 60 60 60.06260906 60.06260906 0 0 0 60-60v-90a29.98956562 29.98956562 0 1 1 60 0V872c0 66.17739094-53.82260906 120-120 120zM872 992a29.96869594 29.96869594 0 0 1-30-30A29.96869594 29.96869594 0 0 1 872 932a60.06260906 60.06260906 0 0 0 60-60v-90A29.96869594 29.96869594 0 0 1 962 752 29.96869594 29.96869594 0 0 1 992 782V872C992 938.17739094 938.17739094 992 872 992z" fill="#8c9af0" p-id="2422"></path><path d="M752 92H152a30.01043438 30.01043438 0 0 1 0-60H752a29.98956562 29.98956562 0 1 1 0 60zM872 992H332a29.98956562 29.98956562 0 1 1 0-60H872a29.96869594 29.96869594 0 0 1 30 30A29.96869594 29.96869594 0 0 1 872 992zM242 812a29.98956562 29.98956562 0 0 1-30-30v-540a30.01043438 30.01043438 0 0 1 60 0v540a29.98956562 29.98956562 0 0 1-30 30zM962 812h-540a29.98956562 29.98956562 0 1 1 0-60h540A29.96869594 29.96869594 0 0 1 992 782a29.96869594 29.96869594 0 0 1-30 30zM722 433.73913031h-360a30.01043438 30.01043438 0 0 1 0-60h360a29.98956562 29.98956562 0 1 1 0 60zM722 553.73913031h-360a30.01043438 30.01043438 0 0 1 0-60h360a29.98956562 29.98956562 0 1 1 0 60zM542 673.73913031h-180a29.98956562 29.98956562 0 1 1 0-60h180a29.96869594 29.96869594 0 0 1 30 30 29.96869594 29.96869594 0 0 1-30 30zM474.12173937 231.82608687h-48.20869593c10.37217375 17.09217375 27.4643475 28.63304344 53.1756525 33.74608688-4.82086969 4.67478281-11.24869594 14.17043438-14.31652219 20.30608688-27.61043438-7.3043475-44.55652219-21.18260906-56.38956469-42.21913032-9.05739094 17.53043437-25.85739094 32.72347781-56.97391312 41.78086969-2.48347781-5.25913031-9.05739094-14.46260906-13.58608688-18.69913031 28.04869594-7.59652219 42.80347781-20.45217375 50.4-34.91478281H341.18260906v-21.47478282h53.61391313c0.73043437-5.40521719 1.02260906-10.95652219 1.02260812-16.21565156v-3.65217469h-25.56521719c-3.36 6.42782625-6.86608688 12.27130406-10.51826062 16.94608782-4.67478281-3.50608687-15.04695656-8.91130406-20.59826156-11.39478282 10.22608688-10.81043437 18.40695656-29.36347781 22.64347875-47.47826062l22.64347781 4.82086875c-1.31478281 5.25913031-2.92173937 10.37217375-4.82086969 15.48521812h16.2156525V147.0956525h22.35130407v21.76695656h43.24173937v21.62086875h-43.24173937v3.79826156c0 5.25913031-0.14608688 10.6643475-0.73043438 16.06956469h56.68173937v21.47478281z m39.15130407-84.14608687l18.84521718 5.84347781c-2.7756525 7.88869594-6.1356525 16.06956562-9.93391312 23.95826157v108.83478281h-19.28347781v-75.81913125c-2.92173937 4.09043438-5.84347781 7.88869594-8.91130406 11.24869594-1.75304344-4.82086969-7.15826062-16.06956562-10.51826157-21.03652125 11.83304344-12.8556525 23.22782625-33.0156525 29.80173938-53.02956563z m82.10086969 104.45217375h-43.0956525v12.8556525h43.0956525v-12.8556525z m-60.91826063 33.30782625V235.47826063h79.47130406v49.52347874H595.37391313v-3.36h-43.09565251v3.79826063h-17.82260812z m2.33739094-55.80521719v-16.36173937h75.08869594v16.36173937h-75.08869594z m75.08869594-37.98260906v16.36173938h-75.08869594V191.65217375h75.08869594z m-30.82434844-22.49739094h41.05043531v16.94608688H526.71304344v-16.94608688h40.61217375a177.39130406 177.39130406 0 0 0-8.03478282-15.77739187l17.82260907-6.86608688c3.9443475 6.1356525 8.47304344 14.31652219 10.6643475 19.72173938l-6.72 2.92173937z m104.30608687-22.05913031h24.54260907a431.50956562 431.50956562 0 0 1-1.16869594 24.39652125c2.19130406 20.7443475 11.39478281 72.31304344 61.94086969 94.81043531-6.57391312 5.11304344-12.56347781 12.41739094-15.63130407 18.40695657-30.67826063-14.75478281-47.04-40.46608688-55.95130406-64.27826157-8.32695656 23.95826063-23.66608687 48.06260906-51.56869594 65.30086969-3.79826063-5.69739094-10.6643475-12.56347781-17.82260906-17.3843475 58.72695656-32.57739094 54.92869594-94.95652219 55.65913031-121.25217375z" fill="#8c9af0" p-id="2423"></path></svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754333216843" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="20490" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M12 12m500 0l0 0q500 0 500 500l0 0q0 500-500 500l0 0q-500 0-500-500l0 0q0-500 500-500Z" fill="#DEE5EC" p-id="20491"></path><path d="M514 351.56c48.84 0 88.81 39.95 88.81 88.8v266.41c0 48.84-40 88.8-88.81 88.8a89.06 89.06 0 0 1-88.8-88.8V440.36a89.05 89.05 0 0 1 88.8-88.8z m0 0" fill="#005EB8" p-id="20492"></path><path d="M678.52 871.72h-329a11 11 0 0 1-11.11-11.1V247.88a11 11 0 0 1 11.11-11.11h329a11 11 0 0 1 11.1 11.11v612.74a11 11 0 0 1-11.1 11.1z m-317.92-22.2h306.81V259H360.6z m0 0" fill="#0D1633" p-id="20493"></path><path d="M604.38 259H423.66a11 11 0 0 1-11.1-11.09v-76.4a11 11 0 0 1 11.1-11.1h180.72a11 11 0 0 1 11.09 11.1v76.37A11 11 0 0 1 604.38 259z m-169.62-22.2h158.52v-54.19H434.76z m-85.25 635H185a11 11 0 0 1-11.09-11.1V394.4A11 11 0 0 1 185 383.3h164.51a11 11 0 0 1 11.09 11.1v466.22a11 11 0 0 1-11.09 11.1z m-153.42-22.2H338.4v-444H196.09zM843 871.72H678.52a11 11 0 0 1-11.1-11.1V394.4a11 11 0 0 1 11.1-11.1H843a11 11 0 0 1 11.1 11.1v466.22a11 11 0 0 1-11.1 11.1z m-153.42-22.2h142.36v-444H689.62zM471.17 479.21h-48.84a11.1 11.1 0 1 1 0-22.19h48.84a11.1 11.1 0 1 1 0 22.19z m0-105.46h-48.84a11.1 11.1 0 1 1 0-22.19h48.84a11.1 11.1 0 1 1 0 22.19z m0 210.91h-48.84a11.1 11.1 0 1 1 0-22.2h48.84a11.1 11.1 0 1 1 0 22.2z m0 105.68h-48.84a11.1 11.1 0 1 1 0-22.2h48.84a11.1 11.1 0 0 1 0 22.2z m0 105.46h-48.84a11.1 11.1 0 1 1 0-22.2h48.84a11.1 11.1 0 1 1 0 22.2z m0 0" fill="#0D1633" p-id="20494"></path><path d="M267.14 866.16a11 11 0 0 1-11.1-11.1V493a11.1 11.1 0 0 1 22.2 0v362.29a10.94 10.94 0 0 1-11.1 10.87z m493.75 0a11 11 0 0 1-11.09-11.1V493a11.1 11.1 0 1 1 22.2 0v362.29a11.08 11.08 0 0 1-11.1 10.87zM605.48 479.21h-48.84a11.1 11.1 0 1 1 0-22.19h48.84a11.1 11.1 0 1 1 0 22.19z m0-105.46h-48.84a11.1 11.1 0 1 1 0-22.19h48.84a11.1 11.1 0 1 1 0 22.19z m0 210.91h-48.84a11.1 11.1 0 1 1 0-22.2h48.84a11.1 11.1 0 1 1 0 22.2z m0 105.68h-48.84a11.1 11.1 0 1 1 0-22.2h48.84a11.1 11.1 0 0 1 0 22.2z m0 105.46h-48.84a11.1 11.1 0 0 1 0-22.2h48.84a11.1 11.1 0 1 1 0 22.2zM514 170.17a11 11 0 0 1-11.1-11.1V83.15a11.1 11.1 0 0 1 22.2 0v75.92a11 11 0 0 1-11.1 11.1z m0 0" fill="#0D1633" p-id="20495"></path></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754404559108" class="icon" viewBox="0 0 1364 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7142" xmlns:xlink="http://www.w3.org/1999/xlink" width="266.40625" height="200"><path d="M1201.757056 0A119.783532 119.783532 0 0 1 1321.455333 119.357256v604.885521a339.571393 339.571393 0 0 0-339.912414-326.527349 339.315627 339.315627 0 0 0-205.891266 69.141953h-1.023063c-32.226459 24.809258-59.849138 55.074848-81.503954 89.517942h0.34102a335.479144 335.479144 0 0 0-52.090916 175.369911H259.943052a42.201315 42.201315 0 0 0-42.030805 41.945549v5.626843c0 23.104155 18.841395 41.77504 42.030805 41.945549h392.00333c21.654816 83.464824 74.427775 155.590709 147.491467 201.799018H162.411123A119.783532 119.783532 0 0 1 42.627591 903.704937V119.357256A119.783532 119.783532 0 0 1 162.411123 0h1039.260678zM515.793856 558.932978a39.558405 39.558405 0 0 0 0.085255-78.946299v-0.17051h-80.139872v-39.47315h80.139872v-0.085255a39.64366 39.64366 0 0 0 0-79.11681v-0.17051h-80.139872c0.17051-0.852552 0-1.705104 0-2.557656l93.780701-95.485804c15.345933-17.136292 7.672966-31.203397-7.928732-46.890351-15.516443-15.686954-40.922488-19.011906-53.540255-5.371076l-80.651403 85.596203-87.045541-86.704521c-11.083174-10.912663-32.396969-7.417201-47.828158 8.013987-15.516443 15.345933-19.011906 36.830239-8.013987 47.742903l89.006411 88.66539a18.841395 18.841395 0 0 0-3.324952 6.990925h-72.466906v0.17051H257.470652a39.728915 39.728915 0 0 0-35.295646 59.678628 39.728915 39.728915 0 0 0 35.295646 19.438182h79.543085v39.473149h-79.28732v0.085256h-0.255765a39.64366 39.64366 0 0 0 0 79.116809h79.543085v39.81417h0.852552a49.277496 49.277496 0 0 0 21.05803 50.641579c16.710016 11.083174 38.364832 11.083174 55.074848 0a49.277496 49.277496 0 0 0 21.058031-50.641579h0.511531v-39.81417h80.139871z m630.462076-309.476313v-5.712098a42.201315 42.201315 0 0 0-42.11606-41.860294H702.07643a42.201315 42.201315 0 0 0-42.030805 41.860294v5.626843c0 23.104155 18.841395 41.77504 42.030805 41.945549h402.148697a42.201315 42.201315 0 0 0 42.11606-41.945549z m-436.506536 484.931479c0-143.740238 118.504704-263.438515 264.291067-263.438514 145.786363 0 264.291067 118.163683 264.291066 263.438514a264.035301 264.035301 0 0 1-264.291066 263.438515c-145.786363 0-264.291067-118.163683-264.291067-263.438515z m439.064192 0a174.773125 174.773125 0 0 0-176.307718-174.091083c-27.281658 0-54.648572 6.053118-77.496961 18.159354l235.474814 233.08767a165.395055 165.395055 0 0 0 18.244609-77.155941z m-328.232454-86.278245c-15.175423 25.747065-22.763134 54.563317-22.763134 86.278245 0 96.935143 78.946299 175.540421 176.222463 175.625677a172.215469 172.215469 0 0 0 86.619266-22.763134L820.666389 648.109899z" fill="#128BED" p-id="7143"></path></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754404643668" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10616" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M914.957 512.898V365.331c0-47.829-38.077-86.583-85.058-86.583H659.782c-46.979 0-85.058 38.754-85.058 86.583v11.224c-5.505-5.28-11.541-10.149-18.641-13.822l-151.702-78.336c-41.904-21.639-93.089-4.615-114.328 38.027l-65.579 131.607c-78.019 16.646-148.201 67.717-187.068 145.715-68.014 136.468-14.477 303.229 119.576 372.471 101.693 52.504 220.431 33.699 301.541-37.946-20.789-29.3-37.486-61.702-49.466-96.405-49.875 59.176-134.555 78.532-205.903 41.702-83.781-43.275-117.235-147.517-74.747-232.79 42.509-85.303 144.888-119.371 228.667-76.096 17.535 9.044 32.728 20.912 45.619 34.57 27.132-95.014 89.631-174.476 172.03-223.062v130.729c-62.185 50.784-102.082 128.652-102.082 216.104 0 153.039 121.847 277.078 272.177 277.078 150.331 0 272.179-124.039 272.179-277.078 0.022-87.473-39.879-165.329-102.04-216.125z m-435.388-73.149c-12.758 25.596-43.481 35.797-68.608 22.804-25.137-12.962-35.163-44.248-22.415-69.825 12.758-25.597 43.48-35.807 68.607-22.824 25.127 12.992 35.163 44.227 22.416 69.845zM744.84 330.72c28.198 0 51.031 23.254 51.031 51.951s-22.833 51.953-51.031 51.953c-28.194 0-51.029-23.255-51.029-51.953 0-28.696 22.835-51.951 51.029-51.951z m0 571.477c-93.937 0-170.114-77.548-170.114-173.175 0-95.628 76.178-173.177 170.114-173.177 93.919 0 170.117 77.549 170.117 173.177 0 95.627-76.157 173.175-170.117 173.175zM472.662 296.079c46.981 0 85.059-38.753 85.059-86.583 0-47.839-38.077-86.593-85.059-86.593-46.979 0-85.058 38.754-85.058 86.593 0 47.829 38.08 86.583 85.058 86.583z m0-121.225c18.784 0 34.029 15.521 34.029 34.642s-15.245 34.631-34.029 34.631c-18.782 0-34.016-15.51-34.016-34.631s15.234-34.642 34.016-34.642z m357.237 17.321c0-47.829-38.079-86.583-85.06-86.583-20.358 0-38.814 7.582-53.465 19.756 1.454-6.374 2.436-12.942 2.436-19.756 0-47.837-38.08-86.593-85.059-86.593s-85.059 38.755-85.059 86.593c0 47.829 38.08 86.583 85.059 86.583 20.358 0 38.816-7.581 53.467-19.755-1.474 6.364-2.436 12.931-2.436 19.755 0 47.829 38.078 86.594 85.057 86.594 46.981 0 85.06-38.765 85.06-86.594z m-221.147-51.951c-18.783 0-34.026-15.52-34.026-34.631 0-19.131 15.243-34.64 34.026-34.64 18.784 0 34.027 15.509 34.027 34.64 0 19.111-15.223 34.631-34.027 34.631z m136.088 86.583c-18.781 0-34.026-15.51-34.026-34.631s15.245-34.631 34.026-34.631c18.785 0 34.008 15.51 34.008 34.631s-15.223 34.631-34.008 34.631z" fill="#d81e06" p-id="10617"></path></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754404720989" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="15618" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M922.600843 0H101.373456A101.475853 101.475853 0 0 0 0 101.373456v821.227387A101.475853 101.475853 0 0 0 101.373456 1023.974298h212.423468a39.013421 39.013421 0 1 0 0-77.975643H101.373456a23.705005 23.705005 0 0 1-23.397813-23.397812V101.373456a23.705005 23.705005 0 0 1 23.397813-23.397813h821.227387a23.705005 23.705005 0 0 1 23.397812 23.397813v530.828276a39.013421 39.013421 0 1 0 77.975643 0V101.373456A101.475853 101.475853 0 0 0 922.600843 0z" p-id="15619" fill="#13227a"></path><path d="M215.700186 267.666882h441.84491a38.962222 38.962222 0 0 0 0-77.924445h-441.84491a38.962222 38.962222 0 0 0 0 77.924445zM215.700186 421.007033h441.84491a38.962222 38.962222 0 0 0 0-77.924444h-441.84491a38.962222 38.962222 0 0 0 0 77.924444zM366.429203 493.811605H215.700186a39.013421 39.013421 0 0 0 0 77.975643h150.729017a39.013421 39.013421 0 1 0 0-77.975643zM578.90387 560.369935a134.191832 134.191832 0 1 0 134.191831-134.140633 134.345428 134.345428 0 0 0-134.191831 134.140633z m134.191831-56.318587a56.318586 56.318586 0 1 1-56.318586 56.318587 56.318586 56.318586 0 0 1 56.318586-56.164991z" p-id="15620" fill="#13227a"></path><path d="M950.043354 686.06278h-103.98459a39.115818 39.115818 0 0 0-25.599358 9.727756l-114.941115 101.16866-104.957365-100.144686a39.064619 39.064619 0 0 0-27.135319-10.75173H462.477992a59.083317 59.083317 0 0 0-58.98092 58.980919V962.53584a59.083317 59.083317 0 0 0 58.98092 58.98092h487.565362A59.083317 59.083317 0 0 0 1009.024273 962.53584v-217.440942A59.083317 59.083317 0 0 0 950.043354 686.06278z m-18.994723 257.273542H481.26792v-179.195502h76.798073l119.4978 113.968339a39.013421 39.013421 0 0 0 52.632279 1.075173l130.710319-115.043512h70.295836z" p-id="15621" fill="#13227a"></path></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -0,0 +1 @@
<?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 t="1754404796180" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21720" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M153.6 51.2m0 0l716.8 0q0 0 0 0l0 921.6q0 0 0 0l-716.8 0q0 0 0 0l0-921.6q0 0 0 0Z" fill="#3172F6" p-id="21721"></path><path d="M651.776 485.888h-83.968v45.568q0 34.304-2.048 60.416l66.048 31.232v78.336l-76.288-35.328q-14.848 77.824-49.664 153.088H427.008q50.176-85.504 67.072-182.272l-27.648-12.8v-78.336l35.84 16.896q0.512-10.752 0.512-31.232v-45.568h-43.52V420.352h43.52V353.28h65.024v67.072h149.504v332.288h33.28V819.2h-98.816V485.888z m-372.224 103.424l53.248-13.312V489.984h-48.128V424.448h48.128V355.84h65.536v68.608h41.984v65.536h-41.984v70.144l47.104-11.776v71.168l-47.104 11.776V819.2H293.376v-65.536h39.424v-106.496l-53.248 13.312v-71.168z" fill="#FFFFFF" p-id="21722"></path><path d="M729.6 166.4V51.2h-76.8v38.4h-281.6V51.2h-76.8v115.2h435.2z" fill="#FFFFFF" p-id="21723"></path><path d="M358.4 0m0 0l307.2 0q0 0 0 0l0 102.4q0 0 0 0l-307.2 0q0 0 0 0l0-102.4q0 0 0 0Z" fill="#3172F6" p-id="21724"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 KiB

BIN
public/logo1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

50
public/robots.txt Normal file
View File

@@ -0,0 +1,50 @@
User-agent: *
Allow: /
# 允许访问主要页面
Allow: /agent
Allow: /help
Allow: /help/guide
Allow: /example
Allow: /service
Allow: /privacyPolicy
Allow: /userAgreement
Allow: /agentManageAgreement
Allow: /agentSerivceAgreement
Allow: /authorization
# 禁止访问私有页面
Disallow: /login
Disallow: /me
Disallow: /historyQuery
Disallow: /promote
Disallow: /withdraw
Disallow: /report
Disallow: /inquire/
Disallow: /payment/
Disallow: /agent/promoteDetails
Disallow: /agent/rewardsDetails
Disallow: /agent/promote
Disallow: /agent/invitation
Disallow: /agent/agentVip
Disallow: /agent/vipApply
Disallow: /agent/vipConfig
Disallow: /agent/withdraw
Disallow: /agent/withdrawDetails
Disallow: /agent/invitationAgentApply/
Disallow: /agent/subordinateList
Disallow: /agent/subordinateDetail/
# 禁止访问API接口
Disallow: /api/
# 禁止访问静态资源目录(可选)
Disallow: /assets/
Disallow: /js/
Disallow: /css/
# 网站地图
Sitemap: https://www.zhinengcha.cn/sitemap.xml
# 爬取延迟(毫秒)
Crawl-delay: 1

40
public/site.webmanifest Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "天远助手|大数据风险报告查询与代理平台,支持个人和企业多场景风控应用",
"short_name": "天远助手",
"description": "专业大数据风险报告查询与代理平台,支持个人信用查询、小微企业风控、贷前风险背调等多场景报告应用",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#3498db",
"orientation": "portrait-primary",
"icons": [
{
"src": "/favicon-16x16.png",
"sizes": "16x16",
"type": "image/png"
},
{
"src": "/favicon-32x32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "/apple-touch-icon.png",
"sizes": "180x180",
"type": "image/png"
},
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"categories": ["business", "finance", "utilities"],
"lang": "zh-CN",
"dir": "ltr"
}

69
public/sitemap.xml Normal file
View File

@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://www.zhinengcha.cn/</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://www.zhinengcha.cn/agent</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://www.zhinengcha.cn/help</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://www.zhinengcha.cn/help/guide</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.6</priority>
</url>
<url>
<loc>https://www.zhinengcha.cn/example</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.6</priority>
</url>
<url>
<loc>https://www.zhinengcha.cn/service</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>https://www.zhinengcha.cn/privacyPolicy</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>yearly</changefreq>
<priority>0.3</priority>
</url>
<url>
<loc>https://www.zhinengcha.cn/userAgreement</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>yearly</changefreq>
<priority>0.3</priority>
</url>
<url>
<loc>https://www.zhinengcha.cn/agentManageAgreement</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>yearly</changefreq>
<priority>0.3</priority>
</url>
<url>
<loc>https://www.zhinengcha.cn/agentSerivceAgreement</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>yearly</changefreq>
<priority>0.3</priority>
</url>
<url>
<loc>https://www.zhinengcha.cn/authorization</loc>
<lastmod>2025-08-01</lastmod>
<changefreq>yearly</changefreq>
<priority>0.3</priority>
</url>
</urlset>

137
report-viewer/README.md Normal file
View File

@@ -0,0 +1,137 @@
# 报告查看器 - 独立 Vue3 项目
这是一个独立的 Vue3 项目,用于展示报告组件。项目使用本地 JSON 文件(`example.json`)作为数据源,不依赖网络请求。
## 📋 已包含的组件
1. **DWBG6A2C** - 司南报告(包含所有子模块)
2. **FLXG0V4B** - 司法涉诉
3. **QYGL3F8E** - 人企关系加强版(包含所有子模块)
4. **JRZQ4B6C** - 信贷表现
5. **JRZQ09J8** - 收入评估
6. **QCXG9P1C** - 名下车辆
7. **DWBG8B4D** - 谛听多维报告(包含所有子模块)
## 🚀 快速开始
### 1. 安装依赖
```bash
cd report-viewer
npm install
# 或
pnpm install
# 或
yarn install
```
### 2. 启动开发服务器
```bash
npm run dev
```
访问:`http://localhost:3000`
### 3. 构建生产版本
```bash
npm run build
```
## 📁 项目结构
```
report-viewer/
├── public/
│ └── example.json # 示例数据文件
├── src/
│ ├── components/ # 基础组件
│ │ ├── BaseReport.vue # ⭐ 核心组件
│ │ ├── GaugeChart.vue
│ │ ├── ShareReportButton.vue
│ │ └── ...
│ ├── views/
│ │ └── Report.vue # ⭐ 报告页面
│ ├── ui/ # ⭐ 业务组件
│ │ ├── DWBG6A2C/ # 司南报告
│ │ ├── CFLXG0V4B/ # 司法涉诉
│ │ ├── CQYGL3F8E/ # 人企关系加强版
│ │ ├── JRZQ4B6C/ # 信贷表现
│ │ ├── JRZQ09J8/ # 收入评估
│ │ ├── CQCXG9P1C.vue # 名下车辆
│ │ └── CDWBG8B4D/ # 谛听多维报告
│ ├── assets/ # 样式和图片
│ └── composables/ # 工具函数(已移除网络请求)
├── package.json
├── vite.config.js
└── tailwind.config.js
```
## ⚙️ 配置说明
### 数据源
项目从 `public/example.json` 加载示例数据。可以直接修改该文件来更新显示的内容。
### 已移除的功能
- ✅ 产品背景图片(已移除背景图显示)
- ✅ 网络请求(改为从本地 JSON 文件加载)
- ✅ API 调用ShareReportButton 在示例模式下不进行网络请求)
## 📝 使用说明
1. 启动项目后,会自动加载 `public/example.json` 中的数据
2. 数据会自动排序并显示在报告页面中
3. 所有组件都会根据数据进行渲染
## 🔧 注意事项
1. **图片资源**:确保所有必要的图片文件已复制到 `src/assets/images/` 目录
2. **样式依赖**:项目依赖 Tailwind CSS 和 Vant UI确保正确引入
3. **浏览器兼容**需要现代浏览器支持ES2015+
4. **数据格式**`example.json` 必须符合组件期望的数据结构
## 📦 依赖说明
### 核心依赖
- **vue** ^3.5.12 - Vue 框架
- **vue-router** ^4.4.5 - 路由管理
- **vant** ^4.9.9 - UI 组件库
- **echarts** ^5.5.1 - 图表库
- **vue-echarts** ^7.0.3 - Vue ECharts 封装
- **@vueuse/core** ^11.3.0 - Vue 工具库
- **lodash** ^4.17.21 - 工具函数库
### 开发依赖
- **vite** ^5.4.10 - 构建工具
- **tailwindcss** ^3.4.15 - CSS 框架
- **@vitejs/plugin-vue** - Vite Vue 插件
- **unplugin-auto-import** - 自动导入插件
- **unplugin-vue-components** - 自动组件导入插件
## 🐛 常见问题
### Q: 图片加载失败?
A: 确保图片文件已复制到 `src/assets/images/report/` 目录
### Q: 样式不生效?
A: 确保 `tailwind.config.js` 中包含了正确的 content 路径
### Q: 数据不显示?
A: 检查 `public/example.json` 文件格式是否正确,确保数据符合组件期望的结构
## 📞 技术支持
如有问题,请检查:
1. 控制台错误信息
2. `public/example.json` 文件是否存在且格式正确
3. 依赖是否正确安装
4. 文件路径是否正确
---
**提示**:这是一个独立的 Vue3 项目,使用本地 JSON 文件作为数据源,无需后端 API 支持。

110
report-viewer/index.html Normal file
View File

@@ -0,0 +1,110 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=3, user-scalable=no"
/>
<title>报告查看器</title>
<style>
html {
font-size: 16px;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
body {
margin: 0;
padding: 0;
min-width: 320px;
}
* {
box-sizing: border-box;
}
#app {
width: 100%;
max-width: 100vw;
}
@media screen and (max-width: 480px) {
html {
font-size: 14px;
}
}
@media screen and (min-width: 481px) and (max-width: 768px) {
html {
font-size: 15px;
}
}
#app-loading {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #fff;
z-index: 9999;
font-family: Arial, sans-serif;
color: #666;
}
.loading-spinner {
width: 50px;
height: 50px;
border: 5px solid #ccc;
border-top: 5px solid #3498db;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 16px;
}
.loading-text {
font-size: 16px;
color: #666;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="app-loading">
<div class="loading-spinner"></div>
<div class="loading-text">加载中</div>
</div>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
const loadingElement = document.getElementById('app-loading');
if (loadingElement) {
loadingElement.style.opacity = '0';
setTimeout(() => {
loadingElement.parentNode.removeChild(loadingElement);
}, 500);
}
});
</script>
</body>
</html>

View File

@@ -0,0 +1,34 @@
{
"name": "report-viewer",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@vueuse/core": "^11.3.0",
"axios": "^1.7.7",
"echarts": "^5.5.1",
"lodash": "^4.17.21",
"vue": "^3.5.12",
"vue-echarts": "^7.0.3",
"vue-router": "^4.4.5",
"vant": "^4.9.9"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"sass-embedded": "^1.81.0",
"tailwindcss": "^3.4.15",
"terser": "^5.43.1",
"unplugin-auto-import": "^0.18.5",
"unplugin-vue-components": "^0.27.5",
"vite": "^5.4.10"
}
}

3093
report-viewer/pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,7 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};

View File

@@ -0,0 +1,933 @@
[
{
"feature": {
"featureName": "司法涉诉",
"sort": 4
},
"data": {
"apiID": "FLXG0V4B",
"data": {
"entout": {
"data": {
"administrative": {},
"bankrupt": {},
"cases_tree": {
"criminal": [
{
"c_ah": "2016桂****刑初**号",
"case_type": 200,
"n_ajbs": "***",
"stage_type": 1
},
{
"c_ah": "2016桂**刑终***号",
"case_type": 200,
"n_ajbs": "***",
"stage_type": 2
},
{
"c_ah": "2019桂****刑初**号",
"case_type": 200,
"n_ajbs": "***",
"stage_type": 1
},
{
"c_ah": "2019桂**刑终***号",
"case_type": 200,
"n_ajbs": "***",
"stage_type": 2
}
]
},
"civil": {},
"count": {
"area_stat": "广西壮族自治区(4)",
"ay_stat": "妨害社会管理秩序罪(4)",
"count_beigao": 2,
"count_jie_beigao": 2,
"count_jie_other": 0,
"count_jie_total": 4,
"count_jie_yuangao": 2,
"count_other": 0,
"count_total": 4,
"count_wei_beigao": 0,
"count_wei_other": 0,
"count_wei_total": 0,
"count_wei_yuangao": 0,
"count_yuangao": 2,
"jafs_stat": "判决(2),维持(1),改判(1)",
"larq_stat": "2016(2),2019(2)",
"money_beigao": 0,
"money_jie_beigao": 0,
"money_jie_other": 0,
"money_jie_total": 11,
"money_jie_yuangao": 11,
"money_other": 0,
"money_total": 11,
"money_wei_beigao": 0,
"money_wei_other": 0,
"money_wei_percent": 0,
"money_wei_total": 0,
"money_wei_yuangao": 0,
"money_yuangao": 11
},
"crc": 1635002023,
"criminal": {
"cases": [
{
"c_ah": "2016桂****刑初**号",
"c_dsrxx": [
{
"c_mc": "何某",
"n_dsrlx": "自然人",
"n_ssdw": "被告人"
},
{
"c_mc": "覃某",
"n_dsrlx": "自然人",
"n_ssdw": "被告人"
},
{
"c_mc": "刘某",
"n_dsrlx": "自然人",
"n_ssdw": "被告人"
},
{
"c_mc": "陈某",
"n_dsrlx": "自然人",
"n_ssdw": "被告人"
},
{
"c_mc": "覃某",
"n_dsrlx": "自然人",
"n_ssdw": "被告人"
},
{
"c_mc": "陈某",
"n_dsrlx": "自然人",
"n_ssdw": "被告人"
}
],
"c_gkws_dsr": "公诉机关广西******人民检察院。被告人何某,男,1979年7月13日出生于广西壮族自治区******县,汉族,小学文化,农民,住广西壮族自治区******县。因涉嫌犯开设赌场罪于2015年9月13日被刑事拘留,同年10月20日被逮捕。被告人陈某,男,1987年7月17日出生于广西壮族自治区******县,汉族,小学文化,农民,住广西壮族自治区******县。因涉嫌犯开设赌场罪于2015年9月16日被刑事拘留,同年10月20日被逮捕。被告人覃某,女,1979年4月15日出生于广西壮族自治区******县,汉族,初中文化,农民,住广西壮族自治区******县。因涉嫌犯开设赌场罪于2015年11月4日被羁押,次日被刑事拘留,同月26日被逮捕。被告人覃某有,男,1972年9月21日出生于广西壮族自治区******县,汉族,小学文化,农民,住广西壮族自治区******县。因涉嫌犯开设赌场罪于2015年9月17日被刑事拘留,同年10月20日被逮捕。被告人刘某飞,男,1991年4月3日出生于广西壮族自治区******县,汉族,初中文化,农民,住广西壮族自治区******县。因涉嫌犯开设赌场罪于2015年10月28日被刑事拘留,同年11月12日被逮捕。被告人陈某观,男,1990年12月2日出生于广西壮族自治区******县,汉族,初中文化,农民,住广西壮族自治区******县。因涉嫌犯开设赌场罪于2015年10月28日被刑事拘留,同年11月12日被逮捕。",
"c_gkws_id": "29130d17-a43e-448e-84dc-64e9cd203a99",
"c_gkws_pjjg": "一、被告人何某犯开设赌场罪,判处有期徒刑一年六个月,并处罚金人民币二万元。(刑期从判决执行之日起计算,判决执行以前先行羁押的,羁押一日折抵刑期一日,即自2015年9月13日起至2017年3月12日止。罚金在本判决生效后一个月内一次缴纳,期满不缴纳的,强制缴纳。)二、被告人陈某犯开设赌场罪,判处有期徒刑一年二个月,并处罚金人民币二万元。(刑期从判决执行之日起计算,判决执行以前先行羁押的,羁押一日折抵刑期一日,即自2015年9月16日起至2016年11月15日止。罚金在本判决生效后一个月内一次缴纳,期满不缴纳的,强制缴纳。)三、被告人覃某犯开设赌场罪,判处有期徒刑一年二个月,并处罚金人民币二万元。(刑期从判决执行之日起计算,判决执行以前先行羁押的,羁押一日折抵刑期一日,即自2015年11月4日起至2017年1月3日止。罚金在本判决生效后一个月内一次缴纳,期满不缴纳的,强制缴纳。)四、被告人覃某有犯开设赌场罪,判处有期徒刑八个月,并处罚金人民币二万元。(刑期从判决执行之日起计算,判决执行以前先行羁押的,羁押一日折抵刑期一日,即自2015年9月17日起至2016年5月16日止。罚金已缴纳。)五、被告人刘某飞犯开设赌场罪,判处有期徒刑六个月,并处罚金人民币一万五千元。(刑期从判决执行之日起计算,判决执行以前先行羁押的,羁押一日折抵刑期一日,即自2015年10月28日起至2016年4月27日止。罚金已缴纳。)六、被告人陈某犯开设赌场罪,判处有期徒刑六个月,并处罚金人民币一万五千元。(刑期从判决执行之日起计算,判决执行以前先行羁押的,羁押一日折抵刑期一日,即自2015年10月28日起至2016年4月27日止。罚金已缴纳。)如不服本判决,可在收到判决书之次日起十日内,通过本院或直接向广西壮族自治区*******法院提出上诉。书面上诉的应提交上诉状正本一份,副本十三份。",
"c_id": "8917c0a3f0eab1ca1f294565be7f2dc5",
"c_slfsxx": "1,2016-01-25 09:00:00,第一审判庭,1",
"c_ssdy": "广西壮族自治区",
"d_jarq": "2016-04-01",
"d_larq": "2016-01-04",
"n_ajbs": "b9a3062adcb707f23c7fe627642fe23c",
"n_ajjzjd": "已结案",
"n_ajlx": "刑事一审",
"n_bqqpcje_level": 0,
"n_ccxzxje_level": 0,
"n_crc": 178414947,
"n_fzje_level": 0,
"n_jaay": "妨害社会管理秩序罪",
"n_jaay_tree": "妨害社会管理秩序罪,扰乱公共秩序罪,开设赌场罪",
"n_jafs": "判决",
"n_jbfy": "******县人民法院",
"n_jbfy_cj": "基层法院",
"n_laay": "妨害社会管理秩序罪",
"n_laay_tree": "妨害社会管理秩序罪,扰乱公共秩序罪,开设赌场罪",
"n_pcpcje_level": 0,
"n_slcx": "一审",
"n_ssdw": "被告人",
"n_ssdw_ys": "被告人"
},
{
"c_ah": "2016桂09刑终283号",
"c_dsrxx": [
{
"c_mc": "何某",
"n_dsrlx": "自然人",
"n_ssdw": "其他"
},
{
"c_mc": "胡某",
"n_dsrlx": "自然人",
"n_ssdw": "其他"
},
{
"c_mc": "张某",
"n_dsrlx": "自然人",
"n_ssdw": "其他"
},
{
"c_mc": "李某",
"n_dsrlx": "自然人",
"n_ssdw": "上诉人"
},
{
"c_mc": "刘某",
"n_dsrlx": "自然人",
"n_ssdw": "上诉人"
},
{
"c_mc": "陈某",
"n_dsrlx": "自然人",
"n_ssdw": "上诉人"
}
],
"c_gkws_dsr": "原公诉机关广西壮族自治区******县人民检察院。上诉人(原审被告人)李某,农民。因涉嫌犯开设赌场罪于2015年9月13日被刑事拘留,同年10月20日被逮捕。现羁押于******县看守所。上诉人(原审被告人)陈某(曾用名陈东东),农民。因涉嫌犯开设赌场罪于2015年9月16日被刑事拘留,同年10月20日被逮捕。现羁押于******县看守所。上诉人(原审被告人)刘某,农民。因涉嫌犯开设赌场罪于2015年11月4日被羁押,次日被刑事拘留,同月26日被逮捕。现羁押于******县看守所。原审被告人胡某,农民。因涉嫌犯开设赌场罪于2015年9月17日被刑事拘留,同年10月20日被逮捕。现羁押于******县看守所。原审被告人何某,农民。因涉嫌犯开设赌场罪于2015年10月28日被刑事拘留,同年11月12日被逮捕。现羁押于******县看守所。原审被告人张某,农民。因涉嫌犯开设赌场罪于2015年10月28日被刑事拘留,同年11月12日被逮捕。现羁押于******县看守所。",
"c_gkws_glah": "2016桂0923刑初90号",
"c_gkws_id": "bc9c1a6b-a2c2-4065-af1b-a58267623a4a",
"c_gkws_pjjg": "一、维持广西壮族自治区******县人民法院(2016)桂0923刑初90号刑事判决的第四、第五、第六项,即:被告人胡某犯开设赌场罪,判处有期徒刑八个月,并处罚金人民币二万元。被告人何某犯开设赌场罪,判处有期徒刑六个月,并处罚金人民币一万五千元。被告人张某犯开设赌场罪,判处有期徒刑六个月,并处罚金人民币一万五千元。二、撤销广西壮族自治区******县人民法院(2016)桂0923刑初90号刑事判决的第一、第二、第三项,即:被告人李某犯开设赌场罪,判处有期徒刑一年六个月,并处罚金人民币二万元。被告人陈某犯开设赌场罪,判处有期徒刑一年二个月,并处罚金人民币二万元。被告人刘某犯开设赌场罪,判处有期徒刑一年二个月,并处罚金人民币二万元。三、上诉人(原审被告人)李某犯开设赌场罪,判处有期徒刑一年,并处罚金人民币二万元。(刑期从判决执行之日起计算。判决执行前先行羁押的,羁押一日折抵刑期一日,即自2015年9月13日起至2016年9月12日止。罚金已缴纳。)四、上诉人(原审被告人)陈某犯开设赌场罪,判处有期徒刑十个月,并处罚金人民币二万元。(刑期从判决执行之日起计算。判决执行前先行羁押的,羁押一日折抵刑期一日,即自2015年9月16日起至2016年7月15日止;已缴纳罚金一万元,罚金余款自判决生效之次日起一个月内缴纳,逾期不缴纳的,强制缴纳。)五、上诉人(原审被告人)刘某犯开设赌场罪,判处有期徒刑十个月,并处罚金人民币二万元。(刑期从判决执行之日起计算。判决执行前先行羁押的,羁押一日折抵刑期一日,即自2015年11月4日起至2016年9月3日止;已缴纳罚金一万元,罚金余款自判决生效之次日起一个月内缴纳,逾期不缴纳的,强制缴纳。)本判决为终审判决。",
"c_id": "84362df70b3678297431c3f97130e930",
"c_ssdy": "广西壮族自治区",
"d_jarq": "2016-07-14",
"d_larq": "2016-05-16",
"n_ajbs": "a64f674f1325f5e36ad429fca45ec99e",
"n_ajjzjd": "已结案",
"n_ajlx": "刑事二审",
"n_bqqpcje_level": 0,
"n_ccxzxje_gj": 170000,
"n_ccxzxje_gj_level": 11,
"n_ccxzxje_level": 0,
"n_crc": 3645650953,
"n_dzzm": "妨害社会管理秩序罪",
"n_dzzm_tree": "妨害社会管理秩序罪,扰乱公共秩序罪,开设赌场罪",
"n_fzje_level": 0,
"n_jaay": "妨害社会管理秩序罪",
"n_jaay_tree": "妨害社会管理秩序罪,扰乱公共秩序罪,开设赌场罪",
"n_jafs": "改判",
"n_jbfy": "广西壮族自治区*******法院",
"n_jbfy_cj": "中级人民法院",
"n_laay": "妨害社会管理秩序罪",
"n_laay_tree": "妨害社会管理秩序罪,扰乱公共秩序罪,开设赌场罪",
"n_pcjg": "给予刑事处罚",
"n_pcpcje_level": 0,
"n_slcx": "二审",
"n_ssdw": "上诉人"
},
{
"c_ah": "2019桂0923刑初81号",
"c_dsrxx": [
{
"c_mc": "李某",
"n_dsrlx": "自然人",
"n_ssdw": "被告人"
},
{
"c_mc": "张某",
"n_dsrlx": "自然人",
"n_ssdw": "被告人"
}
],
"c_gkws_dsr": "公诉机关广西壮族自治区******县人民检察院。被告人李某。被告人张某。",
"c_gkws_id": "1ee2c6cd-15b5-44a7-8f68-aae10033e5bc",
"c_gkws_pjjg": "一、被告人李某犯开设赌场罪,判处有期徒刑二年,并处罚金人民币二万元。(刑期从判决执行之日起计算,判决执行以前先行羁押的,羁押一日折抵刑期一日,即自2018年10月16日起至2020年10月15日止。罚金在本判决生效后一个月内一次缴纳,期满不缴纳的,强制缴纳。)%1、被告人张某犯开设赌场罪,判处有期徒刑一年六个月,并处罚金人民币一万五千元。(刑期从判决执行之日起计算,判决执行以前先行羁押的,羁押一日折抵刑期一日,即自2018年10月30日起至2020年4月29日止。罚金在本判决生效后一个月内一次缴纳,期满不缴纳的,强制缴纳。)三、扣押在案的赌具扑克牌、龙虎珠、骨牌及人民币八百三十五元依法予以没收,其中人民币八百三十五元上缴国库。如不服本判决,可在收到判决书之次日起十日内,通过本院或直接向广西壮族自治区*******法院提出上诉。书面上诉的应当提交上诉状正本一份,副本九份。",
"c_id": "5f4d0aa69d456e5a4c1b025aec5d310d",
"c_slfsxx": "1,2019-03-01 09:20:00,KA6第一审判庭,1",
"c_ssdy": "广西壮族自治区",
"d_jarq": "2019-03-07",
"d_larq": "2019-02-20",
"n_ajbs": "e90f9b13a9b0f102611e6b5a2ccf6a96",
"n_ajjzjd": "已结案",
"n_ajlx": "刑事一审",
"n_bqqpcje_level": 0,
"n_ccxzxje_level": 0,
"n_crc": 3676144743,
"n_dzzm": "妨害社会管理秩序罪",
"n_dzzm_tree": "妨害社会管理秩序罪,扰乱公共秩序罪,开设赌场罪",
"n_fzje_level": 0,
"n_jaay": "妨害社会管理秩序罪",
"n_jaay_tree": "妨害社会管理秩序罪,扰乱公共秩序罪,开设赌场罪",
"n_jafs": "判决",
"n_jbfy": "******县人民法院",
"n_jbfy_cj": "基层法院",
"n_laay": "妨害社会管理秩序罪",
"n_laay_tree": "妨害社会管理秩序罪,扰乱公共秩序罪,开设赌场罪",
"n_pcjg": "给予刑事处罚",
"n_pcpcje_level": 0,
"n_slcx": "一审",
"n_ssdw": "被告人",
"n_ssdw_ys": "被告人"
}
],
"count": {
"area_stat": "广西壮族自治区(4)",
"ay_stat": "妨害社会管理秩序罪(4)",
"count_beigao": 2,
"count_jie_beigao": 2,
"count_jie_other": 0,
"count_jie_total": 4,
"count_jie_yuangao": 2,
"count_other": 0,
"count_total": 4,
"count_wei_beigao": 0,
"count_wei_other": 0,
"count_wei_total": 0,
"count_wei_yuangao": 0,
"count_yuangao": 2,
"jafs_stat": "判决(2),维持(1),改判(1)",
"larq_stat": "2016(2),2019(2)",
"money_beigao": 0,
"money_jie_beigao": 0,
"money_jie_other": 0,
"money_jie_total": 11,
"money_jie_yuangao": 11,
"money_other": 0,
"money_total": 11,
"money_wei_beigao": 0,
"money_wei_other": 0,
"money_wei_percent": 0,
"money_wei_total": 0,
"money_wei_yuangao": 0,
"money_yuangao": 11
}
},
"implement": {},
"preservation": {}
},
"msg": "查询成功"
},
"sxbzxr": {
"data": [
{
"ah": "(2016)*******8160号",
"fbrq": "2016-11-09",
"id": "aa98cae8cbf0e1a87cab4c713c59faa1",
"larq": "2016-08-08",
"lxqk": "全部未履行",
"pjje_gj": 0,
"sf": "北京",
"xb": "男",
"xwqx": "其他有履行能力而拒不履行生效法律文书确定义务",
"yw": "判决如下: 一、被告张某于本判决生效后十日内偿还原告兵器装备集团财务有限责任公司贷款本金二万一千零三十一元四角七分及逾期利息(截止至二O一四年十二月二十三日,逾期利息为四千八百五十四元三角五分,自二O一四年十二月二十四日起至贷款全部清偿之日止的逾期利息按《汽车消费贷款合同》及其附件约定计算); 二、原告兵器装备集团财务有限责任公司对被告张某所有的重庆长安汽车股份有限公司生产的长安牌小型轿车一辆车架号LS5A*******02800、发动机号CC4*****967折价或拍卖、变卖后所得的价款享有优先受偿权 三、驳回原告兵器装备集团财务有限责任公司其他诉讼请求。 如果被告张某未按本判决指定的期间履行给付金钱义务,应当依照《中华人民共和国民事诉讼法》第二百五十三条之规定,加倍支付迟延履行期间的债务利息。 案件受理费三百七十四元(原告兵器装备集团财务有限责任公司已预交),由原告兵器装备集团财务有限责任公司负担一百一十八元,已交纳;由被告张某负担二百五十六元,于本判决书生效后七日内交纳。 如不服本判决,可在判决书送达之日起十五日内向本院递交上诉状,并按对方当事人的人数提出副本,按照不服一审判决部分的上诉请求数额交纳上诉案件受理费,上诉于北京市第一中级人民法院。如在上诉期满后七日内未交纳上诉费的,按自动撤回上诉处理。",
"zxfy": "北京市*****人民法院",
"zxyjdw": "北京市****人民法院",
"zxyjwh": "2015年*****12658号"
},
{
"ah": "(2016)**0211执****号",
"fbrq": "2016-09-14",
"id": "***",
"larq": "2016-09-05",
"lxqk": "全部未履行",
"pjje_gj": 0,
"sf": "**省",
"xb": "*",
"xwqx": "其他有履行能力而拒不履行生效法律文书确定义务",
"yw": "被执行人支付欠款***元...",
"zxfy": "**市**区人民法院",
"zxyjdw": "**市**区人民法院",
"zxyjwh": "(2016)**0211民初****号"
}
],
"msg": "查询成功"
},
"xgbzxr": {
"data": [
{
"ah": "(20*****77号",
"fbrq": "2018-08-31",
"id": "d439c2c8e6330de7c00bbae668cb9b2b",
"zxfy": "*****人民法院"
},
{
"ah": "(2016)*****574号",
"fbrq": "2018-08-31",
"id": "763f693a894c680d4da65fae0e488fac",
"zxfy": "*******法院"
}
],
"msg": "查询成功"
}
},
"success": true,
"timestamp": "2024-12-13 20:29:20"
}
},
{
"feature": {
"featureName": "名下车辆",
"sort": 2
},
"data": {
"apiID": "QCXG9P1C",
"data": {
"list": [
{
"plateColor": 0,
"plateNum": "粤A9***1",
"vehicleType": 1
},
{
"plateColor": 1,
"plateNum": "粤A9***2",
"vehicleType": 1
}
],
"vehicleCount": 2
},
"success": true,
"timestamp": "2025-01-20 21:19:58"
}
},
{
"feature": {
"featureName": "谛听多维报告",
"sort": 1
},
"data": {
"apiID": "DWBG8B4D",
"data": {
"baseInfo": {
"age": 34,
"channel": "中国移动",
"idCard": "3203**199102***152",
"location": "江苏省徐州市沛县",
"name": "封*伟",
"phone": "158****2970",
"phoneArea": "江苏-徐州",
"sex": "男",
"status": 4
},
"checkSuggest": "建议拒绝",
"creditScore": 300,
"elementVerificationDetail": {
"antiFraudInfo": {},
"belongRiskFlag": 0,
"belongRisks": {
"num": "1",
"personCity": "徐州市",
"personProvence": "江苏省",
"phoneCardType": "移动",
"phoneCity": "徐州",
"phoneProvence": "江苏"
},
"highRiskFlag": 2,
"keyPersonCheckList": {
"fangAiFlag": 0,
"fontFlag": 0,
"jingJiFontFlag": 0,
"num": "1",
"sheJiaoTongFlag": 0,
"zhongDianFlag": 0
},
"onlineRiskFlag": 0,
"onlineRiskList": {
"lineType": "移动",
"num": "1",
"onLineTimes": "3,6(个月)"
},
"personCheckDetails": {
"ele": "身份证号、姓名",
"num": "1",
"result": "一致"
},
"phoneCheckDetails": {
"ele": "身份证号、手机号、姓名",
"num": "1",
"phoneCompany": "中国移动",
"result": "不一致"
},
"phoneVailRiskFlag": 1,
"phoneVailRisks": {
"num": "1",
"phoneCompany": "移动",
"phoneStatus": "沉默号",
"phoneTimes": "3(单位:月)"
},
"sfzeysFlag": 2,
"sjsysFlag": 1
},
"fraudRule": "高风险",
"fraudScore": 100,
"leasingRiskAssessment": {
"riskFlag": 2,
"threeCInstitutionApplicationCountLast12Months": "3/2",
"threeCInstitutionApplicationCountLast12MonthsNight": "0/0",
"threeCInstitutionApplicationCountLast12MonthsWeekend": "0/0",
"threeCInstitutionApplicationCountLast14Days": "0/0",
"threeCInstitutionApplicationCountLast14DaysNight": "0/0",
"threeCInstitutionApplicationCountLast14DaysWeekend": "0/0",
"threeCInstitutionApplicationCountLast3Days": "0/0",
"threeCInstitutionApplicationCountLast3DaysNight": "0/0",
"threeCInstitutionApplicationCountLast3DaysWeekend": "0/0",
"threeCInstitutionApplicationCountLast3Months": "2/1",
"threeCInstitutionApplicationCountLast3MonthsNight": "0/0",
"threeCInstitutionApplicationCountLast3MonthsWeekend": "0/0",
"threeCInstitutionApplicationCountLast6Months": "2/1",
"threeCInstitutionApplicationCountLast6MonthsNight": "0/0",
"threeCInstitutionApplicationCountLast6MonthsWeekend": "0/0",
"threeCInstitutionApplicationCountLast7Days": "0/0",
"threeCInstitutionApplicationCountLast7DaysNight": "0/0",
"threeCInstitutionApplicationCountLast7DaysWeekend": "0/0",
"threeCInstitutionApplicationCountLastMonth": "0/0",
"threeCInstitutionApplicationCountLastMonthNight": "0/0",
"threeCInstitutionApplicationCountLastMonthWeekend": "0/0",
"threeCPlatformApplicationCountLast12Months": "3/2",
"threeCPlatformApplicationCountLast12MonthsNight": "0/0",
"threeCPlatformApplicationCountLast12MonthsWeekend": "0/0",
"threeCPlatformApplicationCountLast14Days": "0/0",
"threeCPlatformApplicationCountLast14DaysNight": "0/0",
"threeCPlatformApplicationCountLast14DaysWeekend": "0/0",
"threeCPlatformApplicationCountLast3Days": "0/0",
"threeCPlatformApplicationCountLast3DaysNight": "0/0",
"threeCPlatformApplicationCountLast3DaysWeekend": "0/0",
"threeCPlatformApplicationCountLast3Months": "2/1",
"threeCPlatformApplicationCountLast3MonthsNight": "0/0",
"threeCPlatformApplicationCountLast3MonthsWeekend": "0/0",
"threeCPlatformApplicationCountLast6Months": "2/1",
"threeCPlatformApplicationCountLast6MonthsNight": "0/0",
"threeCPlatformApplicationCountLast6MonthsWeekend": "0/0",
"threeCPlatformApplicationCountLast7Days": "0/0",
"threeCPlatformApplicationCountLast7DaysNight": "0/0",
"threeCPlatformApplicationCountLast7DaysWeekend": "0/0",
"threeCPlatformApplicationCountLastMonth": "0/0",
"threeCPlatformApplicationCountLastMonthNight": "0/0",
"threeCPlatformApplicationCountLastMonthWeekend": "0/0"
},
"loanEvaluationVerificationDetail": {
"businessLoanPerformances": [
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "信用卡(类信用卡)"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "线上小额现金贷"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "汽车金融"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "线上消费分期"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "线下消费分期"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "其他"
}
],
"customerLoanPerformances": [
{
"last12Month": "2/0",
"last12MonthCount": "2/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "2/0",
"last6MonthCount": "2/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "银行汇总"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "传统银行"
},
{
"last12Month": "2/0",
"last12MonthCount": "2/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "2/0",
"last6MonthCount": "2/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "网络零售银行"
},
{
"last12Month": "2/2",
"last12MonthCount": "2/2",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "2/2",
"last6MonthCount": "2/2",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "非银汇总"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "持牌网络小贷"
},
{
"last12Month": "2/2",
"last12MonthCount": "2/2",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "2/2",
"last6MonthCount": "2/2",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "持牌消费金融"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "持牌融资租赁机构"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "持牌汽车金融"
}
],
"organLoanPerformances": [
{
"applyCount": "银行",
"last12Month": "2/0",
"last15Day": "0/0",
"last1Month": "0/0",
"last3Month": "0/0",
"last6Month": "2/0",
"last7Day": "0/0"
},
{
"applyCount": "非银",
"last12Month": "2/2",
"last15Day": "0/0",
"last1Month": "0/0",
"last3Month": "0/0",
"last6Month": "2/2",
"last7Day": "0/0"
}
],
"riskFlag": 1,
"timeLoanPerformances": [
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "夜间-银行"
},
{
"last12Month": "1/1",
"last12MonthCount": "1/1",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "1/1",
"last6MonthCount": "1/1",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "夜间-非银"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "周末-银行"
},
{
"last12Month": "0/0",
"last12MonthCount": "0/0",
"last15Day": "0/0",
"last15DayCount": "0/0",
"last1Month": "0/0",
"last1MonthCount": "0/0",
"last3Month": "0/0",
"last3MonthCount": "0/0",
"last6Month": "0/0",
"last6MonthCount": "0/0",
"last7Day": "0/0",
"last7DayCount": "0/0",
"type": "周末-非银"
}
]
},
"multCourtInfo": {
"disinCases": [],
"disinCasesFlag": 0,
"executionCases": [
{
"caseNumber": "2023赣1102执保608号",
"caseReason": "未知",
"caseStatus": "已结案",
"caseType": "财产保全执行",
"court": "上饶市信州区人民法院",
"disposalMethod": "部分保全",
"disposalTime": "2023-05-17",
"executionAmount": "",
"filingTime": "2023-05-12",
"judgmentResult": "",
"litigantType": "被申请人",
"repaidAmount": ""
}
],
"executionCasesFlag": 1,
"legalCases": [],
"legalCasesFlag": 1,
"limitCases": [],
"limitCasesFlag": 0
},
"overdueRiskProduct": {
"currentOverdueAmount": "1",
"currentOverdueInstitutionCount": "(0,1000)",
"daysSinceLastSuccessfulRepayment": "160+",
"dkzhktjFlag": 2,
"hasUnsettledOverdue": "逾期",
"lyjlhyFlag": 1,
"overdueLast14Days": "逾期",
"overdueLast1Day": "未逾期",
"overdueLast30Days": "逾期",
"overdueLast7Days": "未逾期",
"repaymentFailureAmountLast14Days": "(0,1000)",
"repaymentFailureAmountLast3Months": "(0,10000)",
"repaymentFailureAmountLast6Months": "[2000,30000)",
"repaymentFailureAmountLast7Days": "0",
"repaymentFailureAmountLastMonth": "(0,6000)",
"repaymentFailureCountLast14Days": "[5,15)",
"repaymentFailureCountLast3Months": "[56,+)",
"repaymentFailureCountLast6Months": "[70,+)",
"repaymentFailureCountLast7Days": "0",
"repaymentFailureCountLastMonth": "[5,34)",
"repaymentSuccessAmountLast14Days": "-",
"repaymentSuccessAmountLast3Months": "-",
"repaymentSuccessAmountLast6Months": "-",
"repaymentSuccessAmountLast7Days": "-",
"repaymentSuccessAmountLastMonth": "-",
"repaymentSuccessCountLast14Days": "-",
"repaymentSuccessCountLast3Months": "-",
"repaymentSuccessCountLast6Months": "-",
"repaymentSuccessCountLast7Days": "-",
"repaymentSuccessCountLastMonth": "-",
"settledInstitutionCount": "[17,+)",
"specialListVerification": [],
"totalLoanInstitutions": "[14,+)",
"totalLoanRepaymentAmount": "[68000,+)",
"tsmdyzFlag": 0
},
"reportUrl": "http://www.zhichajinkong.cn/manager/index.html#/v-report?tranId=******",
"riskSupervision": {
"details": "无",
"leastApplicationTime": "2025-06-02",
"rentalRiskListIdCardRelationsPhones": 0,
"rentalRiskListPhoneRelationsIdCards": 0
},
"riskWarning": {
"frequentApplicationRecent": 0,
"frequentBankApplications": 0,
"frequentNonBankApplications": 0,
"frequentRentalApplications": 0,
"gazdyrhyRiskCounts": 1,
"gazdyrhyRiskHighCounts": 1,
"gazdyrhyRiskMiddleCounts": 0,
"hasCriminalRecord": 0,
"highDebtPressure": 0,
"highFraudGangLevel": 1,
"hitAdministrativeCase": 0,
"hitBankruptcyAndLiquidation": 0,
"hitCivilCase": 0,
"hitCompensationCase": 0,
"hitCriminalRisk": 1,
"hitCurrentOverdue": 0,
"hitDirectlyUnderCase": 0,
"hitExecutionCase": 0,
"hitHighRiskBankLastTwoYears": 0,
"hitHighRiskNonBankLastTwoYears": 0,
"hitPreservationReview": 0,
"idCardPhoneProvinceMismatch": 0,
"idCardRiskCounts": 0,
"idCardRiskHighCounts": 0,
"idCardRiskMiddleCounts": 0,
"idCardTwoElementMismatch": 0,
"isAntiFraudInfo": 0,
"isDisrupSocial": 1,
"isEconomyFront": 0,
"isKeyPerson": 0,
"isTrafficRelated": 0,
"jdpgRiskCounts": 1,
"jdpgRiskHighCounts": 0,
"jdpgRiskMiddleCounts": 1,
"level": "C2,C5",
"moreFrequentBankApplications": 0,
"moreFrequentNonBankApplications": 0,
"noPhoneDuration": 1,
"phoneThreeElementMismatch": 0,
"sfhyfxRiskCounts": 1,
"sfhyfxRiskHighCounts": 1,
"sfhyfxRiskMiddleCounts": 0,
"shortPhoneDuration": 0,
"shortPhoneDurationSlight": 0,
"shortPhoneRiskCounts": 1,
"shortPhoneRiskHighCounts": 1,
"shortPhoneRiskMiddleCounts": 0,
"totalRiskCounts": 4,
"veryFrequentRentalApplications": 0,
"yqfxRiskCounts": 0,
"yqfxRiskHighCounts": 0,
"yqfxRiskMiddleCounts": 0,
"zlfxpgRiskCounts": 0,
"zlfxpgRiskHighCounts": 0,
"zlfxpgRiskMiddleCounts": 0
},
"standLiveInfo": {
"finalAuthResult": "0",
"inTime": "3",
"verification": "1"
},
"success": true,
"timestamp": "2025-01-20 21:19:58",
"verifyRule": "高风险"
}
}
},
{
"feature": {
"featureName": "收入评估",
"sort": 3
},
"data": {
"apiID": "JRZQ09J8",
"data": {
"level": "G"
},
"success": true,
"timestamp": "2025-01-20 21:19:58"
}
}
]

View File

@@ -0,0 +1,8 @@
<template>
<router-view />
</template>
<script setup>
// App 根组件,仅用于路由
</script>

View File

@@ -0,0 +1,25 @@
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
font-weight: normal;
}
html {
margin: auto !important;
@apply max-w-lg;
min-width: 320px;
}
body {
background-color: #f8f8f8;
min-height: 100vh;
transition: color 0.5s, background-color 0.5s;
line-height: 1.6;
font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
font-size: 15px;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

View File

@@ -0,0 +1,54 @@
/* 统一颜色变量管理文件 */
:root {
/* ===== 主题色系 ===== */
--color-primary: #5d7eeb;
--color-primary-50: #f0f3ff;
--color-primary-100: #e1e8ff;
--color-primary-200: #c3d1ff;
--color-primary-300: #a5baff;
--color-primary-400: #87a3ff;
--color-primary-500: #5d7eeb;
--color-primary-600: #4a63bc;
--color-primary-700: #38488d;
--color-primary-800: #252d5e;
--color-primary-900: #13122f;
--color-primary-light: rgba(93, 126, 235, 0.1);
--color-primary-medium: rgba(93, 126, 235, 0.15);
--color-primary-dark: rgba(93, 126, 235, 0.8);
/* ===== 语义化颜色 ===== */
--color-success: #07c160;
--color-warning: #ff976a;
--color-danger: #ee0a24;
--color-info: #1989fa;
/* ===== 中性色系 ===== */
--color-gray-50: #fafafa;
--color-gray-100: #f5f5f5;
--color-gray-200: #e5e5e5;
--color-gray-300: #d4d4d4;
--color-gray-400: #a3a3a3;
--color-gray-500: #737373;
--color-gray-600: #525252;
--color-gray-700: #404040;
--color-gray-800: #262626;
--color-gray-900: #171717;
/* ===== 文本颜色 ===== */
--color-text-primary: #323233;
--color-text-secondary: #646566;
--color-text-tertiary: #969799;
/* ===== 背景颜色 ===== */
--color-bg-primary: #ffffff;
--color-bg-secondary: #fafafa;
--color-bg-tertiary: #f8f8f8;
/* ===== 边框颜色 ===== */
--color-border-primary: #ebedf0;
}
.bg-primary {
background-color: var(--color-primary) !important;
}

View File

@@ -0,0 +1,75 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1024 1024" height="1024px" width="1024px">
<title>空空如也</title>
<defs>
<rect rx="22.1405405" height="1024" width="1024" y="0" x="0" id="path-1"></rect>
<linearGradient id="linearGradient-3" y2="64.8840762%" x2="50%" y1="-33.7184979%" x1="115.913479%">
<stop offset="0%" stop-color="#6CADFF"></stop>
<stop offset="100%" stop-opacity="0" stop-color="#FFFFFF"></stop>
</linearGradient>
<linearGradient id="linearGradient-4" y2="100%" x2="70.4980572%" y1="-20.569195%" x1="10.5031837%">
<stop offset="0%" stop-color="#6CADFF"></stop>
<stop offset="100%" stop-opacity="0" stop-color="#FFFFFF"></stop>
</linearGradient>
<linearGradient id="linearGradient-5" y2="104.73608%" x2="38.801584%" y1="-97.78046%" x1="100.191761%">
<stop offset="0%" stop-color="#6CADFF"></stop>
<stop offset="100%" stop-color="#FFFFFF"></stop>
</linearGradient>
<linearGradient id="linearGradient-6" y2="100%" x2="50%" y1="-27.9013949%" x1="50%">
<stop offset="0%" stop-color="#6CADFF"></stop>
<stop offset="100%" stop-opacity="0" stop-color="#FFFFFF"></stop>
</linearGradient>
<linearGradient id="linearGradient-7" y2="100%" x2="50%" y1="-27.9013949%" x1="50%">
<stop offset="0%" stop-color="#6CADFF"></stop>
<stop offset="100%" stop-opacity="0" stop-color="#FFFFFF"></stop>
</linearGradient>
<linearGradient id="linearGradient-8" y2="100%" x2="50%" y1="-221.1569%" x1="50%">
<stop offset="0%" stop-color="#D2D2D2"></stop>
<stop offset="100%" stop-opacity="0" stop-color="#D2D2D2"></stop>
</linearGradient>
<linearGradient id="linearGradient-9" y2="53.7335012%" x2="73.0360423%" y1="48.1527472%" x1="67.5652976%">
<stop offset="0%" stop-opacity="0" stop-color="#858585"></stop>
<stop offset="100%" stop-opacity="0.5" stop-color="#616161"></stop>
</linearGradient>
</defs>
<g fill-rule="evenodd" fill="none" stroke-width="1" stroke="none" id="空空如也">
<g>
<mask fill="white" id="mask-2">
<use xlink:href="#path-1"></use>
</mask>
<g id="蒙版"></g>
<g mask="url(#mask-2)" id="编组-3">
<g transform="translate(0, 238.0108)">
<g fill-rule="evenodd" fill="none" stroke-width="1" stroke="none" id="编组-2">
<g fill-rule="nonzero" transform="translate(162.5599, 0)" id="编组">
<polygon points="592.450826 498.100707 589.3555 489.432325 587.255101 479.632083 586.398359 469.500567 586.868185 459.341443 588.001295 452.660716 589.852963 446.421689 592.367915 440.541544 595.711972 435.158313 599.857498 430.520452 604.887401 426.517537 606.932527 428.091097 608.342006 430.133964 609.060564 432.508107 609.032927 435.075494 608.286732 439.989418 607.070711 451.308006 606.794343 463.813666 607.540538 469.25211 608.894743 472.371623 610.248947 473.448269 612.072979 473.393057 614.864299 471.791891 619.037461 467.319668 626.084854 456.884481 638.963619 434.136879 651.870021 411.527309 659.000324 400.705634 667.015006 390.325661 673.758394 383.451689 680.225413 378.42734 686.471338 374.921338 693.159452 372.491982 699.156645 371.470549 704.628738 371.691399 709.8521 373.126928 714.191083 375.639102 717.783871 379.283135 720.32646 383.755358 721.818849 389.331833 722.150491 396.343837 721.155565 403.328234 718.530066 411.610128 713.942351 421.493188 708.884811 429.471413 700.400302 443.19175 696.006046 451.031943 692.219799 458.706498 689.345568 466.270628 688.212458 472.09556 688.46119 475.601562 689.760121 477.920492 692.109252 479.438839 695.232214 479.714902 698.299903 479.052351 705.070927 476.540176 711.924862 473.393057 718.778797 470.383969 725.384001 468.258282 729.805894 467.595731 734.144877 467.8994 738.511497 469.224503 741.966102 471.377796 744.702148 474.055608 746.857821 477.368366 748.985858 483.000054 750.008421 489.349506 750.036057 495.864596 749.206952 502.158835 746.526179 511.40695 742.104286 520.737884 736.21764 529.406266 728.866242 537.16364 723.283601 541.608256 717.203498 545.25229 710.570657 548.123346 703.606175 550.000575 696.199503 550.745946 688.212458 550.359458 675.554788 548.09574 661.238907 544.396494 646.923027 539.537783 632.855878 533.464394 623.76336 528.688502 615.582857 523.526121 608.203822 517.977252 601.543344 511.683013 596.375256 505.140317 592.533736 498.349164" fill="url(#linearGradient-3)" id="路径"></polygon>
<polygon points="39.9075893 440.458725 31.7823599 436.096928 23.6571305 430.216783 16.222822 423.287598 9.75580266 415.447406 4.58771456 406.834236 1.21602073 397.834578 0.0552736694 391.623157 0 385.411737 1.05019972 379.117498 3.59278851 378.896647 5.99719313 379.421167 8.12522941 380.635845 9.83871316 382.54068 12.6023966 386.654021 19.2905106 395.87453 27.4986505 405.315889 31.6994494 408.849497 34.7947749 410.257419 36.5082587 410.146993 37.8348267 408.877103 38.8297528 405.840409 38.9403001 399.711807 37.1439059 387.26136 31.3401706 361.863552 25.7022563 336.465744 23.7676779 323.601202 22.8003886 310.488203 23.242578 300.881206 24.6520566 292.820163 26.9459139 286.056616 30.2899709 279.789983 34.0762172 275.014091 38.2770161 271.508089 43.1134622 269.078734 48.0051819 268.0573 53.1179963 268.333363 57.9820792 269.934529 62.8185253 273.081649 67.7655187 278.050785 71.6899493 283.903324 75.3103746 291.798729 78.5162474 302.206309 80.1191838 311.509637 83.0210515 327.383267 85.0385404 336.134468 87.4153082 344.361149 90.3448127 351.870067 93.4125013 356.977234 95.9550901 359.378984 98.4700421 360.234779 101.206089 359.765472 103.748678 357.888243 105.572709 355.320856 108.916766 348.916191 111.873907 342.014613 114.913959 335.195853 118.368563 329.23289 121.215157 325.782101 124.642125 323.159501 128.78765 321.254665 132.794991 320.509295 136.636511 320.674933 140.450394 321.696366 145.81194 324.429391 150.841844 328.459913 155.236101 333.291018 158.856526 338.508611 162.670409 345.575827 166.788298 354.823942 170.381086 364.762215 173.448775 375.639102 175.604448 386.764446 176.5441 397.641334 176.378279 404.874188 175.41099 411.499703 173.697506 417.628304 171.04437 423.315205 167.396308 428.173916 162.642772 432.314863 157.032495 435.62762 150.344381 438.691921 142.440246 441.424946 130.058944 444.572066 116.2958 446.835784 102.173378 448.160887 87.9956817 448.547375 74.0390802 447.967642 61.3537731 446.504508 49.4422973 443.964727 40.1563208 440.707182" fill="url(#linearGradient-4)" id="路径"></polygon>
<path fill="url(#linearGradient-5)" id="形状结合" d="M648.498327,284.510663 L644.71208,289.9215 L641.589118,295.939676 L639.350534,302.344341 L638.217424,308.914643 L638.355608,315.567765 L640.013818,322.165674 L642.224765,326.058164 L644.988449,328.92922 L647.94559,331.579426 L650.571089,334.505696 L652.284573,338.039304 L652.83731,343.588173 L651.648926,349.689168 L649.576163,355.458887 L646.619022,360.952544 L640.428371,370.780391 L633.408615,379.945687 L625.615028,388.53125 L630.092195,393.086292 L633.159883,398.524736 L634.735183,404.570518 L634.707546,410.947577 L633.215157,417.186603 L630.755479,423.066748 L627.411422,428.477585 L623.210623,433.336296 L620.115297,436.234959 L616.384325,438.25022 L612.459894,438.691921 L608.535464,438.25022 L595.960704,435.517195 L583.77286,431.624705 L571.944295,426.57275 L566.555112,423.729299 L561.608118,420.250904 L557.545504,416.027138 L554.864731,410.91997 L554.035626,406.723811 L554.25672,403.769935 L555.251646,401.699462 L557.877146,399.049256 L561.41466,396.895963 L562.685955,396.178199 L566.30638,393.886875 L569.180611,390.822574 L571.253374,386.129501 L572.524668,380.939514 L574.127604,370.55954 L575.150167,359.075314 L575.896362,352.781075 L577.444025,347.121781 L579.212782,343.864236 L581.783008,341.352061 L585.292886,339.557651 L592.533736,338.260154 L599.74695,336.935051 L604.389938,334.754152 L608.176185,331.827883 L611.243873,328.128637 L614.974846,321.696366 L618.180719,314.518725 L618.899277,312.751921 L622.630249,304.663271 L624.785922,300.908813 L627.273238,297.568449 L630.313289,294.86303 L634.292994,292.461281 L642.611681,288.430759 L646.28738,286.387892 L648.498327,284.510663 Z M619.009824,341.73855 L615.195941,346.514442 L606.158696,359.323771 L600.935334,367.854122 L595.463241,378.013245 L590.626795,388.807313 L586.702364,400.346752 L584.795423,408.269764 L583.717586,416.192776 L583.468855,424.115788 L595.325057,424.115788 L596.319983,416.109957 L599.912771,395.929742 L602.925186,383.313657 L607.153622,369.234437 L612.432257,355.238037 L619.009824,341.73855 Z"></path>
<polygon points="125.250135 60.7614951 125.250135 60.7614951 124.559214 54.3016178 122.431178 48.4214731 119.059484 43.2314863 114.55468 38.9249014 109.165497 35.7777818 102.947209 33.9005525 96.4525532 33.5416704 90.3171759 34.7011355 84.6239879 37.21331 79.6769945 40.9677686 75.6972903 45.7712671 72.8783332 51.6238055 66.8258663 52.3415696 61.3537731 54.5500746 56.6278743 58.111289 52.9245385 62.9147875 50.658318 68.5464754 49.9673972 74.3990138 50.8517759 80.2515521 53.3114542 85.8004211 57.1529742 90.4934943 61.9894203 93.8890708 67.5444241 95.931938 73.569254 96.4564579 123.011551 96.4564579 127.626903 95.7663001 131.634244 94.1375276 135.171759 91.5149279 137.963079 88.1193514 139.78711 84.1992549 140.699126 79.6442132 140.367484 74.9787463 139.013279 70.8654057 136.664148 67.1661597 133.513549 64.1294653 129.727302 62.0037792" fill="url(#linearGradient-6)" id="路径"></polygon>
<polygon points="329.569254 33.7073083 329.569254 33.5416704 329.127065 28.130833 327.911044 23.0788777 325.921192 18.3305919 321.665119 11.9259273 316.054842 6.65312145 311.715859 3.89249014 306.934686 1.84962298 301.656051 0.496913635 296.266868 0 291.071143 0.35888207 286.041239 1.49074091 278.993846 4.61025428 272.858469 9.22050857 269.376228 13.0301798 266.557271 17.3643709 264.318687 22.305901 259.205873 22.8856335 254.507611 24.2383429 250.196265 26.364029 246.299471 29.2074792 243.010688 32.6030557 240.302278 36.5783648 238.284789 40.9677686 237.096405 45.6608418 236.681853 50.7956161 237.234589 55.902784 238.588794 60.5682509 240.744467 64.8748357 243.591061 68.7673259 246.990392 72.0524771 250.970096 74.7855021 255.364353 76.7731567 260.062615 77.9878345 265.203066 78.3743228 326.612113 78.3743228 332.360574 77.6565587 337.501026 75.5860852 341.950556 72.3285403 345.488071 68.1047744 347.892475 63.1080317 348.997949 57.4211312 348.611033 51.6514118 346.842276 46.378606 343.885134 41.7683517 339.877793 37.9862868 335.041347 35.2808681 329.403433 33.8453398" fill="url(#linearGradient-7)" id="路径"></polygon>
</g>
<polygon points="1024 550.359458 999.596675 534.403009 973.839145 519.164324 946.672136 504.615797 918.040376 490.785034 889.159883 478.224161 859.118644 466.491478 827.833747 455.669804 795.305193 445.703925 762.693728 437.007936 729.114974 429.360987 694.541293 422.735472 658.917413 417.186603 623.348807 412.880018 587.034006 409.760505 549.945374 407.883276 512 407.193118 474.054626 407.883276 436.965994 409.760505 400.623556 412.880018 365.082587 417.186603 329.458707 422.735472 294.885026 429.360987 261.306272 437.007936 228.694807 445.703925 196.166253 455.669804 164.881356 466.491478 134.840117 478.224161 105.931987 490.785034 77.3278635 504.615797 50.160855 519.164324 24.4033251 534.403009 0 550.359458" fill-rule="nonzero" fill="url(#linearGradient-8)" id="路径"></polygon>
</g>
<polygon points="168.585366 389.215532 314.612039 389.215532 461.536985 469.266954 317.214646 465.594981" fill-rule="nonzero" fill="url(#linearGradient-9)" stroke="none" id="矩形"></polygon>
<polygon points="481.155803 208.25638 479.722777 299.451613 688.569371 236.303345" fill-rule="nonzero" fill="#B8D6FF" stroke="none" id="路径"></polygon>
<polygon points="314.788219 244.959395 481.155803 208.631248 481.155803 264.00952" fill-rule="nonzero" fill="#9CC6FF" stroke="none" id="路径"></polygon>
<polygon points="314.788219 244.959395 511.147006 264.384388 511.147006 512.547202 314.788219 465.075243" fill-rule="nonzero" fill="#64ADFF" stroke="none" id="路径"></polygon>
<polygon points="314.788219 244.959395 511.283486 263.617612 489.889892 383.428742 314.788219 346.994453" fill-rule="nonzero" fill="#429BFF" stroke="none" id="矩形"></polygon>
<polygon points="511.147006 264.384388 688.569371 236.303345 688.569371 458.600245 511.147006 512.547202" opacity="0.99" fill-rule="nonzero" fill="#9CC5FF" stroke="none" id="路径"></polygon>
<polygon points="511.283486 264.997809 671.897967 239.34913 688.569371 344.292902 535.025228 383.428742" fill-rule="nonzero" fill="#64ADFF" stroke="none" id="矩形"></polygon>
<polygon points="314.788219 244.959395 267.566573 324.806343 465.801946 362.565804 511.147006 264.384388" fill-rule="nonzero" fill="#9CC6FF" stroke="none" id="路径"></polygon>
<polygon points="511.147006 264.384388 566.898574 362.565804 745.583366 317.786082 688.569371 236.303345" opacity="0.99" fill-rule="nonzero" fill="#9DC6FF" stroke="none" id="路径"></polygon>
<path stroke-dasharray="11.05477807439905,8.29108355579929" fill="none" stroke-width="5.52738904" stroke="#9DC6FF" id="路径-19" d="M583.139543,151.843183 C532.695151,184.875351 501.824507,214.257045 511.001904,232.450753 C523.475834,257.179661 544.659409,246.913618 547.874,236.537816 C551.088588,226.162013 542.242035,205.908265 523.475834,216.933951 C504.709635,227.959637 484.261479,247.732311 479.722777,267.098145"></path>
<g transform="translate(555.0939, 41.4059)" fill-rule="evenodd" fill="none" stroke-width="1" stroke="none" id="飞机">
<polygon points="163.057977 9.09494702e-13 0 30.854292 41.4554178 58.3378535" fill-rule="nonzero" fill="#9DC6FF" id="路径-16备份"></polygon>
<polygon points="163.057977 0 41.4554178 58.3378535 41.4554178 104.894966" fill-rule="nonzero" fill="#64ADFF" id="路径-16备份-2"></polygon>
<polygon points="163.057977 0 41.4554178 58.3378535 65.4910753 84.1769753" fill-rule="nonzero" fill="#429BFF" id="路径-16备份-2"></polygon>
<polygon points="163.057977 0 58.9237102 70.0692202 108.951745 102.134572" fill-rule="nonzero" fill="#9DC6FF" id="路径-16备份"></polygon>
<line stroke-linecap="round" stroke-width="2.76369452" stroke="#429BFF" id="路径-16" y2="32.1173295" x2="0.501635492" y1="58.3378535" x1="41.4554178"></line>
<line stroke-linecap="round" stroke-width="2.76369452" stroke="#429BFF" id="路径-17" y2="101.744072" x2="107.648858" y1="71.0666294" x1="59.7211085"></line>
<line stroke-linecap="round" stroke-width="2.76369452" stroke="#429BFF" id="路径-18" y2="103.502333" x2="41.4554178" y1="58.3378535" x1="41.4554178"></line>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 816 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Some files were not shown because too many files have changed in this diff Show More