Browse Source

初始化项目

master
panxiaohe 2 years ago
commit
2751d854ec
  1. 12
      .babelrc
  2. 9
      .editorconfig
  3. 5
      .eslintignore
  4. 31
      .eslintrc.js
  5. 14
      .gitignore
  6. 10
      .postcssrc.js
  7. 2
      Dockerfile
  8. 133
      ReadMe.md
  9. 41
      build/build.js
  10. 54
      build/check-versions.js
  11. BIN
      build/logo.png
  12. 107
      build/utils.js
  13. 22
      build/vue-loader.conf.js
  14. 107
      build/webpack.base.conf.js
  15. 95
      build/webpack.dev.conf.js
  16. 145
      build/webpack.prod.conf.js
  17. 7
      config/dev.env.js
  18. 91
      config/index.js
  19. 4
      config/prod.env.js
  20. 16
      index.html
  21. 14411
      package-lock.json
  22. 95
      package.json
  23. 38
      src/App.vue
  24. 49
      src/api/Activity/ActivityBind.js
  25. 19
      src/api/Activity/ActivityCoupon.js
  26. 28
      src/api/Activity/ActivityDiscount.js
  27. 19
      src/api/Activity/ActivityGroup.js
  28. 10
      src/api/Activity/ActivityPolite.js
  29. 27
      src/api/Activity/ActivitySeckill.js
  30. 10
      src/api/Activity/ActivityVip.js
  31. 73
      src/api/coupon.js
  32. 21
      src/api/login.js
  33. 11
      src/api/nav.js
  34. 114
      src/api/product.js
  35. 46
      src/api/shop.js
  36. 4
      src/api/upload.js
  37. 37
      src/api/user/address.js
  38. 87
      src/api/user/afterSale.js
  39. 58
      src/api/user/cart.js
  40. 59
      src/api/user/evaluate.js
  41. 45
      src/api/user/express.js
  42. 46
      src/api/user/notice.js
  43. 124
      src/api/user/order.js
  44. 143
      src/api/user/user.js
  45. 30
      src/api/vip.js
  46. 4576
      src/assets/contry_data.json
  47. 1
      src/assets/data.js
  48. BIN
      src/assets/font/DIN-Bold.eot
  49. BIN
      src/assets/font/DIN-Bold.otf
  50. BIN
      src/assets/font/DIN-Bold.ttf
  51. BIN
      src/assets/font/DIN-Bold.woff
  52. BIN
      src/assets/font/DIN-Bold.woff2
  53. 539
      src/assets/font_icon/demo.css
  54. 1850
      src/assets/font_icon/demo_index.html
  55. 309
      src/assets/font_icon/iconfont.css
  56. BIN
      src/assets/font_icon/iconfont.eot
  57. 1
      src/assets/font_icon/iconfont.js
  58. 520
      src/assets/font_icon/iconfont.json
  59. 245
      src/assets/font_icon/iconfont.svg
  60. BIN
      src/assets/font_icon/iconfont.ttf
  61. BIN
      src/assets/font_icon/iconfont.woff
  62. BIN
      src/assets/font_icon/iconfont.woff2
  63. BIN
      src/assets/images/erweima.png
  64. BIN
      src/assets/images/imgPay.png
  65. BIN
      src/assets/images/indexLogo.png
  66. 1
      src/assets/images/user-selected.svg
  67. 1
      src/assets/images/user-unselected.svg
  68. BIN
      src/assets/images/weiXintit.png
  69. 23
      src/assets/svg/activity/activity-bind.svg
  70. 1
      src/assets/svg/activity/activity-cart-black.svg
  71. 1
      src/assets/svg/activity/activity-coupon-bg-0.svg
  72. 1
      src/assets/svg/activity/activity-coupon-bg-1.svg
  73. 21
      src/assets/svg/activity/activity-miaosha.svg
  74. 1
      src/assets/svg/activity/activity-pintuan.svg
  75. 1
      src/assets/svg/activity/activity-type-miaosha.svg
  76. 1
      src/assets/svg/activity/activity-type-pintuan.svg
  77. 1
      src/assets/svg/activity/activity-type-vip.svg
  78. 1
      src/assets/svg/activity/activity-type-zhekou.svg
  79. 1
      src/assets/svg/activity/activity-vip.svg
  80. 1
      src/assets/svg/activity/activity-zhekou.svg
  81. 1
      src/assets/svg/collect.svg
  82. 1
      src/assets/svg/compose-price.svg
  83. 1
      src/assets/svg/coupon-selected.svg
  84. 1
      src/assets/svg/coupon-unselected.svg
  85. 1
      src/assets/svg/coupon-used.svg
  86. 1
      src/assets/svg/coupon-useless.svg
  87. 1
      src/assets/svg/del.svg
  88. 1
      src/assets/svg/detail-+++.svg
  89. 1
      src/assets/svg/detail-===.svg
  90. 1
      src/assets/svg/detail-checked.svg
  91. 1
      src/assets/svg/detail-deals.svg
  92. 1
      src/assets/svg/detail-done.svg
  93. 1
      src/assets/svg/detail-express.svg
  94. 1
      src/assets/svg/detail-getout.svg
  95. 1
      src/assets/svg/detail-paySuccess.svg
  96. 1
      src/assets/svg/detail-submit.svg
  97. 1
      src/assets/svg/eva-success.svg
  98. 1
      src/assets/svg/exchange.svg
  99. 1
      src/assets/svg/logo.svg
  100. 1
      src/assets/svg/nav-addres.svg

12
.babelrc

@ -0,0 +1,12 @@
{
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
"plugins": ["transform-vue-jsx", "transform-runtime"]
}

9
.editorconfig

@ -0,0 +1,9 @@
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

5
.eslintignore

@ -0,0 +1,5 @@
/build/
/config/
/dist/
/*.js
/src/components/canvasShow/

31
.eslintrc.js

@ -0,0 +1,31 @@
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true,
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
'plugin:vue/essential',
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
'standard'
],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
rules: {
// allow async-await
"indent": ["off", 2],
'generator-star-spacing': 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'comma-dangle': [0, 'always-multiline'],
}
}

14
.gitignore

@ -0,0 +1,14 @@
.DS_Store
node_modules/
dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln

10
.postcssrc.js

@ -0,0 +1,10 @@
// https://github.com/michael-ciniawsky/postcss-load-config
module.exports = {
"plugins": {
// "postcss-import": {},
// "postcss-url": {},
// to edit target browsers: use "browserslist" field in package.json
"autoprefixer": {}
}
}

2
Dockerfile

@ -0,0 +1,2 @@
FROM registry.cn-shenzhen.aliyuncs.com/sumply-shop/nginx
COPY dist/ /home/pc

133
ReadMe.md

@ -0,0 +1,133 @@
[TOC]
# 介绍
本项目为Cereshop多商户版本。
专注于客单价,转化率提升!便捷高效,助力各大商家提升客单价,客户引导,提高复购,只为更好的服务每一位用户。
# 功能
```
- 登录、注册
- 平台首页、商铺首页
- 首页动态渲染
- 分类搜索
- 关键字搜索
- 分区入口
- 活动分区
- 限时折扣
- 秒杀专区
- 会员专区
- 拼团专区
- 定价专区
- 商品页面
- 归属店铺
- 商品详情
- 商品评论
- 商品问答
- 猜你喜欢
- 优惠卷快捷领取
- 收藏商品
- 购物车页面
- 快捷领取优惠卷
- 清除失效宝贝
- 结算
- 结算页面
- 切换地址信息
- 新增地址
- 优惠卷使用
- 微信支付
- 个人中心
- 个人信息
- 我的消息
- 我的订单
- 我的回答
- 售后订单
- 我的评价
- 收货地址
- 我的收藏
- 浏览足迹
- 我的卡卷
- 更换手机号
- 商家入驻
- 个体商户入驻
- 个体工商户入驻
- 企业商户入驻
- 其他组织入驻
```
# 目录结构
```
├─build # 构建相关
├─config # 配置
├─src
│ ├─api # 请求封装
│ ├─assets # 字体、图片等静态资源
│ │ ├─font # 字体资源
│ │ ├─font_icon
│ │ ├─images # 图片资源
│ │ └─svg # svg格式图片资源
│ ├─components # 组件部分
│ │ ├─activity # 营销活动公共组件
│ │ ├─base # 公用组件
│ │ ├─canvasShow # 画布组件
│ │ │ ├─basics # 画布公共组件
│ │ │ ├─config # 画布配置
│ │ │ └─static # 画布静态资源
│ │ ├─Icon # svg图片组件
│ │ ├─orderInfo # 订单信息相关组件
│ │ └─userCenter # 个人中心相关组件
│ ├─config # 配置方法
│ ├─router # 路由部分
│ ├─store # 全局状态管理
│ ├─styles # 公共样式
│ ├─util # 公共方法
│ └─views # 所有页面
├─static # 静态资源
└─theme # element主题资源
```
# 相关配置
### 请求地址配置:
打开目录
> src\util\server.js
- baseURL 项目请求地址
- uploadURL 项目文件上传地址
# 启动
```shell
npm run dev
```
# 打包
```she
npm run build
```

41
build/build.js

@ -0,0 +1,41 @@
'use strict'
require('./check-versions')()
process.env.NODE_ENV = 'production'
const ora = require('ora')
const rm = require('rimraf')
const path = require('path')
const chalk = require('chalk')
const webpack = require('webpack')
const config = require('../config')
const webpackConfig = require('./webpack.prod.conf')
const spinner = ora('building for production...')
spinner.start()
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
if (err) throw err
webpack(webpackConfig, (err, stats) => {
spinner.stop()
if (err) throw err
process.stdout.write(stats.toString({
colors: true,
modules: false,
children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
chunks: false,
chunkModules: false
}) + '\n\n')
if (stats.hasErrors()) {
console.log(chalk.red(' Build failed with errors.\n'))
process.exit(1)
}
console.log(chalk.cyan(' Build complete.\n'))
console.log(chalk.yellow(
' Tip: built files are meant to be served over an HTTP server.\n' +
' Opening index.html over file:// won\'t work.\n'
))
})
})

54
build/check-versions.js

@ -0,0 +1,54 @@
'use strict'
const chalk = require('chalk')
const semver = require('semver')
const packageConfig = require('../package.json')
const shell = require('shelljs')
function exec (cmd) {
return require('child_process').execSync(cmd).toString().trim()
}
const versionRequirements = [
{
name: 'node',
currentVersion: semver.clean(process.version),
versionRequirement: packageConfig.engines.node
}
]
if (shell.which('npm')) {
versionRequirements.push({
name: 'npm',
currentVersion: exec('npm --version'),
versionRequirement: packageConfig.engines.npm
})
}
module.exports = function () {
const warnings = []
for (let i = 0; i < versionRequirements.length; i++) {
const mod = versionRequirements[i]
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
warnings.push(mod.name + ': ' +
chalk.red(mod.currentVersion) + ' should be ' +
chalk.green(mod.versionRequirement)
)
}
}
if (warnings.length) {
console.log('')
console.log(chalk.yellow('To use this template, you must update following to modules:'))
console.log()
for (let i = 0; i < warnings.length; i++) {
const warning = warnings[i]
console.log(' ' + warning)
}
console.log()
process.exit(1)
}
}

BIN
build/logo.png

After

Width: 200  |  Height: 200  |  Size: 6.7 KiB

107
build/utils.js

@ -0,0 +1,107 @@
'use strict'
const path = require('path')
const config = require('../config')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const packageConfig = require('../package.json')
exports.assetsPath = function (_path) {
const assetsSubDirectory = process.env.NODE_ENV === 'production'
? config.build.assetsSubDirectory
: config.dev.assetsSubDirectory
return path.posix.join(assetsSubDirectory, _path)
}
exports.cssLoaders = function (options) {
options = options || {}
const cssLoader = {
loader: 'css-loader',
options: {
sourceMap: options.sourceMap
}
}
const postcssLoader = {
loader: 'postcss-loader',
options: {
sourceMap: options.sourceMap
}
}
// generate loader string to be used with extract text plugin
function generateLoaders (loader, loaderOptions) {
const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader]
if (loader) {
loaders.push({
loader: loader + '-loader',
options: Object.assign({}, loaderOptions, {
sourceMap: options.sourceMap
})
})
}
// Extract CSS when that option is specified
// (which is the case during production build)
if (options.extract) {
return ExtractTextPlugin.extract({
use: loaders,
publicPath:'../../',
fallback: 'vue-style-loader'
})
} else {
return ['vue-style-loader'].concat(loaders)
}
}
// https://vue-loader.vuejs.org/en/configurations/extract-css.html
return {
css: generateLoaders(),
postcss: generateLoaders(),
less: generateLoaders('less'),
sass: generateLoaders('sass', {indentedSyntax: true}),
scss: generateLoaders('sass').concat({
loader: 'sass-resources-loader',
options: {
resources: path.resolve(__dirname, '../src/styles/index.scss')
}
}),
stylus: generateLoaders('stylus'),
styl: generateLoaders('stylus')
}
}
// Generate loaders for standalone style files (outside of .vue)
exports.styleLoaders = function (options) {
const output = []
const loaders = exports.cssLoaders(options)
for (const extension in loaders) {
const loader = loaders[extension]
output.push({
test: new RegExp('\\.' + extension + '$'),
use: loader
})
}
return output
}
exports.createNotifierCallback = () => {
const notifier = require('node-notifier')
return (severity, errors) => {
if (severity !== 'error') return
const error = errors[0]
const filename = error.file && error.file.split('!').pop()
notifier.notify({
title: packageConfig.name,
message: severity + ': ' + error.name,
subtitle: filename || '',
icon: path.join(__dirname, 'logo.png')
})
}
}

22
build/vue-loader.conf.js

@ -0,0 +1,22 @@
'use strict'
const utils = require('./utils')
const config = require('../config')
const isProduction = process.env.NODE_ENV === 'production'
const sourceMapEnabled = isProduction
? config.build.productionSourceMap
: config.dev.cssSourceMap
module.exports = {
loaders: utils.cssLoaders({
sourceMap: sourceMapEnabled,
extract: isProduction
}),
cssSourceMap: sourceMapEnabled,
cacheBusting: config.dev.cacheBusting,
transformToRequire: {
video: ['src', 'poster'],
source: 'src',
img: 'src',
image: 'xlink:href'
}
}

107
build/webpack.base.conf.js

@ -0,0 +1,107 @@
'use strict'
const path = require('path')
const utils = require('./utils')
const config = require('../config')
const vueLoaderConfig = require('./vue-loader.conf')
function resolve (dir) {
return path.join(__dirname, '..', dir)
}
const createLintingRule = () => ({
test: /\.(js|vue)$/,
loader: 'eslint-loader',
enforce: 'pre',
include: [resolve('src'), resolve('test')],
options: {
formatter: require('eslint-friendly-formatter'),
emitWarning: !config.dev.showEslintErrorsInOverlay
}
})
const webpackConfig = {
context: path.resolve(__dirname, '../'),
entry: {
app: './src/main.js'
},
output: {
path: config.build.assetsRoot,
filename: '[name].js',
publicPath: process.env.NODE_ENV === 'production'
? config.build.assetsPublicPath
: config.dev.assetsPublicPath
},
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src'),
}
},
module: {
rules: [
...(config.dev.useEslint ? [createLintingRule()] : []),
{
test: /\.vue$/,
loader: 'vue-loader',
options: vueLoaderConfig
},
{
test: /\.js$/,
loader: 'babel-loader',
include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]
},
{
test: /\.svg$/,
loader: 'svg-sprite-loader',
include: [resolve('src/assets/svg')],
options: {
symbolId: 'icon-[name]'
}
},
{
test: /\.(png|jpe?g|gif|svg|webp)(\?.*)?$/,
loader: 'url-loader',
exclude: [resolve('src/assets/svg')],
options: {
limit: 10000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('media/[name].[hash:7].[ext]')
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
}
}
]
},
node: {
// prevent webpack from injecting useless setImmediate polyfill because Vue
// source contains it (although only uses it if it's native).
setImmediate: false,
// prevent webpack from injecting mocks to Node native modules
// that does not make sense for the client
dgram: 'empty',
fs: 'empty',
net: 'empty',
tls: 'empty',
child_process: 'empty'
}
}
module.exports = webpackConfig
// module.exports = vuxLoader.merge(webpackConfig, {
// plugins: ['vux-ui']
// })

95
build/webpack.dev.conf.js

@ -0,0 +1,95 @@
'use strict'
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const path = require('path')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
const portfinder = require('portfinder')
const HOST = process.env.HOST
const PORT = process.env.PORT && Number(process.env.PORT)
const devWebpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
},
// cheap-module-eval-source-map is faster for development
devtool: config.dev.devtool,
// these devServer options should be customized in /config/index.js
devServer: {
clientLogLevel: 'warning',
historyApiFallback: {
rewrites: [
{ from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },
],
},
hot: true,
contentBase: false, // since we use CopyWebpackPlugin.
compress: true,
host: HOST || config.dev.host,
port: PORT || config.dev.port,
open: config.dev.autoOpenBrowser,
overlay: config.dev.errorOverlay
? { warnings: false, errors: true }
: false,
publicPath: config.dev.assetsPublicPath,
proxy: config.dev.proxyTable,
quiet: true, // necessary for FriendlyErrorsPlugin
watchOptions: {
poll: config.dev.poll,
}
},
plugins: [
new webpack.DefinePlugin({
'process.env': require('../config/dev.env')
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
new webpack.NoEmitOnErrorsPlugin(),
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true
}),
// copy custom static assets
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.dev.assetsSubDirectory,
ignore: ['.*']
}
])
]
})
module.exports = new Promise((resolve, reject) => {
portfinder.basePort = process.env.PORT || config.dev.port
portfinder.getPort((err, port) => {
if (err) {
reject(err)
} else {
// publish the new Port, necessary for e2e tests
process.env.PORT = port
// add port to devServer config
devWebpackConfig.devServer.port = port
// Add FriendlyErrorsPlugin
devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
compilationSuccessInfo: {
messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
},
onErrors: config.dev.notifyOnErrors
? utils.createNotifierCallback()
: undefined
}))
resolve(devWebpackConfig)
}
})
})

145
build/webpack.prod.conf.js

@ -0,0 +1,145 @@
'use strict'
const path = require('path')
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const env = require('../config/prod.env')
const webpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({
sourceMap: config.build.productionSourceMap,
extract: true,
usePostCSS: true
})
},
devtool: config.build.productionSourceMap ? config.build.devtool : false,
output: {
path: config.build.assetsRoot,
filename: utils.assetsPath('js/[name].[chunkhash].js'),
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
},
plugins: [
// http://vuejs.github.io/vue-loader/en/workflow/production.html
new webpack.DefinePlugin({
'process.env': env
}),
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false
}
},
sourceMap: config.build.productionSourceMap,
parallel: true
}),
// extract css into its own file
new ExtractTextPlugin({
filename: utils.assetsPath('css/[name].[contenthash].css'),
// Setting the following option to `false` will not extract CSS from codesplit chunks.
// Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.
// It's currently set to `true` because we are seeing that sourcemaps are included in the codesplit bundle as well when it's `false`,
// increasing file size: https://github.com/vuejs-templates/webpack/issues/1110
allChunks: true,
}),
// Compress extracted CSS. We are using this plugin so that possible
// duplicated CSS from different components can be deduped.
new OptimizeCSSPlugin({
cssProcessorOptions: config.build.productionSourceMap
? { safe: true, map: { inline: false } }
: { safe: true }
}),
// generate dist index.html with correct asset hash for caching.
// you can customize output by editing /index.html
// see https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
// more options:
// https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency'
}),
// keep module.id stable when vendor modules does not change
new webpack.HashedModuleIdsPlugin(),
// enable scope hoisting
new webpack.optimize.ModuleConcatenationPlugin(),
// split vendor js into its own file
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks (module) {
// any required modules inside node_modules are extracted to vendor
return (
module.resource &&
/\.js$/.test(module.resource) &&
module.resource.indexOf(
path.join(__dirname, '../node_modules')
) === 0
)
}
}),
// extract webpack runtime and module manifest to its own file in order to
// prevent vendor hash from being updated whenever app bundle is updated
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
minChunks: Infinity
}),
// This instance extracts shared chunks from code splitted chunks and bundles them
// in a separate chunk, similar to the vendor chunk
// see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk
new webpack.optimize.CommonsChunkPlugin({
name: 'app',
async: 'vendor-async',
children: true,
minChunks: 3
}),
// copy custom static assets
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.build.assetsSubDirectory,
ignore: ['.*']
}
])
]
})
if (config.build.productionGzip) {
const CompressionWebpackPlugin = require('compression-webpack-plugin')
webpackConfig.plugins.push(
new CompressionWebpackPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
test: new RegExp(
'\\.(' +
config.build.productionGzipExtensions.join('|') +
')$'
),
threshold: 10240,
minRatio: 0.8
})
)
}
if (config.build.bundleAnalyzerReport) {
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
webpackConfig.plugins.push(new BundleAnalyzerPlugin())
}
module.exports = webpackConfig

7
config/dev.env.js

@ -0,0 +1,7 @@
'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"'
})

91
config/index.js

@ -0,0 +1,91 @@
// Template version: 1.3.1
// see http://vuejs-templates.github.io/webpack for documentation.
const path = require('path')
function resolve (dir) {
return path.join(__dirname, './', dir)
}
module.exports = {
dev: {
// Paths
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {
'/api': {
// target: 'https://ceres.zkthink.com/api', // 测试
target: 'https://ceres.zkthink.com/api', // 测试
// target: 'https://shopapi.zkthink.com', // 测试
// target: 'http://3j073r3905.qicp.vip', // 测试
// target: 'http://3j073r3905.qicp.vip:29544', // 测试
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
},
// Various Dev Server settings
// host: '0.0.0.0', // can be overwritten by process.env.HOST
host: 'localhost', // can be overwritten by process.env.HOST
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
autoOpenBrowser: false,
errorOverlay: true,
notifyOnErrors: true,
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
// Use Eslint Loader?
// If true, your code will be linted during bundling and
// linting errors and warnings will be shown in the console.
useEslint: true,
// If true, eslint errors and warnings will also be shown in the error overlay
// in the browser.
showEslintErrorsInOverlay: false,
/**
* Source Maps
*/
// https://webpack.js.org/configuration/devtool/#development
devtool: 'cheap-module-eval-source-map',
// If you have problems debugging vue-files in devtools,
// set this to false - it *may* help
// https://vue-loader.vuejs.org/en/options.html#cachebusting
cacheBusting: true,
cssSourceMap: true,
},
build: {
// Template for index.html
index: path.resolve(__dirname, '../dist/index.html'),
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
assetsPublicPath: './',
/**
* Source Maps
*/
productionSourceMap: true,
// https://webpack.js.org/configuration/devtool/#production
devtool: '#source-map',
// Gzip off by default as many popular static hosts such as
// Surge or Netlify already gzip all static assets for you.
// Before setting to `true`, make sure to:
// npm install --save-dev compression-webpack-plugin
productionGzip: false,
productionGzipExtensions: ['js', 'css'],
// Run the build command with an extra argument to
// View the bundle analyzer report after build finishes:
// `npm run build --report`
// Set to `true` or `false` to always turn it on or off
bundleAnalyzerReport: process.env.npm_config_report
}
}

4
config/prod.env.js

@ -0,0 +1,4 @@
'use strict'
module.exports = {
NODE_ENV: '"production"'
}

16
index.html

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0"/>
<meta HTTP-EQUIV ="pragma" CONTENT="no-cache">
<meta http-equiv="Cache-Control"CONTENT="no-cache, must-revalidate">
<meta http-equiv="expires"CONTENT="0">
<link rel="icon" type="image/x-icon" href="static/cereshop.ico">
<title>cereshop商城</title>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto inject-->
</body>
</html>

14411
package-lock.json
File diff suppressed because it is too large
View File

95
package.json

@ -0,0 +1,95 @@
{
"name": "toinstall",
"version": "1.0.0",
"description": "pc",
"author": "luoyal <luoyal@yeah.net>",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"lint": "eslint --ext .js,.vue src",
"build": "node build/build.js"
},
"dependencies": {
"element-china-area-data": "^5.0.2",
"element-ui": "^2.12.0",
"js-cookie": "^2.2.0",
"qrcode": "^1.5.0",
"qs": "^6.9.4",
"swiper": "^5.4.5",
"vue": "^2.5.2",
"vue-router": "^3.0.1",
"vue-video-player": "^5.0.2",
"vuex": "^3.1.0"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.0.1",
"copy-webpack-plugin": "^4.0.1",
"crypto-js": "^4.0.0",
"css-loader": "^0.28.11",
"es6-promise": "^4.2.5",
"eslint": "^4.15.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"lib-flexible": "^0.3.2",
"node-notifier": "^5.1.2",
"normalize.css": "^8.0.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.2.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-plugin-px2rem": "^0.8.1",
"postcss-url": "^7.2.1",
"prettier": "~1.12.0",
"px2rem-loader": "^0.1.9",
"rimraf": "^2.6.0",
"sass": "~1.26.5",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^1.3.5",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"style-loader": "^0.23.1",
"svg-sprite-loader": "^6.0.9",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.5.8",
"vue-awesome-swiper": "^4.1.1",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}

38
src/App.vue

@ -0,0 +1,38 @@
<template>
<div id="app">
<router-view v-if="isRouterAlive"></router-view>
</div>
</template>
<script>
export default {
name: 'App',
provide () {
return {
reload: this.reload
}
},
data () {
return {
isRouterAlive: true
}
},
created () {
// vuexlocalStorage
window.addEventListener('beforeunload', () => {
localStorage.setItem('messageStore', JSON.stringify(this.$store.state))
})
// localStorage
localStorage.getItem('messageStore') && this.$store.replaceState(Object.assign(this.$store.state, JSON.parse(localStorage.getItem('messageStore'))))
},
methods: {
reload () {
this.isRouterAlive = false
this.$nextTick(function () {
this.isRouterAlive = true
})
}
}
}
</script>

49
src/api/Activity/ActivityBind.js

@ -0,0 +1,49 @@
import request from '@/util/server.js'
// 定价捆绑规则查询
/**
* @param {Object} params
* composeName
* createTime
* endTime
* priceId
* shopId
* startTime
* state
* updateTime
* @returns request
*/
export function getBindList (params) {
return request({
url: '/price/selectByShopId',
method: 'get',
params
})
}
// 定价捆绑套餐查询
export function getBindProduct (params) {
return request({
url: '/product/selectProductListByPriceId',
method: 'get',
params
})
}
// 查询定价捆绑商品
export function getBindProducts (params) {
return request({
url: '/canvas/getPrices',
method: 'get',
params
})
}
// 商品套餐、活动查询
export function getBindDetail (params) {
return request({
url: '/product/getProducts',
method: 'get',
params
})
}

19
src/api/Activity/ActivityCoupon.js

@ -0,0 +1,19 @@
import request from '@/util/server.js'
// 优惠券列表
export function getCoupons (params) {
return request({
url: '/coupon/getCoupons',
method: 'get',
params
})
}
// 优惠券列表
export function getCouponList (params) {
return request({
url: '/coupon/getCouponList',
method: 'get',
params
})
}

28
src/api/Activity/ActivityDiscount.js

@ -0,0 +1,28 @@
import request from '@/util/server.js'
// 平台限时折扣专区
export function getDiscountList (params) {
return request({
url: '/platform-discount/queryPlatformDiscount',
method: 'get',
params
})
}
// 查询消息列表
export function getPlatformDiscountList (data) {
return request({
url: '/platform-discount/queryPlatformDiscountProductList',
method: 'post',
data
})
}
// 折扣专区
export function getDiscountIndex (params) {
return request({
url: '/discount/getIndex',
method: 'get',
params
})
}

19
src/api/Activity/ActivityGroup.js

@ -0,0 +1,19 @@
import request from '@/util/server.js'
// 拼团专区
export function getGroupList (params) {
return request({
url: '/work/getIndex',
method: 'get',
params
})
}
// 邀请拼团
export function inviteGroup (params) {
return request({
url: '/work/getShare',
method: 'get',
params
})
}

10
src/api/Activity/ActivityPolite.js

@ -0,0 +1,10 @@
import request from '@/util/server.js'
// 查询支付有礼数据
export function getPoliteList (params) {
return request({
url: '/order/getOrderPolite',
method: 'get',
params
})
}

27
src/api/Activity/ActivitySeckill.js

@ -0,0 +1,27 @@
import request from '@/util/server.js'
// 平台秒杀专区
export function getSeckill (data) {
return request({
url: '/platform-seckill/queryProductListBySession',
method: 'post',
data
})
}
// 查询秒杀专区列表
export function getSeckillIndex (params) {
return request({
url: '/seckill/getIndex',
method: 'get',
params
})
}
// 查询秒杀时间段
export function getSeckillTime () {
return request({
url: '/platform-seckill/querySession',
method: 'get'
})
}

10
src/api/Activity/ActivityVip.js

@ -0,0 +1,10 @@
import request from '@/util/server.js'
// 拼团专区
export function getVipList (params) {
return request({
url: '/canvas/getMemberProducts',
method: 'get',
params
})
}

73
src/api/coupon.js

@ -0,0 +1,73 @@
import request from '@/util/server.js'
// 查询店铺优惠券
/**
{
ids: [], //优惠券id
page: 0, //当前页
pageSize: 10, // 每页记录数
search: '', // 搜索字段
shopId: 0
}
*/
export function getShopCoupon (params) {
return request({
url: '/canvas/getShopCoupons',
method: 'get',
params
})
}
// 查询平台优惠券
/**
{
ids: [], //优惠券id
page: 0, //当前页
pageSize: 10, // 每页记录数
search: '', // 搜索字段
shopId: 0
}
*/
export function getCommonCoupon (params) {
return request({
url: '/canvas/getCoupons',
method: 'get',
params
})
}
// 我的卡券列表 不带分页
/**
state 状态 0-已领取 1-已使用 2-已过期
*/
export function getCouponList (params) {
return request({
url: '/coupon/getCouponList',
method: 'get',
params
})
}
// 领取优惠券
/**
{
couponId: 0,
shopCouponId: 0,
shopId: 0
}
*/
export function tabkeTheCoupon (data) {
return request({
url: '/coupon/takeCoupon',
method: 'post',
data
})
}
export function getCouponProducts (params) {
return request({
url: '/coupon/getCouponProducts',
method: 'get',
params
})
}

21
src/api/login.js

@ -0,0 +1,21 @@
import request from '@/util/server.js'
// 登录模块
// 获取验证码
export function getTheCode (params) {
return request({
url: '/app/getCode',
method: 'get',
params
})
}
// 登录
export function login (data) {
return request({
url: '/app/login',
method: 'post',
data
})
}
// getFirstClassify: '/classify/getFirstClassify',

11
src/api/nav.js

@ -0,0 +1,11 @@
import request from '@/util/server.js'
export const settled = 'https://ceres.zkthink.com/settled-merchant/#/' // 商家入驻地址
// 获取首页导航栏分类
export function getCategory () {
return request({
url: '/classify/getFirstClassify',
method: 'get'
})
}

114
src/api/product.js

@ -0,0 +1,114 @@
import request from '@/util/server.js'
// 查询商品详情
export function getProductsById (params) {
return request({
url: '/product/getById',
method: 'get',
params
})
}
// 查询商品
export function getProducts (params) {
return request({
url: '/product/getProducts',
method: 'get',
params
})
}
// 查询组合捆绑商品
/**
* @param {Object} params
* city 所在地区
* platformDiscountId 平台限时折扣活动id
* platformSeckillId 秒杀活动id
* productId 商品id
* shopDiscountId 限时折扣活动id
* shopGroupWorkId 拼团活动id
* shopSeckillId 秒杀活动id
* shopId 店铺id
* skuId 规格id
* terminal 访问终端 1-APP 2-微信小程序 3-H5 4-支付宝小程序
* @returns void
*/
export function getComposePro (params) {
return request({
url: '/product/selectCompose',
method: 'get',
params
})
}
// 查询店铺的组合捆绑信息
export function getShopComposePro (params) {
return request({
url: '/product/selectComposeByShopId',
method: 'get',
params
})
}
// 查询画布商品
export function getCanvasProducts (params) {
return request({
url: '/canvas/getProducts',
method: 'get',
params
})
}
// 查询搜索商品
export function getSearchProduct (params) {
return request({
url: '/app/getSearchProducts',
method: 'get',
params
})
}
// 查询分类商品
export function getClaasifyProducts (params) {
return request({
url: '/classify/getClaasifyProducts',
method: 'get',
params
// payload
})
}
// 查询商品问答
export function getProductProblem (params) {
return request({
url: '/seckill/getProblems',
method: 'get',
params
})
}
// 根据商品提问
export function askProductProblem (data) {
return request({
url: '/seckill/addProblem',
method: 'post',
data
})
}
// 根据商品提问
export function answerProductProblem (data) {
return request({
url: '/seckill/addAnswer',
method: 'post',
data
})
}
export function getServiceURL (params) {
return request({
url: '/kf/getPCKf',
method: 'get',
params
})
}

46
src/api/shop.js

@ -0,0 +1,46 @@
import request from '@/util/server.js'
// 搜索店铺
export function searchShop (params) {
return request({
url: '/shop/getShops',
method: 'get',
params
})
}
// 擦寻店铺首页
export function getShopIndex (params) {
return request({
url: '/shop/getIndex',
method: 'get',
params
})
}
// 查询店铺分类
export function getShopClassify (params) {
return request({
url: '/shop/getShopClassify',
method: 'get',
params
})
}
// 查询店铺商品
export function getShopProducts (params) {
return request({
url: '/shop/getShopProducts',
method: 'get',
params
})
}
// 查询店铺banner
export function getShopBanner (params) {
return request({
url: '/shop/getShopBanner',
method: 'get',
params
})
}

4
src/api/upload.js

@ -0,0 +1,4 @@
// import request from '@/util/server.js'
import {uploadURL} from '@/util/server.js'
export const upload = uploadURL + '/file/upload'

37
src/api/user/address.js

@ -0,0 +1,37 @@
import request from '@/util/server.js'
// 收货地址查询
export function getAllAddressList (params) {
return request({
url: '/receive/getAll',
method: 'get',
params
})
}
// 新增地址
export function addAddress (data) {
return request({
url: '/receive/save',
method: 'post',
data
})
}
// 修改地址
export function updateAddress (data) {
return request({
url: '/receive/update',
method: 'put',
data
})
}
// 修改地址
export function deleteAddress (data) {
return request({
url: '/receive/delete',
method: 'delete',
data
})
}

87
src/api/user/afterSale.js

@ -0,0 +1,87 @@
import request from '@/util/server.js'
// 售后列表
export function getAfterSaleList (params) {
return request({
url: '/after/getAll',
method: 'get',
params
})
}
// 售后详情
export function getAfterSaleDetail (params) {
return request({
url: '/after/getById',
method: 'get',
params
})
}
// 提交退款
export function submitAfter (data) {
return request({
url: '/after/submit',
method: 'post',
data
})
}
// 退款原因查询
export function getReasons () {
return request({
url: '/after/getReasonSelect',
method: 'get'
})
}
// 撤销退款
export function returnRefund (data) {
return request({
url: '/after/returnRefund',
method: 'put',
data
})
}
// 撤销退款
export function postRefund (data) {
return request({
url: '/after/returnRefund',
method: 'post',
data
})
}
// 撤销退货
export function returnGoods (data) {
return request({
url: '/after/returnGoods',
method: 'put',
data
})
}
// 撤销退货
export function postReGoods (data) {
return request({
url: '/after/returnGoods',
method: 'post',
data
})
}
// 申请平台介入
/**
"afterId": 0,
"image": "", // 图片地址(多个以逗号隔开)
"orderId": 0,
"reason": "" // 问题描述
*/
export function requestPlatform (data) {
return request({
url: '/after/platform',
method: 'post',
data
})
}

58
src/api/user/cart.js

@ -0,0 +1,58 @@
import request from '@/util/server.js'
// 查询购物车内容
export function getCartList () {
return request({
url: '/cart/getCart',
method: 'get'
})
}
// 选中商品
export function putProduct (data) {
return request({
url: '/cart/selected',
method: 'put'
})
}
// 添加到购物车
/**
{
skuId: 0, // 规格id
number: 0 // 商品数量
}
*/
export function addToCart (data) {
return request({
url: '/cart/addCart',
method: 'post',
data
})
}
// 删除购物车商品
export function deleteCartItem (data) {
return request({
url: '/cart/delete',
method: 'delete',
data
})
}
// 清空失效宝贝
export function clearCart () {
return request({
url: '/cart/clearInvalidSku',
method: 'get'
})
}
// 删除购物车商品
export function updateCartNum (data) {
return request({
url: '/cart/updateNumber',
method: 'put',
data
})
}

59
src/api/user/evaluate.js

@ -0,0 +1,59 @@
import request from '@/util/server.js'
// 查看商品评价
export function getProductEvaluate (params) {
return request({
url: '/comment/getProductAll',
method: 'get',
params
})
}
// 查询评论列表
export function getEvaluateData (params) {
return request({
url: '/comment/getCommentList',
method: 'get',
params
})
}
// 查询评论详情
export function getEvaluateDetail (params) {
return request({
url: '/comment/getById',
method: 'get',
params
})
}
// 添加评论
export function addEvaluate (data) {
return request({
url: '/order/addComment',
method: 'post',
data
})
}
// 查询评论详情
export function addMoreEvaluate (data) {
return request({
url: '/order/addToComment',
method: 'put',
data
})
}
// 点赞
/**
* commentId: 0 // 评论id
* ifLike: 0 // 是否点赞 1-是 0-否
*/
export function likeEvaluate (data) {
return request({
url: '/comment/like',
method: 'post',
data
})
}

45
src/api/user/express.js

@ -0,0 +1,45 @@
import request from '@/util/server.js'
// 查看物流信息
export function getExpressData (params) {
return request({
url: '/order/getDilevery',
method: 'get',
params
})
}
// 所有物流公司字典查询
export function getExpressCompany () {
return request({
url: '/order/getExpressSelect',
method: 'get'
})
}
// 填写退货物流
/**
"afterId": 0,
"createTime": "",
"deliverFormid": "", // 快递单号
"express": 0, // 快递公司(取数据字典)
"image": "", // 凭证图片
"orderId": 0,
"reason": "", // 说明
"updateTime": ""
*/
export function postExpress (data) {
return request({
url: '/order/returnExpress',
method: 'post',
data
})
}
// export function returnExpress (data) {
// return request({
// url: '/order/returnExpress',
// method: 'post',
// data
// })
// }

46
src/api/user/notice.js

@ -0,0 +1,46 @@
import request from '@/util/server.js'
// 查询消息列表
export function getNoticeAll (params) {
return request({
url: '/notice/getAll',
method: 'get',
params
})
}
// 查询消息详情
export function getNoticeDetail (params) {
return request({
url: '/notice/getById',
method: 'get',
params
})
}
// 读取消息
export function readNotice (data) {
return request({
url: '/notice/readNotice',
method: 'post',
data
})
}
// 查询消息详情
export function noticeDel (data) {
return request({
url: '/notice/removeById',
method: 'post',
data
})
}
// 查询消息详情
export function getGongGaoAll (params) {
return request({
url: '/notice/getGongGaoAll',
method: 'get',
params
})
}

124
src/api/user/order.js

@ -0,0 +1,124 @@
import request from '@/util/server.js'
// 结算、提交订单
export function orderSubmit (data) {
return request({
url: '/order/submit',
method: 'post',
data
})
}
// 确认订单
export function orderConfirm (data) {
return request({
url: '/order/confirm',
method: 'put',
data
})
}
// 取消订单
export function orderCancel (data) {
return request({
url: '/order/cancel',
method: 'put',
data
})
}
// 删除订单
export function orderDelete (data) {
return request({
url: '/order/delete',
method: 'delete',
data
})
}
// 查询订单列表
export function getOrderList (params) {
return request({
url: '/order/getAll',
method: 'get',
params
})
}
// 查询订单详情
export function getOrderDetail (params) {
return request({
url: '/order/getById',
method: 'get',
params
})
}
// 结算查询
/**
* @param {Object} data
* ifWork 是否拼团商品单独购买 1- 0-
* receiveId 收货地址id
* shopDiscountId
* @returns request
*/
export function getSettlement (data) {
return request({
url: '/order/getSettlement',
method: 'post',
data
})
}
// 再次购买
export function buyItAgain (data) {
return request({
url: '/cart/buyAgain',
method: 'put',
data
})
}
// 拼团单结算查询
export function getGroupSettle (data) {
return request({
url: '/work/getSettlement',
method: 'post',
data
})
}
// 校验当前订单是否支付成功
export function checkOrderResult (params) {
return request({
url: '/order/checkPay',
method: 'get',
params
})
}
// 支付
export function orderPayPost (data) {
return request({
url: '/order/pay',
method: 'post',
data
})
}
// 支付
export function orderPayPut (data) {
return request({
url: '/order/pay',
method: 'put',
data
})
}
// 获取支付二维码码
export function orderPayCode (params) {
return request({
url: '/order/getUrl',
method: 'get',
params
})
}

143
src/api/user/user.js

@ -0,0 +1,143 @@
import request from '@/util/server.js'
// 查询个人信息
export function getUserInfo () {
return request({
url: '/user/getUser',
method: 'get'
})
}
// 修改个人信息
export function changeUserInfo (data) {
return request({
url: '/user/update',
method: 'put',
data
})
}
// 修改密码
export function updateLoginPWD (data) {
return request({
url: '/user/updatePassword',
method: 'put',
data
})
}
// 解除绑定手机号
export function freedPhone (data) {
return request({
url: '/user/relievePhone',
method: 'put',
data
})
}
// 修改手机号
export function changePhone (data) {
return request({
url: '/user/updatePhone',
method: 'put',
data
})
}
// 身份验证
export function checkUser (params) {
return request({
url: '/user/checkUser',
method: 'get',
params
})
}
// 查询我的提问
export function getMyProblems (params) {
return request({
url: '/user/getSelfProblems',
method: 'get',
params
})
}
// 批量删除我的提问
export function delMyProblem (data) {
return request({
url: '/seckill/deleteProblem',
method: 'delete',
data
})
}
// 查询我的回答
export function getMyAnswers (params) {
return request({
url: '/user/getSelfAnswers',
method: 'get',
params
})
}
// 批量删除我的回答
export function delMyAnswers (data) {
return request({
url: '/seckill/deleteAnswer',
method: 'delete',
data
})
}
// 查询我的足迹
export function getFoots (params) {
return request({
url: '/footprint/getAll',
method: 'get',
params
})
}
// 查询我的足迹
export function deleteFoots (data) {
return request({
url: '/footprint/delete',
method: 'delete',
data
})
}
// 查询我的收藏店铺
export function getCollectShop (params) {
return request({
url: '/collect/getAllShop',
method: 'get',
params
})
}
// 查询我的收藏商品
export function getCollectProduct (params) {
return request({
url: '/collect/getAllProduct',
method: 'get',
params
})
}
// 收藏商品/店铺
export function postCollect (data) {
return request({
url: '/collect/collect',
method: 'post',
data
})
}
export function cancelCollect (data) {
return request({
url: '/collect/cancel',
method: 'put',
data
})
}

30
src/api/vip.js

@ -0,0 +1,30 @@
import request from '@/util/server.js'
// 会员签到
export function getSignIn () {
return request({
url: '/member/signIn',
method: 'post'
})
}
// 查询签到明细
/**
* page // 当前页
* pageSize // 每页数量
*/
export function getSignInList (params) {
return request({
url: '/member/selectSigninHistory',
method: 'get',
params
})
}
// 查询签到列表
export function getSignInTable () {
return request({
url: '/member/selectSigninRecordList',
method: 'get'
})
}

4576
src/assets/contry_data.json
File diff suppressed because it is too large
View File

1
src/assets/data.js

@ -0,0 +1 @@
module.exports = require('./contry_data.json')

BIN
src/assets/font/DIN-Bold.eot

BIN
src/assets/font/DIN-Bold.otf

BIN
src/assets/font/DIN-Bold.ttf

BIN
src/assets/font/DIN-Bold.woff

BIN
src/assets/font/DIN-Bold.woff2

539
src/assets/font_icon/demo.css

@ -0,0 +1,539 @@
/* Logo 字体 */
@font-face {
font-family: "iconfont logo";
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
}
.logo {
font-family: "iconfont logo";
font-size: 160px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* tabs */
.nav-tabs {
position: relative;
}
.nav-tabs .nav-more {
position: absolute;
right: 0;
bottom: 0;
height: 42px;
line-height: 42px;
color: #666;
}
#tabs {
border-bottom: 1px solid #eee;
}
#tabs li {
cursor: pointer;
width: 100px;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 16px;
border-bottom: 2px solid transparent;
position: relative;
z-index: 1;
margin-bottom: -1px;
color: #666;
}
#tabs .active {
border-bottom-color: #f00;
color: #222;
}
.tab-container .content {
display: none;
}
/* 页面布局 */
.main {
padding: 30px 100px;
width: 960px;
margin: 0 auto;
}
.main .logo {
color: #333;
text-align: left;
margin-bottom: 30px;
line-height: 1;
height: 110px;
margin-top: -50px;
overflow: hidden;
*zoom: 1;
}
.main .logo a {
font-size: 160px;
color: #333;
}
.helps {
margin-top: 40px;
}
.helps pre {
padding: 20px;
margin: 10px 0;
border: solid 1px #e7e1cd;
background-color: #fffdef;
overflow: auto;
}
.icon_lists {
width: 100% !important;
overflow: hidden;
*zoom: 1;
}
.icon_lists li {
width: 100px;
margin-bottom: 10px;
margin-right: 20px;
text-align: center;
list-style: none !important;
cursor: default;
}
.icon_lists li .code-name {
line-height: 1.2;
}
.icon_lists .icon {
display: block;
height: 100px;
line-height: 100px;
font-size: 42px;
margin: 10px auto;
color: #333;
-webkit-transition: font-size 0.25s linear, width 0.25s linear;
-moz-transition: font-size 0.25s linear, width 0.25s linear;
transition: font-size 0.25s linear, width 0.25s linear;
}
.icon_lists .icon:hover {
font-size: 100px;
}
.icon_lists .svg-icon {
/* 通过设置 font-size 来改变图标大小 */
width: 1em;
/* 图标和文字相邻时,垂直对齐 */
vertical-align: -0.15em;
/* 通过设置 color 来改变 SVG 的颜色/fill */
fill: currentColor;
/* path stroke 溢出 viewBox 部分在 IE 下会显示
normalize.css 中也包含这行 */
overflow: hidden;
}
.icon_lists li .name,
.icon_lists li .code-name {
color: #666;
}
/* markdown 样式 */
.markdown {
color: #666;
font-size: 14px;
line-height: 1.8;
}
.highlight {
line-height: 1.5;
}
.markdown img {
vertical-align: middle;
max-width: 100%;
}
.markdown h1 {
color: #404040;
font-weight: 500;
line-height: 40px;
margin-bottom: 24px;
}
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
color: #404040;
margin: 1.6em 0 0.6em 0;
font-weight: 500;
clear: both;
}
.markdown h1 {
font-size: 28px;
}
.markdown h2 {
font-size: 22px;
}
.markdown h3 {
font-size: 16px;
}
.markdown h4 {
font-size: 14px;
}
.markdown h5 {
font-size: 12px;
}
.markdown h6 {
font-size: 12px;
}
.markdown hr {
height: 1px;
border: 0;
background: #e9e9e9;
margin: 16px 0;
clear: both;
}
.markdown p {
margin: 1em 0;
}
.markdown>p,
.markdown>blockquote,
.markdown>.highlight,
.markdown>ol,
.markdown>ul {
width: 80%;
}
.markdown ul>li {
list-style: circle;
}
.markdown>ul li,
.markdown blockquote ul>li {
margin-left: 20px;
padding-left: 4px;
}
.markdown>ul li p,
.markdown>ol li p {
margin: 0.6em 0;
}
.markdown ol>li {
list-style: decimal;
}
.markdown>ol li,
.markdown blockquote ol>li {
margin-left: 20px;
padding-left: 4px;
}
.markdown code {
margin: 0 3px;
padding: 0 5px;
background: #eee;
border-radius: 3px;
}
.markdown strong,
.markdown b {
font-weight: 600;
}
.markdown>table {
border-collapse: collapse;
border-spacing: 0px;
empty-cells: show;
border: 1px solid #e9e9e9;
width: 95%;
margin-bottom: 24px;
}
.markdown>table th {
white-space: nowrap;
color: #333;
font-weight: 600;
}
.markdown>table th,
.markdown>table td {
border: 1px solid #e9e9e9;
padding: 8px 16px;
text-align: left;
}
.markdown>table th {
background: #F7F7F7;
}
.markdown blockquote {
font-size: 90%;
color: #999;
border-left: 4px solid #e9e9e9;
padding-left: 0.8em;
margin: 1em 0;
}
.markdown blockquote p {
margin: 0;
}
.markdown .anchor {
opacity: 0;
transition: opacity 0.3s ease;
margin-left: 8px;
}
.markdown .waiting {
color: #ccc;
}
.markdown h1:hover .anchor,
.markdown h2:hover .anchor,
.markdown h3:hover .anchor,
.markdown h4:hover .anchor,
.markdown h5:hover .anchor,
.markdown h6:hover .anchor {
opacity: 1;
display: inline-block;
}
.markdown>br,
.markdown>p>br {
clear: both;
}
.hljs {
display: block;
background: white;
padding: 0.5em;
color: #333333;
overflow-x: auto;
}
.hljs-comment,
.hljs-meta {
color: #969896;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-strong,
.hljs-emphasis,
.hljs-quote {
color: #df5000;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
color: #a71d5d;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute {
color: #0086b3;
}
.hljs-section,
.hljs-name {
color: #63a35c;
}
.hljs-tag {
color: #333333;
}
.hljs-title,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #795da3;
}
.hljs-addition {
color: #55a532;
background-color: #eaffea;
}
.hljs-deletion {
color: #bd2c00;
background-color: #ffecec;
}
.hljs-link {
text-decoration: underline;
}
/* 代码高亮 */
/* PrismJS 1.15.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre)>code[class*="language-"],
pre[class*="language-"] {
background: #f5f2f0;
}
/* Inline code */
:not(pre)>code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function,
.token.class-name {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}

1850
src/assets/font_icon/demo_index.html
File diff suppressed because it is too large
View File

309
src/assets/font_icon/iconfont.css
File diff suppressed because it is too large
View File

BIN
src/assets/font_icon/iconfont.eot

1
src/assets/font_icon/iconfont.js
File diff suppressed because it is too large
View File

520
src/assets/font_icon/iconfont.json

@ -0,0 +1,520 @@
{
"id": "2247437",
"name": "多商户",
"font_family": "iconfont",
"css_prefix_text": "icon-",
"description": "",
"glyphs": [
{
"icon_id": "608352",
"name": "箭头",
"font_class": "arrow-right",
"unicode": "e6ab",
"unicode_decimal": 59051
},
{
"icon_id": "19822369",
"name": "头部",
"font_class": "toubu",
"unicode": "e657",
"unicode_decimal": 58967
},
{
"icon_id": "19822004",
"name": "秒杀1",
"font_class": "miaosha1",
"unicode": "e653",
"unicode_decimal": 58963
},
{
"icon_id": "19821963",
"name": "拼团1",
"font_class": "pintuan1",
"unicode": "e654",
"unicode_decimal": 58964
},
{
"icon_id": "19821964",
"name": "新品",
"font_class": "xinpin",
"unicode": "e655",
"unicode_decimal": 58965
},
{
"icon_id": "19821965",
"name": "折扣1",
"font_class": "zhekou1",
"unicode": "e656",
"unicode_decimal": 58966
},
{
"icon_id": "19635077",
"name": "拼团成功",
"font_class": "pintuanchenggong",
"unicode": "e651",
"unicode_decimal": 58961
},
{
"icon_id": "19635078",
"name": "拼团失败",
"font_class": "pintuanshibai",
"unicode": "e652",
"unicode_decimal": 58962
},
{
"icon_id": "19634801",
"name": "收藏",
"font_class": "shoucang1",
"unicode": "e650",
"unicode_decimal": 58960
},
{
"icon_id": "19634688",
"name": "秒杀",
"font_class": "miaosha",
"unicode": "e64d",
"unicode_decimal": 58957
},
{
"icon_id": "19634689",
"name": "折扣",
"font_class": "zhekou",
"unicode": "e64e",
"unicode_decimal": 58958
},
{
"icon_id": "19634690",
"name": "拼团",
"font_class": "pintuan",
"unicode": "e64f",
"unicode_decimal": 58959
},
{
"icon_id": "19623653",
"name": "111",
"font_class": "111",
"unicode": "e64c",
"unicode_decimal": 58956
},
{
"icon_id": "15847946",
"name": "收藏",
"font_class": "shoucang",
"unicode": "e602",
"unicode_decimal": 58882
},
{
"icon_id": "152423",
"name": "问号",
"font_class": "qm",
"unicode": "e64b",
"unicode_decimal": 58955
},
{
"icon_id": "19569866",
"name": "xiaoxizhongxin",
"font_class": "xiaoxizhongxin",
"unicode": "e64a",
"unicode_decimal": 58954
},
{
"icon_id": "19569831",
"name": "tongzhi",
"font_class": "tongzhi",
"unicode": "e647",
"unicode_decimal": 58951
},
{
"icon_id": "19512594",
"name": "对角1",
"font_class": "duijiao1",
"unicode": "e648",
"unicode_decimal": 58952
},
{
"icon_id": "19512595",
"name": "对角",
"font_class": "duijiao2",
"unicode": "e649",
"unicode_decimal": 58953
},
{
"icon_id": "18908808",
"name": "魔方",
"font_class": "mofang",
"unicode": "e640",
"unicode_decimal": 58944
},
{
"icon_id": "18908809",
"name": "一行两个",
"font_class": "yihangliangge",
"unicode": "e641",
"unicode_decimal": 58945
},
{
"icon_id": "18908810",
"name": "一行三个",
"font_class": "yihangsange",
"unicode": "e642",
"unicode_decimal": 58946
},
{
"icon_id": "18908811",
"name": "一行四个",
"font_class": "yihangsige",
"unicode": "e643",
"unicode_decimal": 58947
},
{
"icon_id": "18908812",
"name": "一左两右",
"font_class": "yizuoliangyou",
"unicode": "e644",
"unicode_decimal": 58948
},
{
"icon_id": "18908813",
"name": "两行两个",
"font_class": "lianghangliangge",
"unicode": "e645",
"unicode_decimal": 58949
},
{
"icon_id": "18908814",
"name": "一上两下",
"font_class": "yishangliangxia",
"unicode": "e646",
"unicode_decimal": 58950
},
{
"icon_id": "18907805",
"name": "店铺头部",
"font_class": "dianputoubu",
"unicode": "e633",
"unicode_decimal": 58931
},
{
"icon_id": "18907730",
"name": "h5",
"font_class": "h5",
"unicode": "e632",
"unicode_decimal": 58930
},
{
"icon_id": "18907732",
"name": "图文",
"font_class": "tuwen",
"unicode": "e634",
"unicode_decimal": 58932
},
{
"icon_id": "18907733",
"name": "商品列表",
"font_class": "shangpinliebiao",
"unicode": "e635",
"unicode_decimal": 58933
},
{
"icon_id": "18907734",
"name": "类别列表",
"font_class": "leibieliebiao",
"unicode": "e636",
"unicode_decimal": 58934
},
{
"icon_id": "18907735",
"name": "视频",
"font_class": "shipin",
"unicode": "e637",
"unicode_decimal": 58935
},
{
"icon_id": "18907736",
"name": "图文导航",
"font_class": "tuwendaohang",
"unicode": "e638",
"unicode_decimal": 58936
},
{
"icon_id": "18907737",
"name": "自定义",
"font_class": "zidingyi",
"unicode": "e639",
"unicode_decimal": 58937
},
{
"icon_id": "18907738",
"name": "小程序",
"font_class": "xiaochengxu",
"unicode": "e63a",
"unicode_decimal": 58938
},
{
"icon_id": "18907739",
"name": "图文列表",
"font_class": "tuwenliebiao",
"unicode": "e63b",
"unicode_decimal": 58939
},
{
"icon_id": "18907740",
"name": "组件",
"font_class": "zujian",
"unicode": "e63c",
"unicode_decimal": 58940
},
{
"icon_id": "18907741",
"name": "优惠券",
"font_class": "youhuiquan",
"unicode": "e63d",
"unicode_decimal": 58941
},
{
"icon_id": "18907742",
"name": "文本",
"font_class": "wenben",
"unicode": "e63e",
"unicode_decimal": 58942
},
{
"icon_id": "18907743",
"name": "品牌列表",
"font_class": "pinpailiebiao",
"unicode": "e63f",
"unicode_decimal": 58943
},
{
"icon_id": "18907727",
"name": "app",
"font_class": "app",
"unicode": "e62f",
"unicode_decimal": 58927
},
{
"icon_id": "18907728",
"name": "辅助分割",
"font_class": "fuzhufenge",
"unicode": "e630",
"unicode_decimal": 58928
},
{
"icon_id": "18907729",
"name": "pc",
"font_class": "pc",
"unicode": "e631",
"unicode_decimal": 58929
},
{
"icon_id": "18870798",
"name": "卡片3",
"font_class": "kapian3",
"unicode": "e626",
"unicode_decimal": 58918
},
{
"icon_id": "18870799",
"name": "卡片2",
"font_class": "kapian2",
"unicode": "e629",
"unicode_decimal": 58921
},
{
"icon_id": "18870800",
"name": "卡片5",
"font_class": "kapian5",
"unicode": "e62b",
"unicode_decimal": 58923
},
{
"icon_id": "18870801",
"name": "卡片4",
"font_class": "kapian4",
"unicode": "e62e",
"unicode_decimal": 58926
},
{
"icon_id": "18870683",
"name": "卡片1",
"font_class": "kapian1",
"unicode": "e625",
"unicode_decimal": 58917
},
{
"icon_id": "18870310",
"name": "卡片8",
"font_class": "kapian8",
"unicode": "e628",
"unicode_decimal": 58920
},
{
"icon_id": "18870312",
"name": "卡片6",
"font_class": "kapian6",
"unicode": "e62a",
"unicode_decimal": 58922
},
{
"icon_id": "18870314",
"name": "卡片7",
"font_class": "kapian7",
"unicode": "e62d",
"unicode_decimal": 58925
},
{
"icon_id": "18863998",
"name": "优惠券3",
"font_class": "youhuiquan3",
"unicode": "e621",
"unicode_decimal": 58913
},
{
"icon_id": "18863999",
"name": "优惠券4",
"font_class": "youhuiquan4",
"unicode": "e622",
"unicode_decimal": 58914
},
{
"icon_id": "18864000",
"name": "优惠券2",
"font_class": "youhuiquan2",
"unicode": "e623",
"unicode_decimal": 58915
},
{
"icon_id": "18864001",
"name": "优惠券1",
"font_class": "youhuiquan1",
"unicode": "e624",
"unicode_decimal": 58916
},
{
"icon_id": "3730074",
"name": "关闭",
"font_class": "guanbi",
"unicode": "e620",
"unicode_decimal": 58912
},
{
"icon_id": "18767350",
"name": "shopping_cart",
"font_class": "shopping_cart",
"unicode": "e61e",
"unicode_decimal": 58910
},
{
"icon_id": "18767351",
"name": "my",
"font_class": "my",
"unicode": "e61f",
"unicode_decimal": 58911
},
{
"icon_id": "14110604",
"name": "支付宝",
"font_class": "zhifubao",
"unicode": "e627",
"unicode_decimal": 58919
},
{
"icon_id": "16605405",
"name": "彩友多_支付-微信支付",
"font_class": "caiyouduo_zhifu-weixinzhifu",
"unicode": "e686",
"unicode_decimal": 59014
},
{
"icon_id": "7684978",
"name": "add",
"font_class": "add1",
"unicode": "e6d4",
"unicode_decimal": 59092
},
{
"icon_id": "608218",
"name": "导航",
"font_class": "arrow-up",
"unicode": "e660",
"unicode_decimal": 58976
},
{
"icon_id": "608317",
"name": "箭头",
"font_class": "arrow-down",
"unicode": "e695",
"unicode_decimal": 59029
},
{
"icon_id": "11079880",
"name": "选中角标",
"font_class": "xuanzhongjiaobiao",
"unicode": "e612",
"unicode_decimal": 58898
},
{
"icon_id": "4651935",
"name": "修改",
"font_class": "xiugai",
"unicode": "e605",
"unicode_decimal": 58885
},
{
"icon_id": "5301925",
"name": "删除",
"font_class": "shanchu",
"unicode": "e62c",
"unicode_decimal": 58924
},
{
"icon_id": "18629216",
"name": "examine",
"font_class": "examine",
"unicode": "e610",
"unicode_decimal": 58896
},
{
"icon_id": "18629217",
"name": "delivery",
"font_class": "delivery",
"unicode": "e611",
"unicode_decimal": 58897
},
{
"icon_id": "18629769",
"name": "payment",
"font_class": "payment",
"unicode": "e616",
"unicode_decimal": 58902
},
{
"icon_id": "18632945",
"name": "complete",
"font_class": "complete",
"unicode": "e618",
"unicode_decimal": 58904
},
{
"icon_id": "18633089",
"name": "submit",
"font_class": "submit",
"unicode": "e619",
"unicode_decimal": 58905
},
{
"icon_id": "18633437",
"name": "order",
"font_class": "order",
"unicode": "e61a",
"unicode_decimal": 58906
},
{
"icon_id": "18633961",
"name": "transport",
"font_class": "transport",
"unicode": "e61c",
"unicode_decimal": 58908
}
]
}

245
src/assets/font_icon/iconfont.svg

@ -0,0 +1,245 @@
<?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" >
<!--
2013-9-30: Created.
-->
<svg>
<metadata>
Created by iconfont
</metadata>
<defs>
<font id="iconfont" horiz-adv-x="1024" >
<font-face
font-family="iconfont"
font-weight="500"
font-stretch="normal"
units-per-em="1024"
ascent="896"
descent="-128"
/>
<missing-glyph />
<glyph glyph-name="arrow-right" unicode="&#59051;" d="M714.19904 346.15296l-328.704-328.69376c-20.91008-20.91008-54.80448-20.91008-75.70432 0-20.89984 20.89984-20.89984 54.80448 0 75.70432L600.63744 384 309.80096 674.8364799999999c-20.89984 20.91008-20.89984 54.80448 0 75.70432 20.89984 20.91008 54.79424 20.91008 75.70432 0l328.704-328.69376c10.4448-10.45504 15.6672-24.14592 15.6672-37.84704S724.64384 356.59776 714.19904 346.15296z" horiz-adv-x="1024" />
<glyph glyph-name="toubu" unicode="&#58967;" d="M166.5-103.13c-35.12 0-63.69 28.57-63.69 63.7V426.54c0 14.57 11.85 26.43 26.42 26.43 14.57 0 26.42-11.86 26.42-26.43v-476.82h698.58V426.54c0 14.57 11.85 26.43 26.42 26.43 14.57 0 26.43-11.86 26.43-26.43v-465.97c0-35.12-28.58-63.7-63.7-63.7H166.5zM235.32 365.9c-35.97 0-68.26 7.5-95.97 22.27-0.35 0.19-0.75 0.41-1.14 0.64l-0.18 0.11-0.18 0.1c-65.64 35.67-106.46 104.25-106.55 179 0 12.83 7.61 32.69 64.64 157.27l1.32 2.88c13.69 29.93 26.62 58.2 35.02 77.68 10.03 23.33 32.97 38.4 58.44 38.4h630.55c25.63 0 48.65-15.22 58.63-38.78 8.54-20.19 21.67-49.38 35.56-80.28 55.77-124.05 63.19-143.81 63.13-156.57 0.02-74.62-40.65-143.16-106.13-178.93-27.97-15.32-60.72-23.18-97.35-23.36-47.05 0-92.86 16.21-128.94 45.65l-6.86 5.6-6.86-5.6c-35.62-29.11-80.68-45.36-126.87-45.74-46.79 0.31-92.28 16.51-128.1 45.63l-6.86 5.58-6.85-5.6c-36.02-29.5-81.64-45.81-128.45-45.95z m-70.08 68.39c19.77-10.31 43.32-15.53 70.01-15.53 44.57 0.13 86.52 19.72 115.11 53.77a26.324 26.324 0 0 0 20.2 9.43c7.84 0 15.2-3.43 20.23-9.4 28.41-33.72 70.2-53.21 114.67-53.49h0.15c43.8 0.36 85.14 19.89 113.43 53.6 4.69 5.59 12.06 8.8 20.24 8.8 8.17 0 15.56-3.2 20.26-8.79 28.52-34 70.6-53.51 115.43-53.51 27.7 0.14 51.94 5.81 72.11 16.86 47.23 25.79 77.35 75.25 78.61 129.05l0.04 1.75-0.51 1.67c-5.29 17.36-30.44 73.76-57.97 135-13.36 29.72-27.18 60.46-36 81.27l-2.8 6.62H183.59l-2.82-6.56c-8.81-20.46-23.02-51.52-36.77-81.55-22.53-49.23-53.36-116.58-59.29-135.53l-0.54-1.72 0.05-1.8c1.4-54.22 32.02-103.77 79.9-129.32l1.12-0.62zM469.19 27.33v175.5c0 14.57 11.86 26.42 26.43 26.42h18.63c14.57 0 26.43-11.85 26.43-26.42v-175.51h-71.49z" horiz-adv-x="1024" />
<glyph glyph-name="miaosha1" unicode="&#58963;" d="M957.74 389.9c0 62.43-13.09 121.74-36.42 175.58 36.89 26.79 60.98 70.15 60.98 119.24 0 81.42-65.99 147.41-147.41 147.41-44.86 0-84.97-20.11-112.01-51.73-61.86 32.93-132.4 51.73-207.38 51.73-74.98 0-145.52-18.8-207.39-51.73-27.03 31.62-67.15 51.73-112.01 51.73-81.42 0-147.41-65.99-147.41-147.41 0-49.09 24.09-92.45 60.98-119.24-23.33-53.86-36.42-113.17-36.42-175.58 0-138.31 63.56-261.69 162.98-342.78l-85.06-85.06c-9.59-9.59-9.59-25.15 0-34.74 9.59-9.6 25.15-9.6 34.75 0l90.76 90.75c68.92-44.36 150.76-70.39 238.82-70.39s169.89 26.04 238.82 70.39l90.76-90.75c9.59-9.6 25.15-9.6 34.74 0 9.6 9.59 9.6 25.15 0 34.74l-85.06 85.06c99.42 81.08 162.98 204.47 162.98 342.78zM765.71 754.4c17.78 17.65 42.22 28.59 69.19 28.59 54.19 0 98.28-44.08 98.28-98.28 0-29.84-13.65-56.28-34.71-74.32-33.08 57.33-78.42 106.64-132.76 144.01z m155.56-188.82c-3.8 8.75-8.04 17.25-12.37 25.7 4.39-8.41 8.57-16.94 12.37-25.7zM196.11 782.99c26.97 0 51.41-10.94 69.19-28.59-54.34-37.37-99.68-86.67-132.76-143.99-21.06 18.04-34.71 44.48-34.71 74.32 0 54.18 44.09 98.26 98.28 98.26zM122.1 591.28c-4.34-8.45-8.58-16.95-12.37-25.7 3.8 8.76 7.98 17.29 12.37 25.7z m0.3-201.38c0 216.75 176.34 393.09 393.1 393.09 216.75 0 393.09-176.34 393.09-393.09S732.26-3.21 515.5-3.21c-216.75 0-393.1 176.35-393.1 393.11z m0 0M495.52 427.4h-82.35l78.91 157.84h129.26L538.43 419.4H645.8L390 163.61z" horiz-adv-x="1024" />
<glyph glyph-name="pintuan1" unicode="&#58964;" d="M777.5-61.1c-12.64 0-23.3 9.43-24.8 21.98v0.28l-0.19 0.19c-0.57 0.57-0.94 1.42-1.04 2.36-11.13 177.13-158.64 315.68-335.87 315.68-177.23 0.1-324.74-138.65-335.78-315.68-0.09-0.94-0.47-1.79-1.04-2.36l-0.19-0.19v-0.28a24.91 24.91 0 0 0-24.8-21.98c-13.68 0-24.9 11.22-24.9 24.99 0 3.11 0.57 6.13 1.7 8.96l0.09 0.09v0.1c6.04 78.1 35.37 151.76 84.61 212.79C161.88 243.37 223.19 286 292.8 309.29l1.7 0.57-1.51 0.85c-38.95 21.03-71.96 51.69-95.73 88.85-26.6 41.5-40.65 89.51-40.65 139.03 0 69.14 26.97 134.31 75.93 183.17 49.05 49.05 114.03 75.93 183.17 75.93 69.14 0 134.31-26.98 183.26-75.93 48.95-48.95 75.93-114.03 75.93-183.17 0-49.43-14.06-97.52-40.65-139.03-23.87-37.25-56.97-67.91-95.74-88.85l-1.51-0.85 1.69-0.57C608.2 286 669.6 243.46 716.2 185.83c49.42-61.03 78.66-134.78 84.6-212.97v-0.19c1.13-2.92 1.7-5.94 1.7-8.77 0-13.77-11.23-25-25-25zM415.69 747.69c-115.35 0-209.1-93.85-209.1-209.11 0-115.35 93.85-209.1 209.1-209.1 115.26 0 209.01 93.84 209.01 209.1s-93.75 209.11-209.01 209.11z m0 0M969.07-61.1c-12.64 0-23.3 9.43-24.81 21.98v0.28l-0.19 0.19c-0.56 0.57-0.94 1.42-1.04 2.36-9.15 148.65-117.05 274.94-262.3 307.1-0.47 0.1-0.94 0.38-1.51 0.76-15.94 12.64-33.39 24.52-53.58 36.22-1.32 0.76-2.08 2.36-1.79 3.87 0.09 0.57-0.76 7.73-0.48 8.4v0.09c0 0.29 0.1 0.47 0.1 0.66 0.09 0.28-0.19 0.75-0.19 0.94-0.38 1.99-0.38 2.36-0.75 3.59-0.28 1.13-0.38 2.26 0.19 3.3 0.66 1.04 1.7 1.7 2.83 1.8 108.75 9.62 190.62 99.04 190.62 208.06 0 107.91-84.23 199.39-191.66 208.17-0.85 0.09-1.6 0.47-2.26 1.13-15 14.9-32.35 28.48-51.59 40.46-1.32 0.85-1.98 2.45-1.6 3.96 0.38 1.6 1.6 2.64 3.11 2.93 13.2 1.79 24.24 2.64 34.99 2.64 69.23 0 134.4-26.97 183.17-75.92 48.95-49.05 75.83-114.04 75.83-183.17 0-49.42-14.06-97.52-40.65-139.02-23.77-37.26-56.87-67.91-95.64-88.85l-1.51-0.85 1.7-0.56c69.42-23.3 130.82-65.93 177.41-123.47 49.33-60.83 78.57-134.5 84.7-212.88v-0.19c1.13-3.02 1.6-6.04 1.6-8.86 0-6.51-2.64-13.01-7.35-17.64-4.34-4.83-10.66-7.48-17.35-7.48z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="xinpin" unicode="&#58965;" d="M607.17 238.57l-37 164.08h32.94l19.65-112.04 0.02-0.08c0.49-2.25 1.01-7.03 1.55-14.21l7.98 0.3c-0.17-1.7-1.74-3.45-3.95-3.45-2.07 0-3.59 1.56-3.87 3.06 0.11-0.61 0.48-4.14 0.62-5.47l0.37-3.59h7.86l0.48 3.45c1.02 7.39 2.1 14.12 3.21 20.01l26.74 112.11h36.54l28.28-113.34c0.06-0.63 0.24-1.73 0.84-3.53 1.03-5.97 1.52-10.75 1.52-14.6v-4h8.42l0.32 3.65c0.58 6.59 1.35 12.86 2.36 19.17l18.89 112.64h32.04l-37-164.08h-39l-26.65 106.78-0.02 0.07c-1.54 5.33-2.59 11.6-3.12 18.64l-7.98-0.04c-0.51-7.87-1.54-14.06-3.05-18.41l-0.05-0.14-28.41-107.01h-40.53z m-184.51 0.11V402.76h129.49v-24.01h-97.06v-45.34h90.65v-23.91h-90.65v-48.48h99.45v-22.34H422.66z m-70.52 0l-69.22 105.58c-5.12 8.29-8.05 13.23-9.49 16.01l-7.54-2.07c0.5-9.02 0.75-18.91 0.75-29.38v-4h0.11v-86.04H236.7V402.86h37.51l66.8-104.1 0.05-0.07c4.73-6.72 7.72-12.01 9.16-16.16l7.78 1.31v0.92l-0.02 0.19c-0.5 5.2-0.74 13.73-0.74 26.09v91.71h30.04v-164.08h-35.14zM183.9-96.38c-48.5 0-87.95 38-87.95 84.71V748.4c0 46.65 39.5 84.6 88.06 84.6h648.87c48.52 0 88.07-37.96 88.17-84.61v-759.85c0-46.71-39.45-84.71-87.95-84.71-10.24 0-20.32 1.72-29.98 5.11l-260.98 90.49c-10.59 3.62-21.52 5.45-32.5 5.45-11.02 0-21.91-1.83-32.39-5.45l-263.46-90.8c-9.74-3.32-19.81-5.01-29.89-5.01z m-38.24 84.81c0-23.01 19.91-37.26 38.35-37.26 4.46 0 8.85 0.74 13.05 2.21l263.45 90.79c15.71 5.48 32.23 8.25 49.13 8.25 16.93 0 33.53-2.78 49.34-8.25l260.96-90.48c4.41-1.53 8.84-2.31 13.16-2.31 17.35 0 35.99 12.61 38.14 33.26h0.31V575.09H145.66v-586.66z m38.35 797.24c-21.27 0-38.57-16.72-38.57-37.27v-126.08h726V748.4c0 20.55-17.3 37.27-38.57 37.27H184.01z" horiz-adv-x="1024" />
<glyph glyph-name="zhekou1" unicode="&#58966;" d="M956.9-36.96H481.74c-9.34 0-16.91 7.58-16.91 16.91 0 9.34 7.58 16.91 16.91 16.91h441.34V556.32L678.06 801.35a16.894 16.894 0 0 0 0 23.94 16.906 16.906 0 0 0 23.95 0l254.9-254.9v-607.35z m0 0M658.17 845.45v-33.82c6.36 0 12.04-4.06 14.07-10.15L775.88 490.7c1.35-4.19 0.81-8.66-1.49-12.45L478.9-2.05c-2.71-4.47-7.44-7.03-12.72-7.03-2.84 0-5.41 0.81-7.84 2.3L82.08 232.69c-6.76 4.33-8.93 13.39-4.6 20.29l297.79 483.96c2.03 3.25 5.28 5.68 9.07 6.63L654.8 811.22c1.21 0.27 2.43 0.41 3.65 0.41l-0.28 33.82m0 0c-3.92 0-7.85-0.54-11.77-1.49l-270.46-67.65c-12.31-3.11-23-10.82-29.63-21.65L48.52 270.71c-13.94-22.59-7.17-52.22 15.29-66.56l376.26-239.48a48.685 48.685 0 0 1 26.11-7.58c16.37 0 32.2 8.26 41.41 23.14l295.48 480.31c7.58 12.31 9.2 27.19 4.74 40.86L704.17 812.17c-6.63 20.29-25.57 33.28-46 33.28z m0 0M554.53 654.41c21.51 0 39.1-17.59 39.1-39.1s-17.59-39.1-39.1-39.1-39.1 17.59-39.1 39.1 17.59 39.1 39.1 39.1m0 33.82c-40.32 0-72.92-32.6-72.92-72.92s32.6-72.93 72.92-72.93 72.93 32.61 72.93 72.93c0 40.32-32.61 72.92-72.93 72.92z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="pintuanchenggong" unicode="&#58961;" d="M722.05 641.49c-1.64-101.05-82-181.4-183.05-183.04-101.06-1.64-181.45 84.45-183.05 183.04C354.32 742.55 440.41 822.94 539 824.53c101.06 1.64 181.46-84.45 183.05-183.04 0.51-31.54 49.46-31.58 48.95 0-1.81 111.73-81.05 208.5-191.82 228.41C467.33 889.99 360.8 823.76 320.61 719.73c-40.63-105.17 9.92-225.65 105.01-280.69 97.13-56.23 224.81-28.73 294.32 57.49 33.27 41.27 50.21 92.18 51.06 144.96 0.51 31.59-48.44 31.53-48.95 0z m0 0M734.04 393.72c22.82-0.34 45.76-1.66 68.21-5.43-33.05 44.79-74.14 83.24-123.59 110.46-27.68 15.23-52.37-27.05-24.71-42.27 30.45-16.76 56.97-38.16 80.09-62.76zM523.41 77.99H221.98c6.91 147.03 67.82 304.88 202.09 378.51 27.69 15.18 2.99 57.45-24.71 42.27-156.82-85.98-225.92-274.73-227.03-445.25-0.09-13.35 11.2-24.48 24.47-24.48h345.85c-8.86 14.54-14.44 31.59-19.24 48.95zM70.99 184.27c1.17 111.56 55.01 221.33 158.34 271 24.83 11.93 6.82 55.3-18.86 44.74l-0.03-0.02 23.81-6.29c-86.43 70.23-68.11 208.97 40.17 245.95 29.7 10.14 16.95 57.44-13.01 47.21-64.32-21.97-112.38-72.88-128.05-139.42-16.39-69.58 11.42-143.77 66.28-188.35 6.3-5.12 15.41-9.75 23.81-6.3l0.03 0.01-18.86 44.74C86.21 440.62 23.37 311.8 22.04 184.27c-0.33-31.58 48.62-31.55 48.95 0z m0 0M529.41 155.42c1.61 113.76 90.89 206.77 204.89 211.63 113.31 4.83 210.24-86.28 218.19-197.99 8.03-112.78-79.24-213.36-190.97-224.5-112.14-11.19-216.24 72.18-230.58 183.79-1.15 8.97-1.4 18.03-1.53 27.07-0.45 31.54-49.4 31.58-48.95 0 1.59-111.93 71.12-208.07 175.83-246.51 104.09-38.21 225.68 1.55 292.01 88.56 67.8 88.94 70.4 213.36 7.6 305.66-62.95 92.5-180.32 132.18-287.19 102.78-111.51-30.67-186.64-136.8-188.25-250.49-0.45-31.59 48.5-31.54 48.95 0z m0 0M642.84 165.75c-6.01 6.01-15.76 6.01-21.77 0s-6.01-15.76 0-21.78l72.53-72.53c6.01-6.01 15.76-6.01 21.77 0L860.53 216.6c6.01 6.01 6.01 15.76 0 21.77s-15.76 6.01-21.77 0L704.48 104.1l-61.64 61.65zM704.48 61.94a20.36 20.36 0 0 0-14.42 5.96l-72.53 72.53c-7.95 7.96-7.95 20.9 0 28.85 3.85 3.85 8.97 5.97 14.42 5.97 5.45 0 10.57-2.12 14.42-5.98l58.11-58.11L835.22 241.9c3.85 3.85 8.97 5.97 14.42 5.97 5.45 0 10.57-2.12 14.42-5.97 3.85-3.85 5.97-8.97 5.97-14.42s-2.12-10.57-5.97-14.42L718.91 67.91c-3.98-3.98-9.2-5.97-14.43-5.97z m-72.53 103.32c-2.78 0-5.39-1.08-7.35-3.04-4.06-4.05-4.06-10.65 0-14.71l72.53-72.53c4.05-4.05 10.65-4.05 14.7 0L857 220.14c1.96 1.96 3.04 4.58 3.04 7.35s-1.08 5.39-3.04 7.35c-4.05 4.05-10.65 4.05-14.7 0L704.48 97.03l-65.18 65.18a10.292 10.292 0 0 1-7.35 3.05z" horiz-adv-x="1024" />
<glyph glyph-name="pintuanshibai" unicode="&#58962;" d="M726.43 647.61c-1.67-102.87-83.47-184.67-186.34-186.34-102.88-1.66-184.72 85.97-186.35 186.34-1.66 102.88 85.98 184.72 186.35 186.34 102.88 1.67 184.72-85.98 186.34-186.34 0.52-32.11 50.35-32.15 49.83 0-1.84 113.74-82.52 212.26-195.28 232.52-113.86 20.45-222.3-46.97-263.22-152.87-41.36-107.06 10.1-229.71 106.91-285.74 98.88-57.24 228.86-29.24 299.62 58.52 33.87 42.01 51.11 93.84 51.98 147.57 0.51 32.16-49.32 32.1-49.84 0z m0 0M738.63 395.38c23.23-0.35 46.58-1.69 69.43-5.53-33.64 45.59-75.48 84.74-125.82 112.45-28.17 15.5-53.31-27.53-25.15-43.03 31.02-17.07 58.01-38.84 81.54-63.89zM524.21 73.96H217.36c7.04 149.68 69.04 310.37 205.73 385.32 28.18 15.46 3.04 58.49-25.15 43.03-159.65-87.53-229.99-279.68-231.12-453.26-0.09-13.59 11.4-24.92 24.91-24.92h352.08c-9.02 14.8-14.71 32.16-19.6 49.83zM63.65 182.16c1.19 113.57 56 225.32 161.19 275.88 25.28 12.15 6.94 56.3-19.2 45.54l-0.03-0.02 24.24-6.41c-87.98 71.49-69.34 212.74 40.89 250.37C300.98 757.85 288 806 257.5 795.58c-65.48-22.36-114.4-74.2-130.35-141.93-16.68-70.83 11.63-146.36 67.47-191.74 6.41-5.21 15.69-9.93 24.24-6.41l0.03 0.01-19.2 45.54C79.14 443.12 15.17 311.99 13.81 182.16c-0.33-32.15 49.5-32.12 49.84 0z m0 0M530.32 152.78c1.64 115.81 92.53 210.49 208.58 215.44 115.35 4.92 214.02-87.83 222.12-201.56 8.18-114.81-80.67-217.2-194.4-228.54-114.16-11.39-220.13 73.48-234.73 187.1-1.18 9.14-1.44 18.37-1.57 27.56-0.46 32.11-50.29 32.15-49.83 0 1.62-113.94 72.4-211.81 178.99-250.95 105.96-38.9 229.74 1.58 297.27 90.15 69.02 90.54 71.67 217.2 7.73 311.16-64.08 94.17-183.57 134.56-292.37 104.63-113.5-31.22-189.98-139.26-191.62-254.99-0.46-32.15 49.38-32.1 49.83 0z m0 0M634.51 228.04l186.77-186.77c22.75-22.75 57.98 12.5 35.24 35.24L669.75 263.28c-22.75 22.74-57.99-12.5-35.24-35.24z m0 0M821.28 263.28L634.51 76.5c-22.75-22.74 12.49-57.98 35.24-35.24l186.78 186.77c22.73 22.75-12.51 57.99-35.25 35.25z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="shoucang1" unicode="&#58960;" d="M768.57-60.03c-10.26 0-22.23 3.28-32.48 8.2L513.86 54.79 289.92-51.83c-22.22-11.48-51.28-9.84-71.79 4.92-20.51 14.77-32.48 41.01-27.35 65.61l46.15 229.64L60.85 405.81c-18.81 18.04-25.64 45.93-18.81 68.89 8.55 24.6 29.06 42.65 56.42 45.93l244.45 42.64 109.4 213.24c11.96 22.96 35.9 37.72 61.54 37.72s51.29-14.76 61.54-37.72L684.8 563.27l244.45-41c25.64-3.28 47.86-21.33 54.7-45.93 8.54-24.6 1.71-50.85-17.1-68.89L790.8 248.35l44.45-229.64c5.12-26.25-6.84-50.85-27.35-65.61-10.27-8.2-23.94-13.13-39.33-13.13z m0 0M768.57-87.3c-13.93 0-29.65 3.87-44.28 10.89L513.81 24.56l-211.8-100.84c-31.44-16.04-71.49-13.15-99.82 7.24-29.92 21.54-45.24 58.99-38.14 93.23l43.06 214.23L42.32 385.8l-0.34 0.33C16.5 410.56 6.02 449.28 15.9 482.48l0.38 1.17c12.12 34.88 42.02 59.33 78.15 63.96l230.42 40.19 103.28 201.31c16.58 31.83 50.23 52.4 85.73 52.4 37.03 0 71.52-21.32 86.11-53.14L702.82 587.9l230.47-38.66c36.2-4.86 66.87-30.77 76.71-64.77 11.56-34.26 2.3-71.25-24.26-96.72l-0.59-0.55L820.5 238.42l41.52-214.53c6.86-35.16-7.55-70.58-37.66-92.54-15.34-12.03-35.12-18.65-55.79-18.65zM513.91 85.02l233.98-112.26c7.09-3.4 15.02-5.52 20.69-5.52 8.6 0 16.52 2.54 22.31 7.17l1.08 0.82c13.17 9.48 19.34 23.78 16.52 38.25L761.1 258.27l187.14 169.11c11.17 10.88 14.89 25.81 9.96 40.01l-0.51 1.64c-3.81 13.71-16.63 24.24-31.89 26.19l-1.05 0.16-257.96 43.27L550.5 765.39c-5.58 12.5-20.99 21.57-36.64 21.57-15.37 0-30.01-9.02-37.32-22.98L360.98 538.74l-259.27-45.19c-15.87-1.9-28.12-11.8-33.69-27.2-3.81-13.67 0.84-30.21 11.42-40.57l187.3-167.51-49.27-245.14c-2.77-13.29 4.05-28.88 16.58-37.9 11.82-8.51 30.05-9.7 43.34-2.83l0.8 0.4 235.72 112.22z" horiz-adv-x="1024" />
<glyph glyph-name="miaosha" unicode="&#58957;" d="M779.82 91.28c143.46 149.7 138.4 387.36-11.3 530.82S381.16 760.5 237.7 610.8c-139.16-145.21-139.16-374.3 0-519.51l-97.54-130.03c-11.31-15.08-8.25-36.47 6.83-47.78 15.08-11.31 36.47-8.25 47.78 6.83l94.54 126.07c130.79-95.29 308.12-95.29 438.91 0l94.54-126.07c11.31-15.08 32.7-18.14 47.78-6.83 15.08 11.31 18.14 32.7 6.83 47.78l-97.55 130.02zM542.89 350.33c0-7.39-2.4-14.57-6.83-20.48L433.67 193.33c-11.31-15.08-32.7-18.14-47.78-6.83-15.08 11.31-18.14 32.7-6.83 47.78l95.56 127.41V555.11c0 18.85 15.28 34.13 34.13 34.13s34.13-15.28 34.13-34.13l0.01-204.78zM322.24 812.28c-67.48 65.8-175.52 64.44-241.32-3.04-64.62-66.27-64.63-171.98-0.02-238.26 13.33-13.32 34.93-13.32 48.26 0l193.07 193.04c13.33 13.32 13.33 34.93 0.01 48.26zM936.57 812.28c-66.64 66.62-174.66 66.62-241.3 0-13.32-13.33-13.32-34.93 0-48.26l193.04-193.04c13.33-13.32 34.93-13.32 48.26 0 66.62 66.64 66.62 174.66 0 241.3z" horiz-adv-x="1024" />
<glyph glyph-name="zhekou" unicode="&#58958;" d="M614.96 773.48l65.02-13.52c39.21-8.14 72.76-33.3 91.56-68.65l223.31-419.98c23.26-43.79 6.63-98.14-37.14-121.42l-317.2-168.66a89.369 89.369 0 0 0-51.86-10.02 89.77 89.77 0 0 1 26.44 35.92l2.6 7.41 139.07 454.88a134.738 134.738 0 0 1-11.4 105.39l-4.8 7.86-119.99 182.9a140.75 140.75 0 0 1-5.61 7.89z m-381.6-59.41l161.2 68.08c59.91 25.23 129.29 4.07 164.94-50.29l96.4-147.01a134.715 134.715 0 0 0 16.21-113.25L533.05 16.72c-14.5-47.43-64.7-74.12-112.12-59.64L77.42 62.12a89.756 89.756 0 0 0-53.06 43.7 89.795 89.795 0 0 0-6.61 68.42l139.2 455.1a134.658 134.658 0 0 0 76.41 84.73z m128.65-105.03a67.351 67.351 0 0 1 79.57-85.32c23.45 5.42 42.23 22.93 49.26 45.94 10.87 35.58-9.15 73.23-44.72 84.11-35.58 10.87-73.23-9.15-84.11-44.73z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="pintuan" unicode="&#58959;" d="M227.15 291.37c24.2 25.65 51.3 48.07 80.41 66.58 5.68 3.57 11.37 7.02 17.17 10.26 6.69 3.79 13.5 7.47 20.52 10.81 6.35 3.13 12.82 6.02 19.29 8.81-14.16 8.92-27.55 19.18-39.82 30.67-16.95 15.84-31.89 33.79-44.38 53.64-26.43 42.04-41.93 92-41.93 145.64 0 39.37 8.47 76.61 23.2 110.4-30.44-8.47-57.77-24.75-79.62-46.83-34.13-34.24-55.31-82.08-55.31-134.94 0-26.43 5.24-51.52 14.83-74.27 9.59-22.97 23.42-43.49 40.59-60.66 16.39-16.39 35.68-29.78 57.09-39.03-19.85-5.02-38.92-11.93-57.09-20.86-40.49-19.85-75.94-48.62-103.82-84.53-12.94-16.73-24.2-34.91-33.57-54.31-20.52-42.16-32.34-90.11-32.34-141.52 0-7.58 10.93-14.16 32.34-19.96 15.16-4.13 35.57-7.69 61.67-10.82 12.71 85.65 48.4 163.93 99.47 226.61 6.7 8.36 13.94 16.39 21.3 24.31z m731-44.94c-4.68 7.02-9.59 13.94-14.72 20.52-32.12 41.04-74.27 73.16-122.34 92.78-17.06 6.92-34.79 12.38-53.3 15.95 19.96 9.7 38.02 22.86 53.3 39.03 15.61 16.5 28.21 35.8 37.14 57.21 9.48 22.75 14.83 47.84 14.83 74.27 0 51.19-19.85 97.46-51.97 131.48-21.63 22.86-48.73 40.03-79.18 49.29 14.5-33.46 22.75-70.37 22.75-109.29 0-53.64-15.5-103.6-41.93-145.64-7.48-11.82-15.73-22.97-24.87-33.46-17.18-19.85-37.14-37.03-59.33-50.97 8.03-3.34 15.95-7.13 23.75-11.04 11.27-5.69 22.19-11.82 32.9-18.62 0.89 0 1.79 0.11 2.79 0.11-0.89 0-1.79-0.11-2.79-0.11 0.89-0.56 1.79-1.23 2.79-1.79 28.21-18.18 54.31-40.03 77.84-64.9 7.36-7.81 14.61-15.83 21.41-24.31 51.3-63.01 87.1-141.85 99.7-228.06 24.42 1.23 44.83 3.13 61.45 5.8 34.57 5.58 52.08 14.39 52.08 26.43-0.11 65.13-19.41 125.47-52.3 175.32z m0 0M416.29 437.01c10.37-5.24 21.3-9.7 32.67-12.94 16.73-4.91 34.35-7.69 52.64-7.69 17.28 0 33.9 2.56 49.96 7.02 11.04 3.01 21.74 7.03 32.01 12.05 19.18 9.26 36.8 21.75 51.96 36.69 37.25 36.69 60.56 88.43 60.56 145.64 0 42.6-12.94 82.07-34.79 114.64-19.63 29.21-46.39 52.63-77.72 67.8-24.98 12.05-52.64 18.96-81.97 18.96-30.67 0-59.55-7.58-85.31-20.63-30.11-15.28-55.87-38.25-74.72-66.57-21.63-32.45-34.46-71.82-34.46-114.08 0-57.32 23.31-108.95 60.55-145.64 14.27-14.29 30.66-26.11 48.62-35.25zM700.1 267.06l-2.23 1.89c-9.26 8.03-18.85 15.5-28.66 22.41-26.65 18.62-55.42 33.01-85.64 42.49-6.69 2.12-13.38 4.24-20.19 5.8-20.18 4.68-40.82 7.36-61.78 7.36-16.17 0-32.12-1.89-47.73-4.57-12.71-2.23-25.2-5.24-37.47-9.03-30.22-9.48-58.66-23.75-84.98-42.04-2.12-1.56-4.35-2.9-6.47-4.46-8.47-6.13-16.61-12.82-24.42-19.74-64.46-56.88-110.51-139.51-125.23-232.96-3.12-19.74-5.13-39.7-5.35-60.22 6.36-6.02 37.69-26.32 179.32-38.81 40.93-3.57 91.11-6.58 152.56-8.36 62.78 1.67 113.64 4.68 155.12 8.36 14.95 1.34 28.66 2.68 41.26 4.24 9.26 1.12 17.84 2.23 25.87 3.35 83.3 11.82 104.38 26.2 109.4 31.11-0.22 21.74-2.45 43.04-6.13 63.9-16.18 90.99-63.02 172.63-127.25 229.28z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="111" unicode="&#58956;" d="M590.59 351.9L146.33 664.2v-660.46zM899.13 351.9L454.87 664.2v-660.46z" horiz-adv-x="1024" />
<glyph glyph-name="shoucang" unicode="&#58882;" d="M253.488042-128c-16.9 0-33.2875 5.1125-47.6125 15.3625-26.625 18.425-39.425 49.6625-34.3125 81.925l40.9625 251.9c1.5375 10.2375-1.5375 20.475-8.7 27.65L28.213042 429.5625c-22.0125 22.525-29.1875 55.3-19.45 84.9875 9.725 29.7 35.325 51.2 66.05 55.8125l237.575 36.35c10.75 1.5375 19.4625 8.1875 24.0625 17.925L441.388042 847.875c13.825 29.7 42.5 48.125 75.2625 48.125s61.4375-18.4375 75.2625-48.125l104.45-223.2375c4.6125-9.725 13.825-16.375 24.0625-17.925L958.000542 570.375a82.355 82.355 0 0 0 66.05-55.8125c10.2375-29.7 2.5625-62.4625-19.45-84.9875l-175.625-180.7375c-7.1625-7.175-10.2375-17.925-8.7-27.65l40.9625-251.9c5.125-31.75-8.1875-63.4875-34.3-81.925-26.1125-18.4375-59.9-20.4875-88.0625-4.6125l-206.85 114.6875c-9.725 5.1125-20.9875 5.1125-30.7125 0l-207.3625-115.2c-12.8125-6.65-26.6375-10.2375-40.4625-10.2375zM516.650542 844.8c-12.8 0-23.55-7.1625-29.1875-18.4375L383.525542 603.125c-11.775-25.0875-35.325-43.0125-62.975-47.1l-237.575-36.35c-12.2875-2.05-21.5-9.7375-25.6-21.5-4.1-11.775-1.025-24.0625 7.675-32.775L240.688042 284.675c18.4375-18.95 26.625-45.5625 22.525-71.675L222.250542-38.9125c-2.05-12.8 3.075-24.575 13.3125-31.7375 10.2375-7.175 23.0375-7.6875 33.7875-1.5375l207.3625 115.2c25.0875 13.825 55.3 13.825 80.3875 0l207.3625-115.2c10.75-6.1375 23.55-5.625 33.8 1.5375 10.2375 7.1625 15.3625 18.95 13.3125 31.7375L770.625542 212.9875c-4.1 26.1125 4.1 52.7375 22.525 71.675l175.625 180.7375c8.7 8.7 11.2625 20.9875 7.675 32.775-4.0875 11.775-13.3125 19.9625-25.6 21.5l-237.5625 36.35c-27.65 4.0875-51.2 22.0125-62.975 47.1L545.838042 826.3625c-5.625 11.2625-16.375 18.4375-29.1875 18.4375z m0 0" horiz-adv-x="1059" />
<glyph glyph-name="qm" unicode="&#58955;" d="M421.07365705 32.10775206999995l0-136.25916307 136.25916307 0 0 136.25916307L421.07365705 32.10775206999995zM773.36260519 503.38320161c19.94007792 35.89007822 29.91600849 75.1044847 29.91600848 117.64763813 0 73.55352429-28.36946676 136.26652756-85.08188814 188.10807897-56.73156905 51.84155141-132.72862926 77.76895517-228.00001802 77.76895514-89.96012261 0-162.29997988-24.15550879-217.01957178-72.44885163-54.73284798-48.3080718-87.63294555-117.87888293-98.70471139-208.71390628l122.96626877-14.62144731c10.63136967 67.79007881 33.00761904 117.64763813 67.12874811 149.54763871 34.12112908 31.91031086 76.6598638 47.86031115 127.62209577 47.86031113 52.73265403 0 97.26716402-17.61142797 133.60794871-52.83870259 36.3319473-35.23169333 54.51191345-76.11194617 54.51191345-122.64223143 0-25.70352342-6.21857062-49.41569026-18.62036234-71.11735287-12.4091562-21.72081026-39.32340084-50.8532376-80.75893583-87.41053811s-70.12020167-64.36706646-86.07903934-83.42046048c-21.71197287-26.14981118-37.44693022-52.07279621-47.18719727-77.76453646-13.29731301-34.12996645-19.93860505-74.67734461-19.93860504-121.63771576 0-7.98015527 0.21504293-19.94155082 0.6628036-35.9003885l114.98758636 0c0.88226524 47.86178405 4.20512058 82.43214667 9.97445765 103.6919402 5.74871652 21.26863091 14.61997441 40.10550908 26.58136998 56.50474294 11.97023293 16.38303197 37.44840311 41.87445824 76.44482084 76.43598348C714.42021793 423.83498702 753.41958146 467.47986732 773.36260519 503.38320161L773.36260519 503.38320161z" horiz-adv-x="1024" />
<glyph glyph-name="xiaoxizhongxin" unicode="&#58954;" d="M434.65 70.38a102.559 102.559 0 0 1 86.06-46.67c36.03 0 67.75 18.58 86.07 46.67h62.45C645.9 8.59 586.76-32.3 520.72-32.3S395.53 8.59 372.2 70.38h62.45z m86.07 737.44c29.44 0.01 56.73-15.4 71.95-40.6a84.034 84.034 0 0 0 2.4-82.58c102.89-31.68 177.69-127.55 177.69-240.87v-210.9l82.14-68.46c12.08-10.06 16.55-26.61 11.2-41.39-5.35-14.78-19.39-24.62-35.11-24.62H210.46a37.331 37.331 0 0 0-35.09 24.63 37.338 37.338 0 0 0 11.19 41.38l82.13 68.46v210.9c0 113.32 74.81 209.19 177.73 240.91a84.015 84.015 0 0 0 2.41 82.53 84.027 84.027 0 0 0 71.89 40.61z m0-168.03c-108.26 0-196.03-87.76-196.03-196.03v-237.15l-62.67-52.22h517.4l-62.67 52.22V443.77c-0.01 108.26-87.77 196.02-196.03 196.02z m0 112.02c-15.46 0-28-12.54-28-28.01 0-15.46 12.54-28 28-28 15.47 0 28.01 12.54 28.01 28-0.01 15.47-12.54 28.01-28.01 28.01z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="tongzhi" unicode="&#58951;" d="M602.85 718.04c5.37 0 10.51-2.16 14.29-5.98 3.8-3.85 5.92-9.03 5.92-14.47V43c0.01-5.41-2.12-10.62-5.92-14.47a20.09 20.09 0 0 0-14.29-5.98c-1.81-0.3-3.65-0.3-5.46 0L411.93 203.58l-5.03 5.1-6.28 4.5a100.266 100.266 0 0 1-51.36 13.91h-90.2c-5.4 0.04-10.56 2.21-14.34 6.05a20.32 20.32 0 0 0-5.86 14.42V493.01c0 11.29 9.03 20.46 20.21 20.46h90.2c18.06-0.08 35.8 4.72 51.36 13.88l6.28 3.71 5.05 5.09 185.23 181.86c1.88 0.32 3.81 0.32 5.69 0l-0.03 0.03z m0 61.37a78.328 78.328 0 0 1-40.44-11.45l-192.13-187.6a40.5 40.5 0 0 0-20.23-5.73h-91c-44.67 0-80.9-36.64-80.9-81.8v-245.28c0-21.69 8.54-42.51 23.71-57.85a80.404 80.404 0 0 1 57.18-23.96h90.2c7.13-0.09 14.11-2.05 20.23-5.73l192.92-187.39a78.545 78.545 0 0 1 40.44-11.45c44.67 0 80.89 36.64 80.89 81.83V697.58c-0.02 45.22-36.23 81.85-80.89 81.85v-0.02zM875.84 411.2h-101.1c-8.09-0.04-15.84-3.3-21.53-9.06a30.467 30.467 0 0 1-8.8-21.64 30.492 30.492 0 0 1 30.33-30.68h101.1c8.1 0.04 15.84 3.29 21.54 9.04 5.7 5.75 8.87 13.54 8.82 21.63 0.05 8.1-3.12 15.89-8.81 21.64a30.414 30.414 0 0 1-21.55 9.07z m-6.87 230.11c-5.23-0.05-10.4-1.46-14.95-4.1l-87.77-51.13c-11.95-6.96-17.75-21.16-14.15-34.63 3.62-13.45 15.75-22.75 29.51-22.64 5.26 0.04 10.4 1.46 14.97 4.09l87.77 51.13c11.95 6.97 17.75 21.16 14.13 34.63-3.59 13.45-15.72 22.76-29.51 22.65z m-87.36-409.13c-13.85 0.06-25.98-9.25-29.51-22.64-3.63-13.41 2.17-27.6 14.15-34.63l87.77-51.13c4.55-2.64 9.71-4.05 14.95-4.09 13.85-0.06 25.99 9.25 29.52 22.64 3.63 13.41-2.16 27.59-14.13 34.63l-87.77 50.11a30.395 30.395 0 0 1-14.97 4.09v1.02z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="duijiao1" unicode="&#58952;" d="M1024.14 895.23L0 896l1024-1024zM942.75 726.56l-249.4-266.23c-8.75-9.35-23.29-10.21-33.1-1.97L523.99 572.84a24.119 24.119 0 0 0-8.71 22.83 24.09 24.09 0 0 0 15.71 18.71 24.114 24.114 0 0 0 23.99-4.63l118.79-99.79 233.79 249.55a24.073 24.073 0 0 0 23.06 7 24.12 24.12 0 0 0 17.6-16.48c2.51-8.24 0.42-17.18-5.47-23.47z" horiz-adv-x="1024" />
<glyph glyph-name="duijiao2" unicode="&#58953;" d="M1024.14 895.23L0 896l1024-1024zM942.75 726.56l-249.4-266.23c-8.75-9.35-23.29-10.21-33.1-1.97L523.99 572.84a24.119 24.119 0 0 0-8.71 22.83 24.09 24.09 0 0 0 15.71 18.71 24.114 24.114 0 0 0 23.99-4.63l118.79-99.79 233.79 249.55a24.073 24.073 0 0 0 23.06 7 24.12 24.12 0 0 0 17.6-16.48c2.51-8.24 0.42-17.18-5.47-23.47z" horiz-adv-x="1024" />
<glyph glyph-name="mofang" unicode="&#58944;" d="M169.68 719.3h135.06v-135.06H169.68zM169.68 551.81h135.06v-135.06H169.68zM169.68 384.33h135.06v-135.06H169.68zM169.68 216.84h135.06v-135.06H169.68zM345.68 719.3h135.06v-135.06H345.68zM345.68 551.81h135.06v-135.06H345.68zM345.68 384.33h135.06v-135.06H345.68zM345.68 216.84h135.06v-135.06H345.68zM521.68 719.3h135.06v-135.06H521.68zM521.68 551.81h135.06v-135.06H521.68zM521.68 384.33h135.06v-135.06H521.68zM521.68 216.84h135.06v-135.06H521.68zM697.68 719.3h135.06v-135.06H697.68zM697.68 551.81h135.06v-135.06H697.68zM697.68 384.33h135.06v-135.06H697.68z" horiz-adv-x="1024" />
<glyph glyph-name="yihangliangge" unicode="&#58945;" d="M265.79 625.55h212.6v-473.98h-212.6zM566.46 625.55h212.6v-473.98h-212.6z" horiz-adv-x="1024" />
<glyph glyph-name="yihangsange" unicode="&#58946;" d="M179.65 625.55h163.7v-473.98h-163.7zM425.01 625.55h163.7v-473.98h-163.7zM670.37 625.55h163.7v-473.98h-163.7z" horiz-adv-x="1024" />
<glyph glyph-name="yihangsige" unicode="&#58947;" d="M174.65 625.55h122.14v-473.98H174.65zM369.86 625.55H492v-473.98H369.86zM565.07 625.55h122.14v-473.98H565.07zM760.28 625.55h122.14v-473.98H760.28z" horiz-adv-x="1024" />
<glyph glyph-name="yizuoliangyou" unicode="&#58948;" d="M169.55 720.4h275.64v-640.9H169.55zM556.37 720.4h275.64v-275.64H556.37zM556.37 355.15H673v-275.64H556.37zM715.62 355.15h116.4v-275.64h-116.4z" horiz-adv-x="1024" />
<glyph glyph-name="lianghangliangge" unicode="&#58949;" d="M169.55 720.4h275.64v-275.64H169.55zM556.37 720.4h275.64v-275.64H556.37zM169.55 355.15h275.64v-275.64H169.55zM556.37 355.15h275.64v-275.64H556.37z" horiz-adv-x="1024" />
<glyph glyph-name="yishangliangxia" unicode="&#58950;" d="M169.55 720.4h661.69v-275.64H169.55zM556.37 720.4h275.64v-275.64H556.37zM556.37 355.15h275.64v-275.64H556.37zM181.22 355.15h275.64v-275.64H181.22z" horiz-adv-x="1024" />
<glyph glyph-name="dianputoubu" unicode="&#58931;" d="M262.48 36.19c-25.9 0-46.98 21.08-46.98 46.98V426.84c0 10.75 8.74 19.49 19.49 19.49 10.75 0 19.49-8.74 19.49-19.49v-351.68h515.24V426.84c0 10.75 8.74 19.49 19.49 19.49 10.75 0 19.49-8.74 19.49-19.49v-343.68c0-25.9-21.08-46.98-46.98-46.98H262.48zM761.72 34.18H262.48c-27.01 0-48.98 21.97-48.98 48.98V426.84c0 11.85 9.64 21.49 21.49 21.49 11.85 0 21.49-9.64 21.49-21.49v-349.68h511.24V426.84c0 11.85 9.64 21.49 21.49 21.49 11.85 0 21.49-9.64 21.49-21.49v-343.68c0-27-21.97-48.98-48.98-48.98zM234.99 444.33c-9.64 0-17.49-7.85-17.49-17.49v-343.68c0-24.8 20.18-44.98 44.98-44.98h499.24c24.8 0 44.98 20.18 44.98 44.98V426.84c0 9.65-7.85 17.49-17.49 17.49-9.64 0-17.49-7.85-17.49-17.49v-353.68H252.48V426.84c0 9.65-7.85 17.49-17.49 17.49zM313.24 382.12c-26.53 0-50.35 5.53-70.78 16.42-0.26 0.14-0.55 0.3-0.84 0.47l-0.13 0.08-0.14 0.07c-48.41 26.31-78.52 76.89-78.59 132.02 0 9.47 5.61 24.11 47.68 115.99l0.97 2.13c10.1 22.07 19.64 42.93 25.83 57.29 7.4 17.21 24.32 28.32 43.11 28.32h465.07c18.91 0 35.88-11.23 43.24-28.6 6.3-14.89 15.98-36.42 26.23-59.21 41.13-91.5 46.61-106.07 46.56-115.48a150.258 150.258 0 0 0-78.28-131.97c-20.63-11.3-44.78-17.1-71.8-17.23-34.7 0-68.49 11.96-95.1 33.67l-5.06 4.13-5.06-4.13c-26.27-21.47-59.5-33.45-93.57-33.74-34.51 0.23-68.06 12.18-94.48 33.66l-5.06 4.12-5.05-4.13c-26.59-21.75-60.23-33.78-94.75-33.88z m-51.7 50.44c14.58-7.6 31.95-11.46 51.63-11.46 32.87 0.09 63.81 14.55 84.9 39.66a19.45 19.45 0 0 0 14.9 6.96c5.78 0 11.21-2.53 14.92-6.93 20.95-24.87 51.78-39.25 84.58-39.45h0.11c32.31 0.26 62.8 14.67 83.66 39.53 3.46 4.12 8.9 6.49 14.93 6.49 6.03 0 11.48-2.36 14.95-6.48 21.04-25.08 52.07-39.46 85.13-39.46 20.43 0.1 38.31 4.29 53.19 12.44 34.83 19.02 57.05 55.5 57.98 95.18l0.03 1.29-0.38 1.23c-3.9 12.8-22.45 54.41-42.76 99.57-9.86 21.92-20.05 44.59-26.55 59.94l-2.07 4.88H275.08L273 691.1c-6.5-15.09-16.98-38-27.12-60.15-16.62-36.31-39.35-85.99-43.73-99.96l-0.4-1.27 0.03-1.33c1.04-39.99 23.61-76.54 58.93-95.38l0.83-0.45zM313.24 380.12c-26.87 0-51 5.61-71.72 16.66-0.29 0.16-0.61 0.33-0.92 0.52l-0.2 0.11c-49.06 26.66-79.57 77.92-79.63 133.78 0 9.8 4.7 22.56 47.86 116.83l0.97 2.13c10.09 22.06 19.63 42.9 25.81 57.25 7.71 17.94 25.36 29.53 44.94 29.53h465.07c19.71 0 37.41-11.71 45.08-29.82 6.28-14.84 15.93-36.31 26.15-59.04l0.06-0.13c42.2-93.87 46.78-106.57 46.73-116.31 0.01-55.74-30.38-106.98-79.32-133.72-20.92-11.46-45.4-17.34-72.75-17.47-35.18 0-69.41 12.12-96.38 34.12l-3.8 3.1-3.79-3.1c-26.62-21.76-60.3-33.9-94.82-34.19-34.99 0.23-68.99 12.34-95.76 34.1l-3.8 3.09-3.79-3.1c-26.91-22.05-61.01-34.24-95.99-34.34z m-32.9 352.8c-17.99 0-34.19-10.64-41.27-27.11-6.2-14.39-15.74-35.25-25.85-57.33l-0.97-2.13c-41.58-90.83-47.5-106.18-47.5-115.16 0.06-54.39 29.77-104.31 77.54-130.26l0.34-0.19c0.26-0.16 0.53-0.3 0.77-0.43 20.13-10.73 43.62-16.18 69.82-16.18 34.07 0.1 67.26 11.97 93.48 33.42l6.31 5.17 6.33-5.15c26.07-21.19 59.18-32.98 93.23-33.21 33.59 0.28 66.37 12.1 92.3 33.29l6.32 5.17 6.33-5.16c26.26-21.42 59.58-33.22 93.84-33.22 26.67 0.13 50.51 5.84 70.84 16.98 47.65 26.04 77.25 75.93 77.24 130.22 0.04 8.93-5.72 24.21-46.38 114.66l-0.06 0.13c-10.23 22.75-19.89 44.24-26.19 59.12-7.05 16.63-23.3 27.38-41.4 27.38H280.34z m32.84-313.82c-20.01 0-37.69 3.93-52.56 11.68l-0.88 0.48c-35.92 19.17-58.9 56.37-59.96 97.08l-0.04 1.66 0.5 1.59c4.41 14.09 27.19 63.86 43.82 100.19 10.13 22.14 20.61 45.03 27.1 60.1l2.6 6.05h478.27l2.58-6.1c6.49-15.32 16.67-37.96 26.51-59.85 20.36-45.28 38.93-86.95 42.87-99.86l0.47-1.54-0.04-1.61c-0.94-40.4-23.56-77.53-59.02-96.89-15.17-8.31-33.39-12.58-54.14-12.68-33.67 0-65.26 14.64-86.68 40.18-3.09 3.66-7.98 5.77-13.41 5.77-5.44 0-10.32-2.1-13.39-5.77-21.24-25.31-52.29-39.98-85.18-40.25h-0.12c-33.41 0.21-64.79 14.84-86.12 40.16a17.476 17.476 0 0 1-13.39 6.22c-5.17 0-10.04-2.28-13.37-6.24-21.46-25.56-52.96-40.28-86.42-40.37z m-50.69 15.22c14.29-7.44 31.34-11.22 50.69-11.22 32.27 0.09 62.66 14.29 83.37 38.95a21.42 21.42 0 0 0 16.43 7.67c6.37 0 12.36-2.79 16.45-7.65 20.57-24.42 50.85-38.54 83.06-38.74h0.09c31.71 0.26 61.65 14.41 82.14 38.82 3.83 4.58 9.83 7.2 16.46 7.2 6.62 0 12.63-2.62 16.48-7.19 20.66-24.63 51.13-38.75 83.61-38.75 20.07 0.1 37.64 4.2 52.23 12.19 34.21 18.68 56.03 54.5 56.94 93.48l0.02 0.96-0.28 0.92c-3.87 12.68-22.39 54.23-42.67 99.34-9.87 21.96-20.06 44.62-26.57 59.98l-1.55 3.66h-473l-1.56-3.63c-6.51-15.12-17-38.03-27.14-60.19-16.59-36.24-39.3-85.87-43.64-99.72l-0.3-0.95 0.03-1c1.02-39.27 23.19-75.16 57.87-93.67l0.84-0.46zM485.73 132.4V261.85c0 10.75 8.74 19.49 19.49 19.49h13.74c10.75 0 19.49-8.74 19.49-19.49V132.4h-52.72z" horiz-adv-x="1024" />
<glyph glyph-name="h5" unicode="&#58930;" d="M605.46 564.44V723.16l176.4-158.72h-176.4zM779.3 70.36H204.5V725.72h362.56V554.2c0-15.36 12.8-30.72 30.72-30.72H779.3v-453.12z m40.97 517.12L636.19 761.56c-5.12 5.12-12.8 7.68-20.48 7.68H186.59c-15.36 0-28.16-12.8-28.16-28.16v-688.64c0-15.36 12.8-28.16 28.16-28.16h613.2c15.36 0 28.16 12.8 28.16 28.16V569.56c0 7.68-2.56 12.8-7.68 17.92z m0 0M476.3 236.76h-28.16v76.8H361.1v-76.8h-25.6V408.28h25.6v-71.68h87.04v71.68h28.16v-171.52z m156.16 12.8c-12.8-10.24-28.16-15.36-43.52-15.36-12.8 0-28.16 2.56-38.4 12.8-12.8 7.68-20.48 23.04-20.48 38.4h28.16c0-7.68 5.12-15.36 10.24-20.48 15.36-7.68 33.28-7.68 46.08 2.56 7.68 5.12 10.24 15.36 10.24 25.6 0 10.24-2.56 17.92-7.68 25.6-5.12 7.68-15.36 10.24-25.6 10.24-5.12 0-12.8 0-17.92-2.56-5.12-2.56-10.24-7.68-12.8-12.8h-25.6l10.24 94.72h99.84v-23.04h-81.92l-5.12-48.64c5.12 5.12 10.24 7.68 17.92 10.24 7.68 2.56 12.8 2.56 20.48 2.56 15.36 0 28.16-5.12 38.4-15.36 10.24-12.8 15.36-28.16 15.36-43.52 2.56-15.36-5.12-30.72-17.92-40.96z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="tuwen" unicode="&#58932;" d="M795.61 37.4H239.92c-47.14 0.15-85.31 38.33-85.47 85.46V678.55c0.15 47.14 38.33 85.31 85.47 85.46H795.6c47.13-0.15 85.31-38.33 85.46-85.46v-555.69c-0.14-47.13-38.32-85.31-85.45-85.46zM239.92 721.28c-23.5 0-42.73-19.24-42.73-42.77V122.9c0-23.53 19.24-42.77 42.77-42.77h555.61c23.53 0 42.77 19.23 42.77 42.77V678.51c0 23.53-19.24 42.77-42.77 42.77H239.92z m0 0M175.77 106.6a25.723 25.723 0 0 0-19.24 10.38c-4.29 10.38-2.14 22.84 8.55 29.07l342.2 186.84c8.58 4.15 19.27 4.15 25.71-4.15l115.5-112.11L847.4 351.57c10.69 6.23 23.53 4.15 29.93-4.15 6.44-10.38 4.29-22.84-4.25-29.07l-213.9-145.32c-8.55-6.23-19.27-4.15-27.82 2.08L513.71 289.29 186.46 108.67c-4.29 0-6.4-2.07-10.69-2.07z m470.57 290.65c0-22.94 19.14-41.52 42.77-41.52 23.63 0 42.8 18.58 42.8 41.52 0.07 22.94-19 41.59-42.63 41.69-23.6 0.1-42.84-18.41-42.94-41.35v-0.34zM282.69 625.61h342.27c12.8 0 21.38-8.31 21.38-20.76 0-12.46-8.55-20.76-21.38-20.76H282.72c-12.84 0-21.38 8.3-21.38 20.76s8.55 20.76 21.38 20.76h-0.03z m0-103.8H475.2c12.84 0 21.42-8.31 21.42-20.76 0-12.46-8.58-20.76-21.42-20.76H282.72c-12.84 0-21.38 8.3-21.38 20.76 0 12.45 8.55 20.76 21.38 20.76h-0.03z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="shangpinliebiao" unicode="&#58933;" d="M640.34 35.19c-47.94 0-86.94 39-86.94 86.94V271.71c0 47.94 39 86.94 86.94 86.94h149.58c47.94 0 86.94-39 86.94-86.94v-149.58c0-47.94-39-86.94-86.94-86.94H640.34z m0 278.05c-22.9 0-41.53-18.63-41.53-41.53v-149.58c0-22.9 18.63-41.53 41.53-41.53h149.58c22.9 0 41.53 18.63 41.53 41.53V271.71c0 22.9-18.63 41.53-41.53 41.53H640.34zM240.26 35.19c-47.94 0-86.94 39-86.94 86.94V271.71c0 47.94 39 86.94 86.94 86.94h149.58c47.94 0 86.94-39 86.94-86.94v-149.58c0-47.94-39-86.94-86.94-86.94H240.26z m0 278.05c-22.9 0-41.53-18.63-41.53-41.53v-149.58c0-22.9 18.63-41.53 41.53-41.53h149.58c22.9 0 41.52 18.63 41.52 41.53V271.71c0 22.9-18.63 41.53-41.52 41.53H240.26z m400.08 115.3c-47.94 0-86.94 39-86.94 86.94V665.05c0 47.94 39 86.94 86.94 86.94h149.58c47.94 0 86.94-39 86.94-86.94v-149.58c0-47.94-39-86.94-86.94-86.94H640.34z m0 278.04c-22.9 0-41.53-18.63-41.53-41.53v-149.58c0-22.9 18.63-41.52 41.53-41.52h149.58c22.9 0 41.53 18.63 41.53 41.52V665.05c0 22.9-18.63 41.53-41.53 41.53H640.34zM240.26 428.54c-47.94 0-86.94 39-86.94 86.94V665.05c0 47.94 39 86.94 86.94 86.94h149.58c47.94 0 86.94-39 86.94-86.94v-149.58c0-47.94-39-86.94-86.94-86.94H240.26z m0 278.04c-22.9 0-41.53-18.63-41.53-41.53v-149.58c0-22.9 18.63-41.52 41.53-41.52h149.58c22.9 0 41.52 18.63 41.52 41.52V665.05c0 22.9-18.63 41.53-41.52 41.53H240.26z" horiz-adv-x="1024" />
<glyph glyph-name="leibieliebiao" unicode="&#58934;" d="M197.82 37.69c-22.31 0.01-40.48 18.17-40.51 40.48V717.52c0.03 22.29 18.19 40.45 40.48 40.48h118.36c22.29-0.03 40.45-18.19 40.48-40.48v-639.34c-0.03-22.27-18.17-40.43-40.45-40.48H197.82z m-6.88 33.59H323.1V724.4H190.94v-653.12zM458.26 37.69c-22.29 0.03-40.45 18.19-40.47 40.48V196.53c0.02 22.29 18.18 40.45 40.48 40.48h378.87c22.27-0.03 40.43-18.17 40.48-40.45V78.2c-0.01-22.31-18.17-40.48-40.48-40.51h0.01-378.89z m-6.88 33.63h392.67V203.45H451.38v-132.13z m6.88 226.85c-22.29 0.02-40.45 18.18-40.47 40.48V457.01c0.02 22.29 18.18 40.44 40.48 40.47h378.87c22.27-0.03 40.43-18.17 40.48-40.45v-118.36c-0.01-22.31-18.17-40.48-40.48-40.51h0.01-378.89z m-6.88 33.62h392.67V463.93H451.38v-132.14z m6.88 226.85c-22.29 0.03-40.45 18.19-40.47 40.48V717.48c0.01 22.31 18.17 40.48 40.48 40.51h378.87c22.29-0.03 40.45-18.19 40.48-40.48v-118.36c-0.01-22.31-18.17-40.49-40.48-40.51h0.01-378.89z m-6.88 33.63h392.67V724.4H451.38v-132.13z" horiz-adv-x="1024" />
<glyph glyph-name="shipin" unicode="&#58935;" d="M851.07 768.24H185.43c-28.29 0-49.92-21.63-49.92-49.92v-632.36c0-28.29 21.63-49.92 49.92-49.92h665.64c28.29 0 49.92 21.63 49.92 49.92V718.32c0 28.29-21.63 49.92-49.92 49.92z m-144.78-33.28l96.52-99.85H674.68l-96.52 99.85h128.13z m-166.41 0l96.52-99.85H508.26l-96.52 99.85h128.14z m-166.41 0l96.52-99.85H341.85l-96.52 99.85h128.14z m-204.68-16.64c0 9.98 6.66 16.64 16.64 16.64h21.63l96.52-99.85H168.79v83.21z m698.92-632.36c0-9.98-6.66-16.64-16.64-16.64H185.43c-9.98 0-16.64 6.66-16.64 16.64V601.83h698.93v-515.87z m0 549.15h-26.63l-96.52 99.85h106.5c9.98 0 16.64-6.66 16.64-16.64v-83.21z m0 0M451.68 177.48c8.32 0 18.3 1.66 26.63 6.66l189.71 109.83c33.28 18.3 33.28 64.9 0 83.2L478.31 487.01c-8.32 4.99-16.64 6.65-26.63 6.65-26.62 0-49.92-13.31-49.92-41.6v-232.98c0-28.29 23.3-41.6 49.92-41.6zM435.04 445.4c0 9.99 8.32 16.64 16.64 16.64 3.33 0 6.66 0 8.32-1.66l189.71-109.83c6.66-4.99 8.32-11.65 8.32-13.31 0-3.33 0-9.98-8.32-13.31l-189.7-109.84c-3.33-1.66-4.99-1.66-8.32-1.66-8.32 0-16.64 6.66-16.64 16.64V445.4z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="tuwendaohang" unicode="&#58936;" d="M224.05 72.37c-24.95 0-45.25 20.3-45.25 45.25V653.49c0 24.95 20.3 45.25 45.25 45.25h593.02c24.95 0 45.25-20.3 45.25-45.25v-535.87c0-24.95-20.3-45.25-45.25-45.25H224.05z m-4.17 41.08h601.36v544.2H219.88v-544.2zM308.09 296.42h67.51c15 0 22.5-7.5 22.5-22.5s-7.5-22.5-22.5-22.5h-67.51c-15 0-22.5 7.5-22.5 22.5-0.01 14.99 7.5 22.5 22.5 22.5z m0 0M486.44 296.42h67.51c15 0 22.5-7.5 22.5-22.5s-7.5-22.5-22.5-22.5h-67.51c-15 0-22.5 7.5-22.5 22.5-0.01 14.99 7.5 22.5 22.5 22.5z m0 0M380.5 519.69c10.68 0 19.33-8.66 19.33-19.33v-77.32c0-10.68-8.65-19.33-19.33-19.33h-77.32c-10.68 0-19.33 8.65-19.33 19.33v77.32c0 10.67 8.65 19.33 19.33 19.33h77.32zM559.22 519.69c10.68 0 19.33-8.66 19.33-19.33v-77.32c0-10.68-8.65-19.33-19.33-19.33H481.9c-10.68 0-19.33 8.65-19.33 19.33v77.32c0 10.67 8.65 19.33 19.33 19.33h77.32zM737.93 519.69c10.68 0 19.33-8.66 19.33-19.33v-77.32c0-10.68-8.65-19.33-19.33-19.33h-77.32c-10.68 0-19.33 8.65-19.33 19.33v77.32c0 10.67 8.65 19.33 19.33 19.33h77.32z" horiz-adv-x="1024" />
<glyph glyph-name="zidingyi" unicode="&#58937;" d="M865.84 548.76v53.6c0 46.03-26.53 89.64-75.64 89.64H527.3l-10.14 27.03c-10.26 19.43-24.61 31.48-46.66 31.48H206.8c-44 0-79.77-36.63-79.77-81.65v-499.92c0-44.94 35.77-101.11 79.77-101.11h620.66c44 0 79.77 56.14 79.77 101.11V475.77c0 26.61-17.68 54.77-41.39 72.99z m-85.79 102.13c17.05 0 50.83 2.11 49.11-48.53v-33.9c-0.82 0.04 12.6 0.08-2.5 0.08h-229.5l-43.81 82.31h226.69v0.04z m90.59-491.92c0-17.98-28.13-53.72-44.98-53.72H205.04c-16.82 0-41.43 35.73-41.43 53.72V668.83c0 30.04 26.33 44.78 43.18 44.78h263.75c3.59 0 6.86-1.95 8.58-5.26l87.11-160.02c4.29-8.04 12.64-13.03 21.73-13.07H814.1c17.63 0 56.56-41.9 56.56-59.49v-316.8h-0.02z m0 0M325.19 653c-22.61-1.01-40.42-19.64-40.42-42.27 0-22.63 17.81-41.26 40.42-42.27 22.61 1.01 40.42 19.63 40.42 42.27 0 22.63-17.81 41.26-40.42 42.27" horiz-adv-x="1024" />
<glyph glyph-name="xiaochengxu" unicode="&#58938;" d="M508.58 784.32c-197.9 0-358.4-160.5-358.4-358.4 0-197.91 160.5-358.4 358.4-358.4 197.91 0 358.4 160.5 358.4 358.4 0.01 197.91-160.49 358.4-358.4 358.4z m0-665.6c-169.7 0-307.2 137.42-307.2 307.2s137.5 307.2 307.2 307.2c169.71 0 307.2-137.5 307.2-307.2 0.01-169.7-137.49-307.2-307.2-307.2z m0 0M591.2 615.48c-20.68 0-40.9-5.32-58.48-15.38-33.66-19.05-53.76-52.43-53.76-89.3v-166.92c0-16.55-9.7-32.03-25.79-41.29-9.82-5.42-20.35-8.15-31.3-8.15-31.25 0-56.68 22.18-56.68 49.45 0 8.43 2.14 16.12 6.5 23.1 6.55 11.38 18.47 19.97 33.52 24.25l2.28 0.5c15.58 0 27.79 12.22 27.79 27.79 0 15.57-12.2 27.79-27.79 27.79-5.72 0-11.75-0.99-18.95-3.14-27.26-8.1-50.06-25.3-64.25-48.5-9.6-16.1-14.68-34-14.68-51.79 0-57.9 50.5-105.05 112.57-105.05 21 0 41.18 5.53 58.14 15.88 33.68 18.98 53.78 52.37 53.78 89.32V510.47c0 16.55 9.7 32 25.81 41.3 9.8 5.41 20.3 8.15 31.27 8.15 31.43 0 57-22.19 57-49.45 0-8.34-2.15-16.03-6.45-23.02-6.63-11.17-18.6-19.82-33.7-24.37l-2.15-0.46c-15.58 0-27.79-12.22-27.79-27.78 0-15.57 12.2-27.79 27.79-27.79 5.52 0 10.97 0.9 18.95 3.14 27.26 8.1 50.06 25.3 64.25 48.5 9.6 16.1 14.68 34 14.68 51.79 0.01 57.89-50.48 105-112.56 105z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="tuwenliebiao" unicode="&#58939;" d="M829.03 691.11H189.79c-34.8 0-63.04-20.49-63.04-45.75v-359.64c0-25.25 28.23-45.75 63.04-45.75h639.24c34.81 0 63.04 20.5 63.04 45.75V645.36c0 25.26-28.23 45.75-63.04 45.75z m-639.24-46.4h639.24c9.28 0 16.63-4.95 16.63-11.17v-222.25L697.16 500c-8.12 4.95-20.49 5.22-29.39 0.78l-184.46-93.16-97.84 46.83c-7.73 3.91-18.56 3.91-26.68 0l-185.63-88.48V633.53c0 6.23 7.35 11.18 16.63 11.18z m639.24-355.78H189.79c-9.28 0-16.63 4.95-16.63 11.17v27.58l199.16 94.78 187.17-89.8c10.44-4.95 25.13-3.36 32.48 3.64 7.35 7 5.03 16.9-5.41 21.85l-63.81 30.43 157.78 79.62 159.71-95.52c1.55-1.04 3.48-1.55 5.41-2.36v-70.27c0.01-6.17-7.34-11.12-16.62-11.12z m0 0M372.32 489.87c27.76 0 50.35 22.54 50.35 50.35 0 27.8-22.59 50.35-50.35 50.35-27.77 0-50.35-22.54-50.35-50.35 0-27.81 22.59-50.35 50.35-50.35z m0 0M346.14 540.22c0-9.36 4.99-18 13.09-22.67 8.1-4.68 18.08-4.68 26.18 0a26.184 26.184 0 0 1 13.09 22.67c0 9.35-4.99 17.99-13.09 22.67a26.164 26.164 0 0 1-26.18 0 26.184 26.184 0 0 1-13.09-22.67z m0 0M173.16 116.07h560.08v-46.41H173.16v46.41z m-1.93 77.34h371.25v-30.82H171.23v30.82z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="zujian" unicode="&#58940;" d="M515.67 35.68L161.12 226.25V635.87h44.27v-383.14l310.28-166.78 310.28 166.78V635.87h44.27v-409.62L515.67 35.68z m0 0M494.89 489.37h44.27v-414.41h-44.27zM516.97 446.4L162.22 636.56 515.77 808.74l353.95-172.78L516.97 446.4zM257.95 635.16l259.02-138.8 255.62 137.3-256.42 126.12-258.22-124.62z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="youhuiquan" unicode="&#58941;" d="M372.55 399.84h30.89v85.54h-30.89v-85.54z m0-47.13h30.89v-85.55h-30.89v85.55z m0 0M858.98 453.69c1.7 0.79 21.62 8.71 22.47 9.11h3.39V602.4c0 30.89-26.71 55.84-59.78 55.84H202.68c-32.65 0-59.78-24.95-59.78-55.84v-138.41l2.54-0.79c24.59-5.94 46.64-20.59 58.93-38.41 12.72-18.62 18.66-34.85 17.81-50.69-0.84-15.44-6.78-32.08-18.66-48.71-11.87-17.03-32.65-30.1-58.51-36.04l-2.54-0.79v-138.81c0-30.89 26.71-55.84 59.78-55.84h622.38c32.65 0 59.78 24.95 59.78 55.84v139.6l-2.54 0.79c-32.23 8.32-57.66 32.47-68.26 64.16-9.75 28.91-1.27 58.61 24.16 83.96 6.37 5.93 13.58 11.08 21.21 15.43z m-89.87-77.22c0-45.15 29.25-87.52 80.55-117.23l1.7-0.79v-108.72c0-13.07-11.45-23.36-25.02-23.36H384.99v55.05h-32.23v-55.05H201.41c-13.99 0-25.01 10.69-25.01 23.36V253.3l1.69 0.79c39.01 21.78 80.55 65.74 80.55 122.38s-41.55 100.59-80.55 122.38l-1.69 0.79V602.8c0 13.07 11.45 23.37 25.01 23.37h151.36v-55.45h33.5v55.45h440.08c13.99 0 25.02-10.7 25.02-23.37v-108.32l-1.7-0.79c-50.89-29.3-80.56-72.07-80.56-117.22z m0 0M637.9 488.94l-40-59.8c-0.79-1.19-2.38-3.96-4.75-7.52h-9.9c-1.59 2.77-3.17 5.15-4.36 6.73l-41.58 60.99h-40.79l47.53-67.33h-44.36v-34.06h70.49v-28.52h-70.49v-34.06h70.49v-68.51h32.87v68.51h75.25v34.06h-75.25v28.52h75.25v34.06h-45.94l49.11 67.33H637.9v-0.4z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="wenben" unicode="&#58942;" d="M805.33 746.37H224.25c-43.46 0-64.95-21.52-64.95-64.11v-584.49c0-41.32 21.52-63.26 62.42-63.26h585.72c40.9 0 62.42 21.94 62.42 62.81V681.45c0 43.43-21.52 64.92-64.53 64.92z m25.7-643.48c0-25.28-3.79-29.07-28.68-29.07H226.32c-24.89 0-28.68 3.79-28.68 29.07V678.92c0 24.44 4.21 28.68 29.53 28.68h574.38c25.28 0 29.53-4.21 29.53-28.68l-0.05-576.03z m0 0M514.74 546.07h143.8c17.73 0 26.19-5.93 26.58-18.96 0.46-13.48-8-19.8-26.97-20.26-35 0-70.04-0.84-104.98 0.45-13.94 0.39-19.03-2.56-19.03-18.18 0.84-86.86 0.45-173.72 0.45-260.19 0-4.21 0.46-8.85 0-13.1-1.3-12.25-7.16-20.64-20.64-20.26-13.48 0.46-18.12 8.85-18.12 21.52V449.94c0 15.17-0.39 30.37 0 45.15 0.45 9.27-2.95 11.8-11.8 11.8-38.37-0.45-76.36-0.45-114.7 0-17.73 0-25.73 6.78-24.89 20.26 0.78 15.59 11.34 18.93 24.83 18.93h145.47z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="pinpailiebiao" unicode="&#58943;" d="M668.73 499.88c0 91.54-63.63 124.96-155.17 124.96H376.24v-449.49h48.98V369.43h86.05l112.14-194.08h56.76L562.54 374.46c62.75 7.6 109.04 62.27 106.19 125.42z m-163.41-88.8h-80.1v172.1h80.1c72.78 0 112.6-21.97 112.6-83.76s-39.82-88.34-112.6-88.34z m0 0M516.76 766.27c-202.24 0-366.18-163.94-366.18-366.18s163.94-366.18 366.18-366.18 366.18 163.94 366.18 366.18S719 766.27 516.76 766.27z m0-686.59c-176.96 0-320.41 143.45-320.41 320.41 0 176.96 143.45 320.41 320.41 320.41 176.96 0 320.41-143.45 320.41-320.41 0-176.96-143.45-320.41-320.41-320.41z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="app" unicode="&#58927;" d="M382.25 162.58c-17.76 0.04-32.26 14.53-32.3 32.3 0.02 17.78 14.51 32.3 32.3 32.34h242.29c17.79-0.04 32.28-14.55 32.3-32.34-0.04-17.76-14.53-32.26-32.3-32.3H382.25zM285.3 17.16c-48.98 0.04-88.86 39.92-88.9 88.9V687.57c0.04 48.98 39.92 88.86 88.9 88.9h436.12c49-0.02 88.9-39.9 88.94-88.9v-581.51c-0.04-49-39.94-88.88-88.94-88.9H285.3z m-0.01 710.71c-22.16-0.05-40.22-18.12-40.28-40.28v-581.54c0.05-22.17 18.12-40.25 40.28-40.3h436.15c22.19 0.03 40.28 18.1 40.34 40.28V687.57c-0.05 22.2-18.15 40.27-40.33 40.3H285.29z" horiz-adv-x="1024" />
<glyph glyph-name="fuzhufenge" unicode="&#58928;" d="M262.9 714.47v-47.53h491.12v47.53H896.6v-142.58h-47.53v-398.54h47.53v-142.58H754.01V78.3H262.9v-47.53H120.31V173.35h47.53V571.89h-47.53V714.47H262.9z m-31.69-572.8H152v-79.21h79.21v79.21z m633.7 0H785.7v-79.21h79.21v79.21z m-110.9 477.75H262.9v-47.53h-47.53v-398.54h47.53v-47.53h491.12v47.53h47.53V571.89h-47.53v47.53z m-522.8 63.37H152v-79.21h79.21v79.21z m633.7 0H785.7v-79.21h79.21v79.21z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="pc" unicode="&#58929;" d="M218.31 37.44c-19.19 0-28.13 8.94-28.13 28.13 0 19.19 8.94 28.13 28.13 28.13h570.46c19.19 0 28.13-8.94 28.13-28.13 0-19.19-8.94-28.13-28.13-28.13H218.31zM213.3 174.76c-47.7 0-86.51 41.05-86.51 91.52V667.72c0 50.46 38.81 91.52 86.51 91.52h580.48c47.7 0 86.51-41.05 86.51-91.52v-401.45c0-50.46-38.81-91.52-86.51-91.52H213.3z m0 528.22c-18.51 0-33.57-15.81-33.57-35.25v-401.45c0-19.44 15.06-35.25 33.57-35.25h580.48c18.51 0 33.57 15.81 33.57 35.25V667.72c0 19.44-15.06 35.25-33.57 35.25H213.3z" horiz-adv-x="1024" />
<glyph glyph-name="kapian3" unicode="&#58918;" d="M377.93 531.47h262.2v-52.44h-262.2zM377.93 374.15h262.2v-52.44h-262.2zM381.1 532.16h263.93v-52.79H381.1zM381.1 373.8h263.93v-52.79H381.1zM378.79 537.11h267.26v-53.45H378.79zM378.79 376.75h267.26v-53.45H378.79zM879.86 183.03H144.98V677.38h734.88v-200.36h-20c-25.81 0-46.82-21-46.82-46.82 0-25.81 21-46.81 46.82-46.81h20v-200.36z m-694.88 40h654.88V345.71c-38.26 9.05-66.82 43.5-66.82 84.49 0 40.99 28.55 75.44 66.82 84.49V637.38H184.98v-414.35z" horiz-adv-x="1024" />
<glyph glyph-name="kapian2" unicode="&#58921;" d="M377.93 531.47h262.2v-52.44h-262.2zM377.93 374.15h262.2v-52.44h-262.2zM381.1 532.16h263.93v-52.79H381.1zM381.1 373.8h263.93v-52.79H381.1zM783.05 182.25H243.08l-93.12 62.08v335.7l90.89 90.89h544.43l90.89-90.89v-335.7l-93.12-62.08z m-527.86 40h515.75l65.23 43.49V563.46l-67.46 67.46H257.42l-67.46-67.46v-297.73l65.23-43.48z" horiz-adv-x="1024" />
<glyph glyph-name="kapian5" unicode="&#58923;" d="M872.83 121.16h-737.4v496h737.4v-496z m-697.4 40h657.4v416h-657.4v-416zM760.54 228.46H237.72V509.87h522.82v-281.41z m-482.82 40h442.82V469.87H277.72v-201.41z" horiz-adv-x="1024" />
<glyph glyph-name="kapian4" unicode="&#58926;" d="M377.93 531.47h262.2v-52.44h-262.2zM377.93 374.15h262.2v-52.44h-262.2zM381.1 532.16h263.93v-52.79H381.1zM381.1 373.8h263.93v-52.79H381.1zM378.79 537.11h267.26v-53.45H378.79zM378.79 376.75h267.26v-53.45H378.79zM377.35 537.25h266.33v-53.27H377.35zM377.35 377.45h266.33v-53.27H377.35zM876.74 184.34H144.28V677.1h732.46v-492.76z m-692.46 40h652.46V637.1H184.28v-412.76z" horiz-adv-x="1024" />
<glyph glyph-name="kapian1" unicode="&#58917;" d="M869.88 177.72H148.17V385.48l14.99 3.88c14.33 3.71 24.34 16.55 24.34 31.22s-10.01 27.51-24.34 31.22l-14.99 3.88V663.45h721.71v-207.76l-14.99-3.88c-14.33-3.71-24.34-16.55-24.34-31.22s10.01-27.51 24.34-31.22l14.99-3.88v-207.77z m-681.71 40h641.71V356.34c-23.76 12.19-39.33 36.77-39.33 64.25 0 27.47 15.57 52.06 39.33 64.25V623.45H188.17v-138.62c23.76-12.19 39.33-36.77 39.33-64.25s-15.57-52.06-39.33-64.25v-138.61zM377.93 525.47h262.2v-52.44h-262.2zM377.93 368.15h262.2v-52.44h-262.2z" horiz-adv-x="1024" />
<glyph glyph-name="kapian8" unicode="&#58920;" d="M151.09 621.84v-518.02h736.13V621.84H151.09zM832.7 158.35H205.62V567.31H832.7v-408.96zM280.6 471.89h272.64v-54.53H280.6zM280.6 308.3h272.64v-54.53H280.6zM703.19 471.89h54.53v-218.11h-54.53z" horiz-adv-x="1024" />
<glyph glyph-name="kapian6" unicode="&#58922;" d="M292 454.32h276.21v-55.24H292zM292 288.59h276.21v-55.24H292zM140.08 606.24v-524.8h745.77v524.8H140.08z m524.81-469.56H195.33V551h469.56v-414.32z" horiz-adv-x="1024" />
<glyph glyph-name="kapian7" unicode="&#58925;" d="M276.91 444.98h270.64v-54.13H276.91zM276.91 282.59h270.64v-54.13H276.91zM155.12 607.36v-514.22h730.74V607.36H155.12z m676.61-460.09H209.25V553.24h622.48v-405.97zM669.34 336.72m-67.66 0a67.66 67.66 0 1 1 135.32 0 67.66 67.66 0 1 1-135.32 0Z" horiz-adv-x="1024" />
<glyph glyph-name="youhuiquan3" unicode="&#58913;" d="M160.66 763.36v-664.64h725.06V763.36H160.66z m226.58-558.89H236.19v60.42h151.05v-60.42z m0 151.05H236.19V657.63h151.05v-302.11z m211.48-151.05H447.66v60.42h151.05v-60.42z m0 151.05H447.66V657.63h151.05v-302.11z m211.47-151.05H659.14v60.42h151.05v-60.42z m0 151.05H659.14V657.63h151.05v-302.11z" horiz-adv-x="1024" />
<glyph glyph-name="youhuiquan4" unicode="&#58914;" d="M155 768.01v-668.63h729.41V768.01H155z m243.14-554.66H185.4v60.78h212.75v-60.78z m0 106.38H185.4V654.04h212.75v-334.31z m303.92-106.38H489.32v60.78h212.75v-60.78z m0 106.38H489.32V654.04h212.75v-334.31z m151.96-106.38h-91.18v60.78h91.18v-60.78z m0 106.38h-91.18V654.04h91.18v-334.31z" horiz-adv-x="1024" />
<glyph glyph-name="youhuiquan2" unicode="&#58915;" d="M155 768.6v-668.63h729.41V768.6H155z m334.32-562.25H215.79v60.78h273.53v-60.78z m0 151.96H215.79V662.23h273.53v-303.92z m334.31-151.96H550.1v60.78h273.53v-60.78z m0 151.96H550.1V662.23h273.53v-303.92z" horiz-adv-x="1024" />
<glyph glyph-name="youhuiquan1" unicode="&#58916;" d="M167.75 755.97V95.2h720.84V755.97H167.75z m196.47-65.64c48.7 0 91.63-39.15 91.63-89.49 0-50.38-40.1-89.5-91.63-89.5-48.67 0-91.63 39.16-91.63 89.5s42.96 89.49 91.63 89.49z m434.26-529.49H257.85v60.07h540.63v-60.07z m0 124.21c0-1.53-485.52-1.53-485.52-1.53-5.52 0-11.02 1.53-16.55 4.58-11.05 7.65-11.05 18.35-1.84 27.52L408.6 448.64c9.19 7.65 22.08 9.18 33.12 3.07l99.29-58.12L719.4 552.63c9.21 7.63 53.35 47.39 79.08 3.06v-270.64z" horiz-adv-x="1024" />
<glyph glyph-name="guanbi" unicode="&#58912;" d="M512.001 880.322C237.414 880.322 14.82 657.727 14.82 383.14S237.414-114.04 512-114.04s497.18 222.593 497.18 497.18S786.589 880.322 512.002 880.322z m213.211-645.937c17.798-17.803 17.798-46.657 0-64.456-17.798-17.797-46.658-17.797-64.456 0L512.001 318.685 363.241 169.93c-17.799-17.797-46.652-17.797-64.45 0-17.804 17.799-17.804 46.653 0 64.456L447.545 383.14 298.79 531.896c-17.803 17.798-17.803 46.657 0 64.455 17.799 17.798 46.652 17.798 64.45 0l148.761-148.755 148.755 148.755c17.798 17.798 46.658 17.798 64.456 0 17.798-17.798 17.798-46.657 0-64.455L576.456 383.14l148.756-148.755z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="shopping_cart" unicode="&#58910;" d="M752.17 154.03H315.2c-26.97 0-49.77 19.31-54.22 45.92l-80.8 484.25c-2.5 14.97 7.61 29.13 22.59 31.63 15.1 2.46 29.14-7.63 31.63-22.59l19.4-116.29h585.72c17.34 0 33.3-7.92 43.79-21.73 10.48-13.81 13.82-31.3 9.16-48l-86.27-309.8c-5.58-25.21-28.11-43.39-54.03-43.39zM262.98 521.99L315.2 209h436.97c0.14 0.68 0.66 1.66 0.85 2.34l86.5 310.65H262.98z m0 0M656.24 71.83c0-14.73 7.85-28.34 20.61-35.7a41.206 41.206 0 0 1 41.23 0 41.223 41.223 0 0 1 0 71.4 41.254 41.254 0 0 1-41.23 0 41.214 41.214 0 0 1-20.61-35.7z m0 0M344.31 71.83c0-14.73 7.86-28.34 20.61-35.7a41.206 41.206 0 0 1 41.23 0 41.202 41.202 0 0 1 20.61 35.7c0 14.73-7.85 28.34-20.61 35.7a41.254 41.254 0 0 1-41.23 0 41.214 41.214 0 0 1-20.61-35.7z m0 0M678.86 268H404.02c-15.18 0-27.49 12.3-27.49 27.48v41.23h329.81v-41.23c0.01-15.17-12.3-27.48-27.48-27.48z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="my" unicode="&#58911;" d="M660.47 341.54c88.5-0.01 165.05-61.66 183.91-148.14l14.37-65.9a76.775 76.775 0 0 0-15.23-64.54 76.826 76.826 0 0 0-59.82-28.63H228.19a76.78 76.78 0 0 0-59.82 28.63 76.77 76.77 0 0 0-15.22 64.54l14.37 65.88c18.85 86.48 95.4 148.15 183.91 148.16h309.04z m0-51.2H351.43c-64.44-0.01-120.17-44.9-133.89-107.86l-14.37-65.88c-1.66-7.57 0.21-15.48 5.07-21.52a25.6 25.6 0 0 1 19.95-9.54h555.52c7.75 0 15.08 3.5 19.95 9.54a25.585 25.585 0 0 1 5.07 21.52l-14.37 65.88c-13.72 62.95-69.45 107.85-133.89 107.86zM505.95 742.6c103.68 0 187.74-84.06 187.74-187.74s-84.05-187.73-187.74-187.73c-103.68 0-187.73 84.05-187.73 187.73-0.01 103.69 84.05 187.74 187.73 187.74z m0-51.2c-48.78 0-93.86-26.02-118.25-68.26-24.39-42.24-24.39-94.29 0-136.54 24.39-42.25 69.47-68.27 118.25-68.26 75.4 0 136.52 61.13 136.52 136.53S581.35 691.4 505.95 691.4z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="zhifubao" unicode="&#58919;" d="M902.095 243.129l-250.96 84.392s19.287 28.87 39.874 85.472c20.59 56.606 23.539 87.689 23.539 87.689l-162.454 1.339v55.487l196.739 1.387v39.227H552.055v89.29h-96.358v-89.294H272.133v-39.227l183.564 1.304v-59.513h-147.24v-31.079h303.064s-3.337-25.223-14.955-56.606c-11.615-31.38-23.58-58.862-23.58-58.862s-142.3 49.804-217.285 49.804c-74.985 0-166.182-30.123-175.024-117.55-8.8-87.383 42.481-134.716 114.728-152.139 72.256-17.513 138.962 0.173 197.04 28.607 58.087 28.391 115.081 92.933 115.081 92.933l292.486-142.041c-11.932-69.3-72.067-119.914-142.387-119.844H266.37c-79.714-0.078-144.392 64.483-144.466 144.194V629.626c-0.074 79.72 64.493 144.399 144.205 144.47h491.519c79.714 0.073 144.396-64.49 144.466-144.203v-386.764z m-365.76 48.895s-91.302-115.262-198.879-115.262c-107.623 0-130.218 54.767-130.218 94.155 0 39.34 22.373 82.144 113.943 88.333 91.519 6.18 215.2-67.226 215.2-67.226h-0.047z" horiz-adv-x="1024" />
<glyph glyph-name="caiyouduo_zhifu-weixinzhifu" unicode="&#59014;" d="M843.946667 810.666667H180.053333C127.786667 810.666667 85.333333 768.213333 85.333333 715.946667v-663.68C85.333333-0.213333 127.786667-42.666667 180.053333-42.666667h663.68c52.266667 0 94.72 42.453333 94.72 94.72V715.946667A94.464 94.464 0 0 1 843.946667 810.666667zM511.786667 167.68c-30.72 0-61.226667 4.266667-90.666667 12.586667a56.106667 56.106667 0 0 1-8.32 1.28c-5.12-0.213333-10.24-1.706667-14.72-4.48l-60.373333-34.773334c-1.493333-1.28-3.2-1.92-5.12-1.92h-0.426667a8.533333 8.533333 0 0 0-8.533333 8.96c0 2.346667 0.426667 4.693333 1.28 7.04 0 1.28 7.68 29.226667 12.16 46.293334 0.64 1.92 1.066667 3.84 1.28 5.76a18.709333 18.709333 0 0 1-7.68 14.506666c-58.453333 41.813333-95.786667 104.106667-95.786667 172.373334 0 126.08 124.586667 228.266667 277.546667 228.266666 93.866667 0 176.64-37.973333 226.986666-96.426666l-280.106666-123.093334c-2.986667-1.28-6.4-1.92-9.6-1.92-5.333333 0.213333-10.666667 1.706667-15.36 4.48l-59.733334 41.813334a9.365333 9.365333 0 0 1-5.76 1.92h-0.426666a8.533333 8.533333 0 0 1-8.533334-8.96c0-1.28 0.213333-2.56 0.64-3.84l50.773334-109.013334 1.28-2.56a18.346667 18.346667 0 0 1 24.32-7.68l1.92 1.28 319.36 181.973334c20.266667-31.573333 31.146667-68.266667 31.573333-105.813334-0.426667-126.08-125.013333-228.053333-277.973333-228.053333z" horiz-adv-x="1024" />
<glyph glyph-name="add1" unicode="&#59092;" d="M590.769231 324.923077h324.923077c15.753846 0 29.538462 13.784615 29.538461 29.538461v59.076924c0 15.753846-13.784615 29.538462-29.538461 29.538461H590.769231c-11.815385 0-19.692308 7.876923-19.692308 19.692308V787.692308c0 15.753846-13.784615 29.538462-29.538461 29.538461h-59.076924c-15.753846 0-29.538462-13.784615-29.538461-29.538461V462.769231c0-11.815385-7.876923-19.692308-19.692308-19.692308H108.307692c-15.753846 0-29.538462-13.784615-29.538461-29.538461v-59.076924c0-15.753846 13.784615-29.538462 29.538461-29.538461H433.230769c11.815385 0 19.692308-7.876923 19.692308-19.692308v-324.923077c0-15.753846 13.784615-29.538462 29.538461-29.538461h59.076924c15.753846 0 29.538462 13.784615 29.538461 29.538461V305.230769c0 11.815385 7.876923 19.692308 19.692308 19.692308z" horiz-adv-x="1024" />
<glyph glyph-name="arrow-up" unicode="&#58976;" d="M549.84704 586.19904l328.69376-328.704c20.91008-20.91008 20.91008-54.80448 0-75.70432-20.89984-20.89984-54.80448-20.89984-75.70432 0L512 472.63744 221.16352 181.80096000000003c-20.91008-20.89984-54.80448-20.89984-75.70432 0-20.91008 20.89984-20.91008 54.79424 0 75.70432l328.69376 328.704c10.45504 10.4448 24.14592 15.6672 37.84704 15.6672S539.40224 596.64384 549.84704 586.19904z" horiz-adv-x="1024" />
<glyph glyph-name="arrow-down" unicode="&#59029;" d="M512 166.13376000000005c-13.70112 0-27.40224 5.23264-37.84704 15.6672l-328.69376 328.704c-20.91008 20.91008-20.91008 54.80448 0 75.70432 20.89984 20.89984 54.79424 20.89984 75.70432 0L512 295.36256000000003l290.83648 290.83648c20.91008 20.89984 54.80448 20.89984 75.70432 0 20.91008-20.89984 20.91008-54.79424 0-75.70432l-328.69376-328.704C539.40224 171.35616000000005 525.70112 166.13376000000005 512 166.13376000000005z" horiz-adv-x="1024" />
<glyph glyph-name="xuanzhongjiaobiao" unicode="&#58898;" d="M2.84444445-125.15555555000003h1018.3111111v1018.3111111l-1018.3111111-1018.3111111z m949.1456 416.75662222L675.87413333-47.83217778000005c-8.62435555-10.59271111-21.1968-16.09955555-33.88302222-16.09955555-2.46897778 0-4.93795555 0.21617778-7.38417778 0.63715555-2.05937778-0.29582222-4.11875555-0.64853333-6.20088888-0.64853333-10.06933333 0-20.20693333 3.47022222-28.4216889 10.53582222L416.54044445 104.27733333000003c-18.28408889 15.71271111-20.36622222 43.26968889-4.6648889 61.5424 15.72408889 18.28408889 43.28106667 20.35484445 61.5424 4.66488889L630.85226667 35.15733333000003 884.28088889 346.69226667c15.21208889 18.68231111 42.68942222 21.53813333 61.39448889 6.30328888 18.70506667-15.21208889 21.52675555-42.67804445 6.31466667-61.39448888z" horiz-adv-x="1024" />
<glyph glyph-name="xiugai" unicode="&#58885;" d="M987.428571 420.571429a36.571429 36.571429 0 0 1-36.571428-36.571429v-329.142857a109.714286 109.714286 0 0 0-109.714286-109.714286h-658.285714A109.714286 109.714286 0 0 0 73.142857 54.857143v658.285714A109.714286 109.714286 0 0 0 182.857143 822.857143H512a36.571429 36.571429 0 0 1 36.571429 36.571428A36.571429 36.571429 0 0 1 512 896H182.857143A182.857143 182.857143 0 0 1 0 713.142857v-658.285714A182.857143 182.857143 0 0 1 182.857143-128h658.285714a182.857143 182.857143 0 0 1 182.857143 182.857143V384a36.571429 36.571429 0 0 1-36.571429 36.571429zM318.171429 188.708571a37.302857 37.302857 0 0 1 51.931428 0L1014.491429 833.828571a35.108571 35.108571 0 0 1 0 51.2 36.571429 36.571429 0 0 1-51.931429 0L318.171429 237.714286a37.302857 37.302857 0 0 1 0-49.005715z" horiz-adv-x="1025" />
<glyph glyph-name="shanchu" unicode="&#58924;" d="M440.746667 810.666667h142.933333a32 32 0 1 1 0 64h-142.933333a32 32 0 1 1 0-64zM951.893333 761.173333H72.106667a32 32 0 0 1 0-64h879.786666a32 32 0 0 1 0 64zM866.56 637.44a32 32 0 0 1-32-32v-655.786667H189.44V605.44a32 32 0 1 1-64 0v-687.786667a32 32 0 0 1 32-32h709.12a32 32 0 0 1 32 32V605.44a32 32 0 0 1-32 32zM654.933333 42.666667V530.773333a32 32 0 1 1-64 0V42.666667a32 32 0 0 1 64 0zM430.08 42.666667V530.773333a32 32 0 0 1-64 0V42.666667a32 32 0 0 1 64 0z" horiz-adv-x="1024" />
<glyph glyph-name="examine" unicode="&#58896;" d="M208.8-20.73c-51.44 0-93.25 41.51-93.25 92.5V312.65c0.34 12.92 10.97 23.19 23.89 23.07h0.68a23.754 23.754 0 0 0 23.24-24.4v-239.55c0-24.81 20.38-45.05 45.4-45.05h664.78c25.05 0 45.4 20.24 45.4 45.05V651.08c0 24.85-20.34 45.05-45.4 45.05H208.8c-25.05 0-45.4-20.21-45.4-45.05v-103.25l47.34 46.97c4.44 4.44 10.48 6.86 16.79 6.83 13.13 0.04 23.82-10.56 23.89-23.69 0.01-6.31-2.51-12.36-7-16.79l-86.36-85.64c-0.27-0.63-0.66-1.21-1.13-1.71a23.535 23.535 0 0 0-16.89-6.96h-0.58c-6.34-0.04-12.43 2.46-16.93 6.93-0.51 0.55-0.82 1.09-1.02 1.47l-86.46 85.95a23.563 23.563 0 0 0-7.02 16.77c0 6.31 2.53 12.35 7.02 16.78l0.27 0.24c4.45 4.3 10.4 6.7 16.59 6.69 6.34 0.03 12.43-2.47 16.93-6.93l46.7-46.35V651.08c0 51.03 41.85 92.54 93.25 92.54h664.78c24.85 0 48.23-9.66 65.88-27.14s27.31-40.72 27.31-65.36v-579.35c0-50.99-41.82-92.5-93.18-92.5H208.8z m0 0M631.89 347.84c8.83-0.47 17.2 3.97 21.75 11.55a23.927 23.927 0 0 1 0 24.63c-4.56 7.57-12.93 12.02-21.75 11.54h-68.61l0.27 0.17 68.16 68.2c8.34 9.46 7.89 23.78-1.03 32.7-8.92 8.92-23.24 9.37-32.7 1.03l-68.2-68.16-0.17-0.24-0.17 0.27-68.16 68.16c-9.41 8.85-24.15 8.62-33.27-0.52-9.13-9.14-9.34-23.87-0.48-33.27l68.16-68.16c0.07-0.07 0.17-0.07 0.24-0.17h-68.54c-8.83 0.47-17.2-3.97-21.75-11.54a23.927 23.927 0 0 1 0-24.63 23.893 23.893 0 0 1 21.75-11.55h78.4v-54.54h-78.4c-8.83 0.47-17.2-3.97-21.75-11.55a23.927 23.927 0 0 1 0-24.63 23.893 23.893 0 0 1 21.75-11.55h78.4v-20.48c-0.47-8.83 3.97-17.2 11.55-21.75a23.927 23.927 0 0 1 24.63 0 23.904 23.904 0 0 1 11.55 21.75v20.48h78.41c8.83-0.47 17.19 3.97 21.75 11.55a23.882 23.882 0 0 1 0 24.63 23.893 23.893 0 0 1-21.75 11.55h-78.41v54.54h78.41-0.04z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="delivery" unicode="&#58897;" d="M393.38 407.58H107.02c-7.1 0.05-13.93-2.46-18.95-6.97s-7.82-10.64-7.76-17.02c0-13.4 12.43-23.99 26.71-23.99h286.35c7.1-0.05 13.93 2.46 18.95 6.97s7.82 10.64 7.76 17.02c0.63 12.84-11.79 23.99-26.7 23.99zM269.15 303.8H107.02c-7.1 0.05-13.93-2.46-18.95-6.97s-7.82-10.64-7.76-17.02c0-13.39 12.43-24 26.71-24h162.13c7.1-0.05 13.92 2.46 18.95 6.98 5.02 4.51 7.82 10.64 7.76 17.02 0.62 13.38-11.8 23.99-26.71 23.99z m494.44-23.99c0 1.68 0 3.35-0.62 5.02 0 0.56-0.62 1.68-0.62 2.23 0 0.56-0.62 1.68-0.62 2.23-0.62 1.11-1.24 1.68-1.24 2.79-0.62 0.56-0.62 1.11-0.62 1.68-1.25 1.11-1.87 2.79-3.73 3.9l-93.18 82.58c-5 4.55-11.82 7.11-18.94 7.11-7.12 0-13.94-2.56-18.94-7.11-10.56-9.49-10.56-25.11 0-34.03l46.59-41.85H512.65c-7.1 0.05-13.93-2.46-18.95-6.98-5.02-4.51-7.82-10.64-7.76-17.02 0-13.39 12.43-23.99 26.71-23.99h159.02l-46.59-41.85c-5.07-4.5-7.92-10.63-7.92-17.02 0-6.4 2.85-12.52 7.92-17.02 10.55-9.49 27.96-9.49 37.88 0l92.56 83.14c1.39 1.18 2.64 2.49 3.73 3.91 0.62 0.56 0.62 1.12 1.24 1.68 0.62 1.11 1.24 1.68 1.24 2.79 0.62 0.56 0.62 1.68 0.62 2.23 0 0.56 0.62 1.68 0.62 2.23 0.62 0 0.62 1.68 0.62 3.35z m-576.44-79.24H106.4c-14.91 0-26.71-11.16-26.71-23.99-0.05-6.38 2.74-12.51 7.76-17.02s11.85-7.02 18.95-6.98h80.75c7.1-0.05 13.93 2.46 18.95 6.98 5.02 4.51 7.82 10.64 7.76 17.02 0.62 12.83-11.8 23.99-26.71 23.99z m0 0M915.16 585.59l-73.92 127.79c-18.01 31.25-63.36 56.36-103.12 56.36H284.68c-39.14 0-84.48-24.55-103.11-55.8l-73.92-124.99c-16.15-26.78-28.57-71.98-28.57-102.67v-19.52c-0.05-6.38 2.74-12.51 7.76-17.02s11.85-7.02 18.95-6.97c7.1-0.05 13.92 2.46 18.94 6.97 5.02 4.51 7.82 10.64 7.77 17.02v19.52c0 1.68 0.62 4.47 0.62 6.7h754.71c0.62-3.35 0.62-6.7 0.62-9.49v-416.82c0.05-6.38-2.74-12.51-7.76-17.02s-11.85-7.02-18.95-6.97H159.82c-14.91 0-26.71 11.16-26.71 24v29.57c0.05 6.38-2.74 12.51-7.76 17.02s-11.85 7.02-18.95 6.97c-7.1 0.05-13.93-2.46-18.95-6.97s-7.82-10.64-7.76-17.02v-30.13c-0.04-19.25 8.45-37.72 23.61-51.34 15.15-13.61 35.71-21.24 57.14-21.21h701.92c44.73 0 80.75 32.92 80.75 72.54V482.92c0 30.69-11.8 75.89-27.95 102.67z m-770.24-44.08c3.11 9.49 6.84 18.41 10.56 24.55l73.92 124.98c9.31 15.62 35.4 30.13 55.28 30.13h454.06c19.88 0 45.97-14.51 55.29-30.13l73.92-127.79c3.73-6.13 6.83-13.95 9.94-22.31H144.92v0.57z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="payment" unicode="&#58902;" d="M848.7 165.74l-45.21-48.68-19.13 17.39c-5.22 5.22-15.65 5.22-20.86 0-5.21-5.21-5.21-15.65 0-20.86l29.56-29.56c3.48-3.48 6.95-5.21 10.43-5.21 3.48 0 8.69 1.74 10.43 5.21l55.63 60.85c5.22 6.95 5.22 15.65 0 20.86-5.2 5.21-13.9 5.21-20.85 0z m0 0M170.64-27.78c-62.19 0-112.79 50.6-112.79 112.79v545.8c0 62.19 50.6 112.79 112.79 112.79H776.5c62.2 0 112.79-50.6 112.79-112.79V289.4c0-16.18-13.11-29.29-29.29-29.29s-29.29 13.11-29.29 29.29V630.81c0 29.9-24.32 54.22-54.22 54.22H170.64c-29.89 0-54.22-24.32-54.22-54.22v-545.8c0-29.89 24.32-54.21 54.22-54.21h543.91c16.18 0 29.29-13.11 29.29-29.29s-13.11-29.29-29.29-29.29H170.64zM86.14 557.53H848.8v-58.58H86.14zM403.2 241.72H229.57c-16.18 0-29.29 13.11-29.29 29.29s13.11 29.29 29.29 29.29H403.2c16.18 0 29.29-13.11 29.29-29.29s-13.11-29.29-29.29-29.29zM815.55-47.93c-94.93 0-172.16 77.23-172.16 172.16s77.23 172.16 172.16 172.16c94.93 0 172.16-77.23 172.16-172.16s-77.23-172.16-172.16-172.16z m0 301.36c-71.24 0-129.2-57.96-129.2-129.2s57.96-129.2 129.2-129.2c71.24 0 129.2 57.96 129.2 129.2s-57.95 129.2-129.2 129.2z" horiz-adv-x="1024" />
<glyph glyph-name="complete" unicode="&#58904;" d="M215.28-6.51c-61.63 0-111.59 49.96-111.59 111.59V658.23c0 61.63 49.96 111.59 111.59 111.59h571.64c61.63 0 131.59-49.96 131.59-111.59v-553.15c0-61.63-69.96-111.59-131.59-111.59H215.28z m0 729.73c-35.89 0-64.98-29.09-64.98-64.98v-553.15c0-35.89 29.1-64.99 64.99-64.99h571.64c35.89 0 84.99 29.09 84.99 64.99V658.23c0 35.89-49.09 64.98-84.98 64.98H215.28zM441.83 130.89c-6.22 0-12.07 2.42-16.48 6.83L302.07 260.99c-9.08 9.08-9.08 23.87 0 32.95 4.4 4.4 10.25 6.83 16.47 6.83 6.22 0 12.07-2.42 16.47-6.83L458.3 170.66c9.08-9.08 9.08-23.86 0-32.95-4.4-4.4-10.25-6.82-16.47-6.82zM126.99 527.52c-12.85 0-23.3 10.45-23.3 23.3 0 12.85 10.45 23.3 23.3 23.3H895.2c12.85 0 23.3-10.45 23.3-23.3 0-12.85-10.45-23.3-23.3-23.3H126.99zM441.83 130.89c-6.22 0-12.07 2.42-16.48 6.83-9.08 9.08-9.08 23.86 0 32.95l261.76 261.76c4.4 4.4 10.25 6.83 16.47 6.83s12.07-2.42 16.47-6.83c9.08-9.08 9.08-23.86 0-32.95L458.3 137.71c-4.4-4.4-10.25-6.82-16.47-6.82z" horiz-adv-x="1024" />
<glyph glyph-name="submit" unicode="&#58905;" d="M274.81 583.63h473.04v-44.82H274.81zM274.81 404.35h473.04v-44.82H274.81zM279.12 225.06h236.52v-44.82H279.12zM846.51 169.57a27.395 27.395 0 0 0 38.7 0c10.75-10.67 10.75-27.75 0-38.42L715.35-35.32c-8.6-10.67-25.8-12.8-36.55-2.13l-60.21 55.49c-10.75 8.54-10.75 27.75-2.15 38.42 8.6 10.67 25.8 12.8 36.55 2.13L696 18.04l150.51 151.53zM627.44 731.64H397.37c-12.9 0-21.5 8.54-21.5 21.34 0 12.81 8.6 21.34 21.5 21.34h230.07c12.9 0 21.5-8.54 21.5-21.34 0.01-12.8-8.59-21.34-21.5-21.34zM751.91 731.64c-12.9 0-21.5 8.54-21.5 21.34 0 12.81 8.6 21.34 21.5 21.34h51.6c62.36 0 111.81-49.09 111.81-110.98v-369.98c0-12.81-8.6-21.34-21.5-21.34s-21.5 8.54-21.5 21.34V665.48c0 36.28-30.1 66.16-66.66 66.16h-53.75zM500.84-41.72H219.16c-62.35 0-111.81 49.09-111.81 110.98V665.48c0 61.89 49.46 110.98 111.81 110.98h51.6c12.9 0 21.5-8.54 21.5-21.34 0-12.81-8.6-23.48-21.5-23.48h-51.6c-36.55 0-66.66-29.88-66.66-66.16V71.4c0-36.28 30.1-66.16 66.66-66.16h281.68c12.9 0 21.5-8.54 21.5-21.34 0-17.08-8.61-25.62-21.5-25.62z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="order" unicode="&#58906;" d="M816.81-58.79c-5.56 0-10.79 2.22-14.73 6.26L697.2 34.39l-84.88-86.92c-3.94-4.03-9.17-6.26-14.73-6.26-5.56 0-10.79 2.22-14.73 6.26-8.12 8.32-8.12 21.86 0 30.18l84.88 86.91-84.88 86.91c-3.94 4.03-6.11 9.39-6.11 15.08 0 5.7 2.17 11.05 6.11 15.09 3.94 4.03 9.17 6.26 14.73 6.26 5.56 0 10.79-2.22 14.73-6.26l84.88-86.91 104.88 86.91c3.94 4.03 9.17 6.26 14.74 6.26 5.56 0 10.8-2.22 14.74-6.26 3.94-4.04 6.11-9.4 6.11-15.09 0-5.69-2.17-11.05-6.11-15.08l-104.88-86.92 104.88-86.91c8.12-8.32 8.12-21.86 0-30.18-3.96-4.03-9.19-6.25-14.75-6.25zM208.03-43.31c-56.03 0-102.07 46.68-102.63 104.07V681.53c0.56 57.33 46.6 104.01 102.63 104.01h584.91c56.03 0 102.06-46.68 102.63-104.06v-363.92c0-11.24-8.9-20.35-19.87-20.35-10.98 0-19.87 9.11-19.87 20.35V681.15c-0.41 35.15-28.62 63.7-62.89 63.7H208.04c-34.26 0-62.47-28.55-62.88-63.64v-620.12c0.41-35.15 28.62-63.7 62.89-63.7H413.7c10.98 0 19.87-9.11 19.87-20.35 0-11.24-8.9-20.35-19.87-20.35H208.03zM263.27 192.27c-10.85 0-19.67 9.04-19.67 20.14s8.83 20.14 19.67 20.14h187.55c10.85 0 19.67-9.04 19.67-20.14s-8.82-20.14-19.67-20.14H263.27z m0 182.43c-10.85 0-19.67 9.04-19.67 20.14s8.83 20.14 19.67 20.14h416.34c10.85 0 19.67-9.04 19.67-20.14s-8.82-20.14-19.67-20.14H263.27z m0 163.68c-10.85 0-19.67 9.04-19.67 20.14 0 11.11 8.83 20.15 19.67 20.15h416.34c10.85 0 19.67-9.04 19.67-20.15s-8.82-20.14-19.67-20.14H263.27z" horiz-adv-x="1024" />
<glyph glyph-name="transport" unicode="&#58908;" d="M374.41 66.76c-14.06 0-25.5 11.44-25.5 25.49 0 14.06 11.44 25.5 25.5 25.5h263.4c14.06 0 25.49-11.44 25.49-25.5s-11.44-25.49-25.49-25.49h-263.4zM911.87 111.14c-0.36 0-0.71 0.01-1.07 0.02h-0.21c-6.81 0-13.21 2.65-18.03 7.47s-7.47 11.22-7.47 18.02V401.33c-0.01 34.91-17.67 66.83-47.24 85.4l-172.78 109.6c-7.35 4.63-11.8 12.57-11.91 21.25v89.9H157.82v-570.83c0-14.06-11.44-25.49-25.5-25.49s-25.49 11.44-25.49 25.49V732.98c0 6.87 2.83 13.56 7.77 18.34a25.373 25.373 0 0 0 17.72 7.17c0.28 0 0.57 0 0.85-0.01h545.74c6.81 0 13.22-2.65 18.03-7.46 4.82-4.82 7.47-11.22 7.47-18.03v-100.93L866.57 529.1c44.41-28 70.87-76.04 70.78-128.52v-263.91a25.6 25.6 0 0 0-7.84-18.42c-4.76-4.59-11.03-7.11-17.64-7.11zM730.16-9.37c-56.03 0.01-101.61 45.59-101.61 101.62s45.59 101.62 101.62 101.62 101.62-45.59 101.62-101.62c-0.13-55.89-45.72-101.49-101.63-101.62z m0.01 152.26c-27.92 0-50.63-22.72-50.63-50.64s22.71-50.63 50.63-50.63 50.63 22.71 50.63 50.63c0 13.53-5.27 26.24-14.83 35.8-9.56 9.57-22.27 14.84-35.8 14.84zM289.39-9.37c-56.03 0.01-101.61 45.59-101.61 101.62s45.59 101.62 101.62 101.62 101.62-45.59 101.62-101.62c-0.13-55.89-45.72-101.49-101.63-101.62z m0.01 152.26c-27.92 0-50.63-22.72-50.63-50.64s22.71-50.63 50.63-50.63 50.63 22.71 50.63 50.63c0 13.53-5.27 26.24-14.83 35.8-9.56 9.57-22.28 14.84-35.8 14.84z m389.51 206.3a20.27 20.27 0 0 0-14.44 5.98c-3.8 3.8-5.98 9.07-5.98 14.44v101.5c0 11.26 9.16 20.42 20.42 20.42s20.42-9.16 20.42-20.42v-81.08h99.61c11.26 0 20.42-9.16 20.42-20.42 0-11.26-9.16-20.42-20.42-20.42H678.91zM523.36 343.61c-14.06 0-25.49 11.44-25.49 25.49 0 14.06 11.44 25.5 25.49 25.5 14.06 0 25.5-11.44 25.5-25.5s-11.44-25.49-25.5-25.49zM403.09 343.61c-14.06 0-25.49 11.44-25.49 25.49 0 14.06 11.44 25.5 25.49 25.5 14.06 0 25.49-11.44 25.49-25.5s-11.44-25.49-25.49-25.49zM280.01 343.61c-4.47 0-8.88 1.18-12.75 3.42-7.86 4.54-12.74 13-12.74 22.08 0 14.06 11.44 25.5 25.49 25.5 14.06 0 25.49-11.44 25.49-25.5 0-9.08-4.88-17.54-12.74-22.08a25.483 25.483 0 0 0-12.75-3.42z" horiz-adv-x="1024" />
</font>
</defs></svg>

BIN
src/assets/font_icon/iconfont.ttf

BIN
src/assets/font_icon/iconfont.woff

BIN
src/assets/font_icon/iconfont.woff2

BIN
src/assets/images/erweima.png

After

Width: 263  |  Height: 266  |  Size: 26 KiB

BIN
src/assets/images/imgPay.png

After

Width: 389  |  Height: 428  |  Size: 45 KiB

BIN
src/assets/images/indexLogo.png

After

Width: 190  |  Height: 48  |  Size: 7.5 KiB

1
src/assets/images/user-selected.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><defs><style>.a{fill:#c5aa7b;}.b{fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px;}</style></defs><g transform="translate(-237 -477)"><circle class="a" cx="10" cy="10" r="10" transform="translate(237 477)"/><path class="b" d="M4328.382,541.825l4.2,4.545,6.721-7.707" transform="translate(-4086.843 -55)"/></g></svg>

1
src/assets/images/user-unselected.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><defs><style>.a,.c{fill:none;}.a{stroke:#ccc;stroke-width:1.5px;}.b{stroke:none;}</style></defs><g class="a"><circle class="b" cx="10" cy="10" r="10"/><circle class="c" cx="10" cy="10" r="9.25"/></g></svg>

BIN
src/assets/images/weiXintit.png

After

Width: 266  |  Height: 71  |  Size: 5.9 KiB

23
src/assets/svg/activity/activity-bind.svg

@ -0,0 +1,23 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="57" height="36" viewBox="0 0 57 36">
<defs>
<style>
.cls-1 {
fill: #333;
}
.cls-2 {
stroke: rgba(0,0,0,0);
stroke-miterlimit: 10;
fill: url(#linear-gradient);
}
</style>
<linearGradient id="linear-gradient" x1="0.024" y1="0.398" x2="0.983" y2="0.36" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#c5aa7b"/>
<stop offset="1" stop-color="#ffebc4"/>
</linearGradient>
</defs>
<g id="组_14916" data-name="组 14916" transform="translate(-998 -1144)">
<rect id="矩形_804" data-name="矩形 804" class="cls-1" width="57" height="36" transform="translate(998 1144)"/>
<path id="联合_150" data-name="联合 150" class="cls-2" d="M13927.221-11229.622l2.032-7.716h-1.431l3.11-4.643h2.257l-1.938,2.88h.627l-2.5,9.479Zm-16.691,0,1.532-6.07h13.948l-1.057,4.185a2.274,2.274,0,0,1-.333.738,2.651,2.651,0,0,1-.556.6,2.733,2.733,0,0,1-.707.4,2.182,2.182,0,0,1-.78.146Zm2.831-1.7h8.607a.667.667,0,0,0,.42-.153.7.7,0,0,0,.252-.4l.539-2.128h-9.144Zm-13.665,1.68.424-1.68h.588l2.7-10.679h6.4a1.575,1.575,0,0,1,.688.144,1.346,1.346,0,0,1,.5.4,1.346,1.346,0,0,1,.255.6,1.7,1.7,0,0,1-.034.721l-2.226,8.811h.605l-.424,1.68Zm3.174-1.68h3.972l.49-1.938h-3.976Zm.879-3.481h3.975l.546-2.159h-3.975Zm.934-3.7h3.976l.356-1.406a.419.419,0,0,0-.062-.375.413.413,0,0,0-.357-.153h-3.422Zm-10.283,7.251,5.3-.528-.406,1.609-5.294.5Zm43.054,1.563,2.054-7.8h2.04l-2.054,7.8Zm-6.757-.069,1.319-2.124,1.477-5.609h2.054l-1.477,5.609-1.333,2.124Zm-35.989-2.709,2.9-3.891h-1.917l4.224-5.641h2.487l-2.9,3.873h1.922l-3.107,4.146h1.938l-.382,1.512Zm18.126-4.149.423-1.68h-1.158l2.869-3.7h11.254l1,3.7h-1.071l-.423,1.68Zm1.795-1.7h10.092l-.612-2.229h-7.744Zm25.723.378-.108-2.607h-3.233l.007-.035-1.852,2.559h-2.442l2.835-3.979h6.774l.462,4.063Z" transform="translate(-12892 12398)"/>
</g>
</svg>

1
src/assets/svg/activity/activity-cart-black.svg
File diff suppressed because it is too large
View File

1
src/assets/svg/activity/activity-coupon-bg-0.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="380.002" height="150.004" viewBox="0 0 380.002 150.004"><defs><style>.a,.c{fill:#fff;}.b{fill:#c5aa7b;}.c{font-size:18px;font-family:MicrosoftYaHei, Microsoft YaHei;}</style></defs><g transform="translate(-359.998 -389.998)"><path class="a" d="M22403,20038h0l-60.01,0a12.5,12.5,0,0,0-24.979,0H22023v-150h295.012c-.008.188-.01.352-.01.5a12.5,12.5,0,0,0,25,0c0-.135,0-.285-.01-.5H22403v150Z" transform="translate(-21663 -19498)"/><path class="b" d="M22108,20038l0,0h-60.008a12.553,12.553,0,0,0-11.99-11.99v-125.02a12.459,12.459,0,0,0,12-12.49c0-.182,0-.336-.01-.5H22108v150h0v0Z" transform="translate(-21368 -19498)"/><text class="c" transform="translate(701 431)"><tspan x="0" y="0"></tspan><tspan x="0" y="27"></tspan><tspan x="0" y="54"></tspan><tspan x="0" y="81"></tspan></text></g></svg>

1
src/assets/svg/activity/activity-coupon-bg-1.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="380.002" height="150.004" viewBox="0 0 380.002 150.004"><defs><style>.a,.c{fill:#fff;}.b{fill:#c83732;}.c{font-size:18px;font-family:MicrosoftYaHei, Microsoft YaHei;}.d,.e{fill:#eee;}.e{font-size:20px;font-family:SourceHanSansCN-Medium, Source Han Sans CN;font-weight:500;}</style></defs><g transform="translate(-359.997 -389.998)"><path class="a" d="M22403,20038h0l-60.01,0a12.5,12.5,0,0,0-24.979,0H22023v-150h295.012c-.008.188-.01.352-.01.5a12.5,12.5,0,0,0,25,0c0-.135,0-.285-.01-.5H22403v150Z" transform="translate(-21663 -19498)"/><path class="b" d="M22108,20038l0,0h-60.008a12.553,12.553,0,0,0-11.99-11.99v-125.02a12.459,12.459,0,0,0,12-12.49c0-.182,0-.336-.01-.5H22108v150h0v0Z" transform="translate(-21368 -19498)"/><text class="c" transform="translate(701 431)"><tspan x="0" y="0"></tspan><tspan x="0" y="27"></tspan><tspan x="0" y="54">使</tspan><tspan x="0" y="81"></tspan></text><g transform="translate(-410.327 -5.059)"><g transform="translate(974.327 446.066)"><path class="d" d="M49.117,5.12a44,44,0,1,0,44,44A44.006,44.006,0,0,0,49.117,5.12Zm0,85.2A41.22,41.22,0,1,1,90.35,49.117,41.233,41.233,0,0,1,49.117,90.323Zm0,0" transform="translate(-5.12 -5.12)"/><path class="d" d="M157.973,147.625a32.192,32.192,0,0,0-11.715,15.039c0,.684,1.013,1.013,1.342,0s4.018-9.688,10.7-13.706c.658-.649.658-1-.329-1.333Zm29.527-3.831a32.079,32.079,0,0,0-19.057-1.1c-.569.382-.267,1.4.773,1.1,1.013-.293,10.257-2.2,17.359,1.04.951.178,1.218,0,.924-1.04ZM163.386,202.6a33.95,33.95,0,0,0,20.1,1.929c.6-.391.329-1.458-.747-1.191-1.1.267-10.968,1.9-18.346-1.787-.942-.231-1.271-.027-1,1.049Zm30.825-3.271a33.982,33.982,0,0,0,12.31-15.99c0-.711-1.067-1.067-1.431,0s-4.2,10.284-11.27,14.595c-.676.675-.676,1.031.391,1.4Zm0,0-32.22-51.7.658,2.675,1.7-2.346,2.675.356-1.342-2.347,1.342-2.675-2.675,1.013L162,142.283v2.675l-2.684,1.662M187.3,203.675l.658,2.675,1.7-2.347,2.675.356-1.342-2.347,1.342-2.675-2.675,1.013-2.347-2.018v2.675l-2.675,1.662" transform="translate(-131.548 -129.911)"/></g><text class="e" transform="matrix(0.914, -0.407, 0.407, 0.914, 994.171, 507.377)"><tspan x="0" y="0">已领取</tspan></text></g></g></svg>

21
src/assets/svg/activity/activity-miaosha.svg

@ -0,0 +1,21 @@
<svg id="组_13847" data-name="组 13847" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="57" height="36" viewBox="0 0 57 36">
<defs>
<style>
.cls-1 {
fill: #333;
}
.cls-2 {
stroke: rgba(0,0,0,0);
stroke-miterlimit: 10;
fill: url(#linear-gradient);
}
</style>
<linearGradient id="linear-gradient" x1="0.024" y1="0.398" x2="0.983" y2="0.36" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#c5aa7b"/>
<stop offset="1" stop-color="#ffebc4"/>
</linearGradient>
</defs>
<rect id="矩形_804" data-name="矩形 804" class="cls-1" width="57" height="36" transform="translate(0 0)"/>
<path id="联合_25" data-name="联合 25" class="cls-2" d="M4.968,12.538H3.825l.889-6.7H5.871l-.9,6.7Zm-3.21,0L3.036,5.185H1.264l.254-1.471H3.3l.274-1.6-1.591.055L2.246.606,7.02.415l-.274,1.56-1.638.066L4.821,3.714H6.459L6.2,5.185H4.56L3.282,12.538Zm-.615,0H0l1.431-6.7H2.587l-1.437,6.7Zm25.121-.013h-2.12l-.855-3.353h2.125l.856,3.353Zm-8.685,0,.916-1.578h.428a.5.5,0,0,0,.361-.149.676.676,0,0,0,.2-.393l.376-2.173h-5.7l-8.733,4.2L5.75,10.56l3-1.32L11.46,8l2.969-1.348h5.7l.18-1.02h1.88l-.181,1.02h5.322l-.281,1.578H21.737l-.415,2.409a2.371,2.371,0,0,1-.253.736,2.278,2.278,0,0,1-.455.6,1.906,1.906,0,0,1-.588.4,1.394,1.394,0,0,1-.642.149Zm-1.972,0H10.37l.909-1.571H14.4l1.076-1.782h2.127l-1.987,3.3-.006.053Zm12.9-.143,2.033-7.714H29.1L32.216.021h2.253L32.529,2.9h.629l-2.5,9.484Zm10.23-.068,2.053-7.8h2.039l-2.053,7.8Zm-6.759-.066,1.316-2.132L34.769,4.51h2.06L35.35,10.116l-1.337,2.132ZM6.144,8.913,8.312.536H9.768L7.6,8.913Zm2.808-.829L10.324.191H12.1L10.879,7.212l-1.919.872ZM27.073,6.021A13.808,13.808,0,0,1,24,5.388a18,18,0,0,1-2.722-1.129,25.27,25.27,0,0,1-3.1,1.129,16.77,16.77,0,0,1-3.283.632l.289-1.673a18.871,18.871,0,0,0,2.213-.5c.675-.193,1.337-.408,2.033-.666a18.355,18.355,0,0,1-2.187-1.667A13.566,13.566,0,0,1,15.907.191h2.754c.207.138.535.374,1.09.795a17.246,17.246,0,0,0,1.886,1.239c.916-.436,1.7-.857,2.332-1.239.71-.427,1.1-.657,1.345-.795h2.774a22.147,22.147,0,0,1-1.812,1.327c-.776.531-1.678,1.076-2.755,1.667.6.249,1.185.468,1.806.666a14.782,14.782,0,0,0,2.032.5l1.144.013-.186,1.66ZM12.45,5.838l.3-5.3h1.47l-.307,5.3ZM41.629,4.069l-.107-2.611H38.287l.006-.036L36.441,3.98H34L36.836,0h6.772l.462,4.069Z" transform="translate(6.485 11.813)"/>
</svg>

1
src/assets/svg/activity/activity-pintuan.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="57" height="36" viewBox="0 0 57 36"><defs><style>.a{fill:#333;}.b{stroke:rgba(0,0,0,0);stroke-miterlimit:10;fill:url(#a);}</style><linearGradient id="a" x1="0.024" y1="0.398" x2="0.983" y2="0.36" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#c5aa7b"/><stop offset="1" stop-color="#ffebc4"/></linearGradient></defs><g transform="translate(-176 -394)"><rect class="a" width="57" height="36" transform="translate(176 394)"/><path class="b" d="M28.5,12.383l2.033-7.715H29.1L32.215.021h2.252L32.529,2.9h.629l-2.5,9.484Zm-5.215,0H9.414V12.35l.3-1.66L10.2,7.947H7.742l-1.35,4.4H4.305l1.338-4.4h-.7l.3-1.7h.909l.956-3.137H5.81l.3-1.7H7.241L6.953.021H9.227L9.5,1.408h1.725L11.981,0h2.274l-.775,1.408H14.6l-.3,1.7H13.152L12.59,6.246h1.144l-.3,1.7H12.289L11.8,10.689H23.9a.494.494,0,0,0,.361-.156.69.69,0,0,0,.2-.375l1.5-8.457H16.977L15.632,9.26H13.774L15.425,0h12.7L26.257,10.5A2.539,2.539,0,0,1,26,11.24a2.612,2.612,0,0,1-.448.6,2.057,2.057,0,0,1-.575.4,1.48,1.48,0,0,1-.649.143ZM8.244,6.246H10.5l.561-3.137H9.213ZM0,12.369l.588-1.184H.875a.5.5,0,0,0,.347-.156.671.671,0,0,0,.2-.375l.121-.686H.3L2.045,7.137l.883-4.918H1.765L2.026.756H3.189L3.316.021H5.288L5.155.756h.87L5.763,2.219h-.87L4.44,4.756h.989L4.045,7l-.676,3.77a2.019,2.019,0,0,1-.6,1.135,1.492,1.492,0,0,1-1.043.463Zm38.734-.055,2.053-7.8h2.039l-2.053,7.8Zm-6.759-.066,1.317-2.131,1.478-5.605h2.06l-1.478,5.605-1.337,2.131ZM19.744,9.879l.91-1.592h.2a.494.494,0,0,0,.361-.156.664.664,0,0,0,.2-.375l.555-3.121h-1.03L17.919,9.879H16.127l3.015-5.244H17.056l.288-1.594h4.915l.147-.822h1.751l-.147.822h1.117L24.84,4.635h-1.11l-.6,3.359a2.537,2.537,0,0,1-.253.742,2.887,2.887,0,0,1-.448.6,2.189,2.189,0,0,1-.582.4,1.48,1.48,0,0,1-.649.143ZM41.629,4.068l-.107-2.611H38.286l.007-.035L36.441,3.98H34L36.835,0h6.773l.462,4.068Z" transform="translate(182.877 405.811)"/></g></svg>

1
src/assets/svg/activity/activity-type-miaosha.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="101.1" height="20" viewBox="0 0 101.1 20"><defs><style>.a,.e{fill:none;}.a{stroke:#c5aa7b;stroke-width:1.5px;}.b{fill:#c5aa7b;}.c{fill:url(#a);}.d{stroke:none;}</style><linearGradient id="a" x1="1" y1="0.469" x2="0.019" y2="0.441" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#ffebc4"/><stop offset="1" stop-color="#c5aa7b"/></linearGradient></defs><g transform="translate(-1021.729 -336)"><g transform="translate(1021.729 336)"><g transform="translate(0 0)"><g class="a" transform="translate(0)"><ellipse class="d" cx="9.583" cy="10" rx="9.583" ry="10"/><ellipse class="e" cx="9.583" cy="10" rx="8.833" ry="9.25"/></g><path class="b" d="M150.119,0l-3.833,6.82h3.757l-2.382,5.762,7.557-8.421H150.7L153.539,0Z" transform="translate(-140.836 4.24)"/></g></g><path class="c" d="M40.732,17l-.9-4.057h3.005l.211,1.008h7.134l1.4-1.886H40.13l2.1-4.057H37.758a19.88,19.88,0,0,1-4.282-.869,26.326,26.326,0,0,1-3.795-1.55,37.791,37.791,0,0,1-4.331,1.55,24.07,24.07,0,0,1-4.579.869l.405-2.3a27.042,27.042,0,0,0,3.085-.681Q25.746,4.6,27.1,4.11A26.083,26.083,0,0,1,24.05,1.82,21.31,21.31,0,0,1,22.184,0h3.843q.478.305,1.514,1.092a24.936,24.936,0,0,0,2.633,1.7q1.94-.916,3.254-1.7T35.307,0H39.17q-.86.705-2.518,1.82T32.8,4.11q1.18.493,2.516.916a21.43,21.43,0,0,0,2.844.681l5.24.043,1.337-2.562H40.734l.38-2.158h4.754L46.392.021h3.133L49,1.029H57.57l-.38,2.158H47.873L46.541,5.751H57.42l-.386,2.257H45.4l-1.071,1.9H55.78l-.3.54-3.533,5.661H43.525l.191.892Zm-35.4-.044L6.57,7.75H8.185L6.929,16.956ZM0,16.956,1.991,7.75H3.606L1.594,16.956Zm2.453,0,1.78-10.1H1.76l.356-2.02H4.59L4.979,2.63l-2.22.07L3.135.564,9.784.305,9.407,2.442l-2.285.094-.406,2.3H9l-.356,2.02H6.359l-1.781,10.1Zm31.218-.023-1.192-4.6h2.964l1.192,4.6Zm-9.158,0,1.28-2.16h.593a.714.714,0,0,0,.508-.212.951.951,0,0,0,.279-.539l.526-2.983H19.747L7.568,16.814l.455-2.583,4.182-1.808,3.774-1.7,4.149-1.848h7.951l.249-1.409h2.617L30.7,8.877h7.42l-.381,2.16h-7.42l-.584,3.311a3.253,3.253,0,0,1-.353,1.01,3.339,3.339,0,0,1-.629.822,2.885,2.885,0,0,1-.818.552,2.19,2.19,0,0,1-.9.2Zm-2.78,0H14.461l1.275-2.155h4.351l1.5-2.448h2.964l-2.77,4.529-.011.074Zm36.655-.023a1.465,1.465,0,0,1-1.274-.658,2.068,2.068,0,0,1-.291-1.6L59,2.325l.36-2.043L59.4.047H77.183l-.4,2.278H61.92L59.846,14.09a.5.5,0,0,0,.064.388.334.334,0,0,0,.29.153H74.612l-1.118,2.278Zm12.049-3.757a12.119,12.119,0,0,1-2.7-1.386,18.257,18.257,0,0,1-3.188,1.386,22.681,22.681,0,0,1-3.812.869l.5-2.842q1.256-.282,2.33-.634a17.054,17.054,0,0,0,2.056-.822,13.279,13.279,0,0,1-1.6-2.865A25.849,25.849,0,0,1,62.863,3.24h3a23.081,23.081,0,0,0,1.173,2.678,10.194,10.194,0,0,0,1.371,2.019,18.658,18.658,0,0,0,2.073-2.019q1.02-1.151,2.128-2.678h3a37.809,37.809,0,0,1-2.447,3.617A22.36,22.36,0,0,1,70.55,9.723a11.449,11.449,0,0,0,1.777.822,19.609,19.609,0,0,0,2.116.634l-.5,2.842A17.854,17.854,0,0,1,70.437,13.151ZM8.564,11.977,11.594.47h2.024L10.587,11.977ZM14.4,0h2.474l-1.7,9.635-2.686,1.2Zm2.967,7.75L17.788.47h2.044l-.425,7.28Z" transform="translate(1045.646 338)"/></g></svg>

1
src/assets/svg/activity/activity-type-pintuan.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="109.19" height="18.41" viewBox="0 0 109.19 18.41"><defs><style>.a{stroke:rgba(0,0,0,0);stroke-miterlimit:10;fill:url(#a);}.b{fill:#c5aa7b;}</style><linearGradient id="a" x1="0.024" y1="0.398" x2="0.983" y2="0.36" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#c5aa7b"/><stop offset="1" stop-color="#ffebc4"/></linearGradient></defs><g transform="translate(-1019.389 -306.09)"><path class="a" d="M32.529,17.675H13.145l.009-.05.415-2.283.685-3.763h-3.44L8.926,17.625H6.013l1.865-6.047H6.907l.424-2.332H8.605L9.932,4.938H8.113l.424-2.332h1.577L9.71.7h3.177l.383,1.9h2.4L16.736.677h3.172L18.832,2.606h1.557l-.422,2.332h-1.6l-.782,4.308h1.6l-.424,2.332h-1.6l-.683,3.763H33.392a.717.717,0,0,0,.5-.207.958.958,0,0,0,.276-.522l2.1-11.6H23.717L21.832,13.384H19.243L21.548.677H39.289L36.676,15.085A3.416,3.416,0,0,1,35.7,16.92a2.835,2.835,0,0,1-.809.556,2.164,2.164,0,0,1-.9.2ZM11.518,9.247h3.158l.78-4.308H12.867ZM0,17.65l.821-1.623h.405a.7.7,0,0,0,.483-.212.956.956,0,0,0,.276-.523l.17-.937H.415l2.444-3.881L4.086,3.718H2.469L2.83,1.71H4.451L4.633.7H7.385L7.2,1.71H8.414L8.051,3.718H6.837L6.2,7.2H7.582L5.646,10.284l-.938,5.175a2.78,2.78,0,0,1-.839,1.557,2.1,2.1,0,0,1-1.46.635ZM41.833,17.1l-.987-3.918h3.306l.228.977h7.858l1.535-1.825h-12.6l2.3-3.931H40.6l.312-2.208,3.865.029,1.473-2.473H41.841l.415-2.1h5.229l.579-.975h3.452l-.569.975h9.421l-.414,2.1H49.7L48.227,6.221H60.207L59.781,8.4h-12.8L45.8,10.24H58.4l-.323.526-3.894,5.465H44.912l.207.865Zm19.439-.089a1.686,1.686,0,0,1-1.4-.63,1.793,1.793,0,0,1-.316-1.546L61.95,2.906,62.339.937,62.384.7H81.968l-.443,2.2H65.166L62.881,14.279a.449.449,0,0,0,.072.382.366.366,0,0,0,.316.142H79.132l-1.229,2.2Zm-33.7-2.769,1.272-2.187h.285a.741.741,0,0,0,.506-.216.912.912,0,0,0,.278-.514l.776-4.291H29.255l-4.22,7.208H22.525L26.742,7.03H23.827l.4-2.183H31.09l.2-1.129h2.447l-.2,1.129H35.1L34.7,7.03H33.14L32.3,11.649a3.287,3.287,0,0,1-.355,1.013,3.475,3.475,0,0,1-.627.821,2.939,2.939,0,0,1-.809.556,2.2,2.2,0,0,1-.911.2Zm46.967-.862A14.119,14.119,0,0,1,71.57,12.04a21.762,21.762,0,0,1-3.513,1.337,28.555,28.555,0,0,1-4.194.839l.552-2.745c.922-.182,1.772-.388,2.566-.616a20.806,20.806,0,0,0,2.258-.794,12.9,12.9,0,0,1-1.762-2.774,22.736,22.736,0,0,1-1.274-3.5h3.307A21.541,21.541,0,0,0,70.8,6.385a9.943,9.943,0,0,0,1.51,1.949A20.32,20.32,0,0,0,74.6,6.385c.749-.751,1.527-1.607,2.341-2.593h3.305a37.151,37.151,0,0,1-2.693,3.5,23.658,23.658,0,0,1-2.881,2.774,13.348,13.348,0,0,0,1.952.794,23.592,23.592,0,0,0,2.33.616L78.4,14.216A22.3,22.3,0,0,1,74.543,13.376Z" transform="translate(1046 306.325)"/><g transform="translate(1019.389 306.09)"><path class="b" d="M3.809,102.565H1.335A5.891,5.891,0,0,1,4.654,98.1l1.028-.509L4.691,97a3.964,3.964,0,0,1,1.328-7.273,6.444,6.444,0,0,1,.909-1.31h-.2A5.236,5.236,0,0,0,1.5,93.6a5.155,5.155,0,0,0,1.736,3.873A7.273,7.273,0,0,0,0,103.14v.672H3.527a10.063,10.063,0,0,1,.282-1.245Zm13.645-12.9A3.955,3.955,0,0,1,19.092,97l-.991.591,1.026.509a5.891,5.891,0,0,1,3.328,4.464H19.728A10.213,10.213,0,0,1,20,103.82h3.846l-.056-.672a7.273,7.273,0,0,0-3.235-5.664,5.155,5.155,0,0,0,1.735-3.873,5.236,5.236,0,0,0-5.228-5.228h-.453a6.462,6.462,0,0,1,.845,1.282ZM16,97.658h0Z" transform="translate(0 -86.838)"/><path class="b" d="M240.021,1.254a4.545,4.545,0,0,1,2.336,8.465l-1.963,1.191,2.045,1a6.964,6.964,0,0,1,3.818,4.746H233.775a6.964,6.964,0,0,1,3.818-4.746l2.055-1-1.965-1.173a4.545,4.545,0,0,1,2.337-8.463v-.02Zm0-1.227a5.8,5.8,0,0,0-2.982,10.765,8.328,8.328,0,0,0-4.719,7.118h15.392a8.328,8.328,0,0,0-4.718-7.119A5.8,5.8,0,0,0,240.021,0V.027Z" transform="translate(-228.257 0)"/></g></g></svg>

1
src/assets/svg/activity/activity-type-vip.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="115.594" height="19.004" viewBox="0 0 115.594 19.004"><defs><style>.a{stroke:rgba(0,0,0,0);fill:url(#a);}.b{fill:#c5aa7b;}</style><linearGradient id="a" x1="1" y1="0.469" x2="0.019" y2="0.441" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#ffebc4"/><stop offset="1" stop-color="#c5aa7b"/></linearGradient></defs><g transform="translate(-1020.99 -277.997)"><path class="a" d="M15984.2-10251l-.764-4.062h3.451l.177,1.014h8.193l1.963-2.771h-13.148l2.9-4.062h-3.781l.579-2.16h4.743l1.274-1.786h-4.67l.579-2.16h5.611l.74-1.01h3.4l-.691,1.01h9.839l-.579,2.16h-10.8l-1.279,1.786h12.4l-.579,2.16h-13.362l-1.355,1.9h13.149l-.379.539-4.665,6.552h-9.674l.157.89Zm23.748-.021,1.432-2.023h2.559a.916.916,0,0,0,.575-.209.992.992,0,0,0,.35-.515l.068-.262h-9.979l.482-1.806h10.78l2.324-.966H16005.5l.512-1.9h16.551l-.507,1.9-2.256.966h4.228l-.487,1.806h-7.349l-.116.446a3.115,3.115,0,0,1-.467,1,3.978,3.978,0,0,1-.772.813,3.684,3.684,0,0,1-.969.551,2.947,2.947,0,0,1-1.062.2Zm-53.843,0-.088-.543H15938l2.719-4.529h-1.5l.623-2.325h19.6l-.619,2.325h-15l-1.328,2.229,11.158-.024-.181-1.242h3.475l.636,4.11Zm20.176-.028-4.46-2.98-5.824,2.98h-5.072l9.477-4.858.539-2.02h4.014l-.708,2.654-1.251.636h2.771l5.752,3.588Zm2.128-3.024,1.171-4.368a.44.44,0,0,0-.1-.435.634.634,0,0,0-.491-.177h-11.905l-1.336,4.979h-3.262l1.862-6.95h16.62a2.431,2.431,0,0,1,.941.173,2.027,2.027,0,0,1,.7.471,1.455,1.455,0,0,1,.366.691,1.687,1.687,0,0,1-.024.849l-1.278,4.767Zm29.806-5.378,1.375-5.145h17.75l-.684,2.563a3.258,3.258,0,0,1-.471,1.01,3.845,3.845,0,0,1-.771.82,3.689,3.689,0,0,1-.97.551,2.973,2.973,0,0,1-1.062.2Zm3.56-2.067h10.751a.9.9,0,0,0,.575-.213.966.966,0,0,0,.351-.516l.076-.281h-11.483Zm-68.523,1.951.623-2.325h17.518l-.624,2.325Zm21.233-1.854,1.754-6.553h19.158l-1.07,3.99a2.984,2.984,0,0,1-.467,1,3.856,3.856,0,0,1-.769.813,3.759,3.759,0,0,1-.969.551,2.934,2.934,0,0,1-1.042.2Zm3.516-2h12.489a.916.916,0,0,0,.575-.209.993.993,0,0,0,.35-.52l.482-1.806h-13.217Zm-8.311.519-.772-3.077h-10.521l-2.466,3.077h-3.407l4.015-5.072h15.284l1.271,5.072Zm48.2-2.28.555-2.063h8.267l-.089-.729h3.523l.085.729h8.853l-.555,2.063Z" transform="translate(-14891.152 10547)"/><path class="b" d="M103.587,160a1.955,1.955,0,0,1,1.581.8l3.6,4.951a1.955,1.955,0,0,1-.131,2.462L99.46,178.361a1.955,1.955,0,0,1-2.9,0l-9.177-10.143a1.955,1.955,0,0,1-.131-2.462l3.6-4.951a1.955,1.955,0,0,1,1.581-.8h11.153Zm0,1.676H92.434a.279.279,0,0,0-.226.115l-3.6,4.951a.279.279,0,0,0,.019.352L97.8,177.236a.279.279,0,0,0,.415,0l9.177-10.143a.279.279,0,0,0,.019-.352l-3.6-4.951a.279.279,0,0,0-.226-.115Zm-1.673,4.772a.838.838,0,1,1,1.242,1.125l-4.524,5a.838.838,0,0,1-1.242,0l-4.509-4.984a.838.838,0,1,1,1.242-1.125l3.888,4.3Z" transform="translate(934.112 117.997)"/></g></svg>

1
src/assets/svg/activity/activity-type-zhekou.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="114.686" height="20.222" viewBox="0 0 114.686 20.222"><defs><style>.a{fill:#c5aa7b;stroke:#c5aa7b;stroke-width:0.2px;}.b{fill:url(#a);}</style><linearGradient id="a" x1="1" y1="0.469" x2="0.019" y2="0.441" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#ffebc4"/><stop offset="1" stop-color="#c5aa7b"/></linearGradient></defs><g transform="translate(-520.151 -778.396)"><g transform="translate(520.304 778.5)"><path class="a" d="M514.917,170.943a1.9,1.9,0,0,0-.951-.256,1.909,1.909,0,1,0,.952.256Zm-.374,1.989a.673.673,0,1,1,0-.672.674.674,0,0,1,0,.672Z" transform="translate(-502.333 -167.45)"/><path class="a" d="M20.245,5.179,15.14.355A.982.982,0,0,0,14.993.24a.989.989,0,0,0-.871-.215l-6.8,1.617a1.538,1.538,0,0,0-.907.679L.157,13.248a.979.979,0,0,0,.353,1.33l9.1,5.292a.96.96,0,0,0,1.053-.056h9.064a.972.972,0,0,0,.967-.973V6.223a1.547,1.547,0,0,0-.449-1.045Zm-2.92,2.278-1.4-4.644,3.464,3.273a.386.386,0,0,1,.06.14v12.34H11.477l5.72-9.98a1.551,1.551,0,0,0,.129-1.13Zm-1.205.509L9.994,18.653,1.368,13.634,7.492,2.947a.4.4,0,0,1,.122-.092L14.179,1.3l1.958,6.518a.407.407,0,0,1-.017.152Z" transform="translate(-0.028 0)"/></g><path class="b" d="M-2325.064,15234l1.24-2.008h.4a.809.809,0,0,0,.553-.223.909.909,0,0,0,.3-.523l.241-1.379h-3.011l3.692-3.854.935-5.3h-2.477l.408-2.312h2.476l.246-1.4h2.989l-.247,1.4h2.592l-.209,1.186.065-.367.227-1.285,12.025-.795-.391,2.219-9.116.584-.495,2.8h9.013l-.39,2.219h-1.823l-1.181,6.7h5.1a.566.566,0,0,0,.366-.15.567.567,0,0,0,.211-.34l.465-2.638-2.84.606.414-2.334,2.843-.632.906-5.137h-2.545l.408-2.312h2.544l.285-1.611h2.894l-.283,1.611h2.638l-.408,2.312h-2.638l-.792,4.483,3.011-.653-.417,2.357-3.01.655-.762,4.318a2.093,2.093,0,0,1-.72,1.239,2,2,0,0,1-1.34.513h-9.584l1.586-8.99h-4.344l-1.181,6.7-1.384,2.289h-2.872l1.384-2.289,1.437-8.146-3.182,3.338-.806,4.576a2.8,2.8,0,0,1-.387,1,3.552,3.552,0,0,1-.706.818,3.261,3.261,0,0,1-.913.548,2.758,2.758,0,0,1-1.017.2Zm6.984-11.277h2.592l.354-2.009h-2.592Zm-16.825,11.254,1.177-2.312h2.383a.832.832,0,0,0,.552-.21.885.885,0,0,0,.3-.536l1.746-9.9h-6.982l.407-2.312h6.982l.28-1.587h2.872l-.28,1.587h1.1l-.407,2.313h-1.1l-1.832,10.39a2.893,2.893,0,0,1-.376,1.006,3.241,3.241,0,0,1-.692.816,3.205,3.205,0,0,1-.914.55,2.756,2.756,0,0,1-1.015.2Zm-14.379,0h-2.988l-2.525-6.328h2.986l.614,1.541.831-1.213h2.9l-1.835,2.987h-1.168l.266.677h3.073l2.549-14.452h8.523l-2.515,14.266a2.742,2.742,0,0,1-.37.97,3.229,3.229,0,0,1-.662.782,3.206,3.206,0,0,1-.863.524,2.538,2.538,0,0,1-.815.192h0c-.059,0-.117.007-.177.007h-.711Zm4.75-2.334h2.708a.738.738,0,0,0,.474-.176.707.707,0,0,0,.264-.432l.766-4.344h-3.339Zm1.279-7.264h3.339l.882-5h-3.339Zm-13.688,9.526a2.232,2.232,0,0,1-.956-.2,2.127,2.127,0,0,1-.708-.539,1.924,1.924,0,0,1-.4-.8,2.4,2.4,0,0,1-.021-1l2.512-14.244h10.833l-1.26,7.146a2.8,2.8,0,0,1-.374.991,3.347,3.347,0,0,1-.688.807,3.273,3.273,0,0,1-.911.548,2.808,2.808,0,0,1-1.038.2h-5.563l-.812,4.6a.637.637,0,0,0,.114.539.584.584,0,0,0,.474.21h1.835l.458,1.75Zm1.784-9.151h4.693a.833.833,0,0,0,.552-.213.882.882,0,0,0,.3-.522l.179-1.017h-5.418Zm.671-3.807h5.417l.3-1.729h-5.417Zm-14.512,12.912,2.943-16.694h9.282l-3.281,7.237h2.005l-4.28,8.268h-3.148l3.389-6.395h-2.146l3.194-6.863h-2.284l-2.546,14.447Zm76.511-.094h-2.9l.4-2.285,2.109-11.958.053-.307.354-2h11.3l-.009.047-.4,2.242-2.207,12.515a2.039,2.039,0,0,1-.734,1.249,2.021,2.021,0,0,1-1.326.5Zm.408-2.312h5.02a.575.575,0,0,0,.363-.14.554.554,0,0,0,.214-.348l2.018-11.444h-5.511Zm-42-2.427-1.706-5.559h3.247l1.7,5.559Zm-10.5-11.839,0-.023,0,.023Z" transform="translate(2915.998 -14436.498)"/></g></svg>

1
src/assets/svg/activity/activity-vip.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="57" height="36" viewBox="0 0 57 36"><defs><style>.a{fill:#333;}.b{stroke:rgba(0,0,0,0);stroke-miterlimit:10;fill:url(#a);}</style><linearGradient id="a" x1="0.024" y1="0.398" x2="0.983" y2="0.36" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#c5aa7b"/><stop offset="1" stop-color="#ffebc4"/></linearGradient></defs><g transform="translate(-428 -1656)"><rect class="a" width="57" height="36" transform="translate(428 1656)"/><path class="b" d="M9223.417-12197.617l2.031-7.716h-1.431l3.11-4.648h2.259l-1.937,2.88h.622l-2.5,9.484Zm-21.665,0-.055-.4H9190l2.071-3.31h-1.1l.5-1.7H9205.8l-.5,1.7h-10.961l-1.012,1.631h8.148l-.1-.926h2.537l.384,3Zm14.74-.016-3.2-2.179-4.311,2.179h-3.705l7.014-3.551.436-1.475h2.933l-.57,1.937-.925.463h2.022l4.134,2.626Zm17.156-.055,2.054-7.8h2.041l-2.057,7.8Zm-6.757-.067,1.318-2.127,1.477-5.607h2.057l-1.478,5.607-1.336,2.127Zm-8.788-2.093.94-3.187.01-.043a.305.305,0,0,0-.07-.275.459.459,0,0,0-.359-.129h-8.711l-1.073,3.635h-2.365l1.5-5.075H9220.1l.095,0a1.587,1.587,0,0,1,.588.125,1.382,1.382,0,0,1,.5.344,1.043,1.043,0,0,1,.254.5,1.25,1.25,0,0,1-.036.616l-1.027,3.481Zm-25.574-4.012.5-1.7h12.794l-.5,1.7Zm15.545-1.354,1.409-4.786h13.979l-.857,2.917-.028.086a2.385,2.385,0,0,1-.334.641,2.865,2.865,0,0,1-.579.592,2.712,2.712,0,0,1-.717.4,2.184,2.184,0,0,1-.681.144l-.086,0Zm2.592-1.458h9.123a.681.681,0,0,0,.423-.156.724.724,0,0,0,.251-.328l.016-.049.389-1.318h-9.655Zm25.879.738-.107-2.607H9233.2l.007-.034-1.852,2.556h-2.441l2.831-3.978h6.775l.462,4.063Zm-31.942-.361-.5-2.246h-7.686l-1.862,2.246h-2.488l3.03-3.705h11.166l.827,3.705Z" transform="translate(-8758 13878)"/></g></svg>

1
src/assets/svg/activity/activity-zhekou.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="57" height="36" viewBox="0 0 57 36"><defs><style>.a{fill:#333;}.b{stroke:rgba(0,0,0,0);stroke-miterlimit:10;fill:url(#a);}</style><linearGradient id="a" x1="0.024" y1="0.398" x2="0.983" y2="0.36" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#c5aa7b"/><stop offset="1" stop-color="#ffebc4"/></linearGradient></defs><g transform="translate(-176.051 -671)"><rect class="a" width="57" height="36" transform="translate(176.051 671)"/><path class="b" d="M.194,12.236l.89-1.452h.288a.566.566,0,0,0,.4-.154.67.67,0,0,0,.221-.377l.174-.993H0L2.645,6.492l.67-3.815H1.541L1.834,1.01H3.61L3.792,0H5.934l-.18,1.01H7.616L7.676.673,16.3.1l-.281,1.6-6.537.417L9.124,4.135h6.47l-.282,1.6H14.006l-.851,4.817h3.128v.008h.53a.381.381,0,0,0,.26-.114.406.406,0,0,0,.155-.244l.335-1.9-2.036.442.295-1.679,2.036-.455.649-3.7H16.685l.288-1.667H18.8L19,.088H21.08l-.2,1.155h1.894L22.48,2.91h-1.9l-.562,3.226,2.156-.471-.294,1.694-2.165.478-.542,3.1a1.5,1.5,0,0,1-.522.894,1.406,1.406,0,0,1-.959.368H10.824l1.139-6.471H8.842L8,10.557,7.006,12.2H4.943l.991-1.646L6.966,4.69l-2.278,2.4-.583,3.3a1.991,1.991,0,0,1-.274.72,2.566,2.566,0,0,1-.51.591,2.518,2.518,0,0,1-.657.4,2,2,0,0,1-.723.139ZM5.212,4.12H7.067l.254-1.444H5.459ZM31.69,12.23l2.036-7.62H32.292L35.407.021h2.264L35.729,2.87h.623l-2.5,9.36Zm10.248-.067,2.057-7.7h2.043l-2.057,7.7ZM35.173,12.1,36.492,10l1.48-5.538h2.057L38.549,10l-1.333,2.1ZM23.564,12.07H21.489l.287-1.648,1.515-8.607.04-.217L23.584.154H31.69l-.007.036L31.4,1.8l-1.581,9a1.518,1.518,0,0,1-.531.9,1.439,1.439,0,0,1-.95.364Zm.295-1.667h3.6a.409.409,0,0,0,.255-.1.375.375,0,0,0,.154-.248l1.446-8.238H25.367Zm20.98-6.384-.1-2.574H41.5l.006-.034L39.647,3.939H37.2L40.035.008h6.786l.469,4.011Z" transform="translate(180.905 682.653)"/></g></svg>

1
src/assets/svg/collect.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><defs><style>.a{fill:#c5aa7b;}</style></defs><g transform="translate(-41.333 -330.667)"><g transform="translate(41.333 330.667)"><path class="a" d="M9.568.739a.5.5,0,0,1,.863,0L13.394,5.81a.5.5,0,0,0,.309.232l5.539,1.405a.5.5,0,0,1,.266.8l-3.72,4.59a.5.5,0,0,0-.11.352l.442,5.987a.5.5,0,0,1-.7.5L10.2,17.4a.5.5,0,0,0-.4,0L4.578,19.671a.5.5,0,0,1-.7-.5l.442-5.987a.5.5,0,0,0-.11-.352L.492,8.247a.5.5,0,0,1,.266-.8L6.3,6.042a.5.5,0,0,0,.309-.232Z"/></g></g></svg>

1
src/assets/svg/compose-price.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="75.622" height="19.873" viewBox="0 0 75.622 19.873"><defs><style>.a{stroke:rgba(0,0,0,0);stroke-miterlimit:10;fill:url(#a);}</style><linearGradient id="a" x1="0.024" y1="0.398" x2="0.983" y2="0.36" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#c5aa7b"/><stop offset="1" stop-color="#ffebc4"/></linearGradient></defs><path class="a" d="M13944.659-11223.126l3.1-11.767h-2.182l4.743-7.079h3.441l-2.956,4.392h.955l-3.811,14.454Zm-25.452,0,2.336-9.257h21.27l-1.611,6.38a3.424,3.424,0,0,1-.508,1.127,4.013,4.013,0,0,1-.847.911,4.19,4.19,0,0,1-1.079.615,3.337,3.337,0,0,1-1.189.224Zm4.317-2.589h13.124a1.012,1.012,0,0,0,.641-.234,1.059,1.059,0,0,0,.385-.6l.821-3.245h-13.942Zm-20.838,2.562.646-2.562h.9l4.115-16.284h9.754a2.4,2.4,0,0,1,1.05.219,2.082,2.082,0,0,1,.764.614,2.057,2.057,0,0,1,.389.918,2.577,2.577,0,0,1-.052,1.1l-3.395,13.435h.923l-.645,2.562Zm4.838-2.562h6.058l.747-2.956h-6.062Zm1.343-5.308h6.061l.831-3.294h-6.061Zm1.422-5.646h6.062l.544-2.146a.632.632,0,0,0-.1-.571.622.622,0,0,0-.544-.233h-5.218Zm-15.68,11.057,8.083-.808-.619,2.454-8.074.759Zm65.651,2.384,3.132-11.9h3.11l-3.132,11.9Zm-10.3-.105,2.012-3.239,2.251-8.554h3.134l-2.253,8.554-2.032,3.239Zm-54.878-4.132,4.421-5.933h-2.923l6.44-8.6h3.795l-4.42,5.906h2.931l-4.738,6.323h2.956l-.582,2.3Zm27.639-6.328.644-2.562h-1.765l4.375-5.645h17.161l1.526,5.645h-1.634l-.645,2.562Zm2.738-2.588h15.389l-.935-3.4h-11.81Zm39.223.577-.164-3.976h-4.931l.011-.053-2.825,3.9h-3.724l4.322-6.066h10.332l.7,6.2Z" transform="translate(-13893.34 11242.499)"/></svg>

1
src/assets/svg/coupon-selected.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="350" height="110.001" viewBox="0 0 350 110.001"><defs><style>.a{fill:url(#a);}.b,.c{fill:none;}.c{stroke:#ffebc4;stroke-dasharray:2;}.d,.e{stroke:none;}.e{fill:#ffebc4;}</style><linearGradient id="a" x1="1" y1="0.5" x2="0" y2="0.5" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#b99b5b"/><stop offset="1" stop-color="#e8c47e"/></linearGradient></defs><g transform="translate(-5495 3362)"><path class="a" d="M350,129H280a20,20,0,1,0-40,0H0V19H240.025c-.016.326-.025.662-.025,1a20,20,0,0,0,40,0c0-.331-.008-.668-.025-1H350V129Z" transform="translate(5495 -3381)"/><g class="b" transform="translate(5500 -3386)"><path class="d" d="M340,129H279.5a25.006,25.006,0,0,0-49,0H0V29H230.319a25,25,0,0,0,49.364,0H340V129Z"/><path class="e" d="M 339.0002746582031 128.0007019042969 L 339.0002746582031 29.99980545043945 L 280.5207824707031 29.99980545043945 C 278.1531372070312 42.21995544433594 267.5537414550781 51.00044250488281 255.0005950927734 51.00044250488281 C 242.4473876953125 51.00044250488281 231.8480529785156 42.21995544433594 229.4803924560547 29.99980545043945 L 1.000001430511475 29.99980545043945 L 1.000046014785767 127.9997177124023 L 229.6965179443359 127.9997177124023 C 232.4457702636719 116.3620147705078 242.9576721191406 107.9999389648438 255.0005950927734 107.9999389648438 C 267.04345703125 107.9999389648438 277.555419921875 116.3620300292969 280.3047485351562 127.9997253417969 L 339.0002746582031 128.0007019042969 M 340.0002746582031 129.0007171630859 L 279.5006408691406 128.9997100830078 C 277.1479187011719 117.4107131958008 266.8446044921875 108.9999389648438 255.0005950927734 108.9999389648438 C 243.1569061279297 108.9999389648438 232.8531799316406 117.4110336303711 230.5006408691406 128.9997100830078 L 4.642000931198709e-05 128.9997100830078 L 9.654652330937097e-07 28.99980545043945 L 230.3186340332031 28.99980545043945 C 232.2749176025391 41.16875839233398 242.6547241210938 50.00044250488281 255.0005950927734 50.00044250488281 C 267.3460388183594 50.00044250488281 277.726318359375 41.16839599609375 279.6825561523438 28.99980545043945 L 340.0002746582031 28.99980545043945 L 340.0002746582031 129.0007171630859 Z"/></g><path class="c" d="M5753.686-3334.094v54.933" transform="translate(2)"/></g></svg>

1
src/assets/svg/coupon-unselected.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="350" height="110.001" viewBox="0 0 350 110.001"><defs><style>.a{fill:#f3f4f5;}.b,.c{fill:none;}.c{stroke:#e8e9eb;stroke-dasharray:2;}.d,.e{stroke:none;}.e{fill:#e8e9eb;}</style></defs><g transform="translate(-5495 3362)"><path class="a" d="M350,129H280a20,20,0,1,0-40,0H0V19H240.025c-.016.326-.025.662-.025,1a20,20,0,0,0,40,0c0-.331-.008-.668-.025-1H350V129Z" transform="translate(5495 -3381)"/><g class="b" transform="translate(5500 -3386)"><path class="d" d="M340,129H279.5a25.006,25.006,0,0,0-49,0H0V29H230.319a25,25,0,0,0,49.364,0H340V129Z"/><path class="e" d="M 339.0002746582031 128.0007019042969 L 339.0002746582031 29.99980545043945 L 280.5207824707031 29.99980545043945 C 278.1531372070312 42.21995544433594 267.5537414550781 51.00044250488281 255.0005950927734 51.00044250488281 C 242.4473876953125 51.00044250488281 231.8480529785156 42.21995544433594 229.4803924560547 29.99980545043945 L 1.000001430511475 29.99980545043945 L 1.000046014785767 127.9997177124023 L 229.6965179443359 127.9997177124023 C 232.4457702636719 116.3620147705078 242.9576721191406 107.9999389648438 255.0005950927734 107.9999389648438 C 267.04345703125 107.9999389648438 277.555419921875 116.3620300292969 280.3047485351562 127.9997253417969 L 339.0002746582031 128.0007019042969 M 340.0002746582031 129.0007171630859 L 279.5006408691406 128.9997100830078 C 277.1479187011719 117.4107131958008 266.8446044921875 108.9999389648438 255.0005950927734 108.9999389648438 C 243.1569061279297 108.9999389648438 232.8531799316406 117.4110336303711 230.5006408691406 128.9997100830078 L 4.642000931198709e-05 128.9997100830078 L 9.654652330937097e-07 28.99980545043945 L 230.3186340332031 28.99980545043945 C 232.2749176025391 41.16875839233398 242.6547241210938 50.00044250488281 255.0005950927734 50.00044250488281 C 267.3460388183594 50.00044250488281 277.726318359375 41.16839599609375 279.6825561523438 28.99980545043945 L 340.0002746582031 28.99980545043945 L 340.0002746582031 129.0007171630859 Z"/></g><path class="c" d="M5753.686-3334.094v54.933" transform="translate(2)"/></g></svg>

1
src/assets/svg/coupon-used.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="148" height="131" viewBox="0 0 148 131"><defs><style>.a{fill:#fff;stroke:#707070;}.b{clip-path:url(#a);}.c{opacity:0.38;}.d,.e{fill:#ccc;}.e{font-size:34px;font-family:MicrosoftYaHei, Microsoft YaHei;}</style><clipPath id="a"><rect class="a" width="148" height="131" transform="translate(632 150)"/></clipPath></defs><g class="b" transform="translate(-632 -150)"><g class="c" transform="matrix(0.998, -0.07, 0.07, 0.998, -24.189, -62.053)"><g transform="translate(-271 -271.498)"><path class="d" d="M71.307,5.12a66.187,66.187,0,1,0,66.187,66.187A66.2,66.2,0,0,0,71.307,5.12Zm0,128.176a62.009,62.009,0,1,1,62.029-61.989A62.03,62.03,0,0,1,71.307,133.3Zm0,0" transform="translate(926.88 514.378)"/><path class="d" d="M163.239,150.577A48.428,48.428,0,0,0,145.616,173.2c0,1.03,1.524,1.524,2.019,0s6.044-14.575,16.1-20.618c.99-.976.99-1.511-.495-2.006Zm44.419-5.763a48.258,48.258,0,0,0-28.668-1.658c-.856.575-.4,2.1,1.163,1.658,1.524-.441,15.43-3.3,26.114,1.564,1.431.267,1.832,0,1.391-1.564Zm-36.276,88.464s12.836,6.351,30.232,2.9c.9-.588.495-2.193-1.123-1.792-1.658.4-16.5,2.861-27.6-2.688-1.417-.348-1.912-.04-1.511,1.578Zm46.371-4.921s12.208-7.515,18.519-24.055c0-1.07-1.6-1.6-2.153,0s-6.311,15.47-16.955,21.956c-1.016,1.016-1.016,1.551.588,2.1Zm0,0-48.47-77.78.989,4.025,2.554-3.53,4.025.535-2.019-3.53,2.019-4.025-4.025,1.524-3.53-3.035v4.025l-4.038,2.5m42.106,85.83.989,4.025,2.554-3.53,4.025.535-2.019-3.53,2.019-4.025-4.025,1.524-3.53-3.035v4.025l-4.025,2.5" transform="translate(808.515 395.57)"/></g><text class="e" transform="matrix(0.899, -0.438, 0.438, 0.899, 687.268, 345.311)"><tspan x="0" y="0">已使用</tspan></text></g></g></svg>

1
src/assets/svg/coupon-useless.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="148" height="131" viewBox="0 0 148 131"><defs><style>.a{fill:#fff;stroke:#707070;}.b{clip-path:url(#a);}.c{opacity:0.38;}.d,.e{fill:#ccc;}.e{font-size:34px;font-family:MicrosoftYaHei, Microsoft YaHei;}</style><clipPath id="a"><rect class="a" width="148" height="131" transform="translate(632 150)"/></clipPath></defs><g class="b" transform="translate(-632 -150)"><g class="c" transform="matrix(0.998, -0.07, 0.07, 0.998, -24.189, -62.053)"><g transform="translate(-271 -271.498)"><path class="d" d="M71.307,5.12a66.187,66.187,0,1,0,66.187,66.187A66.2,66.2,0,0,0,71.307,5.12Zm0,128.176a62.009,62.009,0,1,1,62.029-61.989A62.03,62.03,0,0,1,71.307,133.3Zm0,0" transform="translate(926.88 514.378)"/><path class="d" d="M163.239,150.577A48.428,48.428,0,0,0,145.616,173.2c0,1.03,1.524,1.524,2.019,0s6.044-14.575,16.1-20.618c.99-.976.99-1.511-.495-2.006Zm44.419-5.763a48.258,48.258,0,0,0-28.668-1.658c-.856.575-.4,2.1,1.163,1.658,1.524-.441,15.43-3.3,26.114,1.564,1.431.267,1.832,0,1.391-1.564Zm-36.276,88.464s12.836,6.351,30.232,2.9c.9-.588.495-2.193-1.123-1.792-1.658.4-16.5,2.861-27.6-2.688-1.417-.348-1.912-.04-1.511,1.578Zm46.371-4.921s12.208-7.515,18.519-24.055c0-1.07-1.6-1.6-2.153,0s-6.311,15.47-16.955,21.956c-1.016,1.016-1.016,1.551.588,2.1Zm0,0-48.47-77.78.989,4.025,2.554-3.53,4.025.535-2.019-3.53,2.019-4.025-4.025,1.524-3.53-3.035v4.025l-4.038,2.5m42.106,85.83.989,4.025,2.554-3.53,4.025.535-2.019-3.53,2.019-4.025-4.025,1.524-3.53-3.035v4.025l-4.025,2.5" transform="translate(808.515 395.57)"/></g><text class="e" transform="matrix(0.899, -0.438, 0.438, 0.899, 687.268, 345.311)"><tspan x="0" y="0">已失效</tspan></text></g></g></svg>

1
src/assets/svg/del.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><defs><style>.a,.b{fill:none;}.b{stroke:#333;stroke-width:1.5px;}</style></defs><rect class="a" width="30" height="30"/><g transform="translate(5 6)"><path class="b" d="M-3778.129,13870.4v12.649h13V13870.4" transform="translate(3781.628 -13865.662)"/><path class="b" d="M-3773.6,13870.785v8.529" transform="translate(3780.999 -13866.05)"/><path class="b" d="M-3773.6,13870.785v8.529" transform="translate(3785.999 -13866.05)"/><path class="b" d="M0,0V20" transform="translate(0 3) rotate(-90)"/><path class="b" d="M0,0V10" transform="translate(5.001) rotate(-90)"/></g></svg>

1
src/assets/svg/detail-+++.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 21 21"><defs><style>.a{fill:#ccc;}</style></defs><g transform="translate(-540 -1152)"><rect class="a" width="21" height="1" transform="translate(540 1162)"/><rect class="a" width="21" height="1" transform="translate(551 1152) rotate(90)"/></g></svg>

1
src/assets/svg/detail-===.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="11" viewBox="0 0 21 11"><defs><style>.a{fill:#ccc;}</style></defs><g transform="translate(-540 -1157)"><rect class="a" width="21" height="1" transform="translate(540 1157)"/><rect class="a" width="21" height="1" transform="translate(540 1167)"/></g></svg>

1
src/assets/svg/detail-checked.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"><defs><style>.a{fill:rgba(243,244,245,0);}.b,.e,.f,.h{fill:none;}.b,.d,.e,.f{stroke:currentColor;}.b{stroke-linejoin:round;}.b,.c,.d,.f{stroke-width:3px;}.c,.d{fill:#fff;}.c{stroke:#fff;}.e{stroke-width:2.5px;}.g{stroke:none;}</style></defs><g transform="translate(-1163 -390)"><rect class="a" width="90" height="90" transform="translate(1163 390)"/><g class="b" transform="translate(1176 399)"><rect class="g" width="61" height="63"/><rect class="h" x="-1.5" y="-1.5" width="64" height="66"/></g><path class="c" d="M16.68,0A16.759,16.759,0,0,1,32.917,12.844a16.189,16.189,0,0,1,.443,3.836A16.68,16.68,0,1,1,16.68,0Z" transform="translate(1209.692 436.692)"/><g class="d" transform="translate(1211 438)"><circle class="g" cx="15.5" cy="15.5" r="15.5"/><circle class="h" cx="15.5" cy="15.5" r="14"/></g><path class="e" d="M0,7.935,7.936,0l5.538,5.308" transform="translate(1233.664 457.127) rotate(180)"/><line class="f" x2="45" transform="translate(1183.5 410.5)"/><line class="f" x2="45" transform="translate(1183.5 424.5)"/><line class="f" x2="24" transform="translate(1183.5 438.692)"/></g></svg>

1
src/assets/svg/detail-deals.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"><defs><style>.a{fill:rgba(243,244,245,0);}.b,.d,.f,.h{fill:none;}.b,.d,.e,.f{stroke:currentColor;}.b{stroke-linejoin:round;}.b,.c,.d,.e{stroke-width:3px;}.c,.e{fill:#fff;}.c{stroke:#fff;}.f{stroke-width:2.5px;}.g{stroke:none;}</style></defs><g transform="translate(-420 -370)"><rect class="a" width="90" height="90" transform="translate(420 370)"/><g transform="translate(-2 -2)"><g class="b" transform="translate(435 381)"><rect class="g" width="61" height="63"/><rect class="h" x="-1.5" y="-1.5" width="64" height="66"/></g><path class="c" d="M16.68,0A16.759,16.759,0,0,1,32.917,12.844a16.189,16.189,0,0,1,.443,3.836A16.68,16.68,0,1,1,16.68,0Z" transform="translate(468.692 418.692)"/><line class="d" x2="45" transform="translate(442.5 392.5)"/><line class="d" x2="45" transform="translate(442.5 406.5)"/><line class="d" x2="24" transform="translate(442.5 420.692)"/><g class="e" transform="translate(470 420)"><circle class="g" cx="15.5" cy="15.5" r="15.5"/><circle class="h" cx="15.5" cy="15.5" r="14"/></g><path class="f" d="M485.371,428.082v9.346h9.555" transform="translate(0 -2.056)"/></g></g></svg>

1
src/assets/svg/detail-done.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"><defs><style>.a{fill:rgba(243,244,245,0);}.b,.c,.e{fill:none;}.b,.c{stroke:currentColor;stroke-width:3px;}.b{stroke-linejoin:round;}.d{stroke:none;}</style></defs><g transform="translate(-1410 -557)"><rect class="a" width="90" height="90" transform="translate(1410 557)"/><g transform="translate(0 0.82)"><g class="b" transform="translate(1422 573.18)"><rect class="d" width="65.31" height="55.641"/><rect class="e" x="-1.5" y="-1.5" width="68.31" height="58.641"/></g><line class="c" x2="67.949" transform="translate(1421.5 590.104)"/><path class="c" d="M0,16.969,16.97,0,28.812,11.351" transform="translate(1469.641 617.952) rotate(180)"/></g></g></svg>

1
src/assets/svg/detail-express.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"><defs><style>.a{fill:rgba(255,255,255,0);}.b,.d{fill:none;}.b{stroke:currentColor;stroke-width:3px;}.c{stroke:none;}</style></defs><g transform="translate(-1163 -370)"><rect class="a" width="90" height="90" transform="translate(1163 370)"/><g transform="translate(9032.492 -9112.17)"><path class="b" d="M-7859.18,9547.623v-54.211h49.284v13.648l20.093,11.751v28.812" transform="translate(0 0.001)"/><path class="b" d="M-7838.942,9503.451v8.72h14.025" transform="translate(27.151 13.467)"/><g class="b" transform="translate(-7854.121 9543.671)"><circle class="c" cx="9.512" cy="9.512" r="9.512"/><circle class="d" cx="9.512" cy="9.512" r="8.012"/></g><g class="b" transform="translate(-7813.961 9543.671)"><ellipse class="c" cx="9.159" cy="9.512" rx="9.159" ry="9.512"/><ellipse class="d" cx="9.159" cy="9.512" rx="7.659" ry="8.012"/></g><path class="b" d="M-7849.443,9519h23.778" transform="translate(13.061 34.328)"/></g></g></svg>

1
src/assets/svg/detail-getout.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"><defs><style>.a{fill:rgba(255,255,255,0);}.b,.c{fill:none;stroke:currentColor;stroke-width:3px;}.c{stroke-linejoin:round;}</style></defs><g transform="translate(-915 -370)"><rect class="a" width="90" height="90" transform="translate(915 370)"/><path class="b" d="M0,11.7,11.7,0,23.4,11.7" transform="translate(990.922 419.602) rotate(90)"/><line class="b" x1="33.381" transform="translate(956.5 431.3)"/><path class="c" d="M-8166.813,8466.936h-22.948V8426.3l30.275-19.59,31.409,19.59v13.643" transform="translate(9119 -8027)"/></g></svg>

1
src/assets/svg/detail-paySuccess.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"><defs><style>.a{fill:rgba(243,244,245,0);}.b,.c,.f,.h{fill:none;}.b,.c,.e,.f{stroke:currentColor;}.b{stroke-linejoin:round;}.b,.c,.d,.e{stroke-width:3px;}.d,.e{fill:#fff;}.d{stroke:#fff;}.f{stroke-width:2.5px;}.g{stroke:none;}</style></defs><g transform="translate(-668 -370)"><rect class="a" width="90" height="90" transform="translate(668 370)"/><g transform="translate(-0.5 2)"><g class="b" transform="translate(681.176 380.18)"><rect class="g" width="65.31" height="55.641"/><rect class="h" x="-1.5" y="-1.5" width="68.31" height="58.641"/></g><line class="c" x2="29" transform="translate(686.271 414)"/><line class="c" x2="67.949" transform="translate(678.536 397.104)"/><g transform="translate(-57.691 -10.947)"><path class="d" d="M16.68,0A16.759,16.759,0,0,1,32.917,12.844a16.189,16.189,0,0,1,.443,3.836A16.68,16.68,0,1,1,16.68,0Z" transform="translate(779.692 424.947)"/><g class="e" transform="translate(781 426.255)"><circle class="g" cx="15.5" cy="15.5" r="15.5"/><circle class="h" cx="15.5" cy="15.5" r="14"/></g></g><path class="f" d="M0,7.935,7.936,0l5.538,5.308" transform="translate(745.973 434.435) rotate(180)"/></g></g></svg>

1
src/assets/svg/detail-submit.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"><defs><style>.a{fill:rgba(243,244,245,0);}.b,.d,.f,.h{fill:none;}.b,.d,.e,.f{stroke: currentColor;}.b{stroke-linejoin:round;}.b,.c,.d,.e{stroke-width:3px;}.c,.e{fill:#fff;}.c{stroke:#fff;}.f{stroke-width:2.5px;}.g{stroke:none;}</style></defs><g transform="translate(-420 -370)"><rect class="a" width="90" height="90" transform="translate(420 370)"/><g transform="translate(-2 -2)"><g class="b" transform="translate(435 381)"><rect class="g" width="61" height="63"/><rect class="h" x="-1.5" y="-1.5" width="64" height="66"/></g><path class="c" d="M16.68,0A16.759,16.759,0,0,1,32.917,12.844a16.189,16.189,0,0,1,.443,3.836A16.68,16.68,0,1,1,16.68,0Z" transform="translate(468.692 418.692)"/><line class="d" x2="45" transform="translate(442.5 392.5)"/><line class="d" x2="45" transform="translate(442.5 406.5)"/><line class="d" x2="24" transform="translate(442.5 420.692)"/><g class="e" transform="translate(470 420)"><circle class="g" cx="15.5" cy="15.5" r="15.5"/><circle class="h" cx="15.5" cy="15.5" r="14"/></g><path class="f" d="M-8643.462,8464.614l7.065-7.065,7.064,7.065" transform="translate(9121.932 -8029.056)"/><line class="f" y2="14.414" transform="translate(485.534 429.121)"/></g></g></svg>

1
src/assets/svg/eva-success.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="78.195" height="65.162" viewBox="0 0 78.195 65.162"><defs><style>.a{fill:#fff;}.b{fill:none;stroke:#333;stroke-width:2px;}.c,.d{stroke:none;}.d{fill:#333;}</style></defs><g transform="translate(-148.403 -163.838)"><g class="a" transform="translate(148.403 163.838)"><path class="c" d="M 1.000001192092896 63.271484375 L 1.000001192092896 0.9999991059303284 L 77.194580078125 0.9999991059303284 L 77.194580078125 51.12968826293945 L 19.14137840270996 51.12968826293945 L 18.83326721191406 51.12968826293945 L 18.57859039306641 51.3030891418457 L 1.000001192092896 63.271484375 Z"/><path class="d" d="M 1.999992370605469 1.999996185302734 L 1.999992370605469 61.38086318969727 L 18.52517318725586 50.12969207763672 L 76.19458770751953 50.12969207763672 L 76.19458770751953 1.999996185302734 L 1.999992370605469 1.999996185302734 M -7.62939453125e-06 -7.62939453125e-06 L 78.19458770751953 -7.62939453125e-06 L 78.19458770751953 52.12969207763672 L 19.14138412475586 52.12969207763672 L -7.62939453125e-06 65.16211700439453 L -7.62939453125e-06 -7.62939453125e-06 Z"/></g><path class="b" d="M-1104.626,18568.506l9.23,9.639,13.359-13.361" transform="translate(1299.511 -18376.281)"/><line class="b" x2="40.835" transform="translate(160.132 178.174)"/><line class="b" x2="23.024" transform="translate(160.132 189.467)"/><line class="b" x2="23.024" transform="translate(160.132 200.764)"/></g></svg>

1
src/assets/svg/exchange.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="18.107" height="16.025" viewBox="0 0 18.107 16.025"><defs><style>.a{fill:none;stroke:#ffebc4;stroke-linejoin:round;stroke-width:1.5px;}</style></defs><g transform="translate(-1443.232 -293.823)"><path class="a" d="M325.291-6119.317h17.3l-5.33-5.33" transform="translate(1118 6419)"/><path class="a" d="M342.589-6124.646h-17.3l5.33,5.329" transform="translate(1118.691 6428.635)"/></g></svg>

1
src/assets/svg/logo.svg
File diff suppressed because it is too large
View File

1
src/assets/svg/nav-addres.svg

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="54" height="54" viewBox="0 0 54 54"><defs><style>.a,.b,.d{fill:#fff;}.a{stroke:#f8f1df;}.b{opacity:0;}.c{fill:#f8f1df;}.c,.d{stroke:#c5aa7b;}.d{stroke-width:1.1px;}.e{stroke:none;}.f{fill:none;}</style></defs><g transform="translate(-1214 -158)"><g class="a" transform="translate(1214 158)"><circle class="e" cx="27" cy="27" r="27"/><circle class="f" cx="27" cy="27" r="26.5"/></g><g transform="translate(1180 -372)"><rect class="b" width="50" height="50" transform="translate(36 532)"/><g transform="translate(48.295 540.758)"><path class="c" d="M12.758,0A12.758,12.758,0,0,1,25.516,12.758c0,7.046-12.758,19.076-12.758,19.076S0,19.8,0,12.758A12.758,12.758,0,0,1,12.758,0Z"/><g class="d" transform="translate(6.594 6.576)"><circle class="e" cx="6.111" cy="6.111" r="6.111"/><circle class="f" cx="6.111" cy="6.111" r="5.561"/></g></g></g></g></svg>

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

Loading…
Cancel
Save