Commit 81adb21e by 牛晓林

add 微信小程序

parent dbf7b2b1
......@@ -2,7 +2,7 @@
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
......
任何从QwqOffice软件工作室(https://www.qwqoffice.com)下载的软件(以下称“软件”),均由QwqOffice软件工作室开发,版权归QwqOffice软件工作室所有
使用"软件"必须受最终用户许可协议(以下称"许可协议")的条款的约束。
除非最终用户首先同意"许可协议"的条款,否则不能安装或使用任何"软件"。
WooCommerce微信小程序最终用户许可协议
经过授权最终用户使用的WooCommerce微信小程序(以下称“小程序”),仅可用作最终用户搭建自营商城小程序线上销售商品,除此之外的任何其它用途并未在授权使用范围内,包括但不限于转售、出租、复制或再分发经许可获取的源码,或将源码部分或全部用于其它产品中。
对于违反上述协议、或未经QwqOffice软件工作室书面许可的使用行为,均保留追究法律责任的权利。
\ No newline at end of file
{
"pages": [
"pages/index/index",
"pages/category/category",
"pages/cart/cart",
"pages/my/my",
"pages/product-detail/product-detail",
"pages/checkout/checkout",
"pages/coupon/coupon",
"pages/order-detail/order-detail",
"pages/order-list/order-list",
"pages/about/about",
"pages/product-list/product-list",
"pages/shipping-detail/shipping-detail",
"pages/address-list/address-list",
"pages/address-edit/address-edit",
"pages/my-coupon/my-coupon",
"pages/coupon-center/coupon-center",
"pages/order-review-list/order-review-list",
"pages/order-review-post/order-review-post",
"pages/web-view/web-view",
"pages/product-review-list/product-review-list",
"pages/post-list/post-list",
"pages/post-detail/post-detail",
"pages/search/search"
],
"window": {
"backgroundTextStyle": "light",
"backgroundColor": "#96588a",
"navigationBarBackgroundColor": "#96588a",
"navigationBarTitleText": "WooCommerce微信小程序",
"navigationBarTextStyle": "white",
"navigationStyle": "custom",
"enablePullDownRefresh": true,
"onReachBottomDistance": 40
},
"tabBar": {
"color": "#707070",
"selectedColor": "#96588a",
"borderStyle": "#707070",
"list": [
{
"selectedIconPath": "images/home_fill_light.png",
"iconPath": "images/home_light.png",
"pagePath": "pages/index/index",
"text": "首页"
},
{
"selectedIconPath": "images/category_fill.png",
"iconPath": "images/category.png",
"pagePath": "pages/category/category",
"text": "分类"
},
{
"selectedIconPath": "images/form_fill_light.png",
"iconPath": "images/form_light.png",
"pagePath": "pages/post-list/post-list",
"text": "资讯"
},
{
"selectedIconPath": "images/cart_fill_light.png",
"iconPath": "images/cart_light.png",
"pagePath": "pages/cart/cart",
"text": "购物车"
},
{
"selectedIconPath": "images/my_fill_light.png",
"iconPath": "images/my_light.png",
"pagePath": "pages/my/my",
"text": "我的"
}
]
},
"navigateToMiniProgramAppIdList": [
],
"debug": false
}
\ No newline at end of file
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function(obj) {
return typeof obj;
} : function(obj) {
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
};
var SizeAttrs = ['height', 'width', 'paddingTop', 'paddingRight', 'paddingBottom', 'paddingLeft', 'marginTop', 'marginRight', 'marginBottom', 'marginLeft', 'top', 'right', 'bottom', 'left', 'lineHeight', 'fontSize'];
var DashedSizeAttrs = SizeAttrs.map(function(attr) {
return camelCase2Dash(attr);
});
function camelCase2Dash(str) {
return str.replace(/([a-zA-Z])(?=[A-Z])/g, '$1-').toLowerCase();
}
function getUnitizedValue(value) {
if (/^\d+(\.\d+)?$/.test(value)) {
return value + 'px';
} else {
return value;
}
}
function getPlainStyle(target) {
if (!target) {
return '';
}
var style = '';
var type = typeof target === 'undefined' ? 'undefined' : _typeof(target);
if (type === 'string') {
style = target;
} else if (type === 'object') {
var dashAttr = '';
Object.keys(target).forEach(function(attr) {
dashAttr = camelCase2Dash(attr);
if (target[attr]) {
if (DashedSizeAttrs.indexOf(dashAttr) > -1 || SizeAttrs.indexOf(attr) > -1) {
style += dashAttr + ': ' + getUnitizedValue(target[attr]) + ';';
} else {
style += dashAttr + ': ' + target[attr] + ';';
}
}
});
}
return style;
}
Component({
behaviors: [],
properties: {
customStyle: {
type: Object | String
},
title: {
type: String
}
},
options: {
multipleSlots: true
},
ready: function ready() {
var height = wx.STATUS_BAR_HEIGHT + wx.DEFAULT_HEADER_HEIGHT;
var style = this.data.customStyle || {};
style.height = height;
style.paddingTop = wx.STATUS_BAR_HEIGHT;
this.setData({
statusBarHeight: wx.STATUS_BAR_HEIGHT,
selfCustomStyle: getPlainStyle(style)
});
}
});
\ No newline at end of file
{
"usingComponents": {},
"component": true
}
\ No newline at end of file
<view class="ui-nav-bar" style="{{ selfCustomStyle }}">
<slot name="content"></slot>
</view>
<slot name="placeholder"></slot>
\ No newline at end of file
.ui-nav-bar {
position: fixed;
top: 0;
left: 0;
width: 100%;
font-size: 14px;
z-index: 490;
user-select: none;
box-sizing: border-box;
}
.ui-nav-bar-content {
display: flex;
}
.ui-nav-bar-content .nav-bar-left {
position: relative;
padding: 0 30px;
}
.ui-nav-bar-content .nav-bar-center {
position: relative;
flex: 1;
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
box-sizing: border-box;
}
.ui-nav-bar-content .nav-bar-right {
text-align: right;
}
.ui-nav-bar-more:after {
content: "\2022\0020\2022\0020\2022\0020";
font-size: 16px;
}
{
"usingComponents": {},
"component": true
}
\ No newline at end of file
<view class="ui-slider" style="position: relative;{{sliderStyle}}">
<!-- slider的外部 -->
<view class="slider-line-touch" bindtap="touchStartLineHandler" style="{{sliderLineTouchStyle}}">
<view class="slider-line-background" style="{{sliderLineBackgroundStyle}}"></view>
<view class="slider-line" style="{{sliderLineStyle}};{{sliderLineDynamicStyle}};{{sliderBarAnimateStyle}}"></view>
</view>
<view class="slider-bar-wrap1" id="wrap1" catchtouchmove="touchMoveHandler" catchtouchstart="touchStartHandler" catchtouchend="touchEndHandler" style="{{sliderBarWrapStyle}};{{sliderBarWrapDynamicStyle}};{{sliderBarAnimateStyle}}">
<view class="tooltip">{{unlimited ? value[0] > max - step ? '不限' : value[0] : value[0]}}</view>
<view class="slider" style="{{sliderBarStyle}};{{sliderBarAnimateStyle}};{{thumbDownCustomStyle}}"></view>
</view>
<view class="slider-bar-wrap2" id="wrap2" catchtouchmove="touchMove2Handler" catchtouchstart="touchStart2Handler" catchtouchend="touchEnd2Handler" style="{{sliderBarWrapStyle}};{{sliderBarWrap2DynamicStyle}};{{sliderBarAnimateStyle}}">
<view class="tooltip">{{unlimited ? value[1] > max - step ? '不限' : value[1] : value[1]}}</view>
<view class="slider" style="{{sliderBarStyle}};{{sliderBarAnimateStyle}};{{thumbDown2CustomStyle}}">
</view>
</view>
</view>
\ No newline at end of file
.ui-slider {
font-size: 14px;
position: relative;
width: 100%;
height: 30px;
}
.ui-slider .value {
position: absolute;
font-size: 12px;
top: 28px;
}
.ui-slider .slider-line-touch {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 30px;
background-color: transparent;
}
.ui-slider .slider-buffer-line {
position: absolute;
left: 0;
width: 0;
height: 4px;
background-color: #bbb;
}
.ui-slider .slider-line-background {
position: absolute;
left: 0;
width: 100%;
height: 4px;
background-color: #bbb;
}
.ui-slider .slider-line {
position: absolute;
left: 0;
width: 0;
height: 4px;
background-color: #39f;
}
.ui-slider .slider-bar-wrap1 {
position: absolute;
}
.ui-slider .slider-bar-wrap2 {
position: absolute;
}
.ui-slider .slider {
position: absolute;
width: 30px;
height: 30px;
background-color: white;
box-shadow: 0px 3px 13px 0px #ccc;
border-radius: 50%;
z-index: 2;
}
.ui-slider .tooltip {
position: absolute;
top: -25px;
left: 50%;
transform: translateX(-50%);
width: auto;
height: 30px;
text-align: center;
white-space: nowrap;
}
.ui-slider .slider-scale-line {
position: absolute;
width: 1px;
background-color: gray;
height: 4px;
}
.ui-slider .slider-key-line-scale {
position: absolute;
width: 1px;
background-color: gray;
height: 8px;
}
.ui-slider .slider-key-line-scale-number {
position: absolute;
width: 100px;
top: 18px;
text-align: center;
height: 10px;
}
.ui-slider .slider-scale-line-wrap {
position: absolute;
}
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function(obj) {
var rstr = '@_@_@_@_@_@_@_';
var str = JSON.stringify(obj);
if (str) {
var arr = str.match(/\(.*?\)/g);
var newStr = str.replace(/\(.*?\)/g, '@_@_@_@_@_@_@_').replace(/"|{|}/g, '').replace(/,/g, ';');
if (arr && arr.length) {
arr.forEach(function(item, index) {
newStr = newStr.replace('@_@_@_@_@_@_@_', item);
});
}
return newStr;
} else {
return '';
}
};
\ No newline at end of file
var _objectToStyle = require('./objectToStyle.js');
var _objectToStyle2 = _interopRequireDefault(_objectToStyle);
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
function _defineProperty(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
module.exports = Behavior({
properties: {
value: {
type: [Number, Array],
value: 0,
observer: function observer(val) {
var _setData;
if (this.data.unlimited) {
this.data.max += this.data.step;
}
this.data.value[0] = this.data.value[0] < this.data.min ? this.data.min : this.data.value[0];
this.data.value[1] = this.data.value[1] < this.data.min ? this.data.min : this.data.value[1];
this.data.value[0] = this.data.value[0] > this.data.max ? this.data.max : this.data.value[0];
this.data.value[1] = this.data.value[1] > this.data.max ? this.data.max : this.data.value[1];
this.data.value[0] = this.data.value[0] > this.data.value[1] ? this.data.value[1] : this.data.value[0];
// value 转 offsetX
this.data.offsetX = this.value2Offset(this.data.value[0]);
this.data.offset2X = this.value2Offset(this.data.value[1]);
this.setData((_setData = {
offset2X: this.data.offset2X,
offsetX: this.data.offsetX,
value: val,
max: this.data.max,
sliderBarAnimateStyle: (0, _objectToStyle2.default)(this.sliderBarAnimateStyleObj()),
sliderBarWrapStyle: (0, _objectToStyle2.default)(this.sliderBarWrapStyleObj()),
sliderBarWrapDynamicStyle: (0, _objectToStyle2.default)(this.sliderBarWrapDynamicStyleObj()),
sliderLineDynamicStyle: (0, _objectToStyle2.default)(this.sliderLineDynamicStyleObj())
}, _defineProperty(_setData, 'sliderBarAnimateStyle', (0, _objectToStyle2.default)(this.sliderBarAnimateStyleObj())), _defineProperty(_setData, 'sliderBarWrap2DynamicStyle', (0, _objectToStyle2.default)(this.sliderBarWrap2DynamicStyleObj())), _defineProperty(_setData, 'sliderLineDynamicStyle', (0, _objectToStyle2.default)(this.sliderLineDynamicStyleObj())), _defineProperty(_setData, 'thumbDownCustomStyle', ''), _setData));
}
},
sliderWeight: {
type: Number,
value: 2
},
backgroundColor: {
type: String,
value: '#CCC'
},
barBorderRadius: {
type: Number,
value: 1
},
thumbSize: {
type: Number,
value: 28
},
activeColor: {
type: String
},
height: {
type: Number,
value: 70
},
width: {
type: Number,
value: 260
},
containerWidth: {
type: Number,
value: 0
},
min: {
type: Number,
value: 0
},
max: {
type: Number,
value: 100
},
step: {
type: Number,
value: 1
},
thumbDownStyle: {
type: Object,
value: {}
},
unlimited: {
type: Boolean,
value: false
},
}
});
\ No newline at end of file
module.exports = Behavior({
data: {},
methods: {
sliderBarAnimateStyleObj: function sliderBarAnimateStyleObj() {
var style = {};
style['transition'] = this.data.animate;
return style;
},
sliderBarWrapStyleObj: function sliderBarWrapStyleObj() {
var style = {};
style.top = this.data.height / 2 - this.data.thumbSize / 2 + 'px';
style.left = this.data.valueAlignLeft - this.data.thumbSize / 2 + 'px';
return style;
},
sliderBarStyleObj: function sliderBarStyleObj() {
var style = {};
style.height = this.data.thumbSize + 'px';
style.width = this.data.thumbSize + 'px';
style['background-color'] = this.data.activeColor;
return style;
}
}
});
\ No newline at end of file
module.exports = Behavior({
data: {
sliderBarWrapStyle: ''
},
methods: {
sliderBarWrapDynamicStyleObj: function sliderBarWrapDynamicStyleObj() {
var style = {};
style['z-index'] = this.data.zIndex;
style['transform'] = 'translate3d(' + this.data.offsetX + 'px, 0, 0)';
style.height = this.data.thumbSize + 'px';
style.width = this.data.thumbSize + 'px';
return style;
}
}
});
\ No newline at end of file
module.exports = Behavior({
data: {
sliderBarWrapStyle: ''
},
methods: {
sliderBarWrap2DynamicStyleObj: function sliderBarWrap2DynamicStyleObj() {
var style = {};
style['z-index'] = this.data.zIndex2;
style['transform'] = 'translate3d(' + this.data.offset2X + 'px, 0, 0)';
style.height = this.data.thumbSize + 'px';
style.width = this.data.thumbSize + 'px';
return style;
}
}
});
\ No newline at end of file
module.exports = Behavior({
data: {
sliderLineTouchStyle: '',
sliderLineBackgroundStyle: '',
sliderLineStyle: ''
},
methods: {
touchMoveHandler: function touchMoveHandler(e) {
// this.
},
touchStartHandler: function touchStartHandler(e) {},
sliderLineStyleObj: function sliderLineStyleObj() {
var style = {};
style['background-color'] = this.data.activeColor;
style.top = this.data.thumbSize / 2 - this.data.sliderWeight / 2 + 'px';
style.height = this.data.sliderWeight + 'px';
// style.left = this.data.valueAlignLeft + 'px'
style['border-radius'] = this.data.barBorderRadius + 'px';
return style;
},
sliderLineBackgroundStyleObj: function sliderLineBackgroundStyleObj() {
var style = {};
style['background-color'] = this.data.backgroundColor;
// style.left = this.data.valueAlignLeft + 'px'
style.top = this.data.thumbSize / 2 - this.data.sliderWeight / 2 + 'px';
style.height = this.data.sliderWeight + 'px';
style['border-radius'] = this.data.barBorderRadius + 'px';
return style;
},
sliderLineTouchStyleObj: function sliderLineTouchStyleObj() {
var style = {};
style.left = this.data.valueAlignLeft + 'px';
style.top = this.data.height / 2 - this.data.thumbSize / 2 + 'px';
style.height = this.data.thumbSize + 'px';
style.width = this.data.width - this.data.valueAlignWidth + 'px';
return style;
},
sliderLineDynamicStyleObj: function sliderLineDynamicStyleObj() {
var style = {};
style['background-color'] = this.data.activeColor;
style.width = this.data.offsetX + 'px';
style.left = this.data.offsetX + 'px';
style.width = this.data.offset2X - this.data.offsetX + 'px';
return style;
}
}
});
\ 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="1533212179027" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4200" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M512 100.693333C285.013333 100.693333 100.693333 285.013333 100.693333 512S285.013333 923.306667 512 923.306667 923.306667 738.986667 923.306667 512 738.986667 100.693333 512 100.693333zM512 887.466667C303.786667 887.466667 136.533333 718.506667 136.533333 512S305.493333 136.533333 512 136.533333c208.213333 0 375.466667 168.96 375.466667 375.466667s-167.253333 375.466667-375.466667 375.466667z" fill="#707070" p-id="4201"></path><path d="M512 423.253333c-11.946667 0-22.186667 10.24-22.186667 22.186667v264.533333c0 11.946667 10.24 22.186667 22.186667 22.186667 11.946667 0 22.186667-10.24 22.186667-22.186667V445.44c0-11.946667-10.24-22.186667-22.186667-22.186667z m0-133.12c-17.066667 0-30.72 13.653333-30.72 30.72 0 10.24 5.12 20.48 15.36 25.6 5.12 3.413333 10.24 3.413333 15.36 3.413334s10.24-1.706667 15.36-3.413334c8.533333-5.12 15.36-15.36 15.36-25.6 0-17.066667-13.653333-30.72-30.72-30.72z" fill="#707070" p-id="4202"></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="1534845100331" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4908" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M832 490.666667H533.333333V194.133333c0-12.8-8.533333-21.333333-21.333333-21.333333s-21.333333 8.533333-21.333333 21.333333V490.666667l-298.666667-2.133334c-12.8 0-21.333333 8.533333-21.333333 21.333334s8.533333 21.333333 21.333333 21.333333l298.666667 2.133333v298.666667c0 12.8 8.533333 21.333333 21.333333 21.333333s21.333333-8.533333 21.333333-21.333333V533.333333h298.666667c12.8 0 21.333333-8.533333 21.333333-21.333333 0-10.666667-10.666667-21.333333-21.333333-21.333333z" p-id="4909" fill="#707070"></path></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<path fill="#fff" d="M42,56c-0.5,0-1.1-0.1-1.3-0.5L18,33.5c-0.4-0.4-0.7-0.9-0.7-1.5c0-0.6,0.3-1.1,0.7-1.5l22.8-22
c0.8-0.8,2-0.8,2.8,0s0.8,2,0,2.8L22.3,32l21.1,20.5c0.8,0.8,0.8,2,0,2.8C43,55.8,42.5,56,42,56z"/>
</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="1536724202114" class="icon" style="" viewBox="0 0 1170 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5465" xmlns:xlink="http://www.w3.org/1999/xlink" width="73.125" height="64"><defs><style type="text/css"></style></defs><path d="M585.142857 384q68 0 116.285714 48.285714T749.714286 548.571429t-48.285715 116.285714T585.142857 713.142857t-116.285714-48.285714T420.571429 548.571429t48.285714-116.285715T585.142857 384z m402.285714-237.714286q60.571429 0 103.428572 42.857143t42.857143 103.428572v512q0 60.571429-42.857143 103.428571t-103.428572 42.857143H182.857143q-60.571429 0-103.428572-42.857143t-42.857142-103.428571V292.571429q0-60.571429 42.857142-103.428572t103.428572-42.857143h128l29.142857-77.714285q10.857143-28 39.714286-48.285715T438.857143 0h292.571428q30.285714 0 59.142858 20.285714T830.285714 68.571429l29.142857 77.714285h128z m-402.285714 658.285715q105.714286 0 180.857143-75.142858T841.142857 548.571429t-75.142857-180.857143T585.142857 292.571429 404.285714 367.714286 329.142857 548.571429t75.142857 180.857142T585.142857 804.571429z" p-id="5466" fill="#707070"></path></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<path fill="#96588a" d="M13,54c0,1.8,1.5,3.3,3.3,3.3c1.8,0,3.3-1.5,3.3-3.3c0,0,0,0,0,0c0-1.8-1.5-3.3-3.3-3.3
C14.5,50.7,13,52.2,13,54C13,54,13,54,13,54z"/>
<path fill="#96588a" d="M46.2,54c0,1.8,1.5,3.3,3.3,3.3c1.8,0,3.3-1.5,3.3-3.3l0,0c0-1.8-1.5-3.3-3.3-3.3C47.7,50.7,46.2,52.2,46.2,54z
"/>
<path fill="#96588a" d="M54.9,18.9c-0.9-1.1-2.3-1.7-3.7-1.7H12.5L11,9.6c-0.3-2.4-2.4-4.3-4.9-4.3H3.5c-0.8,0-1.3,0.5-1.3,1.3
S2.7,8,3.5,8h2.5c1.2,0,2.3,0.9,2.4,2.1l1.9,9.9l3.3,23.2c0.3,2.5,2.5,4.7,4.9,4.7h26.9l2.1,0.1c2.5,0,4.7-2,4.9-4.4l3.1-21.2
C55.9,21.1,55.7,19.9,54.9,18.9z"/>
</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="1534789766662" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5787" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M921.6 302.933333c-14.933333-17.066667-34.133333-25.6-57.6-25.6H343.466667c-12.8 0-21.333333 8.533333-21.333334 21.333334s8.533333 21.333333 21.333334 21.333333h520.533333c10.666667 0 19.2 4.266667 25.6 10.666667 4.266667 6.4 8.533333 14.933333 6.4 25.6l-49.066667 341.333333c-2.133333 14.933333-21.333333 27.733333-38.4 27.733333H349.866667c-17.066667 0-36.266667-19.2-38.4-40.533333l-53.333334-371.2-29.866666-157.866667C224 115.2 187.733333 85.333333 147.2 85.333333H106.666667c-12.8 0-21.333333 10.666667-21.333334 21.333334s10.666667 21.333333 21.333334 21.333333h40.533333c19.2 0 36.266667 14.933333 38.4 34.133333l29.866667 157.866667 53.333333 371.2c4.266667 42.666667 40.533333 76.8 78.933333 76.8h460.8c40.533333 0 74.666667-27.733333 81.066667-64L938.666667 362.666667c4.266667-21.333333-2.133333-42.666667-17.066667-59.733334z" fill="#707070" p-id="5788"></path><path d="M313.6 866.133333m-53.333333 0a53.333333 53.333333 0 1 0 106.666666 0 53.333333 53.333333 0 1 0-106.666666 0Z" fill="#707070" p-id="5789"></path><path d="M842.666667 866.133333m-53.333334 0a53.333333 53.333333 0 1 0 106.666667 0 53.333333 53.333333 0 1 0-106.666667 0Z" fill="#707070" p-id="5790"></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="1534789766662" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5787" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M921.6 302.933333c-14.933333-17.066667-34.133333-25.6-57.6-25.6H343.466667c-12.8 0-21.333333 8.533333-21.333334 21.333334s8.533333 21.333333 21.333334 21.333333h520.533333c10.666667 0 19.2 4.266667 25.6 10.666667 4.266667 6.4 8.533333 14.933333 6.4 25.6l-49.066667 341.333333c-2.133333 14.933333-21.333333 27.733333-38.4 27.733333H349.866667c-17.066667 0-36.266667-19.2-38.4-40.533333l-53.333334-371.2-29.866666-157.866667C224 115.2 187.733333 85.333333 147.2 85.333333H106.666667c-12.8 0-21.333333 10.666667-21.333334 21.333334s10.666667 21.333333 21.333334 21.333333h40.533333c19.2 0 36.266667 14.933333 38.4 34.133333l29.866667 157.866667 53.333333 371.2c4.266667 42.666667 40.533333 76.8 78.933333 76.8h460.8c40.533333 0 74.666667-27.733333 81.066667-64L938.666667 362.666667c4.266667-21.333333-2.133333-42.666667-17.066667-59.733334z" fill="#96588a" p-id="5788"></path><path d="M313.6 866.133333m-53.333333 0a53.333333 53.333333 0 1 0 106.666666 0 53.333333 53.333333 0 1 0-106.666666 0Z" fill="#96588a" p-id="5789"></path><path d="M842.666667 866.133333m-53.333334 0a53.333333 53.333333 0 1 0 106.666667 0 53.333333 53.333333 0 1 0-106.666667 0Z" fill="#96588a" p-id="5790"></path></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<path fill="#96588a" d="M60.5,57.5l-4.7-4.3c1.7-2.1,2.7-4.7,2.7-7.6c0-6.8-5.6-12.2-12.5-12.2c-6.9,0-12.5,5.5-12.5,12.2
c0,6.7,5.6,12.2,12.5,12.2c3.1,0,5.9-1.1,8.1-2.9l4.7,4.4c0.3,0.2,0.6,0.3,0.9,0.3c0.3,0,0.7-0.1,0.9-0.4C61,58.7,61,57.9,60.5,57.5
z M46,55.3c-5.5,0-10-4.4-10-9.8c0-5.4,4.5-9.8,10-9.8c5.5,0,10,4.4,10,9.8C55.9,50.9,51.5,55.3,46,55.3z"/>
<path fill="#96588a" d="M13,5.9c-3.9,0-7,3.2-7,7v10.3c0,3.9,3.1,7,7,7h10.3c3.9,0,7-3.1,7-7V12.9c0-3.8-3.1-7-7-7H13z"/>
<path fill="#96588a" d="M41.1,5.9c-3.8,0-7,3.2-7,7v10.3c0,3.9,3.2,7,7,7h10.3c3.8,0,7-3.1,7-7V12.9c0-3.8-3.2-7-7-7H41.1z"/>
<path fill="#96588a" d="M13,34c-3.9,0-7,3.2-7,7v10.3c0,3.8,3.1,7,7,7h10.3c3.9,0,7-3.2,7-7V41c0-3.8-3.1-7-7-7H13z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 982.8 307.5" style="enable-background:new 0 0 982.8 307.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:#DCDCDC;}
.st1{fill:#FDFDFD;}
.st2{fill:#FEFEFE;}
.st3{fill:#FCFCFC;}
</style>
<g>
<path class="st0" d="M347.5,0c114.6,0,229.3,0,343.9,0c2.3,0,3.1,0.3,3.5,2.9c1.4,9.5,9.2,16,18.6,16c9.3,0,17.3-6.7,18.5-16.1
c0.3-2.6,1.3-2.7,3.4-2.7c21.8,0,43.6,0,65.4,0c59.4,0,118.7,0,178.1,0c3.8,0,3.8,0,3.8,3.9c0,0.5-0.1,0.9,0,1.4
c0.3,2.1-0.2,3-2.6,3.2c-6.2,0.5-10.7,5.9-10.6,12.1c0.1,6.1,4.6,11.3,10.6,11.8c2.4,0.2,3,1.1,2.6,3.2c0,0.3,0,0.6,0,0.8
c0,4.4,0,4.4-4.1,5.4c-5.7,1.5-9.5,6.8-9.1,12.6c0.4,5.7,4.7,10.7,10.5,11.1c2.6,0.2,3,1.2,2.8,3.4c-0.1,1.6,0.4,3.5-0.2,4.9
c-0.7,1.8-2.9,0.8-4.4,1.2c-5.5,1.8-9.1,7-8.7,12.7c0.5,5.7,4.8,10.5,10.6,11c2.5,0.2,2.9,1.2,2.6,3.2c0,0.3,0,0.6,0,0.8
c0,4.3,0,4.3-4.2,5.4c-5.7,1.5-9.5,6.8-9.1,12.6c0.4,5.9,4.9,10.7,10.8,11.2c2.1,0.2,2.8,0.8,2.5,2.8c0,0.2,0,0.4,0,0.6
c0,1.7,0.4,3.5-0.2,4.9c-0.7,1.8-2.9,0.7-4.4,1.2c-5.5,1.8-9.1,7-8.7,12.7c0.5,5.7,4.9,10.5,10.6,11c2.2,0.2,2.9,0.9,2.6,2.9
c-0.1,0.4,0,0.7,0,1.1c0,1.5,0.4,3.2-0.2,4.4c-0.7,1.4-2.6,0.6-4,1c-5.7,1.6-9.5,6.8-9.1,12.7c0.4,5.9,4.9,10.6,10.8,11.2
c2.1,0.2,2.8,0.8,2.5,2.8c0,0.2,0,0.4,0,0.6c0,1.7,0.4,3.5-0.2,4.9c-0.7,1.7-2.9,0.7-4.4,1.2c-5.5,1.8-9.1,7-8.6,12.7
c0.5,5.7,4.9,10.5,10.7,11c2.2,0.2,2.9,0.9,2.6,2.9c-0.1,0.4,0,0.7,0,1.1c0,1.5,0.4,3.2-0.2,4.4c-0.7,1.4-2.6,0.6-4,1
c-5.7,1.6-9.5,6.8-9,12.7c0.4,5.9,4.9,10.6,10.8,11.1c2.1,0.2,2.8,0.9,2.4,2.8c0,0.3,0,0.6,0,0.8c0,1.6,0.4,3.3-0.2,4.7
c-0.7,1.7-2.8,0.7-4.2,1.1c-5.5,1.7-9.3,6.8-8.9,12.6c0.4,5.9,4.8,10.7,10.7,11.2c2.3,0.2,2.6,1,2.6,3c-0.1,6,0,6.1-6.1,6.1
c-80.7,0-161.4,0-242,0c-1.7,0-2.2-0.3-2.4-2.2c-1.2-9.6-8.9-16.1-18.6-16.2c-9.8,0-17.5,6.5-18.7,16.1c-0.2,2-0.9,2.4-2.7,2.2
c-0.5-0.1-0.9,0-1.4,0c-227.5,0-455.1,0-682.6,0c-0.6,0-1.3,0-1.9,0c-6.2,0-6.1,0-6.2-6.3c0-2,0.5-2.6,2.5-2.7
c6.2-0.6,10.8-5.8,10.8-12c0-6.2-4.5-11.5-10.8-12c-2.4-0.2-2.7-1.1-2.5-3c0-0.1,0-0.2,0-0.3c0-1.7-0.4-3.5,0.2-4.9
c0.7-1.8,2.9-0.8,4.4-1.3c5.5-1.8,9.1-7,8.7-12.7c-0.4-5.7-4.8-10.5-10.6-11c-2.4-0.2-3-1.1-2.6-3.2c0-0.3,0-0.6,0-0.8
c0-4.4,0-4.4,4.1-5.4c5.7-1.5,9.5-6.8,9.1-12.6C13,213.4,8.6,208.4,2.9,208c-2.6-0.2-3-1.2-2.8-3.4c0.1-1.6-0.4-3.5,0.2-4.9
c0.7-1.8,2.9-0.8,4.4-1.2c5.5-1.8,9.1-7,8.7-12.7c-0.5-5.7-4.8-10.5-10.6-11c-2.5-0.2-2.9-1.1-2.6-3.2c0-0.3,0-0.6,0-0.8
c0-4.4,0-4.4,4.2-5.4c5.7-1.5,9.5-6.8,9.1-12.6C13,146.8,8.5,142,2.6,141.4c-2.1-0.2-2.8-0.8-2.5-2.8c0-0.2,0-0.4,0-0.6
c0-1.7-0.4-3.5,0.2-4.9c0.7-1.8,2.9-0.8,4.4-1.2c5.5-1.8,9.1-7,8.7-12.7c-0.5-5.6-4.7-10.5-10.4-10.9c-2.7-0.2-3.2-1.3-2.9-3.5
c0-0.2,0-0.4,0-0.6c0-4.3,0-4.3,4.2-5.4c5.7-1.5,9.5-6.8,9.1-12.6C13,80.3,8.5,75.5,2.6,75c-2.1-0.2-2.8-0.8-2.5-2.8
c0-0.2,0-0.4,0-0.6c0-1.7-0.4-3.5,0.2-4.9C1,65,3.2,66,4.7,65.5c5.5-1.8,9.1-7,8.6-12.7c-0.5-5.7-4.9-10.5-10.6-11
c-2.2-0.2-2.9-0.9-2.6-2.9c0.1-0.4,0-0.7,0-1.1c0-1.5-0.4-3.2,0.2-4.4c0.7-1.4,2.6-0.6,4-1c5.7-1.6,9.5-6.8,9.1-12.7
C13,13.8,8.5,9,2.6,8.5C0.5,8.3,0.1,7.7,0.1,5.7C0.2,0.1,0.1,0,5.8,0C119.7,0,233.6,0,347.5,0z"/>
<path class="st1" d="M710.7,27.8c0-0.8,0.1-1.7,0-2.5c-0.5-2.6,0.7-3.2,3.1-3.1c1.8,0.1,2.7,0.4,2.5,2.4c-0.2,2.2-0.1,4.4,0,6.6
c0.1,1.6-0.2,2.3-2,2.2c-3.5-0.1-3.5,0-3.5-3.4C710.7,29.3,710.7,28.6,710.7,27.8z"/>
<path class="st1" d="M716.3,44.7c0,0.9-0.1,1.9,0,2.8c0.4,2.3-0.5,2.9-2.8,2.9c-2.4,0-3-0.7-2.8-2.9c0.2-1.5,0-3.1,0-4.7
c0-3.5,1.4-4.5,4.7-3.6c1,0.3,0.8,0.9,0.8,1.4C716.3,42,716.3,43.3,716.3,44.7z"/>
<path class="st2" d="M716.3,61.6c0,0.8-0.1,1.7,0,2.5c0.4,2.3-0.3,3.2-2.9,3.1c-2.1-0.1-3-0.5-2.7-2.7c0.2-1.8,0.2-3.7,0-5.5
c-0.3-2.3,0.4-3.2,2.9-3c2,0.1,3.1,0.4,2.7,2.7C716.1,59.5,716.3,60.6,716.3,61.6z"/>
<path class="st1" d="M716.3,78.4c0,0.7-0.1,1.5,0,2.2c0.4,2.4-0.4,3.4-3,3.2c-1.9-0.1-2.8-0.3-2.6-2.5c0.2-2,0-4,0.1-6.1
c0-0.8-0.6-2.2,0.5-2.4c1.5-0.3,3.3-0.4,4.6,0.1c1,0.4,0.3,2.2,0.4,3.3C716.3,77,716.3,77.7,716.3,78.4z"/>
<path class="st3" d="M710.7,94.8c0-0.6,0-1.3,0-1.9c0-3.4,1.3-4.3,4.6-3.4c1.1,0.3,0.9,1,0.9,1.7c0,2.6-0.1,5.2,0.1,7.7
c0.2,2.2-1.3,1.9-2.5,1.7c-1.1-0.2-3.2,1.3-3.1-1.5C710.8,97.6,710.7,96.2,710.7,94.8z"/>
<path class="st1" d="M716.3,111.9c0,0.8-0.1,1.7,0,2.5c0.5,2.6-0.7,3.2-3.1,3.1c-1.8-0.1-2.7-0.3-2.5-2.4c0.2-2.2,0.1-4.4,0-6.6
c-0.1-1.6,0.2-2.3,2-2.2c3.5,0.1,3.5,0,3.5,3.4C716.3,110.4,716.3,111.1,716.3,111.9z"/>
<path class="st2" d="M716.3,128.7c0,0.7-0.1,1.5,0,2.2c0.5,2.6-0.4,3.5-3.2,3.3c-1.8-0.1-2.6-0.4-2.4-2.4c0.2-2.4,0.1-4.8,0-7.2
c-0.1-2.4,1.6-1.6,2.6-1.5c1.1,0.1,3-1.2,3,1.4C716.2,125.9,716.3,127.3,716.3,128.7z"/>
<path class="st1" d="M716.3,145.5c0,0.9-0.1,1.9,0,2.8c0.3,2.2-0.6,2.6-2.7,2.7c-2.5,0.1-3.2-0.6-2.9-3c0.2-2.2,0.1-4.4,0-6.6
c-0.1-2.6,1.9-1.4,2.9-1.5c1.1-0.1,2.8-0.8,2.6,1.5C716.2,142.7,716.3,144.1,716.3,145.5z"/>
<path class="st1" d="M710.7,162.1c0-0.7,0.1-1.5,0-2.2c-0.4-2.6,0.4-3.5,3.2-3.3c1.8,0.1,2.6,0.4,2.4,2.4c-0.2,2.4-0.1,4.8,0,7.2
c0.1,2.3-1.5,1.7-2.6,1.6c-1.1-0.1-3,1.1-3-1.5C710.7,164.8,710.7,163.4,710.7,162.1z"/>
<path class="st2" d="M710.7,178.9c0-0.9,0.1-1.9,0-2.8c-0.4-2.4,0.6-2.8,2.8-2.8c2.4-0.1,3,0.7,2.8,2.9c-0.2,2.1-0.2,4.2,0,6.4
c0.1,1.6-0.5,2-2,1.9c-3.6,0-3.6,0-3.6-3.4C710.7,180.3,710.7,179.6,710.7,178.9z"/>
<path class="st1" d="M710.7,195.6c0-0.9,0.1-1.9,0-2.8c-0.4-2.3,0.6-2.8,2.8-2.9c2.4,0,3,0.7,2.8,2.9c-0.2,1.5,0,3.1,0,4.7
c0,3.5-1.4,4.5-4.7,3.6c-1-0.3-0.8-0.8-0.8-1.4C710.7,198.4,710.7,197,710.7,195.6z"/>
<path class="st3" d="M716.3,212.6c0,0.6,0,1.3,0,1.9c0,3.6-1,4.3-4.5,3.6c-1.1-0.2-1-0.9-1-1.6c0-2.7,0.1-5.3,0-8
c-0.1-2.4,1.6-1.6,2.6-1.5c1.1,0.1,3-1.2,2.9,1.4C716.2,209.8,716.3,211.2,716.3,212.6z"/>
<path class="st1" d="M716.3,229.1c0,0.7,0,1.5,0,2.2c0,3.5-1,4.2-4.6,3.5c-1.2-0.2-0.9-0.9-0.9-1.6c0-2.7,0-5.3,0-8
c0-1.2,0.4-1.5,1.6-1.5C716.3,223.5,716.3,223.5,716.3,229.1z"/>
<path class="st2" d="M710.7,245.9c0-0.8,0.1-1.7,0-2.5c-0.4-2.3,0.3-3.2,2.9-3.1c2.1,0.1,3,0.5,2.7,2.7c-0.2,1.8-0.2,3.7,0,5.5
c0.3,2.3-0.4,3.2-2.9,3c-2-0.1-3.1-0.4-2.7-2.7C710.8,248,710.7,246.9,710.7,245.9z"/>
<path class="st1" d="M716.3,262.7c0,1-0.1,2,0,3c0.3,2.2-0.6,2.6-2.7,2.7c-2.4,0.1-3.2-0.6-3-3c0.2-2.2,0.1-4.4,0-6.6
c-0.1-2.6,1.8-1.4,2.9-1.5c1-0.1,2.8-0.8,2.6,1.5C716.2,260.1,716.3,261.4,716.3,262.7z"/>
<path class="st1" d="M716.3,279.6c0,0.9-0.1,1.9,0,2.8c0.4,2.3-0.6,2.8-2.8,2.9c-2.4,0-3-0.7-2.8-2.9c0.2-2.1,0.2-4.2,0-6.3
c-0.1-1.6,0.5-2,2-1.9c3.6,0,3.6,0,3.6,3.4C716.3,278.2,716.3,278.9,716.3,279.6z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 982.8 307.5" style="enable-background:new 0 0 982.8 307.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
.st1{fill:#FDFDFD;}
.st2{fill:#FEFEFE;}
.st3{fill:#FCFCFC;}
</style>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0" y1="153.7545" x2="982.7892" y2="153.7545">
<stop offset="0" style="stop-color:#FF8E4C"/>
<stop offset="1" style="stop-color:#FF614C"/>
</linearGradient>
<path class="st0" d="M347.5,0c114.6,0,229.3,0,343.9,0c2.3,0,3.1,0.3,3.5,2.9c1.4,9.5,9.2,16,18.6,16c9.3,0,17.3-6.7,18.5-16.1
c0.3-2.6,1.3-2.7,3.4-2.7c21.8,0,43.6,0,65.4,0c59.4,0,118.7,0,178.1,0c3.8,0,3.8,0,3.8,3.9c0,0.5-0.1,0.9,0,1.4
c0.3,2.1-0.2,3-2.6,3.2c-6.2,0.5-10.7,5.9-10.6,12.1c0.1,6.1,4.6,11.3,10.6,11.8c2.4,0.2,3,1.1,2.6,3.2c0,0.3,0,0.6,0,0.8
c0,4.4,0,4.4-4.1,5.4c-5.7,1.5-9.5,6.8-9.1,12.6c0.4,5.7,4.7,10.7,10.5,11.1c2.6,0.2,3,1.2,2.8,3.4c-0.1,1.6,0.4,3.5-0.2,4.9
c-0.7,1.8-2.9,0.8-4.4,1.2c-5.5,1.8-9.1,7-8.7,12.7c0.5,5.7,4.8,10.5,10.6,11c2.5,0.2,2.9,1.2,2.6,3.2c0,0.3,0,0.6,0,0.8
c0,4.3,0,4.3-4.2,5.4c-5.7,1.5-9.5,6.8-9.1,12.6c0.4,5.9,4.9,10.7,10.8,11.2c2.1,0.2,2.8,0.8,2.5,2.8c0,0.2,0,0.4,0,0.6
c0,1.7,0.4,3.5-0.2,4.9c-0.7,1.8-2.9,0.7-4.4,1.2c-5.5,1.8-9.1,7-8.7,12.7c0.5,5.7,4.9,10.5,10.6,11c2.2,0.2,2.9,0.9,2.6,2.9
c-0.1,0.4,0,0.7,0,1.1c0,1.5,0.4,3.2-0.2,4.4c-0.7,1.4-2.6,0.6-4,1c-5.7,1.6-9.5,6.8-9.1,12.7c0.4,5.9,4.9,10.6,10.8,11.2
c2.1,0.2,2.8,0.8,2.5,2.8c0,0.2,0,0.4,0,0.6c0,1.7,0.4,3.5-0.2,4.9c-0.7,1.7-2.9,0.7-4.4,1.2c-5.5,1.8-9.1,7-8.6,12.7
c0.5,5.7,4.9,10.5,10.7,11c2.2,0.2,2.9,0.9,2.6,2.9c-0.1,0.4,0,0.7,0,1.1c0,1.5,0.4,3.2-0.2,4.4c-0.7,1.4-2.6,0.6-4,1
c-5.7,1.6-9.5,6.8-9,12.7c0.4,5.9,4.9,10.6,10.8,11.1c2.1,0.2,2.8,0.9,2.4,2.8c0,0.3,0,0.6,0,0.8c0,1.6,0.4,3.3-0.2,4.7
c-0.7,1.7-2.8,0.7-4.2,1.1c-5.5,1.7-9.3,6.8-8.9,12.6c0.4,5.9,4.8,10.7,10.7,11.2c2.3,0.2,2.6,1,2.6,3c-0.1,6,0,6.1-6.1,6.1
c-80.7,0-161.4,0-242,0c-1.7,0-2.2-0.3-2.4-2.2c-1.2-9.6-8.9-16.1-18.6-16.2c-9.8,0-17.5,6.5-18.7,16.1c-0.2,2-0.9,2.4-2.7,2.2
c-0.5-0.1-0.9,0-1.4,0c-227.5,0-455.1,0-682.6,0c-0.6,0-1.3,0-1.9,0c-6.2,0-6.1,0-6.2-6.3c0-2,0.5-2.6,2.5-2.7
c6.2-0.6,10.8-5.8,10.8-12c0-6.2-4.5-11.5-10.8-12c-2.4-0.2-2.7-1.1-2.5-3c0-0.1,0-0.2,0-0.3c0-1.7-0.4-3.5,0.2-4.9
c0.7-1.8,2.9-0.8,4.4-1.3c5.5-1.8,9.1-7,8.7-12.7c-0.4-5.7-4.8-10.5-10.6-11c-2.4-0.2-3-1.1-2.6-3.2c0-0.3,0-0.6,0-0.8
c0-4.4,0-4.4,4.1-5.4c5.7-1.5,9.5-6.8,9.1-12.6C13,213.4,8.6,208.4,2.9,208c-2.6-0.2-3-1.2-2.8-3.4c0.1-1.6-0.4-3.5,0.2-4.9
c0.7-1.8,2.9-0.8,4.4-1.2c5.5-1.8,9.1-7,8.7-12.7c-0.5-5.7-4.8-10.5-10.6-11c-2.5-0.2-2.9-1.1-2.6-3.2c0-0.3,0-0.6,0-0.8
c0-4.4,0-4.4,4.2-5.4c5.7-1.5,9.5-6.8,9.1-12.6C13,146.8,8.5,142,2.6,141.4c-2.1-0.2-2.8-0.8-2.5-2.8c0-0.2,0-0.4,0-0.6
c0-1.7-0.4-3.5,0.2-4.9c0.7-1.8,2.9-0.8,4.4-1.2c5.5-1.8,9.1-7,8.7-12.7c-0.5-5.6-4.7-10.5-10.4-10.9c-2.7-0.2-3.2-1.3-2.9-3.5
c0-0.2,0-0.4,0-0.6c0-4.3,0-4.3,4.2-5.4c5.7-1.5,9.5-6.8,9.1-12.6C13,80.3,8.5,75.5,2.6,75c-2.1-0.2-2.8-0.8-2.5-2.8
c0-0.2,0-0.4,0-0.6c0-1.7-0.4-3.5,0.2-4.9C1,65,3.2,66,4.7,65.5c5.5-1.8,9.1-7,8.6-12.7c-0.5-5.7-4.9-10.5-10.6-11
c-2.2-0.2-2.9-0.9-2.6-2.9c0.1-0.4,0-0.7,0-1.1c0-1.5-0.4-3.2,0.2-4.4c0.7-1.4,2.6-0.6,4-1c5.7-1.6,9.5-6.8,9.1-12.7
C13,13.8,8.5,9,2.6,8.5C0.5,8.3,0.1,7.7,0.1,5.7C0.2,0.1,0.1,0,5.8,0C119.7,0,233.6,0,347.5,0z"/>
<path class="st1" d="M710.7,27.8c0-0.8,0.1-1.7,0-2.5c-0.5-2.6,0.7-3.2,3.1-3.1c1.8,0.1,2.7,0.4,2.5,2.4c-0.2,2.2-0.1,4.4,0,6.6
c0.1,1.6-0.2,2.3-2,2.2c-3.5-0.1-3.5,0-3.5-3.4C710.7,29.3,710.7,28.6,710.7,27.8z"/>
<path class="st1" d="M716.3,44.7c0,0.9-0.1,1.9,0,2.8c0.4,2.3-0.5,2.9-2.8,2.9c-2.4,0-3-0.7-2.8-2.9c0.2-1.5,0-3.1,0-4.7
c0-3.5,1.4-4.5,4.7-3.6c1,0.3,0.8,0.9,0.8,1.4C716.3,42,716.3,43.3,716.3,44.7z"/>
<path class="st2" d="M716.3,61.6c0,0.8-0.1,1.7,0,2.5c0.4,2.3-0.3,3.2-2.9,3.1c-2.1-0.1-3-0.5-2.7-2.7c0.2-1.8,0.2-3.7,0-5.5
c-0.3-2.3,0.4-3.2,2.9-3c2,0.1,3.1,0.4,2.7,2.7C716.1,59.5,716.3,60.6,716.3,61.6z"/>
<path class="st1" d="M716.3,78.4c0,0.7-0.1,1.5,0,2.2c0.4,2.4-0.4,3.4-3,3.2c-1.9-0.1-2.8-0.3-2.6-2.5c0.2-2,0-4,0.1-6.1
c0-0.8-0.6-2.2,0.5-2.4c1.5-0.3,3.3-0.4,4.6,0.1c1,0.4,0.3,2.2,0.4,3.3C716.3,77,716.3,77.7,716.3,78.4z"/>
<path class="st3" d="M710.7,94.8c0-0.6,0-1.3,0-1.9c0-3.4,1.3-4.3,4.6-3.4c1.1,0.3,0.9,1,0.9,1.7c0,2.6-0.1,5.2,0.1,7.7
c0.2,2.2-1.3,1.9-2.5,1.7c-1.1-0.2-3.2,1.3-3.1-1.5C710.8,97.6,710.7,96.2,710.7,94.8z"/>
<path class="st1" d="M716.3,111.9c0,0.8-0.1,1.7,0,2.5c0.5,2.6-0.7,3.2-3.1,3.1c-1.8-0.1-2.7-0.3-2.5-2.4c0.2-2.2,0.1-4.4,0-6.6
c-0.1-1.6,0.2-2.3,2-2.2c3.5,0.1,3.5,0,3.5,3.4C716.3,110.4,716.3,111.1,716.3,111.9z"/>
<path class="st2" d="M716.3,128.7c0,0.7-0.1,1.5,0,2.2c0.5,2.6-0.4,3.5-3.2,3.3c-1.8-0.1-2.6-0.4-2.4-2.4c0.2-2.4,0.1-4.8,0-7.2
c-0.1-2.4,1.6-1.6,2.6-1.5c1.1,0.1,3-1.2,3,1.4C716.2,125.9,716.3,127.3,716.3,128.7z"/>
<path class="st1" d="M716.3,145.5c0,0.9-0.1,1.9,0,2.8c0.3,2.2-0.6,2.6-2.7,2.7c-2.5,0.1-3.2-0.6-2.9-3c0.2-2.2,0.1-4.4,0-6.6
c-0.1-2.6,1.9-1.4,2.9-1.5c1.1-0.1,2.8-0.8,2.6,1.5C716.2,142.7,716.3,144.1,716.3,145.5z"/>
<path class="st1" d="M710.7,162.1c0-0.7,0.1-1.5,0-2.2c-0.4-2.6,0.4-3.5,3.2-3.3c1.8,0.1,2.6,0.4,2.4,2.4c-0.2,2.4-0.1,4.8,0,7.2
c0.1,2.3-1.5,1.7-2.6,1.6c-1.1-0.1-3,1.1-3-1.5C710.7,164.8,710.7,163.4,710.7,162.1z"/>
<path class="st2" d="M710.7,178.9c0-0.9,0.1-1.9,0-2.8c-0.4-2.4,0.6-2.8,2.8-2.8c2.4-0.1,3,0.7,2.8,2.9c-0.2,2.1-0.2,4.2,0,6.4
c0.1,1.6-0.5,2-2,1.9c-3.6,0-3.6,0-3.6-3.4C710.7,180.3,710.7,179.6,710.7,178.9z"/>
<path class="st1" d="M710.7,195.6c0-0.9,0.1-1.9,0-2.8c-0.4-2.3,0.6-2.8,2.8-2.9c2.4,0,3,0.7,2.8,2.9c-0.2,1.5,0,3.1,0,4.7
c0,3.5-1.4,4.5-4.7,3.6c-1-0.3-0.8-0.8-0.8-1.4C710.7,198.4,710.7,197,710.7,195.6z"/>
<path class="st3" d="M716.3,212.6c0,0.6,0,1.3,0,1.9c0,3.6-1,4.3-4.5,3.6c-1.1-0.2-1-0.9-1-1.6c0-2.7,0.1-5.3,0-8
c-0.1-2.4,1.6-1.6,2.6-1.5c1.1,0.1,3-1.2,2.9,1.4C716.2,209.8,716.3,211.2,716.3,212.6z"/>
<path class="st1" d="M716.3,229.1c0,0.7,0,1.5,0,2.2c0,3.5-1,4.2-4.6,3.5c-1.2-0.2-0.9-0.9-0.9-1.6c0-2.7,0-5.3,0-8
c0-1.2,0.4-1.5,1.6-1.5C716.3,223.5,716.3,223.5,716.3,229.1z"/>
<path class="st2" d="M710.7,245.9c0-0.8,0.1-1.7,0-2.5c-0.4-2.3,0.3-3.2,2.9-3.1c2.1,0.1,3,0.5,2.7,2.7c-0.2,1.8-0.2,3.7,0,5.5
c0.3,2.3-0.4,3.2-2.9,3c-2-0.1-3.1-0.4-2.7-2.7C710.8,248,710.7,246.9,710.7,245.9z"/>
<path class="st1" d="M716.3,262.7c0,1-0.1,2,0,3c0.3,2.2-0.6,2.6-2.7,2.7c-2.4,0.1-3.2-0.6-3-3c0.2-2.2,0.1-4.4,0-6.6
c-0.1-2.6,1.8-1.4,2.9-1.5c1-0.1,2.8-0.8,2.6,1.5C716.2,260.1,716.3,261.4,716.3,262.7z"/>
<path class="st1" d="M716.3,279.6c0,0.9-0.1,1.9,0,2.8c0.4,2.3-0.6,2.8-2.8,2.9c-2.4,0-3-0.7-2.8-2.9c0.2-2.1,0.2-4.2,0-6.3
c-0.1-1.6,0.5-2,2-1.9c3.6,0,3.6,0,3.6,3.4C716.3,278.2,716.3,278.9,716.3,279.6z"/>
</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="1533212574282" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2083" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M390.736842 781.473684c-8.084211 0-13.473684-2.694737-18.863158-8.08421l-242.526316-242.526316c-10.778947-10.778947-10.778947-26.947368 0-37.726316s26.947368-10.778947 37.726316 0l242.526316 242.526316c10.778947 10.778947 10.778947 26.947368 0 37.726316-5.389474 5.389474-13.473684 8.084211-18.863158 8.08421z" fill="#96588a" p-id="2084"></path><path d="M390.736842 781.473684c-8.084211 0-13.473684-2.694737-18.863158-8.08421-10.778947-10.778947-10.778947-26.947368 0-37.726316L859.621053 247.915789c10.778947-10.778947 26.947368-10.778947 37.726315 0s10.778947 26.947368 0 37.726316L409.6 776.084211c-5.389474 2.694737-13.473684 5.389474-18.863158 5.389473z" fill="#96588a" p-id="2085"></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="1533212317720" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5044" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M390.736842 781.473684c-8.084211 0-13.473684-2.694737-18.863158-8.08421l-242.526316-242.526316c-10.778947-10.778947-10.778947-26.947368 0-37.726316s26.947368-10.778947 37.726316 0l242.526316 242.526316c10.778947 10.778947 10.778947 26.947368 0 37.726316-5.389474 5.389474-13.473684 8.084211-18.863158 8.08421z" fill="#ffffff" p-id="5045"></path><path d="M390.736842 781.473684c-8.084211 0-13.473684-2.694737-18.863158-8.08421-10.778947-10.778947-10.778947-26.947368 0-37.726316L859.621053 247.915789c10.778947-10.778947 26.947368-10.778947 37.726315 0s10.778947 26.947368 0 37.726316L409.6 776.084211c-5.389474 2.694737-13.473684 5.389474-18.863158 5.389473z" fill="#ffffff" p-id="5046"></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="1533212351058" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2179" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M557.312 513.248l265.28-263.904c12.544-12.48 12.608-32.704 0.128-45.248-12.512-12.576-32.704-12.608-45.248-0.128l-265.344 263.936-263.04-263.84C236.64 191.584 216.384 191.52 203.84 204 191.328 216.48 191.296 236.736 203.776 249.28l262.976 263.776L201.6 776.8c-12.544 12.48-12.608 32.704-0.128 45.248 6.24 6.272 14.464 9.44 22.688 9.44 8.16 0 16.32-3.104 22.56-9.312l265.216-263.808 265.44 266.24c6.24 6.272 14.432 9.408 22.656 9.408 8.192 0 16.352-3.136 22.592-9.344 12.512-12.48 12.544-32.704 0.064-45.248L557.312 513.248z" p-id="2180" fill="#707070"></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="1533212351058" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2179" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M557.312 513.248l265.28-263.904c12.544-12.48 12.608-32.704 0.128-45.248-12.512-12.576-32.704-12.608-45.248-0.128l-265.344 263.936-263.04-263.84C236.64 191.584 216.384 191.52 203.84 204 191.328 216.48 191.296 236.736 203.776 249.28l262.976 263.776L201.6 776.8c-12.544 12.48-12.608 32.704-0.128 45.248 6.24 6.272 14.464 9.44 22.688 9.44 8.16 0 16.32-3.104 22.56-9.312l265.216-263.808 265.44 266.24c6.24 6.272 14.432 9.408 22.656 9.408 8.192 0 16.352-3.136 22.592-9.344 12.512-12.48 12.544-32.704 0.064-45.248L557.312 513.248z" p-id="2180" fill="#ffffff"></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="1533212728116" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2693" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M514.133 938.667c-6.4 0-10.666-2.134-14.933-6.4L394.667 825.6c-8.534-8.533-8.534-21.333 0-29.867 8.533-8.533 21.333-8.533 29.866 0l89.6 91.734 91.734-91.734c4.266-4.266 8.533-6.4 14.933-6.4h192c34.133 0 64-27.733 64-64V256c0-34.133-27.733-64-64-64H215.467c-34.134 0-64 27.733-64 64v469.333c0 36.267 27.733 64 64 64h108.8c12.8 0 21.333 8.534 21.333 21.334S337.067 832 324.267 832h-108.8C155.733 832 108.8 785.067 108.8 725.333V256c0-59.733 46.933-106.667 106.667-106.667H812.8c57.6 0 106.667 46.934 106.667 106.667v471.467c0 57.6-46.934 106.666-106.667 106.666H629.333L529.067 934.4c-4.267 2.133-10.667 4.267-14.934 4.267z" fill="#707070" p-id="2694"></path><path d="M309.333 533.333C279.467 533.333 256 509.867 256 480s23.467-53.333 53.333-53.333 53.334 23.466 53.334 53.333-23.467 53.333-53.334 53.333z m202.667 0c-29.867 0-53.333-23.466-53.333-53.333s23.466-53.333 53.333-53.333 53.333 23.466 53.333 53.333-23.466 53.333-53.333 53.333z m202.667 0c-29.867 0-53.334-23.466-53.334-53.333s23.467-53.333 53.334-53.333S768 450.133 768 480s-23.467 53.333-53.333 53.333z" fill="#707070" p-id="2695"></path></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#707070;}
</style>
<path class="st0" d="M32.1,57.4c-0.3,0-0.4-0.1-0.6-0.3l-6.3-6.4c-0.4-0.4-0.4-0.9,0-1.3c0.2-0.2,0.4-0.3,0.6-0.3
c0.2,0,0.5,0.1,0.6,0.3l5.7,5.8l5.8-5.8c0.2-0.2,0.4-0.3,0.6-0.3h11.6c2.3,0,4.2-1.9,4.2-4.2V16.7c0-2.3-1.9-4.2-4.2-4.2h-36
c-2.3,0-4.2,1.9-4.2,4.2v28.3c0,2.4,1.9,4.2,4.2,4.2h6.5c0.6,0,0.9,0.3,0.9,0.9c0,0.6-0.3,0.9-0.9,0.9h-6.5c-3.4,0-6-2.7-6-6V16.7
c0-3.4,2.7-6,6-6h36c3.3,0,6,2.7,6,6V45c0,3.3-2.7,6-6,6H38.9l-6.1,6.1C32.6,57.3,32.3,57.4,32.1,57.4z"/>
<path class="st0" d="M44.2,32.2c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S45.3,32.2,44.2,32.2z M32,32.2c-1.1,0-2-0.9-2-2s0.9-2,2-2
c1.1,0,2,0.9,2,2S33.1,32.2,32,32.2z M19.8,32.2c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S20.9,32.2,19.8,32.2z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
</style>
<path class="st0" d="M32,4C16.5,4,4,16.5,4,32s12.5,28,28,28s28-12.5,28-28S47.5,4,32,4z M46.8,29L32.4,43.4c-1.1,1.1-2.9,1.1-4,0
l-9.7-10.1c-1.1-1.1-1.1-2.5,0-3.6c1.1-1.1,2.5-1.1,3.6,0l7.9,7.5L42.9,25c1.1-1.1,2.9-1.1,4,0C47.9,26.1,47.9,27.9,46.8,29z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 981 307.5" style="enable-background:new 0 0 981 307.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:#DCDCDC;}
.st1{fill:#FDFDFD;}
.st2{fill:#FEFEFE;}
</style>
<g>
<path class="st0" d="M650.1,307.5c-109,0-218,0-327,0c-4.5,0-4,0.5-4-4c0-1.8-0.1-3.7,0-5.5c0.1-1.5-0.5-2.1-2.1-2.1
c-1.5,0-1.9,0.7-1.9,2c0.1,2.5-0.1,5,0,7.5c0.1,1.7-0.6,2.4-2.3,2.2c-0.4,0-0.7,0-1.1,0c-102.7,0-205.5,0-308.2,0
c-3.6,0-3.6,0-3.6-3.6c0-1.6-0.4-3.4,0.3-4.6c0.7-1.4,2.7-0.4,4.1-0.7c6.7-1.3,11.1-6.7,10.6-13.4c-0.5-6-6.6-11.5-12.5-10.9
c-2,0.2-2.6-0.6-2.5-2.5c0.1-1.8-0.4-3.9,0.2-5.5c0.8-2,3.1-0.7,4.7-1.1c7.1-1.5,10.7-7.7,10-13.5c-0.7-6.1-6.9-11.2-12.5-10.6
c-1.7,0.2-2.7-0.4-2.4-2.3c0-0.1,0-0.2,0-0.3c0-1.8-0.4-3.9,0.2-5.5c0.8-1.9,3.1-0.7,4.8-1c7.1-1.5,10.7-7.8,9.9-13.6
c-0.8-6.1-6.9-11.2-12.5-10.6c-1.8,0.2-2.5-0.5-2.4-2.3c0.1-1.8-0.4-3.8,0.2-5.5c0.8-2.3,3.2-0.9,4.9-1.2c7-1.5,10.6-7.8,9.9-13.6
c-0.8-6-6.8-11.1-12.6-10.6c-1.8,0.2-2.6-0.6-2.3-2.4c0-0.2,0-0.4,0-0.6c0-1.7-0.4-3.7,0.2-5.2c0.8-1.8,3-0.5,4.5-0.9
c6.7-1.6,10.8-6.8,10.1-13.4c-0.6-5.9-6.6-11.4-12.6-10.8c-1.9,0.2-2.5-0.6-2.3-2.4c0-0.2,0-0.4,0-0.6c0-1.7-0.4-3.7,0.3-5.2
c0.8-1.7,3-0.5,4.6-0.9c6.7-1.6,10.8-6.9,10.1-13.4c-0.6-5.9-6.7-11.4-12.7-10.8c-1.6,0.2-2.4-0.4-2.3-2.1c0.1-1.9-0.4-4.1,0.2-5.8
c0.8-2.1,3.2-0.7,4.9-1.2c6.5-1.8,10.5-7,9.8-13.4c-0.7-6.1-6.9-11.3-12.4-10.7c-1.9,0.2-2.8-0.5-2.5-2.5c0-0.3,0-0.6,0-0.8
c0-1.7-0.4-3.6,0.3-4.9c0.8-1.5,2.9-0.5,4.3-0.8c6.7-1.5,11-7,10.3-13.5c-0.7-6.1-6.8-11.2-12.4-10.7c-2,0.2-2.7-0.6-2.5-2.5
c0.2-1.8-0.4-3.9,0.2-5.5c0.8-2,3.1-0.7,4.7-1.1c6.6-1.7,10.8-7.1,10-13.5C14.3,13,8.2,7.8,2.6,8.4c-2,0.2-2.5-0.7-2.5-2.5
c0-5.8-0.1-5.8,5.6-5.8c96,0,192,0,288,0c1.5,0,3.1-0.3,4.4,0.3c1.4,0.7,0.4,2.5,0.8,3.8c2.1,7.4,6.7,12.2,14.2,14
c1.8,0.4,2.6,1,2.3,2.8c-0.2,1.4,0.1,2.4,2,2.4c2,0,2-1.2,1.9-2.6c-0.1-1.7,0.3-2.3,2.2-2.6c8.3-1.7,13.8-7.7,14.9-16
c0.2-1.7,0.8-2.3,2.4-2.1c0.6,0.1,1.3,0,1.9,0c212.1,0,424.2,0,636.3,0c4.7,0,4.1-0.5,4.1,4.1c0,99.8,0,199.6,0,299.3
c0,4.3,0.5,3.9-3.8,3.9C868.2,307.5,759.2,307.5,650.1,307.5z"/>
<path class="st1" d="M315.3,77.5c0.4-1.3-1.3-4.2,2.4-3.8c0.6,0.1,1.3,0.1,1.3,0.8c0.1,2.3,0.2,4.6-0.1,6.8c-0.1,1-1.4,0.6-2.1,0.7
c-0.8,0-1.5-0.2-1.5-1.2C315.3,79.9,315.3,78.8,315.3,77.5z"/>
<path class="st1" d="M319.1,229.7c0,0.8,0,1.6,0,2.5c0.1,1.4-0.7,1.7-1.9,1.7c-1.1,0-2-0.1-2-1.6c0-1.4,0-2.7,0-4.1
c0-1.5-0.1-2.7,2-2.6c2,0,1.9,1.3,1.8,2.6C319.1,228.6,319.1,229.1,319.1,229.7z"/>
<path class="st2" d="M319.1,31.3c-0.5,1.2,1.3,3.8-2.2,3.7c-1.3-0.1-1.8-0.6-1.7-1.8c0.1-1.4,0.1-2.8,0-4.1c-0.1-1.5,0.7-1.8,2-1.8
c1.2,0,2,0.3,1.9,1.7C319.1,29.6,319.1,30.4,319.1,31.3z"/>
<path class="st2" d="M319.1,43c-0.4,1.3,1.2,3.9-2.2,3.6c-1.1-0.1-1.7-0.4-1.7-1.6c0-1.2,0-2.4,0-3.6c-0.1-1.5-0.1-2.7,2.1-2.6
c2.1,0,1.8,1.3,1.8,2.6C319.1,41.9,319.1,42.3,319.1,43z"/>
<path class="st2" d="M315.3,54c0.2-1.4-0.9-4,2.5-3.5c0.6,0.1,1.2,0.1,1.2,0.8c0.1,2,0.1,4,0,6c-0.1,1.2-1.2,0.8-2,0.9
c-0.9,0-1.7-0.1-1.7-1.2C315.3,56.1,315.3,55.2,315.3,54z"/>
<path class="st2" d="M315.3,65.7c0.4-1.3-1.1-3.9,2.3-3.6c1.2,0.1,1.7,0.5,1.6,1.7c0,1.2,0,2.4,0,3.6c0,1.3,0.2,2.5-1.8,2.6
c-2.1,0-2.1-1.2-2-2.7C315.3,66.8,315.3,66.4,315.3,65.7z"/>
<path class="st2" d="M315.3,89.4c0.2-1.4-0.9-4,2.5-3.5c0.6,0.1,1.2,0.1,1.2,0.8c0.1,2,0.1,4,0,6c-0.1,1.2-1.2,0.8-2,0.9
c-0.9,0-1.7-0.1-1.7-1.2C315.3,91.5,315.3,90.6,315.3,89.4z"/>
<path class="st2" d="M319.1,101.7c-0.4,1.2,1.2,3.9-2.2,3.7c-1.1-0.1-1.7-0.4-1.7-1.6c0-1.2,0-2.4,0-3.6c-0.1-1.5-0.1-2.7,2.1-2.6
c2.1,0,1.8,1.3,1.8,2.6C319.1,100.5,319.1,101,319.1,101.7z"/>
<path class="st2" d="M319.1,113.3c-0.4,1.2,1.2,3.9-2.2,3.7c-1.1-0.1-1.7-0.4-1.7-1.6c0-1.2,0-2.4,0-3.6c-0.1-1.5-0.1-2.7,2.1-2.6
c2.1,0,1.8,1.3,1.8,2.6C319.1,112.2,319.1,112.6,319.1,113.3z"/>
<path class="st2" d="M315.3,124.3c0.2-1.4-0.9-4,2.5-3.5c0.6,0.1,1.2,0.1,1.2,0.8c0.1,2,0.1,4,0,6c-0.1,1.2-1.2,0.8-2,0.9
c-0.9,0.1-1.7-0.1-1.7-1.2C315.3,126.4,315.3,125.5,315.3,124.3z"/>
<path class="st2" d="M319.1,136.6c-0.4,1.2,1.2,3.9-2.2,3.6c-1.1-0.1-1.7-0.4-1.7-1.6c0-1.2,0-2.4,0-3.6c-0.1-1.5-0.1-2.7,2.1-2.6
c2.1,0,1.8,1.3,1.8,2.6C319.1,135.5,319.1,135.9,319.1,136.6z"/>
<path class="st2" d="M319.1,148.1c0,0.6,0,1.3,0,1.9c0.1,1.5-0.7,1.8-2,1.8c-1.2,0-1.9-0.3-1.9-1.7c0.1-1.2,0-2.4,0-3.6
c0-1.3-0.1-2.5,1.9-2.5c1.9,0,2.1,1,2,2.4C319.1,147,319.1,147.6,319.1,148.1z"/>
<path class="st2" d="M319.1,159.8c-0.5,1.2,1.2,3.9-2.2,3.7c-1.1-0.1-1.7-0.4-1.7-1.6c0-1.2,0-2.4,0-3.6c0-1.5-0.1-2.7,2.1-2.7
c2.1,0,1.8,1.3,1.8,2.6C319.1,158.7,319.1,159.2,319.1,159.8z"/>
<path class="st2" d="M315.3,170.8c0.2-1.4-0.9-4,2.5-3.5c0.6,0.1,1.2,0.1,1.2,0.8c0.1,2,0.1,4,0,6c-0.1,1.2-1.2,0.8-2,0.9
c-0.9,0.1-1.7,0-1.7-1.2C315.3,172.9,315.3,172,315.3,170.8z"/>
<path class="st2" d="M319.1,183.1c-0.5,1.2,1.2,3.8-2.2,3.7c-1.1-0.1-1.7-0.4-1.7-1.6c0-1.4,0.1-2.8,0-4.1
c-0.1-1.5,0.5-2.1,2.1-2.1c1.5,0,2,0.7,1.8,2C319.1,181.6,319.1,182.2,319.1,183.1z"/>
<path class="st2" d="M319.1,194.8c-0.4,1.3,1.2,3.9-2.2,3.6c-1.1-0.1-1.7-0.4-1.7-1.6c0-1.2,0-2.4,0-3.6c-0.1-1.5,0-2.7,2.1-2.6
c2.1,0.1,1.8,1.4,1.8,2.6C319.1,193.6,319.1,194.1,319.1,194.8z"/>
<path class="st2" d="M319.1,206.4c-0.5,1.2,1.3,3.8-2.2,3.7c-1.3-0.1-1.8-0.6-1.7-1.8c0.1-1.4,0.1-2.8,0-4.1
c-0.1-1.5,0.7-1.8,2-1.8c1.2,0,2,0.3,1.9,1.7C319.1,204.7,319.1,205.4,319.1,206.4z"/>
<path class="st2" d="M319.1,218c-0.5,1.2,1.2,3.9-2.2,3.7c-1.1-0.1-1.7-0.4-1.7-1.6c0-1.2,0-2.4,0-3.6c0-1.5-0.1-2.7,2.1-2.7
c2,0,1.8,1.3,1.8,2.6C319.1,216.9,319.1,217.3,319.1,218z"/>
<path class="st2" d="M315.3,241.2c0.1-1.5-0.9-4,2.5-3.5c0.6,0.1,1.2,0.2,1.2,0.8c0.1,2,0.1,4,0,6c-0.1,1.2-1.2,0.8-2,0.9
c-0.9,0.1-1.7-0.1-1.7-1.2C315.3,243.2,315.3,242.3,315.3,241.2z"/>
<path class="st2" d="M319.1,253.4c-0.4,1.3,1.2,3.9-2.2,3.6c-1.1-0.1-1.7-0.4-1.7-1.6c0-1.2,0-2.4,0-3.6c-0.1-1.5,0-2.7,2.1-2.6
c2.1,0.1,1.8,1.4,1.8,2.6C319.1,252.3,319.1,252.8,319.1,253.4z"/>
<path class="st2" d="M315.3,264.4c0.2-1.4-0.9-4,2.5-3.5c0.6,0.1,1.2,0.1,1.2,0.8c0.1,2,0.1,4,0,6c-0.1,1.2-1.2,0.8-2,0.9
c-0.9,0.1-1.7-0.1-1.7-1.2C315.3,266.5,315.3,265.6,315.3,264.4z"/>
<path class="st2" d="M315.3,276.1c0.1-0.9-0.4-2.2,0.3-3.1c0.6-0.8,1.7-0.4,2.6-0.4c0.8,0.1,0.9,0.7,1,1.4c0,1.2,0,2.4,0,3.6
c0,1.4,0.3,2.7-2,2.7c-2.3,0-1.9-1.4-1.9-2.8C315.3,277.1,315.3,276.7,315.3,276.1z"/>
<path class="st2" d="M319.1,288.2c-0.3,1.4,1.2,4.2-2.5,3.7c-0.6-0.1-1.2-0.1-1.2-0.8c-0.1-2-0.1-4,0-6c0.1-1.2,1.2-0.8,2-0.9
c0.9-0.1,1.7,0.1,1.7,1.2C319.1,286.3,319.1,287.1,319.1,288.2z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 633.6 198.6" style="enable-background:new 0 0 633.6 198.6;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FB766B;}
.st1{fill:#FEFDFD;}
.st2{fill:#FEFCFC;}
.st3{fill:#FEFDFC;}
.st4{fill:#FEFEFD;}
.st5{fill:#FEFEFE;}
</style>
<g>
<path class="st0" d="M425.5,198.5c-68.7,0-137.3,0-206,0c-1.6,0-2.2-0.4-2.5-2c-0.9-5.2-4.1-8.5-9.3-9.6c-1.3-0.3-1.7-0.7-1.5-2
c0.1-0.9,0-1.5-1.3-1.5c-1.3,0-1.4,0.7-1.2,1.6c0.2,1.3-0.3,1.7-1.5,2c-5.3,1.3-8.6,5-9.2,10.4c-0.1,0.9-0.4,1.3-1.3,1.2
c-0.4,0-0.8,0-1.3,0c-61.4,0-122.8,0-184.2,0c-1.5,0-3.1,0-4.6-0.1c-2.9-0.2-1-2.4-1.4-3.7c-0.3-0.9-0.4-2.1,1.4-2
c4.7,0.1,8.1-3.3,8.2-7.6c0.1-4.4-3.4-8-7.8-8c-1.6,0-2-0.5-1.8-1.9c0.1-1.1-0.3-2.4,0.2-3.4c0.5-1.2,2-0.4,3.1-0.6
c4-0.8,6.8-4.5,6.4-8.6c-0.4-4-3.8-7.1-7.9-7c-1.5,0-1.9-0.5-1.7-1.8c0-0.2,0-0.4,0-0.5c0-1-0.3-2.2,0.1-3c0.5-1,1.8-0.3,2.8-0.5
c4-0.6,6.9-4.2,6.7-8.4c-0.2-3.9-3.7-7.3-7.7-7.2c-1.8,0-2.2-0.6-2-2.1c0-0.2,0-0.5,0-0.7c0-2.7,0-2.7,2.7-3c4-0.4,7.1-4,7-8.1
c-0.1-4-3.5-7.6-7.4-7.5c-2,0-2.5-0.6-2.3-2.4c0.1-0.3,0-0.7,0-1.1c-0.2-1.7,0.2-2.5,2.2-2.4c4.1,0.1,7.4-3.6,7.4-7.8
c0-4.2-3.4-7.8-7.5-7.8c-1.9,0-2.4-0.6-2.2-2.3c0-0.3,0-0.6,0-0.9c0-2.4,0-2.4,2.5-2.6c4-0.3,7.2-3.8,7.2-8c0-4.1-3.4-7.7-7.4-7.7
c-2,0-2.5-0.6-2.2-2.4c0-0.1,0-0.2,0-0.4c0-2.8,0-2.8,2.8-3.1c4-0.5,7-4.1,6.9-8.2c-0.1-3.9-3.6-7.5-7.5-7.4c-2,0-2.4-0.6-2.1-2.3
c0-0.3,0-0.6,0-0.9c0-2.4,0-2.4,2.5-2.6c4-0.3,7.2-3.9,7.2-8c0-4.1-3.4-7.7-7.4-7.7c-2,0-2.5-0.7-2.2-2.4c0-0.1,0-0.2,0-0.4
c0-2.8,0-2.8,2.8-3.1c4-0.5,7-4.1,6.9-8.2C9.7,8.9,6.3,5.4,2.3,5.5c-2,0.1-2.2-0.7-2.2-2.3C0.3,0,0.2,0,3.4,0C66,0,128.5,0,191,0
c1.5,0,1.9,0.4,2.1,1.9c0.6,4.8,4.2,8.8,9,9.9c1.2,0.3,1.8,0.7,1.6,2c-0.2,1.1,0.4,1.3,1.3,1.3c1,0,1.3-0.4,1.2-1.3
c-0.2-1.2,0.3-1.6,1.4-1.9c5.5-1.3,8.7-4.9,9.5-10.5c0.2-1.2,0.5-1.6,1.6-1.4c0.3,0,0.6,0,0.9,0C356.8,0,494,0,631.1,0
c2.5,0,2.5,0,2.5,2.4c0,64.6,0,129.1,0,193.7c0,2.8,0.4,2.4-2.3,2.4C562.7,198.5,494.1,198.5,425.5,198.5z"/>
<path class="st1" d="M203.7,20c0.1-1-0.7-2.7,1.7-2.4c0.5,0.1,0.8,0.2,0.8,0.7c0,1.2,0,2.4,0,3.6c0,0.8-0.6,0.7-1.1,0.7
c-0.5,0-1.3,0.3-1.3-0.7C203.7,21.3,203.7,20.7,203.7,20z"/>
<path class="st1" d="M203.7,27.5c0.1-1-0.7-2.7,1.7-2.4c0.5,0.1,0.8,0.2,0.8,0.7c0,1.2,0,2.4,0,3.6c0,0.8-0.6,0.7-1.1,0.7
c-0.5,0-1.3,0.3-1.3-0.7C203.7,28.8,203.7,28.2,203.7,27.5z"/>
<path class="st1" d="M203.7,35c0.2-1-0.7-2.7,1.7-2.4c0.6,0.1,0.8,0.3,0.8,0.9c0,1.1,0,2.1,0,3.2c0,0.9-0.5,1-1.2,0.9
c-0.6,0-1.4,0.2-1.4-0.9C203.7,36.2,203.7,35.7,203.7,35z"/>
<path class="st2" d="M203.7,42.5c0-1.1-0.5-2.7,1.7-2.4c0.6,0.1,0.8,0.3,0.8,0.9c0,1.1,0,2.1,0,3.2c0,0.9-0.5,1-1.1,0.9
c-0.6,0-1.4,0.2-1.4-0.9C203.7,43.7,203.7,43.1,203.7,42.5z"/>
<path class="st2" d="M203.7,50.1c0.1-1.1-0.5-2.7,1.7-2.4c0.6,0.1,0.8,0.3,0.8,0.9c0,1.1,0,2.1,0,3.2c0,0.9-0.5,1-1.1,0.9
c-0.6,0-1.4,0.2-1.4-0.9C203.7,51.3,203.7,50.7,203.7,50.1z"/>
<path class="st2" d="M203.7,57.7c0.2-0.9-0.7-2.6,1.6-2.3c0.7,0.1,1,0.3,0.9,1c0,1,0,2,0,3c0.1,0.9-0.5,1-1.2,1.1
c-0.8,0-1.4-0.1-1.3-1.1C203.8,58.8,203.7,58.3,203.7,57.7z"/>
<path class="st3" d="M203.7,65.2c0.2-0.9-0.7-2.6,1.6-2.3c0.7,0.1,1,0.3,0.9,1c0,1,0,2,0,3c0.1,0.9-0.5,1.1-1.2,1.1
c-0.8,0-1.4-0.1-1.3-1.1C203.8,66.3,203.7,65.9,203.7,65.2z"/>
<path class="st1" d="M203.7,72.8c0.2-0.9-0.8-2.6,1.6-2.4c0.7,0.1,1,0.2,1,0.9c0,0.8,0,1.5,0,2.3c0,0.8,0.3,1.8-1.2,1.8
c-1.6,0-1.3-1-1.3-1.9C203.7,73.4,203.7,73.2,203.7,72.8z"/>
<path class="st1" d="M203.7,80.3c0.2-0.9-0.8-2.6,1.5-2.4c0.7,0.1,1,0.2,1,0.9c0,1-0.1,2,0,3c0.1,0.9-0.4,1.1-1.2,1.1
c-0.8,0-1.4-0.1-1.3-1.1C203.8,81.4,203.7,80.9,203.7,80.3z"/>
<path class="st4" d="M203.7,87.9c0.2-0.9-0.8-2.7,1.6-2.4c0.7,0.1,0.9,0.3,0.9,1c0,0.8,0,1.5,0,2.3c0,0.8,0.4,1.8-1.2,1.8
c-1.5,0-1.4-0.9-1.3-1.8C203.7,88.5,203.7,88.3,203.7,87.9z"/>
<path class="st5" d="M203.7,95.6c0-0.6,0-1.2,0-1.8c0-1,0.7-0.8,1.2-0.8c0.6,0,1.3-0.2,1.3,0.8c0,0.8,0,1.7,0,2.5
c0,0.9,0.2,1.8-1.3,1.8c-1.5,0-1.1-1-1.2-1.8C203.7,96,203.7,95.8,203.7,95.6C203.7,95.6,203.7,95.6,203.7,95.6z"/>
<path class="st5" d="M206.2,103c0,0.6,0,1.2,0,1.8c0,1-0.7,0.8-1.2,0.8c-0.6,0-1.3,0.2-1.3-0.8c0-0.8,0-1.7,0-2.5
c0-0.9-0.2-1.8,1.3-1.8c1.5,0,1.1,1,1.2,1.8C206.2,102.5,206.2,102.8,206.2,103C206.2,103,206.2,103,206.2,103z"/>
<path class="st4" d="M203.7,110.4c0.3-0.8-0.9-2.6,1.5-2.4c0.7,0.1,1.1,0.2,1,1c0,1-0.1,2,0,3c0.1,1-0.5,1-1.2,1
c-0.8,0-1.4,0-1.3-1.1C203.8,111.5,203.7,111.1,203.7,110.4z"/>
<path class="st1" d="M206.2,118.3c-0.2,0.9,0.7,2.6-1.6,2.3c-0.7-0.1-0.9-0.3-0.9-1c0-1,0.1-1.9,0-2.9c-0.1-1,0.3-1.2,1.2-1.2
c0.8,0,1.4,0.1,1.3,1.2C206.2,117.2,206.2,117.7,206.2,118.3z"/>
<path class="st1" d="M206.2,125.8c0,2.3-0.3,2.7-1.8,2.4c-0.3-0.1-0.6-0.1-0.6-0.5c0-1.4-0.1-2.7,0.1-4.1c0.1-0.8,1-0.4,1.5-0.4
c0.6-0.1,0.9,0.2,0.9,0.8C206.2,124.6,206.2,125.2,206.2,125.8z"/>
<path class="st3" d="M206.2,133.4c-0.3,0.8,0.8,2.5-1.4,2.3c-0.7-0.1-1.1-0.2-1.1-1c0-0.8,0-1.5,0-2.3c0-0.9-0.2-1.7,1.3-1.7
c1.5,0,1.2,0.9,1.2,1.8C206.2,132.7,206.2,133,206.2,133.4z"/>
<path class="st2" d="M203.7,140.4c0.1-0.6-0.3-1.4,0.2-2c0.4-0.5,1.1-0.2,1.7-0.2c0.7,0,0.6,0.6,0.6,1.1c0,0.7,0,1.4,0,2.1
c0,0.9,0.2,1.9-1.3,1.8c-1.5,0-1.1-1-1.2-1.8C203.7,141.1,203.7,140.8,203.7,140.4z"/>
<path class="st2" d="M206.2,148.5c-0.1,1,0.7,2.7-1.7,2.4c-0.5-0.1-0.8-0.2-0.8-0.7c0-1.2,0-2.4,0-3.6c0-0.8,0.6-0.7,1.1-0.7
c0.5,0,1.3-0.2,1.3,0.7C206.2,147.2,206.2,147.8,206.2,148.5z"/>
<path class="st2" d="M206.2,156.1c-0.2,0.8,0.8,2.5-1.5,2.3c-0.7-0.1-1.1-0.3-1.1-1c0-0.8,0-1.7,0-2.5c-0.1-0.9,0.1-1.5,1.3-1.5
c1.3,0,1.3,0.7,1.2,1.6C206.2,155.3,206.2,155.6,206.2,156.1z"/>
<path class="st1" d="M206.2,163.5c-0.1,1,0.7,2.7-1.7,2.4c-0.5-0.1-0.8-0.2-0.8-0.7c0-1.2,0-2.4,0-3.6c0-0.8,0.6-0.7,1.1-0.7
c0.5,0,1.3-0.3,1.3,0.7C206.2,162.2,206.2,162.8,206.2,163.5z"/>
<path class="st1" d="M203.7,170.8c0-2.4,0.3-2.7,1.8-2.4c0.3,0.1,0.6,0.1,0.6,0.5c0,1.4,0.1,2.7,0,4.1c-0.1,0.8-1,0.4-1.5,0.4
c-0.6,0.1-0.9-0.2-0.9-0.8C203.7,172,203.7,171.4,203.7,170.8z"/>
<path class="st1" d="M206.2,178.5c-0.1,1.1,0.7,2.9-1.7,2.5c-0.5-0.1-0.8-0.2-0.8-0.7c0-1.1,0-2.3,0-3.4c0-1.1,0.7-0.9,1.4-0.9
c0.6,0,1.2,0,1.2,0.9C206.2,177.4,206.2,178,206.2,178.5z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#707070;}
</style>
<path class="st0" d="M10.3,54.5c-3,0-5.4-2.4-5.4-5.4v-8.6c0-0.8,0.2-2.7,2.1-3.8l0.3-0.1c1.7-0.6,3.5-1.6,3.5-4.7
c0-2.6-2.3-4.1-3.7-4.7c-2.1-1.1-2.1-2.7-2.1-3.9v-8.6c0-3,2.4-5.4,5.4-5.4h43.3c3,0,5.4,2.4,5.4,5.4v8.6c0,1.5-0.1,2.6-1.9,3.8
c-3,1.6-3.8,2.6-3.8,4.8c0,1.9,0.6,3.1,3.7,4.7l0.2,0.1c1.2,0.9,1.9,1.7,1.9,3.7v8.6c0,3-2.4,5.4-5.4,5.4H10.3z M10.3,11.7
c-1.8,0-3.2,1.4-3.2,3.2v8.6c0,1.2,0.1,1.5,0.9,1.9c3.1,1.4,4.9,3.9,4.9,6.7c0,3.3-1.6,5.6-4.8,6.7l-0.1,0l-0.1,0
c-0.7,0.5-0.9,1.4-0.9,1.8v8.6c0,1.8,1.5,3.2,3.2,3.2h43.3c1.8,0,3.2-1.4,3.2-3.2v-8.6c0-1.1-0.1-1.3-0.9-1.9
c-3-1.5-4.9-3.2-4.9-6.7c0-3.4,1.7-5,4.9-6.7c0.8-0.6,0.9-0.8,0.9-1.9v-8.6c0-1.8-1.5-3.2-3.2-3.2H10.3z"/>
<path class="st0" d="M31.2,43.8c-0.2,0-0.3-0.1-0.3-0.3v-5.8h-7.3c-0.2,0-0.3-0.2-0.3-0.3v-1.5c0-0.2,0.1-0.3,0.3-0.3h7.3v-3.9h-7.3
c-0.2,0-0.3-0.1-0.3-0.3v-1.5c0-0.2,0.1-0.3,0.3-0.3h6.8l-7-7.5c-0.1-0.1-0.1-0.4,0-0.5l1-1.1c0-0.1,0.1-0.1,0.2-0.1
c0,0,0.1,0,0.2,0.1l7.3,7.8l7.3-7.8c0.1-0.1,0.1-0.1,0.2-0.1c0.1,0,0.1,0,0.2,0.1l1,1.1c0.1,0.1,0.1,0.4,0,0.5l-6.9,7.5h6.8
c0.1,0,0.2,0,0.2,0.1c0.1,0.1,0.1,0.1,0.1,0.2v1.5c0,0.2-0.1,0.3-0.3,0.3h-7.3v3.9h7.3c0.2,0,0.3,0.1,0.3,0.3v1.5
c0,0.2-0.1,0.3-0.3,0.3h-7.3v5.8c0,0.2-0.1,0.3-0.3,0.3H31.2z"/>
</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="1533212712987" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2430" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M789.333333 343.466667c-12.8 0-21.333333 8.533333-21.333333 21.333333v490.666667c0 23.466667-19.2 42.666667-42.666667 42.666666H298.666667c-23.466667 0-42.666667-19.2-42.666667-42.666666V362.666667c0-12.8-8.533333-21.333333-21.333333-21.333334s-21.333333 8.533333-21.333334 21.333334v490.666666c0 46.933333 38.4 85.333333 85.333334 85.333334h426.666666c46.933333 0 85.333333-38.4 85.333334-85.333334V362.666667c0-10.666667-10.666667-19.2-21.333334-19.2zM915.2 234.666667H746.666667V170.666667c0-46.933333-38.4-85.333333-85.333334-85.333334H362.666667c-46.933333 0-85.333333 38.4-85.333334 85.333334v64H106.666667c-12.8 0-21.333333 8.533333-21.333334 21.333333s8.533333 21.333333 21.333334 21.333333h808.533333c12.8 0 21.333333-8.533333 21.333333-21.333333s-8.533333-21.333333-21.333333-21.333333zM320 170.666667c0-23.466667 19.2-42.666667 42.666667-42.666667h298.666666c23.466667 0 42.666667 19.2 42.666667 42.666667v64H320V170.666667z" p-id="2431" fill="#707070"></path><path d="M640 704V364.8c0-12.8-8.533333-21.333333-21.333333-21.333333s-21.333333 8.533333-21.333334 21.333333V704c0 12.8 8.533333 21.333333 21.333334 21.333333s21.333333-10.666667 21.333333-21.333333zM426.666667 704V362.666667c0-12.8-8.533333-21.333333-21.333334-21.333334s-21.333333 8.533333-21.333333 21.333334v341.333333c0 12.8 8.533333 21.333333 21.333333 21.333333s21.333333-10.666667 21.333334-21.333333z" p-id="2432" fill="#707070"></path></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#707070;}
</style>
<path class="st0" d="M59.9,32.2l-5.9-9.4c-1-1.6-2.8-2.6-4.7-2.6h-8.5v-4.9c0-3.1-2.5-5.5-5.5-5.5H8.8c-3.1,0-5.5,2.5-5.5,5.5V42
c0,3.1,2.5,5.5,5.5,5.5h6.5v0.1c0,3.7,3,6.6,6.6,6.6s6.6-3,6.6-6.6v-0.1H43v0.1c0,3.7,3,6.6,6.6,6.6s6.6-3,6.6-6.6v-0.2
c2.5-0.5,4.4-2.8,4.4-5.4v-6.8C60.8,34.1,60.5,33.1,59.9,32.2z M22,52c-2.4,0-4.4-2-4.4-4.4v-0.1c0-0.8,0.2-1.6,0.6-2.2
c0.8-1.3,2.2-2.2,3.8-2.2c1.6,0,3,0.9,3.8,2.2c0.4,0.6,0.6,1.4,0.6,2.2v0.1C26.4,50,24.4,52,22,52z M38.7,22.7V42l0,3.3H28.2
c-0.9-2.5-3.4-4.4-6.2-4.4s-5.3,1.8-6.2,4.4H8.8c-1.8,0-3.3-1.5-3.3-3.3V15.3C5.5,13.5,7,12,8.8,12h26.5c1.8,0,3.3,1.5,3.3,3.3v6.9
C38.7,22.4,38.7,22.5,38.7,22.7z M49.7,52c-2.4,0-4.4-2-4.4-4.4v-0.1c0-0.8,0.2-1.6,0.6-2.2c0.8-1.3,2.2-2.2,3.8-2.2s3,0.9,3.8,2.2
c0.4,0.6,0.6,1.4,0.6,2.2v0.1C54.1,50,52.1,52,49.7,52z M58.5,42c0,1.6-1.1,2.9-2.6,3.3c-0.9-2.5-3.4-4.3-6.2-4.3
c-2.9,0-5.3,1.8-6.2,4.4h-2.5c0-0.8,0-2,0-3.3V22.4h8.5c1.2,0,2.2,0.6,2.8,1.6l5.9,9.4c0.3,0.5,0.5,1.1,0.5,1.8V42z"/>
<path class="st0" d="M33.1,21H19.8c-0.6,0-1.1-0.5-1.1-1.1c0-0.6,0.5-1.1,1.1-1.1h13.3c0.6,0,1.1,0.5,1.1,1.1
C34.2,20.5,33.7,21,33.1,21z"/>
<path class="st0" d="M28.7,27.6H15.4c-0.6,0-1.1-0.5-1.1-1.1c0-0.6,0.5-1.1,1.1-1.1h13.3c0.6,0,1.1,0.5,1.1,1.1
C29.8,27.1,29.3,27.6,28.7,27.6z"/>
<path class="st0" d="M24.2,34.2H11c-0.6,0-1.1-0.5-1.1-1.1S10.4,32,11,32h13.3c0.6,0,1.1,0.5,1.1,1.1S24.8,34.2,24.2,34.2z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#707070;}
</style>
<path class="st0" d="M24.9,43.5c-0.4,0-0.7-0.1-1-0.4c-0.6-0.6-0.6-1.5,0-2.1l26.6-26.6c0.6-0.6,1.5-0.6,2.1,0
c0.6,0.6,0.6,1.5,0,2.1L25.9,43.1C25.6,43.4,25.2,43.5,24.9,43.5z"/>
<path class="st0" d="M52.7,32c-0.9,0-1.5,0.6-1.5,1.5v14.8c0,1.6-1.3,3-3,3H15.7c-1.6,0-3-1.3-3-3V15.7c0-1.6,1.3-3,3-3h14.8
c0.9,0,1.5-0.6,1.5-1.5c0-0.9-0.6-1.5-1.5-1.5H15.7c-3.3,0-5.9,2.7-5.9,5.9v32.5c0,3.3,2.7,5.9,5.9,5.9h32.5c3.3,0,5.9-2.7,5.9-5.9
V33.5C54.2,32.6,53.6,32,52.7,32z"/>
</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="1539589703547" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10042" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M832 277.333333c-12.8 0-21.333333 8.533333-21.333333 21.333334v554.666666c0 23.466667-19.2 42.666667-42.666667 42.666667H192c-23.466667 0-42.666667-19.2-42.666667-42.666667V213.333333c0-23.466667 19.2-42.666667 42.666667-42.666666h490.666667c12.8 0 21.333333-8.533333 21.333333-21.333334s-8.533333-21.333333-21.333333-21.333333H192c-46.933333 0-85.333333 38.4-85.333333 85.333333v640c0 46.933333 38.4 85.333333 85.333333 85.333334h576c46.933333 0 85.333333-38.4 85.333333-85.333334V298.666667c0-12.8-8.533333-21.333333-21.333333-21.333334z" p-id="10043" fill="#707070"></path><path d="M910.933333 70.4c-8.533333-8.533333-21.333333-8.533333-29.866666 0L563.2 388.266667c-8.533333 8.533333-8.533333 21.333333 0 29.866666 4.266667 4.266667 10.666667 6.4 14.933333 6.4s10.666667-2.133333 14.933334-6.4L910.933333 102.4c8.533333-8.533333 8.533333-23.466667 0-32zM448 384h-192c-12.8 0-21.333333 8.533333-21.333333 21.333333s8.533333 21.333333 21.333333 21.333334h192c12.8 0 21.333333-8.533333 21.333333-21.333334s-8.533333-21.333333-21.333333-21.333333zM704 554.666667H256c-12.8 0-21.333333 8.533333-21.333333 21.333333s8.533333 21.333333 21.333333 21.333333h448c12.8 0 21.333333-8.533333 21.333333-21.333333s-8.533333-21.333333-21.333333-21.333333zM704 723.2H256c-12.8 0-21.333333 8.533333-21.333333 21.333333s8.533333 21.333333 21.333333 21.333334h448c12.8 0 21.333333-8.533333 21.333333-21.333334s-8.533333-21.333333-21.333333-21.333333z" p-id="10044" fill="#707070"></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="1533212887349" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2915" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M915.2 413.866667c-4.266667-14.933333-19.2-25.6-34.133333-29.866667l-228.266667-34.133333-100.266667-215.466667c-6.4-14.933333-21.333333-25.6-38.4-25.6s-32 8.533333-38.4 23.466667l-106.666666 215.466666L142.933333 384c-14.933333 2.133333-27.733333 12.8-34.133333 27.733333-4.266667 14.933333-2.133333 32 10.666667 42.666667l166.4 172.8-38.4 238.933333c-2.133333 17.066667 4.266667 32 17.066666 42.666667 12.8 8.533333 32 10.666667 44.8 2.133333l202.666667-110.933333 202.666667 113.066667c6.4 4.266667 12.8 6.4 21.333333 6.4s17.066667-2.133333 23.466667-8.533334c12.8-8.533333 19.2-25.6 17.066666-40.533333l-38.4-241.066667 166.4-170.666666c10.666667-12.8 14.933333-29.866667 10.666667-44.8z" p-id="2916" fill="#e0e0e0"></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="1533214335883" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3441" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M915.2 413.866667c-4.266667-14.933333-19.2-25.6-34.133333-29.866667l-228.266667-34.133333-100.266667-215.466667c-6.4-14.933333-21.333333-25.6-38.4-25.6s-32 8.533333-38.4 23.466667l-106.666666 215.466666L142.933333 384c-14.933333 2.133333-27.733333 12.8-34.133333 27.733333-4.266667 14.933333-2.133333 32 10.666667 42.666667l166.4 172.8-38.4 238.933333c-2.133333 17.066667 4.266667 32 17.066666 42.666667 12.8 8.533333 32 10.666667 44.8 2.133333l202.666667-110.933333 202.666667 113.066667c6.4 4.266667 12.8 6.4 21.333333 6.4s17.066667-2.133333 23.466667-8.533334c12.8-8.533333 19.2-25.6 17.066666-40.533333l-38.4-241.066667 166.4-170.666666c10.666667-12.8 14.933333-29.866667 10.666667-44.8z" p-id="3442" fill="#FFD700"></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="1533212887349" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2915" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M915.2 413.866667c-4.266667-14.933333-19.2-25.6-34.133333-29.866667l-228.266667-34.133333-100.266667-215.466667c-6.4-14.933333-21.333333-25.6-38.4-25.6s-32 8.533333-38.4 23.466667l-106.666666 215.466666L142.933333 384c-14.933333 2.133333-27.733333 12.8-34.133333 27.733333-4.266667 14.933333-2.133333 32 10.666667 42.666667l166.4 172.8-38.4 238.933333c-2.133333 17.066667 4.266667 32 17.066666 42.666667 12.8 8.533333 32 10.666667 44.8 2.133333l202.666667-110.933333 202.666667 113.066667c6.4 4.266667 12.8 6.4 21.333333 6.4s17.066667-2.133333 23.466667-8.533334c12.8-8.533333 19.2-25.6 17.066666-40.533333l-38.4-241.066667 166.4-170.666666c10.666667-12.8 14.933333-29.866667 10.666667-44.8z" p-id="2916" fill="#96588a"></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="1533212873446" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4975" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M736 917.333333c-6.4 0-14.933333-2.133333-21.333333-6.4L512 797.866667l-202.666667 110.933333c-14.933333 8.533333-32 8.533333-44.8-2.133333-12.8-10.666667-21.333333-25.6-17.066666-42.666667l38.4-238.933333-166.4-172.8c-10.666667-10.666667-14.933333-27.733333-10.666667-42.666667 4.266667-14.933333 17.066667-25.6 34.133333-27.733333l151.466667-19.2c12.8-2.133333 23.466667 6.4 23.466667 19.2 2.133333 12.8-6.4 23.466667-19.2 23.466666l-149.333334 19.2 174.933334 179.2c4.266667 4.266667 6.4 10.666667 6.4 19.2l-40.533334 249.6 213.333334-117.333333c6.4-4.266667 14.933333-4.266667 21.333333 0l213.333333 117.333333-40.533333-251.733333c-2.133333-6.4 2.133333-12.8 6.4-19.2l170.666667-174.933333-238.933334-36.266667c-6.4-2.133333-12.8-6.4-17.066666-12.8L512 149.333333l-110.933333 226.133334c-4.266667 10.666667-17.066667 14.933333-27.733334 10.666666-10.666667-4.266667-14.933333-17.066667-10.666666-27.733333l110.933333-226.133333C482.133333 117.333333 497.066667 106.666667 512 106.666667c17.066667 0 32 8.533333 38.4 25.6l100.266667 215.466666L881.066667 384c17.066667 2.133333 29.866667 12.8 34.133333 29.866667 4.266667 14.933333 2.133333 32-10.666667 42.666666l-166.4 170.666667 38.4 241.066667c2.133333 17.066667-4.266667 32-17.066666 40.533333-6.4 4.266667-14.933333 8.533333-23.466667 8.533333z" p-id="4976" fill="#707070"></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="1533213030294" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3090" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M608.256 960c-17.696 0-32-14.304-32-32L576.256 448c0-7.936 2.944-15.584 8.256-21.44l208.8-234.496L230.432 192.064l209.216 234.656c5.216 5.856 8.096 13.44 8.096 21.312l0 288.768 50.848 41.152c13.76 11.136 15.872 31.264 4.736 44.992s-31.264 15.84-44.992 4.736l-62.72-50.752c-7.52-6.048-11.872-15.232-11.872-24.864l0-291.872L135.136 181.344C126.752 171.936 124.672 158.464 129.824 146.944 134.976 135.456 146.432 128.032 159.04 128.032l706.336 0c12.672 0 24.128 7.456 29.248 19.008s2.976 25.056-5.504 34.432l-248.864 278.816L640.256 928C640.256 945.696 625.952 960 608.256 960z" p-id="3091" fill="#707070"></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="1539678320372" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4887" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M791.466667 106.666667H232.533333C187.733333 106.666667 149.333333 145.066667 149.333333 192v640c0 46.933333 38.4 85.333333 83.2 85.333333h558.933334c46.933333 0 83.2-38.4 83.2-85.333333V192c0-46.933333-36.266667-85.333333-83.2-85.333333z m-76.8 170.666666c17.066667 0 32 14.933333 32 32s-14.933333 32-32 32-32-14.933333-32-32 14.933333-32 32-32z m-192 0c17.066667 0 32 14.933333 32 32s-14.933333 32-32 32-32-12.8-32-32c0-17.066667 14.933333-32 32-32z m-211.2 0c17.066667 0 32 14.933333 32 32s-14.933333 32-32 32-32-14.933333-32-32 12.8-32 32-32zM298.666667 490.666667h334.933333c12.8 0 21.333333 8.533333 21.333333 21.333333s-8.533333 21.333333-21.333333 21.333333H298.666667c-12.8 0-21.333333-8.533333-21.333334-21.333333s10.666667-21.333333 21.333334-21.333333z m426.666666 236.8H298.666667c-12.8 0-21.333333-8.533333-21.333334-21.333334s8.533333-21.333333 21.333334-21.333333h426.666666c12.8 0 21.333333 8.533333 21.333334 21.333333s-8.533333 21.333333-21.333334 21.333334z" p-id="4888" fill="#96588a"></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="1533213042092" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3265" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M791.466667 106.666667H232.533333C187.733333 106.666667 149.333333 145.066667 149.333333 192v640c0 46.933333 38.4 85.333333 83.2 85.333333h558.933334c46.933333 0 83.2-38.4 83.2-85.333333V192c0-46.933333-36.266667-85.333333-83.2-85.333333zM832 832c0 23.466667-19.2 42.666667-40.533333 42.666667H232.533333c-21.333333 0-40.533333-19.2-40.533333-42.666667V192c0-23.466667 19.2-42.666667 40.533333-42.666667h558.933334c23.466667 0 40.533333 19.2 40.533333 42.666667v640z" p-id="3266" fill="#707070"></path><path d="M298.666667 533.333333h334.933333c12.8 0 21.333333-8.533333 21.333333-21.333333s-8.533333-21.333333-21.333333-21.333333H298.666667c-12.8 0-21.333333 8.533333-21.333334 21.333333s10.666667 21.333333 21.333334 21.333333zM725.333333 684.8H298.666667c-12.8 0-21.333333 8.533333-21.333334 21.333333s8.533333 21.333333 21.333334 21.333334h426.666666c12.8 0 21.333333-8.533333 21.333334-21.333334s-8.533333-21.333333-21.333334-21.333333z" p-id="3267" fill="#707070"></path><path d="M311.466667 309.333333m-32 0a32 32 0 1 0 64 0 32 32 0 1 0-64 0Z" p-id="3268" fill="#707070"></path><path d="M522.666667 309.333333m-32 0a32 32 0 1 0 64 0 32 32 0 1 0-64 0Z" p-id="3269" fill="#707070"></path><path d="M714.666667 309.333333m-32 0a32 32 0 1 0 64 0 32 32 0 1 0-64 0Z" p-id="3270" fill="#707070"></path></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#707070;}
</style>
<path class="st0" d="M19.5,7.9c0.5,0,1.1,0.1,1.3,0.5l22.7,22c0.4,0.4,0.7,0.9,0.7,1.5s-0.3,1.1-0.7,1.5l-22.8,22
c-0.8,0.8-2,0.8-2.8,0c-0.8-0.8-0.8-2,0-2.8l21.3-20.7L18.1,11.4c-0.8-0.8-0.8-2,0-2.8C18.5,8.1,19,7.9,19.5,7.9z"/>
</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="1533213084565" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3748" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M951.466667 430.933333L565.333333 125.866667c-29.866667-23.466667-76.8-23.466667-106.666666 0L72.533333 430.933333c-6.4 6.4-10.666667 14.933333-6.4 23.466667s10.666667 14.933333 19.2 14.933333h44.8v375.466667c0 42.666667 32 72.533333 74.666667 72.533333h224c12.8 0 21.333333-8.533333 21.333333-21.333333v-153.6c0-32 27.733333-59.733333 61.866667-59.733333h4.266667c34.133333 0 61.866667 27.733333 61.866666 59.733333V896c0 12.8 8.533333 21.333333 21.333334 21.333333h226.133333c42.666667 0 70.4-29.866667 70.4-72.533333V469.333333h42.666667c8.533333 0 17.066667-6.4 19.2-14.933333s2.133333-17.066667-6.4-23.466667z" fill="#96588a" p-id="3749"></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="1534789756744" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5612" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M951.467 425.956l-386.133-307.2c-29.867-23.467-76.8-23.467-106.667 0l-386.133 307.2c-8.533 6.4-10.667 21.333-4.267 29.867 6.4 8.533 21.333 10.667 29.867 4.267l386.133-309.333c14.933-10.667 40.533-10.667 53.333 0l386.133 307.2c6.4 4.267 10.667 4.267 14.933 4.267 6.4 0 12.8-2.133 17.067-8.533 6.4-8.533 6.4-21.333-4.267-27.733zM874.667 504.889c-12.8 0-21.333 8.533-21.333 21.333v311.467c0 19.2-8.533 29.867-27.733 29.867h-204.8v-132.267c0-57.6-46.933-102.4-104.533-102.4h-4.267c-57.6 0-104.533 46.933-104.533 102.4v132.267h-204.8c-19.2 0-32-10.667-32-29.867v-311.467c0-12.8-8.533-21.333-21.333-21.333s-21.333 8.533-21.333 21.333v311.467c0 42.667 32 72.533 74.667 72.533h226.133c12.8 0 21.333-8.533 21.333-21.333v-153.6c0-32 27.733-59.733 61.867-59.733h4.267c34.133 0 61.867 27.733 61.867 59.733v153.6c0 12.8 8.533 21.333 21.333 21.333h226.133c42.667 0 70.4-29.867 70.4-72.533v-311.467c0-10.667-8.533-21.333-21.333-21.333z" p-id="5613" fill="#707070"></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="1541065413045" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4887" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M736 128c-65.952 0-128.576 25.024-176.384 70.464-4.576 4.32-28.672 28.736-47.328 47.68L464.96 199.04C417.12 153.216 354.272 128 288 128c-141.152 0-256 114.848-256 256 0 82.432 41.184 144.288 76.48 182.496l316.896 320.128C450.464 911.68 478.304 928 512 928c33.696 0 61.568-16.32 86.752-41.504l316.736-320 2.208-2.464C955.904 516.384 992 471.392 992 384 992 242.848 877.152 128 736 128z" p-id="4888" fill="#96588a"></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="1539929890160" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5615" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M465.92 650.24c-5.12 0-15.36 0-20.48-5.12-35.84-35.84-51.2-81.92-51.2-133.12s20.48-97.28 56.32-133.12L624.64 204.8c71.68-71.68 189.44-71.68 261.12 0 35.84 35.84 56.32 81.92 56.32 133.12s-20.48 97.28-56.32 133.12l-102.4 102.4c-10.24 10.24-25.6 10.24-35.84 0s-10.24-25.6 0-35.84l102.4-102.4c20.48-25.6 35.84-61.44 35.84-97.28s-15.36-66.56-40.96-92.16c-51.2-51.2-138.24-51.2-189.44 0L481.28 419.84c-25.6 20.48-35.84 56.32-35.84 92.16s15.36 71.68 40.96 92.16c10.24 10.24 10.24 25.6 0 35.84-10.24 5.12-15.36 10.24-20.48 10.24z" fill="#96588a" p-id="5616"></path><path d="M302.08 972.8c-46.08 0-97.28-20.48-133.12-56.32-35.84-35.84-56.32-81.92-56.32-133.12s20.48-97.28 56.32-133.12L261.12 563.2c10.24-10.24 25.6-10.24 35.84 0s10.24 25.6 0 35.84L204.8 691.2c-25.6 25.6-40.96 56.32-40.96 92.16s15.36 71.68 40.96 92.16c51.2 51.2 138.24 51.2 189.44 0l174.08-174.08c25.6-25.6 40.96-56.32 40.96-92.16s-15.36-71.68-40.96-92.16c-10.24-10.24-10.24-25.6 0-35.84s25.6-10.24 35.84 0c35.84 35.84 56.32 81.92 56.32 133.12s-20.48 97.28-56.32 133.12L430.08 921.6c-35.84 30.72-81.92 51.2-128 51.2z" fill="#96588a" p-id="5617"></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="1533213122210" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5392" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M682.666667 405.333333c0-93.866667-76.8-170.666667-170.666667-170.666666s-170.666667 76.8-170.666667 170.666666 76.8 170.666667 170.666667 170.666667c96 0 170.666667-76.8 170.666667-170.666667z m-298.666667 0c0-70.4 57.6-128 128-128s128 57.6 128 128-57.6 128-128 128-128-57.6-128-128z" p-id="5393" fill="#707070"></path><path d="M512 64C324.266667 64 170.666667 217.6 170.666667 405.333333c0 117.333333 128 326.4 219.733333 439.466667 6.4 8.533333 21.333333 10.666667 29.866667 2.133333 8.533333-6.4 10.666667-21.333333 2.133333-29.866666-85.333333-106.666667-209.066667-311.466667-209.066667-411.733334 0-164.266667 134.4-298.666667 298.666667-298.666666s298.666667 134.4 298.666667 298.666666c0 166.4-311.466667 516.266667-313.6 518.4-8.533333 8.533333-6.4 21.333333 2.133333 29.866667 4.266667 4.266667 8.533333 6.4 14.933333 6.4 6.4 0 10.666667-2.133333 14.933334-6.4C541.866667 938.666667 853.333333 588.8 853.333333 405.333333c0-187.733333-151.466667-341.333333-341.333333-341.333333z" p-id="5394" fill="#707070"></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="1533213140675" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4098" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M616.533333 618.666667c106.666667-42.666667 181.333333-147.2 181.333334-266.666667C797.866667 192 669.866667 64 509.866667 64c-157.866667 0-288 128-288 288 0 121.6 74.666667 224 181.333333 266.666667-134.4 38.4-241.066667 151.466667-268.8 294.4-2.133333 6.4 0 12.8 4.266667 17.066666 2.133333 4.266667 8.533333 8.533333 14.933333 8.533334h712.533333c6.4 0 12.8-2.133333 17.066667-8.533334 4.266667-4.266667 6.4-10.666667 4.266667-17.066666-29.866667-142.933333-136.533333-256-270.933334-294.4z" fill="#96588a" p-id="4099"></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="1534789820182" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5964" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M800 352C800 194.133333 672 64 512 64S224 194.133333 224 352c0 117.333333 70.4 219.733333 172.8 264.533333-130.133333 42.666667-236.8 153.6-270.933333 296.533334-2.133333 10.666667 4.266667 23.466667 14.933333 25.6h4.266667c10.666667 0 19.2-6.4 21.333333-17.066667C204.8 759.466667 349.866667 640 509.866667 640h2.133333c160 0 288-130.133333 288-288z m-533.333333 0C266.666667 217.6 377.6 106.666667 512 106.666667s245.333333 110.933333 245.333333 245.333333S646.4 597.333333 512 597.333333s-245.333333-110.933333-245.333333-245.333333zM893.866667 913.066667c-23.466667-96-78.933333-179.2-157.866667-234.666667l-21.333333-14.933333c-10.666667-6.4-23.466667-4.266667-29.866667 6.4-6.4 10.666667-4.266667 23.466667 6.4 29.866666l21.333333 14.933334c70.4 49.066667 121.6 123.733333 140.8 211.2 2.133333 10.666667 10.666667 17.066667 21.333334 17.066666h4.266666c10.666667-6.4 17.066667-17.066667 14.933334-29.866666z" fill="#707070" p-id="5965"></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="1533214210381" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3096" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M927.976528 511.74315c-29.736255 0.255827-175.450964-83.880409-180.029236-88.274486-11.059893-10.528797-6.92062-23.693632 4.3951-25.451672 11.277858-1.812275 74.670653-9.337669 74.670653-9.337669C788.047592 284.492426 701.110567 201.325261 586.961784 174.355003c-182.151573-43.047422-370.548384 79.06473-412.167271 265.428232-0.384763 1.574868-2.89391 20.599154-17.963117 19.995403-10.235109-0.421602-43.688012-13.732769-55.791677-19.391652-13.806447-6.481621-17.523095-4.797259-13.367449-25.653263C135.077953 177.815825 377.709993 18.093077 610.618577 72.731488c193.285145 45.336558 327.57464 213.078956 342.296947 404.148643C955.405227 502.478136 942.331467 511.596817 927.976528 511.74315zM623.766015 563.635007c19.153222 0 34.68087 15.527648 34.68087 34.679847 0 19.117406-15.527648 34.643008-34.68087 34.643008l-69.286016 0 0 43.287899c0 23.949458-19.373233 43.286875-43.304272 43.286875-23.895223 0-43.285852-19.336394-43.285852-43.286875l0-43.287899-69.305459 0c-19.116383 0-34.643008-15.525602-34.643008-34.643008 0-19.188015 15.526625-34.679847 34.643008-34.679847l69.305459 0 0-34.607192-69.305459 0c-19.116383 0-34.643008-15.526625-34.643008-34.643008 0-19.153222 15.526625-34.643008 34.643008-34.643008l69.305459 0 0-2.361791-76.867692-76.886111c-13.660114-13.603833-13.660114-35.687804 0-49.346895 13.603833-13.604856 35.687804-13.604856 49.311079 0l70.27453 70.275553 70.532403-70.532403c13.623275-13.623275 35.7052-13.623275 49.327452 0 13.623275 13.604856 13.623275 35.68678 0 49.346895l-75.987648 75.970252 0 3.5345 69.286016 0c19.153222 0 34.68087 15.490809 34.68087 34.643008 0 19.116383-15.527648 34.643008-34.68087 34.643008l-69.286016 0 0 34.607192L623.766015 563.635007zM276.23281 612.561323c15.179724 9.704013 11.555174 29.223578-5.180999 30.943756-16.679891 1.759063-68.993351 6.374174-68.993351 6.374174 41.472554 97.154737 125.462456 173.765579 234.153948 199.399399 182.171016 43.066865 368.425024-73.169463 410.099169-259.532965 0.841158-3.808746 0.805342-3.220345 2.307555-11.425214 1.465374-8.239662 3.918239-20.72809 19.957541-15.160281 16.003486 5.602601 55.115272 17.065677 67.310012 20.323884 12.193717 3.25923 10.838859 8.05649 9.301853 19.37221-0.440022 3.479241-1.172709 6.630001-1.905396 9.925047C888.755248 855.101265 651.414725 1006.309082 413.177785 950.387445 220.130048 905.087727 85.91423 737.767953 70.918701 546.973536c-2.032286-32.813337 21.11183-39.496549 44.805462-26.989701C134.32787 529.871019 261.03569 602.819448 276.23281 612.561323z" p-id="3097" fill="#F44336"></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="1533214243690" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3266" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M927.976528 511.74315c-29.736255 0.255827-175.450964-83.880409-180.029236-88.274486-11.059893-10.528797-6.92062-23.693632 4.3951-25.451672 11.277858-1.812275 74.670653-9.337669 74.670653-9.337669C788.047592 284.492426 701.110567 201.325261 586.961784 174.355003c-182.151573-43.047422-370.548384 79.06473-412.167271 265.428232-0.384763 1.574868-2.89391 20.599154-17.963117 19.995403-10.235109-0.421602-43.688012-13.732769-55.791677-19.391652-13.806447-6.481621-17.523095-4.797259-13.367449-25.653263C135.077953 177.815825 377.709993 18.093077 610.618577 72.731488c193.285145 45.336558 327.57464 213.078956 342.296947 404.148643C955.405227 502.478136 942.331467 511.596817 927.976528 511.74315zM623.766015 563.635007c19.153222 0 34.68087 15.527648 34.68087 34.679847 0 19.117406-15.527648 34.643008-34.68087 34.643008l-69.286016 0 0 43.287899c0 23.949458-19.373233 43.286875-43.304272 43.286875-23.895223 0-43.285852-19.336394-43.285852-43.286875l0-43.287899-69.305459 0c-19.116383 0-34.643008-15.525602-34.643008-34.643008 0-19.188015 15.526625-34.679847 34.643008-34.679847l69.305459 0 0-34.607192-69.305459 0c-19.116383 0-34.643008-15.526625-34.643008-34.643008 0-19.153222 15.526625-34.643008 34.643008-34.643008l69.305459 0 0-2.361791-76.867692-76.886111c-13.660114-13.603833-13.660114-35.687804 0-49.346895 13.603833-13.604856 35.687804-13.604856 49.311079 0l70.27453 70.275553 70.532403-70.532403c13.623275-13.623275 35.7052-13.623275 49.327452 0 13.623275 13.604856 13.623275 35.68678 0 49.346895l-75.987648 75.970252 0 3.5345 69.286016 0c19.153222 0 34.68087 15.490809 34.68087 34.643008 0 19.116383-15.527648 34.643008-34.68087 34.643008l-69.286016 0 0 34.607192L623.766015 563.635007zM276.23281 612.561323c15.179724 9.704013 11.555174 29.223578-5.180999 30.943756-16.679891 1.759063-68.993351 6.374174-68.993351 6.374174 41.472554 97.154737 125.462456 173.765579 234.153948 199.399399 182.171016 43.066865 368.425024-73.169463 410.099169-259.532965 0.841158-3.808746 0.805342-3.220345 2.307555-11.425214 1.465374-8.239662 3.918239-20.72809 19.957541-15.160281 16.003486 5.602601 55.115272 17.065677 67.310012 20.323884 12.193717 3.25923 10.838859 8.05649 9.301853 19.37221-0.440022 3.479241-1.172709 6.630001-1.905396 9.925047C888.755248 855.101265 651.414725 1006.309082 413.177785 950.387445 220.130048 905.087727 85.91423 737.767953 70.918701 546.973536c-2.032286-32.813337 21.11183-39.496549 44.805462-26.989701C134.32787 529.871019 261.03569 602.819448 276.23281 612.561323z" p-id="3267" fill="#FF9800"></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="1533215987618" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3611" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M916.54738743 270.79374325L594.98783239 115.20985107c-17.41720001-8.48905535-46.10435134-8.48905535-63.52155137 0l-130.55581355 63.22882577L789.65065039 377.34602063v127.77491762l-67.76607903 32.78531711v-127.77491763L333.14438843 211.22399399l-123.09129867 59.56974926c-25.61352788 12.44085744-46.54344066 47.56798117-46.39707886 78.0114898l0.29272748 144.89939018c21.07627462-7.31815109 43.61618098-11.26995317 67.18062596-11.26995319 112.9922517 0 204.46913943 91.62325148 204.46913946 204.4691394 0 69.6687982-34.83439813 131.14126663-87.96417499 168.02474772L532.63718529 940.84364926c16.9781107 7.90360229 44.49435773 7.90360229 61.47246843 0l320.53501455-149.29027972c26.05261722-12.14812994 47.42161933-47.27525557 47.42161932-78.15785351l0.73181492-364.73664673c0.14636375-30.29714487-20.63718529-65.42427054-46.25071508-77.86512605z" p-id="3612" fill="#2196F3"></path><path d="M231.2757262 518.73269802c-92.79415574 0-168.17110954 75.23059197-168.17110955 168.17111142s75.23059197 168.17110954 168.17110955 168.17110958S399.30047389 779.69796332 399.30047389 686.90380944s-75.23059197-168.17110954-168.02474769-168.17111142zM283.67368812 712.66370107c8.48905535 0 15.51448085 7.0254255 15.51448086 15.51448087s-7.0254255 15.51448085-15.51448086 15.51447897h-36.88348109V776.91706737c0 8.48905535-7.0254255 15.51448085-15.51448083 15.51447894s-15.51448085-7.0254255-15.51447896-15.51447894v-33.22440646h-37.3225704c-8.48905535 0-15.51448085-7.0254255-15.51448085-15.51447897s7.0254255-15.51448085 15.51448085-15.51448087h37.3225704v-24.149898h-36.88348107c-8.48905535 0-15.51448085-7.0254255-15.51448085-15.51448086s7.0254255-15.51448085 15.51448085-15.51448088H203.17402797l-30.15078305-30.15078114c-6.00088309-6.00088309-6.00088309-15.95356828 0-21.95445329s15.95356828-6.00088309 21.95445331 0l35.85894053 35.85894057 35.56621307-35.56621499c6.00088309-6.00088309 15.95356828-6.00088309 21.9544533 0s6.00088309 15.95356828 0 21.95445329l-29.85805557 29.85805556h25.46716413c8.48905535 0 15.51448085 7.0254255 15.51448085 15.51448088s-7.0254255 15.51448085-15.51448085 15.51448086h-37.17620666v24.149898H283.67368812z" p-id="3613" fill="#2196F3"></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="1533214163094" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2926" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M404.511405 600.865957c-4.042059 2.043542-8.602935 3.223415-13.447267 3.223415-11.197016 0-20.934798-6.169513-26.045189-15.278985l-1.959631-4.296863-81.56569-178.973184c-0.880043-1.954515-1.430582-4.14746-1.430582-6.285147 0-8.251941 6.686283-14.944364 14.938224-14.944364 3.351328 0 6.441713 1.108241 8.94165 2.966565l96.242971 68.521606c7.037277 4.609994 15.433504 7.305383 24.464181 7.305383 5.40101 0 10.533914-1.00284 15.328104-2.75167l452.645171-201.459315C811.496653 163.274644 677.866167 100.777241 526.648117 100.777241c-247.448742 0-448.035176 167.158091-448.035176 373.361453 0 112.511493 60.353576 213.775828 154.808832 282.214547 7.582699 5.405103 12.537548 14.292518 12.537548 24.325012 0 3.312442-0.712221 6.358825-1.569752 9.515724-7.544837 28.15013-19.62599 73.202209-20.188808 75.314313-0.940418 3.529383-2.416026 7.220449-2.416026 10.917654 0 8.245801 6.692423 14.933107 14.944364 14.933107 3.251044 0 5.89015-1.202385 8.629541-2.7793l98.085946-56.621579c7.377014-4.266164 15.188934-6.89913 23.790846-6.89913 4.577249 0 9.003048 0.703011 13.174044 1.978051 45.75509 13.159718 95.123474 20.476357 146.239666 20.476357 247.438509 0 448.042339-167.162184 448.042339-373.372709 0-62.451354-18.502399-121.275087-51.033303-173.009356L407.778822 598.977957 404.511405 600.865957z" p-id="2927" fill="#1AAD19"></path></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#707070;}
</style>
<path class="st0" d="M50.6,40.5v8.2c0,1.5-1.3,2.7-3,2.7H11.5c-1.6,0-3-1.2-3-2.7V15.3c0-1.5,1.3-2.7,3-2.7h36.1c1.6,0,3,1.2,3,2.7
v8.3h1.9v-8.3c0-2.5-2.2-4.4-4.8-4.4H11.5c-2.7,0-4.8,2-4.8,4.4v33.4c0,2.5,2.2,4.4,4.8,4.4h36.1c2.7,0,4.8-2,4.8-4.4v-8.2H50.6
L50.6,40.5z"/>
<path class="st0" d="M54.3,38.4H31.6c-1.7,0-3-1.4-3-3.1v-6.6c0-1.7,1.3-3.1,3-3.1h22.7c1.7,0,3,1.4,3,3.1v6.6
C57.3,37,56,38.4,54.3,38.4z M31.6,27.4c-0.6,0-1.1,0.6-1.1,1.4v6.6c0,0.7,0.5,1.4,1.1,1.4h22.7c0.6,0,1.1-0.6,1.1-1.4v-6.6
c0-0.7-0.5-1.4-1.1-1.4L31.6,27.4L31.6,27.4z"/>
<path class="st0" d="M49.2,32c0,0.7,0.6,1.3,1.4,1.3S52,32.7,52,32c0-0.7-0.6-1.3-1.4-1.3C49.8,30.7,49.2,31.2,49.2,32z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 265 63.7" style="enable-background:new 0 0 265 63.7;" xml:space="preserve">
<style type="text/css">
.st0{fill:#96588A;}
</style>
<g>
<path class="st0" d="M0,2.5h25.4L24.7,0h10.9l0.7,2.5h27.1v8.4H0V2.5z M0,16.7h11.6l-1.9-3.9H21l1.7,3.9h18.1l1.9-3.9h10.9
l-1.9,3.9h5.6c1.7,0,3.2,0.7,4.4,2.2c1.2,1.5,1.8,3.2,1.8,5.2v29.8c0,1.5-0.2,2.8-0.6,3.8c-0.4,1.2-1,2.2-1.7,3.2
c-0.6,0.8-1.5,1.5-2.5,2.1c-1,0.5-2,0.7-3.1,0.7h-8.6l2.8-7.6h1.5c0.6,0,1.2-0.3,1.6-0.9c0.4-0.5,0.6-1.1,0.6-1.8V27.4
c0-0.7-0.2-1.3-0.6-1.8c-0.4-0.5-0.9-0.7-1.4-0.7H10v38.7H0V16.7z M22.2,36.6H12l6.6-10h9.9L22.2,36.6z M50.3,50
c0,1.5-0.2,2.8-0.6,3.8c-0.4,1.3-1,2.3-1.7,3.2c-0.8,0.9-1.6,1.6-2.4,2c-1.1,0.5-2.1,0.8-3,0.8H13.2V38.6h37.1V50z M38.9,52.2
c0.6,0,1.2-0.3,1.7-0.9c0.4-0.5,0.6-1.2,0.6-2v-3.4H22.2v6.3H38.9z M51.6,36.6h-10l-6.6-10h10L51.6,36.6z"/>
<path class="st0" d="M90,60.7l-20.7,2.7V56l5.9-0.8V18.2h-4.4v-7.4h4.4V2.1h8.9v8.7h4.4v7.4h-4.4V54l5.9-0.7V60.7z M132.4,18.2
l-5.3,21.2l4.5,24.2h-7.7l-1.3-6.9l-1.7,6.9h-7.2l5.9-23.1l-5.3-27.8h-13.9v9.1h14v32.1c0,1.3-0.2,2.6-0.6,3.8
c-0.4,1.2-1,2.2-1.7,3.1c-0.7,0.9-1.6,1.6-2.5,2.1c-1,0.5-2,0.7-3.1,0.7h-5.6l2.4-6.9h0.9c0.7,0,1.2-0.3,1.6-0.8
c0.4-0.5,0.6-1.2,0.6-2V29.2h-6v26.7l-1.9,7.7H90l1.9-7.7V5.2h21l-0.9-5h7.7l0.9,5h2.8l-0.9-5h7.3l2.4,12.5h-2.7h-4.6H122l1.9,10.5
l1.2-4.9H132.4z"/>
<path class="st0" d="M135.4,63.4l25.1-15.8v-6.9h12.6V47h6.9l6.9,6.1V42.5c0-0.8-0.2-1.4-0.6-2c-0.4-0.6-1-0.8-1.6-0.8h-36.6v13.4
h-10V31.9H189c1.1,0,2.1,0.3,3.1,0.7c1,0.5,1.8,1.2,2.5,2.1s1.3,1.9,1.7,3.1c0.4,1.2,0.6,2.4,0.6,3.8v11.6H187l11.8,10.3h-15.3
l-11.7-11.1l-17.3,11.1H135.4z M141.8,14.4h10l-4.8,14.9h-10L141.8,14.4z M151.8,11.2h-10l-4.6-10.8h9.9L151.8,11.2z M180.5,16.5
l-3.7,3.3h8.2l12.8,9.6h-14l-9.1-7.8l-9.1,7.8h-13l15.1-12.8v-3.6h12.8V16.5z M198.7,2.8l-4,13.5h-9.4l1.9-5.4h-33.3l4-10.6h10.7
l-0.9,2.5H198.7z"/>
<path class="st0" d="M206.9,14.2l-5.3-14.1h11.7l5.3,14.1H206.9z M201.7,19.3h4.2h9.8h0.1v33.8c0,0.8,0.2,1.4,0.6,1.9
c0.4,0.5,1,0.8,1.6,0.8h4.2l-2.7,7.6h-5.8c-1.1,0-2.1-0.2-3.1-0.7c-0.9-0.5-1.8-1.2-2.5-2.1c-0.7-0.9-1.3-1.9-1.7-3
c-0.4-1.1-0.6-2.4-0.6-3.7V27.9h-4.2V19.3z M240.3,12.8l-1.4,13.3h9.5v8.6H238l-3.2,28.9h-8.9l3.2-28.9h-8v-8.6h8.9l1.5-13.3H240.3
z M260.4,52.5c0,0.5,0.2,1,0.5,1.3c0.3,0.4,0.7,0.5,1,0.5h3l-2,8.6h-2.5h-3.5c-1.5,0-2.8-0.6-3.8-1.9c-1.1-1.3-1.6-2.8-1.6-4.6V9.1
h-29.2V0.5h38.2V52.5z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#707070;}
</style>
<path class="st0" d="M12,27.5c-0.5,0-0.8-0.4-0.8-0.8s0.4-0.8,0.8-0.8h7.8c0.5,0,0.8,0.4,0.8,0.8s-0.4,0.8-0.8,0.8H12z"/>
<path class="st0" d="M10.3,53.2c-1.8,0-3.3-1.5-3.3-3.3V13.8c0-1.8,1.5-3.3,3.3-3.3h43.1c1.8,0,3.3,1.5,3.3,3.3v36.1
c0,1.8-1.5,3.3-3.3,3.3H10.3z M8.6,49.9c0,0.9,0.7,1.6,1.6,1.6h43.1c0.8,0,1.5-0.6,1.6-1.3h0l0-0.3V22.8H40.5v14.1
c0,0.3-0.2,0.6-0.4,0.7c-0.1,0.1-0.3,0.1-0.4,0.1c-0.1,0-0.3,0-0.4-0.1l-7.5-4.2l-7.4,4.1c-0.1,0.1-0.3,0.1-0.4,0.1
c-0.1,0-0.3,0-0.4-0.1c-0.3-0.1-0.4-0.4-0.4-0.7V22.8H8.6V49.9z M24.8,35.5l7-4l7.1,4V12.1H24.8V35.5z M40.5,21.2H55l0-0.3v-7.1
c0-0.9-0.7-1.6-1.6-1.6H40.5V21.2z M10.3,12.1c-0.9,0-1.6,0.7-1.6,1.6v7.4h14.5v-9.1H10.3z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#707070;}
</style>
<path class="st0" d="M24.4,9.1c1.4,0,2.5,1.1,2.5,2.5v12.7c0,1.4-1.1,2.5-2.5,2.5H11.6c-1.4,0-2.5-1.1-2.5-2.5V11.6
c0-1.4,1.1-2.5,2.5-2.5H24.4 M24.4,6.5H11.6c-2.8,0-5.1,2.3-5.1,5.1v12.7c0,2.8,2.3,5.1,5.1,5.1h12.7c2.8,0,5.1-2.3,5.1-5.1V11.6
C29.5,8.8,27.2,6.5,24.4,6.5z M52.4,9.1c1.4,0,2.5,1.1,2.5,2.5v12.7c0,1.4-1.1,2.5-2.5,2.5H39.6c-1.4,0-2.5-1.1-2.5-2.5V11.6
c0-1.4,1.1-2.5,2.5-2.5H52.4 M52.4,6.5H39.6c-2.8,0-5.1,2.3-5.1,5.1v12.7c0,2.8,2.3,5.1,5.1,5.1h12.7c2.8,0,5.1-2.3,5.1-5.1V11.6
C57.5,8.8,55.2,6.5,52.4,6.5z M24.4,37.1c1.4,0,2.5,1.1,2.5,2.5v12.7c0,1.4-1.1,2.5-2.5,2.5H11.6c-1.4,0-2.5-1.1-2.5-2.5V39.6
c0-1.4,1.1-2.5,2.5-2.5H24.4 M24.4,34.5H11.6c-2.8,0-5.1,2.3-5.1,5.1v12.7c0,2.8,2.3,5.1,5.1,5.1h12.7c2.8,0,5.1-2.3,5.1-5.1V39.6
C29.5,36.8,27.2,34.5,24.4,34.5z M46.1,56.2c-0.8,0-1.3-0.5-1.3-1.3V37.1c0-0.8,0.5-1.3,1.3-1.3c0.8,0,1.3,0.5,1.3,1.3v17.8
C47.4,55.7,46.8,56.2,46.1,56.2z M55,56.2c-0.8,0-1.3-0.5-1.3-1.3V37.1c0-0.8,0.5-1.3,1.3-1.3s1.3,0.5,1.3,1.3v17.8
C56.3,55.7,55.7,56.2,55,56.2z M37.2,56.2c-0.8,0-1.3-0.5-1.3-1.3V37.1c0-0.8,0.5-1.3,1.3-1.3s1.3,0.5,1.3,1.3v17.8
C38.5,55.7,37.9,56.2,37.2,56.2z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#96588A;}
</style>
<path class="st0" d="M32,3.8C16.6,3.8,4.1,16.3,4.1,31.7C4.1,47,16.6,59.5,32,59.5S59.9,47,59.9,31.6C59.9,16.3,47.4,3.8,32,3.8z
M41.2,18.1c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4s-4-1.8-4-4C37.2,19.9,39,18.1,41.2,18.1z M22.8,18.1c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4
s-4-1.8-4-4C18.8,19.9,20.6,18.1,22.8,18.1z M45.8,46.5L45.8,46.5c-0.6,0.5-1.5,0.4-1.9-0.2c0,0-0.1-0.1-0.1-0.1
c-3.1-4.5-8.1-5.5-11.8-5.5c-3.7,0-8.7,1-11.8,5.5c-0.3,0.4-0.7,0.6-1.2,0.6c-0.3,0-0.6-0.1-0.9-0.3c-0.7-0.6-0.8-1.5-0.3-2.2
c1.5-2.3,3.7-4.1,6.2-5.2c2.5-1.1,5.2-1.6,8-1.6c2.7,0,5.4,0.5,8,1.6c2.5,1.1,4.6,2.9,6.2,5.2C46.6,45,46.5,45.9,45.8,46.5z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#96588A;}
</style>
<path class="st0" d="M32,3.8C16.6,3.8,4.1,16.3,4.1,31.7C4.1,47,16.6,59.5,32,59.5S59.9,47,59.9,31.6C59.9,16.3,47.4,3.8,32,3.8z
M18.8,22.1c0-2.2,1.8-4,4-4s4,1.8,4,4c0,2.2-1.8,4-4,4S18.8,24.3,18.8,22.1z M42,43.9H22c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2h20
c1.1,0,2,0.9,2,2C44,43,43.2,43.9,42,43.9z M41.2,26.1c-2.2,0-4-1.8-4-4c0-2.2,1.8-4,4-4s4,1.8,4,4C45.2,24.3,43.4,26.1,41.2,26.1z"
/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#96588A;}
</style>
<path class="st0" d="M32,3.8C16.6,3.8,4.1,16.3,4.1,31.7C4.1,47,16.6,59.5,32,59.5S59.9,47,59.9,31.6C59.9,16.3,47.4,3.8,32,3.8z
M41.2,18.1c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4s-4-1.8-4-4C37.2,19.9,39,18.1,41.2,18.1z M22.8,18.1c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4
s-4-1.8-4-4C18.8,19.9,20.6,18.1,22.8,18.1z M46.1,40c-1.5,2.3-3.7,4.1-6.2,5.2c-2.5,1.1-5.2,1.6-8,1.6c-2.7,0-5.4-0.5-8-1.6
c-2.5-1.1-4.6-2.9-6.2-5.2c-0.5-0.7-0.4-1.7,0.3-2.2c0.2-0.2,0.6-0.3,0.9-0.3c0.5,0,0.9,0.2,1.2,0.6c3.1,4.5,8.1,5.5,11.8,5.5
c3.7,0,8.7-1,11.8-5.5c0,0,0.1-0.1,0.1-0.1c0.5-0.6,1.4-0.7,1.9-0.2h0C46.5,38.3,46.6,39.3,46.1,40z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#96588A;}
</style>
<path class="st0" d="M32,3.8C16.6,3.8,4.1,16.3,4.1,31.7C4.1,47,16.6,59.5,32,59.5c15.4,0,27.9-12.5,27.9-27.9
C59.9,16.3,47.4,3.8,32,3.8z M41.2,18.1c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4c-2.2,0-4-1.8-4-4C37.2,19.9,39,18.1,41.2,18.1z M22.8,18.1
c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4c-2.2,0-4-1.8-4-4C18.8,19.9,20.6,18.1,22.8,18.1z M32,49L32,49c-8.4,0-15.2-4.9-15.2-11
c0-0.3,0.4-0.6,0.9-0.6h28.7c0.5,0,0.9,0.3,0.9,0.6C47.2,44.1,40.4,49,32,49z"/>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
<style type="text/css">
.st0{fill:#96588A;}
</style>
<path class="st0" d="M32,4.3C16.7,4.3,4.4,16.6,4.4,31.9S16.7,59.5,32,59.5s27.6-12.4,27.6-27.6S47.3,4.3,32,4.3z M40.6,20l1.5-2.9
l1.5,2.9l3.1,0.6l-2.1,2.4l0.4,3.3l-2.8-1.4l-2.8,1.4l0.4-3.3l-2.1-2.4L40.6,20z M20.4,20l1.5-2.9l1.5,2.9l3.1,0.6l-2.1,2.4l0.4,3.3
l-2.8-1.4L19,26.3l0.4-3.3l-2.1-2.4L20.4,20z M32,49.8L32,49.8c-8.3,0-15.1-6.8-15.1-15.1c0-0.5,0.4-0.9,0.9-0.9h28.4
c0.5,0,0.9,0.4,0.9,0.9C47.1,43.1,40.3,49.8,32,49.8z"/>
</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="1538214988530" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="32222" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M959.335 112.824L832.182 798.319a39.427 39.427 0 0 1-52.42 29.795L461.164 710.773l186.652-315.104L362.64 674.482 89.786 573.898a39.472 39.472 0 0 1-4.749-71.686L902.166 70.753a39.427 39.427 0 0 1 57.17 42.07zM444.318 804.502l2.867 109.814a23.163 23.163 0 0 0 39.651 15.636l86.202-87.412a23.163 23.163 0 0 0-10.842-38.71l-89.07-22.402a23.208 23.208 0 0 0-28.808 23.074z" p-id="32223" fill="#989898"></path></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 96.4 66.5" style="enable-background:new 0 0 96.4 66.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:#8492B2;}
</style>
<path class="st0" d="M0,33.2c1.2,1.1,15,12.6,15,12.6v20.7h81.4V0H15.1l0,20.9 M71.3,23.5c5.5,0,9.9,4.3,9.9,9.7
c0,5.4-4.4,9.7-9.9,9.7c-5.5,0-10-4.3-10-9.7S65.7,23.5,71.3,23.5z M40,23.5c5.5,0,9.9,4.3,9.9,9.7s-4.4,9.7-10,9.7
c-5.5,0-10-4.4-10-9.7C30,27.9,34.5,23.5,40,23.5z"/>
</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="1533217369640" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="72098" xmlns:xlink="http://www.w3.org/1999/xlink" width="64" height="64"><defs><style type="text/css"></style></defs><path d="M21.546667 449.408C81.024 335.146667 120.106667 272.64 138.666667 261.973333c18.602667-10.752 92.245333-13.312 220.928-7.68a85.333333 85.333333 0 0 1 70.186666 42.581334l232.106667 402.005333a85.333333 85.333333 0 0 1-31.232 116.565333l-258.645333 149.333334a85.333333 85.333333 0 0 1-116.565334-31.232l-232.106666-402.005334a85.333333 85.333333 0 0 1-1.792-82.090666z m249.6 41.941333a66.645333 66.645333 0 0 0 24.917333-90.88 66.645333 66.645333 0 0 0-91.178667-23.850666 66.645333 66.645333 0 0 0-24.917333 90.88 66.645333 66.645333 0 0 0 91.178667 23.893333z" fill="#E1426F" p-id="72099"></path><path d="M300.202667 199.509333c27.050667-21.930667 85.973333-56.32 176.768-103.125333a85.333333 85.333333 0 0 1 81.749333 1.962667l414.890667 239.530666a85.333333 85.333333 0 0 1 31.274666 116.565334l-153.258666 265.386666a85.333333 85.333333 0 0 1-116.565334 31.232l-6.442666-3.754666a85.333333 85.333333 0 0 0 0.896-86.912l-239.530667-414.890667a85.333333 85.333333 0 0 0-69.845333-42.581333 2653.056 2653.056 0 0 0-119.893334-3.413334z" fill="#E1426F" p-id="72100"></path></svg>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment