提交 62c4dc0f 编写于 作者: X xjh22222228

Open

上级 98f7ba67
......@@ -5,7 +5,6 @@
/build
/tmp
/out-tsc
/src
# dependencies
/node_modules
......
......@@ -23,13 +23,9 @@
## 起源
在过去的工作当中,积累了各种实用网站都存放于浏览器标签当中,但慢慢的发现由于存放的网站太多,不易分类,描述不清晰,查找不容易。这让我有了这项目的启发,我想做一个简洁、分类清晰、结构清晰、一目了然的导航网站。并且我想把认为非常实用的网站分享出去, **发现导航** 就是这么诞生的。
## 和其他导航站相比具有以下优势
## 优势
- [√] 三叉树分类、结构清晰、分类清晰。
- [√] 颜值与简约并存,不再是杀马特时代。
- [√] 支持中文、英文、GitHub浏览,创新。
......@@ -55,9 +51,22 @@ Thank you for your [contribution](https://github.com/xjh22222228/nav/issues), me
---
## Build Setup
``` bash
# install dependencies
npm install
# start
npm start
# build for production with minification
npm run build
```
## 支持作者
## 支持开源
<img src="https://raw.githubusercontent.com/xjh22222228/statics/master/images/2018/32.png" alt="支持" width="500" />
......
......@@ -5,7 +5,7 @@
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"build": "ng build --prod --base-href ./ && node build.js",
"build": "ng build --prod --base-href",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
......
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
const routes: Routes = [];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
<div id="xiejiahe" class="app">
<a href="https://github.com/xjh22222228/nav" target="_blank" rel="noreferer noopener" class="github-link">
<svg width="56" height="56" viewBox="0 0 250 250" style="fill:#20a0ff;color:#fff;position:fixed;top:-6px;border:0;right:-6px;z-index:10001;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" data-url="https://github.com/xjh22222228" fill="currentColor" style="transform-origin:130px 106px" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg>
</a>
<router-outlet></router-outlet>
</div>
#xiejiahe {
&.app {
color: #000;
}
}
import { Component } from '@angular/core';
import { Router, ActivatedRoute } from '@angular/router';
import nav from '../data';
@Component({
selector: 'app-xiejiahe',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
constructor (private router: Router, private activatedRoute: ActivatedRoute) {}
nav: Array<any> = nav;
page: number = 0;
ngOnInit () {
const screenWidth = window.innerWidth;
const hash = window.location.hash;
const params = new URLSearchParams(hash.slice(hash.indexOf('?')));
const page = params.get('page');
const id = params.get('id');
const queryParams = {
page,
id
};
if (screenWidth < 768) {
this.router.navigate(['/app'], { queryParams });
} else {
this.router.navigate(['/index'], { queryParams });
}
this.activatedRoute.queryParams.subscribe(query => {
const page = +query.page || 0;
if (page > this.nav.length - 1) {
this.page = this.nav.length - 1;
} else {
this.page = page;
}
});
}
}
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { FormsModule } from '@angular/forms';
// components
import { AppComponent } from './app.component';
// views
import { HomeComponent } from '../view/index.component';
import { WebpComponent } from '../view/app.component';
const appRoutes: Routes = [
{
path: 'index',
component: HomeComponent,
},
{
path: 'app',
component: WebpComponent,
},
{
path: '**',
redirectTo: '/index',
},
];
@NgModule({
declarations: [
AppComponent,
HomeComponent,
WebpComponent
],
imports: [
BrowserModule,
FormsModule,
RouterModule.forRoot(
appRoutes,
{
enableTracing: false, // <-- debugging purposes only
useHash: true,
}
)
],
providers: [],
bootstrap: [
AppComponent,
],
})
export class AppModule { }
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 250 250" style="enable-background:new 0 0 250 250;" xml:space="preserve">
<style type="text/css">
.st0{fill:#DD0031;}
.st1{fill:#C3002F;}
.st2{fill:#FFFFFF;}
</style>
<g>
<polygon class="st0" points="125,30 125,30 125,30 31.9,63.2 46.1,186.3 125,230 125,230 125,230 203.9,186.3 218.1,63.2 "/>
<polygon class="st1" points="125,30 125,52.2 125,52.1 125,153.4 125,153.4 125,230 125,230 203.9,186.3 218.1,63.2 125,30 "/>
<path class="st2" d="M125,52.1L66.8,182.6h0h21.7h0l11.7-29.2h49.4l11.7,29.2h0h21.7h0L125,52.1L125,52.1L125,52.1L125,52.1
L125,52.1z M142,135.4H108l17-40.9L142,135.4z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1524299579084" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1374" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M65.450667 250.624c-90.581333 130.133333-79.36 299.392-10.112 437.589333 1.578667 3.370667 3.328 6.570667 5.034666 9.770667 0.981333 2.218667 2.090667 4.266667 3.285334 6.357333 0.554667 1.194667 1.322667 2.432 2.005333 3.541334 1.109333 2.218667 2.304 4.352 3.456 6.485333l6.698667 11.306667c1.237333 2.090667 2.432 4.138667 3.84 6.229333 2.346667 4.010667 5.12 7.978667 7.552 11.989333 1.109333 1.664 2.133333 3.328 3.370666 4.992a271.36 271.36 0 0 0 13.226667 18.944c3.328 4.565333 6.656 9.002667 10.24 13.44 1.152 1.621333 2.432 3.242667 3.626667 4.864l9.429333 11.477334c1.152 1.322667 2.304 2.858667 3.541333 4.224 4.181333 5.034667 8.618667 9.941333 13.056 14.890666 0 0.085333 0.128 0.170667 0.213334 0.298667a133.546667 133.546667 0 0 0 18.090666 18.773333c3.413333 3.498667 6.826667 6.997333 10.453334 10.410667l4.309333 4.138667c4.736 4.437333 9.472 8.874667 14.464 13.141333 0.085333 0 0.128 0.085333 0.213333 0.128l2.432 2.133333c4.352 3.797333 8.746667 7.594667 13.226667 11.093334l5.333333 4.48c3.626667 2.901333 7.381333 5.674667 11.093334 8.533333l5.802666 4.437333c3.968 2.986667 8.192 5.930667 12.245334 8.832 1.493333 1.066667 2.986667 2.133333 4.522666 3.114667l1.237334 0.981333 11.989333 7.893334 5.12 3.413333c6.272 4.010667 12.501333 7.808 18.688 11.562667 1.792 0.896 3.584 1.877333 5.248 2.901333 4.608 2.645333 9.386667 5.333333 14.037333 7.808 2.56 1.450667 5.205333 2.688 7.850667 4.010667 3.2 1.792 6.528 3.541333 9.941333 5.333333a13.824 13.824 0 0 1 2.389334 0.981333c1.408 0.64 2.730667 1.322667 4.096 2.005334 5.12 2.56 10.453333 4.992 16 7.424 1.024 0.426667 2.133333 0.853333 3.242666 1.450666 6.144 2.688 12.288 5.248 18.645334 7.765334 1.450667 0.426667 2.986667 1.152 4.48 1.706666 5.76 2.176 11.690667 4.394667 17.536 6.485334l2.133333 0.768c6.528 2.218667 12.970667 4.352 19.584 6.4 1.536 0.426667 3.114667 0.981333 4.736 1.408 6.784 2.048 13.354667 4.48 20.181333 5.802666 437.76 79.786667 564.992-263.210667 564.992-263.210666-106.88 139.178667-296.533333 175.872-476.16 135.04-6.656-1.536-13.312-3.669333-20.010666-5.632a576.938667 576.938667 0 0 1-24.192-7.722667l-2.645334-1.024c-5.802667-1.962667-11.392-4.138667-17.066666-6.314667a68.821333 68.821333 0 0 0-4.693334-1.749333c-6.272-2.517333-12.373333-5.12-18.432-7.808-1.322667-0.426667-2.432-1.024-3.754666-1.536a998.826667 998.826667 0 0 1-15.402667-7.253333 63.274667 63.274667 0 0 1-4.522667-2.218667c-4.010667-1.877333-8.021333-4.010667-11.946666-6.058667a168.192 168.192 0 0 1-7.978667-4.096c-4.821333-2.56-9.642667-5.333333-14.464-7.978666-1.450667-1.024-3.114667-1.877333-4.778667-2.816a678.485333 678.485333 0 0 1-18.688-11.477334 89.770667 89.770667 0 0 1-5.034666-3.370666 256.085333 256.085333 0 0 1-13.312-8.789334c-1.493333-0.981333-2.858667-2.048-4.394667-3.114666a407.082667 407.082667 0 0 1-12.544-9.045334c-1.792-1.450667-3.712-2.816-5.632-4.266666-3.754667-2.944-7.552-5.76-11.306667-8.874667l-5.034666-4.010667a451.413333 451.413333 0 0 1-14.250667-11.989333 11.008 11.008 0 0 0-1.578667-1.28l-14.805333-13.482667-4.266667-4.010666c-3.498667-3.541333-7.082667-6.954667-10.666666-10.453334l-4.138667-4.266666a386.986667 386.986667 0 0 1-13.184-13.781334l-0.64-0.682666a765.610667 765.610667 0 0 1-13.354667-15.104c-1.152-1.322667-2.218667-2.730667-3.413333-4.138667l-9.642667-11.818667a906.581333 906.581333 0 0 1-14.506666-19.114666C92.16 502.869333 56.106667 315.136 135.850667 161.152" fill="#1296db" p-id="1375"></path><path d="M346.496 141.013333c-65.664 94.250667-61.952 220.288-10.837333 319.957334a388.266667 388.266667 0 0 0 28.885333 48.298666c9.813333 14.08 20.650667 30.72 33.792 42.069334 4.565333 5.205333 9.514667 10.24 14.677333 15.317333l3.84 3.84c4.864 4.693333 9.856 9.301333 14.933334 13.866667l0.64 0.554666a420.48 420.48 0 0 0 17.664 14.592c1.450667 0.981333 2.688 2.133333 4.096 3.114667 5.973333 4.608 11.989333 9.045333 18.218666 13.44l0.64 0.384c2.645333 1.92 5.461333 3.669333 8.448 5.546667 1.194667 0.768 2.56 1.792 3.84 2.56 4.522667 2.901333 8.96 5.632 13.525334 8.405333 0.725333 0.298667 1.365333 0.682667 2.048 0.981333 3.84 2.346667 8.021333 4.608 12.032 6.698667 1.408 0.853333 2.773333 1.493333 4.224 2.304 2.858667 1.408 5.674667 2.901333 8.405333 4.352l1.365333 0.597333c5.76 2.816 11.648 5.461333 17.408 8.106667 1.450667 0.554667 2.688 1.024 3.925334 1.621333 4.736 2.048 9.557333 4.010667 14.293333 5.845334 2.133333 0.725333 4.138667 1.578667 6.144 2.218666 4.352 1.621333 8.917333 3.114667 13.226667 4.608l5.973333 1.92c6.229333 1.92 12.544 4.437333 19.114667 5.504 337.92 56.021333 416.170667-204.245333 416.170666-204.245333-70.442667 101.376-206.762667 149.674667-352.042666 111.957333a342.613333 342.613333 0 0 1-19.114667-5.546666c-2.048-0.554667-3.84-1.194667-5.802667-1.792-4.437333-1.536-9.002667-3.029333-13.312-4.650667l-6.144-2.304c-4.778667-1.92-9.642667-3.712-14.293333-5.76-1.450667-0.64-2.773333-1.066667-3.882667-1.706667-5.973333-2.688-11.989333-5.333333-17.792-8.192l-8.789333-4.565333-5.077333-2.56a241.92 241.92 0 0 1-11.306667-6.4 26.453333 26.453333 0 0 1-2.645333-1.450667c-4.522667-2.816-9.216-5.546667-13.525334-8.448-1.450667-0.810667-2.773333-1.792-4.138666-2.645333l-8.874667-5.802667c-6.144-4.266667-12.16-8.874667-18.218667-13.312-1.365333-1.237333-2.688-2.261333-4.010666-3.370666-63.872-50.218667-114.261333-118.869333-138.154667-196.608-25.173333-80.810667-19.626667-171.434667 23.850667-244.992" fill="#1296db" p-id="1376"></path><path d="M582.826667 59.050667c-38.741333 56.832-42.453333 127.402667-15.786667 190.08 28.330667 66.56 86.272 118.826667 153.770667 143.573333 2.773333 1.066667 5.461333 1.962667 8.32 2.986667l3.754666 1.152c3.925333 1.237333 7.893333 2.688 11.946667 3.584 186.709333 36.010667 237.226667-95.872 250.837333-115.242667-44.458667 63.829333-118.997333 79.146667-210.432 56.917333a206.677333 206.677333 0 0 1-22.016-6.826666 270.677333 270.677333 0 0 1-26.325333-10.837334 278.229333 278.229333 0 0 1-46.08-28.16c-81.92-62.037333-132.650667-180.48-79.232-276.949333" fill="#1296db" p-id="1377"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1524299599613" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1896" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M512 78.933333C500.48 78.933333 488.533333 81.92 478.72 87.466667L161.28 270.933333C140.8 282.88 128 305.066667 128 328.96L128 695.04C128 718.933333 140.8 741.12 161.28 753.066667L244.48 800.853333C285.013333 820.48 298.666667 820.906667 317.44 820.906667 377.173333 820.906667 411.733333 784.64 411.733333 721.493333L411.733333 360.106667C411.733333 354.986667 407.466667 350.72 402.346667 350.72L362.666667 350.72C357.12 350.72 352.853333 354.986667 352.853333 360.106667L352.853333 721.493333C352.853333 749.653333 323.84 777.386667 277.333333 753.92L189.866667 704C186.88 701.866667 185.173333 698.453333 185.173333 695.04L185.173333 328.96C185.173333 325.12 186.88 321.706667 189.866667 320L507.306667 136.96C509.866667 135.253333 514.133333 135.253333 516.693333 136.96L834.133333 320C837.12 321.706667 838.826667 325.12 838.826667 328.96L838.826667 695.04C838.826667 698.453333 837.12 701.866667 834.133333 704L516.693333 887.04C514.133333 888.746667 509.866667 888.746667 506.88 887.04L426.666667 838.4C423.253333 837.12 419.84 836.693333 417.706667 837.973333 395.093333 850.773333 390.826667 853.333333 369.92 859.733333 364.8 861.44 356.693333 864.426667 372.906667 873.386667L478.72 936.106667C488.96 942.08 500.053333 945.066667 512 945.066667 523.946667 945.066667 535.04 942.08 545.28 936.106667L862.72 753.066667C883.2 741.12 896 718.933333 896 695.04L896 328.96C896 305.066667 883.2 282.88 862.72 270.933333L545.28 87.466667C535.466667 81.92 523.946667 78.933333 512 78.933333M597.333333 341.333333C506.88 341.333333 452.693333 379.306667 452.693333 443.306667 452.693333 512 506.453333 532.053333 593.493333 540.586667 697.173333 550.826667 705.28 566.186667 705.28 586.666667 705.28 622.08 676.693333 637.013333 610.133333 637.013333 525.653333 637.013333 507.733333 616.106667 501.333333 574.293333 500.48 570.026667 496.64 566.613333 491.946667 566.613333L450.986667 566.613333C445.866667 566.613333 442.026667 570.453333 442.026667 576 442.026667 628.906667 471.04 692.906667 610.133333 692.906667 710.4 692.906667 768 653.226667 768 584.106667 768 515.413333 721.92 497.493333 624.213333 484.266667 525.653333 471.466667 515.84 464.64 515.84 441.6 515.84 422.4 524.373333 396.8 597.333333 396.8 661.333333 396.8 686.506667 410.88 696.32 454.826667 697.173333 459.093333 701.013333 462.08 705.28 462.08L746.666667 462.08C748.8 462.08 751.36 461.226667 753.066667 459.093333 754.773333 457.386667 756.053333 454.826667 755.2 452.266667 749.226667 376.32 698.88 341.333333 597.333333 341.333333Z" p-id="1897" fill="#1afa29"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1524309380006" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1383" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M1024 853.333333c0 93.866667-76.8 170.666667-170.666667 170.666667H170.666667C76.8 1024 0 947.2 0 853.333333V170.666667C0 76.8 76.8 0 170.666667 0h682.666666c93.866667 0 170.666667 76.8 170.666667 170.666667v682.666666z" fill="#563D7C" p-id="1384"></path><path d="M278.4 222.933333h290.133333c53.333333 0 97.066667 11.733333 129.066667 37.333334s48 61.866667 48 110.933333c0 29.866667-7.466667 55.466667-22.4 76.8-14.933333 21.333333-36.266667 38.4-62.933333 50.133333v2.133334c37.333333 7.466667 65.066667 25.6 83.2 52.266666 19.2 26.666667 28.8 60.8 28.8 101.333334 0 23.466667-4.266667 45.866667-12.8 65.066666-8.533333 20.266667-21.333333 38.4-39.466667 52.266667-18.133333 14.933333-40.533333 26.666667-68.266667 35.2s-60.8 12.8-99.2 12.8H278.4V222.933333z m104.533333 249.6h170.666667c25.6 0 45.866667-7.466667 62.933333-21.333333 17.066667-13.866667 25.6-35.2 25.6-61.866667 0-29.866667-7.466667-51.2-22.4-64-14.933333-11.733333-37.333333-18.133333-65.066666-18.133333H384l-1.066667 165.333333z m0 262.4h184.533334c32 0 56.533333-8.533333 73.6-24.533333 17.066667-16 26.666667-39.466667 26.666666-70.4 0-29.866667-8.533333-52.266667-26.666666-68.266667s-42.666667-23.466667-73.6-23.466666H382.933333v186.666666z" fill="#FFFFFF" p-id="1385"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600"><title>icon-square-small</title><path fill="#FFF" d="M300 .1L565 150v299.9L300 599.8 35 449.9V150z"/><path fill="#8ED6FB" d="M517.7 439.5L308.8 557.8v-92L439 394.1l78.7 45.4zm14.3-12.9V179.4l-76.4 44.1v159l76.4 44.1zM81.5 439.5l208.9 118.2v-92l-130.2-71.6-78.7 45.4zm-14.3-12.9V179.4l76.4 44.1v159l-76.4 44.1zm8.9-263.2L290.4 42.2v89l-137.3 75.5-1.1.6-75.9-43.9zm446.9 0L308.8 42.2v89L446 206.8l1.1.6 75.9-44z"/><path fill="#1C78C0" d="M290.4 444.8L162 374.1V234.2l128.4 74.1v136.5zm18.4 0l128.4-70.6v-140l-128.4 74.1v136.5zM299.6 303zm-129-85l129-70.9L428.5 218l-128.9 74.4-129-74.4z"/></svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 294.825 258.982"
xml:space="preserve">
<g>
<path fill="#8080F2" d="M97.021,99.016l48.432-27.962c1.212-0.7,2.706-0.7,3.918,0l48.433,27.962
c1.211,0.7,1.959,1.993,1.959,3.393v55.924c0,1.399-0.748,2.693-1.959,3.394l-48.433,27.962c-1.212,0.7-2.706,0.7-3.918,0
l-48.432-27.962c-1.212-0.7-1.959-1.994-1.959-3.394v-55.924C95.063,101.009,95.81,99.716,97.021,99.016"/>
<path fill="#4B32C3" d="M273.336,124.488L215.469,23.816c-2.102-3.64-5.985-6.325-10.188-6.325H89.545
c-4.204,0-8.088,2.685-10.19,6.325l-57.867,100.45c-2.102,3.641-2.102,8.236,0,11.877l57.867,99.847
c2.102,3.64,5.986,5.501,10.19,5.501h115.735c4.203,0,8.087-1.805,10.188-5.446l57.867-100.01
C275.439,132.396,275.439,128.128,273.336,124.488 M225.419,172.898c0,1.48-0.891,2.849-2.174,3.59l-73.71,42.527
c-1.282,0.74-2.888,0.74-4.17,0l-73.767-42.527c-1.282-0.741-2.179-2.109-2.179-3.59V87.843c0-1.481,0.884-2.849,2.167-3.59
l73.707-42.527c1.282-0.741,2.886-0.741,4.168,0l73.772,42.527c1.283,0.741,2.186,2.109,2.186,3.59V172.898z"/>
</g>
</svg>
<svg aria-hidden="true" data-prefix="fac" data-icon="logo" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75 75" class="blue6 svg-inline--fa fa-logo fa-w-16" style="transform-origin: 0.5em 0.49375em 0px;"><g transform="translate(37.5 256)" class=""><g transform="translate(0, -3.2) scale(1, 1) rotate(0 0 0)" class=""><path fill="currentColor" d="M66.6,0H8.4C3.8,0,0,3.8,0,8.4v58.2C0,71.2,3.8,75,8.4,75h58.2c4.6,0,8.4-3.8,8.4-8.4V8.4C75,3.8,71.2,0,66.6,0z M59,47.6 c0,0.7-0.6,1-1.3,1.3c-2.8,1.2-5.8,2.3-9,2.3c-4.5,0-6.6-2.8-12-2.8c-3.9,0-8,1.4-11.3,2.9c-0.2,0.1-0.4,0.1-0.6,0.2v7.6 c0,0.3,0,0.6-0.1,0.8v0.2c-0.4,1.4-1.7,2.4-3.2,2.4c-1.9,0-3.4-1.5-3.4-3.4V22.5c-1.3-1-2.2-2.6-2.2-4.4c0-3.1,2.5-5.6,5.6-5.6 s5.6,2.5,5.6,5.6c0,1.8-0.8,3.4-2.2,4.4v3.1c0.3-0.1,0.6-0.2,0.9-0.4c3.1-1.3,6.8-2.4,10.3-2.4c3.8,0,6.8,1,10.2,2.3 c0.7,0.3,1.4,0.4,2.2,0.4c3.8,0,8-2.7,9-2.7c0.8,0,1.5,0.6,1.5,1.3V47.6z" transform="translate(-37.5 -256)" class=""></path></g></g></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 191.99999" width="192" height="192"><title>Mocha Logo</title><path d="M169.47386 143.90113l-68.70282 39.69498c-2.958045 1.71756-6.584028 1.71756-9.542066 0L22.52614 143.90113c-2.958038-1.71757-4.77103-4.86645-4.77103-8.20617V56.305021c0-3.435142 1.812992-6.488601 4.77103-8.206172L91.228974 8.403878c2.958038-1.717571 6.584021-1.717571 9.542056 0l68.70282 39.694971c2.95804 1.717571 4.77104 4.866451 4.77104 8.206172v79.389939c-.0954 3.33972-1.90842 6.4886-4.77104 8.20617z" clip-rule="evenodd" fill="#8d6748" fill-rule="evenodd"/><path d="M95.904583 22.049024c.954207 0 1.812992.286262 2.671781.763365l59.351606 34.255996c1.62216.954206 2.67177 2.767198 2.67177 4.67561v68.511985c0 1.90842-1.04962 3.72141-2.67177 4.67562l-59.351606 34.25599c-.858789.47711-1.717574.76336-2.671781.76336-.954206 0-1.908412-.28625-2.671777-.76336L33.881192 134.9316c-1.62215-.95421-2.671778-2.7672-2.671778-4.67562V61.743995c0-1.908412 1.049628-3.721404 2.671778-4.67561l59.351614-34.255996c.858785-.477103 1.812992-.763365 2.671777-.763365m0-2.862618c-1.431309 0-2.862618.381683-4.103085 1.145048L32.449883 54.58745c-2.576357 1.431309-4.103086 4.198506-4.103086 7.061124v68.511996c0 2.95803 1.526729 5.62981 4.103086 7.06112l59.351615 34.25599c1.240467.76337 2.671776 1.14506 4.103085 1.14506 1.431309 0 2.862617-.38169 4.103097-1.14506l59.35159-34.25599c2.57636-1.43131 4.10309-4.1985 4.10309-7.06112V61.648574c0-2.958038-1.52673-5.629815-4.10309-7.061124l-59.35159-34.255996c-1.24048-.763365-2.671788-1.145048-4.103097-1.145048z" fill="#fff"/><path d="M104.3493 61.648574c0-.477103-.381682-.954206-.954206-.954206H85.456021c-.477103 0-.954206.381682-.954206.954206 0 3.2443.477103 14.40851 5.248133 19.847485.190841.190841.381683.286262.667944.286262h8.01533c.286263 0 .477104-.09542.667945-.286262 4.77103-5.343554 5.248133-16.507764 5.248133-19.847485zm-7.061124 17.36655H91.65836c-.286262 0-.477103-.095421-.667944-.286263-3.2443-3.816824-3.625983-11.450472-3.721403-14.122249 0-.477103.381682-.954206.954206-.954206h12.595519c.477103 0 .954206.381683.954206.954206 0 2.671777-.477103 10.210005-3.721403 14.12225-.286262.19084-.477103.286261-.763365.286261zM96.23855 58.785956s3.43514-2.003833 1.335888-5.629816c-1.240468-1.908412-1.812992-3.530562-1.335889-4.198506-1.240468 1.52673-3.339721 3.14888-1.049627 6.584021.763365.858786 1.145048 2.671777 1.049627 3.2443zM92.421725 59.072217s2.290094-1.335888.858785-3.816824c-.858785-1.240467-1.240467-2.385515-.858785-2.767197-.858785 1.049627-2.194674 2.099253-.667944 4.484768.477103.477103.667944 1.717571.667944 2.099253z" fill="#fff"/><path d="M100.246214 70.141007c-.381682 2.576357-1.145047 5.534395-2.767197 7.442807-.190841.190841-.381682.286262-.572524.286262h-4.77103c-.190841 0-.477103-.09542-.572523-.286262-1.145048-1.431309-1.908412-3.33972-2.385515-5.343553 0 0 5.534394.763364 8.683274-.381683 2.290095-.858785 2.385515-1.71757 2.385515-1.71757z" fill="#fff"/><g fill="#fff"><path d="M37.554879 85.599145h3.530562l5.820657 8.969536 5.820657-8.969536h3.530562v19.08412h-3.339721V91.03812l-6.011498 8.969537h-.09542L40.8946 91.13354v13.645146h-3.339721V85.599145zM73.528446 104.969527c-1.43131 0-2.767198-.286262-4.007665-.763365-1.240468-.477103-2.290095-1.240468-3.14888-2.099253-.858786-.858785-1.52673-1.908412-2.003833-3.14888-.477103-1.145047-.763365-2.480936-.763365-3.816824v-.09542c0-1.335889.286262-2.576357.763365-3.816825.477103-1.145047 1.145047-2.194674 2.099253-3.14888.858786-.858785 1.908412-1.62215 3.14888-2.099253 1.240468-.572523 2.576356-.763365 4.007665-.763365 1.43131 0 2.767198.286262 4.007666.763365 1.240468.477103 2.290094 1.240468 3.14888 2.099253.858785.858786 1.52673 1.908412 2.003832 3.14888.477103 1.145048.763365 2.480936.763365 3.816824v.095421c0 1.335888-.286262 2.576356-.763365 3.816824-.477103 1.145047-1.145047 2.194674-2.099253 3.14888-.858785.858785-1.908412 1.62215-3.14888 2.099253-1.240468.572524-2.576356.763365-4.007665.763365zm0-3.05346c.954206 0 1.812991-.19084 2.576356-.572523.763365-.381682 1.43131-.858785 2.003833-1.431309.572523-.572524.954206-1.335888 1.335888-2.099253.286262-.858786.477103-1.717571.477103-2.576356v-.095421c0-.954206-.190841-1.812991-.477103-2.671777-.286262-.858785-.763365-1.52673-1.335888-2.194674-.572524-.572523-1.240468-1.049626-2.003833-1.431309-.763365-.381682-1.62215-.572523-2.576356-.572523-.954206 0-1.812992.19084-2.576356.572523-.763365.381683-1.43131.858786-2.003833 1.43131-.572524.572523-.954206 1.335888-1.335888 2.099253-.286262.858785-.477104 1.71757-.477104 2.576356v.09542c0 .954206.190842 1.812992.477104 2.671777.286261.858786.763364 1.52673 1.335888 2.194674.572524.572524 1.240468 1.049627 2.003833 1.43131.763364.381682 1.71757.572523 2.576356.572523zM99.67369 104.969527c-1.431308 0-2.671776-.286262-3.816823-.763365-1.145048-.477103-2.194674-1.240468-3.05346-2.099253-.858785-.858785-1.52673-1.908412-2.003832-3.14888-.477103-1.240468-.763365-2.480936-.763365-3.816824v-.09542c0-1.335889.286262-2.671777.763365-3.816825.477103-1.145047 1.145047-2.194674 2.003832-3.14888.858786-.858785 1.908412-1.62215 3.14888-2.099253 1.240468-.477103 2.480936-.763365 4.007666-.763365.858785 0 1.62215.095421 2.385515.190842.763364.19084 1.335888.381682 2.003832.572523.572524.286262 1.145047.572524 1.62215.954206.477104.381683.954207.763365 1.43131 1.240468l-2.194674 2.480936c-.763365-.667945-1.52673-1.240468-2.385515-1.717571-.858786-.477103-1.812992-.667944-2.958039-.667944-.954206 0-1.71757.19084-2.480936.572523-.763364.381683-1.431309.858786-2.003832 1.43131-.572524.572523-.954206 1.335888-1.335889 2.099253-.286262.858785-.477103 1.71757-.477103 2.576356v.09542c0 .954206.190841 1.812992.477103 2.671777.286262.858786.763365 1.52673 1.335889 2.194674.572523.572524 1.240468 1.145047 2.003832 1.43131.763365.28626 1.62215.572523 2.480936.572523 1.145047 0 2.194674-.190841 2.958039-.667944.763364-.477103 1.62215-1.049627 2.480935-1.812992l2.194674 2.194674c-.477103.572524-.954206.954206-1.52673 1.431309-.572523.477103-1.145047.763365-1.71757 1.049627-.572524.286261-1.335889.572523-2.003833.667944-.858785.190841-1.71757.190841-2.576356.190841zM114.177622 85.599145h3.339721v7.91991h9.160378v-7.91991h3.339721v19.08412h-3.33972v-8.01533h-9.160379v8.01533h-3.33972v-19.08412zM144.807636 85.503724h3.053459l8.397013 19.179541h-3.530563l-1.908412-4.580189h-8.969536l-2.003833 4.58019h-3.435141l8.397013-19.179542zm4.77103 11.641314l-3.2443-7.633649-3.244301 7.633649h6.4886z"/></g><path fill="#fff" d="M35.169365 110.69476h121.66127v1.049627H35.169365zM156.83062 74.816618h-51.71797c0 .381682-.0954.667943-.0954 1.049626h51.81338v-1.049626zM35.169364 74.816618v1.049626h48.759928c0-.381683-.09542-.667944-.09542-1.049626H35.169365z"/></svg>
\ No newline at end of file
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16">
<g
transform="scale(0.06)"
fill="#000">
<path
d="M7 18.848h22v146h87v18H7v-164z"/>
<path
d="M184.597 58.452c-22.5-.3-45 14-52 35.7-10 25-5.4 56.4 14.2 75.5 19 15.8 47.6 17 69 5.8 14.7-7.8 24-23.3 26-39.6 2.6-17 1.3-35.6-7-51-9.8-16.4-29-27-48-26.3l-2.2-.3zm2 17.4c16.5 0 31.3 12.6 34 28.8 5 18.3 2 40.7-13 53.6-14 11.4-36.5 9.8-48-4.3-14-15-14-38-6.8-56 5-13 18.3-22.3 32.3-22h1.8z"/>
<path
d="M7 206.152h236v25H7v-25z"/>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="175px" height="200px" viewBox="0 0 175 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 3.8.2 (29753) - http://www.bohemiancoding.com/sketch -->
<title>绿叶@1x</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="256-copy" transform="translate(-40.000000, -28.000000)" fill="#26a2ff">
<g id="绿叶" transform="translate(40.000000, 28.000000)">
<g id="Group" transform="translate(0.304688, 0.000000)">
<path d="M83.7294895,155.011876 C82.10935,151.660159 80.0364807,147.116712 77.9075932,141.75552 C75.7787057,144.503597 73.4596357,147.267423 70.95756,150.063544 L66.9944283,154.575095 L61.9745279,152.45438 C47.3041625,146.266871 4.76229609,125.583829 0.377732617,92.1763035 C-2.75948086,57.3709166 17.6057932,39.0864861 10.2429004,19.7377117 C39.9410705,26.8386549 63.3564408,38.3399104 78.3366002,53.0579211 C101.839287,23.0579309 131.94294,21.882348 139.972668,0 C195.739393,77.9427199 186.843279,149.18998 93.8883039,160.674889 C86.0252354,175.139123 77.264282,188.570113 67.7408049,200 L54.7067266,191.90628 C65.8822395,181.175523 75.4455873,168.649794 83.7294895,155.011876 L83.7294895,155.011876 L83.7294895,155.011876 Z M92.6971715,116.179764 C94.6352785,121.398021 96.6210307,125.6235 97.8998783,128.188771 C111.434531,98.8005945 120.671938,66.6639422 128.114372,37.0690369 C120.092021,45.4089572 104.635408,48.665583 92.5305127,65.4329393 C91.7681879,66.5766258 91.1005559,67.7601826 90.5052887,68.9674627 C98.0667365,82.9705945 99.2261719,98.9437297 92.6971715,116.179764 L92.6971715,116.179764 L92.6971715,116.179764 Z M52.6097354,127.712318 C47.4628473,99.0627434 40.5128141,72.4383926 28.3524986,48.8800863 L28.3524986,48.8800863 C41.3309576,66.9976586 56.4064076,93.2645699 64.3968625,122.994238 C92.4350227,89.7615443 74.0951721,54.9402092 22.387467,42.5893125 C27.1928639,55.2264797 13.8886627,67.1722916 15.937809,89.9126535 C18.956009,112.859346 44.6272545,124.487788 52.6097354,127.712318 L52.6097354,127.712318 L52.6097354,127.712318 Z M108.781346,129.690296 C159.710579,120.921368 165.445159,80.6830223 135.810781,35.7901893 C132.029858,62.9545865 122.593897,97.1882299 108.781346,129.690296 L108.781346,129.690296 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#A_1_);}
.st1{fill:url(#Shape_4_);}
.st2{fill:url(#Shape_5_);}
.st3{fill:url(#Shape_6_);}
</style>
<title>Group 28 Copy 5</title>
<desc>Created with Sketch.</desc>
<g id="Group-4">
<linearGradient id="A_1_" gradientUnits="userSpaceOnUse" x1="-821.5568" y1="-815.2497" x2="-822.1598" y2="-812.8395" gradientTransform="matrix(53.4167 0 0 51.6667 44010.9219 42143.9648)">
<stop offset="0" style="stop-color:#FA8E7D"/>
<stop offset="0.5126" style="stop-color:#F74A5C"/>
<stop offset="1" style="stop-color:#F51D2C"/>
</linearGradient>
<path id="A" class="st0" d="M122.4,121.6l-4.4-10H80.7l-4.4,10.3c-1.7,4-3.2,6.7-4.4,8.1c-1.2,1.3-3.2,2.1-6,2.1
c-2.4,0-4.4-0.8-6.3-2.3s-2.7-3.2-2.7-5.1c0-1.1,0.3-2.3,0.7-3.3s1.1-2.8,2.1-4.8l23.5-51.9c0.7-1.5,1.5-3.3,2.4-5.3
c0.9-2.1,2-3.9,3.1-5.2c1.1-1.3,2.5-2.5,4.3-3.3c1.7-0.8,3.9-1.3,6.4-1.3s4.8,0.4,6.5,1.3c1.7,0.8,3.2,2,4.3,3.3
c1.1,1.3,2,2.8,2.7,4.4s1.6,3.6,2.8,6.1l24,51.6c1.9,3.9,2.8,6.8,2.8,8.5c0,1.9-0.9,3.6-2.7,5.1c-1.7,1.6-3.9,2.3-6.4,2.3
c-1.5,0-2.7-0.3-3.7-0.7c-1.1-0.4-1.9-1.1-2.7-1.9c-0.7-0.8-1.5-2-2.3-3.6C123.6,124.3,122.9,122.8,122.4,121.6z M85.5,99.3H113
L99.1,66.4L85.5,99.3z"/>
<linearGradient id="Shape_4_" gradientUnits="userSpaceOnUse" x1="-819.0828" y1="-815.3929" x2="-819.2139" y2="-812.7853" gradientTransform="matrix(46.4786 0 0 58.25 38229.8711 47483.9492)">
<stop offset="0" style="stop-color:#FA816E"/>
<stop offset="0.4147" style="stop-color:#F74A5C"/>
<stop offset="1" style="stop-color:#F51D2C"/>
</linearGradient>
<path id="Shape_1_" class="st1" d="M195.3,50.1c0.8-9.8-4.9-19-14.2-22.4l-45.1-16c-1.3-0.7-2.8-0.9-4.4-0.9
c-5.9,0-10.7,4.8-10.7,10.7c0,4.7,3.1,8.7,7.3,10.1l0,0l45.7,16.3l-4.5,42.3c-0.3,1.1-0.5,2.1-0.5,3.2c0,5.9,4.8,10.7,10.7,10.7
c5.6,0,10.1-4.3,10.7-9.6"/>
<linearGradient id="Shape_5_" gradientUnits="userSpaceOnUse" x1="-831.338" y1="-813.9303" x2="-830.4966" y2="-814.2643" gradientTransform="matrix(114.0794 0 0 125 94873.8984 101866.3594)">
<stop offset="0" style="stop-color:#4285EB"/>
<stop offset="1" style="stop-color:#2EC7FF"/>
</linearGradient>
<path id="Shape_3_" class="st2" d="M185.9,132.3c0.3-0.9,0.4-2,0.4-2.9c0-5.9-4.8-10.7-10.7-10.7s-10.7,4.8-10.7,10.7
c0,0.5,0,1.2,0.1,1.7l-1.5,14l-64,33.5l-64-33.5L25.1,47.8l74.4-26.4h0.1v-0.1c5.2-0.7,9.2-5.2,9.2-10.5c0-5.9-4.8-10.7-10.7-10.7
c-1.7,0-3.3,0.4-4.7,1.1l0,0L18,27.8C8.7,31.1,2.9,40.3,4,50.2l10.4,97.3c0.8,7.1,4.9,13.3,11.3,16.7l64,33.5
c6.1,3.2,13.6,3.2,19.7,0l64-33.5c6.3-3.3,10.5-9.6,11.3-16.7"/>
<linearGradient id="Shape_6_" gradientUnits="userSpaceOnUse" x1="-831.4006" y1="-814.7308" x2="-830.4359" y2="-813.3383" gradientTransform="matrix(114.0794 0 0 111.4652 94873.8984 90851.4531)">
<stop offset="0" style="stop-color:#29CDFF"/>
<stop offset="0.3786" style="stop-color:#148EFF"/>
<stop offset="1" style="stop-color:#0A60FF"/>
</linearGradient>
<path id="Shape_2_" class="st3" d="M185.9,132.3c0.3-0.9,0.4-2,0.4-2.9c0-5.9-4.8-10.7-10.7-10.7s-10.7,4.8-10.7,10.7
c0,0.5,0,1.2,0.1,1.7l-1.5,14l-64,33.5l-64-33.5L25.1,47.8c-1.1-10.9,2.3-19.6,10-26.1l-17,6.1C8.8,31.1,3,40.3,4.1,50.2l10.4,97.3
c0.8,7.1,4.9,13.3,11.3,16.7l64,33.5c6.1,3.2,13.6,3.2,19.7,0l64-33.5c6.3-3.3,10.5-9.6,11.3-16.7"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1535379751703" class="icon" style="" viewBox="0 0 1028 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2103" xmlns:xlink="http://www.w3.org/1999/xlink" width="200.78125" height="200"><defs><style type="text/css"></style></defs><path d="M110.592 108.544h808.96v808.96H110.592z" fill="#FFEA00" p-id="2104"></path><path d="M944.128 0H83.968C38.912 0 2.048 36.864 2.048 81.92v143.36h61.44V102.4c0-22.528 18.432-40.96 40.96-40.96h819.2c22.528 0 40.96 18.432 40.96 40.96v122.88h61.44V81.92c0-45.056-36.864-81.92-81.92-81.92z m20.48 921.6c0 22.528-18.432 40.96-40.96 40.96H104.448c-22.528 0-40.96-18.432-40.96-40.96v-122.88H2.048v143.36c0 45.056 36.864 81.92 81.92 81.92h860.16c45.056 0 81.92-36.864 81.92-81.92v-143.36h-61.44v122.88z" fill="" p-id="2105"></path><path d="M63.488 286.72h901.12v450.56H63.488z" fill="#FFEA00" p-id="2106"></path><path d="M38.912 366.592c0 36.864 4.096 61.44 4.096 94.208 0 18.432-10.24 36.864-43.008 38.912v30.72c34.816 0 43.008 20.48 43.008 38.912 0 32.768-4.096 57.344-4.096 94.208 0 53.248 18.432 69.632 61.44 69.632H124.928v-28.672h-10.24c-26.624 0-32.768-10.24-32.768-43.008 0-28.672 2.048-55.296 2.048-88.064 0-34.816-10.24-51.2-32.768-55.296v-2.048c24.576-8.192 32.768-22.528 32.768-57.344 0-32.768-2.048-59.392-2.048-88.064 0-30.72 6.144-43.008 32.768-43.008H124.928v-28.672H100.352c-40.96-2.048-61.44 14.336-61.44 67.584z m534.528 129.024l-45.056-18.432c-26.624-10.24-53.248-22.528-53.248-49.152 0-26.624 22.528-43.008 55.296-43.008 28.672 0 53.248 10.24 73.728 30.72l26.624-32.768c-24.576-26.624-61.44-40.96-100.352-40.96-63.488 0-108.544 38.912-108.544 92.16 0 49.152 34.816 73.728 67.584 86.016l45.056 20.48c30.72 14.336 53.248 22.528 53.248 53.248 0 28.672-22.528 47.104-63.488 47.104-32.768 0-63.488-14.336-88.064-38.912l-26.624 30.72-22.528-26.624c-20.48 22.528-43.008 34.816-73.728 34.816-59.392 0-96.256-49.152-96.256-126.976 0-77.824 38.912-124.928 96.256-124.928 26.624 0 47.104 12.288 65.536 30.72l28.672-32.768c-20.48-22.528-53.248-40.96-94.208-40.96-81.92-8.192-147.456 57.344-147.456 165.888s63.488 169.984 147.456 169.984c40.96 0 73.728-16.384 98.304-43.008 30.72 26.624 69.632 43.008 112.64 43.008 71.68 0 116.736-43.008 116.736-96.256 0-49.152-28.672-71.68-67.584-90.112z m229.376 0l-45.056-18.432c-26.624-10.24-53.248-22.528-53.248-49.152 0-26.624 22.528-43.008 55.296-43.008 28.672 0 53.248 10.24 73.728 30.72l26.624-32.768c-24.576-26.624-61.44-40.96-100.352-40.96-63.488 0-108.544 38.912-108.544 92.16 0 49.152 34.816 73.728 67.584 86.016l45.056 20.48c30.72 14.336 53.248 22.528 53.248 53.248 0 28.672-22.528 47.104-63.488 47.104-32.768 0-63.488-14.336-88.064-38.912L634.88 634.88c30.72 30.72 71.68 49.152 118.784 49.152 71.68 0 116.736-43.008 116.736-96.256 0-51.2-28.672-73.728-67.584-92.16z m182.272-34.816c0-32.768 4.096-57.344 4.096-94.208 0-53.248-18.432-69.632-61.44-69.632H903.168v28.672h12.288c26.624 0 32.768 12.288 32.768 43.008 0 28.672-2.048 55.296-2.048 88.064 0 34.816 8.192 51.2 32.768 55.296v2.048c-26.624 8.192-34.816 24.576-34.816 59.392 0 32.768 2.048 59.392 2.048 88.064 0 30.72-6.144 43.008-32.768 43.008H903.168v28.672h24.576c40.96 0 61.44-16.384 61.44-69.632 0-36.864-4.096-61.44-4.096-94.208 0-18.432 10.24-38.912 43.008-38.912v-30.72c-34.816 0-43.008-20.48-43.008-38.912z" fill="" p-id="2107"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1535633304348" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1446" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M512 0C229.376 0 0 229.376 0 512s229.376 512 512 512 512-229.376 512-512S794.624 0 512 0z m0 962.56C262.144 962.56 61.44 761.856 61.44 512S262.144 61.44 512 61.44s450.56 200.704 450.56 450.56-200.704 450.56-450.56 450.56z" fill="" p-id="1447"></path><path d="M512 512m-409.6 0a409.6 409.6 0 1 0 819.2 0 409.6 409.6 0 1 0-819.2 0Z" fill="#FFEA00" p-id="1448"></path><path d="M657.408 266.24c-90.112 0-161.792 73.728-161.792 163.84v163.84c0 59.392-49.152 108.544-108.544 108.544s-108.544-49.152-108.544-108.544 49.152-108.544 108.544-108.544V430.08c-90.112 0-161.792 73.728-161.792 163.84s71.68 163.84 161.792 163.84 161.792-73.728 161.792-163.84v-163.84c0-59.392 49.152-108.544 108.544-108.544s108.544 49.152 108.544 108.544-49.152 108.544-108.544 108.544V593.92c90.112 0 161.792-73.728 161.792-163.84s-71.68-163.84-161.792-163.84z" fill="" p-id="1449"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" height="70" width="70"><path d="M35 0l35 35-35 35L0 35z" fill="#e3695f"/><path d="M24.58 18.553v14.77L8.884 35.378l20.587 2.695V32.49l15.95 18.956v-14.77l15.697-2.054-20.587-2.695v5.58L24.58 18.553z" fill="#fff"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 191.99999" width="192" height="192"><title>Mocha Logo</title><path d="M169.47386 143.90113l-68.70282 39.69498c-2.958045 1.71756-6.584028 1.71756-9.542066 0L22.52614 143.90113c-2.958038-1.71757-4.77103-4.86645-4.77103-8.20617V56.305021c0-3.435142 1.812992-6.488601 4.77103-8.206172L91.228974 8.403878c2.958038-1.717571 6.584021-1.717571 9.542056 0l68.70282 39.694971c2.95804 1.717571 4.77104 4.866451 4.77104 8.206172v79.389939c-.0954 3.33972-1.90842 6.4886-4.77104 8.20617z" clip-rule="evenodd" fill="#8d6748" fill-rule="evenodd"/><path d="M95.904583 22.049024c.954207 0 1.812992.286262 2.671781.763365l59.351606 34.255996c1.62216.954206 2.67177 2.767198 2.67177 4.67561v68.511985c0 1.90842-1.04962 3.72141-2.67177 4.67562l-59.351606 34.25599c-.858789.47711-1.717574.76336-2.671781.76336-.954206 0-1.908412-.28625-2.671777-.76336L33.881192 134.9316c-1.62215-.95421-2.671778-2.7672-2.671778-4.67562V61.743995c0-1.908412 1.049628-3.721404 2.671778-4.67561l59.351614-34.255996c.858785-.477103 1.812992-.763365 2.671777-.763365m0-2.862618c-1.431309 0-2.862618.381683-4.103085 1.145048L32.449883 54.58745c-2.576357 1.431309-4.103086 4.198506-4.103086 7.061124v68.511996c0 2.95803 1.526729 5.62981 4.103086 7.06112l59.351615 34.25599c1.240467.76337 2.671776 1.14506 4.103085 1.14506 1.431309 0 2.862617-.38169 4.103097-1.14506l59.35159-34.25599c2.57636-1.43131 4.10309-4.1985 4.10309-7.06112V61.648574c0-2.958038-1.52673-5.629815-4.10309-7.061124l-59.35159-34.255996c-1.24048-.763365-2.671788-1.145048-4.103097-1.145048z" fill="#fff"/><path d="M104.3493 61.648574c0-.477103-.381682-.954206-.954206-.954206H85.456021c-.477103 0-.954206.381682-.954206.954206 0 3.2443.477103 14.40851 5.248133 19.847485.190841.190841.381683.286262.667944.286262h8.01533c.286263 0 .477104-.09542.667945-.286262 4.77103-5.343554 5.248133-16.507764 5.248133-19.847485zm-7.061124 17.36655H91.65836c-.286262 0-.477103-.095421-.667944-.286263-3.2443-3.816824-3.625983-11.450472-3.721403-14.122249 0-.477103.381682-.954206.954206-.954206h12.595519c.477103 0 .954206.381683.954206.954206 0 2.671777-.477103 10.210005-3.721403 14.12225-.286262.19084-.477103.286261-.763365.286261zM96.23855 58.785956s3.43514-2.003833 1.335888-5.629816c-1.240468-1.908412-1.812992-3.530562-1.335889-4.198506-1.240468 1.52673-3.339721 3.14888-1.049627 6.584021.763365.858786 1.145048 2.671777 1.049627 3.2443zM92.421725 59.072217s2.290094-1.335888.858785-3.816824c-.858785-1.240467-1.240467-2.385515-.858785-2.767197-.858785 1.049627-2.194674 2.099253-.667944 4.484768.477103.477103.667944 1.717571.667944 2.099253z" fill="#fff"/><path d="M100.246214 70.141007c-.381682 2.576357-1.145047 5.534395-2.767197 7.442807-.190841.190841-.381682.286262-.572524.286262h-4.77103c-.190841 0-.477103-.09542-.572523-.286262-1.145048-1.431309-1.908412-3.33972-2.385515-5.343553 0 0 5.534394.763364 8.683274-.381683 2.290095-.858785 2.385515-1.71757 2.385515-1.71757z" fill="#fff"/><g fill="#fff"><path d="M37.554879 85.599145h3.530562l5.820657 8.969536 5.820657-8.969536h3.530562v19.08412h-3.339721V91.03812l-6.011498 8.969537h-.09542L40.8946 91.13354v13.645146h-3.339721V85.599145zM73.528446 104.969527c-1.43131 0-2.767198-.286262-4.007665-.763365-1.240468-.477103-2.290095-1.240468-3.14888-2.099253-.858786-.858785-1.52673-1.908412-2.003833-3.14888-.477103-1.145047-.763365-2.480936-.763365-3.816824v-.09542c0-1.335889.286262-2.576357.763365-3.816825.477103-1.145047 1.145047-2.194674 2.099253-3.14888.858786-.858785 1.908412-1.62215 3.14888-2.099253 1.240468-.572523 2.576356-.763365 4.007665-.763365 1.43131 0 2.767198.286262 4.007666.763365 1.240468.477103 2.290094 1.240468 3.14888 2.099253.858785.858786 1.52673 1.908412 2.003832 3.14888.477103 1.145048.763365 2.480936.763365 3.816824v.095421c0 1.335888-.286262 2.576356-.763365 3.816824-.477103 1.145047-1.145047 2.194674-2.099253 3.14888-.858785.858785-1.908412 1.62215-3.14888 2.099253-1.240468.572524-2.576356.763365-4.007665.763365zm0-3.05346c.954206 0 1.812991-.19084 2.576356-.572523.763365-.381682 1.43131-.858785 2.003833-1.431309.572523-.572524.954206-1.335888 1.335888-2.099253.286262-.858786.477103-1.717571.477103-2.576356v-.095421c0-.954206-.190841-1.812991-.477103-2.671777-.286262-.858785-.763365-1.52673-1.335888-2.194674-.572524-.572523-1.240468-1.049626-2.003833-1.431309-.763365-.381682-1.62215-.572523-2.576356-.572523-.954206 0-1.812992.19084-2.576356.572523-.763365.381683-1.43131.858786-2.003833 1.43131-.572524.572523-.954206 1.335888-1.335888 2.099253-.286262.858785-.477104 1.71757-.477104 2.576356v.09542c0 .954206.190842 1.812992.477104 2.671777.286261.858786.763364 1.52673 1.335888 2.194674.572524.572524 1.240468 1.049627 2.003833 1.43131.763364.381682 1.71757.572523 2.576356.572523zM99.67369 104.969527c-1.431308 0-2.671776-.286262-3.816823-.763365-1.145048-.477103-2.194674-1.240468-3.05346-2.099253-.858785-.858785-1.52673-1.908412-2.003832-3.14888-.477103-1.240468-.763365-2.480936-.763365-3.816824v-.09542c0-1.335889.286262-2.671777.763365-3.816825.477103-1.145047 1.145047-2.194674 2.003832-3.14888.858786-.858785 1.908412-1.62215 3.14888-2.099253 1.240468-.477103 2.480936-.763365 4.007666-.763365.858785 0 1.62215.095421 2.385515.190842.763364.19084 1.335888.381682 2.003832.572523.572524.286262 1.145047.572524 1.62215.954206.477104.381683.954207.763365 1.43131 1.240468l-2.194674 2.480936c-.763365-.667945-1.52673-1.240468-2.385515-1.717571-.858786-.477103-1.812992-.667944-2.958039-.667944-.954206 0-1.71757.19084-2.480936.572523-.763364.381683-1.431309.858786-2.003832 1.43131-.572524.572523-.954206 1.335888-1.335889 2.099253-.286262.858785-.477103 1.71757-.477103 2.576356v.09542c0 .954206.190841 1.812992.477103 2.671777.286262.858786.763365 1.52673 1.335889 2.194674.572523.572524 1.240468 1.145047 2.003832 1.43131.763365.28626 1.62215.572523 2.480936.572523 1.145047 0 2.194674-.190841 2.958039-.667944.763364-.477103 1.62215-1.049627 2.480935-1.812992l2.194674 2.194674c-.477103.572524-.954206.954206-1.52673 1.431309-.572523.477103-1.145047.763365-1.71757 1.049627-.572524.286261-1.335889.572523-2.003833.667944-.858785.190841-1.71757.190841-2.576356.190841zM114.177622 85.599145h3.339721v7.91991h9.160378v-7.91991h3.339721v19.08412h-3.33972v-8.01533h-9.160379v8.01533h-3.33972v-19.08412zM144.807636 85.503724h3.053459l8.397013 19.179541h-3.530563l-1.908412-4.580189h-8.969536l-2.003833 4.58019h-3.435141l8.397013-19.179542zm4.77103 11.641314l-3.2443-7.633649-3.244301 7.633649h6.4886z"/></g><path fill="#fff" d="M35.169365 110.69476h121.66127v1.049627H35.169365zM156.83062 74.816618h-51.71797c0 .381682-.0954.667943-.0954 1.049626h51.81338v-1.049626zM35.169364 74.816618v1.049626h48.759928c0-.381683-.09542-.667944-.09542-1.049626H35.169365z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" data-v-5d825d8c="" version="1.1" viewBox="0 0 33 33" class="svg-icon svg-fill" style="width: 32px; height: 32px; float: left; display: inline-block;"><g _fill="none" fill-rule="evenodd"><path fill="#409EFF" stroke="none" pid="0" d="M13.606 29.461l-3.413 1.795a3.294 3.294 0 0 1-4.78-3.473l.653-3.8a5.36 5.36 0 0 0-1.542-4.744l-2.761-2.692a3.294 3.294 0 0 1 1.825-5.618l3.816-.554a5.36 5.36 0 0 0 4.036-2.933l1.706-3.457a3.294 3.294 0 0 1 5.908 0l1.706 3.457a5.36 5.36 0 0 0 4.036 2.933l3.816.554a3.294 3.294 0 0 1 1.825 5.618l-2.761 2.692a5.36 5.36 0 0 0-1.542 4.744l.652 3.8a3.294 3.294 0 0 1-4.779 3.473l-3.413-1.795a5.36 5.36 0 0 0-4.988 0z" _fill="#000"></path><path fill="#FFF" stroke="none" pid="1" d="M15.414 11.754h1.867L21.738 22h-2.547l-.883-2.17h-3.98L13.476 22h-2.49l4.429-10.246zm.868 2.981l-1.244 3.184h2.503l-1.259-3.184z" _fill="#FFF"></path></g></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg style="width:308px;height:308px;" version="1.1" id="图形" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<path class="svgpath" data-index="path_0" fill="#339966" d="M167.2615 323.8308c-10.2769 2.7846-11.2308 14-11.2308 14 0 5.7231 0.9538 10.1231 9.4615 14.7077 8.5692 4.6 20.2154-4.5846 20.2154-13.0615C185.7077 331.0308 177.4462 320.9846 167.2615 323.8308zM952.4615 425.9538c-15.6-8.7846-66.6154-17.9846-113.4615-5.5231-0.0308 0.0308-0.0923 0.0308-0.1538 0.0308-0.0308 0-0.0923 0.0308-0.1538 0.0308-46.6923 12.3077-75.0923-13.6154-75.0923-13.6154C621.5385 255.9385 502.7692 199.6154 424.9077 179.5077c-4.3231-1.0923-8.4769-2.1077-12.5231-2.9692-24.2462-5.6462-49.4615-8.8308-75.3846-8.8308-91.8154 0-174.9077 37.2-235 97.3692-6.7846-5.8615-15.8-9.0154-25.7538-6.3385-21.1846 5.8769-23.1692 28.8462-23.1692 28.8462 0 9.2 1.2923 16.6769 10.2154 23.9538-17.2154 25.0615-31.0769 52.4-40.9846 81.7231-1.4462 6-4.7538 26.7385 17.0308 31.1077 32.4154 6.4615 49.0462 9.9077 53.0923 22.3385 3.5231 10.8615 0.3846 27.2769-19.2923 29-10.8462 0.9538-44.1692-10.5846-56.1538-37.9846-4.0308-4.0308-6.0462-0.3846-6.5846 0.9538-3.6923 19.8308-5.7077 40.3538-5.7077 61.2769C4.6923 683.5385 153.4308 832.3077 336.9846 832.3077c132.3077 0 246.4769-77.3385 300-189.2462 10.6-22.2923 18.7538-45.9077 24.2462-70.5846 1.3231-6.0769 2.5538-12.2 3.5692-18.3846 4.7846-19.8615 13.4-34.6769 43.0923-43.7846 66.3692-20.2462 64.0923 85.4923 98.9538 143.9538s81.0154 90.1692 112.4462 56.4308c31.5538-33.7077 70.4615-181.2769 70.4615-181.2769C1005.8923 470.3692 984.7692 440.1538 952.4615 425.9538zM155.7538 359.5077c-19.7385-10.6308-21.9385-20.7846-21.9385-34.0462 0 0 2.2-25.8462 25.8154-32.3692 23.6462-6.5385 42.7538 16.6923 42.7538 36.2154C202.3846 348.8769 175.4615 370.1231 155.7538 359.5077z" />
</svg>
此差异已折叠。
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1537675132978" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1705" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M512 1016c-13.4 0-27-3.6-38.8-10.4l-123.4-73c-18.4-10.4-9.4-14-3.4-16 24.6-8.6 29.6-10.4 55.8-25.4 2.8-1.6 6.4-1 9.2 0.8l94.8 56.2c3.4 2 8.2 2 11.4 0l369.4-213.2c3.4-2 5.6-6 5.6-10V298.6c0-4.2-2.2-8-5.8-10.2L517.6 75.4c-3.4-2-8-2-11.4 0L137.2 288.6c-3.6 2-5.8 6-5.8 10.2v426.2c0 4 2.2 8 5.8 9.8l101.2 58.4c55 27.4 88.6-4.8 88.6-37.4V335c0-6 4.8-10.6 10.8-10.6h46.8c5.8 0 10.8 4.6 10.8 10.6V756c0 73.2-40 115.2-109.4 115.2-21.4 0-38.2 0-85-23.2l-96.8-55.8C80.2 778.4 65.4 752.6 65.4 724.8V298.6c0-27.6 14.8-53.6 38.8-67.4L473.2 18c23.4-13.2 54.4-13.2 77.6 0l369.4 213.4c24 13.8 38.8 39.6 38.8 67.4v426.2c0 27.6-14.8 53.4-38.8 67.4L550.8 1005.6c-11.8 6.8-25.2 10.4-38.8 10.4z m298.2-420.2c0-79.8-54-101-167.4-116-114.8-15.2-126.4-23-126.4-49.8 0-22.2 9.8-51.8 94.8-51.8 75.8 0 103.8 16.4 115.4 67.6 1 4.8 5.4 8.4 10.4 8.4h48c3 0 5.8-1.2 7.8-3.4s3-5.2 2.8-8.2c-7.4-88.2-66-129.2-184.4-129.2-105.4 0-168.2 44.4-168.2 119 0 80.8 62.6 103.2 163.6 113.2 121 11.8 130.4 29.6 130.4 53.4 0 41.2-33.2 58.8-111 58.8-97.8 0-119.2-24.6-126.4-73.2-0.8-5.2-5.2-9-10.6-9h-47.8c-6 0-10.6 4.8-10.6 10.6 0 62.2 33.8 136.4 195.6 136.4 116.8-0.2 184-46.4 184-126.8z" fill="#1afa29" p-id="1706"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1539178418527" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2639" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M352.814545 385.396364m-33.512727 0a33.512727 33.512727 0 1 0 67.025455 0 33.512727 33.512727 0 1 0-67.025455 0Z" fill="#50B674" p-id="2640"></path><path d="M502.690909 384.465455m-33.512727 0a33.512727 33.512727 0 1 0 67.025454 0 33.512727 33.512727 0 1 0-67.025454 0Z" fill="#50B674" p-id="2641"></path><path d="M576.232727 534.341818m-23.272727 0a23.272727 23.272727 0 1 0 46.545455 0 23.272727 23.272727 0 1 0-46.545455 0Z" fill="#50B674" p-id="2642"></path><path d="M694.458182 536.203636m-23.272727 0a23.272727 23.272727 0 1 0 46.545454 0 23.272727 23.272727 0 1 0-46.545454 0Z" fill="#50B674" p-id="2643"></path><path d="M512 0C229.003636 0 0 229.003636 0 512s229.003636 512 512 512 512-229.003636 512-512S794.996364 0 512 0z m-87.505455 630.225455c-26.996364 0-48.407273-5.585455-75.403636-11.17091l-75.403636 37.236364 21.410909-64.232727c-53.992727-37.236364-85.643636-85.643636-85.643637-145.221818 0-102.4 96.814545-182.458182 215.04-182.458182 105.192727 0 198.283636 64.232727 216.901819 150.807273-6.516364-0.930909-13.963636-0.930909-20.48-0.93091-102.4 0-182.458182 76.334545-182.458182 170.356364 0 15.825455 2.792727 30.72 6.516363 44.683636-7.447273 0-13.963636 0.930909-20.48 0.93091z m314.647273 75.403636l15.825455 53.992727-58.647273-32.581818c-21.410909 5.585455-42.821818 11.170909-64.232727 11.170909-102.4 0-182.458182-69.818182-182.458182-155.461818s80.058182-155.461818 182.458182-155.461818c96.814545 0 182.458182 69.818182 182.458182 155.461818 0 47.476364-31.650909 90.298182-75.403637 122.88z" fill="#50B674" p-id="2644"></path></svg>
\ No newline at end of file
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1540086275227" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1495" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M1001.632 793.792c-7.84-13.856-26.016-37.536-93.12-83.2a1096.224 1096.224 0 0 0-125.152-74.144c-30.592-82.784-89.824-190.112-176.256-319.36-93.056-139.168-201.12-197.792-321.888-174.56a756.608 756.608 0 0 0-40.928-37.696C213.824 78.688 139.2 56.48 96.32 60.736c-19.424 1.952-34.016 9.056-43.36 21.088-21.664 27.904-14.432 68.064 85.504 198.912 19.008 55.616 23.072 84.672 23.072 99.296 0 30.912 15.968 66.368 49.984 110.752l-32 109.504c-28.544 97.792 23.328 224.288 71.616 268.384 25.76 23.552 47.456 20.032 58.176 15.84 21.504-8.448 38.848-29.472 50.048-89.504 5.728 14.112 11.808 29.312 18.208 45.6 34.56 87.744 68.352 136.288 106.336 152.736a32.032 32.032 0 0 0 25.44-58.688c-9.408-4.096-35.328-23.712-72.288-117.504-31.168-79.136-53.856-132.064-69.376-161.856a32.224 32.224 0 0 0-35.328-16.48 32.032 32.032 0 0 0-25.024 29.92c-3.872 91.04-13.056 130.4-19.2 147.008-26.496-30.464-68.128-125.984-47.232-197.536 20.768-71.232 32.992-112.928 36.64-125.248a31.936 31.936 0 0 0-5.888-29.28c-41.664-51.168-46.176-75.584-46.176-83.712 0-29.472-9.248-70.4-28.288-125.152a31.104 31.104 0 0 0-4.768-8.896c-53.824-70.112-73.6-105.216-80.832-121.888 25.632 1.216 74.336 15.04 91.008 29.376a660.8 660.8 0 0 1 49.024 46.304c8 8.448 19.968 11.872 31.232 8.928 100.192-25.92 188.928 21.152 271.072 144 87.808 131.328 146.144 238.048 173.408 317.216a32 32 0 0 0 16.384 18.432 1004.544 1004.544 0 0 1 128.8 75.264c7.392 5.024 14.048 9.696 20.064 14.016h-98.848a32.032 32.032 0 0 0-24.352 52.736 3098.752 3098.752 0 0 0 97.856 110.464 32 32 0 1 0 46.56-43.872 2237.6 2237.6 0 0 1-50.08-55.328h110.08a32.032 32.032 0 0 0 27.84-47.776z" p-id="1496" fill="#1296db"></path><path d="M320 289.472c12.672 21.76 22.464 37.344 29.344 46.784 8.288 16.256 21.184 29.248 29.44 45.536l2.016-1.984c14.528-9.952 25.92-49.504 2.752-75.488-12.032-18.176-51.04-17.664-63.552-14.848z" p-id="1497" fill="#1296db"></path></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" width="417.61" height="314.78" viewBox="0 0 417.606 314.78"><path fill="#DD3735" d="M102.14 314.78h50.856l16.684-53.386h78.36l16.507 53.386h50.856L207.763 0l-105.63 314.78zM209.36 138.7l26.846 85.54H181.35l27.012-85.54h.997zm208.25 116.42l-6.583-20.572-109.03-10.285 12.755 37.03 102.85-6.17zm-302-30.86L6.58 234.55l-6.583 20.57 102.86 6.172 12.75-37.03z"/></svg>
\ No newline at end of file
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册