已开启
feat: add AutomotiveApplication 汽车类应用示例(纯仓颉实现) #423
feat: add AutomotiveApplication 汽车类应用示例(纯仓颉实现) #423
已开启
stwilliam503388创建于 5 天前
116 个文件变更+2740-0
@@ -0,0 +1,38 @@
1+# Build outputs
2+build/
3+default/
4+*.hap
5+*.app
6+ 
7+# IDE
8+.idea/
9+.vscode/
10+*.iml
11+ 
12+# Logs
13+*.log
14+ 
15+# OS
16+.DS_Store
17+Thumbs.db
18+ 
19+# Temporary files
20+*.tmp
21+*.temp
22+~$*
23+ 
24+# HarmonyOS specific
25+.ohos/
26+hvigor/
27+/node_modules/
28+ 
29+# Local configuration
30+local.properties
31+.env
32+ 
33+**/cj_res
34+**/*.cj.macrocall
35+**/ability_mainability_entry.cj
36+**/module_**_entry.cj
37+**/IDL_Dependencies_List~
38+**/build-script-cache
@@ -0,0 +1,10 @@
1+{
2+ "app": {
3+ "bundleName": "com.example.autoapp",
4+ "vendor": "example",
5+ "versionCode": 1000000,
6+ "versionName": "1.0.0",
7+ "icon": "$media:layered_image",
8+ "label": "$string:app_name"
9+ }
10+}
@@ -0,0 +1,8 @@
1+{
2+ "string": [
3+ {
4+ "name": "app_name",
5+ "value": "AUTO"
6+ }
7+ ]
8+}
@@ -0,0 +1,126 @@
1+# AutoApp - 汽车类应用(纯仓颉语言实现)
2+ 
3+> 完全使用仓颉(Cangjie)语言编写的汽车类 HarmonyOS 应用,基于华为开发者社区的「汽车应用架构设计案例」实现,演示 **Tabs 多模块导航 + 数据/UI 分离** 的纯仓颉工程组织方式。
4+ 
5+## 场景介绍
6+ 
7+汽车资讯/商城/选车/服务类应用是车载与手机端汽车生态的典型场景。本示例实现了汽车类应用的 **5 个核心功能模块**,全部 UI 与业务逻辑使用仓颉语言编写:
8+ 
9+| 模块 | 功能描述 |
10+|------|---------|
11+| **首页** | 汽车资讯流、快捷入口(试驾/保养/救援等)、分类 Tab(关注/推荐/热榜/兴趣/精品) |
12+| **商城** | 商品分类、充电桩等商品列表、购物车入口 |
13+| **选车** | 品牌展示(比亚迪/特斯拉/问界等 8 品牌)、价格/能源筛选、车型卡片列表 |
14+| **服务** | 充电服务(地图占位+扫码充电/最优站点)、保养/救援/违章等网格服务 |
15+| **我的** | 用户数据(关注/粉丝/收藏/足迹)、订单/积分/优惠券等菜单 |
16+ 
17+## 实现思路
18+ 
19+### 1. Tabs + 自定义底栏 tabBuilder
20+ 
21+主入口 `EntryView` 使用 `Tabs` 承载 5 个 `TabContent`,底栏图标与文案通过 `@Builder tabBuilder` 自定义绘制,选中态由 `currentIndex` 驱动颜色/字重切换:
22+ 
23+```cangjie
24+@Entry
25+@Component
26+class EntryView {
27+ @State var currentIndex: Int32 = 0
28+ var controller: TabsController = TabsController()
29+ 
30+ @Builder
31+ func tabBuilder(index: Int32) {
32+ Column() {
33+ Image("app.media.${this.tabIcons[Int64(index)]}") // 动态资源名
34+ .fillColor(if (this.currentIndex == index) { 0xff0a59f7 } else { 0xff999999 })
35+ Text(this.tabTitles[Int64(index)])
36+ .fontWeight(if (this.currentIndex == index) { FontWeight.Bold } else { FontWeight.Normal })
37+ }
38+ }
39+ 
40+ func build() {
41+ Tabs(controller: this.controller, index: this.currentIndex) {
42+ TabContent() { ExplorePageView() }.tabBar({=>bind(this.tabBuilder, this)(0)})
43+ // ... 共 5 个模块
44+ }
45+ .onChange({index: Int32 => this.currentIndex = index; ()})
46+ }
47+}
48+```
49+ 
50+### 2. bind 修复闭包 this 丢失
51+ 
52+仓颉闭包内 `this` 语义与 ArkTS 箭头函数不同,`tabBar` 回调中直接引用 `this.tabBuilder` 会丢失组件上下文,需用 `bind(this.tabBuilder, this)` 显式绑定:
53+ 
54+```cangjie
55+TabContent() { ... }.tabBar({=>bind(this.tabBuilder, this)(1)})
56+```
57+ 
58+### 3. 数据与 UI 分离(DataProvider)
59+ 
60+所有模块数据集中在 `DataProvider.cj``AppData` 静态类中,按数据模型类(`ActivityData`/`CommodityData`/`CarModelData`/`MenuItemData`)组织,页面组件只消费数据不持有数据,替换为真实网络数据源时只需改动这一个文件:
61+ 
62+```cangjie
63+public class AppData {
64+ public static let tabs: Array<String> = ["首页", "商城", "选车", "服务", "我的"]
65+ public static let brands: Array<String> = ["比亚迪", "特斯拉", "问界", "理想", "小鹏", "蔚来", "小米", "极氪"]
66+ public static let carModels: Array<CarModelData> = [
67+ CarModelData("问界M7", "增程式SUV | 自动驾驶", "¥28.98万起", "热销", "增程"),
68+ // ...
69+ ]
70+}
71+```
72+ 
73+### 4. 单文件多页面视图组织
74+ 
75+`index.cj`(623 行)内以 `@Component class XxxPageView` 组织 5 个模块页面视图,每页控制在一个屏幕代码量内;页面间零耦合,可按需拆分为独立文件。
76+ 
77+## 功能特性
78+ 
79+- ✅ 底部 5 Tab 导航(图标+文案,选中态高亮联动)
80+- ✅ 首页资讯流 + 分类 Tab + 8 宫格快捷入口
81+- ✅ 商城分类与商品列表
82+- ✅ 选车:品牌墙 + 价格/能源筛选 + 车型卡片
83+- ✅ 服务:充电/保养/救援/用车服务分区展示
84+- ✅ 我的:用户统计 + 订单/积分/优惠券菜单
85+- ✅ 数据/UI 完全分离,91 个媒体资源本地内置,开箱即运行
86+ 
87+## 环境要求
88+ 
89+| 组件 | 版本要求 |
90+|------|---------|
91+| DevEco Studio | 6.0.0 Release 或更高(含 Cangjie 支持) |
92+| HarmonyOS SDK | 6.0.2(22),API Level 22 |
93+| 仓颉编译器 | 1.1.0 |
94+| Node.js | 14.x+(构建工具依赖) |
95+ 
96+## 使用说明
97+ 
98+1. DevEco Studio 打开本目录:`File -> Open -> 选择 AutomotiveApplication`
99+2. 确认 HarmonyOS SDK 6.0.2(22) 已安装,等待仓颉依赖解析完成
100+3. `Build -> Build Hap(s)/APP(s)` 构建后,连接设备或模拟器点击 Run 运行
101+4. 命令行构建:`hvigorw assembleHap`(需配置 SDK 环境变量),产物位于 `entry/build/default/outputs/default/`
102+ 
103+## 工程目录
104+ 
105+```
106+entry/src/main/cangjie/
107+├── index.cj # 主入口 EntryView(Tabs 容器+底栏)+ 5 个模块 PageView(623 行)
108+├── DataProvider.cj # 全模块静态数据源(125 行):ActivityData/CommodityData/CarModelData/MenuItemData/AppData
109+├── CommonConstants.cj # 公共常量(97 行)
110+├── main_ability.cj # Ability 生命周期
111+├── ability_stage.cj # Stage 模型配置
112+├── ability_mainability_entry.cj / module_entry_entry.cj # 入口桩
113+└── ../resources/base/media/ # 91 个媒体资源(品牌车标、商品图等)
114+```
115+ 
116+## 难点与踩坑记录
117+ 
118+- 仓颉闭包中 `this` 指向与 ArkTS 不同:`tabBar` 构建回调必须 `bind(this.tabBuilder, this)` 显式绑定组件上下文,否则底栏渲染空白
119+- 底栏图标需随选中态变色:`Image` 使用 `fillColor` 而非换图,减少资源冗余;资源名通过字符串插值 `"app.media.${name}"` 动态构造
120+- 媒体资源较多(91 张图)导致 HAP 体积偏大:按模块归类资源目录,统一命名前缀便于检索
121+- 大量短样式(fontSize/fontColor/borderRadius)重复:抽公共 `@Builder`(如 `tabItem`/`brandItem`/`serviceItem`)收敛列表项绘制
122+- `Tabs.onChange` 回调签名为 `{index: Int32 => ...; ()}`:lambda 末尾需显式返回 Unit,与直觉写法略有差异
123+ 
124+## 原项目
125+ 
126+本项目源自个人原创仓库:[AutomotiveApplication](https://github.com/stwilliam503388-creator/AutomotiveApplication)
@@ -0,0 +1,56 @@
1+{
2+ "app": {
3+ "signingConfigs": [
4+ {
5+ "name": "default",
6+ "type": "HarmonyOS",
7+ "material": {
8+ "certpath": "C:\\Users\\45316\\.ohos\\config\\default_AutoApp_mkg12noH7YKKFv6AIdm6EYAFgITxJzcwhY9lMSE-nmg=.cer",
9+ "keyAlias": "debugKey",
10+ "keyPassword": "0000001A4DFC6793F233D851EF9AFDAF2802CA2DC440067F997580593752A66D91454E62AE08778C0AED",
11+ "profile": "C:\\Users\\45316\\.ohos\\config\\default_AutoApp_mkg12noH7YKKFv6AIdm6EYAFgITxJzcwhY9lMSE-nmg=.p7b",
12+ "signAlg": "SHA256withECDSA",
13+ "storeFile": "C:\\Users\\45316\\.ohos\\config\\default_AutoApp_mkg12noH7YKKFv6AIdm6EYAFgITxJzcwhY9lMSE-nmg=.p12",
14+ "storePassword": "0000001AA3A88208B8B521DB76A677E6BC0104DC233D35472D72858E38AF0E56CC5044D1AD324384DE1A"
15+ }
16+ }
17+ ],
18+ "products": [
19+ {
20+ "name": "default",
21+ "signingConfig": "default",
22+ "targetSdkVersion": "6.0.2(22)",
23+ "compatibleSdkVersion": "6.0.2(22)",
24+ "runtimeOS": "HarmonyOS",
25+ "buildOption": {
26+ "strictMode": {
27+ "caseSensitiveCheck": true,
28+ "useNormalizedOHMUrl": true
29+ }
30+ }
31+ }
32+ ],
33+ "buildModeSet": [
34+ {
35+ "name": "debug",
36+ },
37+ {
38+ "name": "release"
39+ }
40+ ]
41+ },
42+ "modules": [
43+ {
44+ "name": "entry",
45+ "srcPath": "./entry",
46+ "targets": [
47+ {
48+ "name": "default",
49+ "applyToProducts": [
50+ "default"
51+ ]
52+ }
53+ ]
54+ }
55+ ]
56+}
@@ -0,0 +1,9 @@
1+@echo off
2+setlocal
3+set DEVECO_SDK_HOME=D:\software\DevEco Studio\sdk\default
4+set DEVECO_CANGJIE_HOME=D:\software\DevEco Studio\sdk\default\openharmony
5+set DEVECO_OH_NATIVE_HOME=D:\software\DevEco Studio\sdk\default\openharmony\native
6+ 
7+"D:\software\DevEco Studio\tools\hvigor\bin\hvigorw.bat" assembleHap --mode module -p module=entry@default -p product=default
8+ 
9+endlocal
@@ -0,0 +1,218 @@
1+#!/usr/bin/env python3
2+"""跨平台 HarmonyOS 构建脚本,等效于 build.ps1。"""
3+ 
4+import argparse
5+import os
6+import platform
7+import subprocess
8+import sys
9+from pathlib import Path
10+ 
11+ 
12+def load_env(env_file: Path) -> dict:
13+ """读取 .env 文件,返回键值对。"""
14+ env = {}
15+ if not env_file.exists():
16+ return env
17+ for line in env_file.read_text(encoding="utf-8").splitlines():
18+ line = line.strip()
19+ if "=" in line and not line.startswith("#"):
20+ key, value = line.split("=", 1)
21+ key = key.strip()
22+ value = value.strip().strip("'").strip('"').strip()
23+ env[key] = value
24+ return env
25+ 
26+ 
27+def detect_version(project_root: Path) -> str:
28+ """从 .openvk-version 读取版本,不存在时默认 8k 并写入文件。"""
29+ version_file = project_root / ".openvk-version"
30+ if version_file.exists():
31+ version = version_file.read_text(encoding="utf-8").strip()
32+ if version in ("8k", "15k"):
33+ return version
34+ # 默认 8k
35+ version_file.write_text("8k", encoding="utf-8")
36+ print("\033[33m未检测到有效版本,已默认写入 8k 到 .openvk-version\033[0m")
37+ return "8k"
38+ 
39+ 
40+def find_cangjie_sdk(version: str) -> str | None:
41+ """自动在 ~/.cangjie-sdk/ 下检测对应版本的仓颉 SDK 路径。"""
42+ base = Path.home() / ".cangjie-sdk"
43+ if not base.exists():
44+ return None
45+ 
46+ # 按版本号倒序扫描(优先取最新)
47+ version_dirs = sorted(
48+ [d for d in base.iterdir() if d.is_dir()],
49+ key=lambda p: p.name,
50+ reverse=True,
51+ )
52+ 
53+ for vd in version_dirs:
54+ if version == "8k":
55+ sdk_path = vd / "cangjie"
56+ if sdk_path.exists():
57+ return str(sdk_path)
58+ elif version == "15k":
59+ compat_dirs = sorted(vd.glob("compatibility-sdk-*"), reverse=True)
60+ for cd in compat_dirs:
61+ sdk_path = cd / "compatibility"
62+ if sdk_path.exists():
63+ return str(sdk_path)
64+ return None
65+ 
66+ 
67+def run_cmd(cmd: list, env: dict, cwd: str | None = None):
68+ """执行命令并实时输出,失败时退出。"""
69+ print(f"\033[90m>>> {' '.join(str(c) for c in cmd)}\033[0m")
70+ result = subprocess.run(cmd, env=env, cwd=cwd)
71+ if result.returncode != 0:
72+ print(f"\033[31m命令失败,返回码: {result.returncode}\033[0m")
73+ sys.exit(result.returncode)
74+ 
75+ 
76+def capture_env_from_cangjie_setup(cangjie_sdk: str, env: dict) -> dict:
77+ """执行仓颉 SDK 的 envsetup 脚本并捕获环境变量变化。"""
78+ updated = dict(env)
79+ is_windows = platform.system() == "Windows"
80+ 
81+ if is_windows:
82+ script = Path(cangjie_sdk) / "build-tools" / "envsetup.ps1"
83+ if not script.exists():
84+ return updated
85+ cmd = [
86+ "powershell",
87+ "-NoProfile",
88+ "-Command",
89+ f'. "{script}"; Get-ChildItem Env: | ForEach-Object {{ "$($_.Name)=$($_.Value)" }}',
90+ ]
91+ else:
92+ script = Path(cangjie_sdk) / "build-tools" / "envsetup.sh"
93+ if not script.exists():
94+ return updated
95+ cmd = ["bash", "-c", f'source "{script}" && env']
96+ 
97+ result = subprocess.run(cmd, capture_output=True, text=True, env=env)
98+ if result.returncode == 0:
99+ for line in result.stdout.splitlines():
100+ if "=" in line:
101+ k, v = line.split("=", 1)
102+ updated[k] = v
103+ return updated
104+ 
105+ 
106+def main():
107+ parser = argparse.ArgumentParser(description="HarmonyOS 跨平台构建脚本")
108+ parser.add_argument(
109+ "-v",
110+ "--version",
111+ choices=["8k", "15k"],
112+ default=None,
113+ help="构建版本(8k 或 15k),未指定时从 .openvk-version 读取",
114+ )
115+ args = parser.parse_args()
116+ 
117+ # --- 项目根目录 ---
118+ project_root = Path(__file__).resolve().parent
119+ os.chdir(project_root)
120+ print(f"\033[32m已切换至项目根目录: {project_root}\033[0m")
121+ 
122+ # --- 版本检测 ---
123+ version = args.version or detect_version(project_root)
124+ print(f"\033[36m当前构建版本: {version}\033[0m")
125+ 
126+ # --- 读取 .env ---
127+ env_config = load_env(project_root / ".env")
128+ deveco_home_str = env_config.get("DEVECO_HOME", "")
129+ if not deveco_home_str:
130+ print("\033[31m错误: .env 文件中未配置 DEVECO_HOME\033[0m")
131+ sys.exit(1)
132+ deveco_home = Path(deveco_home_str)
133+ if not deveco_home.exists():
134+ print(f"\033[31m错误: DEVECO_HOME 路径不存在: {deveco_home}\033[0m")
135+ sys.exit(1)
136+ 
137+ # --- 自动检测仓颉 SDK(.env 显式配置可覆盖) ---
138+ sdk_key = f"CANGJIE_SDK_HOME-{version}"
139+ env_override = env_config.get(sdk_key)
140+ 
141+ cangjie_sdk = find_cangjie_sdk(version)
142+ if env_override and Path(env_override).exists():
143+ cangjie_sdk = env_override
144+ print(f"\033[36m使用 .env 中显式配置的仓颉 SDK: {cangjie_sdk}\033[0m")
145+ elif cangjie_sdk:
146+ print(f"\033[36m已自动检测仓颉 SDK [{version}]: {cangjie_sdk}\033[0m")
147+ else:
148+ print(f"\033[31m错误: 未找到版本 [{version}] 对应的仓颉 SDK\033[0m")
149+ print(f"请确认 SDK 已安装在 ~/.cangjie-sdk/ 目录下")
150+ sys.exit(1)
151+ 
152+ # --- 验证 DevEco SDK ---
153+ deveco_sdk = deveco_home / "sdk"
154+ if not deveco_sdk.exists():
155+ print(f"\033[31m错误: SDK 路径不存在: {deveco_sdk}\033[0m")
156+ sys.exit(1)
157+ print(f"\033[32mSDK 路径验证成功: {deveco_sdk}\033[0m")
158+ 
159+ # --- 构建运行环境 ---
160+ env = os.environ.copy()
161+ env["DEVECO_HOME"] = str(deveco_home)
162+ env["DEVECO_SDK_HOME"] = str(deveco_sdk)
163+ env["CANGJIE_SDK_HOME"] = cangjie_sdk
164+ env["DEVECO_CANGJIE_PATH"] = cangjie_sdk
165+ 
166+ # 执行仓颉 envsetup 脚本
167+ env = capture_env_from_cangjie_setup(cangjie_sdk, env)
168+ print(f"\033[36m已执行仓颉 SDK 环境配置\033[0m")
169+ 
170+ # 注入 Java 环境
171+ java_home = deveco_home / "jbr"
172+ if java_home.exists():
173+ env["JAVA_HOME"] = str(java_home)
174+ java_bin = str(java_home / "bin")
175+ env["PATH"] = java_bin + os.pathsep + env.get("PATH", "")
176+ print(f"\033[36m已注入 Java 环境: {java_home}\033[0m")
177+ else:
178+ print(f"\033[33m警告: 未找到 Java 运行时: {java_home}\033[0m")
179+ 
180+ # --- 工具路径(跨平台) ---
181+ is_windows = platform.system() == "Windows"
182+ ohpm = deveco_home / "tools" / "ohpm" / "bin" / ("ohpm.bat" if is_windows else "ohpm")
183+ node = deveco_home / "tools" / "node" / ("node.exe" if is_windows else "node")
184+ hvigorw = deveco_home / "tools" / "hvigor" / "bin" / "hvigorw.js"
185+ 
186+ # --- 执行构建流程 ---
187+ print("\033[35m开始安装依赖...\033[0m")
188+ if ohpm.exists():
189+ run_cmd(
190+ [str(ohpm), "install", "--all",
191+ "--registry", "https://ohpm.openharmony.cn/ohpm/",
192+ "--strict_ssl", "true"],
193+ env=env,
194+ )
195+ 
196+ print("\033[35m执行 SyncCangjieResource...\033[0m")
197+ run_cmd(
198+ [str(node), str(hvigorw),
199+ "--mode", "module", "-p", "module=entry@default",
200+ "SyncCangjieResource",
201+ "--analyze=normal", "--parallel", "--incremental", "--no-daemon"],
202+ env=env,
203+ )
204+ 
205+ print("\033[35m执行 assembleHap...\033[0m")
206+ run_cmd(
207+ [str(node), str(hvigorw),
208+ "--mode", "module", "-p", "product=default",
209+ "assembleHap",
210+ "--analyze=normal", "--parallel", "--incremental", "--no-daemon"],
211+ env=env,
212+ )
213+ 
214+ print("\033[32m构建完成!\033[0m")
215+ 
216+ 
217+if __name__ == "__main__":
218+ main()
@@ -0,0 +1,33 @@
1+{
2+ "files": [
3+ "**/*.ets",
4+ "**/*.cj"
5+ ],
6+ "ignore": [
7+ "**/src/ohosTest/**/*",
8+ "**/src/test/**/*",
9+ "**/src/mock/**/*",
10+ "**/node_modules/**/*",
11+ "**/oh_modules/**/*",
12+ "**/build/**/*",
13+ "**/.preview/**/*"
14+ ],
15+ "ruleSet": [
16+ "plugin:@performance/recommended",
17+ "plugin:@typescript-eslint/recommended"
18+ ],
19+ "rules": {
20+ "@security/no-unsafe-aes": "error",
21+ "@security/no-unsafe-hash": "error",
22+ "@security/no-unsafe-mac": "warn",
23+ "@security/no-unsafe-dh": "error",
24+ "@security/no-unsafe-dsa": "error",
25+ "@security/no-unsafe-ecdsa": "error",
26+ "@security/no-unsafe-rsa-encrypt": "error",
27+ "@security/no-unsafe-rsa-sign": "error",
28+ "@security/no-unsafe-rsa-key": "error",
29+ "@security/no-unsafe-dsa-key": "error",
30+ "@security/no-unsafe-dh-key": "error",
31+ "@security/no-unsafe-3des": "error"
32+ }
33+}
@@ -0,0 +1,20 @@
1+{
2+ "apiType": "stageMode",
3+ "buildOption": {
4+ "cangjieOptions": {
5+ "path": "./cjpm.toml"
6+ },
7+ "nativeLib": {
8+ "filter": {
9+ "enableOverride": true
10+ }
11+ }
12+ },
13+ "buildOptionSet": [
14+ ],
15+ "targets": [
16+ {
17+ "name": "default"
18+ }
19+ ]
20+}
@@ -0,0 +1,38 @@
1+[package]
2+ cjc-version = "1.1.0"
3+ compile-option = "--dy-std --cfg=\"${COMPILE_CONDITION_ENTRY}\""
4+ description = "CangjieUI Application - AutoApp"
5+ link-option = ""
6+ name = "ohos_app_cangjie_entry"
7+ output-type = "dynamic"
8+ src-dir = "./src/main/cangjie"
9+ target-dir = ""
10+ version = "1.0.0"
11+ package-configuration = {}
12+ scripts = {}
13+ 
14+[profile]
15+ [profile.build]
16+ incremental = true
17+ lto = ""
18+ [profile.build.combined]
19+ ohos_app_cangjie_entry = "dynamic"
20+ [profile.customized-option]
21+ debug = "-g -Woff all -Won apilevel-check"
22+ release = "--fast-math -O2 -s -Woff all -Won apilevel-check"
23+ [profile.test]
24+ 
25+[target.aarch64-linux-ohos]
26+ compile-option = "-B \"${DEVECO_CANGJIE_HOME}/build-tools/third_party/llvm/bin\" -B \"${DEVECO_OH_NATIVE_HOME}/sysroot/usr/lib/aarch64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/sysroot/usr/lib/aarch64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/llvm/lib/aarch64-linux-ohos\" --sysroot \"${DEVECO_OH_NATIVE_HOME}/sysroot\""
27+[target.aarch64-linux-ohos.bin-dependencies]
28+ path-option = ["${AARCH64_LIBS}", "${AARCH64_MACRO_LIBS}", "${AARCH64_KIT_LIBS}"]
29+ package-option = {}
30+ 
31+[target.x86_64-linux-ohos]
32+ compile-option = "-B \"${DEVECO_CANGJIE_HOME}/build-tools/third_party/llvm/bin\" -B \"${DEVECO_OH_NATIVE_HOME}/sysroot/usr/lib/x86_64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/sysroot/usr/lib/x86_64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/llvm/lib/clang/15.0.4/lib/x86_64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/llvm/lib/x86_64-linux-ohos\" --sysroot \"${DEVECO_OH_NATIVE_HOME}/sysroot\""
33+[target.x86_64-linux-ohos.bin-dependencies]
34+ path-option = ["${X86_64_OHOS_LIBS}", "${X86_64_OHOS_MACRO_LIBS}", "${X86_64_OHOS_KIT_LIBS}"]
35+ 
36+[target.x86_64-unknown-windows-gnu.bin-dependencies]
37+ path-option = ["${X86_64_LIBS}", "${X86_64_MACRO_LIBS}"]
38+ package-option = {}
@@ -0,0 +1,6 @@
1+import { hapTasks } from '@ohos/hvigor-ohos-plugin';
2+ 
3+export default {
4+ system: hapTasks,
5+ plugins: []
6+}
@@ -0,0 +1,9 @@
1+{
2+ "name": "entry",
3+ "version": "1.0.0",
4+ "description": "汽车类HarmonyOS应用 - 纯仓颉语言实现",
5+ "main": "",
6+ "author": "",
7+ "license": "",
8+ "dependencies": {}
9+}
@@ -0,0 +1,97 @@
1+package ohos_app_cangjie_entry
2+ 
3+import kit.ArkUI.*
4+ 
5+// 公共常量 - 完整版本
6+public class CommonConstants {
7+ // 响应式断点
8+ public static let BREAK_POINT_SM: String = "sm"
9+ public static let BREAK_POINT_MD: String = "md"
10+ public static let BREAK_POINT_LG: String = "lg"
11+ public static let BREAK_POINTS_VALUE: Array<String> = ["320vp", "600vp", "840vp"]
12+ public static let COLUMN_SM: Int64 = 4
13+ public static let COLUMN_MD: Int64 = 8
14+ public static let COLUMN_LG: Int64 = 12
15+ 
16+ // 字体大小
17+ public static let MAX_FONT_SIZE: Int64 = 24
18+ public static let L_FONT_SIZE: Int64 = 16
19+ public static let M_FONT_SIZE: Int64 = 14
20+ public static let S_FONT_SIZE: Int64 = 12
21+ 
22+ // 间距
23+ public static let S_PUBLIC_SPACE: Int64 = 8
24+ public static let PUBLIC_SPACE: Int64 = 12
25+ public static let M_PUBLIC_SPACE: Int64 = 14
26+ public static let L_PUBLIC_SPACE: Int64 = 16
27+ public static let MAIN_PADDING: Int64 = 12
28+ public static let MAIN_MARGIN: Int64 = 8
29+ public static let M_MAIN_MARGIN: Int64 = 10
30+ public static let L_MAIN_PADDING: Int64 = 16
31+ public static let S_MAIN_PADDING: Int64 = 10
32+ 
33+ // 颜色
34+ public static let MAIN_COLOR: String = "#f54b44"
35+ public static let SELE_COLOR: String = "rgb(10, 89, 247)"
36+ public static let DEF_COLOR: String = "rgb(51, 51, 51)"
37+ public static let BG_COLOR: String = "#F5F5F5"
38+ 
39+ // 尺寸
40+ public static let TAB_ICON_WIDTH: Int64 = 24
41+ public static let TAB_ICON_HEIGHT: Int64 = 24
42+ public static let PIC_WIDTH: Int64 = 24
43+ public static let PIC_HEIGHT: Int64 = 24
44+ public static let L_PIC_WIDTH: Int64 = 36
45+ public static let L_PIC_HEIGHT: Int64 = 36
46+ public static let BORDER_RADIUS: String = "10vp"
47+ 
48+ // 字体粗细
49+ public static let NORMAL_TEXT_WEIGHT: Int64 = 500
50+ public static let REGULAR_TEXT_WEIGHT: Int64 = 600
51+ public static let MEDIUM_TEXT_WEIGHT: Int64 = 700
52+ public static let BOLD_TEXT_WEIGHT: Int64 = 800
53+ 
54+ // 其他
55+ public static let COLUMN_WIDTH: String = "100%"
56+ public static let COLUMN_HEIGHT: String = "100%"
57+ 
58+ // 时间常量
59+ public static let TIME_DEFAULT_VALUE: Int64 = 0
60+ public static let DELAY_SECONDS: Int64 = 0
61+ public static let DELAY_SECONDS_FIVE: Int64 = 5
62+ public static let INCREMENT_VALUE: Int64 = 1
63+ public static let INTERVAL_DELAY: Int64 = 1000
64+ public static let INTERVAL_ID_DEFAULT: Int64 = 0
65+ public static let ADVERTISING_INTERVAL_TIME: Int64 = 1000
66+ public static let LAUNCHER_DELAY_TIME: Int64 = 0
67+ 
68+ // 首选项
69+ public static let PREFERENCES_FILE_NAME: String = "btStore"
70+ public static let PREFERENCES_KEY_PRIVACY: String = "isPrivacy"
71+ 
72+ // 页面路由
73+ public static let PRIVACY_POLICY_PAGE_URL: String = "pages/PrivacyPolicyPage"
74+ public static let SPLASH_SCREEN_PAGE: String = "pages/SplashScreenPage"
75+ public static let LOGIN_PAGE_URL: String = "pages/LoginPage"
76+ 
77+ // 输入长度
78+ public static let INPUT_PHONE_LENGTH: Int64 = 11
79+ public static let INPUT_PASSWORD_LENGTH: Int64 = 8
80+ public static let SPLASH_IMAGES: Int64 = 3
81+ 
82+ // 标签
83+ public static let LAUNCHER_PAGE_TAG: String = "LauncherPage"
84+}
85+ 
86+// Tab 常量
87+public class TabConstants {
88+ public static let DEF_FONT_WEIGHT: Int64 = 400
89+ public static let SELE_FONT_WEIGHT: Int64 = 800
90+ public static let DEF_FONT_COLOR: String = "#999"
91+ public static let SELE_FONT_COLOR: String = "rgb(10, 89, 247)"
92+ public static let INDICATOR_WIDTH: Int64 = 20
93+ public static let INDICATOR_HEIGHT: Int64 = 2
94+ public static let TAB_HEIGHT: Int64 = 32
95+ public static let TAB_COL_HEIGHT: Int64 = 96
96+ public static let TAB_BAR_M_HEIGHT: Int64 = 56
97+}
@@ -0,0 +1,125 @@
1+package ohos_app_cangjie_entry
2+ 
3+// ==================== 数据模型 ====================
4+// 活动数据类
5+public class ActivityData {
6+ public let title: String
7+ public let tag: String
8+ public let time: String
9+ public let views: String
10+ 
11+ public init(title: String, tag: String, time: String, views: String) {
12+ this.title = title
13+ this.tag = tag
14+ this.time = time
15+ this.views = views
16+ }
17+}
18+ 
19+// 商品数据类
20+public class CommodityData {
21+ public let name: String
22+ public let price: String
23+ public let tag: String
24+ 
25+ public init(name: String, price: String, tag: String) {
26+ this.name = name
27+ this.price = price
28+ this.tag = tag
29+ }
30+}
31+ 
32+// 车型数据类
33+public class CarModelData {
34+ public let name: String
35+ public let desc: String
36+ public let price: String
37+ public let tag1: String
38+ public let tag2: String
39+ 
40+ public init(name: String, desc: String, price: String, tag1: String, tag2: String) {
41+ this.name = name
42+ this.desc = desc
43+ this.price = price
44+ this.tag1 = tag1
45+ this.tag2 = tag2
46+ }
47+}
48+ 
49+// 菜单数据类
50+public class MenuItemData {
51+ public let title: String
52+ public let desc: String
53+ 
54+ public init(title: String, desc: String) {
55+ this.title = title
56+ this.desc = desc
57+ }
58+}
59+ 
60+// ==================== 数据提供者 ====================
61+public class AppData {
62+ // Tab配置
63+ public static let tabs: Array<String> = ["首页", "商城", "选车", "服务", "我的"]
64+ public static let tabIcons: Array<String> = ["bottomtab_item", "cart", "direction_car", "service", "person"]
65+ 
66+ // 首页数据
67+ public static let quickEntries: Array<String> = ["轿车云店", "试乘试驾", "车主社区", "购车计算", "预约保养", "道路救援", "违章查询", "保险服务"]
68+ public static let activities: Array<ActivityData> = [
69+ ActivityData("新款电动车型上市,续航超1000公里", "热门推荐", "2小时前", "1.2万"),
70+ ActivityData("智能驾驶技术重大突破", "科技前沿", "5小时前", "856"),
71+ ActivityData("全国充电桩网络持续扩张", "基础设施", "昨天", "3.2k"),
72+ ActivityData("新能源汽车销量创新高", "市场动态", "2天前", "5.6k"),
73+ ActivityData("电池技术突破,充电时间缩短50%", "技术进步", "3天前", "2.8k"),
74+ ActivityData("多地出台新能源购车补贴政策", "政策利好", "4天前", "4.1k")
75+ ]
76+ 
77+ // 商城数据
78+ public static let categories: Array<String> = ["萌宠", "专区", "设备", "文创", "生活", "配件", "服饰", "数码"]
79+ public static let commodities: Array<CommodityData> = [
80+ CommodityData("便携式充电桩", "¥1599", "热销"),
81+ CommodityData("家用充电桩", "¥1799", "推荐"),
82+ CommodityData("快充充电桩", "¥1399", "新品"),
83+ CommodityData("智能充电桩", "¥1499", "智能"),
84+ CommodityData("高端充电桩", "¥1899", "高端"),
85+ CommodityData("超级充电桩", "¥2199", "旗舰"),
86+ CommodityData("充电配件套装", "¥299", "套装"),
87+ CommodityData("汽车周边", "¥276", "精选"),
88+ CommodityData("品牌服饰", "¥86", "正品"),
89+ CommodityData("数码配件", "¥707", "数码"),
90+ CommodityData("车载支架", "¥128", "实用"),
91+ CommodityData("脚垫套装", "¥258", "舒适")
92+ ]
93+ 
94+ // 买车数据
95+ public static let brands: Array<String> = ["比亚迪", "特斯拉", "问界", "理想", "小鹏", "蔚来", "小米", "极氪"]
96+ public static let carModels: Array<CarModelData> = [
97+ CarModelData("问界M7", "增程式SUV | 自动驾驶", "¥28.98万起", "热销", "增程"),
98+ CarModelData("比亚迪汉", "纯电动轿车 | 续航715km", "¥20.98万起", "纯电", "长续航"),
99+ CarModelData("特斯拉Model3", "纯电动轿车 | 高性能", "¥23.19万起", "高性能", "进口"),
100+ CarModelData("理想L7", "增程式SUV | 家用首选", "¥31.98万起", "热销", "增程"),
101+ CarModelData("小米SU7", "纯电动轿车 | 智能座舱", "¥21.59万起", "纯电", "长续航"),
102+ CarModelData("小鹏P7", "纯电动轿车 | 超快充", "¥22.99万起", "纯电", "长续航"),
103+ CarModelData("蔚来ET5", "纯电动轿车 | 换电服务", "¥29.80万起", "纯电", "长续航"),
104+ CarModelData("极氪001", "纯电动猎装 | 高性能", "¥30.00万起", "高性能", "进口")
105+ ]
106+ public static let priceFilters: Array<String> = ["10万以下", "10-20万", "20-30万", "30万以上", "新能源", "SUV", "轿车", "MPV"]
107+ public static let carQuickEntries: Array<String> = ["预约试驾", "购车计算", "车型对比", "销量排行"]
108+ 
109+ // 服务数据
110+ public static let chargeServices: Array<String> = ["扫码充电", "最优站点", "我的充电", "充电卡"]
111+ public static let otherServices: Array<String> = ["预约保养", "道路救援", "违章查询", "保险服务", "年检代办", "洗车服务"]
112+ public static let useServices: Array<String> = ["代驾服务", "租车服务", "停车位", "机场停车"]
113+ 
114+ // 我的页面数据
115+ public static let shopMenus: Array<MenuItemData> = [
116+ MenuItemData("我的订单", "查看订单状态"),
117+ MenuItemData("我的积分", "2568分"),
118+ MenuItemData("优惠券", "3张可用"),
119+ MenuItemData("我的收藏", "12辆车型"),
120+ MenuItemData("购物车", "5件商品"),
121+ MenuItemData("浏览记录", "查看历史")
122+ ]
123+ public static let serviceMenus: Array<String> = ["收货地址", "客服中心", "App设置", "关于我们"]
124+ public static let userStats: Array<(String, String)> = [("32", "关注"), ("16", "粉丝"), ("7", "收藏"), ("128", "足迹")]
125+}
@@ -0,0 +1,29 @@
1+package ohos_app_cangjie_entry
2+ 
3+import kit.AbilityKit.AbilityStage
4+ 
5+class MyAbilityStage <: AbilityStage {
6+ public init() {
7+ super()
8+ }
9+ 
10+ public func onCreate(): Unit {
11+ // AbilityStage创建时的回调
12+ }
13+ 
14+ public func onAcceptWant(want: Object): Unit {
15+ // 接受Want时的回调
16+ }
17+ 
18+ public func onForeground(): Unit {
19+ // Stage进入前台
20+ }
21+ 
22+ public func onBackground(): Unit {
23+ // Stage进入后台
24+ }
25+ 
26+ public func onDestroy(): Unit {
27+ // Stage销毁时的回调
28+ }
29+}
@@ -0,0 +1,623 @@
1+package ohos_app_cangjie_entry
2+ 
3+import kit.ArkUI.*
4+import ohos.arkui.state_macro_manage.*
5+ 
6+// ==================== 应用入口 ====================
7+@Entry
8+@Component
9+class EntryView {
10+ @State var currentIndex: Int32 = 0
11+ var controller: TabsController = TabsController()
12+ let tabIcons = AppData.tabIcons
13+ let tabTitles = AppData.tabs
14+ 
15+ @Builder
16+ func tabBuilder(index: Int32) {
17+ Column() {
18+ Image("app.media.${this.tabIcons[Int64(index)]}")
19+ .width(24).height(24)
20+ .fillColor(if (this.currentIndex == index) { 0xff0a59f7 } else { 0xff999999 })
21+ Text(this.tabTitles[Int64(index)])
22+ .fontSize(10)
23+ .fontColor(if (this.currentIndex == index) { 0xff0a59f7 } else { 0xff999999 })
24+ .fontWeight(if (this.currentIndex == index) { FontWeight.Bold } else { FontWeight.Normal })
25+ }
26+ .width(60).height(100.percent)
27+ .justifyContent(FlexAlign.Center).alignItems(HorizontalAlign.Center)
28+ }
29+ 
30+ func build() {
31+ Tabs(controller: this.controller, index: this.currentIndex) {
32+ TabContent() { ExplorePageView() }.tabBar({=>bind(this.tabBuilder, this)(0)})
33+ TabContent() { ShoppingMallPageView() }.tabBar({=>bind(this.tabBuilder, this)(1)})
34+ TabContent() { BuyingCarPageView() }.tabBar({=>bind(this.tabBuilder, this)(2)})
35+ TabContent() { ServicePageView() }.tabBar({=>bind(this.tabBuilder, this)(3)})
36+ TabContent() { MinePageView() }.tabBar({=>bind(this.tabBuilder, this)(4)})
37+ }
38+ .onChange({index: Int32 => this.currentIndex = index; ()})
39+ .width(100.percent).height(100.percent).backgroundColor(0xfff5f5f5)
40+ }
41+}
42+ 
43+// ==================== 首页 ====================
44+@Component
45+class ExplorePageView {
46+ @State var currentTab: Int64 = 0
47+ let activities = AppData.activities
48+ let quickEntries = AppData.quickEntries
49+ 
50+ func build() {
51+ Column() {
52+ // 搜索栏
53+ Row() {
54+ Text("🔍 搜你感兴趣的车")
55+ .fontSize(14).layoutWeight(1).fontColor(0xff999999)
56+ .backgroundColor(Color.White).height(36).borderRadius(18).padding(left: 12)
57+ Text("扫码").fontSize(14).fontColor(0xff0a59f7)
58+ }
59+ .width(100.percent).height(56).padding(left: 16, right: 16).backgroundColor(0xfff5f5f5)
60+ .justifyContent(FlexAlign.Center).alignItems(VerticalAlign.Center)
61+ 
62+ // Tab导航
63+ Scroll() {
64+ Row() {
65+ this.tabItem(0, "关注")
66+ this.tabItem(1, "推荐")
67+ this.tabItem(2, "热榜")
68+ this.tabItem(3, "兴趣")
69+ this.tabItem(4, "精品")
70+ }
71+ }
72+ .width(100.percent).height(44).backgroundColor(Color.White)
73+ 
74+ // 轮播图
75+ Swiper() {
76+ Column() {
77+ Text("新款电动车上市").fontSize(20).fontWeight(FontWeight.Bold).fontColor(Color.White)
78+ Text("限时优惠活动进行中").fontSize(14)
79+ }
80+ .width(100.percent).height(100.percent).backgroundColor(0xff0a59f7).justifyContent(FlexAlign.Center)
81+ Column() {
82+ Text("智能驾驶技术").fontSize(20).fontWeight(FontWeight.Bold).fontColor(Color.White)
83+ Text("安全驾驶新体验").fontSize(14)
84+ }
85+ .width(100.percent).height(100.percent).backgroundColor(0xff52c41a).justifyContent(FlexAlign.Center)
86+ Column() {
87+ Text("全国充电桩网络扩张").fontSize(20).fontWeight(FontWeight.Bold).fontColor(Color.White)
88+ Text("出行更便捷").fontSize(14)
89+ }
90+ .width(100.percent).height(100.percent).backgroundColor(0xffff9800).justifyContent(FlexAlign.Center)
91+ }
92+ .width(100.percent).height(160).loop(true).autoPlay(true).indicator(true).margin(12).borderRadius(12)
93+ 
94+ // 快捷入口 - 第一行
95+ Row() {
96+ this.quickEntryItem(this.quickEntries[0])
97+ this.quickEntryItem(this.quickEntries[1])
98+ this.quickEntryItem(this.quickEntries[2])
99+ this.quickEntryItem(this.quickEntries[3])
100+ }
101+ .width(100.percent).padding(16).backgroundColor(Color.White).margin(top: 12, left: 12, right: 12).borderRadius(12)
102+ 
103+ // 快捷入口 - 第二行
104+ Row() {
105+ this.quickEntryItem(this.quickEntries[4])
106+ this.quickEntryItem(this.quickEntries[5])
107+ this.quickEntryItem(this.quickEntries[6])
108+ this.quickEntryItem(this.quickEntries[7])
109+ }
110+ .width(100.percent).padding(16).backgroundColor(Color.White).margin(top: 12, left: 12, right: 12).borderRadius(12)
111+ 
112+ // 推荐内容
113+ Scroll() {
114+ Column() {
115+ Row() {
116+ Text("推荐内容").fontSize(16).fontWeight(FontWeight.Bold)
117+ Text("更多 >").fontSize(12).fontColor(0xff999999)
118+ }
119+ .width(100.percent).justifyContent(FlexAlign.SpaceBetween).padding(16)
120+ 
121+ this.activityCard(this.activities[0].title, this.activities[0].tag, this.activities[0].time, this.activities[0].views)
122+ this.activityCard(this.activities[1].title, this.activities[1].tag, this.activities[1].time, this.activities[1].views)
123+ this.activityCard(this.activities[2].title, this.activities[2].tag, this.activities[2].time, this.activities[2].views)
124+ this.activityCard(this.activities[3].title, this.activities[3].tag, this.activities[3].time, this.activities[3].views)
125+ this.activityCard(this.activities[4].title, this.activities[4].tag, this.activities[4].time, this.activities[4].views)
126+ this.activityCard(this.activities[5].title, this.activities[5].tag, this.activities[5].time, this.activities[5].views)
127+ }
128+ }.layoutWeight(1).scrollBar(BarState.Off)
129+ }
130+ .width(100.percent).height(100.percent).backgroundColor(0xfff5f5f5)
131+ }
132+ 
133+ @Builder
134+ func tabItem(index: Int64, title: String) {
135+ Text(title)
136+ .fontSize(14)
137+ .fontColor(if (this.currentTab == index) { 0xff0a59f7 } else { 0xff333333 })
138+ .fontWeight(if (this.currentTab == index) { FontWeight.Bold } else { FontWeight.Normal })
139+ .padding(left: 12, right: 12)
140+ .onClick({evt: ClickEvent => this.currentTab = index; ()})
141+ }
142+ 
143+ @Builder
144+ func quickEntryItem(title: String) {
145+ Column() {
146+ Text("📦").fontSize(24)
147+ Text(title).fontSize(12).fontColor(0xff333333)
148+ }
149+ .layoutWeight(1)
150+ }
151+ 
152+ @Builder
153+ func activityCard(title: String, tag: String, time: String, views: String) {
154+ Column() {
155+ Row() {
156+ Column() {
157+ Text(title).fontSize(16).fontWeight(FontWeight.Medium).maxLines(2)
158+ Row() {
159+ Text(tag).fontSize(10).fontColor(0xff0a59f7)
160+ .padding(left: 6, right: 6, top: 2, bottom: 2).backgroundColor(0x220a59f7).borderRadius(4)
161+ Text(time).fontSize(12).fontColor(0xff999999)
162+ Text("${views} 阅读").fontSize(12).fontColor(0xff999999)
163+ }.width(100.percent)
164+ }.layoutWeight(1)
165+ Text("商品图").width(100).height(70).backgroundColor(0xfff0f0f0).borderRadius(8)
166+ }
167+ .width(100.percent).padding(16).backgroundColor(Color.White).borderRadius(12)
168+ .margin(left: 16, right: 16, bottom: 8).alignItems(VerticalAlign.Center)
169+ }
170+ }
171+}
172+ 
173+// ==================== 商城页 ====================
174+@Component
175+class ShoppingMallPageView {
176+ @State var categoryIndex: Int64 = 0
177+ let categories = AppData.categories
178+ let commodities = AppData.commodities
179+ 
180+ func build() {
181+ Column() {
182+ // 头部
183+ Row() {
184+ Text("商城").fontSize(24).fontWeight(FontWeight.Bold)
185+ Row() { Text("🛒").fontSize(20); Text("⚙️").fontSize(20) }
186+ }
187+ .width(100.percent).height(56).padding(left: 16, right: 16).justifyContent(FlexAlign.SpaceBetween).alignItems(VerticalAlign.Center).backgroundColor(Color.White)
188+ 
189+ // 分类Tab
190+ Scroll() {
191+ Row() {
192+ this.categoryTab(0)
193+ this.categoryTab(1)
194+ this.categoryTab(2)
195+ this.categoryTab(3)
196+ this.categoryTab(4)
197+ this.categoryTab(5)
198+ this.categoryTab(6)
199+ this.categoryTab(7)
200+ }
201+ }
202+ .width(100.percent).height(48).padding(left: 16).backgroundColor(Color.White)
203+ 
204+ // 轮播图
205+ Swiper() {
206+ Column() {
207+ Text("精选商品推荐").fontSize(20).fontWeight(FontWeight.Bold).fontColor(Color.White)
208+ Text("限时特惠活动").fontSize(14)
209+ }
210+ .width(100.percent).height(100.percent).backgroundColor(0xff0a59f7).justifyContent(FlexAlign.Center)
211+ Column() {
212+ Text("品质保证").fontSize(20).fontWeight(FontWeight.Bold).fontColor(Color.White)
213+ Text("官方正品").fontSize(14)
214+ }
215+ .width(100.percent).height(100.percent).backgroundColor(0xff52c41a).justifyContent(FlexAlign.Center)
216+ }
217+ .width(100.percent).height(160).loop(true).autoPlay(true).indicator(true).margin(left: 16, right: 16, top: 12).borderRadius(12)
218+ 
219+ // 商品列表
220+ Scroll() {
221+ Column() {
222+ Row() {
223+ this.commodityItem(this.commodities[0].name, this.commodities[0].price, this.commodities[0].tag)
224+ this.commodityItem(this.commodities[1].name, this.commodities[1].price, this.commodities[1].tag)
225+ }
226+ Row() {
227+ this.commodityItem(this.commodities[2].name, this.commodities[2].price, this.commodities[2].tag)
228+ this.commodityItem(this.commodities[3].name, this.commodities[3].price, this.commodities[3].tag)
229+ }
230+ Row() {
231+ this.commodityItem(this.commodities[4].name, this.commodities[4].price, this.commodities[4].tag)
232+ this.commodityItem(this.commodities[5].name, this.commodities[5].price, this.commodities[5].tag)
233+ }
234+ Row() {
235+ this.commodityItem(this.commodities[6].name, this.commodities[6].price, this.commodities[6].tag)
236+ this.commodityItem(this.commodities[7].name, this.commodities[7].price, this.commodities[7].tag)
237+ }
238+ Row() {
239+ this.commodityItem(this.commodities[8].name, this.commodities[8].price, this.commodities[8].tag)
240+ this.commodityItem(this.commodities[9].name, this.commodities[9].price, this.commodities[9].tag)
241+ }
242+ Row() {
243+ this.commodityItem(this.commodities[10].name, this.commodities[10].price, this.commodities[10].tag)
244+ this.commodityItem(this.commodities[11].name, this.commodities[11].price, this.commodities[11].tag)
245+ }
246+ }
247+ }.layoutWeight(1).scrollBar(BarState.Off)
248+ }
249+ .width(100.percent).height(100.percent).backgroundColor(0xfff5f5f5)
250+ }
251+ 
252+ @Builder
253+ func categoryTab(index: Int64) {
254+ Text(this.categories[index])
255+ .fontSize(14)
256+ .fontColor(if (this.categoryIndex == index) { 0xff0a59f7 } else { 0xff333333 })
257+ .fontWeight(if (this.categoryIndex == index) { FontWeight.Bold } else { FontWeight.Normal })
258+ .padding(left: 12, right: 12)
259+ .onClick({evt: ClickEvent => this.categoryIndex = index; ()})
260+ }
261+ 
262+ @Builder
263+ func commodityItem(name: String, price: String, tag: String) {
264+ Column() {
265+ Text("商品图").width(100.percent).height(110).backgroundColor(0xfff0f0f0).borderRadius(8).textAlign(TextAlign.Center)
266+ if (tag.size > 0) {
267+ Text(tag).fontSize(10).fontColor(0xfff54b44)
268+ .padding(left: 4, right: 4, top: 2, bottom: 2).backgroundColor(0x22f54b44).borderRadius(4).margin(top: 4)
269+ }
270+ Text(name).fontSize(14).fontWeight(FontWeight.Medium).margin(top: 4)
271+ Text(price).fontSize(16).fontColor(0xfff54b44).fontWeight(FontWeight.Bold).margin(top: 4)
272+ }
273+ .layoutWeight(1).padding(12).backgroundColor(Color.White).borderRadius(12).margin(bottom: 12).alignItems(HorizontalAlign.Start)
274+ }
275+}
276+ 
277+// ==================== 买车页 ====================
278+@Component
279+class BuyingCarPageView {
280+ @State var tabIndex: Int64 = 0
281+ @State var filterIndex: Int64 = 0
282+ let brands = AppData.brands
283+ let carModels = AppData.carModels
284+ let priceFilters = AppData.priceFilters
285+ let quickEntries = AppData.carQuickEntries
286+ 
287+ func build() {
288+ Column() {
289+ // Tab导航
290+ Scroll() {
291+ Row() {
292+ this.tabItem(0, "新车")
293+ this.tabItem(1, "新能源")
294+ this.tabItem(2, "摩托车")
295+ this.tabItem(3, "特惠")
296+ }
297+ }
298+ .width(100.percent).height(44).backgroundColor(Color.White)
299+ 
300+ // 搜索栏
301+ Row() {
302+ Text("🔍 搜索车型、品牌").fontSize(14).fontColor(0xff999999).layoutWeight(1)
303+ }
304+ .width(100.percent).height(40).margin(left: 16, right: 16, top: 12).padding(left: 16).backgroundColor(Color.White).borderRadius(20)
305+ 
306+ // 快捷入口
307+ Row() {
308+ this.quickEntryItem(this.quickEntries[0])
309+ this.quickEntryItem(this.quickEntries[1])
310+ this.quickEntryItem(this.quickEntries[2])
311+ this.quickEntryItem(this.quickEntries[3])
312+ }
313+ .width(100.percent).padding(16).backgroundColor(Color.White).margin(top: 12).justifyContent(FlexAlign.SpaceBetween)
314+ 
315+ // 品牌区域
316+ Column() {
317+ Row() {
318+ Text("热门品牌").fontSize(16).fontWeight(FontWeight.Bold)
319+ Text("全部 >").fontSize(14).fontColor(0xff0a59f7)
320+ }
321+ .width(100.percent).justifyContent(FlexAlign.SpaceBetween)
322+ 
323+ Row() {
324+ this.brandItem(this.brands[0])
325+ this.brandItem(this.brands[1])
326+ this.brandItem(this.brands[2])
327+ this.brandItem(this.brands[3])
328+ }
329+ .width(100.percent).padding(top: 12)
330+ }
331+ .width(100.percent).padding(16).backgroundColor(Color.White).margin(left: 16, right: 16, top: 12).borderRadius(12)
332+ 
333+ // 筛选标签
334+ Scroll() {
335+ Row() {
336+ this.filterTag(0)
337+ this.filterTag(1)
338+ this.filterTag(2)
339+ this.filterTag(3)
340+ this.filterTag(4)
341+ this.filterTag(5)
342+ this.filterTag(6)
343+ this.filterTag(7)
344+ }
345+ }
346+ .width(100.percent).padding(12).backgroundColor(Color.White).margin(left: 16, right: 16, top: 12)
347+ 
348+ // 车型列表
349+ Scroll() {
350+ Column() {
351+ this.carModelItem(this.carModels[0])
352+ this.carModelItem(this.carModels[1])
353+ this.carModelItem(this.carModels[2])
354+ this.carModelItem(this.carModels[3])
355+ this.carModelItem(this.carModels[4])
356+ this.carModelItem(this.carModels[5])
357+ this.carModelItem(this.carModels[6])
358+ this.carModelItem(this.carModels[7])
359+ }
360+ }.layoutWeight(1).scrollBar(BarState.Off)
361+ }
362+ .width(100.percent).height(100.percent).backgroundColor(0xfff5f5f5)
363+ }
364+ 
365+ @Builder
366+ func tabItem(index: Int64, title: String) {
367+ Text(title)
368+ .fontSize(14)
369+ .fontColor(if (this.tabIndex == index) { 0xff0a59f7 } else { 0xff333333 })
370+ .fontWeight(if (this.tabIndex == index) { FontWeight.Bold } else { FontWeight.Normal })
371+ .padding(left: 12, right: 12)
372+ .onClick({evt: ClickEvent => this.tabIndex = index; ()})
373+ }
374+ 
375+ @Builder
376+ func quickEntryItem(title: String) {
377+ Column() {
378+ Text("📋").fontSize(24)
379+ Text(title).fontSize(12)
380+ }
381+ .layoutWeight(1)
382+ }
383+ 
384+ @Builder
385+ func brandItem(name: String) {
386+ Column() {
387+ Text("🚗").fontSize(32)
388+ Text(name).fontSize(12)
389+ }
390+ .layoutWeight(1)
391+ }
392+ 
393+ @Builder
394+ func filterTag(index: Int64) {
395+ Text(this.priceFilters[index])
396+ .fontSize(12)
397+ .fontColor(if (this.filterIndex == index) { 0xff0a59f7 } else { 0xff333333 })
398+ .backgroundColor(if (this.filterIndex == index) { 0x220a59f7 } else { 0xfff5f6fa })
399+ .padding(left: 12, right: 12, top: 6, bottom: 6).borderRadius(16).margin(right: 8)
400+ .onClick({evt: ClickEvent => this.filterIndex = index; ()})
401+ }
402+ 
403+ @Builder
404+ func carModelItem(model: CarModelData) {
405+ Row() {
406+ Text("🚙").fontSize(48)
407+ Column() {
408+ Row() {
409+ Text(model.name).fontSize(16).fontWeight(FontWeight.Bold)
410+ Row(){}.layoutWeight(1)
411+ Text(model.tag1).fontSize(10).fontColor(0xfff54b44)
412+ .padding(left: 4, right: 4, top: 2, bottom: 2).backgroundColor(0x22f54b44).borderRadius(4)
413+ if (model.tag2.size > 0) {
414+ Text(model.tag2).fontSize(10).fontColor(0xfff54b44)
415+ .padding(left: 4, right: 4, top: 2, bottom: 2).backgroundColor(0x22f54b44).borderRadius(4)
416+ }
417+ }
418+ .width(100.percent)
419+ Text(model.desc).fontSize(12).fontColor(0xff999999).margin(top: 4)
420+ Text(model.price).fontSize(14).fontColor(0xfff54b44).fontWeight(FontWeight.Bold).margin(top: 8)
421+ }
422+ .layoutWeight(1).padding(left: 12)
423+ Text(">").fontSize(16).fontColor(0xff999999).padding(right: 12)
424+ }
425+ .width(100.percent).padding(12).backgroundColor(Color.White).borderRadius(12).margin(left: 16, right: 16, bottom: 12).alignItems(VerticalAlign.Center)
426+ }
427+}
428+ 
429+// ==================== 服务页 ====================
430+@Component
431+class ServicePageView {
432+ let chargeServices = AppData.chargeServices
433+ let otherServices = AppData.otherServices
434+ let useServices = AppData.useServices
435+ 
436+ func build() {
437+ Column() {
438+ // 头部
439+ Row() {
440+ Text("服务").fontSize(24).fontWeight(FontWeight.Bold)
441+ Text("全部服务 >").fontSize(14).fontColor(0xff0a59f7)
442+ }
443+ .width(100.percent).height(56).padding(left: 16, right: 16).justifyContent(FlexAlign.SpaceBetween).alignItems(VerticalAlign.Center).backgroundColor(Color.White)
444+ 
445+ // 充电服务区
446+ Column() {
447+ Row() { Text("充电服务").fontSize(16).fontWeight(FontWeight.Bold) }.width(100.percent)
448+ 
449+ // 地图占位
450+ Column() {
451+ Text("📍 附近充电站地图").fontSize(16).fontColor(0xff999999)
452+ Text("点击查看附近充电站").fontSize(12).fontColor(0xff999999).margin(top: 8)
453+ }
454+ .width(100.percent).height(150).backgroundColor(0xfff5f5f5).borderRadius(12).justifyContent(FlexAlign.Center).margin(top: 12)
455+ 
456+ // 充电站快捷入口
457+ Row() {
458+ this.chargeItem(this.chargeServices[0], "⚡")
459+ this.chargeItem(this.chargeServices[1], "📍")
460+ this.chargeItem(this.chargeServices[2], "🔋")
461+ this.chargeItem(this.chargeServices[3], "💳")
462+ }
463+ .width(100.percent)
464+ }
465+ .width(100.percent).padding(16).backgroundColor(Color.White).borderRadius(12).margin(left: 16, right: 16, top: 12)
466+ 
467+ // 其他服务
468+ Row() {
469+ this.serviceItem(this.otherServices[0], "🔧", "专业服务")
470+ this.serviceItem(this.otherServices[1], "🚨", "24小时")
471+ }
472+ .width(100.percent).padding(16).backgroundColor(Color.White).margin(top: 12)
473+ 
474+ Row() {
475+ this.serviceItem(this.otherServices[2], "📋", "快速查询")
476+ this.serviceItem(this.otherServices[3], "🛡️", "保驾护航")
477+ }
478+ .width(100.percent).padding(16).backgroundColor(Color.White).margin(top: 12)
479+ 
480+ Row() {
481+ this.serviceItem(this.otherServices[4], "📝", "省心省力")
482+ this.serviceItem(this.otherServices[5], "🚿", "上门服务")
483+ }
484+ .width(100.percent).padding(16).backgroundColor(Color.White).margin(top: 12)
485+ 
486+ // 用车服务
487+ Column() {
488+ Row() { Text("用车服务").fontSize(16).fontWeight(FontWeight.Bold) }.width(100.percent)
489+ Row() {
490+ this.useServiceItem(this.useServices[0], "🚗")
491+ this.useServiceItem(this.useServices[1], "🔑")
492+ this.useServiceItem(this.useServices[2], "🅿️")
493+ this.useServiceItem(this.useServices[3], "✈️")
494+ }
495+ .width(100.percent).padding(top: 12)
496+ }
497+ .width(100.percent).padding(16).backgroundColor(Color.White).borderRadius(12).margin(left: 16, right: 16, top: 12)
498+ }
499+ .width(100.percent).height(100.percent).backgroundColor(0xfff5f5f5)
500+ }
501+ 
502+ @Builder
503+ func chargeItem(title: String, icon: String) {
504+ Column() {
505+ Text(icon).fontSize(32)
506+ Text(title).fontSize(14)
507+ }
508+ .layoutWeight(1)
509+ }
510+ 
511+ @Builder
512+ func serviceItem(title: String, icon: String, desc: String) {
513+ Column() {
514+ Text(icon).fontSize(32)
515+ Text(title).fontSize(14)
516+ Text(desc).fontSize(12).fontColor(0xff999999)
517+ }
518+ .layoutWeight(1).padding(16).backgroundColor(0xfff9f9f9).borderRadius(8)
519+ }
520+ 
521+ @Builder
522+ func useServiceItem(title: String, icon: String) {
523+ Column() {
524+ Text(icon).fontSize(28)
525+ Text(title).fontSize(12)
526+ }
527+ .layoutWeight(1).padding(12).backgroundColor(0xfff0f4ff).borderRadius(8)
528+ }
529+}
530+ 
531+// ==================== 我的页面 ====================
532+@Component
533+class MinePageView {
534+ let shopMenus = AppData.shopMenus
535+ let serviceMenus = AppData.serviceMenus
536+ 
537+ func build() {
538+ Column() {
539+ // 用户信息头部
540+ Column() {
541+ Row() {
542+ Text("👤").fontSize(48)
543+ Column() {
544+ Text("欢迎登录").fontSize(18).fontWeight(FontWeight.Bold)
545+ Text("登录后享受更多服务").fontSize(12).fontColor(0xff999999)
546+ }
547+ .layoutWeight(1).padding(left: 12).alignItems(HorizontalAlign.Start)
548+ Text("登录/注册 >").fontSize(14).fontColor(0xff0a59f7).padding(right: 16)
549+ }
550+ .width(100.percent).height(80).padding(left: 16)
551+ 
552+ // 数据统计
553+ Row() {
554+ this.statItem("32", "关注")
555+ this.statItem("16", "粉丝")
556+ this.statItem("7", "收藏")
557+ this.statItem("128", "足迹")
558+ }
559+ .width(100.percent)
560+ }
561+ .width(100.percent).padding(16).backgroundColor(Color.White).margin(left: 16, right: 16, top: 12).borderRadius(16)
562+ 
563+ // 我的车辆
564+ Row() {
565+ Text("🚗").fontSize(24)
566+ Text("我的车辆").fontSize(16)
567+ Row(){}.layoutWeight(1)
568+ Text("添加 >").fontSize(14).fontColor(0xff0a59f7)
569+ }
570+ .width(100.percent).height(56).padding(left: 16, right: 16).backgroundColor(Color.White).alignItems(VerticalAlign.Center).margin(left: 16, right: 16, top: 12)
571+ 
572+ // 购物服务
573+ Column() {
574+ this.menuItem("📦", this.shopMenus[0].title, this.shopMenus[0].desc)
575+ this.menuItem("💎", this.shopMenus[1].title, this.shopMenus[1].desc)
576+ this.menuItem("🎫", this.shopMenus[2].title, this.shopMenus[2].desc)
577+ this.menuItem("⭐", this.shopMenus[3].title, this.shopMenus[3].desc)
578+ this.menuItem("🛒", this.shopMenus[4].title, this.shopMenus[4].desc)
579+ this.menuItem("📋", this.shopMenus[5].title, this.shopMenus[5].desc)
580+ }
581+ .width(100.percent).backgroundColor(Color.White).borderRadius(12).margin(left: 16, right: 16, top: 12)
582+ 
583+ // 服务菜单
584+ Column() {
585+ this.menuItem("📍", this.serviceMenus[0], "")
586+ this.menuItem("💬", this.serviceMenus[1], "")
587+ this.menuItem("📱", this.serviceMenus[2], "")
588+ this.menuItem("ℹ️", this.serviceMenus[3], "")
589+ }
590+ .width(100.percent).backgroundColor(Color.White).borderRadius(12).margin(left: 16, right: 16, top: 12)
591+ 
592+ // 退出登录
593+ Row() {
594+ Text("退出登录").fontSize(16).fontColor(0xfff54b44)
595+ }
596+ .width(100.percent).height(50).backgroundColor(Color.White).justifyContent(FlexAlign.Center).alignItems(VerticalAlign.Center).margin(left: 16, right: 16, top: 12).borderRadius(12)
597+ }
598+ .width(100.percent).height(100.percent).backgroundColor(0xfff5f5f5)
599+ }
600+ 
601+ @Builder
602+ func statItem(num: String, label: String) {
603+ Column() {
604+ Text(num).fontSize(18).fontWeight(FontWeight.Bold)
605+ Text(label).fontSize(12).fontColor(0xff999999)
606+ }
607+ .layoutWeight(1)
608+ }
609+ 
610+ @Builder
611+ func menuItem(icon: String, title: String, desc: String) {
612+ Row() {
613+ Text(icon).fontSize(20)
614+ Text(title).fontSize(16)
615+ Row(){}.layoutWeight(1)
616+ if (desc.size > 0) {
617+ Text(desc).fontSize(12).fontColor(0xff999999)
618+ }
619+ Text(">").fontSize(16).fontColor(0xff999999)
620+ }
621+ .width(100.percent).height(56).padding(left: 16, right: 16).alignItems(VerticalAlign.Center)
622+ }
623+}
@@ -0,0 +1,30 @@
1+package ohos_app_cangjie_entry
2+ 
3+import kit.ArkUI.*
4+import kit.AbilityKit.UIAbility
5+ 
6+class MainAbility <: UIAbility {
7+ public init() {
8+ super()
9+ }
10+ 
11+ public func onCreate(want: Object, launchParam: Object): Unit {
12+ // Ability创建时的回调
13+ }
14+ 
15+ public func onWindowStageCreate(windowStage: WindowStage): Unit {
16+ windowStage.loadContent("EntryView")
17+ }
18+ 
19+ public func onDestroy(): Unit {
20+ // Ability销毁时的回调
21+ }
22+ 
23+ public func onForeground(): Unit {
24+ // 应用进入前台
25+ }
26+ 
27+ public func onBackground(): Unit {
28+ // 应用进入后台
29+ }
30+}
@@ -0,0 +1,36 @@
1+{
2+ "module": {
3+ "name": "entry",
4+ "type": "entry",
5+ "description": "$string:module_desc",
6+ "mainElement": "EntryAbility",
7+ "deviceTypes": [
8+ "phone"
9+ ],
10+ "deliveryWithInstall": true,
11+ "installationFree": false,
12+ "srcEntry": "ohos_app_cangjie_entry.MyAbilityStage",
13+ "abilities": [
14+ {
15+ "name": "EntryAbility",
16+ "srcEntry": "ohos_app_cangjie_entry.MainAbility",
17+ "description": "$string:EntryAbility_desc",
18+ "icon": "$media:layered_image",
19+ "label": "$string:EntryAbility_label",
20+ "startWindowIcon": "$media:startIcon",
21+ "startWindowBackground": "$color:start_window_background",
22+ "exported": true,
23+ "skills": [
24+ {
25+ "entities": [
26+ "entity.system.home"
27+ ],
28+ "actions": [
29+ "action.system.home"
30+ ]
31+ }
32+ ]
33+ }
34+ ]
35+ }
36+}
@@ -0,0 +1,32 @@
1+{
2+ "color": [
3+ {
4+ "name": "start_window_background",
5+ "value": "#FFFFFF"
6+ },
7+ {
8+ "name": "copyright_text",
9+ "value": "#99182431"
10+ },
11+ {
12+ "name": "title",
13+ "value": "#182431"
14+ },
15+ {
16+ "name": "rect_area_background",
17+ "value": "#4D000000"
18+ },
19+ {
20+ "name": "rect_stroke",
21+ "value": "#99FFFFFF"
22+ },
23+ {
24+ "name": "init_page_color",
25+ "value": "#00C5CD"
26+ },
27+ {
28+ "name": "main_color",
29+ "value": "#0000CD"
30+ }
31+ ]
32+}
@@ -0,0 +1,64 @@
1+{
2+ "float": [
3+ {
4+ "name": "copy_right_image_width",
5+ "value": "24vp"
6+ },
7+ {
8+ "name": "advertise_button_width",
9+ "value": "28vp"
10+ },
11+ {
12+ "name": "advertise_button_height",
13+ "value": "16vp"
14+ },
15+ {
16+ "name": "skip_text_width",
17+ "value": "72vp"
18+ },
19+ {
20+ "name": "skip_text_height",
21+ "value": "28vp"
22+ },
23+ {
24+ "name": "copyrightArea_title_text_size",
25+ "value": "18fp"
26+ },
27+ {
28+ "name": "hello_world_font_size",
29+ "value": "50fp"
30+ },
31+ {
32+ "name": "skip_text_size",
33+ "value": "15fp"
34+ },
35+ {
36+ "name": "copyright_description_text_size",
37+ "value": "9fp"
38+ },
39+ {
40+ "name": "copy_right_area_height",
41+ "value": "100vp"
42+ },
43+ {
44+ "name": "skip_text_margin_right",
45+ "value": "16vp"
46+ },
47+ {
48+ "name": "skip_text_margin_top",
49+ "value": "12vp"
50+ },
51+ {
52+ "name": "copyright_title_margin_left",
53+ "value": "8vp"
54+ },
55+ {
56+ "name": "copyright_description_margin_top",
57+ "value": "8vp"
58+ },
59+ {
60+ "name": "advertise_icon_margin",
61+ "value": "16vp"
62+ }
63+ ]
64+}
@@ -0,0 +1,56 @@
1+{
2+ "string": [
3+ {
4+ "name": "module_desc",
5+ "value": "This module template implements Splash Screen functions."
6+ },
7+ {
8+ "name": "EntryAbility_desc",
9+ "value": "description"
10+ },
11+ {
12+ "name": "EntryAbility_label",
13+ "value": "label"
14+ },
15+ {
16+ "name": "main_page_content",
17+ "value": "Hello World"
18+ },
19+ {
20+ "name": "ability_desc",
21+ "value": "This ability loads SplashScreenPage."
22+ },
23+ {
24+ "name": "ability_label",
25+ "value": "auto"
26+ },
27+ {
28+ "name": "copyright",
29+ "value": "Copyright @2021-2027 xx Company"
30+ },
31+ {
32+ "name": "skip",
33+ "value": "Skip %d"
34+ },
35+ {
36+ "name": "copyright_title",
37+ "value": "Video"
38+ },
39+ {
40+ "name": "phone_number",
41+ "value": "PhoneNumber"
42+ },
43+ {
44+ "name": "login_password",
45+ "value": "Password"
46+ },
47+ {
48+ "name": "sent_to",
49+ "value": "Sent to"
50+ },
51+ {
52+ "name": "ver_code",
53+ "value": "Verification code"
54+ }
55+ ]
56+}
@@ -0,0 +1,17 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip18_3263">
7+ <rect id="AI_search" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip18_3263)">
11+ <g opacity="0.000000">
12+ <rect id="rect" width="24.000000" height="24.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <path id="path" d="M9.33 15.82C8.37 15.62 7.55 15.18 6.85 14.48C6.17 13.78 5.72 12.96 5.52 12C5.52 11.93 5.5 11.88 5.45 11.86C5.41 11.82 5.37 11.81 5.32 11.81C5.28 11.81 5.23 11.82 5.19 11.86C5.15 11.88 5.12 11.93 5.1 12C4.91 12.96 4.47 13.78 3.77 14.48C3.08 15.18 2.26 15.62 1.31 15.82C1.25 15.82 1.2 15.83 1.18 15.86C1.16 15.89 1.14 15.94 1.14 16.01C1.14 16.05 1.16 16.09 1.18 16.12C1.2 16.16 1.25 16.18 1.31 16.2C2.27 16.42 3.1 16.88 3.78 17.57C4.47 18.25 4.9 19.07 5.08 20.02C5.13 20.11 5.21 20.16 5.32 20.16C5.36 20.16 5.39 20.14 5.43 20.12C5.47 20.1 5.5 20.06 5.52 20.02C5.72 19.07 6.17 18.25 6.87 17.57C7.57 16.88 8.39 16.42 9.33 16.2C9.38 16.2 9.42 16.18 9.45 16.15C9.48 16.11 9.5 16.07 9.5 16.03C9.5 15.91 9.44 15.84 9.33 15.82Z" fill="#000000" fill-opacity="0.901961" fill-rule="nonzero"/>
15+ <path id="path" d="M17.86 16.34C18.56 15.54 19.11 14.63 19.51 13.63C19.9 12.62 20.11 11.56 20.11 10.46C20.11 8.84 19.7 7.35 18.9 5.98C18.11 4.62 17.02 3.53 15.65 2.73C14.29 1.94 12.8 1.53 11.17 1.53C9.56 1.53 8.08 1.94 6.71 2.75C5.36 3.55 4.28 4.65 3.47 6.03C2.67 7.41 2.28 8.92 2.28 10.56C2.28 10.76 2.35 10.94 2.5 11.09C2.64 11.23 2.81 11.3 3.02 11.3C3.23 11.3 3.4 11.23 3.55 11.09C3.69 10.94 3.77 10.76 3.77 10.56C3.77 9.19 4.1 7.94 4.76 6.78C5.42 5.63 6.32 4.72 7.45 4.06C8.6 3.38 9.84 3.04 11.17 3.04C12.52 3.04 13.76 3.38 14.9 4.03C16.04 4.7 16.93 5.6 17.6 6.73C18.26 7.88 18.6 9.12 18.6 10.46C18.6 11.8 18.26 13.04 17.59 14.18C16.91 15.32 16 16.21 14.86 16.87C13.7 17.54 12.45 17.87 11.09 17.87C10.88 17.87 10.7 17.95 10.56 18.1C10.41 18.24 10.34 18.41 10.34 18.62C10.34 18.83 10.41 19.01 10.56 19.15C10.7 19.29 10.88 19.37 11.09 19.37C12.14 19.37 13.15 19.19 14.12 18.85C15.09 18.5 15.97 18.02 16.75 17.4L21.55 22.25C21.73 22.39 21.91 22.46 22.1 22.46C22.29 22.46 22.47 22.39 22.63 22.25C22.77 22.1 22.85 21.92 22.85 21.72C22.85 21.51 22.77 21.33 22.63 21.19L17.86 16.34Z" fill="#000000" fill-opacity="0.901961" fill-rule="nonzero"/>
16+ </g>
17+</svg>
@@ -0,0 +1,17 @@
1+<svg width="48.000000" height="48.000000" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <linearGradient x1="24.022459" y1="0.352478" x2="24.022459" y2="47.602474" id="paint_linear_55_2205_0" gradientUnits="userSpaceOnUse">
7+ <stop stop-color="#FFFFFF" stop-opacity="0.600000"/>
8+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.200000"/>
9+ </linearGradient>
10+ </defs>
11+ <g opacity="0.000000">
12+ <rect id="矩形" width="48.000000" height="48.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <path id="路径" d="M0.39 24C0.39 28.28 1.45 32.22 3.55 35.82C5.66 39.42 8.52 42.28 12.14 44.4C15.76 46.53 19.71 47.6 24 47.6C28.28 47.6 32.23 46.53 35.85 44.4C39.47 42.28 42.34 39.41 44.46 35.8C46.58 32.17 47.64 28.24 47.64 24C47.64 19.71 46.58 15.76 44.46 12.14C42.34 8.52 39.47 5.65 35.85 3.53C32.23 1.41 28.28 0.35 24 0.35C19.71 0.35 15.76 1.41 12.14 3.53C8.52 5.65 5.66 8.52 3.55 12.14C1.45 15.76 0.39 19.71 0.39 24Z" fill="#999999" fill-opacity="1.000000" fill-rule="evenodd"/>
15+ <path id="路径" d="M0.39 24C0.39 28.28 1.45 32.22 3.55 35.82C5.66 39.42 8.52 42.28 12.14 44.4C15.76 46.53 19.71 47.6 24 47.6C28.28 47.6 32.23 46.53 35.85 44.4C39.47 42.28 42.34 39.41 44.46 35.8C46.58 32.17 47.64 28.24 47.64 24C47.64 19.71 46.58 15.76 44.46 12.14C42.34 8.52 39.47 5.65 35.85 3.53C32.23 1.41 28.28 0.35 24 0.35C19.71 0.35 15.76 1.41 12.14 3.53C8.52 5.65 5.66 8.52 3.55 12.14C1.45 15.76 0.39 19.71 0.39 24Z" fill="url(#paint_linear_55_2205_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
16+ <path id="车" d="M35.08 31.89L35.08 29.1L26.44 29.1L26.44 26.27L33.01 26.27L33.01 23.56L26.44 23.56L26.44 20.2L23.46 20.2L23.46 23.56L19.53 23.56Q20.77 21.74 22.07 19.27L34.41 19.27L34.41 16.53L23.44 16.53Q24.21 14.8 24.52 13.99L21.35 13.41Q20.9 14.71 20.03 16.53L14.39 16.53L14.39 19.27L18.64 19.27Q17.18 21.91 15.95 23.56L15.95 26.27L23.46 26.27L23.46 29.1L13.96 29.1L13.96 31.89L23.46 31.89L23.46 35.85L26.44 35.85L26.44 31.89L35.08 31.89Z" fill="#FFFFFF" fill-opacity="1.000000" fill-rule="evenodd"/>
17+</svg>
此文件变更行数或变更字符数较多,你可以直接 查看源码
@@ -0,0 +1,7 @@
1+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
2+ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3+<svg t="1716366594093" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2588"
4+ xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200">
5+ <path d="M916.3 466.3H218.1l288.4-288.4c17.8-17.8 17.8-46.9 0-64.7-17.8-17.8-46.9-17.8-64.7 0L75.3 479.7c-17.8 17.8-17.8 46.9 0 64.7l366.5 366.5c17.8 17.8 46.9 17.8 64.7 0 17.8-17.8 17.8-46.9 0-64.7L218.1 557.7h698.2c25.2 0 45.7-20.6 45.7-45.7 0-25.2-20.6-45.7-45.7-45.7z"
6+ fill="" p-id="2589"></path>
7+</svg>
@@ -0,0 +1,16 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip18_3264">
7+ <rect id="bag" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip18_3264)">
11+ <g opacity="0.000000">
12+ <rect id="rect" width="24.000000" height="24.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <path id="path" d="M19.01 3.5C19.42 3.5 19.77 3.64 20.06 3.94C20.35 4.22 20.5 4.57 20.5 4.98L20.5 19.01C20.5 19.41 20.35 19.75 20.06 20.04C19.77 20.35 19.42 20.5 19.01 20.5L4.98 20.5C4.59 20.5 4.24 20.35 3.94 20.04C3.64 19.75 3.5 19.41 3.5 19.01L3.5 4.98C3.5 4.57 3.64 4.22 3.93 3.94C4.22 3.64 4.57 3.5 4.98 3.5L19.01 3.5ZM4.98 1.98C4.44 1.98 3.94 2.12 3.48 2.39C3.03 2.67 2.67 3.03 2.39 3.48C2.12 3.95 1.98 4.45 1.98 4.98L1.98 19.01C1.98 19.54 2.12 20.04 2.39 20.51C2.67 20.96 3.03 21.32 3.48 21.6C3.94 21.87 4.44 22.01 4.98 22.01L19.01 22.01C19.54 22.01 20.04 21.87 20.51 21.6C20.96 21.32 21.32 20.96 21.6 20.51C21.87 20.04 22.01 19.54 22.01 19.01L22.01 4.98C22.01 4.45 21.87 3.95 21.6 3.48C21.32 3.03 20.96 2.67 20.51 2.39C20.04 2.12 19.54 1.98 19.01 1.98L4.98 1.98ZM12 10.49C11.32 10.49 10.7 10.32 10.12 9.97C9.55 9.64 9.09 9.19 8.76 8.62C8.42 8.03 8.26 7.4 8.26 6.71C8.26 6.52 8.18 6.35 8.04 6.2C7.89 6.05 7.71 5.97 7.51 5.97C7.3 5.97 7.12 6.05 6.96 6.2C6.81 6.35 6.73 6.52 6.73 6.71C6.73 7.67 6.97 8.56 7.44 9.37C7.92 10.17 8.56 10.81 9.36 11.29C10.17 11.76 11.05 12 12 12C12.94 12 13.82 11.76 14.62 11.29C15.43 10.81 16.07 10.17 16.54 9.37C17.02 8.56 17.26 7.67 17.26 6.71C17.26 6.52 17.18 6.35 17.04 6.2C16.89 6.05 16.71 5.97 16.51 5.97C16.3 5.97 16.12 6.05 15.97 6.2C15.81 6.35 15.74 6.52 15.74 6.71C15.74 7.4 15.57 8.03 15.24 8.62C14.9 9.19 14.45 9.64 13.86 9.97C13.29 10.32 12.67 10.49 12 10.49Z" fill="#000000" fill-opacity="0.901961" fill-rule="nonzero"/>
15+ </g>
16+</svg>
@@ -0,0 +1,8 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="形状" d="M3.81006 8.09094L11.01 3.27271C11.6399 2.90906 12.3601 2.90906 12.99 3.27271L20.1899 8.09094C20.73 8.45459 21 9 21 9.63635L21 20.0909C21 20.6364 20.6399 21 20.1001 21L3.8999 21C3.36011 21 3 20.6364 3 20.0909L3 9.63635C3 9 3.27002 8.45459 3.81006 8.09094ZM12 4.66492L4.56738 9.6366L4.56738 19.4874L19.4683 19.4874L19.4683 9.6366L12 4.66492Z" clip-rule="evenodd" fill="#000000" fill-opacity="0.901961" fill-rule="evenodd"/>
7+ <path id="路径" d="M15 16C15 16.5 14.6 16.9 14.1 17L10 17C9.39 17 9 16.6 9 16C9 15.5 9.39 15.1 9.89 15L14 15C14.6 15 15 15.4 15 16Z" fill="#000000" fill-opacity="0.901961" fill-rule="evenodd"/>
8+</svg>
@@ -0,0 +1,12 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <pattern id="pattern_6_11920" patternContentUnits="objectBoundingBox" width="1.000000" height="1.000000">
7+ <use xlink:href="#image6_1192_0" transform="matrix(0.002874,0,0,0.002874,0,0)"/>
8+ </pattern>
9+ <image id="image6_1192_0" width="348.000000" height="348.000000" xlink:href="data:image/png;base64,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"/>
10+ </defs>
11+ <rect id="src=https___bkimg.cdn.bcebos.com_smart_a8ec8a13632762d0f7036a3ab8be1ffa513d279768a1-bkimg-process,v_1,rw_1,rh_1,maxl_800,pad_1_x-bce-process=image_resize,m_pad,w_348,h_348,color_ffffff&amp;refer=http___www.baidu备份 2" width="24.000000" height="24.000000" fill="url(#pattern_6_11920)" fill-opacity="1.000000"/>
12+</svg>
@@ -0,0 +1,12 @@
1+<svg width="36.000000" height="36.000000" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <pattern id="pattern_6_11930" patternContentUnits="objectBoundingBox" width="1.000000" height="1.000000">
7+ <use xlink:href="#image6_1193_0" transform="matrix(0.003333,0,0,0.003333,0,0)"/>
8+ </pattern>
9+ <image id="image6_1193_0" width="300.000000" height="300.000000" xlink:href="data:image/png;base64,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"/>
10+ </defs>
11+ <rect id="src=https___bkimg.cdn.bcebos.com_smart_5bafa40f4bfbfbedab64c1fa60a2e036afc37831b1ae-bkimg-process,v_1,rw_1,rh_1,maxl_300,pad_1_x-bce-process=image_format,f_auto&amp;x-bce-process=image_resize,m_pad,w_348,h_348,color_ffffff&amp;refer=http___www.bai" width="36.000000" height="36.000000" fill="url(#pattern_6_11930)" fill-opacity="1.000000"/>
12+</svg>
此文件变更行数或变更字符数较多,你可以直接 查看源码
此文件变更行数或变更字符数较多,你可以直接 查看源码
@@ -0,0 +1,16 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip18_3571">
7+ <rect id="cart" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip18_3571)">
11+ <g opacity="0.000000">
12+ <rect id="rect" width="24.000000" height="24.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <path id="path" d="M19.08 15.05C19.49 15.05 19.87 14.88 20.21 14.54C20.56 14.2 20.77 13.79 20.83 13.3L21.91 5.69C21.93 5.59 21.92 5.49 21.89 5.39C21.85 5.28 21.8 5.18 21.72 5.09C21.57 4.93 21.39 4.85 21.17 4.85L5.93 4.85L5.57 2.69C5.53 2.51 5.44 2.36 5.3 2.24C5.16 2.12 5 2.06 4.82 2.06L2.83 2.06C2.62 2.06 2.44 2.13 2.3 2.28C2.16 2.42 2.09 2.6 2.09 2.81C2.09 3.01 2.16 3.19 2.3 3.34C2.44 3.48 2.62 3.55 2.83 3.55L4.2 3.55L5.95 13.7C5.53 13.84 5.2 14.1 4.94 14.46C4.68 14.82 4.56 15.22 4.56 15.67C4.56 16.05 4.65 16.41 4.85 16.74C5.04 17.06 5.3 17.32 5.63 17.52C5.95 17.71 6.31 17.81 6.7 17.81L20.09 17.81C20.29 17.81 20.47 17.73 20.62 17.58C20.76 17.42 20.83 17.24 20.83 17.04C20.83 16.83 20.76 16.65 20.62 16.51C20.47 16.37 20.29 16.29 20.09 16.29L6.67 16.29C6.49 16.29 6.35 16.24 6.22 16.12C6.11 16 6.05 15.85 6.05 15.67C6.05 15.49 6.11 15.35 6.23 15.23C6.36 15.11 6.51 15.05 6.67 15.05L19.08 15.05ZM20.29 6.36L19.34 13.08C19.32 13.2 19.26 13.32 19.16 13.42C19.06 13.51 18.93 13.56 18.79 13.56L7.44 13.56L6.21 6.34L20.29 6.36ZM8.09 20.18C8.09 20.66 8.26 21.07 8.6 21.42C8.94 21.76 9.36 21.94 9.84 21.94C10.32 21.94 10.73 21.76 11.08 21.42C11.42 21.07 11.59 20.66 11.59 20.18C11.59 19.7 11.42 19.29 11.08 18.95C10.73 18.6 10.32 18.43 9.84 18.43C9.36 18.43 8.94 18.6 8.6 18.95C8.26 19.29 8.09 19.7 8.09 20.18ZM15.1 20.18C15.1 20.66 15.26 21.07 15.6 21.42C15.93 21.76 16.34 21.94 16.82 21.94C17.32 21.94 17.73 21.76 18.07 21.42C18.41 21.07 18.58 20.66 18.58 20.18C18.58 19.7 18.41 19.29 18.07 18.95C17.73 18.6 17.32 18.43 16.82 18.43C16.34 18.43 15.93 18.6 15.6 18.95C15.26 19.29 15.1 19.7 15.1 20.18Z" fill="#000000" fill-opacity="0.901961" fill-rule="nonzero"/>
15+ </g>
16+</svg>
@@ -0,0 +1,7 @@
1+<svg width="22.000000" height="19.000000" viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="path-1" d="M22 7.5C22 3.35785 18.6421 0 14.5 0L7.5 0L7.37598 0.000976562C3.29102 0.0672607 0 3.39929 0 7.5C0 11.6422 3.35791 15 7.5 15L8.25 15L8.29419 14.9987C8.68774 14.9759 9 14.6494 9 14.25C9 13.8358 8.66431 13.5 8.25 13.5L7.5 13.5L7.40088 13.4992C4.13281 13.4462 1.5 10.7806 1.5 7.5C1.5 4.18628 4.18628 1.5 7.5 1.5L14.5991 1.50079C17.8672 1.55377 20.5 4.21942 20.5 7.5C20.5 10.8137 17.8137 13.5 14.5 13.5L12.5 13.5L12.4504 13.5016C12.2695 13.5136 12.0986 13.5908 11.9697 13.7197L7.96973 17.7197L7.93604 17.7557C7.67725 18.0502 7.68848 18.4991 7.96973 18.7803L8.00562 18.8141C8.30029 19.0728 8.74927 19.0615 9.03027 18.7803L12.8105 15L14.5 15L14.624 14.999C18.709 14.9327 22 11.6007 22 7.5ZM7.75 6.25C8.44043 6.25 9 6.80963 9 7.5C9 8.19037 8.44043 8.75 7.75 8.75C7.05957 8.75 6.5 8.19037 6.5 7.5C6.5 6.80963 7.05957 6.25 7.75 6.25ZM15.5 7.5C15.5 6.80963 14.9404 6.25 14.25 6.25C13.5596 6.25 13 6.80963 13 7.5C13 8.19037 13.5596 8.75 14.25 8.75C14.9404 8.75 15.5 8.19037 15.5 7.5Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,14 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip85_2087">
7+ <rect id="chevron_backward" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip85_2087)">
11+ <g opacity="0.000000"/>
12+ <path id="path" d="M8.09 12L15.05 5.04C15.19 4.88 15.26 4.69 15.26 4.5C15.26 4.3 15.19 4.12 15.05 3.95C14.9 3.81 14.72 3.73 14.52 3.73C14.31 3.73 14.13 3.81 13.99 3.95L7.01 10.93C6.72 11.23 6.58 11.58 6.58 12C6.58 12.41 6.72 12.76 7.01 13.05L13.97 19.99C14.09 20.13 14.26 20.2 14.48 20.2C14.7 20.2 14.88 20.13 15.02 19.99C15.16 19.85 15.24 19.67 15.24 19.45C15.24 19.25 15.16 19.08 15.02 18.93L8.09 12Z" fill="#000000" fill-opacity="0.898039" fill-rule="nonzero"/>
13+ </g>
14+</svg>
@@ -0,0 +1,9 @@
1+<svg width="32.000000" height="32.000000" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <rect id="矩形" rx="10.000000" width="32.000000" height="32.000000" fill="#0A59F7" fill-opacity="1.000000"/>
7+ <rect id="矩形" x="0.500000" y="0.500000" rx="10.000000" width="31.000000" height="31.000000" stroke="#979797" stroke-opacity="0" stroke-width="1.000000"/>
8+ <path id="形状" d="M23.96 14.0466C25.0454 13.7087 25.8333 12.6964 25.8333 11.5C25.8333 10.2576 24.9836 9.21362 23.8337 8.91748L23.8333 6.83325C23.8333 6.46509 23.5347 6.16663 23.1665 6.16663C22.7983 6.16663 22.5 6.46509 22.5 6.83325L22.4998 8.91736L22.3848 8.94971C21.2935 9.28381 20.5 10.2992 20.5 11.5C20.5 12.7424 21.3496 13.7865 22.4998 14.0825L22.5 25.0555C22.5 25.4237 22.7983 25.7222 23.1665 25.7222C23.5347 25.7222 23.8333 25.4237 23.8333 25.0555L23.8337 14.0825L23.96 14.0466ZM22.4998 14.0825L22.5354 14.0914C22.5234 14.0886 22.5115 14.0856 22.4998 14.0825ZM23.8337 8.91748L23.8103 8.9115C23.8181 8.91345 23.8259 8.91541 23.8337 8.91748ZM23.1665 10.1666C23.9031 10.1666 24.5 10.7635 24.5 11.5C24.5 12.2363 23.9031 12.8333 23.1665 12.8333C22.4302 12.8333 21.8333 12.2363 21.8333 11.5C21.8333 10.7635 22.4302 10.1666 23.1665 10.1666ZM18.6111 20.3888C18.6111 21.5402 17.8813 22.5211 16.8594 22.8944L16.7222 22.9403L16.7222 25.0555C16.7222 25.4237 16.4236 25.7222 16.0554 25.7222C15.6873 25.7222 15.3889 25.4237 15.3889 25.0555L15.3877 22.9973C15.4053 23.0011 15.4229 23.0046 15.4404 23.0079L15.3877 22.9973C14.1821 22.7413 13.2776 21.6708 13.2776 20.3888C13.2776 19.1426 14.1326 18.0959 15.2881 17.8036L15.3877 17.7804L15.3889 6.83325C15.3889 6.46509 15.6873 6.16663 16.0554 6.16663C16.4236 6.16663 16.7222 6.46509 16.7222 6.83325L16.7222 17.8374C17.8154 18.1703 18.6111 19.1866 18.6111 20.3888ZM15.9443 19.0555C16.6807 19.0555 17.2776 19.6525 17.2776 20.3888C17.2776 21.1252 16.6807 21.7222 15.9443 21.7222C15.208 21.7222 14.6111 21.1252 14.6111 20.3888C14.6111 19.6525 15.208 19.0555 15.9443 19.0555ZM11.6111 11.5C11.6111 12.6964 10.823 13.7087 9.73779 14.0466L9.61157 14.0825L9.61108 25.0555C9.61108 25.4237 9.3125 25.7222 8.94434 25.7222C8.57617 25.7222 8.27759 25.4237 8.27759 25.0555L8.27759 14.0825C8.28931 14.0856 8.30127 14.0886 8.31323 14.0914L8.27759 14.0825C7.12744 13.7865 6.27759 12.7424 6.27759 11.5C6.27759 10.2992 7.07129 9.28381 8.1626 8.94971L8.27759 8.91736L8.27759 6.83325C8.27759 6.46509 8.57617 6.16663 8.94434 6.16663C9.3125 6.16663 9.61108 6.46509 9.61108 6.83325L9.61157 8.91748C10.7615 9.21362 11.6111 10.2576 11.6111 11.5ZM10.2776 11.5C10.2776 10.7635 9.68066 10.1666 8.94434 10.1666C8.20801 10.1666 7.61108 10.7635 7.61108 11.5C7.61108 12.2363 8.20801 12.8333 8.94434 12.8333C9.68066 12.8333 10.2776 12.2363 10.2776 11.5Z" clip-rule="evenodd" fill="#FFFFFF" fill-opacity="1.000000" fill-rule="evenodd"/>
9+</svg>
@@ -0,0 +1,7 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="path-1" d="M11.6763 5L12.6396 5.00171C15.4438 5.02783 17.2546 5.34985 17.95 6.08398C18.5046 6.6698 19.7148 9.55994 19.752 9.67358C20.1995 9.79541 20.6006 9.98242 20.9553 10.2347L20.9556 10.2347C21.0569 10.3069 21.1545 10.3844 21.2483 10.4672C21.8811 11.0259 21.9988 11.5177 22 11.6581L21.9971 11.9081C21.9541 13.5878 21.468 18.3578 21.3462 18.6562C21.1917 19.0341 18.8315 19.1312 17.9067 18.7917C17.6682 18.7014 17.5488 18.3938 17.5488 17.8691L17.5488 17.4124L6.32544 17.4124L6.32544 17.8691C6.32544 18.3561 6.22266 18.656 6.01733 18.7689L6.01636 18.7693C6.00073 18.7778 5.98438 18.7854 5.96753 18.7917C5.04272 19.1312 2.68262 19.0341 2.52808 18.6562C2.37842 18.2896 1.99292 12.7299 2 11.6581C2.00122 11.5177 2.26904 10.9006 2.76001 10.4672C3.0874 10.1781 3.5835 9.9137 4.24805 9.67358L4.41431 9.271C4.771 8.4325 5.61108 6.54761 6.05005 6.08398C6.77124 5.32263 8.69189 5.00452 11.6763 5ZM11.6782 6.28589L12.2947 6.28589C15.0315 6.29041 16.6372 6.58215 16.9963 6.96143C17.2268 7.20459 18.1841 9.24219 18.4531 9.91467L18.51 10.0669L18.5732 10.26C16.3809 10.0399 14.1882 9.92981 11.9956 9.92981C9.80615 9.92981 7.61694 10.0396 5.42773 10.259L5.48999 10.0669L5.54712 9.91455C5.81592 9.24182 6.77124 7.20691 7.00366 6.96143C7.35791 6.58752 8.95947 6.28992 11.6782 6.28589ZM3.96118 11.7185C6.6394 11.3833 9.31763 11.2157 11.9956 11.2157C14.6738 11.2157 17.3518 11.3833 20.0303 11.7185L20.6931 11.8064L20.6926 11.8765C20.6655 12.8171 20.4612 15.1511 20.3066 16.6995L20.2021 17.6852L20.0359 17.6991L19.8623 17.7083L19.6919 17.713C19.4084 17.7177 19.1304 17.7061 18.8958 17.6832L18.8533 17.6783L18.8535 16.1265L5.02124 16.1265L5.02075 17.6783L4.97681 17.684C4.69751 17.7106 4.35303 17.7219 4.01221 17.7083L3.83887 17.6991L3.68579 17.6869L3.59521 16.5544C3.4895 15.1562 3.35913 13.2074 3.31787 12.187L3.30664 11.8508L3.33325 11.8013L3.96118 11.7185ZM7.21143 13.8573L5.38623 13.6407C5.16211 13.6407 4.98047 13.8346 4.98047 14.0739L4.98047 14.7235L4.98706 14.8014C5.02148 15.0034 5.18701 15.1566 5.38623 15.1566L7.21143 15.1566L7.28418 15.1497C7.47339 15.113 7.61694 14.9362 7.61694 14.7235L7.61694 14.2904L7.61035 14.2125C7.57617 14.0105 7.4104 13.8573 7.21143 13.8573ZM18.645 13.6407C18.8689 13.6407 19.0505 13.8346 19.0505 14.0739L19.0505 14.7235C19.0505 14.9628 18.8689 15.1566 18.645 15.1566L16.8198 15.1566C16.5957 15.1566 16.4141 14.9628 16.4141 14.7235L16.4141 14.2904C16.4141 14.0511 16.5957 13.8573 16.8198 13.8573L18.645 13.6407ZM15.0959 14.074C15.3386 14.074 15.5354 14.2678 15.5354 14.5071C15.5354 14.7463 15.3386 14.9402 15.0959 14.9402L8.9353 14.9402C8.69263 14.9402 8.49585 14.7463 8.49585 14.5071C8.49585 14.2678 8.69263 14.074 8.9353 14.074L15.0959 14.074Z" clip-rule="evenodd" fill="#000000" fill-opacity="0.901961" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,7 @@
1+<svg width="10.800049" height="9.000000" viewBox="0 0 10.8 9" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="path-1" d="M0.9 0.92C2.04 -0.18 3.82 -0.3 5.11 0.56C5.26 0.67 5.41 0.78 5.55 0.92L5.48 0.86C5.49 0.86 5.5 0.87 5.51 0.88L5.55 0.92C5.6 0.97 5.65 1.01 5.7 1.06C5.77 1.13 5.85 1.2 5.92 1.27L5.98 1.33C6.2 1.55 6.38 1.73 6.51 1.87C6.64 2.01 6.63 2.23 6.48 2.36C6.33 2.49 6.1 2.48 5.96 2.33L5.89 2.26C5.7 2.06 5.41 1.77 5.03 1.41L4.94 1.33C3.94 0.46 2.38 0.48 1.41 1.41C0.47 2.31 0.52 3.74 1.44 4.92C1.74 5.31 2.22 5.81 2.84 6.38L2.84 6.38L2.86 6.4C3.14 6.66 3.66 7.1 4.42 7.72L4.42 7.72L4.92 8.13C5.2 8.35 5.59 8.35 5.87 8.13L5.87 8.13L6.33 7.76C7.07 7.15 7.59 6.71 7.89 6.44L7.89 6.44L8.02 6.32C8.6 5.78 9.06 5.3 9.35 4.92C10.27 3.74 10.32 2.31 9.38 1.41C8.55 0.62 7.3 0.48 6.32 1C6.18 0.87 6.04 0.73 5.89 0.59C5.86 0.56 5.83 0.52 5.79 0.49C7.06 -0.29 8.78 -0.15 9.89 0.92C11.11 2.08 11.06 3.91 9.94 5.34L9.94 5.34L9.9 5.38C9.56 5.81 9.05 6.34 8.4 6.95L8.4 6.95L8.37 6.97C8.05 7.26 7.49 7.73 6.7 8.37L6.7 8.37L6.34 8.67C5.79 9.11 5 9.1 4.45 8.66C3.43 7.84 2.74 7.26 2.37 6.92L2.37 6.92L2.26 6.82C1.65 6.25 1.17 5.75 0.85 5.34C-0.27 3.91 -0.32 2.08 0.9 0.92Z" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,49 @@
1+<svg width="26.873047" height="29.936584" viewBox="0 0 26.873 29.9366" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <filter id="filter_23_2342_dd" x="0.000000" y="16.013428" width="26.873047" height="13.923157" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9+ <feGaussianBlur stdDeviation="1.81219" result="effect_layerBlur_1"/>
10+ </filter>
11+ <linearGradient x1="21.436523" y1="22.437027" x2="5.436523" y2="22.437027" id="paint_linear_23_2342_0" gradientUnits="userSpaceOnUse">
12+ <stop stop-color="#0A59F7"/>
13+ <stop offset="1.000000" stop-color="#0A59F7"/>
14+ </linearGradient>
15+ <linearGradient x1="20.209732" y1="21.990429" x2="11.813107" y2="24.115444" id="paint_linear_23_2342_1" gradientUnits="userSpaceOnUse">
16+ <stop stop-color="#0CA78E"/>
17+ <stop offset="0.392266" stop-color="#30D9C9"/>
18+ <stop offset="1.000000" stop-color="#1BC29C"/>
19+ </linearGradient>
20+ <linearGradient x1="13.436523" y1="22.644819" x2="13.436523" y2="24.500000" id="paint_linear_23_2342_2" gradientUnits="userSpaceOnUse">
21+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
22+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
23+ </linearGradient>
24+ <linearGradient x1="12.068056" y1="18.032009" x2="18.805176" y2="3.720920" id="paint_linear_23_2347_0" gradientUnits="userSpaceOnUse">
25+ <stop stop-color="#26C3A9"/>
26+ <stop offset="0.392266" stop-color="#30D9C9"/>
27+ <stop offset="1.000000" stop-color="#1BC29C"/>
28+ </linearGradient>
29+ <linearGradient x1="24.015263" y1="4.225300" x2="20.447067" y2="16.688627" id="paint_linear_23_2350_0" gradientUnits="userSpaceOnUse">
30+ <stop stop-color="#0CA78E"/>
31+ <stop offset="0.392266" stop-color="#30D9C9"/>
32+ <stop offset="1.000000" stop-color="#1BC29C"/>
33+ </linearGradient>
34+ </defs>
35+ <g opacity="0.643511" filter="url(#filter_23_2342_dd)">
36+ <path id="形状备份 2" d="M18.4561 21.485C18.075 21.4629 17.5117 21.45 16.915 21.45L9.92725 21.45L9.7876 21.4503C9.18604 21.4523 8.63159 21.4674 8.28149 21.4916C7.96924 21.5132 7.6875 21.5327 7.43652 21.55L18.6389 21.55L19.3806 21.7906L7.38232 21.7908C6.35327 22.1373 5.83887 22.3121 5.83887 22.3149C4.93359 22.577 5.83887 22.716 5.83887 22.716C5.83887 22.716 7.11157 23.0333 8.5564 23.3932L8.82886 23.4611C8.96606 23.4952 9.104 23.5296 9.24194 23.564L9.59351 23.6515C11.1699 24.044 12.6445 24.4108 12.645 24.4091C13.4092 24.599 14.1873 24.4362 14.2944 24.412L14.3071 24.4091C14.3071 24.4091 15.7942 24.0422 17.384 23.6494L17.7385 23.5618L18.0164 23.4931C19.6345 23.0931 21.1699 22.713 21.1699 22.7102C21.8389 22.5229 21.0383 22.3282 21.0383 22.3282L18.6389 21.55L19.4365 21.55L18.5405 21.4902L18.4561 21.485ZM13.2178 23.55L13.4365 23.45L12.6553 23.45L12.4365 23.55L13.2178 23.55Z" clip-rule="evenodd" fill="url(#paint_linear_23_2342_0)" fill-opacity="0.000000" fill-rule="evenodd"/>
37+ <path id="形状备份 2" d="M18.4561 21.485C18.075 21.4629 17.5117 21.45 16.915 21.45L9.92725 21.45L9.7876 21.4503C9.18604 21.4523 8.63159 21.4674 8.28149 21.4916C7.96924 21.5132 7.6875 21.5327 7.43652 21.55L18.6389 21.55L19.3806 21.7906L7.38232 21.7908C6.35327 22.1373 5.83887 22.3121 5.83887 22.3149C4.93359 22.577 5.83887 22.716 5.83887 22.716C5.83887 22.716 7.11157 23.0333 8.5564 23.3932L8.82886 23.4611C8.96606 23.4952 9.104 23.5296 9.24194 23.564L9.59351 23.6515C11.1699 24.044 12.6445 24.4108 12.645 24.4091C13.4092 24.599 14.1873 24.4362 14.2944 24.412L14.3071 24.4091C14.3071 24.4091 15.7942 24.0422 17.384 23.6494L17.7385 23.5618L18.0164 23.4931C19.6345 23.0931 21.1699 22.713 21.1699 22.7102C21.8389 22.5229 21.0383 22.3282 21.0383 22.3282L18.6389 21.55L19.4365 21.55L18.5405 21.4902L18.4561 21.485ZM13.2178 23.55L13.4365 23.45L12.6553 23.45L12.4365 23.55L13.2178 23.55Z" clip-rule="evenodd" fill="url(#paint_linear_23_2342_1)" fill-opacity="1.000000" fill-rule="evenodd"/>
38+ <path id="形状备份 2" d="M18.4561 21.485C18.075 21.4629 17.5117 21.45 16.915 21.45L9.92725 21.45L9.7876 21.4503C9.18604 21.4523 8.63159 21.4674 8.28149 21.4916C7.96924 21.5132 7.6875 21.5327 7.43652 21.55L18.6389 21.55L19.3806 21.7906L7.38232 21.7908C6.35327 22.1373 5.83887 22.3121 5.83887 22.3149C4.93359 22.577 5.83887 22.716 5.83887 22.716C5.83887 22.716 7.11157 23.0333 8.5564 23.3932L8.82886 23.4611C8.96606 23.4952 9.104 23.5296 9.24194 23.564L9.59351 23.6515C11.1699 24.044 12.6445 24.4108 12.645 24.4091C13.4092 24.599 14.1873 24.4362 14.2944 24.412L14.3071 24.4091C14.3071 24.4091 15.7942 24.0422 17.384 23.6494L17.7385 23.5618L18.0164 23.4931C19.6345 23.0931 21.1699 22.713 21.1699 22.7102C21.8389 22.5229 21.0383 22.3282 21.0383 22.3282L18.6389 21.55L19.4365 21.55L18.5405 21.4902L18.4561 21.485ZM13.2178 23.55L13.4365 23.45L12.6553 23.45L12.4365 23.55L13.2178 23.55Z" clip-rule="evenodd" fill="url(#paint_linear_23_2342_2)" fill-opacity="0.000000" fill-rule="evenodd"/>
39+ <path id="形状备份 2" d="M18.4561 21.485C18.075 21.4629 17.5117 21.45 16.915 21.45L9.92725 21.45L9.7876 21.4503C9.18604 21.4523 8.63159 21.4674 8.28149 21.4916C7.96924 21.5132 7.6875 21.5327 7.43652 21.55L18.6389 21.55L19.3806 21.7906L7.38232 21.7908C6.35327 22.1373 5.83887 22.3121 5.83887 22.3149C4.93359 22.577 5.83887 22.716 5.83887 22.716C5.83887 22.716 7.11157 23.0333 8.5564 23.3932L8.82886 23.4611C8.96606 23.4952 9.104 23.5296 9.24194 23.564L9.59351 23.6515C11.1699 24.044 12.6445 24.4108 12.645 24.4091C13.4092 24.599 14.1873 24.4362 14.2944 24.412L14.3071 24.4091C14.3071 24.4091 15.7942 24.0422 17.384 23.6494L17.7385 23.5618L18.0164 23.4931C19.6345 23.0931 21.1699 22.713 21.1699 22.7102C21.8389 22.5229 21.0383 22.3282 21.0383 22.3282L18.6389 21.55L19.4365 21.55L18.5405 21.4902L18.4561 21.485ZM13.2178 23.55L13.4365 23.45L12.6553 23.45L12.4365 23.55L13.2178 23.55Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
40+ </g>
41+ <g opacity="0.600000">
42+ <path id="形状" d="M7.99902 3.13812C7.99902 1.40497 9.40405 0 11.1372 0L15.3608 0C17.094 0 18.499 1.40497 18.499 3.13812L18.499 19.425L19.0271 19.425C19.4602 19.425 19.8115 19.7762 19.8115 20.2095L19.8115 20.2155C19.8115 20.6487 19.4602 21 19.0271 21L7.47095 21C7.03784 21 6.68652 20.6487 6.68652 20.2155L6.68652 20.2095C6.68652 19.7762 7.03784 19.425 7.47095 19.425L7.99902 19.425L7.99902 3.13812ZM11.1431 1.57501L15.355 1.57501C16.2214 1.57501 16.9241 2.27747 16.9241 3.14404L16.9241 7.35596L16.9177 7.49878C16.8455 8.2984 16.1733 8.92499 15.355 8.92499L11.1431 8.92499L11.0002 8.91858C10.2007 8.84644 9.57397 8.17438 9.57397 7.35596L9.57397 3.14404L9.58032 3.00122C9.65259 2.2016 10.3247 1.57501 11.1431 1.57501Z" clip-rule="evenodd" fill="#44D7B6" fill-opacity="0.000000" fill-rule="evenodd"/>
43+ <path id="形状" d="M7.99902 3.13812C7.99902 1.40497 9.40405 0 11.1372 0L15.3608 0C17.094 0 18.499 1.40497 18.499 3.13812L18.499 19.425L19.0271 19.425C19.4602 19.425 19.8115 19.7762 19.8115 20.2095L19.8115 20.2155C19.8115 20.6487 19.4602 21 19.0271 21L7.47095 21C7.03784 21 6.68652 20.6487 6.68652 20.2155L6.68652 20.2095C6.68652 19.7762 7.03784 19.425 7.47095 19.425L7.99902 19.425L7.99902 3.13812ZM11.1431 1.57501L15.355 1.57501C16.2214 1.57501 16.9241 2.27747 16.9241 3.14404L16.9241 7.35596L16.9177 7.49878C16.8455 8.2984 16.1733 8.92499 15.355 8.92499L11.1431 8.92499L11.0002 8.91858C10.2007 8.84644 9.57397 8.17438 9.57397 7.35596L9.57397 3.14404L9.58032 3.00122C9.65259 2.2016 10.3247 1.57501 11.1431 1.57501Z" clip-rule="evenodd" fill="url(#paint_linear_23_2347_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
44+ </g>
45+ <g opacity="0.354204">
46+ <path id="路径" d="M21.5 1.2L21.54 1.24L23.81 3.15C24.25 3.52 24.51 4.05 24.53 4.63L24.53 4.7L24.53 16.65C24.53 17.91 23.51 18.94 22.25 18.94C21.02 18.94 20.01 17.95 19.97 16.71L19.97 16.65L19.97 9.19C19.97 8.4 19.35 7.76 18.57 7.73L18.52 7.73C18.08 7.73 17.73 7.37 17.73 6.94C17.73 6.5 18.08 6.15 18.52 6.15C20.16 6.15 21.5 7.47 21.54 9.11L21.54 9.19L21.54 16.65C21.54 17.04 21.86 17.36 22.25 17.36C22.63 17.36 22.94 17.06 22.96 16.69L22.96 16.65L22.96 4.95L20.82 4.96C20.61 4.96 20.45 4.79 20.45 4.59C20.45 4.49 20.49 4.39 20.56 4.32L21.57 3.32L20.54 2.44C20.2 2.16 20.16 1.67 20.44 1.33C20.71 1.01 21.17 0.96 21.5 1.2Z" fill="#44D7B6" fill-opacity="1.000000" fill-rule="evenodd"/>
47+ <path id="路径" d="M21.5 1.2L21.54 1.24L23.81 3.15C24.25 3.52 24.51 4.05 24.53 4.63L24.53 4.7L24.53 16.65C24.53 17.91 23.51 18.94 22.25 18.94C21.02 18.94 20.01 17.95 19.97 16.71L19.97 16.65L19.97 9.19C19.97 8.4 19.35 7.76 18.57 7.73L18.52 7.73C18.08 7.73 17.73 7.37 17.73 6.94C17.73 6.5 18.08 6.15 18.52 6.15C20.16 6.15 21.5 7.47 21.54 9.11L21.54 9.19L21.54 16.65C21.54 17.04 21.86 17.36 22.25 17.36C22.63 17.36 22.94 17.06 22.96 16.69L22.96 16.65L22.96 4.95L20.82 4.96C20.61 4.96 20.45 4.79 20.45 4.59C20.45 4.49 20.49 4.39 20.56 4.32L21.57 3.32L20.54 2.44C20.2 2.16 20.16 1.67 20.44 1.33C20.71 1.01 21.17 0.96 21.5 1.2Z" fill="url(#paint_linear_23_2350_0)" fill-opacity="0" fill-rule="evenodd"/>
48+ </g>
49+</svg>
@@ -0,0 +1,68 @@
1+<svg width="32.873047" height="28.026062" viewBox="0 0 32.873 28.0261" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <filter id="filter_23_2352_dd" x="0.000000" y="14.102905" width="32.873047" height="13.923157" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9+ <feGaussianBlur stdDeviation="1.81219" result="effect_layerBlur_1"/>
10+ </filter>
11+ <filter id="filter_23_2357_dd" x="6.999512" y="0.000000" width="16.901367" height="19.154907" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13+ <feGaussianBlur in="BackgroundImage" stdDeviation="11.7792"/>
14+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
15+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
16+ </filter>
17+ <filter id="filter_23_2358_dd" x="6.999512" y="0.000000" width="16.901367" height="19.154907" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
18+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
19+ <feGaussianBlur in="BackgroundImage" stdDeviation="11.7792"/>
20+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
21+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
22+ </filter>
23+ <filter id="filter_23_2359_dd" x="10.601318" y="3.518250" width="9.697510" height="1.700012" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
24+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
25+ <feGaussianBlur in="BackgroundImage" stdDeviation="11.7792"/>
26+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
27+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
28+ </filter>
29+ <linearGradient x1="27.436523" y1="20.526505" x2="5.436523" y2="20.526505" id="paint_linear_23_2352_0" gradientUnits="userSpaceOnUse">
30+ <stop stop-color="#0A59F7"/>
31+ <stop offset="1.000000" stop-color="#0A59F7"/>
32+ </linearGradient>
33+ <linearGradient x1="16.436527" y1="20.734297" x2="16.436527" y2="22.589478" id="paint_linear_23_2352_1" gradientUnits="userSpaceOnUse">
34+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
35+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
36+ </linearGradient>
37+ <linearGradient x1="23.900919" y1="6.198788" x2="6.999510" y2="6.198788" id="paint_linear_23_2357_0" gradientUnits="userSpaceOnUse">
38+ <stop stop-color="#0A59F7"/>
39+ <stop offset="1.000000" stop-color="#0A59F7"/>
40+ </linearGradient>
41+ <linearGradient x1="15.450212" y1="7.503790" x2="11.487093" y2="19.154930" id="paint_linear_23_2357_1" gradientUnits="userSpaceOnUse">
42+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
43+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
44+ </linearGradient>
45+ <linearGradient x1="26.629456" y1="11.296997" x2="13.638672" y2="11.296997" id="paint_linear_23_2360_0" gradientUnits="userSpaceOnUse">
46+ <stop stop-color="#2F6BD6"/>
47+ <stop offset="0.470277" stop-color="#76A0F9"/>
48+ <stop offset="1.000000" stop-color="#3370E5"/>
49+ </linearGradient>
50+ <linearGradient x1="20.134066" y1="12.182671" x2="20.134066" y2="20.090027" id="paint_linear_23_2360_1" gradientUnits="userSpaceOnUse">
51+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
52+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
53+ </linearGradient>
54+ </defs>
55+ <g opacity="0.643511" filter="url(#filter_23_2352_dd)">
56+ <path id="形状备份 2" d="M23.1292 19.5745C22.6211 19.5524 21.8701 19.5395 21.0745 19.5395L11.7573 19.5395L11.5713 19.5397C10.769 19.5417 10.03 19.5569 9.56299 19.5811C9.14673 19.6027 8.77124 19.6221 8.43652 19.6395L23.5896 19.6395L24.6096 19.8801L8.11182 19.8803C6.69727 20.2268 5.98975 20.4016 5.98975 20.4044C4.74487 20.6665 5.98975 20.8055 5.98975 20.8055C5.98975 20.8055 7.73975 21.1228 9.72632 21.4827L10.1011 21.5506C10.2896 21.5847 10.4792 21.6191 10.6689 21.6534L11.1523 21.741C13.3201 22.1335 15.3479 22.5002 15.3481 22.4986C16.3989 22.6885 17.4688 22.5257 17.6162 22.5015L17.6335 22.4986C17.6335 22.4986 19.6785 22.1317 21.8643 21.7389L22.3516 21.6513L22.7339 21.5826C24.959 21.1826 27.0698 20.8024 27.0698 20.7997C27.9897 20.6124 26.8892 20.4177 26.8892 20.4177L23.5898 19.6395L24.4365 19.6395L23.2419 19.5797L23.1292 19.5745ZM16.2178 21.6395L16.4365 21.5395L15.6553 21.5395L15.4365 21.6395L16.2178 21.6395Z" clip-rule="evenodd" fill="url(#paint_linear_23_2352_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
57+ <path id="形状备份 2" d="M23.1292 19.5745C22.6211 19.5524 21.8701 19.5395 21.0745 19.5395L11.7573 19.5395L11.5713 19.5397C10.769 19.5417 10.03 19.5569 9.56299 19.5811C9.14673 19.6027 8.77124 19.6221 8.43652 19.6395L23.5896 19.6395L24.6096 19.8801L8.11182 19.8803C6.69727 20.2268 5.98975 20.4016 5.98975 20.4044C4.74487 20.6665 5.98975 20.8055 5.98975 20.8055C5.98975 20.8055 7.73975 21.1228 9.72632 21.4827L10.1011 21.5506C10.2896 21.5847 10.4792 21.6191 10.6689 21.6534L11.1523 21.741C13.3201 22.1335 15.3479 22.5002 15.3481 22.4986C16.3989 22.6885 17.4688 22.5257 17.6162 22.5015L17.6335 22.4986C17.6335 22.4986 19.6785 22.1317 21.8643 21.7389L22.3516 21.6513L22.7339 21.5826C24.959 21.1826 27.0698 20.8024 27.0698 20.7997C27.9897 20.6124 26.8892 20.4177 26.8892 20.4177L23.5898 19.6395L24.4365 19.6395L23.2419 19.5797L23.1292 19.5745ZM16.2178 21.6395L16.4365 21.5395L15.6553 21.5395L15.4365 21.6395L16.2178 21.6395Z" clip-rule="evenodd" fill="url(#paint_linear_23_2352_1)" fill-opacity="0.000000" fill-rule="evenodd"/>
58+ <path id="形状备份 2" d="M23.1292 19.5745C22.6211 19.5524 21.8701 19.5395 21.0745 19.5395L11.7573 19.5395L11.5713 19.5397C10.769 19.5417 10.03 19.5569 9.56299 19.5811C9.14673 19.6027 8.77124 19.6221 8.43652 19.6395L23.5896 19.6395L24.6096 19.8801L8.11182 19.8803C6.69727 20.2268 5.98975 20.4016 5.98975 20.4044C4.74487 20.6665 5.98975 20.8055 5.98975 20.8055C5.98975 20.8055 7.73975 21.1228 9.72632 21.4827L10.1011 21.5506C10.2896 21.5847 10.4792 21.6191 10.6689 21.6534L11.1523 21.741C13.3201 22.1335 15.3479 22.5002 15.3481 22.4986C16.3989 22.6885 17.4688 22.5257 17.6162 22.5015L17.6335 22.4986C17.6335 22.4986 19.6785 22.1317 21.8643 21.7389L22.3516 21.6513L22.7339 21.5826C24.959 21.1826 27.0698 20.8024 27.0698 20.7997C27.9897 20.6124 26.8892 20.4177 26.8892 20.4177L23.5898 19.6395L24.4365 19.6395L23.2419 19.5797L23.1292 19.5745ZM16.2178 21.6395L16.4365 21.5395L15.6553 21.5395L15.4365 21.6395L16.2178 21.6395Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
59+ </g>
60+ <g opacity="0.603559" filter="url(#filter_23_2357_dd)">
61+ <path id="形状" d="M23.9009 3.38031C23.9009 1.51343 22.3875 0 20.5208 0L10.3799 0C8.51294 0 6.99951 1.51343 6.99951 3.38031L6.99951 15.7747C6.99951 17.6415 8.51294 19.1549 10.3799 19.1549L20.5208 19.1549C22.3875 19.1549 23.9009 17.6415 23.9009 15.7747L23.9009 3.38031ZM11.4514 3.51825L19.449 3.51825C19.9185 3.51825 20.2991 3.8988 20.2991 4.36829C20.2991 4.83771 19.9185 5.21826 19.449 5.21826L11.4514 5.21826C10.9819 5.21826 10.6016 4.83771 10.6016 4.36829C10.6016 3.8988 10.9819 3.51825 11.4514 3.51825Z" clip-rule="evenodd" fill="url(#paint_linear_23_2357_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
62+ <path id="形状" d="M23.9009 3.38031C23.9009 1.51343 22.3875 0 20.5208 0L10.3799 0C8.51294 0 6.99951 1.51343 6.99951 3.38031L6.99951 15.7747C6.99951 17.6415 8.51294 19.1549 10.3799 19.1549L20.5208 19.1549C22.3875 19.1549 23.9009 17.6415 23.9009 15.7747L23.9009 3.38031ZM11.4514 3.51825L19.449 3.51825C19.9185 3.51825 20.2991 3.8988 20.2991 4.36829C20.2991 4.83771 19.9185 5.21826 19.449 5.21826L11.4514 5.21826C10.9819 5.21826 10.6016 4.83771 10.6016 4.36829C10.6016 3.8988 10.9819 3.51825 11.4514 3.51825Z" clip-rule="evenodd" fill="url(#paint_linear_23_2357_1)" fill-opacity="1.000000" fill-rule="evenodd"/>
63+ <path id="形状" d="M23.9009 3.38031C23.9009 1.51343 22.3875 0 20.5208 0L10.3799 0C8.51294 0 6.99951 1.51343 6.99951 3.38031L6.99951 15.7747C6.99951 17.6415 8.51294 19.1549 10.3799 19.1549L20.5208 19.1549C22.3875 19.1549 23.9009 17.6415 23.9009 15.7747L23.9009 3.38031ZM11.4514 3.51825L19.449 3.51825C19.9185 3.51825 20.2991 3.8988 20.2991 4.36829C20.2991 4.83771 19.9185 5.21826 19.449 5.21826L11.4514 5.21826C10.9819 5.21826 10.6016 4.83771 10.6016 4.36829C10.6016 3.8988 10.9819 3.51825 11.4514 3.51825Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
64+ </g>
65+ <path id="形状" d="M19.7883 7.09003C23.1848 7.09003 25.938 9.84332 25.938 13.2397C25.938 14.5789 25.51 15.8182 24.7832 16.8281L26.3362 18.3801C26.7273 18.7712 26.7273 19.4055 26.3362 19.7966C25.9805 20.1523 25.4241 20.1846 25.032 19.8936L24.9194 19.7966L23.3647 18.243C22.3572 18.9647 21.1223 19.3893 19.7883 19.3893C16.3921 19.3893 13.6387 16.636 13.6387 13.2397C13.6387 9.84332 16.3921 7.09003 19.7883 7.09003ZM15.6733 13.2397C15.6733 10.967 17.5156 9.12463 19.7883 9.12463C22.061 9.12463 23.9033 10.967 23.9033 13.2397C23.9033 15.5124 22.061 17.3547 19.7883 17.3547C17.5156 17.3547 15.6733 15.5124 15.6733 13.2397Z" clip-rule="evenodd" fill="url(#paint_linear_23_2360_0)" fill-opacity="0.000000" fill-rule="evenodd"/>
66+ <path id="形状" d="M19.7883 7.09003C23.1848 7.09003 25.938 9.84332 25.938 13.2397C25.938 14.5789 25.51 15.8182 24.7832 16.8281L26.3362 18.3801C26.7273 18.7712 26.7273 19.4055 26.3362 19.7966C25.9805 20.1523 25.4241 20.1846 25.032 19.8936L24.9194 19.7966L23.3647 18.243C22.3572 18.9647 21.1223 19.3893 19.7883 19.3893C16.3921 19.3893 13.6387 16.636 13.6387 13.2397C13.6387 9.84332 16.3921 7.09003 19.7883 7.09003ZM15.6733 13.2397C15.6733 10.967 17.5156 9.12463 19.7883 9.12463C22.061 9.12463 23.9033 10.967 23.9033 13.2397C23.9033 15.5124 22.061 17.3547 19.7883 17.3547C17.5156 17.3547 15.6733 15.5124 15.6733 13.2397Z" clip-rule="evenodd" fill="url(#paint_linear_23_2360_1)" fill-opacity="0.000000" fill-rule="evenodd"/>
67+ <path id="形状" d="M19.7883 7.09003C23.1848 7.09003 25.938 9.84332 25.938 13.2397C25.938 14.5789 25.51 15.8182 24.7832 16.8281L26.3362 18.3801C26.7273 18.7712 26.7273 19.4055 26.3362 19.7966C25.9805 20.1523 25.4241 20.1846 25.032 19.8936L24.9194 19.7966L23.3647 18.243C22.3572 18.9647 21.1223 19.3893 19.7883 19.3893C16.3921 19.3893 13.6387 16.636 13.6387 13.2397C13.6387 9.84332 16.3921 7.09003 19.7883 7.09003ZM15.6733 13.2397C15.6733 10.967 17.5156 9.12463 19.7883 9.12463C22.061 9.12463 23.9033 10.967 23.9033 13.2397C23.9033 15.5124 22.061 17.3547 19.7883 17.3547C17.5156 17.3547 15.6733 15.5124 15.6733 13.2397Z" clip-rule="evenodd" fill="#B9D0FF" fill-opacity="1.000000" fill-rule="evenodd"/>
68+</svg>
@@ -0,0 +1,40 @@
1+<svg width="26.873047" height="29.972595" viewBox="0 0 26.873 29.9726" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <filter id="filter_23_2364_dd" x="0.000000" y="16.049377" width="26.873047" height="13.923218" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9+ <feGaussianBlur stdDeviation="1.81219" result="effect_layerBlur_1"/>
10+ </filter>
11+ <linearGradient x1="21.436523" y1="22.472996" x2="5.436523" y2="22.472996" id="paint_linear_23_2364_0" gradientUnits="userSpaceOnUse">
12+ <stop stop-color="#0A59F7"/>
13+ <stop offset="1.000000" stop-color="#0A59F7"/>
14+ </linearGradient>
15+ <linearGradient x1="20.209732" y1="22.026390" x2="11.813107" y2="24.151449" id="paint_linear_23_2364_1" gradientUnits="userSpaceOnUse">
16+ <stop stop-color="#0CA78E"/>
17+ <stop offset="0.392266" stop-color="#30D9C9"/>
18+ <stop offset="1.000000" stop-color="#1BC29C"/>
19+ </linearGradient>
20+ <linearGradient x1="13.436523" y1="22.680794" x2="13.436523" y2="24.536011" id="paint_linear_23_2364_2" gradientUnits="userSpaceOnUse">
21+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
22+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
23+ </linearGradient>
24+ <linearGradient x1="21.435219" y1="3.725806" x2="11.436646" y2="18.376343" id="paint_linear_23_2369_0" gradientUnits="userSpaceOnUse">
25+ <stop stop-color="#0CA78E"/>
26+ <stop offset="0.392266" stop-color="#30D9C9"/>
27+ <stop offset="1.000000" stop-color="#1BC29C"/>
28+ </linearGradient>
29+ </defs>
30+ <g opacity="0.643511" filter="url(#filter_23_2364_dd)">
31+ <path id="形状备份 2" d="M18.4561 21.5209C18.075 21.4988 17.5117 21.486 16.915 21.486L9.92725 21.486L9.7876 21.4862C9.18604 21.4882 8.63159 21.5034 8.28149 21.5275C7.96924 21.5491 7.6875 21.5686 7.43652 21.5859L18.6387 21.5859L19.3806 21.8266L7.38232 21.8268C6.35327 22.1733 5.83887 22.3481 5.83887 22.351C4.93359 22.613 5.83887 22.752 5.83887 22.752C5.83887 22.752 7.11157 23.0693 8.5564 23.4292L8.82886 23.4971C8.96606 23.5312 9.104 23.5656 9.24194 23.6L9.59351 23.6875C11.1699 24.08 12.6445 24.4468 12.645 24.4451C13.4092 24.635 14.1873 24.4722 14.2944 24.448L14.3071 24.4451C14.3071 24.4451 15.7942 24.0782 17.384 23.6854L17.7385 23.5978L18.0164 23.5291C19.6345 23.1292 21.1699 22.749 21.1699 22.7462C21.8389 22.559 21.0383 22.3642 21.0383 22.3642L18.6387 21.5859L19.4365 21.5859L18.5405 21.5262L18.4561 21.5209ZM13.2178 23.5859L13.4365 23.486L12.6553 23.486L12.4365 23.5859L13.2178 23.5859Z" clip-rule="evenodd" fill="url(#paint_linear_23_2364_0)" fill-opacity="0.000000" fill-rule="evenodd"/>
32+ <path id="形状备份 2" d="M18.4561 21.5209C18.075 21.4988 17.5117 21.486 16.915 21.486L9.92725 21.486L9.7876 21.4862C9.18604 21.4882 8.63159 21.5034 8.28149 21.5275C7.96924 21.5491 7.6875 21.5686 7.43652 21.5859L18.6387 21.5859L19.3806 21.8266L7.38232 21.8268C6.35327 22.1733 5.83887 22.3481 5.83887 22.351C4.93359 22.613 5.83887 22.752 5.83887 22.752C5.83887 22.752 7.11157 23.0693 8.5564 23.4292L8.82886 23.4971C8.96606 23.5312 9.104 23.5656 9.24194 23.6L9.59351 23.6875C11.1699 24.08 12.6445 24.4468 12.645 24.4451C13.4092 24.635 14.1873 24.4722 14.2944 24.448L14.3071 24.4451C14.3071 24.4451 15.7942 24.0782 17.384 23.6854L17.7385 23.5978L18.0164 23.5291C19.6345 23.1292 21.1699 22.749 21.1699 22.7462C21.8389 22.559 21.0383 22.3642 21.0383 22.3642L18.6387 21.5859L19.4365 21.5859L18.5405 21.5262L18.4561 21.5209ZM13.2178 23.5859L13.4365 23.486L12.6553 23.486L12.4365 23.5859L13.2178 23.5859Z" clip-rule="evenodd" fill="url(#paint_linear_23_2364_1)" fill-opacity="1.000000" fill-rule="evenodd"/>
33+ <path id="形状备份 2" d="M18.4561 21.5209C18.075 21.4988 17.5117 21.486 16.915 21.486L9.92725 21.486L9.7876 21.4862C9.18604 21.4882 8.63159 21.5034 8.28149 21.5275C7.96924 21.5491 7.6875 21.5686 7.43652 21.5859L18.6387 21.5859L19.3806 21.8266L7.38232 21.8268C6.35327 22.1733 5.83887 22.3481 5.83887 22.351C4.93359 22.613 5.83887 22.752 5.83887 22.752C5.83887 22.752 7.11157 23.0693 8.5564 23.4292L8.82886 23.4971C8.96606 23.5312 9.104 23.5656 9.24194 23.6L9.59351 23.6875C11.1699 24.08 12.6445 24.4468 12.645 24.4451C13.4092 24.635 14.1873 24.4722 14.2944 24.448L14.3071 24.4451C14.3071 24.4451 15.7942 24.0782 17.384 23.6854L17.7385 23.5978L18.0164 23.5291C19.6345 23.1292 21.1699 22.749 21.1699 22.7462C21.8389 22.559 21.0383 22.3642 21.0383 22.3642L18.6387 21.5859L19.4365 21.5859L18.5405 21.5262L18.4561 21.5209ZM13.2178 23.5859L13.4365 23.486L12.6553 23.486L12.4365 23.5859L13.2178 23.5859Z" clip-rule="evenodd" fill="url(#paint_linear_23_2364_2)" fill-opacity="0.000000" fill-rule="evenodd"/>
34+ <path id="形状备份 2" d="M18.4561 21.5209C18.075 21.4988 17.5117 21.486 16.915 21.486L9.92725 21.486L9.7876 21.4862C9.18604 21.4882 8.63159 21.5034 8.28149 21.5275C7.96924 21.5491 7.6875 21.5686 7.43652 21.5859L18.6387 21.5859L19.3806 21.8266L7.38232 21.8268C6.35327 22.1733 5.83887 22.3481 5.83887 22.351C4.93359 22.613 5.83887 22.752 5.83887 22.752C5.83887 22.752 7.11157 23.0693 8.5564 23.4292L8.82886 23.4971C8.96606 23.5312 9.104 23.5656 9.24194 23.6L9.59351 23.6875C11.1699 24.08 12.6445 24.4468 12.645 24.4451C13.4092 24.635 14.1873 24.4722 14.2944 24.448L14.3071 24.4451C14.3071 24.4451 15.7942 24.0782 17.384 23.6854L17.7385 23.5978L18.0164 23.5291C19.6345 23.1292 21.1699 22.749 21.1699 22.7462C21.8389 22.559 21.0383 22.3642 21.0383 22.3642L18.6387 21.5859L19.4365 21.5859L18.5405 21.5262L18.4561 21.5209ZM13.2178 23.5859L13.4365 23.486L12.6553 23.486L12.4365 23.5859L13.2178 23.5859Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
35+ </g>
36+ <g opacity="0.600000">
37+ <path id="形状" d="M14.9412 0.421082L21.3247 4.10651C22.2971 4.66797 22.896 5.70551 22.896 6.82831L22.896 14.1993C22.896 15.3221 22.2971 16.3596 21.3247 16.9211L14.9412 20.6065C13.9688 21.168 12.7708 21.168 11.7983 20.6065L5.41504 16.9211C4.44263 16.3596 3.84351 15.3221 3.84351 14.1993L3.84351 6.82831C3.84351 5.70551 4.44263 4.66797 5.41504 4.10651L11.7983 0.421082C12.7708 -0.140381 13.9688 -0.140381 14.9412 0.421082ZM12.9001 5.17981C13.0281 4.92041 13.3423 4.8139 13.6016 4.94196C13.7048 4.99292 13.7886 5.07654 13.8396 5.17981L15.217 7.97119L18.2976 8.41876C18.5837 8.46039 18.7822 8.7262 18.7405 9.01245C18.7241 9.12646 18.6704 9.23181 18.5879 9.31226L16.3589 11.485L16.885 14.553C16.9338 14.8381 16.7424 15.1089 16.4573 15.1578C16.3438 15.1772 16.2271 15.1588 16.125 15.1052L13.3699 13.6567L10.6145 15.1052C10.3584 15.2397 10.0417 15.1413 9.90723 14.8853C9.85352 14.7833 9.83496 14.6665 9.85449 14.553L10.3809 11.485L8.15186 9.31226C7.94458 9.11029 7.94043 8.77869 8.14233 8.57153C8.22266 8.48901 8.32812 8.43536 8.44214 8.41876L11.5225 7.97119L12.9001 5.17981Z" clip-rule="evenodd" fill="#44D7B6" fill-opacity="0.000000" fill-rule="evenodd"/>
38+ <path id="形状" d="M14.9412 0.421082L21.3247 4.10651C22.2971 4.66797 22.896 5.70551 22.896 6.82831L22.896 14.1993C22.896 15.3221 22.2971 16.3596 21.3247 16.9211L14.9412 20.6065C13.9688 21.168 12.7708 21.168 11.7983 20.6065L5.41504 16.9211C4.44263 16.3596 3.84351 15.3221 3.84351 14.1993L3.84351 6.82831C3.84351 5.70551 4.44263 4.66797 5.41504 4.10651L11.7983 0.421082C12.7708 -0.140381 13.9688 -0.140381 14.9412 0.421082ZM12.9001 5.17981C13.0281 4.92041 13.3423 4.8139 13.6016 4.94196C13.7048 4.99292 13.7886 5.07654 13.8396 5.17981L15.217 7.97119L18.2976 8.41876C18.5837 8.46039 18.7822 8.7262 18.7405 9.01245C18.7241 9.12646 18.6704 9.23181 18.5879 9.31226L16.3589 11.485L16.885 14.553C16.9338 14.8381 16.7424 15.1089 16.4573 15.1578C16.3438 15.1772 16.2271 15.1588 16.125 15.1052L13.3699 13.6567L10.6145 15.1052C10.3584 15.2397 10.0417 15.1413 9.90723 14.8853C9.85352 14.7833 9.83496 14.6665 9.85449 14.553L10.3809 11.485L8.15186 9.31226C7.94458 9.11029 7.94043 8.77869 8.14233 8.57153C8.22266 8.48901 8.32812 8.43536 8.44214 8.41876L11.5225 7.97119L12.9001 5.17981Z" clip-rule="evenodd" fill="url(#paint_linear_23_2369_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
39+ </g>
40+</svg>
@@ -0,0 +1 @@
1+<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#000000"><path d="M480-360 280-560h400L480-360Z"/></svg>
@@ -0,0 +1,17 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip31_1660">
7+ <rect id="info_circle" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip31_1660)">
11+ <g opacity="0.000000">
12+ <rect id="rect" width="24.000000" height="24.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <path id="path" d="M10.75 7.02C10.75 7.36 10.87 7.66 11.11 7.9C11.35 8.15 11.64 8.27 12 8.27C12.35 8.27 12.64 8.15 12.88 7.9C13.12 7.66 13.25 7.36 13.25 7.02C13.25 6.67 13.12 6.37 12.88 6.12C12.64 5.88 12.35 5.75 12 5.75C11.64 5.75 11.35 5.88 11.11 6.12C10.87 6.37 10.75 6.67 10.75 7.02ZM10.99 17.2C10.99 17.48 11.09 17.71 11.29 17.91C11.49 18.11 11.72 18.21 12 18.21C12.27 18.21 12.51 18.11 12.71 17.91C12.9 17.71 13.01 17.48 13.01 17.2L13.01 10.45C13.01 10.19 12.9 9.96 12.71 9.76C12.51 9.57 12.27 9.47 12 9.47C11.72 9.47 11.49 9.57 11.29 9.76C11.09 9.96 10.99 10.19 10.99 10.45L10.99 17.2Z" fill="#000000" fill-opacity="0.600000" fill-rule="nonzero"/>
15+ <path id="path" d="M12 22.98C13.98 22.98 15.82 22.49 17.51 21.51C19.19 20.53 20.53 19.19 21.52 17.5C22.5 15.82 22.99 13.98 22.99 11.99C22.99 10.01 22.5 8.17 21.52 6.48C20.53 4.8 19.19 3.46 17.51 2.47C15.82 1.49 13.98 1 12 1C10.01 1 8.17 1.5 6.49 2.49C4.8 3.48 3.46 4.81 2.48 6.49C1.5 8.17 1.01 10.01 1.01 11.99C1.01 13.98 1.5 15.81 2.48 17.49C3.46 19.17 4.8 20.51 6.49 21.49C8.17 22.49 10.01 22.98 12 22.98ZM2.5 11.99C2.5 10.28 2.92 8.7 3.77 7.24C4.61 5.78 5.76 4.63 7.22 3.77C8.68 2.92 10.27 2.49 12 2.49C13.71 2.49 15.29 2.92 16.75 3.77C18.21 4.63 19.36 5.78 20.22 7.24C21.07 8.7 21.5 10.28 21.5 11.99C21.5 13.71 21.07 15.29 20.22 16.74C19.36 18.2 18.21 19.36 16.75 20.21C15.29 21.07 13.71 21.49 12 21.49C10.27 21.49 8.68 21.07 7.22 20.21C5.76 19.36 4.61 18.2 3.77 16.74C2.92 15.29 2.5 13.71 2.5 11.99Z" fill="#000000" fill-opacity="0.600000" fill-rule="nonzero"/>
16+ </g>
17+</svg>
@@ -0,0 +1,23 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip31_1641">
7+ <rect id="calendar_and_pencil" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip31_1641)">
11+ <g opacity="0.000000">
12+ <rect id="rect" width="24.000000" height="24.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <mask id="mask31_1644" mask-type="alpha" maskUnits="userSpaceOnUse" x="0.000000" y="0.000000" width="25.292969" height="24.000000">
15+ <rect id="rect" width="24.000000" height="24.000000" fill="#FFFFFF" fill-opacity="1.000000"/>
16+ <path id="path" d="M24.62 7.62C24.33 7.34 23.99 7.14 23.6 7.03C23.21 6.93 22.82 6.93 22.44 7.03C22.05 7.14 21.71 7.34 21.43 7.62L13.97 15.04C13.81 15.2 13.69 15.35 13.61 15.49L12.24 17.89C12.11 18.15 12.05 18.41 12.05 18.67C12.05 18.94 12.12 19.19 12.26 19.41C12.47 19.75 12.77 19.97 13.15 20.07C13.53 20.17 13.89 20.14 14.23 19.96L16.7 18.57L16.97 18.4C16.99 18.38 17.11 18.27 17.16 18.23L24.62 10.81C24.92 10.51 25.12 10.17 25.22 9.77C25.32 9.38 25.31 8.99 25.21 8.61C25.11 8.23 24.91 7.9 24.62 7.62Z" fill="#000000" fill-opacity="1.000000" fill-rule="nonzero"/>
17+ </mask>
18+ <g mask="url(#mask31_1644)">
19+ <path id="path" d="M17.23 3.04L17.23 2.44C17.23 2.26 17.18 2.1 17.1 1.95C17.01 1.8 16.89 1.68 16.74 1.59C16.58 1.5 16.42 1.45 16.25 1.45C16.07 1.45 15.89 1.5 15.74 1.59C15.58 1.68 15.45 1.8 15.36 1.95C15.28 2.1 15.24 2.26 15.24 2.44L15.24 3.04L8.73 3.04L8.73 2.44C8.73 2.26 8.69 2.1 8.6 1.95C8.51 1.8 8.39 1.68 8.23 1.59C8.09 1.5 7.92 1.45 7.75 1.45C7.57 1.45 7.4 1.5 7.25 1.59C7.09 1.68 6.96 1.8 6.87 1.95C6.78 2.1 6.73 2.26 6.73 2.44L6.73 3.04L5.97 3.04C5.3 3.04 4.67 3.21 4.1 3.54C3.52 3.88 3.07 4.34 2.73 4.91C2.39 5.49 2.22 6.11 2.22 6.78L2.22 18.79C2.22 19.46 2.39 20.08 2.73 20.66C3.07 21.24 3.52 21.69 4.1 22.03C4.67 22.36 5.31 22.54 6 22.54L17.98 22.54C18.64 22.54 19.27 22.36 19.85 22.03C20.42 21.69 20.87 21.24 21.22 20.66C21.55 20.08 21.72 19.46 21.72 18.79L21.72 6.78C21.72 6.11 21.55 5.49 21.22 4.91C20.87 4.34 20.42 3.88 19.85 3.54C19.27 3.21 18.64 3.04 17.98 3.04L17.23 3.04ZM20.23 18.77C20.23 19.39 20.01 19.92 19.57 20.36C19.12 20.8 18.6 21.02 17.98 21.02L6 21.02C5.37 21.02 4.84 20.8 4.39 20.36C3.95 19.92 3.73 19.39 3.73 18.77L3.73 6.78C3.73 6.16 3.95 5.63 4.39 5.19C4.84 4.75 5.37 4.53 6 4.53L6.73 4.53L6.73 5.1C6.73 5.38 6.84 5.61 7.04 5.81C7.23 6.01 7.47 6.11 7.75 6.11C8.02 6.11 8.26 6.01 8.45 5.81C8.65 5.61 8.76 5.38 8.76 5.1L8.76 4.53L15.24 4.53L15.24 5.1C15.24 5.38 15.34 5.61 15.54 5.81C15.74 6.01 15.97 6.11 16.25 6.11C16.52 6.11 16.76 6.01 16.95 5.81C17.15 5.61 17.26 5.38 17.26 5.1L17.26 4.53L18 4.53C18.6 4.53 19.12 4.75 19.57 5.19C20.01 5.63 20.23 6.16 20.23 6.78L20.23 18.77ZM12.24 10.3C12.44 10.3 12.62 10.22 12.78 10.06C12.93 9.91 13.01 9.73 13.01 9.52C13.01 9.32 12.93 9.14 12.78 8.99C12.62 8.85 12.44 8.77 12.24 8.77L6.73 8.77C6.53 8.77 6.35 8.85 6.21 8.99C6.07 9.14 6 9.32 6 9.52C6 9.73 6.07 9.91 6.21 10.06C6.35 10.22 6.53 10.3 6.73 10.3L12.24 10.3ZM9.23 14.28C9.44 14.28 9.62 14.2 9.77 14.05C9.9 13.92 9.97 13.74 9.97 13.54C9.97 13.32 9.9 13.15 9.77 13C9.62 12.86 9.44 12.79 9.23 12.79L6.73 12.79C6.53 12.79 6.35 12.86 6.21 13C6.07 13.15 6 13.32 6 13.54C6 13.74 6.07 13.92 6.21 14.05C6.35 14.2 6.53 14.28 6.73 14.28L9.23 14.28Z" fill="#000000" fill-opacity="0.600000" fill-rule="nonzero"/>
20+ </g>
21+ <path id="path" d="M14.89 15.72C14.83 15.8 14.77 15.88 14.71 15.98C14.64 16.09 14.57 16.2 14.5 16.32L13.33 18.36C13.29 18.45 13.29 18.54 13.32 18.64C13.36 18.72 13.43 18.79 13.52 18.83C13.61 18.87 13.7 18.86 13.8 18.82L15.83 17.66C16.04 17.52 16.24 17.38 16.43 17.26L14.89 15.72ZM23.92 8.23C23.68 7.99 23.39 7.87 23.06 7.87C22.72 7.87 22.43 7.99 22.2 8.23L15.59 14.83C15.5 14.94 15.4 15.06 15.29 15.19L16.96 16.87C17.09 16.75 17.21 16.65 17.32 16.56L23.92 9.96C24.16 9.72 24.29 9.43 24.29 9.1C24.29 8.76 24.16 8.47 23.92 8.23Z" fill="#000000" fill-opacity="0.600000" fill-rule="nonzero"/>
22+ </g>
23+</svg>
@@ -0,0 +1,8 @@
1+<svg width="14.000000" height="8.000000" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="形状" d="M2.80005 0C3.44434 0 4.00732 0.109375 4.48877 0.327881C4.88916 0.509521 5.21411 0.75293 5.46338 1.05811C5.51392 1.12012 5.56128 1.18433 5.60547 1.25146C5.65259 1.32251 5.69556 1.39575 5.73413 1.47095C5.91138 1.81689 6 2.20801 6 2.64478C6 3.05566 5.91943 3.42749 5.75806 3.76001C5.71338 3.85205 5.6626 3.94116 5.60547 4.02734C5.55737 4.10034 5.50537 4.17017 5.44971 4.23682L5.44946 4.23682C5.20215 4.53369 4.88184 4.77002 4.48877 4.94531C4.00732 5.1604 3.44434 5.26782 2.80005 5.26782L1.61108 5.26782L1.61108 8L0 8L0 0L2.80005 0ZM3.83325 3.60107C3.52954 3.81592 3.12598 3.92358 2.62231 3.92358L1.61108 3.92358L1.61108 1.34424L2.62231 1.34424C3.12598 1.34424 3.52954 1.45532 3.83325 1.67749C3.94287 1.75757 4.03247 1.85083 4.10254 1.95679C4.22681 2.14526 4.28882 2.37451 4.28882 2.64478C4.28882 2.9187 4.2251 3.14917 4.09741 3.33569C4.02808 3.43701 3.94019 3.52539 3.83325 3.60107Z" clip-rule="evenodd" fill="#0A59F7" fill-opacity="1.000000" fill-rule="evenodd"/>
7+ <path id="路径" d="M10.7 3.26L14 8L12.01 8L9.59 4.48L8.53 5.65L8.53 8L7 8L7 0L8.53 0L8.53 3.72L11.76 0L13.68 0L10.7 3.26Z" fill="#0A59F7" fill-opacity="1.000000" fill-rule="evenodd"/>
8+</svg>
@@ -0,0 +1,8 @@
1+<svg width="12.000000" height="11.142822" viewBox="0 0 12 11.1428" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="uxs-a" d="M1.91992 1.91992L1.91992 0.47998C1.91992 0.214844 2.13477 0 2.3999 0C2.66504 0 2.87988 0.214844 2.87988 0.47998L2.87988 1.91992L4.32007 1.91992C4.58521 1.91992 4.80005 2.13477 4.80005 2.3999C4.80005 2.66504 4.58521 2.87988 4.32007 2.87988L2.87988 2.87988L2.87988 4.32007C2.87988 4.58496 2.66504 4.80005 2.3999 4.80005C2.13477 4.80005 1.91992 4.58496 1.91992 4.32007L1.91992 2.87988L0.47998 2.87988C0.214844 2.87988 0 2.66504 0 2.3999C0 2.13477 0.214844 1.91992 0.47998 1.91992L1.91992 1.91992ZM6.3999 2.3999C6.3999 2.66504 6.61499 2.87988 6.87988 2.87988L10.72 2.87988C10.9851 2.87988 11.2 2.66504 11.2 2.3999C11.2 2.13477 10.9851 1.91992 10.72 1.91992L6.87988 1.91992C6.61499 1.91992 6.3999 2.13477 6.3999 2.3999ZM3.64453 6.71655L2.3999 7.96118L1.15552 6.71655C0.968018 6.52905 0.664062 6.52905 0.476562 6.71655C0.289307 6.90405 0.289307 7.20801 0.476562 7.39526L1.72119 8.63989L0.476562 9.88452C0.289307 10.0718 0.289307 10.3757 0.476562 10.5635C0.664062 10.7507 0.968018 10.7507 1.15552 10.5635L2.3999 9.3186L3.64453 10.5635C3.83203 10.7507 4.13574 10.7507 4.32324 10.5635C4.51074 10.3757 4.51074 10.0718 4.32324 9.88452L3.07886 8.63989L4.32324 7.39526C4.51074 7.20801 4.51074 6.90405 4.32324 6.71655C4.13574 6.52905 3.83203 6.52905 3.64453 6.71655Z" clip-rule="evenodd" fill="#0A59F7" fill-opacity="1.000000" fill-rule="evenodd"/>
7+ <path id="形状" d="M10.7202 4.74292C11.427 4.74292 12 5.31592 12 6.02295L12 9.86304C12 10.5698 11.427 11.1428 10.7202 11.1428L6.88013 11.1428C6.1731 11.1428 5.6001 10.5698 5.6001 9.86304L5.6001 6.02295C5.6001 5.31592 6.1731 4.74292 6.88013 4.74292L10.7202 4.74292ZM7.52002 6.66284L10.0801 6.66284C10.2568 6.66284 10.4001 6.80615 10.4001 6.98291C10.4001 7.15967 10.2568 7.30298 10.0801 7.30298L7.52002 7.30298C7.34351 7.30298 7.2002 7.15967 7.2002 6.98291C7.2002 6.80615 7.34351 6.66284 7.52002 6.66284ZM10.0801 8.58301L7.52002 8.58301C7.34351 8.58301 7.2002 8.72607 7.2002 8.90283C7.2002 9.07959 7.34351 9.2229 7.52002 9.2229L10.0801 9.2229C10.2568 9.2229 10.4001 9.07959 10.4001 8.90283C10.4001 8.72607 10.2568 8.58301 10.0801 8.58301Z" clip-rule="evenodd" fill="#0A59F7" fill-opacity="1.000000" fill-rule="evenodd"/>
8+</svg>
@@ -0,0 +1,7 @@
1+<svg width="12.000000" height="12.000000" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="path-1" d="M1.86108 0.0375977C1.50513 0.119141 1.16406 0.351074 0.825684 0.719238L0.793213 0.755127C0.134033 1.41406 -0.139893 2.36426 0.0686035 3.27173C0.45166 4.9209 1.70654 6.88843 3.39893 8.5979C5.11157 10.2935 7.0791 11.5483 8.72729 11.9312L8.7832 11.9436C9.65942 12.1255 10.5679 11.8618 11.2117 11.2395L11.238 11.2131C11.6472 10.8474 11.8982 10.4788 11.9722 10.0925C12.0823 9.51782 11.8596 8.927 11.4019 8.55859L10.1746 7.56372C9.61841 7.07007 8.78247 7.08057 8.24097 7.58472L8.20972 7.61475L8.19482 7.63013L7.62769 8.2312C7.54761 8.31128 7.4104 8.3269 7.3042 8.26074C6.7981 7.94604 6.0791 7.33228 5.38232 6.62329L5.24976 6.49146C4.59229 5.83179 4.03442 5.17041 3.73999 4.69678C3.6731 4.5896 3.68896 4.45239 3.77783 4.36377L4.37012 3.80542L4.38525 3.79028L4.40967 3.76489C4.90991 3.22754 4.92944 2.4126 4.4646 1.85815L4.39722 1.77856L3.7146 0.937256C3.62036 0.820068 3.52686 0.704102 3.44141 0.598145C3.07324 0.140381 2.48242 -0.0822754 1.90747 0.027832L1.86108 0.0375977ZM11.238 11.2131C11.2361 11.2151 11.2341 11.2168 11.2319 11.2185L11.2419 11.2095L11.238 11.2131ZM0.793213 0.755127C0.795898 0.752441 0.79834 0.75 0.800781 0.747559L0.790527 0.758057L0.793213 0.755127ZM10.6277 10.54C10.9048 10.2935 11.0491 10.082 11.0798 9.92163C11.126 9.67993 11.0303 9.42603 10.8323 9.2666C10.3933 8.91333 9.86938 8.4895 9.65918 8.31665L9.54761 8.22314C9.34399 8.06128 9.05225 8.07104 8.86597 8.24438L8.8479 8.26172L8.27979 8.86377C7.90137 9.24341 7.31689 9.3186 6.85718 9.052L6.82373 9.03174C6.28442 8.69653 5.57593 8.09961 4.88306 7.40967L4.73999 7.26562C3.98389 6.52271 3.32666 5.75293 2.96875 5.17725C2.67798 4.71167 2.74756 4.10791 3.14526 3.71143L3.73853 3.15186L3.75024 3.13989C3.92871 2.948 3.93872 2.65601 3.77808 2.45386L3.59131 2.22827L2.7334 1.16772C2.57422 0.969727 2.32007 0.874023 2.07837 0.920166C1.91797 0.950928 1.70679 1.09521 1.46021 1.37231L1.40356 1.43066C0.98877 1.86694 0.819336 2.4812 0.953857 3.06714C1.29346 4.52832 2.46069 6.35864 4.04126 7.95557C5.64136 9.53931 7.47168 10.7068 8.93188 11.0459C9.53613 11.1848 10.1692 11.001 10.6074 10.5593L10.6277 10.54Z" clip-rule="evenodd" fill="#0A59F7" fill-opacity="1.000000" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,7 @@
1+<svg width="18.000000" height="15.678711" viewBox="0 0 18 15.6787" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="path-1" d="M1.5 1.6C3.41 -0.31 6.37 -0.52 8.51 0.98C8.77 1.16 9.02 1.37 9.25 1.6L9.14 1.49C9.15 1.51 9.17 1.52 9.19 1.54L9.25 1.6C9.34 1.69 9.42 1.77 9.5 1.85C9.62 1.98 9.75 2.1 9.87 2.22L9.96 2.32C10.34 2.7 10.63 3.01 10.85 3.25C11.07 3.5 11.05 3.89 10.8 4.11C10.55 4.34 10.17 4.32 9.94 4.07L9.83 3.94C9.5 3.59 9.02 3.09 8.39 2.46L8.24 2.32C6.57 0.8 3.98 0.84 2.36 2.46C0.79 4.03 0.86 6.53 2.4 8.57C2.91 9.25 3.7 10.12 4.73 11.12L4.73 11.12L4.77 11.15C5.24 11.61 6.11 12.38 7.37 13.45L7.37 13.45L8.21 14.17C8.66 14.55 9.33 14.55 9.78 14.17L9.78 14.17L10.55 13.52C11.79 12.46 12.66 11.7 13.15 11.23L13.15 11.23L13.36 11.02C14.34 10.06 15.1 9.23 15.59 8.57C17.13 6.53 17.2 4.03 15.63 2.46C14.25 1.08 12.16 0.85 10.54 1.75C10.31 1.51 10.07 1.27 9.82 1.03C9.77 0.97 9.71 0.92 9.65 0.86C11.78 -0.5 14.63 -0.26 16.49 1.6C18.53 3.64 18.44 6.81 16.57 9.31L16.57 9.31L16.51 9.38C15.94 10.13 15.08 11.06 14 12.1L14 12.1L13.96 12.14C13.42 12.66 12.49 13.48 11.17 14.59L11.17 14.59L10.57 15.1C9.66 15.87 8.33 15.86 7.43 15.1C5.72 13.66 4.56 12.65 3.95 12.06L3.95 12.06L3.77 11.89C2.76 10.89 1.96 10.02 1.42 9.31C-0.45 6.81 -0.54 3.64 1.5 1.6Z" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,7 @@
1+<svg width="13.757080" height="13.000000" viewBox="0 0 13.7571 13" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="path-1" d="M10.1519 1C10.6233 1 11.0056 1.40564 11.0056 1.90613L11.0056 8.55115C11.0056 9.05151 10.6233 9.45728 10.1519 9.45728L3.60522 9.45728C3.13379 9.45728 2.75146 9.05151 2.75146 8.55115L2.75146 1.90613C2.75146 1.40564 3.13379 1 3.60522 1L10.1519 1ZM3.60522 1.90613L10.1519 1.90613L10.1519 8.55115L3.60522 8.55115L3.60522 1.90613ZM1.52905 7.04089L1.52832 8.10571C1.13672 8.39514 0.917236 8.7113 0.917236 9.02844C0.917236 9.85889 2.42236 10.6825 4.58521 11.0371L4.58569 10.2382C4.58569 10.1714 4.64038 10.1173 4.70801 10.1173C4.72852 10.1173 4.74878 10.1224 4.76685 10.1323L7.4082 11.5687C7.46729 11.6008 7.48901 11.6743 7.4563 11.7328C7.44385 11.7554 7.42432 11.7734 7.40039 11.7843L4.75928 12.9889C4.698 13.0168 4.62524 12.9904 4.59692 12.9298C4.5896 12.9139 4.58569 12.8966 4.58569 12.8792L4.58496 11.9581C1.92407 11.5566 0 10.4601 0 9.02844C0 8.24634 0.574219 7.56433 1.52905 7.04089ZM13.7571 9.02844C13.7571 8.24646 13.1831 7.56458 12.2288 7.04126L12.2292 8.1062C12.6206 8.39551 12.8398 8.71143 12.8398 9.02844C12.8398 9.7948 11.4709 10.6335 9.32715 11.0122C9.07788 11.0563 8.91187 11.2916 8.95654 11.538C9.00098 11.7843 9.23926 11.9482 9.48853 11.9043C12.0266 11.4559 13.7571 10.3958 13.7571 9.02844Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,7 @@
1+<svg width="12.000000" height="12.000000" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="path-1" d="M1.23535 11.6864C1.67065 11.9192 2.08936 12 2.94971 12L9.05029 12L9.19336 11.9991C9.9585 11.9902 10.3542 11.9059 10.7646 11.6864C11.1609 11.4745 11.4744 11.1609 11.6863 10.7646C11.9192 10.3293 12 9.91064 12 9.05017L12 7.8335L10.3987 6.2323C10.0276 5.8667 9.7937 5.71191 9.48242 5.61755C9.18506 5.52747 8.8772 5.52747 8.57983 5.61755C8.27051 5.7113 8.03662 5.86511 7.66968 6.22607L5.97266 7.92273C5.79688 8.09827 5.51196 8.09827 5.33594 7.92261L5.26758 7.85425C4.91919 7.51099 4.6897 7.35254 4.40771 7.25769L4.35742 7.24158C4.05396 7.14954 3.74609 7.14954 3.44873 7.23962C3.1394 7.33337 2.90552 7.48718 2.53882 7.84814L0.912109 9.47461C0.90625 9.36658 0.902588 9.24487 0.900879 9.1062L0.900146 8.98523L0.899902 3.07666C0.899902 2.23718 0.955811 1.94849 1.11426 1.65222C1.2395 1.41797 1.41797 1.2395 1.65234 1.11414C1.92578 0.967773 2.19312 0.909058 2.8938 0.901001L3.01465 0.900146L9.04517 0.900391C9.79175 0.905884 10.0664 0.963623 10.3477 1.11414C10.582 1.2395 10.7605 1.41797 10.8857 1.65222C11.0442 1.94849 11.1001 2.23718 11.1001 3.07666L11.1001 6.08459L12 6.98523L12 3.07666C12 2.00684 11.8887 1.6189 11.6794 1.22778L11.6489 1.17249C11.4409 0.807617 11.1448 0.519775 10.7722 0.320557L10.7473 0.307373C10.3643 0.106689 9.97046 0 8.92334 0L3.07666 0C2.00684 0 1.6189 0.11145 1.22778 0.320557L1.17261 0.351074C0.807617 0.559204 0.519775 0.855347 0.320557 1.22778L0.307373 1.25281C0.106689 1.63574 0 2.02954 0 3.07666L0 8.92334C0 9.57751 0.041748 9.97668 0.121826 10.2776L0.101807 10.2985L0.219727 10.5712C0.247559 10.6354 0.278076 10.6982 0.313721 10.7646C0.525635 11.1609 0.839111 11.4745 1.23535 11.6864ZM4.80005 4.19995C4.80005 3.62012 4.32983 3.15002 3.75 3.15002C3.17017 3.15002 2.69995 3.62012 2.69995 4.19995C2.69995 4.77991 3.17017 5.25 3.75 5.25C4.32983 5.25 4.80005 4.77991 4.80005 4.19995ZM9.22119 6.47888C9.09424 6.44031 8.96802 6.44031 8.84082 6.47888C8.68018 6.52759 8.55835 6.60999 8.26147 6.90674L6.60889 8.55933C6.08179 9.08594 5.22729 9.08606 4.69971 8.55933L4.63354 8.49304C4.37671 8.23999 4.25464 8.15576 4.12744 8.11292L4.09033 8.10095C3.96313 8.06238 3.83691 8.06238 3.70972 8.10095C3.54907 8.14966 3.42725 8.23206 3.13037 8.52881L1.18848 10.4712C1.20239 10.4916 1.2168 10.5115 1.23169 10.5309L1.23169 10.533C1.25122 10.5568 1.27173 10.5817 1.29321 10.6057C1.29956 10.6139 1.3064 10.6215 1.31348 10.6289C1.33569 10.6527 1.35889 10.6757 1.38306 10.6978L1.36792 10.6825C1.45142 10.7614 1.54614 10.829 1.65234 10.8859C1.93359 11.0364 2.20825 11.0941 2.95483 11.0996L3.07666 11.1L8.92334 11.1C9.76294 11.1 10.0515 11.0443 10.3477 10.8859C10.582 10.7605 10.7605 10.582 10.8857 10.3478C11.0364 10.0663 11.0942 9.79175 11.0996 9.04517L11.1001 8.92334L11.1001 8.63037L11.0999 8.20618L9.76465 6.87097C9.52588 6.63586 9.40771 6.54797 9.27808 6.49817L9.24048 6.48499L9.22119 6.47888ZM1.33252 10.6477L1.36792 10.6825C1.35596 10.6711 1.34399 10.6595 1.33252 10.6477ZM1.33252 10.6477C1.31909 10.634 1.30591 10.62 1.29321 10.6057L1.31348 10.6289L1.33252 10.6477Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,7 @@
1+<svg width="12.000000" height="12.073120" viewBox="0 0 12 12.0731" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="uxs-a" d="M5.56104 0.202637C5.56104 0.0906982 5.46924 0 5.35596 0L3.71704 0C3.67065 0 3.62549 0.015625 3.58911 0.0444336C3.50073 0.11438 3.48633 0.241821 3.55713 0.329224L4.37646 1.34229C4.38599 1.354 4.39673 1.36462 4.40869 1.37402C4.49707 1.44385 4.62598 1.42969 4.69653 1.34229L5.51611 0.329224C5.54517 0.293335 5.56104 0.248657 5.56104 0.202637ZM3.10205 0.697388C3.02002 0.596069 2.96729 0.480713 2.9436 0.360718C1.22388 1.00586 0 2.66492 0 4.60974C0 6.13367 0.751465 7.48218 1.90405 8.30481L1.90234 8.21619C1.90234 7.88171 1.93286 7.55444 1.99121 7.23767C1.40381 6.66858 1.00635 5.90405 0.904053 5.04907L1.31714 5.04883L1.37671 5.0448C1.59082 5.01575 1.7561 4.83203 1.7561 4.60974C1.7561 4.36731 1.55957 4.17078 1.31714 4.17078L0.904053 4.17102C0.985596 3.48962 1.25415 2.86572 1.65723 2.35242L1.94971 2.64368C2.12109 2.81506 2.39893 2.81506 2.57056 2.64368C2.74194 2.47217 2.74194 2.19421 2.57056 2.02283L2.2793 1.73047C2.6228 1.46069 3.01611 1.2511 3.44287 1.11755L3.10205 0.697388ZM6.13013 0.361816C7.3772 0.828735 8.36401 1.83032 8.81152 3.08789C8.47388 2.98438 8.12231 2.91321 7.76001 2.87842C7.6604 2.69275 7.54492 2.51685 7.41577 2.35242L7.12354 2.64368C6.95215 2.81506 6.67407 2.81506 6.50269 2.64368C6.34692 2.48779 6.33276 2.2439 6.46021 2.07202L6.50269 2.02283L6.79395 1.73047C6.4502 1.46069 6.05713 1.2511 5.63037 1.11755L5.97119 0.697388C6.05054 0.599243 6.10474 0.484009 6.13013 0.361816ZM4.29419 3.74463L3.70898 3.15991C3.5376 2.9884 3.25952 2.9884 3.08813 3.15991C2.91675 3.3313 2.91675 3.60925 3.08813 3.78076L3.60132 4.29395C3.81641 4.09241 4.04834 3.90857 4.29419 3.74463ZM7.2439 3.43896C9.87109 3.43896 12 5.57825 12 8.21619C12 9.33923 11.6121 10.403 10.918 11.2499L10.7793 11.4115L10.6897 11.5026L10.6418 11.549C10.3196 11.8574 9.8999 12.0409 9.45752 12.0693L9.33618 12.0731L5.15161 12.0731C4.70679 12.0731 4.27783 11.9163 3.93896 11.6322L3.82397 11.5278L3.7019 11.4043C2.92505 10.5342 2.48779 9.40869 2.48779 8.21619C2.48779 5.57825 4.6167 3.43896 7.2439 3.43896ZM7.2439 4.31702C5.25049 4.31702 3.60767 5.82947 3.39038 7.77612C3.51929 7.69373 3.66431 7.63782 3.81714 7.61169C4.39941 7.51245 4.97363 7.43738 5.54004 7.38635L5.96265 7.35217C6.04028 7.2533 6.15259 7.1875 6.27759 7.1698C6.59033 7.12549 6.90967 7.10156 7.23511 7.0979C7.56299 7.09436 7.89111 7.11719 8.21997 7.16638C8.34277 7.18481 8.45239 7.24927 8.52808 7.34497C9.24414 7.39172 9.96045 7.47925 10.6765 7.60791C10.8271 7.63501 10.9697 7.69104 11.0969 7.77173C10.8782 5.82764 9.23608 4.31702 7.2439 4.31702ZM11.3401 8.55884C11.2788 8.56921 11.2178 8.57935 11.1572 8.58923L11.3401 8.55884ZM11.1572 8.58923C10.387 8.71594 9.68164 8.81091 9.04053 8.87427L8.59351 9.75903C8.51123 9.92175 8.34424 10.0244 8.16187 10.0244L6.33301 10.0244C6.15503 10.0244 5.99146 9.92664 5.90698 9.77002L5.41772 8.86121C4.80225 8.79883 4.12476 8.70972 3.38525 8.59363L3.40283 8.75757C3.50122 9.46875 3.79175 10.132 4.24121 10.6838L4.35693 10.8195L4.45459 10.9161C4.61914 11.0729 4.83057 11.1689 5.05493 11.1904L5.15161 11.1951L9.33618 11.1951C9.56396 11.1951 9.78394 11.1182 9.96118 10.9785L10.0347 10.9148L10.1301 10.8201L10.1831 10.76C10.7034 10.1531 11.0256 9.40283 11.1035 8.59827L11.1572 8.58923Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,7 @@
1+<svg width="12.000000" height="8.000000" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="path-1" d="M6.00024 0C8.37012 0 10.7217 1.48181 11.9324 3.70654C12.0225 3.87207 12.0225 4.07263 11.9324 4.23816C10.7224 6.46167 8.37939 8 6.0083 8C3.63867 8 1.2793 6.46008 0.067627 4.23511C-0.0224609 4.06946 -0.0224609 3.86877 0.067627 3.70325C1.27856 1.47974 3.62964 0 6.00024 0ZM6.00024 1.06665L6.06299 1.06714C7.90039 1.09204 9.7627 2.20972 10.8228 3.91943L10.8552 3.97241L10.8228 4.026C9.99561 5.3656 8.69385 6.3551 7.30713 6.74768C8.19946 6.27954 8.80811 5.34424 8.80811 4.26672C8.80811 2.72021 7.55444 1.46667 6.00806 1.46667C5.77856 1.46667 5.55542 1.49426 5.3418 1.54639C5.28174 1.56104 5.22217 1.57776 5.16382 1.59619C5.04199 1.63464 5.05225 1.76599 5.16382 1.80542C5.65576 1.97937 6.00806 2.44849 6.00806 3L6.00806 3.1333L6.00757 3.16943C5.98853 3.85229 5.42896 4.40002 4.74146 4.40002C4.15063 4.40002 3.6543 3.99561 3.51416 3.44849C3.48853 3.34778 3.37012 3.31641 3.33081 3.44446C3.25098 3.70447 3.20801 3.98059 3.20801 4.26672C3.20801 5.34375 3.81616 6.27881 4.70801 6.74756C3.31592 6.354 2.00537 5.36157 1.17725 4.02246L1.14478 3.96924L1.17725 3.91663C2.24927 2.18872 4.14136 1.06665 6.00024 1.06665Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,7 @@
1+<svg width="12.000000" height="12.000000" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="path-1" d="M6 0C9.31372 0 12 2.68628 12 6C12 9.31372 9.31372 12 6 12C2.68628 12 0 9.31372 0 6C0 2.68628 2.68628 0 6 0ZM6 0.818237C3.13818 0.818237 0.818115 3.13818 0.818115 6C0.818115 8.86182 3.13818 11.1818 6 11.1818C8.86182 11.1818 11.1819 8.86182 11.1819 6C11.1819 3.13818 8.86182 0.818237 6 0.818237ZM9.39136 4.77173C9.53442 4.61108 9.52881 4.36475 9.37476 4.21069C9.21509 4.05103 8.95605 4.05103 8.79639 4.21069L5.7439 7.26318L5.72632 7.27966C5.56567 7.42273 5.31934 7.41724 5.16528 7.26318L3.47656 5.57434L3.45898 5.55786C3.29834 5.41479 3.052 5.42029 2.89795 5.57434C2.8252 5.64697 2.78564 5.74011 2.77905 5.83508L2.77905 5.89221L2.78711 5.94885C2.80273 6.02356 2.83984 6.09485 2.89795 6.15295L4.77954 8.03455L4.80322 8.05737C5.17749 8.40723 5.7644 8.39954 6.12939 8.03455L9.37476 4.78931L9.39136 4.77173Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,12 @@
1+<svg width="6.000000" height="11.000000" viewBox="0 0 6 11" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="三角形" d="M2.95 4L0 0L5.91 0L2.95 4Z" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+ <path id="三角形" d="" fill="#979797" fill-opacity="0" fill-rule="evenodd"/>
8+ <path id="三角形备份" d="M2.95 7L5.91 11L0 11L2.95 7Z" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
9+ <path id="三角形备份" d="" fill="#979797" fill-opacity="0" fill-rule="evenodd"/>
10+ <rect id="矩形" y="5.000000" width="6.000000" height="1.000000" fill="#000000" fill-opacity="1.000000"/>
11+ <rect id="矩形" x="0.500000" y="5.500000" width="5.000000" height="0.000000" stroke="#000000" stroke-opacity="1.000000" stroke-width="1.000000"/>
12+</svg>
@@ -0,0 +1,11 @@
1+<svg width="21.500000" height="17.250366" viewBox="0 0 21.5 17.2504" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <g opacity="0.900000">
7+ <path id="uxs-a-path" d="M3.01 6.73L3.31 5.9C3.65 5.03 4.09 4.14 4.63 3.57C5.34 2.81 7.71 2.48 10.75 2.5C13.78 2.48 16.15 2.81 16.86 3.57C17.4 4.14 17.83 5.01 18.17 5.88L18.48 6.71C18.52 6.83 18.55 6.94 18.59 7.05L19.63 7.42C19.75 7.46 19.86 7.54 19.93 7.65L20.62 8.59C20.7 8.7 20.74 8.83 20.74 8.97C20.75 10.31 20.24 15.86 20.12 16.16C19.97 16.53 18.12 16.62 17.24 16.29C17.01 16.21 16.9 15.91 16.9 15.4L16.9 15.17L4.47 15.17L4.47 15.4C4.47 15.91 4.36 16.21 4.13 16.29C3.24 16.62 1.4 16.53 1.25 16.16C1.11 15.81 0.74 10.01 0.75 8.97C0.75 8.83 0.79 8.7 0.87 8.59L1.56 7.65C1.63 7.54 1.74 7.46 1.86 7.42L2.9 7.05C2.93 6.94 2.97 6.84 3.01 6.73Z" fill="#FFFFFF" fill-opacity="0" fill-rule="evenodd"/>
8+ <path id="uxs-a-path" d="M3.31 5.9C3.65 5.03 4.09 4.14 4.63 3.57C5.34 2.81 7.71 2.48 10.75 2.5C13.78 2.48 16.15 2.81 16.86 3.57C17.4 4.14 17.83 5.01 18.17 5.88L18.48 6.71C18.52 6.83 18.55 6.94 18.59 7.05L19.63 7.42C19.75 7.46 19.86 7.54 19.93 7.65L20.62 8.59C20.7 8.7 20.74 8.83 20.74 8.97C20.75 10.31 20.24 15.86 20.12 16.16C19.97 16.53 18.12 16.62 17.24 16.29C17.01 16.21 16.9 15.91 16.9 15.4L16.9 15.17L4.47 15.17L4.47 15.4C4.47 15.91 4.36 16.21 4.13 16.29C3.24 16.62 1.4 16.53 1.25 16.16C1.11 15.81 0.74 10.01 0.75 8.97C0.75 8.83 0.79 8.7 0.87 8.59L1.56 7.65C1.63 7.54 1.74 7.46 1.86 7.42L2.9 7.05C2.93 6.94 2.97 6.84 3.01 6.73L3.31 5.9Z" stroke="#000000" stroke-opacity="1.000000" stroke-width="1.500000"/>
9+ <path id="¥" d="M12.45 4.62L10.66 7.7L8.77 4.62L7.01 4.62L9.47 8.52L7.87 8.52L7.87 9.65L9.85 9.65L9.85 10.39L7.87 10.39L7.87 11.51L9.85 11.51L9.85 13.4L11.37 13.4L11.37 11.51L13.41 11.51L13.41 10.39L11.37 10.39L11.37 9.65L13.41 9.65L13.41 8.52L11.75 8.52L14.09 4.62L12.45 4.62Z" fill="#000000" fill-opacity="0.901961" fill-rule="evenodd"/>
10+ </g>
11+</svg>
@@ -0,0 +1,10 @@
1+<svg width="19.500000" height="19.500000" viewBox="0 0 19.5 19.5" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="路径" d="M8.64 2.35L8.64 8.55C8.64 9.29 8.66 10.13 9.11 10.68C9.51 11.17 10.29 11.41 10.93 11.6L16.94 13.42C15.75 16.53 12.69 18.75 9.11 18.75C4.49 18.75 0.75 15.07 0.75 10.54C0.75 6.17 4.24 2.59 8.64 2.35Z" fill="#FFFFFF" fill-opacity="0" fill-rule="evenodd"/>
7+ <path id="路径" d="M8.64 8.55C8.64 9.29 8.66 10.13 9.11 10.68C9.51 11.17 10.29 11.41 10.93 11.6L16.94 13.42C15.75 16.53 12.69 18.75 9.11 18.75C4.49 18.75 0.75 15.07 0.75 10.54C0.75 6.17 4.24 2.59 8.64 2.35L8.64 8.55Z" stroke="#000000" stroke-opacity="1.000000" stroke-width="1.500000"/>
8+ <path id="路径" d="M8.68 0.75C14.24 0.75 18.75 5.28 18.75 10.88C18.75 11.9 18.6 12.89 18.32 13.82L10.1 11.33C9.26 11.08 8.68 10.31 8.68 9.44L8.68 0.75Z" fill="#FFFFFF" fill-opacity="0" fill-rule="evenodd"/>
9+ <path id="路径" d="M18.75 10.88C18.75 11.9 18.6 12.89 18.32 13.82L10.1 11.33C9.26 11.08 8.68 10.31 8.68 9.44L8.68 0.75C14.24 0.75 18.75 5.28 18.75 10.88Z" stroke="#000000" stroke-opacity="1.000000" stroke-width="1.500000"/>
10+</svg>
@@ -0,0 +1,9 @@
1+<svg width="19.500000" height="15.794067" viewBox="0 0 19.5 15.7941" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="路径" d="M16.95 0.75C17.94 0.75 18.75 1.69 18.75 2.86L18.75 12.92C18.75 14.09 17.94 15.04 16.95 15.04L2.55 15.04C1.55 15.04 0.75 14.09 0.75 12.92L0.75 2.86C0.75 1.69 1.55 0.75 2.55 0.75L16.95 0.75Z" fill="#FFFFFF" fill-opacity="0" fill-rule="evenodd"/>
7+ <path id="路径" d="M18.75 2.86L18.75 12.92C18.75 14.09 17.94 15.04 16.95 15.04L2.55 15.04C1.55 15.04 0.75 14.09 0.75 12.92L0.75 2.86C0.75 1.69 1.55 0.75 2.55 0.75L16.95 0.75C17.94 0.75 18.75 1.69 18.75 2.86Z" stroke="#000000" stroke-opacity="1.000000" stroke-width="1.500000"/>
8+ <path id="路径" d="M7.79 5.16C7.72 5.28 7.69 5.4 7.69 5.53L7.69 10.78C7.69 11.17 8 11.49 8.39 11.49C8.52 11.49 8.65 11.45 8.76 11.38L13.05 8.76C13.39 8.56 13.49 8.12 13.29 7.79C13.23 7.69 13.15 7.61 13.05 7.55L8.76 4.93C8.43 4.73 7.99 4.83 7.79 5.16Z" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
9+</svg>
@@ -0,0 +1,8 @@
1+<svg width="18.500000" height="18.500000" viewBox="0 0 18.5 18.5" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="形状" d="M9.25 0C14.3586 0 18.5 4.14136 18.5 9.25C18.5 14.3586 14.3586 18.5 9.25 18.5C4.14136 18.5 0 14.3586 0 9.25C0 4.14136 4.14136 0 9.25 0ZM2.03467 6.51526C3.13843 3.6051 5.95215 1.53577 9.25 1.53577C12.5479 1.53577 15.3616 3.6051 16.4648 6.51526C11.9556 4.10962 6.54395 4.10962 2.03467 6.51526ZM1.72144 8.18604L1.59814 8.26648C1.50708 8.9812 1.51587 9.70508 1.62378 10.4175C3.30029 10.2517 4.95654 10.8872 6.09204 12.1317C7.22729 13.3762 7.7085 15.0837 7.39014 16.738C7.9856 16.8859 8.6084 16.9642 9.25 16.9642C9.91211 16.9642 10.5549 16.8807 11.1677 16.7239C10.8562 15.0814 11.332 13.3879 12.4534 12.1481C13.5747 10.9082 15.2122 10.2654 16.8774 10.411C16.9851 9.70068 16.9932 8.979 16.9019 8.26648C12.2939 5.27002 6.36108 5.23865 1.72144 8.18604ZM1.92725 11.6832L2.06738 11.6768L2.06812 11.6774C3.25928 11.6544 4.40039 12.1566 5.18774 13.0507C5.97534 13.9447 6.32959 15.14 6.15649 16.3188C4.15527 15.4403 2.61914 13.7563 1.92725 11.6832ZM16.5735 11.6801C15.3726 11.6318 14.2124 12.1191 13.406 13.0103C12.5996 13.9014 12.2305 15.1044 12.3979 16.2944C14.3718 15.4099 15.885 13.7395 16.5708 11.6884L16.5735 11.6801Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+ <path id="路径" d="M9.25 7.96C10.35 7.96 11.25 8.85 11.25 9.96C11.25 11.06 10.35 11.96 9.25 11.96C8.14 11.96 7.25 11.06 7.25 9.96C7.25 8.85 8.14 7.96 9.25 7.96Z" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
8+</svg>
@@ -0,0 +1,9 @@
1+<svg width="18.000000" height="18.000000" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="路径" d="M0 0L18 0L18 18L0 18L0 0Z" fill="#3D89FF" fill-opacity="0" fill-rule="evenodd"/>
7+ <path id="形状" d="M16.0874 2.37512C16.7625 2.70996 17.0999 3.37964 17.0999 4.16089L17.0999 18L8.66235 17.8883L0.899902 17.7767L1.01245 7.28577C1.01245 6.72778 1.34985 6.05811 1.7998 5.83496L3.9375 4.6073C4.5 4.27246 5.1748 4.27246 5.7373 4.6073L7.3125 5.50012L7.3125 4.04919C7.3125 3.37964 7.76245 2.70996 8.4375 2.26355L11.1375 0.70105C11.8125 0.366211 12.5999 0.366211 13.2749 0.70105L16.0874 2.37512ZM8.66235 16.3258L15.6375 16.4375L15.75 4.16089C15.75 3.93762 15.6375 3.71448 15.4124 3.60278L12.5999 1.92871C12.375 1.81714 12.1499 1.81714 11.9248 1.92871L9.1123 3.49121C8.88745 3.60278 8.7749 3.82605 8.7749 4.04919L8.66235 16.3258ZM2.3623 16.3258L2.47485 7.28577C2.47485 7.17419 2.5874 7.06262 2.5874 7.06262L4.72485 5.83496L5.0625 5.83496L7.19995 7.06262C7.3125 7.17419 7.3125 7.17419 7.3125 7.28577L7.19995 16.3258L2.3623 16.3258Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
8+ <path id="形状" d="M14.2 8.03271L14.2 6.55176L10.2 6.55176L10.2 8.03271L14.2 8.03271ZM14.2 11.0327L14.2 9.55176L10.2 9.55176L10.2 11.0327L14.2 11.0327ZM5.53101 9.77307L4.05005 9.77307L4.05005 14.85L5.53101 14.85L5.53101 9.77307ZM14.2 12.5518L14.2 14.0327L10.2 14.0327L10.2 12.5518L14.2 12.5518Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
9+</svg>
@@ -0,0 +1,13 @@
1+<svg width="14.500000" height="17.500000" viewBox="0 0 14.5 17.5" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <g style="mix-blend-mode:multiply">
7+ <path id="形状" d="M3.33691 4.75L9.98901 4.75C10.3132 4.75 10.5762 4.9967 10.5762 5.30103C10.5762 5.60535 10.3132 5.85205 9.98901 5.85205L3.33691 5.85205C3.0127 5.85205 2.75 5.60535 2.75 5.30103C2.75 4.9967 3.0127 4.75 3.33691 4.75ZM7.05444 7.68872L3.33691 7.68872C3.0127 7.68872 2.75 7.93542 2.75 8.23975C2.75 8.54407 3.0127 8.79077 3.33691 8.79077L7.05444 8.79077C7.37842 8.79077 7.64136 8.54407 7.64136 8.23975C7.64136 7.93542 7.37842 7.68872 7.05444 7.68872ZM10.7717 10.4438L9.20654 10.4438C8.66626 10.4438 8.22827 10.8551 8.22827 11.3623L8.22827 12.8317C8.22827 13.3389 8.66626 13.75 9.20654 13.75L10.7717 13.75C11.312 13.75 11.75 13.3389 11.75 12.8317L11.75 11.3623C11.75 10.8551 11.312 10.4438 10.7717 10.4438Z" clip-rule="evenodd" fill="#000000" fill-opacity="0.901961" fill-rule="evenodd"/>
8+ </g>
9+ <g style="mix-blend-mode:multiply">
10+ <path id="路径" d="M10.86 0.75C12.45 0.75 13.75 2.05 13.75 3.65L13.75 3.65L13.75 13.84C13.75 15.44 12.45 16.75 10.86 16.75L10.86 16.75L3.63 16.75C2.04 16.75 0.75 15.44 0.75 13.84L0.75 13.84L0.75 3.65C0.75 2.05 2.04 0.75 3.63 0.75L3.63 0.75L10.86 0.75Z" fill="#F9A01E" fill-opacity="0" fill-rule="evenodd"/>
11+ <path id="路径" d="M13.75 3.65L13.75 3.65L13.75 13.84C13.75 15.44 12.45 16.75 10.86 16.75L10.86 16.75L3.63 16.75C2.04 16.75 0.75 15.44 0.75 13.84L0.75 13.84L0.75 3.65C0.75 2.05 2.04 0.75 3.63 0.75L3.63 0.75L10.86 0.75C12.45 0.75 13.75 2.05 13.75 3.65Z" stroke="#000000" stroke-opacity="1.000000" stroke-width="1.500000"/>
12+ </g>
13+</svg>
@@ -0,0 +1,16 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip31_3113">
7+ <rect id="bag" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip31_3113)">
11+ <g opacity="0.000000">
12+ <rect id="rect" width="24.000000" height="24.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <path id="path" d="M19.01 3.5C19.42 3.5 19.77 3.64 20.06 3.94C20.35 4.22 20.5 4.57 20.5 4.98L20.5 19.01C20.5 19.41 20.35 19.75 20.06 20.04C19.77 20.35 19.42 20.5 19.01 20.5L4.98 20.5C4.59 20.5 4.24 20.35 3.94 20.04C3.64 19.75 3.5 19.41 3.5 19.01L3.5 4.98C3.5 4.57 3.64 4.22 3.93 3.94C4.22 3.64 4.57 3.5 4.98 3.5L19.01 3.5ZM4.98 1.98C4.44 1.98 3.94 2.12 3.48 2.39C3.03 2.67 2.67 3.03 2.39 3.48C2.12 3.95 1.98 4.45 1.98 4.98L1.98 19.01C1.98 19.54 2.12 20.04 2.39 20.51C2.67 20.96 3.03 21.32 3.48 21.6C3.94 21.87 4.44 22.01 4.98 22.01L19.01 22.01C19.54 22.01 20.04 21.87 20.51 21.6C20.96 21.32 21.32 20.96 21.6 20.51C21.87 20.04 22.01 19.54 22.01 19.01L22.01 4.98C22.01 4.45 21.87 3.95 21.6 3.48C21.32 3.03 20.96 2.67 20.51 2.39C20.04 2.12 19.54 1.98 19.01 1.98L4.98 1.98ZM12 10.49C11.32 10.49 10.7 10.32 10.12 9.97C9.55 9.64 9.09 9.19 8.76 8.62C8.42 8.03 8.26 7.4 8.26 6.71C8.26 6.52 8.18 6.35 8.04 6.2C7.89 6.05 7.71 5.97 7.51 5.97C7.3 5.97 7.12 6.05 6.96 6.2C6.81 6.35 6.73 6.52 6.73 6.71C6.73 7.67 6.97 8.56 7.44 9.37C7.92 10.17 8.56 10.81 9.36 11.29C10.17 11.76 11.05 12 12 12C12.94 12 13.82 11.76 14.62 11.29C15.43 10.81 16.07 10.17 16.54 9.37C17.02 8.56 17.26 7.67 17.26 6.71C17.26 6.52 17.18 6.35 17.04 6.2C16.89 6.05 16.71 5.97 16.51 5.97C16.3 5.97 16.12 6.05 15.97 6.2C15.81 6.35 15.74 6.52 15.74 6.71C15.74 7.4 15.57 8.03 15.24 8.62C14.9 9.19 14.45 9.64 13.86 9.97C13.29 10.32 12.67 10.49 12 10.49Z" fill="#000000" fill-opacity="0.901961" fill-rule="nonzero"/>
15+ </g>
16+</svg>
@@ -0,0 +1,81 @@
1+<svg width="32.873047" height="27.739563" viewBox="0 0 32.873 27.7396" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <filter id="filter_6_1080_dd" x="0.000000" y="13.816345" width="32.873047" height="13.923218" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9+ <feGaussianBlur stdDeviation="1.81219" result="effect_layerBlur_1"/>
10+ </filter>
11+ <filter id="filter_6_1090_dd" x="4.436523" y="0.000061" width="21.855225" height="18.415649" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13+ <feGaussianBlur in="BackgroundImage" stdDeviation="0.906093"/>
14+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
15+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
16+ </filter>
17+ <filter id="filter_6_1095_dd" x="4.436279" y="0.000000" width="21.855225" height="18.415649" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
18+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
19+ <feGaussianBlur in="BackgroundImage" stdDeviation="11.7792"/>
20+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
21+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
22+ </filter>
23+ <linearGradient x1="27.436523" y1="20.239967" x2="5.436523" y2="20.239967" id="paint_linear_6_1080_0" gradientUnits="userSpaceOnUse">
24+ <stop stop-color="#0A59F7"/>
25+ <stop offset="1.000000" stop-color="#0A59F7"/>
26+ </linearGradient>
27+ <linearGradient x1="16.436525" y1="20.447762" x2="16.436525" y2="22.302979" id="paint_linear_6_1080_1" gradientUnits="userSpaceOnUse">
28+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
29+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
30+ </linearGradient>
31+ <linearGradient x1="31.436523" y1="6.480909" x2="12.436523" y2="6.480909" id="paint_linear_6_1085_0" gradientUnits="userSpaceOnUse">
32+ <stop stop-color="#2F6BD6"/>
33+ <stop offset="0.470277" stop-color="#76A0F9"/>
34+ <stop offset="1.000000" stop-color="#3370E5"/>
35+ </linearGradient>
36+ <linearGradient x1="21.936527" y1="7.570971" x2="21.936527" y2="17.303101" id="paint_linear_6_1085_1" gradientUnits="userSpaceOnUse">
37+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
38+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
39+ </linearGradient>
40+ <linearGradient x1="26.291674" y1="5.959599" x2="4.436522" y2="5.959599" id="paint_linear_6_1090_0" gradientUnits="userSpaceOnUse">
41+ <stop stop-color="#2F6BD6"/>
42+ <stop offset="0.470277" stop-color="#76A0F9"/>
43+ <stop offset="1.000000" stop-color="#3370E5"/>
44+ </linearGradient>
45+ <linearGradient x1="15.364100" y1="7.214234" x2="15.364100" y2="18.415689" id="paint_linear_6_1090_1" gradientUnits="userSpaceOnUse">
46+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
47+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
48+ </linearGradient>
49+ <linearGradient x1="26.291430" y1="5.959538" x2="4.436277" y2="5.959538" id="paint_linear_6_1095_0" gradientUnits="userSpaceOnUse">
50+ <stop stop-color="#0A59F7"/>
51+ <stop offset="1.000000" stop-color="#0A59F7"/>
52+ </linearGradient>
53+ <linearGradient x1="15.363853" y1="7.214172" x2="10.239157" y2="18.415628" id="paint_linear_6_1095_1" gradientUnits="userSpaceOnUse">
54+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
55+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
56+ </linearGradient>
57+ </defs>
58+ <g opacity="0.643511" filter="url(#filter_6_1080_dd)">
59+ <path id="形状备份 2" d="M23.1292 19.2879C22.6211 19.2658 21.8701 19.2529 21.0745 19.2529L11.7573 19.2529L11.5713 19.2532C10.769 19.2552 10.03 19.2703 9.56299 19.2945C9.14673 19.3161 8.77124 19.3356 8.43652 19.3529L23.5894 19.3529L24.6096 19.5936L8.11182 19.5938C6.69727 19.9403 5.98975 20.1151 5.98975 20.1179C4.74487 20.38 5.98975 20.519 5.98975 20.519C5.98975 20.519 7.73975 20.8363 9.72632 21.1962L10.1011 21.2641C10.2896 21.2982 10.4792 21.3326 10.6689 21.3669L11.1523 21.4545C13.3201 21.847 15.3479 22.2137 15.3481 22.2121C16.3989 22.402 17.4688 22.2392 17.6162 22.215L17.6335 22.2121C17.6335 22.2121 19.6785 21.8452 21.8643 21.4524L22.3516 21.3648L22.7339 21.2961C24.959 20.8961 27.0698 20.5159 27.0698 20.5132C27.9897 20.3259 26.8892 20.1312 26.8892 20.1312L23.5894 19.3529L24.4365 19.3529L23.2419 19.2932L23.1292 19.2879ZM16.2178 21.353L16.4365 21.253L15.6553 21.253L15.4365 21.353L16.2178 21.353Z" clip-rule="evenodd" fill="url(#paint_linear_6_1080_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
60+ <path id="形状备份 2" d="M23.1292 19.2879C22.6211 19.2658 21.8701 19.2529 21.0745 19.2529L11.7573 19.2529L11.5713 19.2532C10.769 19.2552 10.03 19.2703 9.56299 19.2945C9.14673 19.3161 8.77124 19.3356 8.43652 19.3529L23.5894 19.3529L24.6096 19.5936L8.11182 19.5938C6.69727 19.9403 5.98975 20.1151 5.98975 20.1179C4.74487 20.38 5.98975 20.519 5.98975 20.519C5.98975 20.519 7.73975 20.8363 9.72632 21.1962L10.1011 21.2641C10.2896 21.2982 10.4792 21.3326 10.6689 21.3669L11.1523 21.4545C13.3201 21.847 15.3479 22.2137 15.3481 22.2121C16.3989 22.402 17.4688 22.2392 17.6162 22.215L17.6335 22.2121C17.6335 22.2121 19.6785 21.8452 21.8643 21.4524L22.3516 21.3648L22.7339 21.2961C24.959 20.8961 27.0698 20.5159 27.0698 20.5132C27.9897 20.3259 26.8892 20.1312 26.8892 20.1312L23.5894 19.3529L24.4365 19.3529L23.2419 19.2932L23.1292 19.2879ZM16.2178 21.353L16.4365 21.253L15.6553 21.253L15.4365 21.353L16.2178 21.353Z" clip-rule="evenodd" fill="url(#paint_linear_6_1080_1)" fill-opacity="0.000000" fill-rule="evenodd"/>
61+ <path id="形状备份 2" d="M23.1292 19.2879C22.6211 19.2658 21.8701 19.2529 21.0745 19.2529L11.7573 19.2529L11.5713 19.2532C10.769 19.2552 10.03 19.2703 9.56299 19.2945C9.14673 19.3161 8.77124 19.3356 8.43652 19.3529L23.5894 19.3529L24.6096 19.5936L8.11182 19.5938C6.69727 19.9403 5.98975 20.1151 5.98975 20.1179C4.74487 20.38 5.98975 20.519 5.98975 20.519C5.98975 20.519 7.73975 20.8363 9.72632 21.1962L10.1011 21.2641C10.2896 21.2982 10.4792 21.3326 10.6689 21.3669L11.1523 21.4545C13.3201 21.847 15.3479 22.2137 15.3481 22.2121C16.3989 22.402 17.4688 22.2392 17.6162 22.215L17.6335 22.2121C17.6335 22.2121 19.6785 21.8452 21.8643 21.4524L22.3516 21.3648L22.7339 21.2961C24.959 20.8961 27.0698 20.5159 27.0698 20.5132C27.9897 20.3259 26.8892 20.1312 26.8892 20.1312L23.5894 19.3529L24.4365 19.3529L23.2419 19.2932L23.1292 19.2879ZM16.2178 21.353L16.4365 21.253L15.6553 21.253L15.4365 21.353L16.2178 21.353Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
62+ </g>
63+ <g opacity="0.347826">
64+ <path id="形状备份" d="M28.2109 2.35181C27.7346 1.68958 27.0305 1.3031 26.2847 1.3031L17.5498 1.3031L17.3752 1.31018C16.6233 1.37115 15.9304 1.8241 15.4927 2.55029C15.2334 2.98047 14.9907 3.38281 14.7651 3.75732L14.7471 3.75732C13.5251 5.48987 12.9143 6.36334 12.9143 6.37775C11.8394 7.68829 12.9143 8.38306 12.9143 8.38306C12.9143 8.38306 14.4258 9.9696 16.1414 11.769L16.4651 12.1086C16.6279 12.2792 16.7917 12.451 16.9556 12.6229L17.3728 13.0605C19.2429 15.0209 20.9922 16.8527 20.9966 16.8486L20.9966 16.8486C21.9041 17.7982 22.8281 16.9843 22.9553 16.8631L22.9702 16.8486C22.9702 16.8486 24.7363 15.014 26.6243 13.0501L27.0452 12.6122L27.3752 12.2687C29.2969 10.2688 31.1199 8.36786 31.1199 8.35425C31.9143 7.41791 30.9639 6.44409 30.9639 6.44409L29.3948 4.30157L29.4365 4.30157L28.3167 2.50952L28.2109 2.35181ZM22.2178 10.3031L22.4365 8.3031L21.6553 8.3031L21.4365 10.3031L22.2178 10.3031Z" clip-rule="evenodd" fill="url(#paint_linear_6_1085_0)" fill-opacity="0.000000" fill-rule="evenodd"/>
65+ <path id="形状备份" d="M28.2109 2.35181C27.7346 1.68958 27.0305 1.3031 26.2847 1.3031L17.5498 1.3031L17.3752 1.31018C16.6233 1.37115 15.9304 1.8241 15.4927 2.55029C15.2334 2.98047 14.9907 3.38281 14.7651 3.75732L14.7471 3.75732C13.5251 5.48987 12.9143 6.36334 12.9143 6.37775C11.8394 7.68829 12.9143 8.38306 12.9143 8.38306C12.9143 8.38306 14.4258 9.9696 16.1414 11.769L16.4651 12.1086C16.6279 12.2792 16.7917 12.451 16.9556 12.6229L17.3728 13.0605C19.2429 15.0209 20.9922 16.8527 20.9966 16.8486L20.9966 16.8486C21.9041 17.7982 22.8281 16.9843 22.9553 16.8631L22.9702 16.8486C22.9702 16.8486 24.7363 15.014 26.6243 13.0501L27.0452 12.6122L27.3752 12.2687C29.2969 10.2688 31.1199 8.36786 31.1199 8.35425C31.9143 7.41791 30.9639 6.44409 30.9639 6.44409L29.3948 4.30157L29.4365 4.30157L28.3167 2.50952L28.2109 2.35181ZM22.2178 10.3031L22.4365 8.3031L21.6553 8.3031L21.4365 10.3031L22.2178 10.3031Z" clip-rule="evenodd" fill="url(#paint_linear_6_1085_1)" fill-opacity="0.000000" fill-rule="evenodd"/>
66+ <path id="形状备份" d="M28.2109 2.35181C27.7346 1.68958 27.0305 1.3031 26.2847 1.3031L17.5498 1.3031L17.3752 1.31018C16.6233 1.37115 15.9304 1.8241 15.4927 2.55029C15.2334 2.98047 14.9907 3.38281 14.7651 3.75732L14.7471 3.75732C13.5251 5.48987 12.9143 6.36334 12.9143 6.37775C11.8394 7.68829 12.9143 8.38306 12.9143 8.38306C12.9143 8.38306 14.4258 9.9696 16.1414 11.769L16.4651 12.1086C16.6279 12.2792 16.7917 12.451 16.9556 12.6229L17.3728 13.0605C19.2429 15.0209 20.9922 16.8527 20.9966 16.8486L20.9966 16.8486C21.9041 17.7982 22.8281 16.9843 22.9553 16.8631L22.9702 16.8486C22.9702 16.8486 24.7363 15.014 26.6243 13.0501L27.0452 12.6122L27.3752 12.2687C29.2969 10.2688 31.1199 8.36786 31.1199 8.35425C31.9143 7.41791 30.9639 6.44409 30.9639 6.44409L29.3948 4.30157L29.4365 4.30157L28.3167 2.50952L28.2109 2.35181ZM22.2178 10.3031L22.4365 8.3031L21.6553 8.3031L21.4365 10.3031L22.2178 10.3031Z" clip-rule="evenodd" fill="#0A59F7" fill-opacity="1.000000" fill-rule="evenodd"/>
67+ </g>
68+ <g opacity="0.841278" filter="url(#filter_6_1090_dd)">
69+ <path id="形状" d="M22.1443 0.980042C21.624 0.361206 20.8545 6.10352e-05 20.0396 6.10352e-05L10.4958 6.10352e-05L10.3054 0.00665283C9.48364 0.0636597 8.72681 0.486938 8.24829 1.16553C7.82178 1.77045 7.43726 2.31641 7.09448 2.80347L7.09424 2.80347C5.68896 4.80029 4.98608 5.80701 4.98608 5.82361C3.74951 7.33417 4.98608 8.13489 4.98608 8.13489C4.98608 8.13489 6.72461 9.96344 8.698 12.0374L9.07031 12.4287C9.25757 12.6254 9.44604 12.8235 9.63452 13.0215L10.1147 13.5258C12.2656 15.7854 14.2778 17.8966 14.283 17.8918L14.283 17.8918C15.3269 18.9863 16.3896 18.0482 16.5361 17.9086L16.5532 17.8918C16.5532 17.8918 18.5847 15.7774 20.7561 13.5139L21.2402 13.0092L21.6199 12.6133C23.8303 10.3083 25.9275 8.11737 25.9275 8.10168C26.8411 7.02246 25.7478 5.90009 25.7478 5.90009L22.5281 1.49438L22.2598 1.12738L22.1443 0.980042ZM15.7832 10.0883L16.0981 8.09637L14.9731 8.09637L14.6582 10.0883L15.7832 10.0883Z" clip-rule="evenodd" fill="url(#paint_linear_6_1090_0)" fill-opacity="0.000000" fill-rule="evenodd"/>
70+ <path id="形状" d="M22.1443 0.980042C21.624 0.361206 20.8545 6.10352e-05 20.0396 6.10352e-05L10.4958 6.10352e-05L10.3054 0.00665283C9.48364 0.0636597 8.72681 0.486938 8.24829 1.16553C7.82178 1.77045 7.43726 2.31641 7.09448 2.80347L7.09424 2.80347C5.68896 4.80029 4.98608 5.80701 4.98608 5.82361C3.74951 7.33417 4.98608 8.13489 4.98608 8.13489C4.98608 8.13489 6.72461 9.96344 8.698 12.0374L9.07031 12.4287C9.25757 12.6254 9.44604 12.8235 9.63452 13.0215L10.1147 13.5258C12.2656 15.7854 14.2778 17.8966 14.283 17.8918L14.283 17.8918C15.3269 18.9863 16.3896 18.0482 16.5361 17.9086L16.5532 17.8918C16.5532 17.8918 18.5847 15.7774 20.7561 13.5139L21.2402 13.0092L21.6199 12.6133C23.8303 10.3083 25.9275 8.11737 25.9275 8.10168C26.8411 7.02246 25.7478 5.90009 25.7478 5.90009L22.5281 1.49438L22.2598 1.12738L22.1443 0.980042ZM15.7832 10.0883L16.0981 8.09637L14.9731 8.09637L14.6582 10.0883L15.7832 10.0883Z" clip-rule="evenodd" fill="url(#paint_linear_6_1090_1)" fill-opacity="0.000000" fill-rule="evenodd"/>
71+ <path id="形状" d="M22.1443 0.980042C21.624 0.361206 20.8545 6.10352e-05 20.0396 6.10352e-05L10.4958 6.10352e-05L10.3054 0.00665283C9.48364 0.0636597 8.72681 0.486938 8.24829 1.16553C7.82178 1.77045 7.43726 2.31641 7.09448 2.80347L7.09424 2.80347C5.68896 4.80029 4.98608 5.80701 4.98608 5.82361C3.74951 7.33417 4.98608 8.13489 4.98608 8.13489C4.98608 8.13489 6.72461 9.96344 8.698 12.0374L9.07031 12.4287C9.25757 12.6254 9.44604 12.8235 9.63452 13.0215L10.1147 13.5258C12.2656 15.7854 14.2778 17.8966 14.283 17.8918L14.283 17.8918C15.3269 18.9863 16.3896 18.0482 16.5361 17.9086L16.5532 17.8918C16.5532 17.8918 18.5847 15.7774 20.7561 13.5139L21.2402 13.0092L21.6199 12.6133C23.8303 10.3083 25.9275 8.11737 25.9275 8.10168C26.8411 7.02246 25.7478 5.90009 25.7478 5.90009L22.5281 1.49438L22.2598 1.12738L22.1443 0.980042ZM15.7832 10.0883L16.0981 8.09637L14.9731 8.09637L14.6582 10.0883L15.7832 10.0883Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
72+ <path id="形状" d="M22.1443 0.980042C21.624 0.361206 20.8545 6.10352e-05 20.0396 6.10352e-05L10.4958 6.10352e-05L10.3054 0.00665283C9.48364 0.0636597 8.72681 0.486938 8.24829 1.16553C7.82178 1.77045 7.43726 2.31641 7.09448 2.80347L7.09424 2.80347C5.68896 4.80029 4.98608 5.80701 4.98608 5.82361C3.74951 7.33417 4.98608 8.13489 4.98608 8.13489C4.98608 8.13489 6.72461 9.96344 8.698 12.0374L9.07031 12.4287C9.25757 12.6254 9.44604 12.8235 9.63452 13.0215L10.1147 13.5258C12.2656 15.7854 14.2778 17.8966 14.283 17.8918L14.283 17.8918C15.3269 18.9863 16.3896 18.0482 16.5361 17.9086L16.5532 17.8918C16.5532 17.8918 18.5847 15.7774 20.7561 13.5139L21.2402 13.0092L21.6199 12.6133C23.8303 10.3083 25.9275 8.11737 25.9275 8.10168C26.8411 7.02246 25.7478 5.90009 25.7478 5.90009L22.5281 1.49438L22.2598 1.12738L22.1443 0.980042ZM15.7832 10.0883L16.0981 8.09637L14.9731 8.09637L14.6582 10.0883L15.7832 10.0883Z" clip-rule="evenodd" fill="#FFFFFF" fill-opacity="0.000000" fill-rule="evenodd"/>
73+ </g>
74+ <g opacity="0.603559" filter="url(#filter_6_1095_dd)">
75+ <path id="形状" d="M22.144 0.97998C21.6238 0.361145 20.8542 0 20.0393 0L10.4956 0L10.3052 0.0065918C9.4834 0.0635986 8.72656 0.486877 8.24805 1.16547C7.82153 1.77039 7.43701 2.31635 7.09424 2.80341L7.09399 2.80341C5.68872 4.80023 4.98584 5.80695 4.98584 5.82355C3.74927 7.33411 4.98584 8.13483 4.98584 8.13483C4.98584 8.13483 6.72437 9.96338 8.69775 12.0373L9.07007 12.4286C9.25732 12.6254 9.4458 12.8234 9.63428 13.0214L10.1145 13.5258C12.2654 15.7853 14.2776 17.8965 14.2827 17.8918L14.2827 17.8918C15.3267 18.9863 16.3894 18.0481 16.5359 17.9085L16.553 17.8918C16.553 17.8918 18.5845 15.7773 20.7559 13.5138L21.24 13.0092L21.6196 12.6133C23.8301 10.3082 25.9272 8.11731 25.9272 8.10162C26.8408 7.0224 25.7476 5.90002 25.7476 5.90002L22.5278 1.49432L22.2595 1.12732L22.144 0.97998ZM15.783 10.0883L16.0979 8.09631L14.9729 8.09631L14.658 10.0883L15.783 10.0883Z" clip-rule="evenodd" fill="url(#paint_linear_6_1095_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
76+ <path id="形状" d="M22.144 0.97998C21.6238 0.361145 20.8542 0 20.0393 0L10.4956 0L10.3052 0.0065918C9.4834 0.0635986 8.72656 0.486877 8.24805 1.16547C7.82153 1.77039 7.43701 2.31635 7.09424 2.80341L7.09399 2.80341C5.68872 4.80023 4.98584 5.80695 4.98584 5.82355C3.74927 7.33411 4.98584 8.13483 4.98584 8.13483C4.98584 8.13483 6.72437 9.96338 8.69775 12.0373L9.07007 12.4286C9.25732 12.6254 9.4458 12.8234 9.63428 13.0214L10.1145 13.5258C12.2654 15.7853 14.2776 17.8965 14.2827 17.8918L14.2827 17.8918C15.3267 18.9863 16.3894 18.0481 16.5359 17.9085L16.553 17.8918C16.553 17.8918 18.5845 15.7773 20.7559 13.5138L21.24 13.0092L21.6196 12.6133C23.8301 10.3082 25.9272 8.11731 25.9272 8.10162C26.8408 7.0224 25.7476 5.90002 25.7476 5.90002L22.5278 1.49432L22.2595 1.12732L22.144 0.97998ZM15.783 10.0883L16.0979 8.09631L14.9729 8.09631L14.658 10.0883L15.783 10.0883Z" clip-rule="evenodd" fill="url(#paint_linear_6_1095_1)" fill-opacity="1.000000" fill-rule="evenodd"/>
77+ <path id="形状" d="M22.144 0.97998C21.6238 0.361145 20.8542 0 20.0393 0L10.4956 0L10.3052 0.0065918C9.4834 0.0635986 8.72656 0.486877 8.24805 1.16547C7.82153 1.77039 7.43701 2.31635 7.09424 2.80341L7.09399 2.80341C5.68872 4.80023 4.98584 5.80695 4.98584 5.82355C3.74927 7.33411 4.98584 8.13483 4.98584 8.13483C4.98584 8.13483 6.72437 9.96338 8.69775 12.0373L9.07007 12.4286C9.25732 12.6254 9.4458 12.8234 9.63428 13.0214L10.1145 13.5258C12.2654 15.7853 14.2776 17.8965 14.2827 17.8918L14.2827 17.8918C15.3267 18.9863 16.3894 18.0481 16.5359 17.9085L16.553 17.8918C16.553 17.8918 18.5845 15.7773 20.7559 13.5138L21.24 13.0092L21.6196 12.6133C23.8301 10.3082 25.9272 8.11731 25.9272 8.10162C26.8408 7.0224 25.7476 5.90002 25.7476 5.90002L22.5278 1.49432L22.2595 1.12732L22.144 0.97998ZM15.783 10.0883L16.0979 8.09631L14.9729 8.09631L14.658 10.0883L15.783 10.0883Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
78+ </g>
79+ <path id="路径 3" d="M11.15 9.3L15.49 13.64L19.43 9.2L11.15 9.3Z" fill="#D8D8D8" fill-opacity="0" fill-rule="evenodd"/>
80+ <path id="路径 3" d="M11.15 9.3L15.49 13.64L19.43 9.2" stroke="#FFFFFF" stroke-opacity="1.000000" stroke-width="1.500000"/>
81+</svg>
@@ -0,0 +1,49 @@
1+<svg width="30.873047" height="25.186584" viewBox="0 0 30.873 25.1866" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <filter id="filter_18_1687_dd" x="0.000000" y="11.263367" width="30.873047" height="13.923218" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9+ <feGaussianBlur stdDeviation="1.81219" result="effect_layerBlur_1"/>
10+ </filter>
11+ <linearGradient x1="25.436523" y1="17.686989" x2="5.436523" y2="17.686989" id="paint_linear_18_1687_0" gradientUnits="userSpaceOnUse">
12+ <stop stop-color="#0A59F7"/>
13+ <stop offset="1.000000" stop-color="#0A59F7"/>
14+ </linearGradient>
15+ <linearGradient x1="23.903034" y1="17.240379" x2="13.407253" y2="19.365437" id="paint_linear_18_1687_1" gradientUnits="userSpaceOnUse">
16+ <stop stop-color="#0CA78E"/>
17+ <stop offset="0.392266" stop-color="#30D9C9"/>
18+ <stop offset="1.000000" stop-color="#1BC29C"/>
19+ </linearGradient>
20+ <linearGradient x1="15.436525" y1="17.894783" x2="15.436525" y2="19.750000" id="paint_linear_18_1687_2" gradientUnits="userSpaceOnUse">
21+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
22+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
23+ </linearGradient>
24+ <linearGradient x1="17.053322" y1="-0.000034" x2="17.101141" y2="13.580758" id="paint_linear_18_1693_0" gradientUnits="userSpaceOnUse">
25+ <stop stop-color="#26C3A9"/>
26+ <stop offset="0.512311" stop-color="#30D9C9"/>
27+ <stop offset="1.000000" stop-color="#1BC29C"/>
28+ </linearGradient>
29+ <linearGradient x1="23.467709" y1="15.368904" x2="13.639244" y2="17.372684" id="paint_linear_18_1697_0" gradientUnits="userSpaceOnUse">
30+ <stop stop-color="#0CA78E"/>
31+ <stop offset="0.392266" stop-color="#30D9C9"/>
32+ <stop offset="1.000000" stop-color="#1BC29C"/>
33+ </linearGradient>
34+ </defs>
35+ <g opacity="0.643511" filter="url(#filter_18_1687_dd)">
36+ <path id="形状备份 2" d="M22.1292 16.7349C21.6211 16.7128 20.8701 16.7 20.0745 16.7L10.7573 16.7L10.5713 16.7002C9.76904 16.7022 9.03003 16.7173 8.56299 16.7415C8.14673 16.7631 7.77124 16.7826 7.43652 16.7999L21.9392 16.7999L22.8665 17.0406L7.86865 17.0408C6.58252 17.3873 5.93945 17.5621 5.93945 17.5649C4.80786 17.827 5.93945 17.966 5.93945 17.966C5.93945 17.966 7.53027 18.2833 9.33618 18.6432L9.677 18.7111C9.84839 18.7452 10.0208 18.7796 10.1934 18.814L10.6326 18.9015C12.6033 19.294 14.4468 19.6608 14.4473 19.6591C15.4023 19.849 16.375 19.6862 16.509 19.662L16.5247 19.6591C16.5247 19.6591 18.3838 19.2922 20.3708 18.8994L20.814 18.8118L21.1614 18.7431C23.1841 18.3431 25.1033 17.963 25.1033 17.9602C25.9395 17.7729 24.939 17.5782 24.939 17.5782L21.9392 16.7999L23.4365 16.7999L22.2419 16.7402L22.1292 16.7349ZM15.2178 18.8L15.4365 18.7L14.6553 18.7L14.4365 18.8L15.2178 18.8Z" clip-rule="evenodd" fill="url(#paint_linear_18_1687_0)" fill-opacity="0.000000" fill-rule="evenodd"/>
37+ <path id="形状备份 2" d="M22.1292 16.7349C21.6211 16.7128 20.8701 16.7 20.0745 16.7L10.7573 16.7L10.5713 16.7002C9.76904 16.7022 9.03003 16.7173 8.56299 16.7415C8.14673 16.7631 7.77124 16.7826 7.43652 16.7999L21.9392 16.7999L22.8665 17.0406L7.86865 17.0408C6.58252 17.3873 5.93945 17.5621 5.93945 17.5649C4.80786 17.827 5.93945 17.966 5.93945 17.966C5.93945 17.966 7.53027 18.2833 9.33618 18.6432L9.677 18.7111C9.84839 18.7452 10.0208 18.7796 10.1934 18.814L10.6326 18.9015C12.6033 19.294 14.4468 19.6608 14.4473 19.6591C15.4023 19.849 16.375 19.6862 16.509 19.662L16.5247 19.6591C16.5247 19.6591 18.3838 19.2922 20.3708 18.8994L20.814 18.8118L21.1614 18.7431C23.1841 18.3431 25.1033 17.963 25.1033 17.9602C25.9395 17.7729 24.939 17.5782 24.939 17.5782L21.9392 16.7999L23.4365 16.7999L22.2419 16.7402L22.1292 16.7349ZM15.2178 18.8L15.4365 18.7L14.6553 18.7L14.4365 18.8L15.2178 18.8Z" clip-rule="evenodd" fill="url(#paint_linear_18_1687_1)" fill-opacity="1.000000" fill-rule="evenodd"/>
38+ <path id="形状备份 2" d="M22.1292 16.7349C21.6211 16.7128 20.8701 16.7 20.0745 16.7L10.7573 16.7L10.5713 16.7002C9.76904 16.7022 9.03003 16.7173 8.56299 16.7415C8.14673 16.7631 7.77124 16.7826 7.43652 16.7999L21.9392 16.7999L22.8665 17.0406L7.86865 17.0408C6.58252 17.3873 5.93945 17.5621 5.93945 17.5649C4.80786 17.827 5.93945 17.966 5.93945 17.966C5.93945 17.966 7.53027 18.2833 9.33618 18.6432L9.677 18.7111C9.84839 18.7452 10.0208 18.7796 10.1934 18.814L10.6326 18.9015C12.6033 19.294 14.4468 19.6608 14.4473 19.6591C15.4023 19.849 16.375 19.6862 16.509 19.662L16.5247 19.6591C16.5247 19.6591 18.3838 19.2922 20.3708 18.8994L20.814 18.8118L21.1614 18.7431C23.1841 18.3431 25.1033 17.963 25.1033 17.9602C25.9395 17.7729 24.939 17.5782 24.939 17.5782L21.9392 16.7999L23.4365 16.7999L22.2419 16.7402L22.1292 16.7349ZM15.2178 18.8L15.4365 18.7L14.6553 18.7L14.4365 18.8L15.2178 18.8Z" clip-rule="evenodd" fill="url(#paint_linear_18_1687_2)" fill-opacity="0.000000" fill-rule="evenodd"/>
39+ <path id="形状备份 2" d="M22.1292 16.7349C21.6211 16.7128 20.8701 16.7 20.0745 16.7L10.7573 16.7L10.5713 16.7002C9.76904 16.7022 9.03003 16.7173 8.56299 16.7415C8.14673 16.7631 7.77124 16.7826 7.43652 16.7999L21.9392 16.7999L22.8665 17.0406L7.86865 17.0408C6.58252 17.3873 5.93945 17.5621 5.93945 17.5649C4.80786 17.827 5.93945 17.966 5.93945 17.966C5.93945 17.966 7.53027 18.2833 9.33618 18.6432L9.677 18.7111C9.84839 18.7452 10.0208 18.7796 10.1934 18.814L10.6326 18.9015C12.6033 19.294 14.4468 19.6608 14.4473 19.6591C15.4023 19.849 16.375 19.6862 16.509 19.662L16.5247 19.6591C16.5247 19.6591 18.3838 19.2922 20.3708 18.8994L20.814 18.8118L21.1614 18.7431C23.1841 18.3431 25.1033 17.963 25.1033 17.9602C25.9395 17.7729 24.939 17.5782 24.939 17.5782L21.9392 16.7999L23.4365 16.7999L22.2419 16.7402L22.1292 16.7349ZM15.2178 18.8L15.4365 18.7L14.6553 18.7L14.4365 18.8L15.2178 18.8Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
40+ </g>
41+ <g opacity="0.600000">
42+ <path id="形状" d="M4.68652 13.4801L4.69165 13.623C4.71167 13.8937 4.79028 14.1205 4.92749 14.3035C5.14258 14.5904 5.50195 14.7692 6.00537 14.84L6.17529 14.8593L24.9036 14.8593C25.8962 14.7717 26.3923 14.312 26.3923 13.4801L26.3923 9.02454L26.3884 8.80713C26.3181 6.97736 25.3569 6.55859 24.5938 6.46069L23.9434 4.7514L23.9399 4.7373L23.915 4.65253C23.8547 4.45374 23.7058 3.98505 23.5491 3.51227L23.4377 3.17981C23.3088 2.79938 23.1877 2.45911 23.1204 2.30957C23.0288 2.10608 22.9272 1.90259 22.8254 1.6991L22.6731 1.45496L22.6335 1.39233C22.5073 1.17865 22.4199 0.912903 21.9211 0.579956C21.3723 0.203491 20.7627 0 20.0413 0L11.0378 0L10.8013 0.00750732C10.1814 0.0473633 9.64551 0.2453 9.15771 0.579956C8.60913 0.946228 8.55811 1.23108 8.41602 1.42438L8.25342 1.6991L8.10229 2.00433L7.95874 2.30957C7.76562 2.73688 7.1355 4.72083 7.12549 4.7514L6.48511 6.46069L6.39624 6.47345C5.61938 6.59772 4.68652 7.08466 4.68652 9.02454L4.68652 13.4801ZM10.8625 7.50818C10.8625 6.36395 11.363 5.2912 12.1499 4.50452C13.8665 2.85968 16.5845 2.85968 18.2297 4.50452C19.678 5.9527 19.8628 8.19885 18.7839 9.83234L18.6587 10.0112L20.2324 11.5845L20.3032 11.6675C20.5161 11.9593 20.4924 12.3907 20.2324 12.5858C20.0894 12.7288 19.8748 12.8003 19.7317 12.8003C19.6172 12.8003 19.457 12.7545 19.3242 12.663L19.231 12.5858L17.6575 11.0125L17.4387 11.1561C16.7698 11.5674 15.991 11.7991 15.1541 11.7991C14.0095 11.7991 12.9368 11.2985 12.1499 10.5118C11.2915 9.72516 10.8625 8.6524 10.8625 7.50818ZM15.2024 4.586C15.9585 4.586 16.7148 4.87762 17.3198 5.46082C18.5295 6.6272 18.5295 8.44965 17.3198 9.61603C16.261 10.6366 14.2192 10.6366 13.085 9.54309C12.48 8.95996 12.1775 8.23096 12.1775 7.50195C12.1775 6.77295 12.48 5.97107 13.085 5.46082C13.6899 4.87762 14.446 4.586 15.2024 4.586Z" clip-rule="evenodd" fill="#44D7B6" fill-opacity="0.000000" fill-rule="evenodd"/>
43+ <path id="形状" d="M4.68652 13.4801L4.69165 13.623C4.71167 13.8937 4.79028 14.1205 4.92749 14.3035C5.14258 14.5904 5.50195 14.7692 6.00537 14.84L6.17529 14.8593L24.9036 14.8593C25.8962 14.7717 26.3923 14.312 26.3923 13.4801L26.3923 9.02454L26.3884 8.80713C26.3181 6.97736 25.3569 6.55859 24.5938 6.46069L23.9434 4.7514L23.9399 4.7373L23.915 4.65253C23.8547 4.45374 23.7058 3.98505 23.5491 3.51227L23.4377 3.17981C23.3088 2.79938 23.1877 2.45911 23.1204 2.30957C23.0288 2.10608 22.9272 1.90259 22.8254 1.6991L22.6731 1.45496L22.6335 1.39233C22.5073 1.17865 22.4199 0.912903 21.9211 0.579956C21.3723 0.203491 20.7627 0 20.0413 0L11.0378 0L10.8013 0.00750732C10.1814 0.0473633 9.64551 0.2453 9.15771 0.579956C8.60913 0.946228 8.55811 1.23108 8.41602 1.42438L8.25342 1.6991L8.10229 2.00433L7.95874 2.30957C7.76562 2.73688 7.1355 4.72083 7.12549 4.7514L6.48511 6.46069L6.39624 6.47345C5.61938 6.59772 4.68652 7.08466 4.68652 9.02454L4.68652 13.4801ZM10.8625 7.50818C10.8625 6.36395 11.363 5.2912 12.1499 4.50452C13.8665 2.85968 16.5845 2.85968 18.2297 4.50452C19.678 5.9527 19.8628 8.19885 18.7839 9.83234L18.6587 10.0112L20.2324 11.5845L20.3032 11.6675C20.5161 11.9593 20.4924 12.3907 20.2324 12.5858C20.0894 12.7288 19.8748 12.8003 19.7317 12.8003C19.6172 12.8003 19.457 12.7545 19.3242 12.663L19.231 12.5858L17.6575 11.0125L17.4387 11.1561C16.7698 11.5674 15.991 11.7991 15.1541 11.7991C14.0095 11.7991 12.9368 11.2985 12.1499 10.5118C11.2915 9.72516 10.8625 8.6524 10.8625 7.50818ZM15.2024 4.586C15.9585 4.586 16.7148 4.87762 17.3198 5.46082C18.5295 6.6272 18.5295 8.44965 17.3198 9.61603C16.261 10.6366 14.2192 10.6366 13.085 9.54309C12.48 8.95996 12.1775 8.23096 12.1775 7.50195C12.1775 6.77295 12.48 5.97107 13.085 5.46082C13.6899 4.87762 14.446 4.586 15.2024 4.586Z" clip-rule="evenodd" fill="url(#paint_linear_18_1693_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
44+ </g>
45+ <g opacity="0.354204">
46+ <path id="路径" d="M24.72 14.87L24.53 14.87L24.53 16.33C24.53 17.1 23.9 17.73 23.13 17.73C22.4 17.73 21.8 17.17 21.73 16.46L21.72 16.33L21.72 14.87L9.35 14.87L9.35 16.33C9.35 17.1 8.72 17.73 7.94 17.73C7.22 17.73 6.62 17.17 6.55 16.46L6.54 16.33L6.54 14.87C6.41 14.87 6.29 14.86 6.17 14.85L24.9 14.85C24.84 14.86 24.78 14.86 24.72 14.87Z" fill="#44D7B6" fill-opacity="1.000000" fill-rule="evenodd"/>
47+ <path id="路径" d="M24.72 14.87L24.53 14.87L24.53 16.33C24.53 17.1 23.9 17.73 23.13 17.73C22.4 17.73 21.8 17.17 21.73 16.46L21.72 16.33L21.72 14.87L9.35 14.87L9.35 16.33C9.35 17.1 8.72 17.73 7.94 17.73C7.22 17.73 6.62 17.17 6.55 16.46L6.54 16.33L6.54 14.87C6.41 14.87 6.29 14.86 6.17 14.85L24.9 14.85C24.84 14.86 24.78 14.86 24.72 14.87Z" fill="url(#paint_linear_18_1697_0)" fill-opacity="0" fill-rule="evenodd"/>
48+ </g>
49+</svg>
@@ -0,0 +1,39 @@
1+<svg width="28.873047" height="30.936584" viewBox="0 0 28.873 30.9366" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <filter id="filter_18_1639_dd" x="0.000000" y="17.013367" width="28.873047" height="13.923218" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9+ <feGaussianBlur stdDeviation="1.81219" result="effect_layerBlur_1"/>
10+ </filter>
11+ <linearGradient x1="23.436523" y1="23.436985" x2="5.436525" y2="23.436985" id="paint_linear_18_1639_0" gradientUnits="userSpaceOnUse">
12+ <stop stop-color="#0A59F7"/>
13+ <stop offset="1.000000" stop-color="#0A59F7"/>
14+ </linearGradient>
15+ <linearGradient x1="11.600273" y1="23.039562" x2="23.436522" y2="24.616486" id="paint_linear_18_1639_1" gradientUnits="userSpaceOnUse">
16+ <stop stop-color="#731CEA"/>
17+ <stop offset="0.430255" stop-color="#9C5CF3"/>
18+ <stop offset="1.000000" stop-color="#731CEA"/>
19+ </linearGradient>
20+ <linearGradient x1="14.436523" y1="23.644783" x2="14.436523" y2="25.500000" id="paint_linear_18_1639_2" gradientUnits="userSpaceOnUse">
21+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
22+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
23+ </linearGradient>
24+ <linearGradient x1="11.892611" y1="4.252882" x2="23.330084" y2="15.627214" id="paint_linear_18_1644_0" gradientUnits="userSpaceOnUse">
25+ <stop stop-color="#731CEA"/>
26+ <stop offset="0.430255" stop-color="#9C5CF3"/>
27+ <stop offset="1.000000" stop-color="#731CEA"/>
28+ </linearGradient>
29+ </defs>
30+ <g opacity="0.643511" filter="url(#filter_18_1639_dd)">
31+ <path id="形状备份 2" d="M19.3743 22.4849C18.9617 22.4628 18.3513 22.45 17.7048 22.45L10.1348 22.45L9.9834 22.4502C9.33179 22.4522 8.7312 22.4673 8.35181 22.4915C8.01367 22.5131 7.7085 22.5326 7.43652 22.5499L20.2888 22.5499L21.1235 22.7906L7.62549 22.7908C6.46802 23.1373 5.88916 23.3121 5.88916 23.3149C4.87061 23.577 5.88916 23.716 5.88916 23.716C5.88916 23.716 7.32104 24.0333 8.94629 24.3932L9.25293 24.4611C9.40723 24.4952 9.5625 24.5296 9.71753 24.564L10.113 24.6515C11.8867 25.044 13.5457 25.4108 13.5461 25.4091C14.4058 25.599 15.281 25.4362 15.4019 25.412L15.4158 25.4091C15.4158 25.4091 17.0889 25.0422 18.8774 24.6494L19.2761 24.5618L19.5889 24.4931C21.4094 24.0931 23.1365 23.713 23.1365 23.7102C23.8892 23.5229 22.9885 23.3282 22.9885 23.3282L20.2888 22.5499L20.4365 22.5499L20.2488 22.5383L20.1157 22.5L20.2488 22.5383L19.4661 22.4902L19.3743 22.4849ZM14.2178 24.55L14.4365 24.45L13.6553 24.45L13.4365 24.55L14.2178 24.55Z" clip-rule="evenodd" fill="url(#paint_linear_18_1639_0)" fill-opacity="0.000000" fill-rule="evenodd"/>
32+ <path id="形状备份 2" d="M19.3743 22.4849C18.9617 22.4628 18.3513 22.45 17.7048 22.45L10.1348 22.45L9.9834 22.4502C9.33179 22.4522 8.7312 22.4673 8.35181 22.4915C8.01367 22.5131 7.7085 22.5326 7.43652 22.5499L20.2888 22.5499L21.1235 22.7906L7.62549 22.7908C6.46802 23.1373 5.88916 23.3121 5.88916 23.3149C4.87061 23.577 5.88916 23.716 5.88916 23.716C5.88916 23.716 7.32104 24.0333 8.94629 24.3932L9.25293 24.4611C9.40723 24.4952 9.5625 24.5296 9.71753 24.564L10.113 24.6515C11.8867 25.044 13.5457 25.4108 13.5461 25.4091C14.4058 25.599 15.281 25.4362 15.4019 25.412L15.4158 25.4091C15.4158 25.4091 17.0889 25.0422 18.8774 24.6494L19.2761 24.5618L19.5889 24.4931C21.4094 24.0931 23.1365 23.713 23.1365 23.7102C23.8892 23.5229 22.9885 23.3282 22.9885 23.3282L20.2888 22.5499L20.4365 22.5499L20.2488 22.5383L20.1157 22.5L20.2488 22.5383L19.4661 22.4902L19.3743 22.4849ZM14.2178 24.55L14.4365 24.45L13.6553 24.45L13.4365 24.55L14.2178 24.55Z" clip-rule="evenodd" fill="url(#paint_linear_18_1639_1)" fill-opacity="1.000000" fill-rule="evenodd"/>
33+ <path id="形状备份 2" d="M19.3743 22.4849C18.9617 22.4628 18.3513 22.45 17.7048 22.45L10.1348 22.45L9.9834 22.4502C9.33179 22.4522 8.7312 22.4673 8.35181 22.4915C8.01367 22.5131 7.7085 22.5326 7.43652 22.5499L20.2888 22.5499L21.1235 22.7906L7.62549 22.7908C6.46802 23.1373 5.88916 23.3121 5.88916 23.3149C4.87061 23.577 5.88916 23.716 5.88916 23.716C5.88916 23.716 7.32104 24.0333 8.94629 24.3932L9.25293 24.4611C9.40723 24.4952 9.5625 24.5296 9.71753 24.564L10.113 24.6515C11.8867 25.044 13.5457 25.4108 13.5461 25.4091C14.4058 25.599 15.281 25.4362 15.4019 25.412L15.4158 25.4091C15.4158 25.4091 17.0889 25.0422 18.8774 24.6494L19.2761 24.5618L19.5889 24.4931C21.4094 24.0931 23.1365 23.713 23.1365 23.7102C23.8892 23.5229 22.9885 23.3282 22.9885 23.3282L20.2888 22.5499L20.4365 22.5499L20.2488 22.5383L20.1157 22.5L20.2488 22.5383L19.4661 22.4902L19.3743 22.4849ZM14.2178 24.55L14.4365 24.45L13.6553 24.45L13.4365 24.55L14.2178 24.55Z" clip-rule="evenodd" fill="url(#paint_linear_18_1639_2)" fill-opacity="0.000000" fill-rule="evenodd"/>
34+ <path id="形状备份 2" d="M19.3743 22.4849C18.9617 22.4628 18.3513 22.45 17.7048 22.45L10.1348 22.45L9.9834 22.4502C9.33179 22.4522 8.7312 22.4673 8.35181 22.4915C8.01367 22.5131 7.7085 22.5326 7.43652 22.5499L20.2888 22.5499L21.1235 22.7906L7.62549 22.7908C6.46802 23.1373 5.88916 23.3121 5.88916 23.3149C4.87061 23.577 5.88916 23.716 5.88916 23.716C5.88916 23.716 7.32104 24.0333 8.94629 24.3932L9.25293 24.4611C9.40723 24.4952 9.5625 24.5296 9.71753 24.564L10.113 24.6515C11.8867 25.044 13.5457 25.4108 13.5461 25.4091C14.4058 25.599 15.281 25.4362 15.4019 25.412L15.4158 25.4091C15.4158 25.4091 17.0889 25.0422 18.8774 24.6494L19.2761 24.5618L19.5889 24.4931C21.4094 24.0931 23.1365 23.713 23.1365 23.7102C23.8892 23.5229 22.9885 23.3282 22.9885 23.3282L20.2888 22.5499L20.4365 22.5499L20.2488 22.5383L20.1157 22.5L20.2488 22.5383L19.4661 22.4902L19.3743 22.4849ZM14.2178 24.55L14.4365 24.45L13.6553 24.45L13.4365 24.55L14.2178 24.55Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
35+ </g>
36+ <g opacity="0.597435">
37+ <path id="形状" d="M13.8022 0.237549C18.5059 4.23425 18.0713 7.38306 17.8618 8.26538L17.8391 8.35706C17.8315 8.38538 17.825 8.40997 17.8193 8.43079C17.8032 8.48956 17.7957 8.51758 17.8042 8.51282C18.6592 8.51282 20.2261 5.56641 20.2207 5.48755C20.9585 6.44794 21.7498 7.88062 22.5945 9.78564L22.5884 9.78577C23.0654 10.8605 23.3301 12.051 23.3301 13.3032C23.3301 18.1063 19.4365 22 14.6333 22C9.83032 22 5.93652 18.1063 5.93652 13.3032C5.93652 11.0698 6.77832 9.03302 8.16211 7.49292L8.19385 7.43689C9.67261 6.02655 11.282 3.62677 13.0215 0.237549C13.2356 -0.0791626 13.4958 -0.0791626 13.8022 0.237549ZM14.1804 10.0013C14.239 9.9928 14.3035 10.025 14.374 10.0979C16.4651 11.8745 16.092 13.2446 16.0295 13.4745C16.0229 13.4987 16.0198 13.5103 16.0234 13.5083C16.3757 13.5083 17.0215 12.2941 17.0193 12.2615C17.3232 12.6573 17.6494 13.2477 17.9934 14.033C18.1917 14.4757 18.3008 14.9664 18.3008 15.4825C18.3008 17.462 16.696 19.0667 14.7166 19.0667C12.7371 19.0667 11.1326 17.462 11.1326 15.4825C11.1326 14.5615 11.48 13.7216 12.0508 13.0867L12.0627 13.0649C12.6721 12.4836 13.3354 11.4947 14.0522 10.0979C14.0913 10.0403 14.134 10.0081 14.1804 10.0013Z" clip-rule="evenodd" fill="url(#paint_linear_18_1644_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
38+ </g>
39+</svg>
@@ -0,0 +1,117 @@
1+<svg width="28.873047" height="30.151062" viewBox="0 0 28.873 30.1511" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <filter id="filter_6_1062_dd" x="0.000000" y="16.227844" width="28.873047" height="13.923218" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9+ <feGaussianBlur stdDeviation="1.81219" result="effect_layerBlur_1"/>
10+ </filter>
11+ <filter id="filter_6_1070_dd" x="7.293701" y="5.857178" width="15.428467" height="15.428589" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13+ <feGaussianBlur in="BackgroundImage" stdDeviation="0.906093"/>
14+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
15+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
16+ </filter>
17+ <filter id="filter_6_1071_dd" x="7.293701" y="5.857178" width="15.428467" height="15.428589" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
18+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
19+ <feGaussianBlur in="BackgroundImage" stdDeviation="11.7792"/>
20+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
21+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
22+ </filter>
23+ <filter id="filter_6_1072_dd" x="11.385254" y="9.876892" width="7.316895" height="7.005371" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
24+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
25+ <feGaussianBlur in="BackgroundImage" stdDeviation="11.7792"/>
26+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
27+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
28+ </filter>
29+ <filter id="filter_6_1073_dd" x="7.293701" y="5.857178" width="15.428467" height="15.428589" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
30+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
31+ <feGaussianBlur in="BackgroundImage" stdDeviation="11.7792"/>
32+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
33+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
34+ </filter>
35+ <filter id="filter_6_1074_dd" x="7.293701" y="5.857178" width="15.428467" height="15.428589" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
36+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
37+ <feGaussianBlur in="BackgroundImage" stdDeviation="11.7792"/>
38+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
39+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
40+ </filter>
41+ <filter id="filter_6_1075_dd" x="11.385254" y="9.876892" width="7.316895" height="7.005371" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
42+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
43+ <feGaussianBlur in="BackgroundImage" stdDeviation="11.7792"/>
44+ <feComposite in2="SourceAlpha" operator="in" result="effect_backgroundBlur_1"/>
45+ <feBlend mode="normal" in="SourceGraphic" in2="effect_backgroundBlur_1" result="shape"/>
46+ </filter>
47+ <linearGradient x1="23.436523" y1="22.651463" x2="5.436525" y2="22.651463" id="paint_linear_6_1062_0" gradientUnits="userSpaceOnUse">
48+ <stop stop-color="#0A59F7"/>
49+ <stop offset="1.000000" stop-color="#0A59F7"/>
50+ </linearGradient>
51+ <linearGradient x1="14.436523" y1="22.859261" x2="14.436523" y2="24.714478" id="paint_linear_6_1062_1" gradientUnits="userSpaceOnUse">
52+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
53+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
54+ </linearGradient>
55+ <linearGradient x1="13.954381" y1="3.559743" x2="5.811522" y2="3.559743" id="paint_linear_6_1068_0" gradientUnits="userSpaceOnUse">
56+ <stop stop-color="#2F6BD6"/>
57+ <stop offset="0.470277" stop-color="#76A0F9"/>
58+ <stop offset="1.000000" stop-color="#3370E5"/>
59+ </linearGradient>
60+ <linearGradient x1="9.882952" y1="4.309161" x2="9.882952" y2="11.000000" id="paint_linear_6_1068_1" gradientUnits="userSpaceOnUse">
61+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
62+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
63+ </linearGradient>
64+ <linearGradient x1="16.668661" y1="3.559744" x2="24.487549" y2="3.559744" id="paint_linear_6_1069_0" gradientUnits="userSpaceOnUse">
65+ <stop stop-color="#2F6BD6"/>
66+ <stop offset="0.470277" stop-color="#76A0F9"/>
67+ <stop offset="1.000000" stop-color="#3370E5"/>
68+ </linearGradient>
69+ <linearGradient x1="20.578104" y1="4.309161" x2="20.578104" y2="11.000000" id="paint_linear_6_1069_1" gradientUnits="userSpaceOnUse">
70+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
71+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
72+ </linearGradient>
73+ <linearGradient x1="22.722273" y1="10.850065" x2="7.293699" y2="10.850065" id="paint_linear_6_1070_0" gradientUnits="userSpaceOnUse">
74+ <stop stop-color="#2F6BD6"/>
75+ <stop offset="0.470277" stop-color="#76A0F9"/>
76+ <stop offset="1.000000" stop-color="#3370E5"/>
77+ </linearGradient>
78+ <linearGradient x1="15.007988" y1="11.901196" x2="15.007988" y2="21.285751" id="paint_linear_6_1070_1" gradientUnits="userSpaceOnUse">
79+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
80+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
81+ </linearGradient>
82+ <linearGradient x1="22.722273" y1="10.850065" x2="7.293699" y2="10.850065" id="paint_linear_6_1073_0" gradientUnits="userSpaceOnUse">
83+ <stop stop-color="#0A59F7"/>
84+ <stop offset="1.000000" stop-color="#0A59F7"/>
85+ </linearGradient>
86+ <linearGradient x1="15.007988" y1="11.901196" x2="15.007988" y2="21.285751" id="paint_linear_6_1073_1" gradientUnits="userSpaceOnUse">
87+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
88+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
89+ </linearGradient>
90+ </defs>
91+ <g opacity="0.643511" filter="url(#filter_6_1062_dd)">
92+ <path id="形状备份 2" d="M20.3743 21.6994C19.9617 21.6773 19.3513 21.6644 18.7048 21.6644L11.1348 21.6644L10.9834 21.6647C10.3318 21.6667 9.7312 21.6818 9.35181 21.706C9.01367 21.7276 8.7085 21.7471 8.43652 21.7644L20.2888 21.7644L21.1235 22.0051L7.62549 22.0053C6.46802 22.3518 5.88916 22.5266 5.88916 22.5294C4.87061 22.7915 5.88916 22.9305 5.88916 22.9305C5.88916 22.9305 7.32104 23.2478 8.94629 23.6077L9.25293 23.6756C9.40723 23.7097 9.5625 23.7441 9.71753 23.7784L10.113 23.866C11.8867 24.2585 13.5457 24.6252 13.5461 24.6236C14.4058 24.8135 15.281 24.6507 15.4019 24.6265L15.4158 24.6236C15.4158 24.6236 17.0889 24.2567 18.8774 23.8639L19.2761 23.7763L19.5889 23.7076C21.4094 23.3076 23.1365 22.9274 23.1365 22.9247C23.8892 22.7374 22.9885 22.5427 22.9885 22.5427L20.2888 21.7644L21.4365 21.7644L20.4661 21.7047L20.3743 21.6994ZM15.2178 23.7645L15.4365 23.6645L14.6553 23.6645L14.4365 23.7645L15.2178 23.7645Z" clip-rule="evenodd" fill="url(#paint_linear_6_1062_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
93+ <path id="形状备份 2" d="M20.3743 21.6994C19.9617 21.6773 19.3513 21.6644 18.7048 21.6644L11.1348 21.6644L10.9834 21.6647C10.3318 21.6667 9.7312 21.6818 9.35181 21.706C9.01367 21.7276 8.7085 21.7471 8.43652 21.7644L20.2888 21.7644L21.1235 22.0051L7.62549 22.0053C6.46802 22.3518 5.88916 22.5266 5.88916 22.5294C4.87061 22.7915 5.88916 22.9305 5.88916 22.9305C5.88916 22.9305 7.32104 23.2478 8.94629 23.6077L9.25293 23.6756C9.40723 23.7097 9.5625 23.7441 9.71753 23.7784L10.113 23.866C11.8867 24.2585 13.5457 24.6252 13.5461 24.6236C14.4058 24.8135 15.281 24.6507 15.4019 24.6265L15.4158 24.6236C15.4158 24.6236 17.0889 24.2567 18.8774 23.8639L19.2761 23.7763L19.5889 23.7076C21.4094 23.3076 23.1365 22.9274 23.1365 22.9247C23.8892 22.7374 22.9885 22.5427 22.9885 22.5427L20.2888 21.7644L21.4365 21.7644L20.4661 21.7047L20.3743 21.6994ZM15.2178 23.7645L15.4365 23.6645L14.6553 23.6645L14.4365 23.7645L15.2178 23.7645Z" clip-rule="evenodd" fill="url(#paint_linear_6_1062_1)" fill-opacity="0.000000" fill-rule="evenodd"/>
94+ <path id="形状备份 2" d="M20.3743 21.6994C19.9617 21.6773 19.3513 21.6644 18.7048 21.6644L11.1348 21.6644L10.9834 21.6647C10.3318 21.6667 9.7312 21.6818 9.35181 21.706C9.01367 21.7276 8.7085 21.7471 8.43652 21.7644L20.2888 21.7644L21.1235 22.0051L7.62549 22.0053C6.46802 22.3518 5.88916 22.5266 5.88916 22.5294C4.87061 22.7915 5.88916 22.9305 5.88916 22.9305C5.88916 22.9305 7.32104 23.2478 8.94629 23.6077L9.25293 23.6756C9.40723 23.7097 9.5625 23.7441 9.71753 23.7784L10.113 23.866C11.8867 24.2585 13.5457 24.6252 13.5461 24.6236C14.4058 24.8135 15.281 24.6507 15.4019 24.6265L15.4158 24.6236C15.4158 24.6236 17.0889 24.2567 18.8774 23.8639L19.2761 23.7763L19.5889 23.7076C21.4094 23.3076 23.1365 22.9274 23.1365 22.9247C23.8892 22.7374 22.9885 22.5427 22.9885 22.5427L20.2888 21.7644L21.4365 21.7644L20.4661 21.7047L20.3743 21.6994ZM15.2178 23.7645L15.4365 23.6645L14.6553 23.6645L14.4365 23.7645L15.2178 23.7645Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
95+ </g>
96+ <g opacity="0.347826">
97+ <path id="路径" d="M13.95 7.35L11.3 0L5.81 0L9.54 11C10.79 8.33 12.22 7.53 13.95 7.35Z" fill="url(#paint_linear_6_1068_0)" fill-opacity="0" fill-rule="evenodd"/>
98+ <path id="路径" d="M13.95 7.35L11.3 0L5.81 0L9.54 11C10.79 8.33 12.22 7.53 13.95 7.35Z" fill="url(#paint_linear_6_1068_1)" fill-opacity="0" fill-rule="evenodd"/>
99+ <path id="路径" d="M13.95 7.35L11.3 0L5.81 0L9.54 11C10.79 8.33 12.22 7.53 13.95 7.35Z" fill="#0A59F7" fill-opacity="1.000000" fill-rule="evenodd"/>
100+ </g>
101+ <g opacity="0.347826">
102+ <path id="路径" d="M16.66 7.35L18.99 0L24.48 0L21.08 11C19.82 8.33 18.39 7.53 16.66 7.35Z" fill="url(#paint_linear_6_1069_0)" fill-opacity="0" fill-rule="evenodd"/>
103+ <path id="路径" d="M16.66 7.35L18.99 0L24.48 0L21.08 11C19.82 8.33 18.39 7.53 16.66 7.35Z" fill="url(#paint_linear_6_1069_1)" fill-opacity="0" fill-rule="evenodd"/>
104+ <path id="路径" d="M16.66 7.35L18.99 0L24.48 0L21.08 11C19.82 8.33 18.39 7.53 16.66 7.35Z" fill="#0A59F7" fill-opacity="1.000000" fill-rule="evenodd"/>
105+ </g>
106+ <g opacity="0.841278" filter="url(#filter_6_1070_dd)">
107+ <path id="形状" d="M7.2937 13.6132C7.2937 9.35986 10.7693 5.85718 15.0081 5.85718C19.2466 5.85718 22.7222 9.27649 22.7222 13.5298C22.7222 17.783 19.2466 21.2858 15.0081 21.2858C10.7693 21.2858 7.2937 17.8665 7.2937 13.6132ZM17.0708 14.3429L18.6313 12.8077C18.6313 12.8077 18.7021 12.8077 18.7021 12.6682C18.7021 12.5984 18.6313 12.4588 18.5603 12.4588L16.3616 12.1099L16.2197 11.9703L15.2976 10.0165C15.2266 9.94672 15.2266 9.87695 15.1558 9.87695C15.0139 9.87695 14.9429 9.87695 14.8721 10.0165L13.95 11.9703C13.95 12.0402 13.8789 12.1099 13.8081 12.1099L11.6091 12.4588C11.5383 12.4588 11.5383 12.4588 11.4673 12.5286C11.3254 12.5984 11.3965 12.7379 11.4673 12.8077L13.0278 14.2731C13.0986 14.2731 13.0986 14.3429 13.0986 14.4127L12.6731 16.5759C12.6294 16.5759 12.6396 16.6025 12.6541 16.6393C12.6628 16.6621 12.6731 16.6888 12.6731 16.7154C12.7441 16.855 12.8149 16.9247 12.9568 16.855L14.9429 15.8781C14.9783 15.8431 15.0139 15.8257 15.0493 15.8257C15.0847 15.8257 15.1201 15.8431 15.1558 15.8781L17.1418 16.855L17.2837 16.855C17.3545 16.855 17.4255 16.7852 17.4255 16.6456L17 14.4824C17 14.4824 17 14.4127 17.0708 14.3429Z" clip-rule="evenodd" fill="url(#paint_linear_6_1070_0)" fill-opacity="0.000000" fill-rule="evenodd"/>
108+ <path id="形状" d="M7.2937 13.6132C7.2937 9.35986 10.7693 5.85718 15.0081 5.85718C19.2466 5.85718 22.7222 9.27649 22.7222 13.5298C22.7222 17.783 19.2466 21.2858 15.0081 21.2858C10.7693 21.2858 7.2937 17.8665 7.2937 13.6132ZM17.0708 14.3429L18.6313 12.8077C18.6313 12.8077 18.7021 12.8077 18.7021 12.6682C18.7021 12.5984 18.6313 12.4588 18.5603 12.4588L16.3616 12.1099L16.2197 11.9703L15.2976 10.0165C15.2266 9.94672 15.2266 9.87695 15.1558 9.87695C15.0139 9.87695 14.9429 9.87695 14.8721 10.0165L13.95 11.9703C13.95 12.0402 13.8789 12.1099 13.8081 12.1099L11.6091 12.4588C11.5383 12.4588 11.5383 12.4588 11.4673 12.5286C11.3254 12.5984 11.3965 12.7379 11.4673 12.8077L13.0278 14.2731C13.0986 14.2731 13.0986 14.3429 13.0986 14.4127L12.6731 16.5759C12.6294 16.5759 12.6396 16.6025 12.6541 16.6393C12.6628 16.6621 12.6731 16.6888 12.6731 16.7154C12.7441 16.855 12.8149 16.9247 12.9568 16.855L14.9429 15.8781C14.9783 15.8431 15.0139 15.8257 15.0493 15.8257C15.0847 15.8257 15.1201 15.8431 15.1558 15.8781L17.1418 16.855L17.2837 16.855C17.3545 16.855 17.4255 16.7852 17.4255 16.6456L17 14.4824C17 14.4824 17 14.4127 17.0708 14.3429Z" clip-rule="evenodd" fill="url(#paint_linear_6_1070_1)" fill-opacity="0.000000" fill-rule="evenodd"/>
109+ <path id="形状" d="M7.2937 13.6132C7.2937 9.35986 10.7693 5.85718 15.0081 5.85718C19.2466 5.85718 22.7222 9.27649 22.7222 13.5298C22.7222 17.783 19.2466 21.2858 15.0081 21.2858C10.7693 21.2858 7.2937 17.8665 7.2937 13.6132ZM17.0708 14.3429L18.6313 12.8077C18.6313 12.8077 18.7021 12.8077 18.7021 12.6682C18.7021 12.5984 18.6313 12.4588 18.5603 12.4588L16.3616 12.1099L16.2197 11.9703L15.2976 10.0165C15.2266 9.94672 15.2266 9.87695 15.1558 9.87695C15.0139 9.87695 14.9429 9.87695 14.8721 10.0165L13.95 11.9703C13.95 12.0402 13.8789 12.1099 13.8081 12.1099L11.6091 12.4588C11.5383 12.4588 11.5383 12.4588 11.4673 12.5286C11.3254 12.5984 11.3965 12.7379 11.4673 12.8077L13.0278 14.2731C13.0986 14.2731 13.0986 14.3429 13.0986 14.4127L12.6731 16.5759C12.6294 16.5759 12.6396 16.6025 12.6541 16.6393C12.6628 16.6621 12.6731 16.6888 12.6731 16.7154C12.7441 16.855 12.8149 16.9247 12.9568 16.855L14.9429 15.8781C14.9783 15.8431 15.0139 15.8257 15.0493 15.8257C15.0847 15.8257 15.1201 15.8431 15.1558 15.8781L17.1418 16.855L17.2837 16.855C17.3545 16.855 17.4255 16.7852 17.4255 16.6456L17 14.4824C17 14.4824 17 14.4127 17.0708 14.3429Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
110+ <path id="形状" d="M7.2937 13.6132C7.2937 9.35986 10.7693 5.85718 15.0081 5.85718C19.2466 5.85718 22.7222 9.27649 22.7222 13.5298C22.7222 17.783 19.2466 21.2858 15.0081 21.2858C10.7693 21.2858 7.2937 17.8665 7.2937 13.6132ZM17.0708 14.3429L18.6313 12.8077C18.6313 12.8077 18.7021 12.8077 18.7021 12.6682C18.7021 12.5984 18.6313 12.4588 18.5603 12.4588L16.3616 12.1099L16.2197 11.9703L15.2976 10.0165C15.2266 9.94672 15.2266 9.87695 15.1558 9.87695C15.0139 9.87695 14.9429 9.87695 14.8721 10.0165L13.95 11.9703C13.95 12.0402 13.8789 12.1099 13.8081 12.1099L11.6091 12.4588C11.5383 12.4588 11.5383 12.4588 11.4673 12.5286C11.3254 12.5984 11.3965 12.7379 11.4673 12.8077L13.0278 14.2731C13.0986 14.2731 13.0986 14.3429 13.0986 14.4127L12.6731 16.5759C12.6294 16.5759 12.6396 16.6025 12.6541 16.6393C12.6628 16.6621 12.6731 16.6888 12.6731 16.7154C12.7441 16.855 12.8149 16.9247 12.9568 16.855L14.9429 15.8781C14.9783 15.8431 15.0139 15.8257 15.0493 15.8257C15.0847 15.8257 15.1201 15.8431 15.1558 15.8781L17.1418 16.855L17.2837 16.855C17.3545 16.855 17.4255 16.7852 17.4255 16.6456L17 14.4824C17 14.4824 17 14.4127 17.0708 14.3429Z" clip-rule="evenodd" fill="#FFFFFF" fill-opacity="0.000000" fill-rule="evenodd"/>
111+ </g>
112+ <g opacity="0.603559" filter="url(#filter_6_1073_dd)">
113+ <path id="形状" d="M7.2937 13.6132C7.2937 9.35986 10.7693 5.85718 15.0081 5.85718C19.2466 5.85718 22.7222 9.27649 22.7222 13.5298C22.7222 17.783 19.2466 21.2858 15.0081 21.2858C10.7693 21.2858 7.2937 17.8665 7.2937 13.6132ZM17.0708 14.3429L18.6313 12.8077C18.6313 12.8077 18.7021 12.8077 18.7021 12.6682C18.7021 12.5984 18.6313 12.4588 18.5603 12.4588L16.3616 12.1099L16.2197 11.9703L15.2976 10.0165C15.2266 9.94672 15.2266 9.87695 15.1558 9.87695C15.0139 9.87695 14.9429 9.87695 14.8721 10.0165L13.95 11.9703C13.95 12.0402 13.8789 12.1099 13.8081 12.1099L11.6091 12.4588C11.5383 12.4588 11.5383 12.4588 11.4673 12.5286C11.3254 12.5984 11.3965 12.7379 11.4673 12.8077L13.0278 14.2731C13.0986 14.2731 13.0986 14.3429 13.0986 14.4127L12.6731 16.5759C12.6294 16.5759 12.6396 16.6025 12.6541 16.6393C12.6628 16.6621 12.6731 16.6888 12.6731 16.7154C12.7441 16.855 12.8149 16.9247 12.9568 16.855L14.9429 15.8781C14.9783 15.8431 15.0139 15.8257 15.0493 15.8257C15.0847 15.8257 15.1201 15.8431 15.1558 15.8781L17.1418 16.855L17.2837 16.855C17.3545 16.855 17.4255 16.7852 17.4255 16.6456L17 14.4824C17 14.4824 17 14.4127 17.0708 14.3429Z" clip-rule="evenodd" fill="url(#paint_linear_6_1073_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
114+ <path id="形状" d="M7.2937 13.6132C7.2937 9.35986 10.7693 5.85718 15.0081 5.85718C19.2466 5.85718 22.7222 9.27649 22.7222 13.5298C22.7222 17.783 19.2466 21.2858 15.0081 21.2858C10.7693 21.2858 7.2937 17.8665 7.2937 13.6132ZM17.0708 14.3429L18.6313 12.8077C18.6313 12.8077 18.7021 12.8077 18.7021 12.6682C18.7021 12.5984 18.6313 12.4588 18.5603 12.4588L16.3616 12.1099L16.2197 11.9703L15.2976 10.0165C15.2266 9.94672 15.2266 9.87695 15.1558 9.87695C15.0139 9.87695 14.9429 9.87695 14.8721 10.0165L13.95 11.9703C13.95 12.0402 13.8789 12.1099 13.8081 12.1099L11.6091 12.4588C11.5383 12.4588 11.5383 12.4588 11.4673 12.5286C11.3254 12.5984 11.3965 12.7379 11.4673 12.8077L13.0278 14.2731C13.0986 14.2731 13.0986 14.3429 13.0986 14.4127L12.6731 16.5759C12.6294 16.5759 12.6396 16.6025 12.6541 16.6393C12.6628 16.6621 12.6731 16.6888 12.6731 16.7154C12.7441 16.855 12.8149 16.9247 12.9568 16.855L14.9429 15.8781C14.9783 15.8431 15.0139 15.8257 15.0493 15.8257C15.0847 15.8257 15.1201 15.8431 15.1558 15.8781L17.1418 16.855L17.2837 16.855C17.3545 16.855 17.4255 16.7852 17.4255 16.6456L17 14.4824C17 14.4824 17 14.4127 17.0708 14.3429Z" clip-rule="evenodd" fill="url(#paint_linear_6_1073_1)" fill-opacity="0.950000" fill-rule="evenodd"/>
115+ <path id="形状" d="M7.2937 13.6132C7.2937 9.35986 10.7693 5.85718 15.0081 5.85718C19.2466 5.85718 22.7222 9.27649 22.7222 13.5298C22.7222 17.783 19.2466 21.2858 15.0081 21.2858C10.7693 21.2858 7.2937 17.8665 7.2937 13.6132ZM17.0708 14.3429L18.6313 12.8077C18.6313 12.8077 18.7021 12.8077 18.7021 12.6682C18.7021 12.5984 18.6313 12.4588 18.5603 12.4588L16.3616 12.1099L16.2197 11.9703L15.2976 10.0165C15.2266 9.94672 15.2266 9.87695 15.1558 9.87695C15.0139 9.87695 14.9429 9.87695 14.8721 10.0165L13.95 11.9703C13.95 12.0402 13.8789 12.1099 13.8081 12.1099L11.6091 12.4588C11.5383 12.4588 11.5383 12.4588 11.4673 12.5286C11.3254 12.5984 11.3965 12.7379 11.4673 12.8077L13.0278 14.2731C13.0986 14.2731 13.0986 14.3429 13.0986 14.4127L12.6731 16.5759C12.6294 16.5759 12.6396 16.6025 12.6541 16.6393C12.6628 16.6621 12.6731 16.6888 12.6731 16.7154C12.7441 16.855 12.8149 16.9247 12.9568 16.855L14.9429 15.8781C14.9783 15.8431 15.0139 15.8257 15.0493 15.8257C15.0847 15.8257 15.1201 15.8431 15.1558 15.8781L17.1418 16.855L17.2837 16.855C17.3545 16.855 17.4255 16.7852 17.4255 16.6456L17 14.4824C17 14.4824 17 14.4127 17.0708 14.3429Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
116+ </g>
117+</svg>
@@ -0,0 +1,40 @@
1+<svg width="26.873047" height="29.972595" viewBox="0 0 26.873 29.9726" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <filter id="filter_6_1117_dd" x="0.000000" y="16.049377" width="26.873047" height="13.923218" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9+ <feGaussianBlur stdDeviation="1.81219" result="effect_layerBlur_1"/>
10+ </filter>
11+ <linearGradient x1="21.436523" y1="22.472996" x2="5.436523" y2="22.472996" id="paint_linear_6_1117_0" gradientUnits="userSpaceOnUse">
12+ <stop stop-color="#0A59F7"/>
13+ <stop offset="1.000000" stop-color="#0A59F7"/>
14+ </linearGradient>
15+ <linearGradient x1="20.209732" y1="22.026390" x2="11.813107" y2="24.151449" id="paint_linear_6_1117_1" gradientUnits="userSpaceOnUse">
16+ <stop stop-color="#0CA78E"/>
17+ <stop offset="0.392266" stop-color="#30D9C9"/>
18+ <stop offset="1.000000" stop-color="#1BC29C"/>
19+ </linearGradient>
20+ <linearGradient x1="13.436523" y1="22.680794" x2="13.436523" y2="24.536011" id="paint_linear_6_1117_2" gradientUnits="userSpaceOnUse">
21+ <stop stop-color="#FFFFFF" stop-opacity="0.000000"/>
22+ <stop offset="1.000000" stop-color="#FFFFFF" stop-opacity="0.458824"/>
23+ </linearGradient>
24+ <linearGradient x1="21.435219" y1="3.725806" x2="11.436646" y2="18.376343" id="paint_linear_6_1122_0" gradientUnits="userSpaceOnUse">
25+ <stop stop-color="#0CA78E"/>
26+ <stop offset="0.392266" stop-color="#30D9C9"/>
27+ <stop offset="1.000000" stop-color="#1BC29C"/>
28+ </linearGradient>
29+ </defs>
30+ <g opacity="0.643511" filter="url(#filter_6_1117_dd)">
31+ <path id="形状备份 2" d="M18.4561 21.5209C18.075 21.4988 17.5117 21.486 16.915 21.486L9.92725 21.486L9.7876 21.4862C9.18604 21.4882 8.63159 21.5034 8.28149 21.5275C7.96924 21.5491 7.6875 21.5686 7.43652 21.5859L18.6387 21.5859L19.3806 21.8266L7.38232 21.8268C6.35327 22.1733 5.83887 22.3481 5.83887 22.351C4.93359 22.613 5.83887 22.752 5.83887 22.752C5.83887 22.752 7.11157 23.0693 8.5564 23.4292L8.82886 23.4971C8.96606 23.5312 9.104 23.5656 9.24194 23.6L9.59351 23.6875C11.1699 24.08 12.6445 24.4468 12.645 24.4451C13.4092 24.635 14.1873 24.4722 14.2944 24.448L14.3071 24.4451C14.3071 24.4451 15.7942 24.0782 17.384 23.6854L17.7385 23.5978L18.0164 23.5291C19.6345 23.1292 21.1699 22.749 21.1699 22.7462C21.8389 22.559 21.0383 22.3642 21.0383 22.3642L18.6387 21.5859L19.4365 21.5859L18.5405 21.5262L18.4561 21.5209ZM13.2178 23.586L13.4365 23.486L12.6553 23.486L12.4365 23.586L13.2178 23.586Z" clip-rule="evenodd" fill="url(#paint_linear_6_1117_0)" fill-opacity="0.000000" fill-rule="evenodd"/>
32+ <path id="形状备份 2" d="M18.4561 21.5209C18.075 21.4988 17.5117 21.486 16.915 21.486L9.92725 21.486L9.7876 21.4862C9.18604 21.4882 8.63159 21.5034 8.28149 21.5275C7.96924 21.5491 7.6875 21.5686 7.43652 21.5859L18.6387 21.5859L19.3806 21.8266L7.38232 21.8268C6.35327 22.1733 5.83887 22.3481 5.83887 22.351C4.93359 22.613 5.83887 22.752 5.83887 22.752C5.83887 22.752 7.11157 23.0693 8.5564 23.4292L8.82886 23.4971C8.96606 23.5312 9.104 23.5656 9.24194 23.6L9.59351 23.6875C11.1699 24.08 12.6445 24.4468 12.645 24.4451C13.4092 24.635 14.1873 24.4722 14.2944 24.448L14.3071 24.4451C14.3071 24.4451 15.7942 24.0782 17.384 23.6854L17.7385 23.5978L18.0164 23.5291C19.6345 23.1292 21.1699 22.749 21.1699 22.7462C21.8389 22.559 21.0383 22.3642 21.0383 22.3642L18.6387 21.5859L19.4365 21.5859L18.5405 21.5262L18.4561 21.5209ZM13.2178 23.586L13.4365 23.486L12.6553 23.486L12.4365 23.586L13.2178 23.586Z" clip-rule="evenodd" fill="url(#paint_linear_6_1117_1)" fill-opacity="1.000000" fill-rule="evenodd"/>
33+ <path id="形状备份 2" d="M18.4561 21.5209C18.075 21.4988 17.5117 21.486 16.915 21.486L9.92725 21.486L9.7876 21.4862C9.18604 21.4882 8.63159 21.5034 8.28149 21.5275C7.96924 21.5491 7.6875 21.5686 7.43652 21.5859L18.6387 21.5859L19.3806 21.8266L7.38232 21.8268C6.35327 22.1733 5.83887 22.3481 5.83887 22.351C4.93359 22.613 5.83887 22.752 5.83887 22.752C5.83887 22.752 7.11157 23.0693 8.5564 23.4292L8.82886 23.4971C8.96606 23.5312 9.104 23.5656 9.24194 23.6L9.59351 23.6875C11.1699 24.08 12.6445 24.4468 12.645 24.4451C13.4092 24.635 14.1873 24.4722 14.2944 24.448L14.3071 24.4451C14.3071 24.4451 15.7942 24.0782 17.384 23.6854L17.7385 23.5978L18.0164 23.5291C19.6345 23.1292 21.1699 22.749 21.1699 22.7462C21.8389 22.559 21.0383 22.3642 21.0383 22.3642L18.6387 21.5859L19.4365 21.5859L18.5405 21.5262L18.4561 21.5209ZM13.2178 23.586L13.4365 23.486L12.6553 23.486L12.4365 23.586L13.2178 23.586Z" clip-rule="evenodd" fill="url(#paint_linear_6_1117_2)" fill-opacity="0.000000" fill-rule="evenodd"/>
34+ <path id="形状备份 2" d="M18.4561 21.5209C18.075 21.4988 17.5117 21.486 16.915 21.486L9.92725 21.486L9.7876 21.4862C9.18604 21.4882 8.63159 21.5034 8.28149 21.5275C7.96924 21.5491 7.6875 21.5686 7.43652 21.5859L18.6387 21.5859L19.3806 21.8266L7.38232 21.8268C6.35327 22.1733 5.83887 22.3481 5.83887 22.351C4.93359 22.613 5.83887 22.752 5.83887 22.752C5.83887 22.752 7.11157 23.0693 8.5564 23.4292L8.82886 23.4971C8.96606 23.5312 9.104 23.5656 9.24194 23.6L9.59351 23.6875C11.1699 24.08 12.6445 24.4468 12.645 24.4451C13.4092 24.635 14.1873 24.4722 14.2944 24.448L14.3071 24.4451C14.3071 24.4451 15.7942 24.0782 17.384 23.6854L17.7385 23.5978L18.0164 23.5291C19.6345 23.1292 21.1699 22.749 21.1699 22.7462C21.8389 22.559 21.0383 22.3642 21.0383 22.3642L18.6387 21.5859L19.4365 21.5859L18.5405 21.5262L18.4561 21.5209ZM13.2178 23.586L13.4365 23.486L12.6553 23.486L12.4365 23.586L13.2178 23.586Z" clip-rule="evenodd" fill="#6EA7ED" fill-opacity="0.000000" fill-rule="evenodd"/>
35+ </g>
36+ <g opacity="0.600000">
37+ <path id="形状" d="M14.9412 0.421082L21.3247 4.10651C22.2971 4.66797 22.896 5.70551 22.896 6.82831L22.896 14.1993C22.896 15.3221 22.2971 16.3596 21.3247 16.9211L14.9412 20.6065C13.9688 21.168 12.7708 21.168 11.7983 20.6065L5.41504 16.9211C4.44263 16.3596 3.84351 15.3221 3.84351 14.1993L3.84351 6.82831C3.84351 5.70551 4.44263 4.66797 5.41504 4.10651L11.7983 0.421082C12.7708 -0.140381 13.9688 -0.140381 14.9412 0.421082ZM12.9001 5.17981C13.0281 4.92041 13.3423 4.8139 13.6016 4.94196C13.7048 4.99292 13.7886 5.07654 13.8396 5.17981L15.217 7.97119L18.2976 8.41876C18.5837 8.46039 18.7822 8.7262 18.7405 9.01245C18.7241 9.12646 18.6704 9.23181 18.5879 9.31226L16.3589 11.485L16.885 14.553C16.9338 14.8381 16.7424 15.1089 16.4573 15.1578C16.3438 15.1772 16.2271 15.1588 16.125 15.1052L13.3699 13.6567L10.6145 15.1052C10.3584 15.2397 10.0417 15.1414 9.90723 14.8853C9.85352 14.7833 9.83496 14.6665 9.85449 14.553L10.3809 11.485L8.15186 9.31226C7.94458 9.11029 7.94043 8.77869 8.14233 8.57153C8.22266 8.48901 8.32812 8.43536 8.44214 8.41876L11.5225 7.97119L12.9001 5.17981Z" clip-rule="evenodd" fill="#44D7B6" fill-opacity="0.000000" fill-rule="evenodd"/>
38+ <path id="形状" d="M14.9412 0.421082L21.3247 4.10651C22.2971 4.66797 22.896 5.70551 22.896 6.82831L22.896 14.1993C22.896 15.3221 22.2971 16.3596 21.3247 16.9211L14.9412 20.6065C13.9688 21.168 12.7708 21.168 11.7983 20.6065L5.41504 16.9211C4.44263 16.3596 3.84351 15.3221 3.84351 14.1993L3.84351 6.82831C3.84351 5.70551 4.44263 4.66797 5.41504 4.10651L11.7983 0.421082C12.7708 -0.140381 13.9688 -0.140381 14.9412 0.421082ZM12.9001 5.17981C13.0281 4.92041 13.3423 4.8139 13.6016 4.94196C13.7048 4.99292 13.7886 5.07654 13.8396 5.17981L15.217 7.97119L18.2976 8.41876C18.5837 8.46039 18.7822 8.7262 18.7405 9.01245C18.7241 9.12646 18.6704 9.23181 18.5879 9.31226L16.3589 11.485L16.885 14.553C16.9338 14.8381 16.7424 15.1089 16.4573 15.1578C16.3438 15.1772 16.2271 15.1588 16.125 15.1052L13.3699 13.6567L10.6145 15.1052C10.3584 15.2397 10.0417 15.1414 9.90723 14.8853C9.85352 14.7833 9.83496 14.6665 9.85449 14.553L10.3809 11.485L8.15186 9.31226C7.94458 9.11029 7.94043 8.77869 8.14233 8.57153C8.22266 8.48901 8.32812 8.43536 8.44214 8.41876L11.5225 7.97119L12.9001 5.17981Z" clip-rule="evenodd" fill="url(#paint_linear_6_1122_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
39+ </g>
40+</svg>
@@ -0,0 +1,7 @@
1+{
2+ "layered-image":
3+ {
4+ "background" : "$media:background",
5+ "foreground" : "$media:foreground"
6+ }
7+}
@@ -0,0 +1,16 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip31_3311">
7+ <rect id="gearshape" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip31_3311)">
11+ <g opacity="0.000000">
12+ <rect id="rect" width="24.000000" height="24.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <path id="path" d="M12.02 9C12.56 9 13.06 9.13 13.52 9.4C13.98 9.68 14.33 10.05 14.6 10.51C14.86 10.97 15 11.48 15 12.02C15 12.56 14.86 13.06 14.6 13.52C14.33 13.98 13.98 14.34 13.52 14.6C13.06 14.86 12.56 15 12 15C11.45 15 10.95 14.86 10.49 14.59C10.02 14.31 9.66 13.95 9.39 13.49C9.13 13.02 9 12.52 9 11.98C9 11.43 9.13 10.93 9.41 10.48C9.68 10.02 10.05 9.65 10.51 9.39C10.97 9.13 11.48 9 12.02 9ZM12.05 7.51C11.23 7.51 10.47 7.7 9.78 8.1C9.08 8.51 8.53 9.04 8.12 9.72C7.71 10.41 7.51 11.16 7.51 11.98C7.51 12.79 7.7 13.54 8.1 14.24C8.51 14.94 9.05 15.49 9.74 15.9C10.43 16.3 11.18 16.51 12 16.51C12.81 16.51 13.56 16.31 14.26 15.91C14.94 15.51 15.49 14.96 15.89 14.28C16.3 13.59 16.51 12.84 16.51 12.02C16.51 11.2 16.31 10.45 15.91 9.76C15.51 9.08 14.97 8.53 14.29 8.12C13.6 7.71 12.86 7.51 12.05 7.51ZM13.56 22.66C13.86 22.66 14.14 22.57 14.39 22.4C14.65 22.23 14.84 22.01 14.98 21.74L15.79 19.85L15.98 19.75C16.27 19.57 16.56 19.4 16.85 19.21L18.91 19.49C19.23 19.52 19.52 19.46 19.8 19.33C20.07 19.19 20.29 18.99 20.45 18.71L22.03 15.98C22.18 15.71 22.26 15.42 22.24 15.12C22.21 14.81 22.11 14.53 21.93 14.28L20.68 12.6L20.68 11.42L21.93 9.73C22.12 9.48 22.23 9.2 22.25 8.89C22.26 8.59 22.18 8.31 22.03 8.03L20.45 5.27C20.3 5.02 20.09 4.82 19.82 4.67C19.55 4.53 19.26 4.47 18.93 4.51L16.85 4.77C16.56 4.56 16.23 4.37 15.85 4.2L15.02 2.22C14.89 1.95 14.7 1.73 14.45 1.56C14.18 1.38 13.91 1.29 13.6 1.29L10.43 1.29C10.13 1.29 9.85 1.38 9.58 1.56C9.32 1.73 9.12 1.95 9 2.22L8.16 4.2L7.91 4.33C7.79 4.4 7.66 4.47 7.55 4.53C7.43 4.59 7.31 4.66 7.2 4.75L5.08 4.51C4.78 4.46 4.49 4.5 4.2 4.64C3.93 4.77 3.7 4.98 3.55 5.26L1.97 8.01C1.81 8.27 1.74 8.55 1.76 8.87C1.78 9.18 1.88 9.46 2.06 9.71L3.33 11.42L3.33 12.53L2.06 14.23C1.87 14.49 1.77 14.77 1.75 15.07C1.73 15.37 1.81 15.66 1.97 15.94L3.53 18.67C3.68 18.94 3.9 19.14 4.18 19.28C4.44 19.42 4.74 19.47 5.06 19.44L7.12 19.2C7.57 19.48 7.91 19.68 8.14 19.79L8.97 21.72C9.08 22 9.27 22.23 9.53 22.4C9.78 22.57 10.07 22.66 10.39 22.66L13.56 22.66ZM7.08 17.66L4.8 17.9L3.22 15.1L4.58 13.27C4.72 13.05 4.8 12.82 4.8 12.6C4.78 12.4 4.78 12.19 4.78 11.95C4.78 11.71 4.78 11.49 4.8 11.3C4.8 11.04 4.72 10.81 4.58 10.61L3.22 8.73L4.85 5.95L7.14 6.23C7.29 6.25 7.43 6.24 7.55 6.21C7.66 6.18 7.77 6.13 7.87 6.07C8.15 5.86 8.51 5.66 8.93 5.46C9.16 5.34 9.33 5.16 9.43 4.94L10.39 2.77L13.6 2.81L14.52 4.94C14.6 5.15 14.76 5.33 15.02 5.46C15.37 5.63 15.73 5.83 16.1 6.09C16.33 6.26 16.58 6.31 16.82 6.26L19.12 6.01L20.71 8.83L19.37 10.63C19.18 10.82 19.11 11.05 19.14 11.33C19.16 11.53 19.18 11.76 19.18 12.01C19.18 12.25 19.16 12.47 19.14 12.67C19.13 12.93 19.2 13.16 19.37 13.37L20.71 15.19L19.08 17.98L16.85 17.7C16.72 17.69 16.59 17.7 16.45 17.71C16.33 17.74 16.22 17.79 16.12 17.87C15.77 18.13 15.39 18.35 15 18.53C14.88 18.59 14.78 18.66 14.68 18.76C14.58 18.84 14.51 18.94 14.47 19.06L13.56 21.14L10.33 21.12L9.45 19.03C9.34 18.79 9.17 18.61 8.95 18.5C8.62 18.36 8.26 18.15 7.85 17.87C7.66 17.75 7.47 17.69 7.25 17.69L7.08 17.66Z" fill="#000000" fill-opacity="0.901961" fill-rule="nonzero"/>
15+ </g>
16+</svg>
@@ -0,0 +1,16 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip18_3265">
7+ <rect id="dot_grid_2x2" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip18_3265)">
11+ <g opacity="0.000000">
12+ <rect id="rect" width="24.000000" height="24.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <path id="path" d="M17.76 4.75C17.26 4.75 16.85 4.91 16.51 5.26C16.17 5.59 16.01 6 16.01 6.5C16.01 6.97 16.17 7.39 16.51 7.73C16.85 8.08 17.26 8.26 17.76 8.26C18.24 8.26 18.65 8.08 19 7.73C19.34 7.39 19.51 6.97 19.51 6.5C19.51 6 19.34 5.59 19 5.26C18.65 4.91 18.24 4.75 17.76 4.75ZM6.23 4.75C5.76 4.75 5.35 4.91 5.02 5.26C4.67 5.59 4.51 6 4.51 6.5C4.51 6.97 4.67 7.39 5.02 7.73C5.35 8.08 5.76 8.26 6.23 8.26C6.71 8.26 7.13 8.08 7.47 7.73C7.82 7.39 7.98 6.97 7.98 6.5C7.98 6 7.82 5.59 7.47 5.26C7.13 4.91 6.71 4.75 6.23 4.75ZM17.76 15.74C17.26 15.74 16.85 15.91 16.51 16.26C16.17 16.6 16.01 17.02 16.01 17.5C16.01 17.98 16.17 18.39 16.51 18.73C16.85 19.07 17.26 19.25 17.76 19.25C18.24 19.25 18.65 19.07 19 18.73C19.34 18.39 19.51 17.98 19.51 17.5C19.51 17.02 19.34 16.6 19 16.26C18.65 15.91 18.24 15.74 17.76 15.74ZM6.23 15.74C5.76 15.74 5.35 15.91 5.02 16.26C4.67 16.6 4.51 17.02 4.51 17.5C4.51 17.98 4.67 18.39 5.02 18.73C5.35 19.07 5.76 19.25 6.23 19.25C6.71 19.25 7.13 19.07 7.47 18.73C7.82 18.39 7.98 17.98 7.98 17.5C7.98 17.02 7.82 16.6 7.47 16.26C7.13 15.91 6.71 15.74 6.23 15.74Z" fill="#000000" fill-opacity="0.901961" fill-rule="nonzero"/>
15+ </g>
16+</svg>
@@ -0,0 +1,13 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <mask id="mask44_1276" mask-type="alpha" maskUnits="userSpaceOnUse" x="2.500000" y="2.500000" width="19.000000" height="19.250000">
7+ <path id="形状结合" d="M17.25 7.75C17.25 10.6469 14.897 13 12 13C7.58179 13 4 16.5817 4 21C4 21.4142 3.66431 21.75 3.25 21.75C2.83569 21.75 2.5 21.4142 2.5 21L2.5 20.9999C2.5 17.2323 4.69312 13.9771 7.87256 12.441L7.87256 12.441C8.21387 12.2761 8.56665 12.131 8.9292 12.0072C7.60962 11.0531 6.75 9.50085 6.75 7.75C6.75 4.85315 9.10303 2.5 12 2.5C14.897 2.5 17.25 4.85315 17.25 7.75ZM12 11.5C14.0691 11.5 15.75 9.81921 15.75 7.75C15.75 5.68079 14.0691 4 12 4C9.93091 4 8.25 5.68079 8.25 7.75C8.25 9.81921 9.93091 11.5 12 11.5ZM20 20.9999C20 17.4928 17.7432 14.5127 14.6025 13.4327C15.1597 13.1769 15.6729 12.8414 16.1274 12.441C19.3069 13.9771 21.5 17.2323 21.5 20.9999C21.5 21.4141 21.1643 21.7499 20.75 21.7499C20.3357 21.7499 20 21.4141 20 20.9999Z" clip-rule="evenodd" fill="#000000" fill-opacity="0.901961" fill-rule="evenodd"/>
8+ </mask>
9+ <path id="形状结合" d="M17.25 7.75C17.25 10.6469 14.897 13 12 13C7.58179 13 4 16.5817 4 21C4 21.4142 3.66431 21.75 3.25 21.75C2.83569 21.75 2.5 21.4142 2.5 21L2.5 20.9999C2.5 17.2323 4.69312 13.9771 7.87256 12.441L7.87256 12.441C8.21387 12.2761 8.56665 12.131 8.9292 12.0072C7.60962 11.0531 6.75 9.50085 6.75 7.75C6.75 4.85315 9.10303 2.5 12 2.5C14.897 2.5 17.25 4.85315 17.25 7.75ZM12 11.5C14.0691 11.5 15.75 9.81921 15.75 7.75C15.75 5.68079 14.0691 4 12 4C9.93091 4 8.25 5.68079 8.25 7.75C8.25 9.81921 9.93091 11.5 12 11.5ZM20 20.9999C20 17.4928 17.7432 14.5127 14.6025 13.4327C15.1597 13.1769 15.6729 12.8414 16.1274 12.441C19.3069 13.9771 21.5 17.2323 21.5 20.9999C21.5 21.4141 21.1643 21.7499 20.75 21.7499C20.3357 21.7499 20 21.4141 20 20.9999Z" clip-rule="evenodd" fill="#000000" fill-opacity="0.901961" fill-rule="evenodd"/>
10+ <g mask="url(#mask44_1276)">
11+ <rect id="color/#000000" width="24.000000" height="24.000000" fill="#000000" fill-opacity="0.600000"/>
12+ </g>
13+</svg>
@@ -0,0 +1 @@
1+<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="M480-301q99-80 149.5-154T680-594q0-90-56-148t-144-58q-88 0-144 58t-56 148q0 65 50.5 139T480-301Zm0 101Q339-304 269.5-402T200-594q0-125 78-205.5T480-880q124 0 202 80.5T760-594q0 94-69.5 192T480-200Zm0-320q33 0 56.5-23.5T560-600q0-33-23.5-56.5T480-680q-33 0-56.5 23.5T400-600q0 33 23.5 56.5T480-520ZM200-80v-80h560v80H200Zm280-520Z"/></svg>
@@ -0,0 +1,7 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="path-1" d="M3.44995 4.99994L20.55 4.99994C21.0747 4.99994 21.5 5.42529 21.5 5.94995C21.5 6.47461 21.0747 6.89996 20.55 6.89996L3.44995 6.89996C2.92529 6.89996 2.5 6.47461 2.5 5.94995C2.5 5.42529 2.92529 4.99994 3.44995 4.99994ZM3.44995 11.175L20.55 11.175C21.0747 11.175 21.5 11.6003 21.5 12.125C21.5 12.6497 21.0747 13.075 20.55 13.075L3.44995 13.075C2.92529 13.075 2.5 12.6497 2.5 12.125C2.5 11.6003 2.92529 11.175 3.44995 11.175ZM20.55 17.35L3.44995 17.35C2.92529 17.35 2.5 17.7754 2.5 18.3C2.5 18.8247 2.92529 19.2501 3.44995 19.2501L20.55 19.2501C21.0747 19.2501 21.5 18.8247 21.5 18.3C21.5 17.7754 21.0747 17.35 20.55 17.35Z" clip-rule="evenodd" fill="#000000" fill-opacity="0.901961" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,9 @@
1+<svg width="16.000000" height="16.000000" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <g opacity="0.600000">
7+ <path id="path-1" d="M6.83325 2.00006C6.83325 1.63184 6.53467 1.33337 6.1665 1.33337L4 1.33337L3.86694 1.33661C2.45581 1.40601 1.33325 2.5719 1.33325 4.00006L1.33325 6.16669L1.33765 6.24445C1.37622 6.57599 1.65796 6.83337 2 6.83337C2.36816 6.83337 2.6665 6.53491 2.6665 6.16669L2.6665 4.00006L2.67017 3.90051C2.72119 3.21063 3.29712 2.66669 4 2.66669L6.1665 2.66669L6.24438 2.66223C6.57593 2.62372 6.83325 2.34192 6.83325 2.00006ZM12 1.33337C13.4282 1.33337 14.5942 2.45599 14.6636 3.86694L14.6667 4.00006L14.6667 6.16669C14.6667 6.53491 14.3682 6.83337 14 6.83337C13.6582 6.83337 13.3765 6.57599 13.3379 6.24445L13.3335 6.16669L13.3335 4.00006C13.3335 3.29712 12.7896 2.72125 12.0996 2.67035L12 2.66669L9.8335 2.66669C9.46533 2.66669 9.16675 2.36823 9.16675 2.00006C9.16675 1.65814 9.42407 1.37634 9.75562 1.33783L9.8335 1.33337L12 1.33337ZM4 7.33331L12 7.33331C12.3682 7.33331 12.6667 7.63184 12.6667 8C12.6667 8.36816 12.3682 8.66669 12 8.66669L4 8.66669C3.63184 8.66669 3.33325 8.36816 3.33325 8C3.33325 7.63184 3.63184 7.33331 4 7.33331ZM2.66211 9.75555C2.62354 9.42401 2.3418 9.16663 2 9.16663C1.63184 9.16663 1.33325 9.46509 1.33325 9.83331L1.33325 11.9999L1.33643 12.1331C1.40576 13.544 2.57178 14.6666 4 14.6666L6.1665 14.6666L6.24438 14.6621C6.57593 14.6237 6.83325 14.3419 6.83325 13.9999C6.83325 13.6318 6.53467 13.3333 6.1665 13.3333L4 13.3333L3.90039 13.3297C3.21045 13.2787 2.6665 12.7029 2.6665 11.9999L2.6665 9.83331L2.66211 9.75555ZM14 9.16663C14.342 9.16663 14.6238 9.42401 14.6624 9.75555L14.6667 9.83331L14.6667 11.9999C14.6667 13.4281 13.5442 14.594 12.1331 14.6634L12 14.6666L9.8335 14.6666C9.46533 14.6666 9.16675 14.3682 9.16675 13.9999C9.16675 13.6581 9.42407 13.3763 9.75562 13.3378L9.8335 13.3333L12 13.3333C12.7029 13.3333 13.2788 12.7894 13.3298 12.0995L13.3335 11.9999L13.3335 9.83331C13.3335 9.46509 13.6318 9.16663 14 9.16663Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
8+ </g>
9+</svg>
@@ -0,0 +1,8 @@
1+<svg width="12.737305" height="12.820801" viewBox="0 0 12.7373 12.8208" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="形状" d="M5.58325 0C8.66699 0 11.1667 2.49976 11.1667 5.58331C11.1667 6.87195 10.7302 8.05853 9.99683 9.00342L9.85352 9.1806C9.78369 9.26355 9.71118 9.34442 9.63672 9.42316L9.5459 9.51672L9.42603 9.63397L9.33691 9.71667L9.11108 9.91113L8.98706 10.0096C8.04492 10.7352 6.8645 11.1667 5.58325 11.1667C2.49976 11.1667 0 8.66693 0 5.58331C0 2.49976 2.49976 0 5.58325 0ZM1.33325 5.58331C1.33325 3.23615 3.23608 1.33331 5.58325 1.33331C7.93066 1.33331 9.83325 3.23615 9.83325 5.58331C9.83325 7.93054 7.93066 9.83331 5.58325 9.83331C3.23608 9.83331 1.33325 7.93054 1.33325 5.58331ZM12.5422 11.6827L10.4116 9.55237C10.1284 9.89636 9.80933 10.2095 9.45996 10.4861L11.5994 12.6255C11.8596 12.8859 12.2817 12.8859 12.5422 12.6255C12.8025 12.3652 12.8025 11.9431 12.5422 11.6827Z" clip-rule="evenodd" fill="#000000" fill-opacity="1.000000" fill-rule="evenodd"/>
7+</svg>
8+ 
@@ -0,0 +1,17 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip23_2217">
7+ <rect id="service_fill" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip23_2217)">
11+ <g opacity="0.000000">
12+ <rect id="rect" width="24.000000" height="24.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <path id="path" d="M19.82 9.02C19.67 7.71 19.24 6.52 18.5 5.44C17.76 4.37 16.83 3.53 15.7 2.92C14.56 2.3 13.32 1.98 12 1.98C10.68 1.98 9.46 2.28 8.34 2.88C7.21 3.47 6.28 4.29 5.56 5.32C4.82 6.37 4.37 7.52 4.19 8.78C4.16 8.97 4.14 9.14 4.14 9.29L4.14 11.35L3.42 11.35C3.17 11.35 2.95 11.43 2.77 11.62C2.59 11.79 2.5 12.01 2.5 12.29L2.5 14.76C2.5 15.01 2.59 15.23 2.77 15.41C2.95 15.58 3.17 15.67 3.42 15.67L5.39 15.67C5.65 15.67 5.87 15.58 6.06 15.41C6.24 15.23 6.34 15.01 6.34 14.76L6.34 9.38C6.34 9.12 6.36 8.85 6.4 8.56C6.6 7.77 6.94 7.05 7.43 6.41C7.93 5.77 8.53 5.25 9.23 4.87C9.62 5.91 10.2 6.83 10.96 7.64C11.72 8.45 12.61 9.08 13.62 9.54C14.65 9.99 15.74 10.22 16.89 10.22C17.06 10.22 17.31 10.2 17.65 10.17L17.65 12.17L17.63 15.05C17.63 15.25 17.68 15.4 17.77 15.5C17.85 15.6 17.99 15.65 18.16 15.65L20.57 15.65C20.82 15.65 21.04 15.55 21.23 15.38C21.4 15.2 21.5 14.99 21.5 14.74L21.5 12.26C21.5 12 21.4 11.78 21.23 11.6C21.04 11.42 20.82 11.33 20.57 11.33L19.82 11.35L19.82 9.02ZM13.73 15.02C13.5 15.24 13.24 15.42 12.93 15.54C12.63 15.66 12.32 15.72 12 15.72C11.67 15.72 11.37 15.66 11.08 15.54C10.78 15.42 10.51 15.24 10.27 15.02C10.17 14.91 10.05 14.86 9.89 14.87C9.74 14.87 9.62 14.93 9.53 15.05C9.41 15.16 9.36 15.29 9.36 15.42C9.36 15.57 9.41 15.7 9.53 15.81C9.86 16.14 10.24 16.38 10.67 16.54C11.11 16.71 11.55 16.79 12 16.79C12.46 16.79 12.9 16.71 13.33 16.54C13.75 16.38 14.13 16.14 14.47 15.81C14.58 15.7 14.64 15.57 14.64 15.42C14.65 15.29 14.6 15.16 14.5 15.05C14.38 14.93 14.25 14.87 14.11 14.87C13.97 14.86 13.84 14.91 13.73 15.02Z" fill="#000000" fill-opacity="0.898039" fill-rule="nonzero"/>
15+ <path id="path" d="M18.16 15.65C17.99 15.65 17.85 15.6 17.77 15.5C17.68 15.4 17.64 15.25 17.64 15.05C17.46 16.07 17.08 16.98 16.5 17.79C15.91 18.6 15.19 19.23 14.35 19.68C13.5 20.12 12.59 20.35 11.62 20.35C11.36 20.37 11.15 20.46 11 20.62C10.85 20.78 10.78 20.96 10.78 21.17C10.78 21.39 10.86 21.58 11.02 21.74C11.17 21.9 11.37 21.98 11.59 21.98C12.89 21.95 14.08 21.66 15.15 21.1C16.24 20.54 17.13 19.78 17.83 18.83C18.53 17.87 18.99 16.81 19.2 15.65L18.16 15.65Z" fill="#000000" fill-opacity="0.898039" fill-rule="nonzero"/>
16+ </g>
17+</svg>
@@ -0,0 +1 @@
1+<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80H370Zm70-80h79l14-106q31-8 57.5-23.5T639-327l99 41 39-68-86-65q5-14 7-29.5t2-31.5q0-16-2-31.5t-7-29.5l86-65-39-68-99 42q-22-23-48.5-38.5T533-694l-13-106h-79l-14 106q-31 8-57.5 23.5T321-633l-99-41-39 68 86 64q-5 15-7 30t-2 32q0 16 2 31t7 30l-86 65 39 68 99-42q22 23 48.5 38.5T427-266l13 106Zm42-180q58 0 99-41t41-99q0-58-41-99t-99-41q-59 0-99.5 41T342-480q0 58 40.5 99t99.5 41Zm-2-140Z"/></svg>
@@ -0,0 +1,17 @@
1+<svg width="24.000000" height="24.000000" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs>
6+ <clipPath id="clip31_1617">
7+ <rect id="share" width="24.000000" height="24.000000" fill="white" fill-opacity="0"/>
8+ </clipPath>
9+ </defs>
10+ <g clip-path="url(#clip31_1617)">
11+ <g opacity="0.000000">
12+ <rect id="rect" width="24.000000" height="24.000000" fill="#000000" fill-opacity="1.000000"/>
13+ </g>
14+ <path id="path" d="M12 22.22C13.76 22.22 15.4 21.79 16.94 20.93C18.48 20.08 19.72 18.92 20.68 17.43C21.62 15.96 22.15 14.32 22.25 12.53C22.26 12.32 22.2 12.14 22.06 11.99C21.91 11.83 21.73 11.75 21.53 11.74C21.32 11.72 21.14 11.78 20.99 11.92C20.83 12.05 20.75 12.22 20.74 12.42C20.67 13.91 20.24 15.29 19.45 16.54C18.68 17.8 17.65 18.8 16.38 19.55C15.1 20.31 13.72 20.7 12.24 20.74C10.65 20.78 9.18 20.43 7.82 19.67C6.45 18.92 5.37 17.89 4.55 16.56C3.72 15.25 3.28 13.8 3.23 12.22C3.2 10.67 3.54 9.25 4.23 7.92C4.93 6.6 5.9 5.53 7.15 4.68C8.39 3.84 9.79 3.37 11.33 3.26C11.53 3.23 11.7 3.14 11.83 2.98C11.95 2.83 12.01 2.65 12 2.44C11.98 2.24 11.9 2.06 11.75 1.92C11.59 1.79 11.41 1.73 11.21 1.75C9.41 1.89 7.79 2.45 6.34 3.42C4.88 4.41 3.73 5.67 2.92 7.23C2.09 8.79 1.7 10.47 1.75 12.26C1.79 14.08 2.29 15.76 3.22 17.28C4.16 18.79 5.4 20 6.95 20.89C8.51 21.77 10.19 22.22 12 22.22Z" fill="#000000" fill-opacity="0.898039" fill-rule="nonzero"/>
15+ <path id="path" d="M15.37 1.97C15.17 1.9 14.98 1.92 14.81 2.02C14.62 2.11 14.51 2.26 14.45 2.47C14.38 2.67 14.39 2.87 14.5 3.05C14.59 3.22 14.73 3.34 14.92 3.41L18.71 4.56C16.51 5.23 14.83 6.23 13.68 7.57C12.55 8.91 11.81 10.13 11.48 11.24C11.15 12.35 10.99 13.14 10.99 13.61C10.99 13.81 11.06 13.99 11.2 14.15C11.33 14.3 11.5 14.38 11.71 14.38C11.91 14.38 12.09 14.3 12.25 14.16C12.4 14.01 12.48 13.84 12.48 13.66C12.48 13.26 12.63 12.56 12.93 11.58C13.24 10.59 13.92 9.53 14.99 8.39C16.04 7.24 17.61 6.4 19.67 5.88L18.42 9.98C18.36 10.17 18.38 10.36 18.48 10.55C18.57 10.73 18.71 10.85 18.9 10.92C19.09 10.96 19.28 10.94 19.48 10.86C19.67 10.77 19.81 10.62 19.86 10.42L21.6 4.68C21.66 4.47 21.64 4.27 21.55 4.09C21.45 3.91 21.31 3.78 21.11 3.72L15.37 1.97Z" fill="#000000" fill-opacity="0.898039" fill-rule="nonzero"/>
16+ </g>
17+</svg>
@@ -0,0 +1 @@
1+<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="M280-360v-240q0-33 23.5-56.5T360-680h326L583-783l57-57 200 200-200 200-57-56 103-104H360v240h-80Zm-80 240q-33 0-56.5-23.5T120-200v-600h80v600h480v-160h80v160q0 33-23.5 56.5T680-120H200Z"/></svg>
@@ -0,0 +1 @@
1+<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="M280-80q-33 0-56.5-23.5T200-160q0-33 23.5-56.5T280-240q33 0 56.5 23.5T360-160q0 33-23.5 56.5T280-80Zm400 0q-33 0-56.5-23.5T600-160q0-33 23.5-56.5T680-240q33 0 56.5 23.5T760-160q0 33-23.5 56.5T680-80ZM246-720l96 200h280l110-200H246Zm-38-80h590q23 0 35 20.5t1 41.5L692-482q-11 20-29.5 31T622-440H324l-44 80h480v80H280q-45 0-68-39.5t-2-78.5l54-98-144-304H40v-80h130l38 80Zm134 280h280-280Z"/></svg>
@@ -0,0 +1,7 @@
1+<svg width="0.500000" height="16.000000" viewBox="0 0 0.5 16" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="矩形" d="M0 0L0.5 0L0.5 16L0 16L0 0Z" fill="#000000" fill-opacity="0.200000" fill-rule="evenodd"/>
7+</svg>
@@ -0,0 +1,8 @@
1+<svg width="6.337891" height="5.368591" viewBox="0 0 6.33789 5.36859" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2+ <desc>
3+ Created with Pixso.
4+ </desc>
5+ <defs/>
6+ <path id="三角形" d="M2.32 4.9L0.16 1.54C-0.27 0.87 0.21 0 1 0L5.33 0C6.12 0 6.6 0.87 6.17 1.54L4.01 4.9C3.61 5.52 2.72 5.52 2.32 4.9Z" fill="#000000" fill-opacity="0.901961" fill-rule="evenodd"/>
7+ <path id="三角形" d="" fill="#979797" fill-opacity="0" fill-rule="evenodd"/>
8+</svg>
@@ -0,0 +1,5 @@
1+{
2+ "src": [
3+ "EntryView"
4+ ]
5+}
@@ -0,0 +1,43 @@
1+[package]
2+ cjc-version = "1.1.0"
3+ compile-option = "--dy-std --cfg=\"${COMPILE_CONDITION_ENTRY}\""
4+ description = "CangjieUI Application"
5+ link-option = "--unresolved-symbols=ignore-all"
6+ name = "ohos_app_cangjie_entry_test"
7+ output-type = "dynamic"
8+ src-dir = "."
9+ target-dir = ""
10+ version = "1.0.0"
11+ package-configuration = {}
12+ scripts = {}
13+ 
14+[dependencies]
15+ [dependencies.ohos_app_cangjie_entry]
16+ path = "../../../"
17+ version = "1.0.0"
18+ 
19+[profile]
20+ [profile.build]
21+ incremental = true
22+ lto = ""
23+ [profile.customized-option]
24+ debug = "-g -Woff all -Won apilevel-check"
25+ release = "--fast-math -O2 -s -Woff all -Won apilevel-check"
26+ withoutCoverage = "--cfg=\"coverage=false\""
27+ withCoverage = "--cfg=\"coverage=true\""
28+ [profile.test]
29+ 
30+[target.aarch64-linux-ohos]
31+ compile-option = "-B \"${DEVECO_CANGJIE_HOME}/build-tools/third_party/llvm/bin\" -B \"${DEVECO_OH_NATIVE_HOME}/sysroot/usr/lib/aarch64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/sysroot/usr/lib/aarch64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/llvm/lib/aarch64-linux-ohos\" --sysroot \"${DEVECO_OH_NATIVE_HOME}/sysroot\""
32+[target.aarch64-linux-ohos.bin-dependencies]
33+ path-option = ["${AARCH64_LIBS}", "${AARCH64_MACRO_LIBS}", "${AARCH64_KIT_LIBS}"]
34+ package-option = {}
35+ 
36+[target.x86_64-linux-ohos]
37+ compile-option = "-B \"${DEVECO_CANGJIE_HOME}/build-tools/third_party/llvm/bin\" -B \"${DEVECO_OH_NATIVE_HOME}/sysroot/usr/lib/x86_64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/sysroot/usr/lib/x86_64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/llvm/lib/clang/15.0.4/lib/x86_64-linux-ohos\" -L \"${DEVECO_OH_NATIVE_HOME}/llvm/lib/x86_64-linux-ohos\" --sysroot \"${DEVECO_OH_NATIVE_HOME}/sysroot\""
38+[target.x86_64-linux-ohos.bin-dependencies]
39+ path-option = ["${X86_64_OHOS_LIBS}", "${X86_64_OHOS_MACRO_LIBS}", "${X86_64_OHOS_KIT_LIBS}"]
40+ 
41+[target.x86_64-unknown-windows-gnu.bin-dependencies]
42+ path-option = ["${X86_64_LIBS}", "${X86_64_MACRO_LIBS}"]
43+ package-option = {}
@@ -0,0 +1,21 @@
1+[package]
2+ cjc-version = "1.1.0"
3+ compile-option = "--dy-std --cfg=\"${COMPILE_CONDITION_ENTRY}\""
4+ description = "CangjieUI Application"
5+ link-option = ""
6+ name = "ohos_app_cangjie_entry_local_test"
7+ output-type = "dynamic"
8+ src-dir = "."
9+ target-dir = ""
10+ version = "1.0.0"
11+ package-configuration = {}
12+ scripts = {}
13+ 
14+[profile]
15+ [profile.build]
16+ incremental = true
17+ lto = ""
18+ [profile.customized-option]
19+ debug = "-g -Woff all -Won apilevel-check"
20+ release = "--fast-math -O2 -s -Woff all -Won apilevel-check"
21+ [profile.test]
@@ -0,0 +1,6 @@
1+import { appTasks } from '@ohos/hvigor-ohos-plugin';
2+ 
3+export default {
4+ system: appTasks,
5+ plugins: []
6+}
@@ -0,0 +1,10 @@
1+{
2+ "modelVersion": "6.0.2",
3+ "description": "汽车类HarmonyOS应用 - 纯仓颉语言实现",
4+ "dependencies": {
5+ },
6+ "devDependencies": {
7+ "@ohos/hypium": "1.0.25",
8+ "@ohos/hamock": "1.0.0"
9+ }
10+}