Commit 9f77c064 by sunchao

返回键&公众号提前不需要调授权接口&分享代码部分调试

parent 7de33871
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
if(this.agreeFlag == false) { if(this.agreeFlag == false) {
uni.showToast({ uni.showToast({
title: '请阅读并勾选银盾保险经纪服务协议和隐私条款', title: '请阅读并勾选江苏赢盾财务顾问有限公司服务协议和隐私条款',
duration: 2000, duration: 2000,
icon: 'none' icon: 'none'
}); });
......
...@@ -271,7 +271,7 @@ ...@@ -271,7 +271,7 @@
} }
if(!this.agreeFlag){ if(!this.agreeFlag){
uni.showToast({ uni.showToast({
title: '请阅读并勾选银盾保险经纪服务协议和隐私条款', title: '请阅读并勾选江苏赢盾财务顾问有限公司服务协议和隐私条款',
duration: 5000, duration: 5000,
icon: 'none' icon: 'none'
}) })
...@@ -289,7 +289,7 @@ ...@@ -289,7 +289,7 @@
} }
if(!this.agreeFlag && this.loginType !='resetpw'){ if(!this.agreeFlag && this.loginType !='resetpw'){
uni.showToast({ uni.showToast({
title: '请阅读并勾选银盾保险经纪服务协议和隐私条款', title: '请阅读并勾选江苏赢盾财务顾问有限公司服务协议和隐私条款',
duration: 5000, duration: 5000,
icon: 'none' icon: 'none'
}) })
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<script src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script> <script src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
<!-- 移动端调试 --> <!-- 移动端调试 -->
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/eruda"></script> <script type="text/javascript" src="//cdn.jsdelivr.net/npm/eruda"></script>
<!-- <script>eruda.init();</script> --> <script>eruda.init();</script>
</head> </head>
<body> <body>
<div id="app"> <div id="app">
......
<template> <template>
<view class="container"> <view class="container">
<view class="top">
<text class="iconfont icon-youjiantou zuojiantou" @click="goBack()"></text>
<text>退单详情</text>
</view>
<view class="returnCountsContainer"> <view class="returnCountsContainer">
<view class="left"> <view class="left">
<h3>{{courseInfoItem.orderStatusName}}</h3> <h3>{{courseInfoItem.orderStatusName}}</h3>
...@@ -86,7 +90,11 @@ ...@@ -86,7 +90,11 @@
}; };
}, },
methods:{ methods:{
goBack(){
uni.navigateBack({
delta: 1
})
},
goDetail(){ goDetail(){
uni.navigateTo({ uni.navigateTo({
url:'/pages/receiptCycleDesc/receiptCycleDesc' url:'/pages/receiptCycleDesc/receiptCycleDesc'
...@@ -134,11 +142,25 @@ ...@@ -134,11 +142,25 @@
<style lang="scss"> <style lang="scss">
.container{ .container{
height:100%; height:100%;
padding: 10rpx 20rpx; .top{
display: flex;
height: 80rpx;
justify-content: space-between;
align-items: center;
position: relative;
width: 100%;
margin: 0 auto;
background: #fff;
text:nth-child(2){
width: 100%;
text-align: center;
position: absolute;
}
}
.returnCountsContainer,.returnProcessContainer,.returnDetailContainer{ .returnCountsContainer,.returnProcessContainer,.returnDetailContainer{
background-color: #fff; background-color: #fff;
padding: 20rpx; padding: 20rpx 40rpx;
margin-bottom: 10rpx; margin: 10rpx auto;
h4{ h4{
font-size: 32rpx; font-size: 32rpx;
color: #333; color: #333;
......
<template> <template>
<view class="container"> <view class="container">
<view class="top">
<text class="iconfont icon-youjiantou zuojiantou" @click="goBack()"></text>
<text>我的售后</text>
</view>
<h4 class="noListTip" v-if="userCourses.length <=0 ">暂无售后</h4> <h4 class="noListTip" v-if="userCourses.length <=0 ">暂无售后</h4>
<view class="ulBox" v-if="userCourses.length > 0"> <view class="ulBox" v-if="userCourses.length > 0">
<view class="liBox" v-for="item in userCourses" :key="item.orderId"> <view class="liBox" v-for="item in userCourses" :key="item.orderId">
...@@ -28,6 +32,11 @@ ...@@ -28,6 +32,11 @@
}; };
}, },
methods:{ methods:{
goBack(){
uni.navigateBack({
delta: 1
})
},
goDetail(item){ goDetail(item){
uni.navigateTo({ uni.navigateTo({
url:`/pages/afterSaleDetail/afterSaleDetail?orderNo=${item.orderNo}&afterSalesFlag=${this.afterSalesFlag}` url:`/pages/afterSaleDetail/afterSaleDetail?orderNo=${item.orderNo}&afterSalesFlag=${this.afterSalesFlag}`
...@@ -55,12 +64,27 @@ ...@@ -55,12 +64,27 @@
<style lang="scss"> <style lang="scss">
.container{ .container{
height: 100%; height: 100%;
.top{
display: flex;
height: 80rpx;
justify-content: space-between;
align-items: center;
position: relative;
width: 100%;
margin: 0 auto;
background: #fff;
text:nth-child(2){
width: 100%;
text-align: center;
position: absolute;
}
}
.ulBox{ .ulBox{
padding: 10rpx 20rpx; margin-top: 20rpx;
.liBox{ .liBox{
background-color: #fff; background-color: #fff;
margin-bottom: 20rpx; margin-bottom: 20rpx;
padding: 18rpx 10rpx; padding: 36rpx 30rpx;
.statusBox{ .statusBox{
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
......
...@@ -76,13 +76,6 @@ ...@@ -76,13 +76,6 @@
width: 100%; width: 100%;
margin: 0 auto; margin: 0 auto;
background: #fff; background: #fff;
.zuojiantou{
display: inline-block;
transform: rotate(180deg);
font-size: 30rpx;
z-index: 1;
position: absolute;
}
text:nth-child(2){ text:nth-child(2){
width: 100%; width: 100%;
text-align: center; text-align: center;
......
...@@ -33,10 +33,8 @@ ...@@ -33,10 +33,8 @@
<view class="" style="text-align: center;color: #20269B;" v-if="isH5"> <view class="" style="text-align: center;color: #20269B;" v-if="isH5">
<text>请前往应用商店下载App</text> <text>请前往应用商店下载App</text>
</view> </view>
<view class="" v-else> <view class="home" v-else @click="toHome()">
<navigator url="../index/index"> 返回首页 >
返回首页 >
</navigator>
</view> </view>
</view> </view>
</view> </view>
...@@ -75,19 +73,25 @@ ...@@ -75,19 +73,25 @@
} }
}, },
methods:{ methods:{
queryById(id, userId) { queryById(id, userId) {
api.queryById({ api.queryById({
id: id, id: id,
userId: userId userId: userId
}).then((res) => { }).then((res) => {
console.log(res) console.log(res)
if (res['success']) { if (res['success']) {
// this.applyParam = res['data']['data']; // this.applyParam = res['data']['data'];
this.approvalStatus = res.data.data.approvalStatus this.approvalStatus = res.data.data.approvalStatus
this.partnerLevel = res.data.data.partnerLevel this.partnerLevel = res.data.data.partnerLevel
} }
}) })
}, },
toHome(){
uni.switchTab({
url:'/pages/index/index'
})
}
} }
} }
...@@ -113,5 +117,9 @@ ...@@ -113,5 +117,9 @@
color: #20269B; color: #20269B;
font-size: 36rpx; font-size: 36rpx;
} }
.home{
color: #20269B;
text-align: center;
}
} }
</style> </style>
\ No newline at end of file
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
<view class="content"> <view class="content">
<view class="contentDetail employ"> <view class="contentDetail employ">
<view class="contentItem"> <view class="contentItem">
<text>职业类型1</text> <text>职业类型</text>
<picker @change="changeIndustry" :value="industryIdx" :range="industry" <picker @change="changeIndustry" :value="industryIdx" :range="industry"
range-key="industryName" range-key="industryName"
:disabled="this.workform.approvalStatus!= 0 && this.workform.approvalStatus != 2"> :disabled="this.workform.approvalStatus!= 0 && this.workform.approvalStatus != 2">
......
...@@ -4,32 +4,32 @@ ...@@ -4,32 +4,32 @@
<view class="band"> <view class="band">
<view class="contentItem"> <view class="contentItem">
<text>姓名:</text> <text>姓名:</text>
<input v-model="openForm.userNameChinese" class="user-input" type="text" placeholder="请输入姓名" /> <input v-model="openForm.userNameChinese" class="user-input" type="text" placeholder="请输入姓名" :disabled="status == 3"/>
</view> </view>
<view class="contentItem"> <view class="contentItem">
<text>英文名:</text> <text>英文名:</text>
<input class="user-input" v-model="openForm.userNameEnglish" maxlength="10" type="text" <input class="user-input" v-model="openForm.userNameEnglish" maxlength="10" type="text"
placeholder="请输入英文名" /> placeholder="请输入英文名" :disabled="status == 3"/>
</view> </view>
<view class="contentItem"> <view class="contentItem">
<text>手机号</text> <text>手机号</text>
<!-- userTel --> <!-- userTel -->
<text v-if="openForm.userTel == ''">{{openForm.userTel}}</text> <text v-if="openForm.userTel == ''">{{openForm.userTel}}</text>
<input v-else class="user-input" v-model="openForm.userTel" maxlength="10" type="text" <input v-else class="user-input" v-model="openForm.userTel" maxlength="10" type="text"
placeholder="请输入手机号" /> placeholder="请输入手机号" :disabled="status == 3"/>
</view> </view>
<view class="contentItem"> <view class="contentItem">
<text>证件类型</text> <text>证件类型</text>
<!-- <input v-model="openForm.userIdType" class="user-input" maxlength="10" type="text" <!-- <input v-model="openForm.userIdType" class="user-input" maxlength="10" type="text"
placeholder="请输入证件类型" /> --> placeholder="请输入证件类型" /> -->
<picker v-if="erplizeList " @change="bindPickerChange($event,erplizeList)" :value="index" <picker v-if="erplizeList " @change="bindPickerChange($event,erplizeList)" :value="index"
:range="erplizeList" range-key="name"> :range="erplizeList" range-key="name" :disabled="status == 3">
<view style="background-color: white;">{{ erplizeList[index].name }}</view> <view style="background-color: white;">{{ erplizeList[index].name }}</view>
</picker> </picker>
</view> </view>
<view class="contentItem"> <view class="contentItem">
<text>证件号</text> <text>证件号</text>
<input v-model="openForm.userIdNo" class="user-input" maxlength="20" type="text" placeholder="请输入证件号" /> <input v-model="openForm.userIdNo" class="user-input" maxlength="20" type="text" placeholder="请输入证件号" :disabled="status == 3"/>
</view> </view>
<view class="" style="margin-top: 20rpx;"> <view class="" style="margin-top: 20rpx;">
<text>上传计划书</text> <text>上传计划书</text>
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
</view> </view>
<text style="margin-left: 10rpx;" @click="exportTo">{{openForm.fileName}}</text> <text style="margin-left: 10rpx;" @click="exportTo">{{openForm.fileName}}</text>
</view> </view>
<view class="uploadpdf"> <view class="uploadpdf" v-if="status != 3">
<view class="uploadimg"> <view class="uploadimg">
<text class="iconfont icon-weibiaoti553"></text> <text class="iconfont icon-weibiaoti553"></text>
<p>点击添加计划书</p> <p>点击添加计划书</p>
......
<template> <template>
<view> <view>
<text class="iconfont icon-youjiantou zuojiantou" @click="goBack()" style="top: -40rpx;"></text>
<template v-if="title"> <template v-if="title">
<view><list-item :title="title" :lists="lists"></list-item></view> <view style="margin-top: 50rpx;"><list-item :title="title" :lists="lists"></list-item></view>
<view v-if="lists.length<=0" style="text-align: center;margin-top: 40rpx;">暂无{{typeName}}记录</view> <view v-if="lists.length<=0" style="text-align: center;margin-top: 40rpx;">暂无{{typeName}}记录</view>
</template> </template>
</view> </view>
...@@ -28,6 +29,11 @@ ...@@ -28,6 +29,11 @@
} }
}, },
methods: { methods: {
goBack() {
uni.navigateBack({
delta: 1
});
},
queryLists(obj){ queryLists(obj){
const params = { const params = {
userId:this.userId, userId:this.userId,
......
<template> <template>
<view class="container"> <view class="container">
<view class="shareheader" style="" v-if="coursesharing != 1"> <view class="shareheader" style="" v-if="coursesharing != 1 || deviceType==3">
<view class="iconfont icon-youjiantou" style="margin-left: 30rpx;" @click="goBack()"> <view class="iconfont icon-youjiantou" style="margin-left: 30rpx;" @click="goBack()">
</view> </view>
<view class="share-entrance"> <view class="share-entrance">
...@@ -121,6 +121,16 @@ ...@@ -121,6 +121,16 @@
</view> </view>
<boot-page v-if="sharelogin" ref="sharelogin" @close="close"></boot-page> <boot-page v-if="sharelogin" ref="sharelogin" @close="close"></boot-page>
<uni-share-wx ref="sharewx"></uni-share-wx> <uni-share-wx ref="sharewx"></uni-share-wx>
<view class="markBox" @click="shareTipsFlag=false" v-if="shareTipsFlag">
<view class="guideImgBox">
<image src="../../static/Group132.png" mode="widthFix"></image>
<view class="tips">
<!-- <view class="text-center">请点击右上角菜单</view> -->
<view style="line-height: 60rpx;">
戳这里,点击按钮,使用系统浏览器打开页面完成支付,完成后请返回微信,到【销售课程】下,查看购买订单。</view>
</view>
</view>
</view>
</view> </view>
</template> </template>
...@@ -130,12 +140,9 @@ ...@@ -130,12 +140,9 @@
import BootPage from "@/components/bootpage/bootpage.vue"; import BootPage from "@/components/bootpage/bootpage.vue";
import UniShareWx from "@/uni_modules/uni-share-wx/index.vue"; import UniShareWx from "@/uni_modules/uni-share-wx/index.vue";
import dataHandling from "@/util/dataHandling"; import dataHandling from "@/util/dataHandling";
import { import {hshare} from '@/util/fiveshare';
hshare import {nanoid} from 'nanoid';
} from '@/util/fiveshare' import common from '../../common/common';
import {
nanoid
} from 'nanoid';
export default { export default {
components: { components: {
UniShareWx, UniShareWx,
...@@ -181,7 +188,9 @@ ...@@ -181,7 +188,9 @@
android: 'https://a.app.qq.com/o/simple.jsp?pkgname=com.xiaoxiao.shihaoo', android: 'https://a.app.qq.com/o/simple.jsp?pkgname=com.xiaoxiao.shihaoo',
ios: 'https://apps.apple.com/cn/app/%E6%98%AF%E5%A5%BD/id1457958161', ios: 'https://apps.apple.com/cn/app/%E6%98%AF%E5%A5%BD/id1457958161',
scheme: 'com.qdxxzy.user://' scheme: 'com.qdxxzy.user://'
} },
deviceType:null,
shareTipsFlag:false
}; };
}, },
methods: { methods: {
...@@ -280,6 +289,8 @@ ...@@ -280,6 +289,8 @@
}, },
// 打开微信分享啊 // 打开微信分享啊
reinvite() { reinvite() {
//app分享
// #ifdef APP-PLUS
const shareCode = nanoid() + this.userId const shareCode = nanoid() + this.userId
const jumptime = Date.parse(new Date()) / 1000 const jumptime = Date.parse(new Date()) / 1000
let dataWXform = { let dataWXform = {
...@@ -293,16 +304,27 @@ ...@@ -293,16 +304,27 @@
shareCode: shareCode shareCode: shareCode
} }
this.$refs.sharewx.open(dataWXform) this.$refs.sharewx.open(dataWXform)
// #endif
//#ifdef H5
// #endif
}, },
shareToggle() { shareToggle() {
this.sliceshare = true this.sliceshare = true
this.$refs.share.open() this.$refs.share.open()
}, },
sharechange(val) { sharechange(val) {
console.log(val, 423) console.log(val)
uni.navigateTo({ if(val.index != 3){
url: val.item.link uni.switchTab({
}) url: val.item.link
})
}else{
uni.navigateTo({
url: val.item.link
})
}
}, },
// 订单保存 // 订单保存
saveOrder() { saveOrder() {
...@@ -629,7 +651,8 @@ ...@@ -629,7 +651,8 @@
}, },
onLoad(option) { onLoad(option) {
this.fileId = option.fileId; this.fileId = option.fileId;
this.courseInfo.packFileId = option.packFileId this.courseInfo.packFileId = option.packFileId;
this.deviceType = common.checkDeviceType();
if (option.coursesharing) { if (option.coursesharing) {
this.userId = '' this.userId = ''
this.coursesharing = option.coursesharing this.coursesharing = option.coursesharing
...@@ -654,6 +677,7 @@ ...@@ -654,6 +677,7 @@
onShow() { onShow() {
this.switchTab(1); this.switchTab(1);
this.loginType = uni.getStorageSync('loginType') this.loginType = uni.getStorageSync('loginType')
uni.setStorageSync('entryUrl',window.location.href.split('#')[0])
}, },
mounted() { mounted() {
let _this = this; let _this = this;
...@@ -898,7 +922,6 @@ ...@@ -898,7 +922,6 @@
font-size: 16rpx; font-size: 16rpx;
margin-left: 10rpx; margin-left: 10rpx;
} }
.totalCourseCount { .totalCourseCount {
color: #20269B; color: #20269B;
font-size: 24rpx; font-size: 24rpx;
...@@ -948,4 +971,32 @@ ...@@ -948,4 +971,32 @@
} }
} }
} }
.markBox {
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
color: #fff;
display: flex;
justify-content: flex-end;
z-index: 100000;
background: rgba(0, 0, 0, 0.8);
.guideImgBox {
margin: 20px auto;
uni-image {
width: 25% !important;
position: absolute;
right: 0;
top: 0;
}
}
.tips {
margin-top: 20%;
padding: 0 30px;
}
}
</style> </style>
...@@ -57,8 +57,8 @@ ...@@ -57,8 +57,8 @@
</view> </view>
</view> </view>
</view> </view>
<view class="" style="text-align: center;color: #666666;font-size: 24rpx;"> <view class="" style="text-align: center;color: #666666;font-size: 24rpx;margin-top: 20rpx;">
银盾保险经纪有限公司提供技术支持 江苏赢盾财务顾问有限公司提供
</view> </view>
<!-- <tabBar :currentPage="currentPage"></tabBar> --> <!-- <tabBar :currentPage="currentPage"></tabBar> -->
</view> </view>
...@@ -172,7 +172,6 @@ ...@@ -172,7 +172,6 @@
}, },
onLoad() { onLoad() {
if (uni.getStorageSync('isLogin')) { if (uni.getStorageSync('isLogin')) {
console.log('游客登录')
this.queryAreaCenterInfo(); this.queryAreaCenterInfo();
this.announcementQuery(); this.announcementQuery();
} else { } else {
...@@ -293,7 +292,7 @@ ...@@ -293,7 +292,7 @@
}).then((res) => { }).then((res) => {
this.announcementInfo = res['data']['announcementInfoList'] ? res['data'][ this.announcementInfo = res['data']['announcementInfoList'] ? res['data'][
'announcementInfoList' 'announcementInfoList'
][0]['title'] : '银盾公告' ][0]['title'] : '江苏赢盾财务顾问有限公司公告'
}) })
}, },
getIntroduce(type) { getIntroduce(type) {
...@@ -323,8 +322,7 @@ ...@@ -323,8 +322,7 @@
<style lang="scss"> <style lang="scss">
.container { .container {
padding: 30rpx; padding: 30rpx 30rpx 20rpx;
.top { .top {
.compony { .compony {
display: flex; display: flex;
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
<view class="agree"> <view class="agree">
<label class="radio" style="padding-right: 10rpx;"> <label class="radio" style="padding-right: 10rpx;">
<radio :checked="agreeFlag" @click="agreeFlag=!agreeFlag"/></label> <radio :checked="agreeFlag" @click="agreeFlag=!agreeFlag"/></label>
<!-- <text>已阅读并同意</text><a href="#">银盾保险经纪服务协议</a><text></text><a href="">隐私政策</a> -->
<text>已阅读并同意</text> <text>已阅读并同意</text>
<text class="file" @click="getFile(1)">服务协议</text> <text class="file" @click="getFile(1)">服务协议</text>
<text></text> <text></text>
...@@ -116,7 +115,7 @@ ...@@ -116,7 +115,7 @@
} }
if(this.agreeFlag == false) { if(this.agreeFlag == false) {
uni.showToast({ uni.showToast({
title: '请阅读并勾选银盾保险经纪服务协议和隐私条款', title: '请阅读并勾选江苏赢盾财务顾问有限公司服务协议和隐私条款',
duration: 2000, duration: 2000,
icon: 'none' icon: 'none'
}); });
......
<template> <template>
<view class="padding-top container"> <view class="padding-top container">
<text class="iconfont icon-youjiantou zuojiantou" @click="goBack()" style="top: 40rpx;;left: 20rpx;"></text> <text class="iconfont icon-youjiantou zuojiantou" @click="goBack()" style="top: 20rpx;"></text>
<!-- tab选项 --> <!-- tab选项 -->
<view class="tabTitle"> <view class="tabTitle">
<text :class="{'actived': tabType===1}" @click="switchTab(1)">基本信息</text> <text :class="{'actived': tabType===1}" @click="switchTab(1)">基本信息</text>
......
...@@ -154,8 +154,9 @@ ...@@ -154,8 +154,9 @@
<view class="guideImgBox"> <view class="guideImgBox">
<image src="../../static/Group132.png" mode="widthFix"></image> <image src="../../static/Group132.png" mode="widthFix"></image>
<view class="tips"> <view class="tips">
<view class="text-center">请点击右上角菜单</view> <!-- <view class="text-center">请点击右上角菜单</view> -->
<view>因微信屏蔽支付宝的支付请求,请使用浏览器打开页面完成支付。在浏览器内支付完成后,请返回微信,到我的订单下,以检测支付结果。</view> <view style="line-height: 60rpx;">戳这里,点击<text class="iconfont icon-liulanqi"></text>
按钮,使用系统浏览器打开页面完成支付,完成后请返回微信,到【销售课程】下,查看购买订单。</view>
</view> </view>
</view> </view>
</view> </view>
...@@ -319,7 +320,6 @@ ...@@ -319,7 +320,6 @@
//#ifdef H5 //#ifdef H5
//支付宝h5支付 //支付宝h5支付
console.log(JSON.stringify(param))
param.paymentType = 2; param.paymentType = 2;
this.amount = this.totalPrice; this.amount = this.totalPrice;
if (this.deviceType == 3) { if (this.deviceType == 3) {
...@@ -756,6 +756,29 @@ ...@@ -756,6 +756,29 @@
justify-content: flex-end; justify-content: flex-end;
z-index: 100000; z-index: 100000;
background: rgba(0, 0, 0, 0.8); background: rgba(0, 0, 0, 0.8);
.icon-liulanqi{
margin: 0px 10rpx;
color: #3b43d5;
background: #fff;
padding: 6rpx;
border-radius: 8rpx;
font-size: 36rpx;
}
.guideImgBox {
margin: 20px auto;
uni-image {
width: 25% !important;
position: absolute;
right: 0;
top: 0;
}
}
.tips {
margin-top: 20%;
padding: 0 30px;
}
} }
// .iconfont { // .iconfont {
...@@ -765,23 +788,6 @@ ...@@ -765,23 +788,6 @@
// top: 2px; // top: 2px;
// font-weight: bold; // font-weight: bold;
// } // }
.guideImgBox {
margin: 20px auto;
uni-image {
width: 25% !important;
position: absolute;
right: 0;
top: 0;
}
}
.tips {
margin-top: 20%;
padding: 0 30px;
}
.tips p { .tips p {
font-size: 18px; font-size: 18px;
margin-top: 10px; margin-top: 10px;
......
<template> <template>
<view class="container"> <view class="container" style="padding-top: 30rpx;">
<text class="iconfont icon-youjiantou zuojiantou" @click="goBack()" style="top: 16rpx;"></text>
<view class="orderInfoContent"> <view class="orderInfoContent">
<view class="ulBox"> <view class="ulBox">
<view v-for="item in orderInfoList.filter(item=>item.pageArea===1)" :key="item.id" class="liBox"> <view v-for="item in orderInfoList.filter(item=>item.pageArea===1)" :key="item.id" class="liBox">
...@@ -146,6 +147,11 @@ ...@@ -146,6 +147,11 @@
}; };
}, },
methods: { methods: {
goBack() {
uni.navigateBack({
delta: 1
});
},
userCourseInfo() { userCourseInfo() {
const param = { const param = {
userId: this.userId, userId: this.userId,
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
<view class="course_content"> <view class="course_content">
<view class="tag"> <view class="tag">
<h4>精品课程</h4> <h4>精品课程</h4>
<view v-if="this.isRedirect == 1" @click="goToCourselist()">更多<text class="iconfont icon-youjiantou"></text></view> <view @click="goToCourselist()">更多<text class="iconfont icon-youjiantou"></text></view>
<!-- <view v-if="this.isRedirect == 1" @click="goToCourselist()">更多<text class="iconfont icon-youjiantou"></text></view> -->
</view> </view>
<view class="ulBox" v-if="cffpCourseInfos.length>0"> <view class="ulBox" v-if="cffpCourseInfos.length>0">
<view class="liBox" v-for="item in cffpCourseInfos" :key="item.fileId" @click="goDetail(item)"> <view class="liBox" v-for="item in cffpCourseInfos" :key="item.fileId" @click="goDetail(item)">
...@@ -75,8 +76,6 @@ ...@@ -75,8 +76,6 @@
}) })
}, },
continuePay(){ continuePay(){
console.log('fileId',this.fileId)
console.log('orderId',this.orderId)
uni.navigateTo({ uni.navigateTo({
url:`/pages/orderConfirm/orderConfirm?fileId=${this.fileId}&orderId=${this.orderId}` url:`/pages/orderConfirm/orderConfirm?fileId=${this.fileId}&orderId=${this.orderId}`
}) })
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
<view class="" style="display: align-self: end;"> <view class="" style="display: align-self: end;">
<span><text style="color: #2D56A7;" @click="getFile(1)">《服务协议》 | </text><text style="color: #2D56A7;" @click="getFile(1)">《隐私政策》</text></span> <span><text style="color: #2D56A7;" @click="getFile(1)">《服务协议》 | </text><text style="color: #2D56A7;" @click="getFile(1)">《隐私政策》</text></span>
<p class="footer-text" style="margin: 10px 0;">客服电话:400:921-9029</p> <p class="footer-text" style="margin: 10px 0;">客服电话:400:921-9029</p>
<p class="footer-text">银盾保险经纪有限公司提供</p> <p class="footer-text">江苏赢盾财务顾问有限公司提供</p>
</view> </view>
</view> </view>
</view> </view>
......
<template> <template>
<view class="content"> <view class="content">
<view class="header"> <view class="header">
<text class="iconfont icon-youjiantou zuojiantou" @click="goBack()"></text>
<view class="header-time" style=""> <view class="header-time" style="">
<time-picker @change="change" fields="month" :icon="true"> <time-picker @change="change" fields="month" :icon="true">
</time-picker> </time-picker>
...@@ -124,6 +125,11 @@ ...@@ -124,6 +125,11 @@
this.getqueryTeamAchievement() this.getqueryTeamAchievement()
}, },
methods: { methods: {
goBack(){
uni.navigateBack({
delta: 1
})
},
bindPickerChange(e) { bindPickerChange(e) {
this.index = e.detail.value this.index = e.detail.value
this.montdindex = 0 this.montdindex = 0
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
<view class="record" @click="toRecord()"> <view class="record" @click="toRecord()">
兑换记录 兑换记录
</view> </view>
<view class="btn" @click="toWithdrawal()"> <view class="btn" @click="toWithdrawal()" style="bottom: 30rpx;">
去提现 去提现
</view> </view>
</view> </view>
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
</view> </view>
</view> </view>
<view class="paymentItem" @click="selectPaymentMethod(1)"> <!-- <view class="paymentItem" @click="selectPaymentMethod(1)">
<view> <view>
<i class="iconfont icon-py_weixinzhifu"></i> <i class="iconfont icon-py_weixinzhifu"></i>
<text>微信钱包</text> <text>微信钱包</text>
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
<view class="selectRadio" :class="{'actived':paymentMethod===1}"> <view class="selectRadio" :class="{'actived':paymentMethod===1}">
<i class="iconfont icon-duihao"></i> <i class="iconfont icon-duihao"></i>
</view> </view>
</view> </view> -->
<view class="tips_wrapper"> <view class="tips_wrapper">
<view class=""> <view class="">
提示: 提示:
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
3、如需帮助,请联系CFFP财富中心客服电话:12345678; 3、如需帮助,请联系CFFP财富中心客服电话:12345678;
</view> </view>
</view> </view>
<view class="btn" @click="confirmWithdrawal()" :class="{'gray':readonlyFlag}"> <view class="btn" @click="confirmWithdrawal()" :class="{'gray':readonlyFlag}" style="bottom: 30rpx;">
确认提现 确认提现
</view> </view>
</view> </view>
...@@ -69,6 +69,7 @@ ...@@ -69,6 +69,7 @@
<script> <script>
import api from '../../api/api'; import api from '../../api/api';
import common from '../../common/common';
export default{ export default{
data(){ data(){
return { return {
...@@ -79,11 +80,13 @@ ...@@ -79,11 +80,13 @@
paymentMethod:2,//初始化支付宝提现 paymentMethod:2,//初始化支付宝提现
aliWithdrawalResVO:null, aliWithdrawalResVO:null,
wxWithdrawalResVO:null, wxWithdrawalResVO:null,
readonlyFlag:false readonlyFlag:false,
deviceType:null
} }
}, },
components:{}, components:{},
onLoad(options){ onLoad(options){
this.deviceType = common.checkDeviceType();
this.exchangeAmount = options.exchangeAmount; this.exchangeAmount = options.exchangeAmount;
this.partnerTradeNo = options.partnerTradeNo; this.partnerTradeNo = options.partnerTradeNo;
this.goFortuneWithdrawal() this.goFortuneWithdrawal()
...@@ -130,7 +133,19 @@ ...@@ -130,7 +133,19 @@
//支付宝去提现 //支付宝去提现
aliWithdrawal(){ aliWithdrawal(){
this.readonlyFlag = true; this.readonlyFlag = true;
api.aliWithdrawal(this.aliWithdrawalResVO).then((res)=>{ //#ifdef H5
let aliWithdrawalResVOParam = {
...this.aliWithdrawalResVO,
dataSource:2
}
//#endif
// #ifdef APP-PLUS
let aliWithdrawalResVOParam = {
...this.aliWithdrawalResVO,
dataSource:1
}
//#endif
api.aliWithdrawal(aliWithdrawalResVOParam).then((res)=>{
this.readonlyFlag = false; this.readonlyFlag = false;
if(res['success']){ if(res['success']){
uni.showModal({ uni.showModal({
...@@ -191,6 +206,11 @@ ...@@ -191,6 +206,11 @@
// #endif // #endif
}, },
confirmWithdrawal(){ confirmWithdrawal(){
//#ifdef H5
this.aliWithdrawal();
//#endif
// APP:
// #ifdef APP-PLUS
if(!this.readonlyFlag){ if(!this.readonlyFlag){
this.readonlyFlag = true; this.readonlyFlag = true;
this.aliWithdrawalResVO = { this.aliWithdrawalResVO = {
...@@ -199,80 +219,81 @@ ...@@ -199,80 +219,81 @@
amount:this.exchangeAmount, amount:this.exchangeAmount,
userId:uni.getStorageSync('cffp_userId'), userId:uni.getStorageSync('cffp_userId'),
} }
console.log(this.aliWithdrawalResVO)
api.isAuth(this.aliWithdrawalResVO).then((res)=>{ api.isAuth(this.aliWithdrawalResVO).then((res)=>{
this.readonlyFlag = false; this.readonlyFlag = false;
if(res['success']){ if(res['success']){
this.aliWithdrawalResVO.aliUserId = res['data']['aliUserId']; this.aliWithdrawalResVO.aliUserId = res['data']['aliUserId'];
if(res['data']['isAuth'] == 1){ if(res['data']['isAuth'] == 1){
if(this.paymentMethod == 1){ if(this.paymentMethod == 1){
this.wxWithdrawal(); this.wxWithdrawal();
} }
if(this.paymentMethod == 2){ if(this.paymentMethod == 2){
// APP: // APP:
// #ifdef APP-PLUS // #ifdef APP-PLUS
let urls= this.aliWithdrawalResVO.aliAuthUrl; let urls= this.aliWithdrawalResVO.aliAuthUrl;
urls=encodeURIComponent(urls); urls=encodeURIComponent(urls);
// 判断平台 // 判断平台
if (plus.os.name == 'Android') { if (plus.os.name == 'Android') {
plus.runtime.openURL( plus.runtime.openURL(
'alipays://platformapi/startapp?appId=20000067&url=' + urls, 'alipays://platformapi/startapp?appId=20000067&url=' + urls,
res => { res => {
//这里写打开URL地址失败后的处理 //这里写打开URL地址失败后的处理
console.log(res); console.log(res);
uni.showModal({ uni.showModal({
content: '本机未检测到对应客户端,是否打开浏览器访问页面?', content: '本机未检测到对应客户端,是否打开浏览器访问页面?',
success: function (res) { success: function (res) {
if (res.confirm) { if (res.confirm) {
//plus.runtime.openURL(); //plus.runtime.openURL();
} }
} }
}); });
}, },
'com.eg.android.AlipayGphone' 'com.eg.android.AlipayGphone'
); );
} else if (plus.os.name == 'iOS') { } else if (plus.os.name == 'iOS') {
plus.runtime.openURL( plus.runtime.openURL(
'alipay://platformapi/startapp?appId=20000067&url=' + urls, 'alipay://platformapi/startapp?appId=20000067&url=' + urls,
res => { res => {
console.log(res); console.log(res);
uni.showModal({ uni.showModal({
content: '本机未检测到对应客户端,是否打开浏览器访问页面?', content: '本机未检测到对应客户端,是否打开浏览器访问页面?',
success: function (res) { success: function (res) {
if (res.confirm) { if (res.confirm) {
//plus.runtime.openURL(url); //plus.runtime.openURL(url);
} }
} }
}); });
}, },
'com.eg.android.AlipayGphone' 'com.eg.android.AlipayGphone'
); );
}
// #endif
}
}else{
if(this.paymentMethod == 1){
this.wxWithdrawal();
}
if(this.paymentMethod == 2){
this.aliWithdrawal();
} }
// #endif
} }
}else{ }else{
if(this.paymentMethod == 1){ uni.showModal({
this.wxWithdrawal(); content: res['message'],
} success: function (res) {
if(this.paymentMethod == 2){ if (res.confirm) {
this.aliWithdrawal(); console.log('用户点击确定');
} } else if (res.cancel) {
console.log('用户点击取消');
}
}
});
} }
}else{ });
uni.showModal({ }
content: res['message'], // #endif
success: function (res) {
if (res.confirm) {
console.log('用户点击确定');
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
}
});
}
} }
} }
} }
......
<template> <template>
<view> <view>
<view class="wrapper"> <view class="wrapper">
<text class="iconfont icon-youjiantou zuojiantou" @click="goBack()" style="top: 30rpx;"></text>
<view class="banner"> <view class="banner">
<!--头部技术支持组件--> <!--头部技术支持组件-->
<!-- <commonHead></commonHead> --> <!-- <commonHead></commonHead> -->
...@@ -202,6 +203,11 @@ ...@@ -202,6 +203,11 @@
} }
}, },
methods: { methods: {
goBack(){
uni.navigateTo({
url:'/pages/product/finance-calculator'
})
},
init() { init() {
this.$refs.chart.init(echarts, chart => { this.$refs.chart.init(echarts, chart => {
chart.setOption(this.option); chart.setOption(this.option);
......
<template> <template>
<view class="wrapper"> <view class="wrapper">
<text class="iconfont icon-youjiantou zuojiantou" @click="goBack()" style="top: 30rpx;"></text>
<view class="banner"> <view class="banner">
<!--头部技术支持组件--> <!--头部技术支持组件-->
<!-- <commonHead></commonHead> --> <!-- <commonHead></commonHead> -->
...@@ -352,6 +353,11 @@ ...@@ -352,6 +353,11 @@
this.provCityQry(); this.provCityQry();
}, },
methods:{ methods:{
goBack(){
uni.navigateTo({
url:'/pages/product/finance-calculator'
})
},
init() { init() {
this.$refs.chart.init(echarts, chart => { this.$refs.chart.init(echarts, chart => {
chart.setOption(this.option); chart.setOption(this.option);
......
<template> <template>
<!-- 已关注公众号用户 --> <!-- 已关注公众号用户 -->
<view class="content"> <view class="content">
<text class="iconfont icon-youjiantou zuojiantou" @click="goBack()" style="top: 30rpx;"></text>
<view class="banner"> <view class="banner">
<image src="/static/images/policyIrrBanner.png" mode="widthFix"></image> <image src="/static/images/policyIrrBanner.png" mode="widthFix"></image>
<!-- 使用说明 --> <!-- 使用说明 -->
...@@ -255,6 +256,11 @@ ...@@ -255,6 +256,11 @@
} }
}, },
methods: { methods: {
goBack(){
uni.navigateTo({
url:'/pages/product/finance-calculator'
})
},
checkToken(){ checkToken(){
api.checkToken().then(res=>{ api.checkToken().then(res=>{
if(res['success']){}else{ if(res['success']){}else{
......
...@@ -55,6 +55,18 @@ ...@@ -55,6 +55,18 @@
<ul class="icon_lists dib-box"> <ul class="icon_lists dib-box">
<li class="dib"> <li class="dib">
<span class="icon iconfont">&#xe68f;</span>
<div class="name">浏览器</div>
<div class="code-name">&amp;#xe68f;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe60b;</span>
<div class="name">排序</div>
<div class="code-name">&amp;#xe60b;</div>
</li>
<li class="dib">
<span class="icon iconfont">&#xe62e;</span> <span class="icon iconfont">&#xe62e;</span>
<div class="name">沙漏</div> <div class="name">沙漏</div>
<div class="code-name">&amp;#xe62e;</div> <div class="code-name">&amp;#xe62e;</div>
...@@ -300,9 +312,9 @@ ...@@ -300,9 +312,9 @@
<pre><code class="language-css" <pre><code class="language-css"
>@font-face { >@font-face {
font-family: 'iconfont'; font-family: 'iconfont';
src: url('iconfont.woff2?t=1669254238919') format('woff2'), src: url('iconfont.woff2?t=1673599044897') format('woff2'),
url('iconfont.woff?t=1669254238919') format('woff'), url('iconfont.woff?t=1673599044897') format('woff'),
url('iconfont.ttf?t=1669254238919') format('truetype'); url('iconfont.ttf?t=1673599044897') format('truetype');
} }
</code></pre> </code></pre>
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3> <h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
...@@ -329,6 +341,24 @@ ...@@ -329,6 +341,24 @@
<ul class="icon_lists dib-box"> <ul class="icon_lists dib-box">
<li class="dib"> <li class="dib">
<span class="icon iconfont icon-liulanqi"></span>
<div class="name">
浏览器
</div>
<div class="code-name">.icon-liulanqi
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-paixu"></span>
<div class="name">
排序
</div>
<div class="code-name">.icon-paixu
</div>
</li>
<li class="dib">
<span class="icon iconfont icon-shalou"></span> <span class="icon iconfont icon-shalou"></span>
<div class="name"> <div class="name">
沙漏 沙漏
...@@ -699,6 +729,22 @@ ...@@ -699,6 +729,22 @@
<li class="dib"> <li class="dib">
<svg class="icon svg-icon" aria-hidden="true"> <svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-liulanqi"></use>
</svg>
<div class="name">浏览器</div>
<div class="code-name">#icon-liulanqi</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-paixu"></use>
</svg>
<div class="name">排序</div>
<div class="code-name">#icon-paixu</div>
</li>
<li class="dib">
<svg class="icon svg-icon" aria-hidden="true">
<use xlink:href="#icon-shalou"></use> <use xlink:href="#icon-shalou"></use>
</svg> </svg>
<div class="name">沙漏</div> <div class="name">沙漏</div>
......
@font-face { @font-face {
font-family: "iconfont"; /* Project id 3749283 */ font-family: "iconfont"; /* Project id 3749283 */
src: url('iconfont.woff2?t=1669254238919') format('woff2'), src: url('iconfont.woff2?t=1673599044897') format('woff2'),
url('iconfont.woff?t=1669254238919') format('woff'), url('iconfont.woff?t=1673599044897') format('woff'),
url('iconfont.ttf?t=1669254238919') format('truetype'); url('iconfont.ttf?t=1673599044897') format('truetype');
} }
.iconfont { .iconfont {
...@@ -13,6 +13,14 @@ ...@@ -13,6 +13,14 @@
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
.icon-liulanqi:before {
content: "\e68f";
}
.icon-paixu:before {
content: "\e60b";
}
.icon-shalou:before { .icon-shalou:before {
content: "\e62e"; content: "\e62e";
} }
......
window._iconfont_svg_string_3749283='<svg><symbol id="icon-shalou" viewBox="0 0 1024 1024"><path d="M834.4 92H189.6c-13.6 0-24-11.2-24-24 0-13.6 11.2-24 24-24h644.8c13.6 0 24 11.2 24 24 0.8 12.8-10.4 24-24 24zM866.4 992.8H158.4c-14.4 0-26.4-12-26.4-26.4 0-14.4 12-26.4 26.4-26.4h708c14.4 0 26.4 12 26.4 26.4 0 14.4-12 26.4-26.4 26.4z" fill="" ></path><path d="M766.4 666.4l-0.8-1.6c-40.8-71.2-95.2-117.6-152.8-145.6 57.6-28.8 111.2-74.4 152.8-145.6l0.8-1.6c40.8-70.4 68-166.4 72.8-294.4H792c-4 118.4-28.8 206.4-66.4 271.2l-0.8 0.8C678.4 432 626.4 476 559.2 496.8l-3.2 0.8h-0.8c-1.6 0.8-2.4 1.6-4 2.4l-0.8 0.8-1.6 1.6-1.6 1.6v0.8c-0.8 0.8-1.6 2.4-2.4 4l-0.8 0.8-1.6 5.6v8.8l1.6 5.6 0.8 0.8c0.8 1.6 1.6 2.4 2.4 4v0.8l1.6 1.6V536l1.6 0.8 0.8 0.8c0.8 0.8 2.4 1.6 4 2.4h0.8l3.2 1.6c68 21.6 119.2 64.8 166.4 146.4l0.8 1.6c20 33.6 35.2 74.4 47.2 121.6 2.4 13.6 11.2 43.2 12.8 81.6-37.6-33.6-141.6-57.6-266.4-59.2V464c1.6 0 2.4-0.8 4-1.6v-0.8l6.4-2.4h1.6c45.6-14.4 81.6-36.8 112-66.4 32-32 56.8-71.2 73.6-115.2 4.8-12-0.8-25.6-13.6-30.4-12-4.8-25.6 0.8-30.4 12.8v0.8c-14.4 36.8-35.2 71.2-62.4 98.4-24.8 24-54.4 43.2-92 54.4l-0.8 0.8-2.4 0.8-4 0.8-2.4-0.8-1.6-0.8-2.4-0.8c-36.8-12-68-30.4-92-54.4-28-27.2-48-60.8-62.4-98.4-4.8-12-18.4-18.4-29.6-13.6-12 4.8-17.6 17.6-13.6 30.4 16.8 44 40.8 83.2 73.6 115.2 29.6 29.6 66.4 52 111.2 66.4h0.8l6.4 2.4 1.6 0.8c0.8 0.8 1.6 0.8 3.2 1.6v369.6c-116.8 0-218.4 20-266.4 48 1.6-19.2 5.6-40 12.8-70.4 12-48 28-88 47.2-121.6l0.8-1.6c47.2-81.6 98.4-124.8 167.2-146.4l2.4-1.6h0.8c1.6-0.8 2.4-1.6 4-2.4l0.8-0.8 1.6-0.8v-0.8l1.6-1.6v-0.8c0.8-0.8 1.6-2.4 2.4-4V528c0.8-1.6 1.6-4 1.6-5.6v-8c0-1.6-0.8-4-1.6-5.6v-0.8c-0.8-1.6-1.6-3.2-2.4-4v-0.8l-1.6-1.6-1.6-1.6-2.4 0.8c-1.6-0.8-2.4-1.6-4-2.4h-0.8l-2.4-0.8c-68-20.8-120-64.8-167.2-147.2l-0.8-0.8c-36.8-64.8-61.6-152.8-66.4-271.2h-47.2c4.8 128 32 223.2 72.8 294.4l0.8 1.6C297.6 445.6 352 491.2 409.6 520c-57.6 28-111.2 74.4-152.8 145.6l-0.8 1.6c-38.4 67.2-65.6 156.8-71.2 276h652.8c-5.6-120-32-209.6-71.2-276.8z" fill="" ></path></symbol><symbol id="icon-24gf-playCircle" viewBox="0 0 1024 1024"><path d="M512 42.666667C252.793333 42.666667 42.666667 252.793333 42.666667 512s210.126667 469.333333 469.333333 469.333333 469.333333-210.126667 469.333333-469.333333S771.206667 42.666667 512 42.666667z m196.546667 500.493333l-266.666667 176A37.333333 37.333333 0 0 1 384 688V336.033333a37.333333 37.333333 0 0 1 57.893333-31.16l266.666667 176a37.333333 37.333333 0 0 1 0 62.32z" fill="#5C5C66" ></path></symbol><symbol id="icon-gou" viewBox="0 0 1024 1024"><path d="M506.0096 16.49664C228.71552 16.49664 3.92704 241.27488 3.92704 518.57408c0 277.2736 224.78848 502.07232 502.07232 502.07232s502.07232-224.79872 502.07232-502.07232c0-277.2992-224.78848-502.07744-502.0672-502.07744z m269.12256 369.54112l-312.40704 312.40192a33.4592 33.4592 0 0 1-47.32928 0l-156.20096-156.20096a33.46432 33.46432 0 0 1 0-47.32928 33.46944 33.46944 0 0 1 47.3344 0l132.53632 132.5312 288.73216-288.73728a33.46944 33.46944 0 1 1 47.3344 47.3344z m0 0" fill="#272636" ></path></symbol><symbol id="icon-kongxinduigou" viewBox="0 0 1024 1024"><path d="M512 992C246.912 992 32 777.088 32 512 32 246.912 246.912 32 512 32c265.088 0 480 214.912 480 480 0 265.088-214.912 480-480 480z m0-64c229.76 0 416-186.24 416-416S741.76 96 512 96 96 282.24 96 512s186.24 416 416 416z" ></path><path d="M741.216 344a32 32 0 0 1 46.816 43.616l-315.296 338.208a32 32 0 0 1-43.968 2.688l-193.344-162.368a32 32 0 1 1 41.152-48.992l170.08 142.816 294.56-316z" ></path></symbol><symbol id="icon-yifukuan" viewBox="0 0 1024 1024"><path d="M341.3 793.2H184.7c-14.7 0-26.7-13.5-26.7-30V260.8c0-16.5 12-30 26.7-30h612c14.7 0 26.7 13.5 26.7 30v64.9c0 16.6 13.4 30 30 30s30-13.4 30-30v-64.9c0-49.6-38.9-90-86.7-90h-612c-47.8 0-86.7 40.4-86.7 90v502.4c0 49.6 38.9 90 86.7 90h156.7c16.6 0 30-13.4 30-30s-13.5-30-30.1-30zM896 615.6c-11.7-11.7-30.7-11.7-42.4 0L609.2 859.9 488.1 738.8c-11.7-11.7-30.7-11.7-42.4 0s-11.7 30.7 0 42.4L588 923.6c5.6 5.6 13.3 8.8 21.2 8.8s15.6-3.2 21.2-8.8L896 658c11.7-11.7 11.7-30.7 0-42.4zM512 418.4c13.3 0 24.6 8.6 28.5 20.6h5.5l102.5-102.5c11.7-11.7 11.7-30.7 0-42.4s-30.7-11.7-42.4 0l-94 94-94-94c-11.7-11.7-30.7-11.7-42.4 0s-11.7 30.7 0 42.4L478 439h5.5c4-12 15.2-20.6 28.5-20.6zM482 687c0 16.6 13.4 30 30 30s30-13.4 30-30v-86h-60v86z m0-188h60v42h-60z m30-80.6c-13.3 0-24.6 8.6-28.5 20.6h57c-3.9-12-15.2-20.6-28.5-20.6z m-29.6 25L478 439H352.7c-16.6 0-30 13.4-30 30s13.4 30 30 30H482v-50.6c0-1.7 0.2-3.4 0.4-5z m59.6 5V499h129.3c16.6 0 30-13.4 30-30s-13.4-30-30-30H546l-4.4 4.4c0.3 1.6 0.4 3.3 0.4 5z m-58.5-9.4H478l4.4 4.4c0.3-1.5 0.6-3 1.1-4.4z m58.1 4.4l4.4-4.4h-5.5c0.5 1.4 0.8 2.9 1.1 4.4z m0.4 5c0-1.7-0.1-3.3-0.4-5l-8.4 8.4c-5.9 5.9-13.5 8.8-21.2 8.8s-15.4-2.9-21.2-8.8l-8.4-8.4c-0.3 1.6-0.4 3.3-0.4 5V499h60v-50.6z m-58.5-9.4c-0.5 1.4-0.8 2.9-1.1 4.4l8.4 8.4c5.9 5.9 13.5 8.8 21.2 8.8s15.4-2.9 21.2-8.8l8.4-8.4c-0.3-1.5-0.6-3-1.1-4.4h-57z m187.8 162c16.6 0 30-13.4 30-30s-13.4-30-30-30H542v60h129.3z m-318.6-60c-16.6 0-30 13.4-30 30s13.4 30 30 30H482v-60H352.7z m129.3 0h60v60h-60z" ></path></symbol><symbol id="icon-yidu" viewBox="0 0 1024 1024"><path d="M632.234667 474.026667a21.333333 21.333333 0 0 1 3.84 42.325333l-3.84 0.341333H213.333333a21.333333 21.333333 0 0 1-3.84-42.325333L213.333333 474.026667h418.901334zM492.586667 695.04a21.333333 21.333333 0 0 1 3.84 42.282667l-3.84 0.341333H213.333333a21.333333 21.333333 0 0 1-3.84-42.325333L213.333333 695.04h279.253334zM799.786667 478.336a21.333333 21.333333 0 0 1 38.826666 17.237333l-1.536 3.541334-151.509333 272.042666-157.994667-102.058666a21.333333 21.333333 0 0 1 19.754667-37.632l3.413333 1.792 119.68 77.312 129.365334-232.234667zM771.84 253.098667a21.333333 21.333333 0 0 1 3.84 42.325333l-3.84 0.341333H213.333333a21.333333 21.333333 0 0 1-3.84-42.325333L213.333333 253.098667h558.506667z" fill="#333333" ></path></symbol><symbol id="icon-yuanxingweixuanzhong" viewBox="0 0 1024 1024"><path d="M512 960c-247.039484 0-448-200.960516-448-448S264.960516 64 512 64 960 264.960516 960 512 759.039484 960 512 960zM512 128c-211.744443 0-384 172.255557-384 384s172.255557 384 384 384 384-172.255557 384-384S723.744443 128 512 128z" ></path></symbol><symbol id="icon-selected-copy" viewBox="0 0 1024 1024"><path d="M725.725 527.476c0 122.054-98.994 221.050-221.050 221.050-122.054 0-220.941-98.994-220.941-221.050 0-122.054 98.887-221.050 220.941-221.050 122.054 0 221.050 98.994 221.050 221.050z" ></path><path d="M504.721 121.757c-223.731 0-405.74 182.009-405.74 405.74s182.009 405.74 405.74 405.74c223.731 0 405.74-182.009 405.74-405.74 0-223.731-182.009-405.74-405.74-405.74M504.721 993.296c-98.243 0-189.516-30.567-264.807-82.8-85.909-59.525-150.903-147.259-181.579-249.793-12.656-42.257-19.412-86.981-19.412-133.206 0-78.403 19.412-152.3 53.733-217.187 34.428-64.887 83.658-120.767 143.184-163.025 75.935-53.948 168.816-85.589 268.884-85.589 83.013 0 161.095 21.772 228.665 60.062 85.482 48.37 154.337 123.019 195.309 212.897 26.919 58.775 41.828 124.094 41.828 192.839 0 91.595-26.599 177.183-72.503 249.363-42.686 67.141-102.107 122.591-172.247 160.558-65.853 35.609-141.145 55.879-221.050 55.879z" ></path></symbol><symbol id="icon-gonggao" viewBox="0 0 1024 1024"><path d="M573.04 126.77a32.364 32.364 0 0 0-35.29 7L329.23 341.84H192.39c-42 0.04-76.03 34.09-76.06 76.08v192.56c0.05 41.99 34.08 76.01 76.06 76.06h136.95l208.67 203.92a32.33 32.33 0 0 0 22.63 9.23c17.88-0.02 32.36-14.52 32.37-32.4v-710.6c0.01-13.09-7.87-24.9-19.97-29.92zM696.65 318.89c-11.42-11.16-29.73-10.96-40.89 0.46-11.17 11.42-10.96 29.73 0.46 40.9a215.235 215.235 0 0 1 64.81 152.71A215.294 215.294 0 0 1 658 666.42a28.92 28.92 0 0 0-6.26 31.52 28.904 28.904 0 0 0 26.73 17.84c7.66 0 14.99-3.05 20.39-8.47 51.6-51.6 80.41-121.7 79.99-194.68a273.144 273.144 0 0 0-82.2-193.74z" ></path><path d="M786.33 226.64c-11.47-10.92-29.58-10.58-40.64 0.75-11.06 11.33-10.95 29.45 0.25 40.65 66.91 65.29 103.76 152.74 103.76 246.17 0 93.32-36.74 180.64-103.48 245.9-8.41 8.22-11 20.71-6.56 31.6a28.919 28.919 0 0 0 26.78 18.01 28.84 28.84 0 0 0 20.22-8.24A401.449 401.449 0 0 0 907.68 514c-0.07-108.24-43.82-211.85-121.35-287.36z" ></path></symbol><symbol id="icon-zizhutuiguang" viewBox="0 0 1024 1024"><path d="M61.139079 310.392465q0-26.58137 18.913667-44.983856t45.495036-18.402487l64.408703 0 0 287.283263-64.408703 0q-26.58137 0-45.495036-18.402487t-18.913667-44.983856l0-160.510577zM776.791335 46.623491q43.961496-41.916775 79.744109-46.006216t63.386343 18.913667 47.028577 67.475784 31.693171 99.168955 18.402487 114.504361 6.134162 113.993181-7.667703 108.370199-22.491928 101.724856-34.760252 83.32237-44.472676 53.162739-52.651559 12.268324-58.785721-39.872054q-29.648451-34.760252-80.255289-57.763361t-110.414919-38.849694-121.149703-25.559009-112.45964-17.380126-85.367091-14.824225-38.338514-17.380126l0-319.998794q4.089441-14.313045 32.204352-23.514288t71.565226-17.380126 98.146595-17.891306 111.43728-26.58137 110.9261-42.939135 98.146595-66.964604zM408.741603 673.330395q5.111802 12.268324 12.268324 26.58137 6.134162 13.290685 16.357766 30.670811t24.536649 37.827334q17.380126 24.536649 35.271433 51.629198t27.09255 49.073298 5.622982 36.293793-29.13727 14.313045l-58.274541 0q-20.447207 0-37.827334-7.667703t-33.226712-23.514288-32.715532-40.383234-36.293793-58.274541q-23.514288-38.849694-32.715532-67.986964t-12.268324-48.562117q-4.089441-22.491928 0-38.849694 8.178883 1.02236 19.424847 4.089441 9.201243 2.044721 22.491928 5.111802t30.670811 6.134162q17.380126 4.089441 31.181991 7.667703t25.047829 7.667703q12.268324 4.089441 22.491928 8.178883z" ></path></symbol><symbol id="icon-dengdai" viewBox="0 0 1024 1024"><path d="M512 0C229.23 0 0 229.23 0 512s229.23 512 512 512 512-229.23 512-512S794.77 0 512 0zM768 620c0 11.044-8.954 20-20 20L404 640c-0.814 0-1.614-0.062-2.402-0.158-1.216-0.146-2.406-0.386-3.544-0.74-0.096-0.032-0.188-0.074-0.284-0.106-7.992-2.62-13.768-10.126-13.768-18.996L384.002 276c0-11.046 8.956-20 20-20l88 0c11.044 0 20 8.954 20 20l0 236 236 0c11.046 0 20 8.956 20 20L768.002 620z" ></path></symbol><symbol id="icon-lianjie" viewBox="0 0 1024 1024"><path d="M607.934444 417.856853c-6.179746-6.1777-12.766768-11.746532-19.554358-16.910135l-0.01228 0.011256c-6.986111-6.719028-16.47216-10.857279-26.930349-10.857279-21.464871 0-38.864146 17.400299-38.864146 38.864146 0 9.497305 3.411703 18.196431 9.071609 24.947182l-0.001023 0c0.001023 0.001023 0.00307 0.00307 0.005117 0.004093 2.718925 3.242857 5.953595 6.03853 9.585309 8.251941 3.664459 3.021823 7.261381 5.997598 10.624988 9.361205l3.203972 3.204995c40.279379 40.229237 28.254507 109.539812-12.024871 149.820214L371.157763 796.383956c-40.278355 40.229237-105.761766 40.229237-146.042167 0l-3.229554-3.231601c-40.281425-40.278355-40.281425-105.809861 0-145.991002l75.93546-75.909877c9.742898-7.733125 15.997346-19.668968 15.997346-33.072233 0-23.312962-18.898419-42.211381-42.211381-42.211381-8.797363 0-16.963347 2.693342-23.725354 7.297197-0.021489-0.045025-0.044002-0.088004-0.066515-0.134053l-0.809435 0.757247c-2.989077 2.148943-5.691629 4.669346-8.025791 7.510044l-78.913281 73.841775c-74.178443 74.229608-74.178443 195.632609 0 269.758863l3.203972 3.202948c74.178443 74.127278 195.529255 74.127278 269.707698 0l171.829484-171.880649c74.076112-74.17435 80.357166-191.184297 6.282077-265.311575L607.934444 417.856853z" ></path><path d="M855.61957 165.804257l-3.203972-3.203972c-74.17742-74.178443-195.528232-74.178443-269.706675 0L410.87944 334.479911c-74.178443 74.178443-78.263481 181.296089-4.085038 255.522628l3.152806 3.104711c3.368724 3.367701 6.865361 6.54302 10.434653 9.588379 2.583848 2.885723 5.618974 5.355985 8.992815 7.309476 0.025583 0.020466 0.052189 0.041956 0.077771 0.062422l0.011256-0.010233c5.377474 3.092431 11.608386 4.870938 18.257829 4.870938 20.263509 0 36.68962-16.428158 36.68962-36.68962 0-5.719258-1.309832-11.132548-3.645017-15.95846l0 0c-4.850471-10.891048-13.930267-17.521049-20.210297-23.802102l-3.15383-3.102664c-40.278355-40.278355-24.982998-98.79612 15.295358-139.074476l171.930791-171.830507c40.179095-40.280402 105.685018-40.280402 145.965419 0l3.206018 3.152806c40.279379 40.281425 40.279379 105.838513 0 146.06775l-75.686796 75.737962c-10.296507 7.628748-16.97358 19.865443-16.97358 33.662681 0 23.12365 18.745946 41.87062 41.87062 41.87062 8.048303 0 15.563464-2.275833 21.944801-6.211469 0.048095 0.081864 0.093121 0.157589 0.141216 0.240477l1.173732-1.083681c3.616364-2.421142 6.828522-5.393847 9.529027-8.792247l79.766718-73.603345C929.798013 361.334535 929.798013 239.981676 855.61957 165.804257z" ></path></symbol><symbol id="icon-gengduo" viewBox="0 0 1024 1024"><path d="M746.662019 512c0 51.835575 42.044582 93.865831 93.865831 93.865831 51.851948 0 93.865831-42.029232 93.865831-93.865831 0-51.836599-42.013883-93.865831-93.865831-93.865831C788.706601 418.135192 746.662019 460.163401 746.662019 512z" ></path><path d="M89.604272 512c0 51.835575 42.043558 93.865831 93.864808 93.865831 51.822272 0 93.865831-42.029232 93.865831-93.865831 0-51.836599-42.043558-93.865831-93.865831-93.865831C131.648854 418.135192 89.604272 460.163401 89.604272 512z" ></path><path d="M418.132634 512c0 51.835575 42.013883 93.865831 93.866854 93.865831 51.821249 0 93.864808-42.029232 93.864808-93.865831 0-51.836599-42.043558-93.865831-93.864808-93.865831C460.146517 418.135192 418.132634 460.163401 418.132634 512z" ></path></symbol><symbol id="icon-31tishi" viewBox="0 0 1024 1024"><path d="M809.010019 214.988446c-163.765831-163.79653-430.255231-163.79653-594.022085 0-163.79653 163.766854-163.79653 430.257278 0 594.021062 163.767877 163.798577 430.256254 163.798577 594.022085 0C972.806549 645.245723 972.806549 378.7553 809.010019 214.988446zM766.38113 766.382665c-140.265604 140.293233-368.528378 140.263557-508.764306 0-140.294256-140.265604-140.294256-368.499725 0-508.779655 140.235928-140.250254 368.497679-140.27993 508.764306 0C906.644687 397.853263 906.644687 626.145713 766.38113 766.382665z" ></path><path d="M514.170944 298.225195c-24.929786 0-45.217854 20.289092-45.217854 45.232181 0 24.989137 20.288069 45.307905 45.217854 45.307905 24.958438 0 45.278229-20.318768 45.278229-45.307905C559.449173 318.514287 539.129382 298.225195 514.170944 298.225195z" ></path><path d="M514.170944 427.28969c-18.801205 0-34.150798 15.32094-34.150798 34.151821l0 267.547499c0 18.828834 15.349593 34.149774 34.150798 34.149774 18.830881 0 34.180474-15.32094 34.180474-34.149774L548.351418 461.441511C548.351418 442.611653 533.001825 427.28969 514.170944 427.28969z" ></path></symbol><symbol id="icon-pengyouquan" viewBox="0 0 1024 1024"><path d="M659.968 68.544c-9.28-3.072-18.688-6.016-28.288-8.576C593.664 49.728 553.856 44.16 512.64 44.16c-17.536 0-34.88 1.088-51.968 3.072-41.792 4.8-81.92 15.104-119.488 30.336l218.048 218.048 19.136 19.136L618.752 355.2c4.352 3.136 8.64 6.464 12.608 9.856 10.688 9.28 20.288 19.712 28.544 31.232L659.904 68.544zM631.424 217.92 630.912 217.472l0.512 0L631.424 217.92z" ></path><path d="M923.904 299.008c-4.352-8.832-9.024-17.536-13.952-26.112-19.584-34.048-43.84-66.24-72.96-95.296-12.352-12.48-25.472-24-38.912-34.624-32.896-26.176-68.544-47.168-105.92-62.976l0 308.352 0 27.136 0 57.088c0.832 5.312 1.408 10.624 1.856 15.936 1.024 14.08 0.384 28.224-1.856 42.304L923.904 299.008zM798.08 384.512 798.08 383.808l0.32 0.384L798.08 384.512z" ></path><path d="M947.776 654.08c3.264-9.344 6.144-18.752 8.704-28.16 10.176-38.016 15.872-77.824 15.872-119.04 0-17.6-1.28-34.944-3.2-51.968-4.8-41.792-15.104-81.92-30.336-119.552l-218.048 218.048-19.072 19.136-40.512 40.448c-3.2 4.352-6.4 8.576-9.92 12.48-9.216 10.816-19.712 20.288-31.104 28.608L947.776 654.08zM798.4 625.536l0.512-0.448 0 0.448L798.4 625.536z" ></path><path d="M714.816 920.32c8.768-4.352 17.472-8.96 26.048-13.888 34.048-19.648 66.176-43.904 95.296-73.024 12.416-12.352 23.936-25.472 34.56-38.848 26.176-32.96 47.232-68.608 63.04-106.048L625.408 688.512 598.4 688.512 541.248 688.512c-5.312 0.896-10.56 1.472-15.936 1.92-14.08 1.088-28.224 0.384-42.24-1.856L714.816 920.32zM629.312 794.56l0.64 0-0.256 0.256L629.312 794.56z" ></path><path d="M364.032 943.552c9.344 3.136 18.688 5.952 28.288 8.512 37.952 10.304 77.824 15.808 118.976 15.808 17.6 0 34.944-1.024 52.032-3.008 41.728-4.8 81.856-15.104 119.488-30.4l-218.048-218.048-19.136-19.072-40.448-40.512c-4.288-3.136-8.512-6.464-12.544-9.856C381.952 637.76 372.416 627.264 364.032 615.744L364.032 943.552zM392.576 794.112l0.512 0.512L392.576 794.624 392.576 794.112z" ></path><path d="M99.776 710.848c4.352 8.832 9.024 17.408 13.952 26.048 19.584 34.048 43.776 66.176 72.896 95.296 12.48 12.416 25.536 23.872 38.976 34.624 32.96 26.176 68.672 47.168 105.984 63.04L331.584 621.504 331.584 594.432 331.584 537.28C330.688 532.032 330.112 526.656 329.664 521.408 328.64 507.264 329.28 493.12 331.584 479.104L99.776 710.848zM225.6 625.344l0 0.704L225.28 625.664 225.6 625.344z" ></path><path d="M76.16 358.208C73.024 367.488 70.144 376.896 67.584 386.432c-10.24 38.016-15.872 77.888-15.872 119.04 0 17.6 1.152 34.944 3.072 52.032 4.8 41.792 15.168 81.92 30.4 119.552L303.232 458.88l19.136-19.136L362.752 399.36C365.952 395.008 369.28 390.784 372.672 386.688c9.216-10.688 19.712-20.224 31.168-28.48L76.16 358.208zM225.536 386.688 225.088 387.136 225.088 386.688 225.536 386.688z" ></path><path d="M306.944 93.568C298.176 97.92 289.472 102.592 280.96 107.52 246.848 127.104 214.72 151.36 185.6 180.416 173.184 192.832 161.664 205.952 150.976 219.392 124.8 252.288 103.808 288 88 325.376l308.352 0 27.072 0 57.216 0C485.888 324.48 491.136 323.84 496.448 323.456c14.08-1.088 28.288-0.384 42.24 1.92L306.944 93.568zM392.512 219.392 391.808 219.392l0.32-0.32L392.512 219.392z" ></path></symbol><symbol id="icon-weibiaoti544" viewBox="0 0 1024 1024"><path d="M767.420809 213.3399l-130.449028 0c0-24.559349-19.108197-54.235229-42.701544-54.235229l-149.400658 0c-23.590278 0-42.698474 29.67588-42.698474 54.235229l-130.445958 0c-28.789697 0-60.519352 4.300956-60.519352 33.145911l0 44.62536 601.704045 0 0-44.62536C812.911886 217.641879 796.256554 213.3399 767.420809 213.3399z" ></path><path d="M264.419763 343.299787l0 424.964738c0 43.212174 42.3659 95.898117 85.575004 95.898117l339.157443 0c43.258223 0 71.571059-52.685943 71.571059-95.898117l0-424.964738L264.419763 343.299787zM406.929478 777.151939l-52.212152 0 0-376.045585 52.212152 0L406.929478 777.151939zM537.71415 777.151939l-52.212152 0 0-376.045585 52.212152 0L537.71415 777.151939zM668.498822 777.151939l-52.212152 0 0-376.045585 52.212152 0L668.498822 777.151939z" ></path></symbol><symbol id="icon-weibiaoti553" viewBox="0 0 1024 1024"><path d="M505.122871 403.977751c-74.251098 0-134.672212 60.389392-134.672212 134.672212 0 74.227562 60.422138 134.672212 134.672212 134.672212 74.255191 0 134.672212-60.444651 134.672212-134.672212C639.795083 464.367143 579.378062 403.977751 505.122871 403.977751z" ></path><path d="M814.870494 242.425332l-134.672212 0-80.804351-81.864496-188.541097 0-80.804351 81.864496-134.672212 0c-44.63457 0-74.859965 22.669302-74.859965 67.280336l0 457.889615c0 44.611034 30.225395 94.953605 74.859965 94.953605l619.495246 0c44.64071 0 87.449701-50.342572 87.449701-94.953605l0-457.889615C902.320195 265.095657 859.511203 242.425332 814.870494 242.425332zM505.122871 754.128573c-118.811989 0-215.477586-96.694249-215.477586-215.477586 0-118.841665 96.665597-215.477586 215.477586-215.477586 118.810966 0 215.477586 96.636944 215.477586 215.477586C720.600457 657.434324 623.933837 754.128573 505.122871 754.128573z" ></path></symbol><symbol id="icon-qq" viewBox="0 0 1024 1024"><path d="M162.797568 576.497664c-30.287872 75.442176-35.29728 147.37408-10.903552 160.73728 16.87552 9.275392 43.149312-11.943936 67.883008-50.542592 9.814016 42.274816 34.000896 80.203776 68.589568 110.866432-36.21888 14.116864-59.94496 37.175296-59.94496 63.24224 0 42.944512 64.079872 77.613056 143.112192 77.613056 71.305216 0 130.373632-28.153856 141.273088-65.247232 2.885632 0 14.209024 0 16.961536 0 11.114496 37.093376 70.053888 65.247232 141.441024 65.247232 79.120384 0 143.11424-34.670592 143.11424-77.613056 0-26.066944-23.683072-48.955392-59.98592-63.24224 34.463744-30.662656 58.81856-68.591616 68.548608-110.866432 24.727552 38.598656 50.880512 59.817984 67.84 50.542592 24.518656-13.3632 19.632128-85.295104-10.94656-160.73728-23.891968-59.068416-56.266752-102.67648-80.953344-112.449536 0.333824-3.592192 0.626688-7.563264 0.626688-11.364352 0-22.892544-6.098944-44.027904-16.498688-61.239296 0.210944-1.376256 0.210944-2.67264 0.210944-4.050944 0-10.569728-2.381824-20.385792-6.475776-28.86656-6.223872-153.76384-101.339136-276.02944-255.35488-276.02944-153.974784 0-249.217024 122.267648-255.440896 276.02944-4.009984 8.605696-6.473728 18.466816-6.473728 28.993536 0 1.378304 0 2.67264 0.167936 4.052992-10.190848 17.084416-16.29184 38.219776-16.29184 61.19424 0 3.844096 0.206848 7.686144 0.4608 11.446272C219.148288 473.905152 186.650624 517.431296 162.797568 576.497664L162.797568 576.497664z" ></path></symbol><symbol id="icon-iconfontzhizuobiaozhunbduan32" viewBox="0 0 1024 1024"><path d="M693.063287 347.452363c11.739369 0 23.353894 0.862647 34.874275 2.143826-31.333636-145.899928-187.328479-254.30694-365.384781-254.30694-199.066825 0-362.134761 135.684262-362.134761 307.978327 0 99.453083 54.251601 181.122127 144.907321 244.463758l-36.219923 108.936061 126.59628-63.48387c45.299719 8.968256 81.639369 18.185174 126.849036 18.185174 11.361769 0 22.630417-0.560772 33.80492-1.438769-7.074116-24.211425-11.174504-49.568952-11.174504-75.879178C385.183198 475.845569 521.046538 347.452363 693.063287 347.452363L693.063287 347.452363zM498.35063 249.270227c27.267017 0 45.331441 17.938558 45.331441 45.189202 0 27.139104-18.063401 45.328371-45.331441 45.328371-27.142174 0-54.377468-18.188244-54.377468-45.328371C443.973162 267.206738 471.208457 249.270227 498.35063 249.270227L498.35063 249.270227zM244.908384 339.785753c-27.139104 0-54.531987-18.186198-54.531987-45.328371 0-27.250644 27.390837-45.188178 54.531987-45.188178 27.139104 0 45.203528 17.937534 45.203528 45.188178C290.111912 321.599556 272.048511 339.785753 244.908384 339.785753L244.908384 339.785753zM1023.580956 629.701702c0-144.778384-144.879692-262.793218-307.599703-262.793218-172.303274 0-308.004933 118.013811-308.004933 262.793218 0 145.026024 135.705752 262.790148 308.004933 262.790148 36.063357 0 72.435753-9.092076 108.656699-18.170848l99.329263 54.389748-27.232225-90.499154C969.421452 783.681656 1023.580956 711.369723 1023.580956 629.701702L1023.580956 629.701702zM616.116801 584.389704c-18.030655 0-36.219923-17.938558-36.219923-36.236296 0-18.044982 18.188244-36.213783 36.219923-36.213783 27.39186 0 45.330418 18.168802 45.330418 36.213783C661.447219 566.451146 643.508661 584.389704 616.116801 584.389704L616.116801 584.389704zM815.309492 584.389704c-17.907858 0-35.971259-17.938558-35.971259-36.236296 0-18.044982 18.063401-36.213783 35.971259-36.213783 27.140127 0 45.326325 18.168802 45.326325 36.213783C860.63684 566.451146 842.450642 584.389704 815.309492 584.389704L815.309492 584.389704z" ></path></symbol><symbol id="icon-guanbi" viewBox="0 0 1024 1024"><path d="M511.232 438.8352L112.9984 40.6016A51.2 51.2 0 0 0 40.6016 112.9984L438.784 511.232 40.6016 909.4656a51.2 51.2 0 1 0 72.3968 72.448l398.2336-398.2848 398.2336 398.2848a51.2 51.2 0 1 0 72.448-72.448l-398.2848-398.2336 398.2848-398.2336A51.2 51.2 0 0 0 909.4656 40.6016L511.232 438.784z" ></path></symbol><symbol id="icon-py_weixinzhifu" viewBox="0 0 1137 1024"><path d="M426 619.367a33.133 33.133 0 0 1-44.167-13.466l-2.467-4.934-90.833-199.266a13.967 13.967 0 0 1-1.867-6.733c0-9.2 7.367-16.567 16.6-16.567a17 17 0 0 1 9.8 3.067L420.5 457.5a49 49 0 0 0 44.2 4.9L970.532 238c-90.867-106.666-240-176-408.833-176C286 61.401 62 247.801 62 477.734c0 125.1 67.533 238.533 172.5 314.566 8.6 6.134 14.133 16.534 14.133 27 0 3.667-0.633 7.334-1.867 11l-22.7 84c-1.233 3.667-2.466 8-2.466 12.267 0 9.2 7.366 16.566 16.566 16.566 3.667 0 6.767-1.233 9.834-3.066L357.266 876.9c8-4.9 17.2-7.333 26.4-7.967 4.9 0 9.834 0.634 14.734 2.467 53.4 15.333 108.033 22.667 163.3 22.667 276.232 0 500.299-186.4 500.299-416.333 0-68.667-20.267-135.5-57.1-193.133l-575.8 332.333-3.066 2.433z" ></path></symbol><symbol id="icon-yanjing" viewBox="0 0 1024 1024"><path d="M512.002844 249.457778c189.155556 0 361.415111 183.751111 427.207112 262.542222-65.792 78.791111-238.051556 262.542222-427.207112 262.542222S150.587733 590.791111 84.795733 512C150.587733 433.208889 322.847289 249.457778 512.002844 249.457778zM512.002844 170.666667C277.279289 170.666667 78.395733 394.638222 11.323733 479.715556a51.683556 51.683556 0 0 0 0 64.568888C78.395733 629.361778 277.279289 853.333333 512.002844 853.333333s433.607111-223.971556 500.679112-309.048889a51.683556 51.683556 0 0 0 0-64.568888C945.609956 394.638222 746.7264 170.666667 512.002844 170.666667z m0 262.542222c42.410667 0 76.8 35.271111 76.8 78.791111s-34.389333 78.791111-76.8 78.791111-76.8-35.271111-76.8-78.791111 34.389333-78.791111 76.8-78.791111z m0-78.734222c-62.122667 0-118.129778 38.371556-141.880888 97.251555-23.779556 58.88-10.638222 126.606222 33.28 171.662222a150.755556 150.755556 0 0 0 167.367111 34.133334C628.169956 633.173333 665.602844 575.715556 665.602844 512c0-87.011556-68.750222-157.525333-153.571555-157.525333z" ></path></symbol><symbol id="icon-yanjing1" viewBox="0 0 1024 1024"><path d="M512.022187 546.417778c-184.177778 0-368.071111-55.921778-499.114667-167.537778a37.575111 37.575111 0 0 1-3.498667-53.162667 37.944889 37.944889 0 0 1 53.418667-3.470222c231.082667 198.826667 668.302222 198.826667 898.389333 0a37.944889 37.944889 0 0 1 53.418667 3.470222c13.767111 15.644444 12.231111 39.452444-3.498667 53.191111C880.093298 490.496 696.199964 546.417778 512.022187 546.417778z m-136.760889 164.522666a30.833778 30.833778 0 0 1-6.741334 0c-10.325333-1.422222-19.626667-7.111111-25.543111-15.644444-5.944889-8.561778-7.964444-19.228444-5.632-29.354667l24.945778-146.631111a37.973333 37.973333 0 0 1 43.918222-30.805333 37.831111 37.831111 0 0 1 30.947556 43.747555l-24.945778 146.602667a37.376 37.376 0 0 1-36.949333 32.085333z m561.009778-74.581333c-9.955556 0-19.512889-4.039111-26.453334-11.178667l-123.022222-124.245333a37.176889 37.176889 0 0 1 16.042667-64.455111 37.546667 37.546667 0 0 1 37.091555 12.259556l123.050667 124.245333c14.592 14.563556 14.592 38.144 0 52.707555-7.224889 6.826667-16.782222 10.638222-26.737778 10.666667z m-848.497778 0a38.997333 38.997333 0 0 1-24.945778-10.666667 37.176889 37.176889 0 0 1 0-52.707555l123.022222-124.245333a37.518222 37.518222 0 0 1 67.470222 14.136888 37.205333 37.205333 0 0 1-15.815111 38.058667l-123.022222 124.245333a37.006222 37.006222 0 0 1-26.709333 11.178667z m562.744889 74.581333a37.376 37.376 0 0 1-36.693334-30.833777l-24.945777-146.631111a37.176889 37.176889 0 0 1 9.756444-38.826667 37.546667 37.546667 0 0 1 39.424-7.68c13.539556 5.319111 22.755556 17.92 23.694222 32.341333l24.945778 146.631111c1.820444 9.728-0.341333 19.768889-6.030222 27.904-5.688889 8.135111-14.364444 13.653333-24.177778 15.36a30.805333 30.805333 0 0 1-5.973333 1.706667z" ></path></symbol><symbol id="icon-jiahao" viewBox="0 0 1024 1024"><path d="M913.536524 551.447587H116.910163c-23.637854 0-42.977915-19.340062-42.977916-42.977916s19.340062-42.977915 42.977916-42.977915h796.626361c23.637854 0 42.977915 19.340062 42.977916 42.977915s-19.340062 42.977915-42.977916 42.977916z" ></path><path d="M472.194264 906.731688V110.105326c0-23.637854 19.340062-42.977915 42.977915-42.977915s42.977915 19.340062 42.977916 42.977915v796.626362c0 23.637854-19.340062 42.977915-42.977916 42.977915s-42.977915-19.340062-42.977915-42.977915z" ></path></symbol><symbol id="icon-shenfenrenzheng_chenggong" viewBox="0 0 1024 1024"><path d="M514.9 528.5c-106.4 0-193-86.6-193-193s86.6-193 193-193 193 86.6 193 193-86.6 193-193 193z m0-346.6c-84.7 0-153.6 68.9-153.6 153.6s68.9 153.6 153.6 153.6 153.6-68.9 153.6-153.6-69-153.6-153.6-153.6z" fill="#444444" ></path><path d="M149 882.9h-0.8c-10.9-0.5-19.3-9.6-18.9-20.5 8.7-207.2 178-369.6 385.6-369.6 107.2 0 210.4 45.1 283.3 123.8 7.4 8 6.9 20.4-1.1 27.8-8 7.4-20.4 6.9-27.8-1.1-65.4-70.7-158.1-111.2-254.4-111.2-186.4 0-338.5 145.7-346.2 331.8-0.5 10.7-9.3 19-19.7 19z" fill="#444444" ></path><path d="M676.3 882.9c-5 0-10.1-1.9-13.9-5.8L540.3 755c-7.7-7.7-7.7-20.2 0-27.8 7.7-7.7 20.2-7.7 27.8 0l108.2 108.2 188-188c7.7-7.7 20.2-7.7 27.8 0 7.7 7.7 7.7 20.2 0 27.8l-201.9 202c-3.8 3.8-8.8 5.7-13.9 5.7z" fill="#FF8803" ></path></symbol><symbol id="icon-duihao" viewBox="0 0 1024 1024"><path d="M380.342857 801.645714a53.394286 53.394286 0 0 1-36.571428-16.091428l-218.331429-217.234286a55.588571 55.588571 0 0 1 0-77.165714 54.125714 54.125714 0 0 1 76.8 0l178.102857 179.2L835.291429 272.091429a53.394286 53.394286 0 0 1 76.434285 0 54.125714 54.125714 0 0 1 0 76.8L418.742857 785.554286a54.491429 54.491429 0 0 1-38.4 16.091428z" ></path></symbol><symbol id="icon-zhifubao" viewBox="0 0 1024 1024"><path d="M230.404 576.536c-12.087 9.728-25.043 23.93-28.805 41.984-5.12 24.666-1.069 55.541 22.728 79.761 28.828 29.362 72.637 37.398 91.56 38.779 51.4 3.717 106.184-21.772 147.477-50.844 16.184-11.42 43.899-34.349 70.39-69.721-59.37-30.653-133.477-64.557-212.703-61.24-40.47 1.692-69.454 10.084-90.647 21.281z m752.859 135.545C1009.463 650.574 1024 582.968 1024 512 1024 229.688 794.335 0 512 0 229.665 0 0 229.688 0 512c0 282.335 229.665 512 512 512 170.385 0 321.491-83.723 414.631-212.124-87.997-43.742-233.027-115.734-322.36-159.299-42.63 48.596-105.65 97.303-176.84 118.495-44.722 13.29-85.037 18.365-127.199 9.75-41.739-8.548-72.481-28.093-90.401-47.683-9.127-9.995-19.612-22.706-27.203-37.82a71.25 71.25 0 0 0 1.202 3.049s-4.363-7.524-7.702-19.5a85.994 85.994 0 0 1-3.34-18.143 93.517 93.517 0 0 1-0.2-13.045c-0.378-7.702-0.066-15.783 1.67-24.064 4.185-20.235 12.822-43.81 35.172-65.692 49.063-48.039 114.777-50.621 148.814-50.42 50.421 0.289 138.04 22.35 211.812 48.439 20.436-43.52 33.547-90.068 42.007-121.1H305.308v-33.168h157.518v-66.337H272.139v-33.169h190.687v-66.315c0-9.105 1.803-16.584 16.584-16.584h74.619v82.899h207.293v33.169H554.029v66.337h165.82s-16.65 92.828-68.719 184.32c115.557 41.272 278.128 104.849 332.133 126.086z" ></path></symbol><symbol id="icon-tupian" viewBox="0 0 1024 1024"><path d="M335.36 440.32c38.4 0 71.68-30.72 71.68-71.68 0-38.4-30.72-71.68-71.68-71.68-38.4 0-71.68 30.72-71.68 71.68 2.56 40.96 33.28 71.68 71.68 71.68z m0 0M652.8 396.8L445.44 691.2 337.92 540.16 158.72 793.6h704L652.8 396.8z m0 0" ></path><path d="M934.4 107.52H89.6c-20.48 0-35.84 15.36-35.84 35.84V883.2c0 20.48 15.36 35.84 35.84 35.84h844.8c20.48 0 35.84-15.36 35.84-35.84V143.36c0-20.48-15.36-35.84-35.84-35.84z m-35.84 739.84H125.44V176.64h775.68v670.72h-2.56z m0 0" ></path></symbol><symbol id="icon-xiazai-wenjianxiazai-05" viewBox="0 0 1024 1024"><path d="M897.706667 989.866667H126.293333c-51.2 0-92.16-40.96-92.16-92.16V512c0-13.653333 11.946667-25.6 25.6-25.6S85.333333 498.346667 85.333333 512v385.706667C85.333333 919.893333 104.106667 938.666667 126.293333 938.666667h769.706667c22.186667 0 40.96-18.773333 40.96-40.96V512c0-13.653333 11.946667-25.6 25.6-25.6s27.306667 11.946667 27.306667 25.6v385.706667c0 51.2-40.96 92.16-92.16 92.16z" fill="#333333" ></path><path d="M512 738.986667c-6.826667 0-13.653333-1.706667-18.773333-6.826667L267.946667 505.173333c-10.24-10.24-10.24-25.6 0-35.84s25.6-10.24 35.84 0L512 677.546667l208.213333-208.213334c10.24-10.24 25.6-10.24 35.84 0s10.24 25.6 0 35.84L530.773333 730.453333c-5.12 5.12-11.946667 8.533333-18.773333 8.533334z" fill="#333333" ></path><path d="M512 738.986667c-13.653333 0-25.6-11.946667-25.6-25.6V59.733333c0-13.653333 11.946667-25.6 25.6-25.6s25.6 11.946667 25.6 25.6v653.653334c0 13.653333-11.946667 25.6-25.6 25.6z" fill="#333333" ></path></symbol><symbol id="icon-zhuanfa" viewBox="0 0 1024 1024"><path d="M864 501.333333c-23.466667 0-42.666667 19.2-42.666667 42.666667v256h-597.333333v-597.333333h256c23.466667 0 42.666667-19.2 42.666667-42.666667s-19.2-42.666667-42.666667-42.666667H221.866667c-6.4 0-10.666667 0-17.066667 2.133334-4.266667 2.133333-10.666667 2.133333-14.933333 4.266666-4.266667 2.133333-10.666667 6.4-14.933334 8.533334-4.266667 2.133333-8.533333 6.4-10.666666 10.666666-4.266667 2.133333-8.533333 6.4-10.666667 10.666667-2.133333 4.266667-6.4 10.666667-8.533333 14.933333-2.133333 4.266667-2.133333 10.666667-4.266667 14.933334 0 6.4-2.133333 10.666667-2.133333 17.066666v603.733334c0 6.4 0 10.666667 2.133333 17.066666 2.133333 4.266667 2.133333 10.666667 4.266667 14.933334 2.133333 4.266667 4.266667 10.666667 8.533333 14.933333 2.133333 4.266667 6.4 8.533333 10.666667 12.8s8.533333 6.4 12.8 10.666667c4.266667 2.133333 8.533333 6.4 14.933333 8.533333 4.266667 2.133333 10.666667 4.266667 14.933333 4.266667 6.4 2.133333 10.666667 2.133333 17.066667 2.133333h603.733333c6.4 0 10.666667 0 17.066667-2.133333 4.266667-2.133333 10.666667-2.133333 14.933333-4.266667 4.266667-2.133333 8.533333-4.266667 14.933334-8.533333 4.266667-2.133333 8.533333-6.4 12.8-10.666667 4.266667-4.266667 6.4-8.533333 10.666666-12.8 2.133333-4.266667 6.4-8.533333 8.533334-14.933333 2.133333-4.266667 4.266667-10.666667 4.266666-14.933334 2.133333-6.4 2.133333-10.666667 2.133334-17.066666V544c-6.4-23.466667-25.6-42.666667-49.066667-42.666667z" ></path><path d="M906.666667 183.466667c-2.133333-4.266667-2.133333-10.666667-4.266667-14.933334-2.133333-4.266667-4.266667-8.533333-8.533333-14.933333-2.133333-4.266667-6.4-8.533333-10.666667-12.8-4.266667-4.266667-8.533333-6.4-12.8-10.666667-4.266667-2.133333-8.533333-6.4-14.933333-8.533333-4.266667-2.133333-10.666667-4.266667-14.933334-4.266667-6.4-2.133333-10.666667-2.133333-17.066666-2.133333h-151.466667c-23.466667 0-42.666667 19.2-42.666667 42.666667s19.2 42.666667 42.666667 42.666666H725.333333c-89.6 64-215.466667 168.533333-245.333333 288-6.4 23.466667 8.533333 46.933333 32 51.2 4.266667 0 6.4 2.133333 10.666667 2.133334 19.2 0 36.266667-12.8 40.533333-32 25.6-104.533333 168.533333-213.333333 258.133333-268.8v106.666666c0 23.466667 19.2 42.666667 42.666667 42.666667s42.666667-19.2 42.666667-42.666667V200.533333v-17.066666z" ></path></symbol><symbol id="icon-shouye" viewBox="0 0 1024 1024"><path d="M969.6 502.4l-118.4-112-323.2-300.8c-9.6-9.6-22.4-9.6-32 0l-313.6 297.6c-3.2 3.2-6.4 6.4-9.6 9.6l-118.4 112c-9.6 9.6-9.6 22.4 0 32s22.4 9.6 32 0l83.2-80 0 393.6c0 48 41.6 89.6 92.8 89.6l83.2 0c38.4 0 70.4-28.8 70.4-67.2l0-217.6 99.2 0 99.2 0 0 217.6c0 35.2 32 67.2 70.4 67.2l83.2 0c51.2 0 92.8-38.4 92.8-89.6l0-396.8 80 73.6c9.6 9.6 22.4 9.6 32 0C979.2 524.8 979.2 512 969.6 502.4zM809.6 857.6c0 25.6-19.2 44.8-44.8 44.8l-83.2 0c-12.8 0-22.4-9.6-22.4-22.4L659.2 640c0-12.8-9.6-22.4-22.4-22.4l-121.6 0-121.6 0c-12.8 0-22.4 9.6-22.4 22.4l0 240c0 12.8-9.6 22.4-22.4 22.4l-83.2 0c-25.6 0-44.8-19.2-44.8-44.8l0-438.4 294.4-281.6 294.4 281.6L809.6 857.6z" ></path></symbol><symbol id="icon-sousuo" viewBox="0 0 1024 1024"><path d="M862.609 816.955L726.44 680.785l-0.059-0.056a358.907 358.907 0 0 0 56.43-91.927c18.824-44.507 28.369-91.767 28.369-140.467 0-48.701-9.545-95.96-28.369-140.467-18.176-42.973-44.19-81.56-77.319-114.689-33.13-33.129-71.717-59.144-114.69-77.32-44.507-18.825-91.767-28.37-140.467-28.37-48.701 0-95.96 9.545-140.467 28.37-42.973 18.176-81.56 44.19-114.689 77.32-33.13 33.129-59.144 71.717-77.32 114.689-18.825 44.507-28.37 91.767-28.37 140.467 0 48.7 9.545 95.96 28.37 140.467 18.176 42.974 44.19 81.561 77.32 114.69 33.129 33.129 71.717 59.144 114.689 77.319 44.507 18.824 91.767 28.369 140.467 28.369 48.7 0 95.96-9.545 140.467-28.369 32.78-13.864 62.997-32.303 90.197-54.968 0.063 0.064 0.122 0.132 0.186 0.195l136.169 136.17c6.25 6.25 14.438 9.373 22.628 9.373 8.188 0 16.38-3.125 22.627-9.372 12.496-12.496 12.496-32.758 0-45.254z m-412.274-69.466c-79.907 0-155.031-31.118-211.534-87.62-56.503-56.503-87.62-131.627-87.62-211.534s31.117-155.031 87.62-211.534c56.502-56.503 131.626-87.62 211.534-87.62s155.031 31.117 211.534 87.62c56.502 56.502 87.62 131.626 87.62 211.534s-31.118 155.031-87.62 211.534c-56.503 56.502-131.627 87.62-211.534 87.62z" fill="" ></path></symbol><symbol id="icon-saoyisao" viewBox="0 0 1024 1024"><path d="M149.333333 170.858667A21.546667 21.546667 0 0 1 170.858667 149.333333H384V106.666667H170.858667A64.213333 64.213333 0 0 0 106.666667 170.858667V384h42.666666V170.858667zM170.858667 874.666667A21.546667 21.546667 0 0 1 149.333333 853.141333V640H106.666667v213.141333A64.213333 64.213333 0 0 0 170.858667 917.333333H384v-42.666666H170.858667zM853.12 149.333333A21.546667 21.546667 0 0 1 874.666667 170.858667V384h42.666666V170.858667A64.213333 64.213333 0 0 0 853.141333 106.666667H640v42.666666h213.141333zM874.666667 853.141333A21.546667 21.546667 0 0 1 853.141333 874.666667H640v42.666666h213.141333A64.213333 64.213333 0 0 0 917.333333 853.141333V640h-42.666666v213.141333zM106.666667 490.666667h810.666666v42.666666H106.666667v-42.666666z" fill="#3D3D3D" ></path></symbol><symbol id="icon-xiaoxi" viewBox="0 0 1024 1024"><path d="M504.14253 974.868231C233.014641 974.868231 12.463574 769.49021 12.463574 516.967366S233.014641 59.066502 504.14253 59.066502s491.678956 205.378021 491.678955 457.900864c0 85.25807-24.927148 167.264773-72.252602 239.156113 42.809667 35.945669 95.012171 80.38102 91.580173 135.292997-1.445052 22.75957-11.018522 42.087141-27.997883 55.815135-46.78356 38.113247-138.00247 25.288411-226.331275 12.644205-34.86188-4.877051-73.878285-10.476627-94.470277-9.212207l-1.806315 1.806315h-8.489681c-48.951138 14.992415-99.889222 22.398307-151.911095 22.398307z m0-850.774387C268.96031 124.093844 77.671547 300.390192 77.671547 516.967366s191.288763 392.873523 426.470983 392.873523c44.615982 0 88.509437-6.322103 130.415946-18.605045l0.903157-0.722526 10.837891-2.709473h1.625683c28.539778-5.238314 70.085024 0.541895 122.287529 7.947787 60.330923 8.489681 151.369201 21.495149 175.935085 1.26442 1.986947-1.625684 3.793262-3.61263 4.154525-9.392838 1.445052-22.940201-43.351561-60.511554-70.265655-82.909861-7.767155-6.502734-15.173046-12.644205-21.856412-18.605045L835.601341 765.87758l18.243782-23.843359c50.215558-66.111131 76.949021-143.963309 76.949021-225.066855-0.180632-216.577174-191.469395-392.873523-426.651614-392.873522z" ></path><path d="M755.581584 476.144646H272.031046c-49.312401 0-49.312401-71.349444 0-71.349444h483.73117c49.131769 0 49.131769 71.349444-0.180632 71.349444zM755.581584 629.139531H485.898748c-43.893456 0-43.893456-65.027342 0-65.027342h269.682836c36.306932 0 36.306932 65.027342 0 65.027342z" ></path></symbol><symbol id="icon-wode" viewBox="0 0 1024 1024"><path d="M970.142125 887.350303c-0.271515-3.84-0.827475-9.671111-1.82303-17.260606-1.848889-14.157576-4.615758-29.853737-8.494546-46.713535-11.080404-48.122828-28.935758-96.271515-55.169292-141.433536-68.926061-118.600404-181.772929-194.314343-344.901819-206.62303 95.883636-21.837576 167.421414-107.545859 167.421415-209.945859 0-118.923636-96.504242-215.337374-215.544243-215.337373-119.04 0-215.544242 96.413737-215.544242 215.337373 0 102.412929 71.550707 188.108283 167.434343 209.958788-163.128889 12.308687-275.975758 88.048485-344.914747 206.674748-26.233535 45.16202-44.088889 93.323636-55.182223 141.459394-3.878788 16.859798-6.658586 32.568889-8.507474 46.726464-1.021414 7.848081-1.590303 13.808485-1.83596 17.635556-6.270707 48.032323 29.013333 88.177778 77.795556 88.177778h761.483636c49.027879 0 85.061818-40.572121 77.782626-88.656162zM353.570004 265.373737c0-87.22101 70.76202-157.918384 158.060606-157.918383 87.298586 0 158.060606 70.697374 158.060606 157.918383S598.916267 423.292121 511.63061 423.292121c-87.285657 0-158.060606-70.697374-158.060606-157.918384z m538.815354 653.213738H130.888792c-14.235152 0-22.794343-9.865051-20.751515-23.815758l0.193939-1.292929 0.064647-1.305859c0.025859-0.426667 0.103434-1.564444 0.271515-3.361616 0.284444-3.180606 0.698182-6.930101 1.254141-11.196768 1.616162-12.373333 4.059798-26.259394 7.511919-41.257373 9.87798-42.873535 25.755152-85.721212 48.885657-125.517576 65.512727-112.756364 175.127273-179.872323 343.311515-179.872323 168.197172 0 277.798788 67.10303 343.311515 179.820606 23.117576 39.770505 38.994747 82.605253 48.872728 125.478788 3.452121 14.985051 5.908687 28.858182 7.511919 41.244444 0.55596 4.266667 0.969697 8.016162 1.241212 11.196768 0.168081 1.797172 0.245657 2.92202 0.271515 3.361616l0.090505 1.667879 0.284444 1.64202c2.301414 13.239596-6.412929 23.208081-20.82909 23.208081z m0 0" ></path></symbol><symbol id="icon-shaixuan" viewBox="0 0 1024 1024"><path d="M814.6 110a79.2 79.2 0 0 0-72.2-46H240a80 80 0 0 0-62.1 130L360 417.9a15.6 15.6 0 0 1 3.6 10V800a80 80 0 0 0 28.8 61.4l96 80A80 80 0 0 0 539 960a81.5 81.5 0 0 0 34.2-7.7 79.2 79.2 0 0 0 46-72.3V428a16.2 16.2 0 0 1 3.6-10l181.7-223.6A79.4 79.4 0 0 0 814.6 110z m-60 44.4L573.1 377.5a80.9 80.9 0 0 0-17.9 50V880a16 16 0 0 1-26.2 12.2l-96-80a15.7 15.7 0 0 1-5.8-12.2V428a80 80 0 0 0-17.9-50L227.7 154a15.4 15.4 0 0 1-2.1-16.9A15.6 15.6 0 0 1 240 128h502.4a16 16 0 0 1 12.4 26z" fill="#333333" ></path><path d="M672 475a32 32 0 0 0 32 32h128a32 32 0 1 0 0-64H704a32 32 0 0 0-32 32zM832 571H704a32 32 0 0 0 0 64h128a32 32 0 1 0 0-64zM832 699H704a32 32 0 0 0 0 64h128a32 32 0 1 0 0-64z" fill="#333333" ></path></symbol><symbol id="icon-youjiantou" viewBox="0 0 1024 1024"><path d="M769.216 511.936c0-3.712-1.152-7.232-1.856-10.88-0.64-2.368-0.64-4.8-1.408-7.04a50.56 50.56 0 0 0-11.136-17.344l-417.28-417.28a48.96 48.96 0 0 0-68.992-0.96 48.832 48.832 0 0 0 1.024 68.864L654.208 512l-384.64 384.768a48.768 48.768 0 0 0-1.024 68.8 48.768 48.768 0 0 0 68.864-0.96l417.28-417.344a51.2 51.2 0 0 0 11.136-17.344c0.896-2.304 0.896-4.736 1.472-7.04 0.768-3.648 1.92-7.232 1.92-10.944z" ></path></symbol><symbol id="icon-bianji" viewBox="0 0 1024 1024"><path d="M862.709333 116.042667a32 32 0 1 1 45.248 45.248L455.445333 613.813333a32 32 0 1 1-45.258666-45.258666L862.709333 116.053333zM853.333333 448a32 32 0 0 1 64 0v352c0 64.8-52.533333 117.333333-117.333333 117.333333H224c-64.8 0-117.333333-52.533333-117.333333-117.333333V224c0-64.8 52.533333-117.333333 117.333333-117.333333h341.333333a32 32 0 0 1 0 64H224a53.333333 53.333333 0 0 0-53.333333 53.333333v576a53.333333 53.333333 0 0 0 53.333333 53.333333h576a53.333333 53.333333 0 0 0 53.333333-53.333333V448z" ></path></symbol></svg>',function(a){var c=(c=document.getElementsByTagName("script"))[c.length-1],l=c.getAttribute("data-injectcss"),c=c.getAttribute("data-disable-injectsvg");if(!c){var t,o,i,h,s,e=function(c,l){l.parentNode.insertBefore(c,l)};if(l&&!a.__iconfont__svg__cssinject__){a.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(c){console&&console.log(c)}}t=function(){var c,l=document.createElement("div");l.innerHTML=a._iconfont_svg_string_3749283,(l=l.getElementsByTagName("svg")[0])&&(l.setAttribute("aria-hidden","true"),l.style.position="absolute",l.style.width=0,l.style.height=0,l.style.overflow="hidden",l=l,(c=document.body).firstChild?e(l,c.firstChild):c.appendChild(l))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(t,0):(o=function(){document.removeEventListener("DOMContentLoaded",o,!1),t()},document.addEventListener("DOMContentLoaded",o,!1)):document.attachEvent&&(i=t,h=a.document,s=!1,n(),h.onreadystatechange=function(){"complete"==h.readyState&&(h.onreadystatechange=null,d())})}function d(){s||(s=!0,i())}function n(){try{h.documentElement.doScroll("left")}catch(c){return void setTimeout(n,50)}d()}}(window); window._iconfont_svg_string_3749283='<svg><symbol id="icon-liulanqi" viewBox="0 0 1024 1024"><path d="M512 0C229.6832 0 0 229.6832 0 512s229.6832 512 512 512 512-229.6832 512-512S794.3168 0 512 0zM68.266667 512c0-107.008 38.075733-205.294933 101.393066-282.0096 6.638933 7.424 12.0832 17.220267 14.592 30.2592 5.341867 27.921067-14.199467 119.6032 10.666667 139.741867 37.956267 30.737067 96.699733 4.898133 126.941867 23.466666 30.583467 18.773333 106.8544 106.3424 136.635733 88.541867 50.039467-29.883733-35.754667-147.968-39.441067-179.899733-5.461333-47.325867 24.405333-102.792533 78.882134-82.6368 34.2016 12.6464 41.3184 58.231467 73.2672 60.1088 31.931733 1.877333 17.015467-98.423467 16.896-114.5856-0.341333-45.2608 44.253867-77.448533 91.716266-93.678934C841.506133 167.6288 955.733333 326.673067 955.733333 512c0 74.325333-18.466133 144.401067-50.909866 206.011733-3.720533-39.7312-13.380267-83.950933-37.563734-97.501866-46.9504-26.282667-99.208533-1.143467-137.1136-43.195734-15.6672-17.373867 4.0448-95.0272-43.144533-113.681066-91.733333-36.266667-166.058667 38.5536-188.603733 98.6624-9.4208 25.1392-12.6976 55.876267-8.226134 85.8624 0.9216 96.3584-48.930133 96.4096-30.020266 135.0656 20.718933 42.325333 94.788267 27.306667 80.366933 115.9168a59.050667 59.050667 0 0 1-17.988267 34.0992 557.226667 557.226667 0 0 1-26.282666 16.384 124.142933 124.142933 0 0 1-15.240534 4.898133C250.760533 938.564267 68.266667 746.257067 68.266667 512z" fill="#040000" ></path></symbol><symbol id="icon-paixu" viewBox="0 0 1024 1024"><path d="M420.559974 72.98601l-54.855 0 0 774.336c-52.455014-69.163008-121.619046-123.762995-201.120051-157.052006l0 61.968c85.838029 41.401958 156.537958 111.337984 201.120051 198.221005l0 0.208 54.855 0 0-13.047c0.005018-0.00297 0.010035-0.005018 0.01495-0.007987-0.005018-0.010035-0.010035-0.019968-0.01495-0.030003L420.559974 72.986zM658.264986 73.385984l0-0.4L603.41 72.985984l0 877.68 54.855 0L658.265 176.524c52.457984 69.178982 121.632051 123.790029 201.149952 157.078016l0-61.961C773.560013 230.238003 702.853018 160.287027 658.264986 73.385984z" ></path></symbol><symbol id="icon-shalou" viewBox="0 0 1024 1024"><path d="M834.4 92H189.6c-13.6 0-24-11.2-24-24 0-13.6 11.2-24 24-24h644.8c13.6 0 24 11.2 24 24 0.8 12.8-10.4 24-24 24zM866.4 992.8H158.4c-14.4 0-26.4-12-26.4-26.4 0-14.4 12-26.4 26.4-26.4h708c14.4 0 26.4 12 26.4 26.4 0 14.4-12 26.4-26.4 26.4z" fill="" ></path><path d="M766.4 666.4l-0.8-1.6c-40.8-71.2-95.2-117.6-152.8-145.6 57.6-28.8 111.2-74.4 152.8-145.6l0.8-1.6c40.8-70.4 68-166.4 72.8-294.4H792c-4 118.4-28.8 206.4-66.4 271.2l-0.8 0.8C678.4 432 626.4 476 559.2 496.8l-3.2 0.8h-0.8c-1.6 0.8-2.4 1.6-4 2.4l-0.8 0.8-1.6 1.6-1.6 1.6v0.8c-0.8 0.8-1.6 2.4-2.4 4l-0.8 0.8-1.6 5.6v8.8l1.6 5.6 0.8 0.8c0.8 1.6 1.6 2.4 2.4 4v0.8l1.6 1.6V536l1.6 0.8 0.8 0.8c0.8 0.8 2.4 1.6 4 2.4h0.8l3.2 1.6c68 21.6 119.2 64.8 166.4 146.4l0.8 1.6c20 33.6 35.2 74.4 47.2 121.6 2.4 13.6 11.2 43.2 12.8 81.6-37.6-33.6-141.6-57.6-266.4-59.2V464c1.6 0 2.4-0.8 4-1.6v-0.8l6.4-2.4h1.6c45.6-14.4 81.6-36.8 112-66.4 32-32 56.8-71.2 73.6-115.2 4.8-12-0.8-25.6-13.6-30.4-12-4.8-25.6 0.8-30.4 12.8v0.8c-14.4 36.8-35.2 71.2-62.4 98.4-24.8 24-54.4 43.2-92 54.4l-0.8 0.8-2.4 0.8-4 0.8-2.4-0.8-1.6-0.8-2.4-0.8c-36.8-12-68-30.4-92-54.4-28-27.2-48-60.8-62.4-98.4-4.8-12-18.4-18.4-29.6-13.6-12 4.8-17.6 17.6-13.6 30.4 16.8 44 40.8 83.2 73.6 115.2 29.6 29.6 66.4 52 111.2 66.4h0.8l6.4 2.4 1.6 0.8c0.8 0.8 1.6 0.8 3.2 1.6v369.6c-116.8 0-218.4 20-266.4 48 1.6-19.2 5.6-40 12.8-70.4 12-48 28-88 47.2-121.6l0.8-1.6c47.2-81.6 98.4-124.8 167.2-146.4l2.4-1.6h0.8c1.6-0.8 2.4-1.6 4-2.4l0.8-0.8 1.6-0.8v-0.8l1.6-1.6v-0.8c0.8-0.8 1.6-2.4 2.4-4V528c0.8-1.6 1.6-4 1.6-5.6v-8c0-1.6-0.8-4-1.6-5.6v-0.8c-0.8-1.6-1.6-3.2-2.4-4v-0.8l-1.6-1.6-1.6-1.6-2.4 0.8c-1.6-0.8-2.4-1.6-4-2.4h-0.8l-2.4-0.8c-68-20.8-120-64.8-167.2-147.2l-0.8-0.8c-36.8-64.8-61.6-152.8-66.4-271.2h-47.2c4.8 128 32 223.2 72.8 294.4l0.8 1.6C297.6 445.6 352 491.2 409.6 520c-57.6 28-111.2 74.4-152.8 145.6l-0.8 1.6c-38.4 67.2-65.6 156.8-71.2 276h652.8c-5.6-120-32-209.6-71.2-276.8z" fill="" ></path></symbol><symbol id="icon-24gf-playCircle" viewBox="0 0 1024 1024"><path d="M512 42.666667C252.793333 42.666667 42.666667 252.793333 42.666667 512s210.126667 469.333333 469.333333 469.333333 469.333333-210.126667 469.333333-469.333333S771.206667 42.666667 512 42.666667z m196.546667 500.493333l-266.666667 176A37.333333 37.333333 0 0 1 384 688V336.033333a37.333333 37.333333 0 0 1 57.893333-31.16l266.666667 176a37.333333 37.333333 0 0 1 0 62.32z" fill="#5C5C66" ></path></symbol><symbol id="icon-gou" viewBox="0 0 1024 1024"><path d="M506.0096 16.49664C228.71552 16.49664 3.92704 241.27488 3.92704 518.57408c0 277.2736 224.78848 502.07232 502.07232 502.07232s502.07232-224.79872 502.07232-502.07232c0-277.2992-224.78848-502.07744-502.0672-502.07744z m269.12256 369.54112l-312.40704 312.40192a33.4592 33.4592 0 0 1-47.32928 0l-156.20096-156.20096a33.46432 33.46432 0 0 1 0-47.32928 33.46944 33.46944 0 0 1 47.3344 0l132.53632 132.5312 288.73216-288.73728a33.46944 33.46944 0 1 1 47.3344 47.3344z m0 0" fill="#272636" ></path></symbol><symbol id="icon-kongxinduigou" viewBox="0 0 1024 1024"><path d="M512 992C246.912 992 32 777.088 32 512 32 246.912 246.912 32 512 32c265.088 0 480 214.912 480 480 0 265.088-214.912 480-480 480z m0-64c229.76 0 416-186.24 416-416S741.76 96 512 96 96 282.24 96 512s186.24 416 416 416z" ></path><path d="M741.216 344a32 32 0 0 1 46.816 43.616l-315.296 338.208a32 32 0 0 1-43.968 2.688l-193.344-162.368a32 32 0 1 1 41.152-48.992l170.08 142.816 294.56-316z" ></path></symbol><symbol id="icon-yifukuan" viewBox="0 0 1024 1024"><path d="M341.3 793.2H184.7c-14.7 0-26.7-13.5-26.7-30V260.8c0-16.5 12-30 26.7-30h612c14.7 0 26.7 13.5 26.7 30v64.9c0 16.6 13.4 30 30 30s30-13.4 30-30v-64.9c0-49.6-38.9-90-86.7-90h-612c-47.8 0-86.7 40.4-86.7 90v502.4c0 49.6 38.9 90 86.7 90h156.7c16.6 0 30-13.4 30-30s-13.5-30-30.1-30zM896 615.6c-11.7-11.7-30.7-11.7-42.4 0L609.2 859.9 488.1 738.8c-11.7-11.7-30.7-11.7-42.4 0s-11.7 30.7 0 42.4L588 923.6c5.6 5.6 13.3 8.8 21.2 8.8s15.6-3.2 21.2-8.8L896 658c11.7-11.7 11.7-30.7 0-42.4zM512 418.4c13.3 0 24.6 8.6 28.5 20.6h5.5l102.5-102.5c11.7-11.7 11.7-30.7 0-42.4s-30.7-11.7-42.4 0l-94 94-94-94c-11.7-11.7-30.7-11.7-42.4 0s-11.7 30.7 0 42.4L478 439h5.5c4-12 15.2-20.6 28.5-20.6zM482 687c0 16.6 13.4 30 30 30s30-13.4 30-30v-86h-60v86z m0-188h60v42h-60z m30-80.6c-13.3 0-24.6 8.6-28.5 20.6h57c-3.9-12-15.2-20.6-28.5-20.6z m-29.6 25L478 439H352.7c-16.6 0-30 13.4-30 30s13.4 30 30 30H482v-50.6c0-1.7 0.2-3.4 0.4-5z m59.6 5V499h129.3c16.6 0 30-13.4 30-30s-13.4-30-30-30H546l-4.4 4.4c0.3 1.6 0.4 3.3 0.4 5z m-58.5-9.4H478l4.4 4.4c0.3-1.5 0.6-3 1.1-4.4z m58.1 4.4l4.4-4.4h-5.5c0.5 1.4 0.8 2.9 1.1 4.4z m0.4 5c0-1.7-0.1-3.3-0.4-5l-8.4 8.4c-5.9 5.9-13.5 8.8-21.2 8.8s-15.4-2.9-21.2-8.8l-8.4-8.4c-0.3 1.6-0.4 3.3-0.4 5V499h60v-50.6z m-58.5-9.4c-0.5 1.4-0.8 2.9-1.1 4.4l8.4 8.4c5.9 5.9 13.5 8.8 21.2 8.8s15.4-2.9 21.2-8.8l8.4-8.4c-0.3-1.5-0.6-3-1.1-4.4h-57z m187.8 162c16.6 0 30-13.4 30-30s-13.4-30-30-30H542v60h129.3z m-318.6-60c-16.6 0-30 13.4-30 30s13.4 30 30 30H482v-60H352.7z m129.3 0h60v60h-60z" ></path></symbol><symbol id="icon-yidu" viewBox="0 0 1024 1024"><path d="M632.234667 474.026667a21.333333 21.333333 0 0 1 3.84 42.325333l-3.84 0.341333H213.333333a21.333333 21.333333 0 0 1-3.84-42.325333L213.333333 474.026667h418.901334zM492.586667 695.04a21.333333 21.333333 0 0 1 3.84 42.282667l-3.84 0.341333H213.333333a21.333333 21.333333 0 0 1-3.84-42.325333L213.333333 695.04h279.253334zM799.786667 478.336a21.333333 21.333333 0 0 1 38.826666 17.237333l-1.536 3.541334-151.509333 272.042666-157.994667-102.058666a21.333333 21.333333 0 0 1 19.754667-37.632l3.413333 1.792 119.68 77.312 129.365334-232.234667zM771.84 253.098667a21.333333 21.333333 0 0 1 3.84 42.325333l-3.84 0.341333H213.333333a21.333333 21.333333 0 0 1-3.84-42.325333L213.333333 253.098667h558.506667z" fill="#333333" ></path></symbol><symbol id="icon-yuanxingweixuanzhong" viewBox="0 0 1024 1024"><path d="M512 960c-247.039484 0-448-200.960516-448-448S264.960516 64 512 64 960 264.960516 960 512 759.039484 960 512 960zM512 128c-211.744443 0-384 172.255557-384 384s172.255557 384 384 384 384-172.255557 384-384S723.744443 128 512 128z" ></path></symbol><symbol id="icon-selected-copy" viewBox="0 0 1024 1024"><path d="M725.725 527.476c0 122.054-98.994 221.050-221.050 221.050-122.054 0-220.941-98.994-220.941-221.050 0-122.054 98.887-221.050 220.941-221.050 122.054 0 221.050 98.994 221.050 221.050z" ></path><path d="M504.721 121.757c-223.731 0-405.74 182.009-405.74 405.74s182.009 405.74 405.74 405.74c223.731 0 405.74-182.009 405.74-405.74 0-223.731-182.009-405.74-405.74-405.74M504.721 993.296c-98.243 0-189.516-30.567-264.807-82.8-85.909-59.525-150.903-147.259-181.579-249.793-12.656-42.257-19.412-86.981-19.412-133.206 0-78.403 19.412-152.3 53.733-217.187 34.428-64.887 83.658-120.767 143.184-163.025 75.935-53.948 168.816-85.589 268.884-85.589 83.013 0 161.095 21.772 228.665 60.062 85.482 48.37 154.337 123.019 195.309 212.897 26.919 58.775 41.828 124.094 41.828 192.839 0 91.595-26.599 177.183-72.503 249.363-42.686 67.141-102.107 122.591-172.247 160.558-65.853 35.609-141.145 55.879-221.050 55.879z" ></path></symbol><symbol id="icon-gonggao" viewBox="0 0 1024 1024"><path d="M573.04 126.77a32.364 32.364 0 0 0-35.29 7L329.23 341.84H192.39c-42 0.04-76.03 34.09-76.06 76.08v192.56c0.05 41.99 34.08 76.01 76.06 76.06h136.95l208.67 203.92a32.33 32.33 0 0 0 22.63 9.23c17.88-0.02 32.36-14.52 32.37-32.4v-710.6c0.01-13.09-7.87-24.9-19.97-29.92zM696.65 318.89c-11.42-11.16-29.73-10.96-40.89 0.46-11.17 11.42-10.96 29.73 0.46 40.9a215.235 215.235 0 0 1 64.81 152.71A215.294 215.294 0 0 1 658 666.42a28.92 28.92 0 0 0-6.26 31.52 28.904 28.904 0 0 0 26.73 17.84c7.66 0 14.99-3.05 20.39-8.47 51.6-51.6 80.41-121.7 79.99-194.68a273.144 273.144 0 0 0-82.2-193.74z" ></path><path d="M786.33 226.64c-11.47-10.92-29.58-10.58-40.64 0.75-11.06 11.33-10.95 29.45 0.25 40.65 66.91 65.29 103.76 152.74 103.76 246.17 0 93.32-36.74 180.64-103.48 245.9-8.41 8.22-11 20.71-6.56 31.6a28.919 28.919 0 0 0 26.78 18.01 28.84 28.84 0 0 0 20.22-8.24A401.449 401.449 0 0 0 907.68 514c-0.07-108.24-43.82-211.85-121.35-287.36z" ></path></symbol><symbol id="icon-zizhutuiguang" viewBox="0 0 1024 1024"><path d="M61.139079 310.392465q0-26.58137 18.913667-44.983856t45.495036-18.402487l64.408703 0 0 287.283263-64.408703 0q-26.58137 0-45.495036-18.402487t-18.913667-44.983856l0-160.510577zM776.791335 46.623491q43.961496-41.916775 79.744109-46.006216t63.386343 18.913667 47.028577 67.475784 31.693171 99.168955 18.402487 114.504361 6.134162 113.993181-7.667703 108.370199-22.491928 101.724856-34.760252 83.32237-44.472676 53.162739-52.651559 12.268324-58.785721-39.872054q-29.648451-34.760252-80.255289-57.763361t-110.414919-38.849694-121.149703-25.559009-112.45964-17.380126-85.367091-14.824225-38.338514-17.380126l0-319.998794q4.089441-14.313045 32.204352-23.514288t71.565226-17.380126 98.146595-17.891306 111.43728-26.58137 110.9261-42.939135 98.146595-66.964604zM408.741603 673.330395q5.111802 12.268324 12.268324 26.58137 6.134162 13.290685 16.357766 30.670811t24.536649 37.827334q17.380126 24.536649 35.271433 51.629198t27.09255 49.073298 5.622982 36.293793-29.13727 14.313045l-58.274541 0q-20.447207 0-37.827334-7.667703t-33.226712-23.514288-32.715532-40.383234-36.293793-58.274541q-23.514288-38.849694-32.715532-67.986964t-12.268324-48.562117q-4.089441-22.491928 0-38.849694 8.178883 1.02236 19.424847 4.089441 9.201243 2.044721 22.491928 5.111802t30.670811 6.134162q17.380126 4.089441 31.181991 7.667703t25.047829 7.667703q12.268324 4.089441 22.491928 8.178883z" ></path></symbol><symbol id="icon-dengdai" viewBox="0 0 1024 1024"><path d="M512 0C229.23 0 0 229.23 0 512s229.23 512 512 512 512-229.23 512-512S794.77 0 512 0zM768 620c0 11.044-8.954 20-20 20L404 640c-0.814 0-1.614-0.062-2.402-0.158-1.216-0.146-2.406-0.386-3.544-0.74-0.096-0.032-0.188-0.074-0.284-0.106-7.992-2.62-13.768-10.126-13.768-18.996L384.002 276c0-11.046 8.956-20 20-20l88 0c11.044 0 20 8.954 20 20l0 236 236 0c11.046 0 20 8.956 20 20L768.002 620z" ></path></symbol><symbol id="icon-lianjie" viewBox="0 0 1024 1024"><path d="M607.934444 417.856853c-6.179746-6.1777-12.766768-11.746532-19.554358-16.910135l-0.01228 0.011256c-6.986111-6.719028-16.47216-10.857279-26.930349-10.857279-21.464871 0-38.864146 17.400299-38.864146 38.864146 0 9.497305 3.411703 18.196431 9.071609 24.947182l-0.001023 0c0.001023 0.001023 0.00307 0.00307 0.005117 0.004093 2.718925 3.242857 5.953595 6.03853 9.585309 8.251941 3.664459 3.021823 7.261381 5.997598 10.624988 9.361205l3.203972 3.204995c40.279379 40.229237 28.254507 109.539812-12.024871 149.820214L371.157763 796.383956c-40.278355 40.229237-105.761766 40.229237-146.042167 0l-3.229554-3.231601c-40.281425-40.278355-40.281425-105.809861 0-145.991002l75.93546-75.909877c9.742898-7.733125 15.997346-19.668968 15.997346-33.072233 0-23.312962-18.898419-42.211381-42.211381-42.211381-8.797363 0-16.963347 2.693342-23.725354 7.297197-0.021489-0.045025-0.044002-0.088004-0.066515-0.134053l-0.809435 0.757247c-2.989077 2.148943-5.691629 4.669346-8.025791 7.510044l-78.913281 73.841775c-74.178443 74.229608-74.178443 195.632609 0 269.758863l3.203972 3.202948c74.178443 74.127278 195.529255 74.127278 269.707698 0l171.829484-171.880649c74.076112-74.17435 80.357166-191.184297 6.282077-265.311575L607.934444 417.856853z" ></path><path d="M855.61957 165.804257l-3.203972-3.203972c-74.17742-74.178443-195.528232-74.178443-269.706675 0L410.87944 334.479911c-74.178443 74.178443-78.263481 181.296089-4.085038 255.522628l3.152806 3.104711c3.368724 3.367701 6.865361 6.54302 10.434653 9.588379 2.583848 2.885723 5.618974 5.355985 8.992815 7.309476 0.025583 0.020466 0.052189 0.041956 0.077771 0.062422l0.011256-0.010233c5.377474 3.092431 11.608386 4.870938 18.257829 4.870938 20.263509 0 36.68962-16.428158 36.68962-36.68962 0-5.719258-1.309832-11.132548-3.645017-15.95846l0 0c-4.850471-10.891048-13.930267-17.521049-20.210297-23.802102l-3.15383-3.102664c-40.278355-40.278355-24.982998-98.79612 15.295358-139.074476l171.930791-171.830507c40.179095-40.280402 105.685018-40.280402 145.965419 0l3.206018 3.152806c40.279379 40.281425 40.279379 105.838513 0 146.06775l-75.686796 75.737962c-10.296507 7.628748-16.97358 19.865443-16.97358 33.662681 0 23.12365 18.745946 41.87062 41.87062 41.87062 8.048303 0 15.563464-2.275833 21.944801-6.211469 0.048095 0.081864 0.093121 0.157589 0.141216 0.240477l1.173732-1.083681c3.616364-2.421142 6.828522-5.393847 9.529027-8.792247l79.766718-73.603345C929.798013 361.334535 929.798013 239.981676 855.61957 165.804257z" ></path></symbol><symbol id="icon-gengduo" viewBox="0 0 1024 1024"><path d="M746.662019 512c0 51.835575 42.044582 93.865831 93.865831 93.865831 51.851948 0 93.865831-42.029232 93.865831-93.865831 0-51.836599-42.013883-93.865831-93.865831-93.865831C788.706601 418.135192 746.662019 460.163401 746.662019 512z" ></path><path d="M89.604272 512c0 51.835575 42.043558 93.865831 93.864808 93.865831 51.822272 0 93.865831-42.029232 93.865831-93.865831 0-51.836599-42.043558-93.865831-93.865831-93.865831C131.648854 418.135192 89.604272 460.163401 89.604272 512z" ></path><path d="M418.132634 512c0 51.835575 42.013883 93.865831 93.866854 93.865831 51.821249 0 93.864808-42.029232 93.864808-93.865831 0-51.836599-42.043558-93.865831-93.864808-93.865831C460.146517 418.135192 418.132634 460.163401 418.132634 512z" ></path></symbol><symbol id="icon-31tishi" viewBox="0 0 1024 1024"><path d="M809.010019 214.988446c-163.765831-163.79653-430.255231-163.79653-594.022085 0-163.79653 163.766854-163.79653 430.257278 0 594.021062 163.767877 163.798577 430.256254 163.798577 594.022085 0C972.806549 645.245723 972.806549 378.7553 809.010019 214.988446zM766.38113 766.382665c-140.265604 140.293233-368.528378 140.263557-508.764306 0-140.294256-140.265604-140.294256-368.499725 0-508.779655 140.235928-140.250254 368.497679-140.27993 508.764306 0C906.644687 397.853263 906.644687 626.145713 766.38113 766.382665z" ></path><path d="M514.170944 298.225195c-24.929786 0-45.217854 20.289092-45.217854 45.232181 0 24.989137 20.288069 45.307905 45.217854 45.307905 24.958438 0 45.278229-20.318768 45.278229-45.307905C559.449173 318.514287 539.129382 298.225195 514.170944 298.225195z" ></path><path d="M514.170944 427.28969c-18.801205 0-34.150798 15.32094-34.150798 34.151821l0 267.547499c0 18.828834 15.349593 34.149774 34.150798 34.149774 18.830881 0 34.180474-15.32094 34.180474-34.149774L548.351418 461.441511C548.351418 442.611653 533.001825 427.28969 514.170944 427.28969z" ></path></symbol><symbol id="icon-pengyouquan" viewBox="0 0 1024 1024"><path d="M659.968 68.544c-9.28-3.072-18.688-6.016-28.288-8.576C593.664 49.728 553.856 44.16 512.64 44.16c-17.536 0-34.88 1.088-51.968 3.072-41.792 4.8-81.92 15.104-119.488 30.336l218.048 218.048 19.136 19.136L618.752 355.2c4.352 3.136 8.64 6.464 12.608 9.856 10.688 9.28 20.288 19.712 28.544 31.232L659.904 68.544zM631.424 217.92 630.912 217.472l0.512 0L631.424 217.92z" ></path><path d="M923.904 299.008c-4.352-8.832-9.024-17.536-13.952-26.112-19.584-34.048-43.84-66.24-72.96-95.296-12.352-12.48-25.472-24-38.912-34.624-32.896-26.176-68.544-47.168-105.92-62.976l0 308.352 0 27.136 0 57.088c0.832 5.312 1.408 10.624 1.856 15.936 1.024 14.08 0.384 28.224-1.856 42.304L923.904 299.008zM798.08 384.512 798.08 383.808l0.32 0.384L798.08 384.512z" ></path><path d="M947.776 654.08c3.264-9.344 6.144-18.752 8.704-28.16 10.176-38.016 15.872-77.824 15.872-119.04 0-17.6-1.28-34.944-3.2-51.968-4.8-41.792-15.104-81.92-30.336-119.552l-218.048 218.048-19.072 19.136-40.512 40.448c-3.2 4.352-6.4 8.576-9.92 12.48-9.216 10.816-19.712 20.288-31.104 28.608L947.776 654.08zM798.4 625.536l0.512-0.448 0 0.448L798.4 625.536z" ></path><path d="M714.816 920.32c8.768-4.352 17.472-8.96 26.048-13.888 34.048-19.648 66.176-43.904 95.296-73.024 12.416-12.352 23.936-25.472 34.56-38.848 26.176-32.96 47.232-68.608 63.04-106.048L625.408 688.512 598.4 688.512 541.248 688.512c-5.312 0.896-10.56 1.472-15.936 1.92-14.08 1.088-28.224 0.384-42.24-1.856L714.816 920.32zM629.312 794.56l0.64 0-0.256 0.256L629.312 794.56z" ></path><path d="M364.032 943.552c9.344 3.136 18.688 5.952 28.288 8.512 37.952 10.304 77.824 15.808 118.976 15.808 17.6 0 34.944-1.024 52.032-3.008 41.728-4.8 81.856-15.104 119.488-30.4l-218.048-218.048-19.136-19.072-40.448-40.512c-4.288-3.136-8.512-6.464-12.544-9.856C381.952 637.76 372.416 627.264 364.032 615.744L364.032 943.552zM392.576 794.112l0.512 0.512L392.576 794.624 392.576 794.112z" ></path><path d="M99.776 710.848c4.352 8.832 9.024 17.408 13.952 26.048 19.584 34.048 43.776 66.176 72.896 95.296 12.48 12.416 25.536 23.872 38.976 34.624 32.96 26.176 68.672 47.168 105.984 63.04L331.584 621.504 331.584 594.432 331.584 537.28C330.688 532.032 330.112 526.656 329.664 521.408 328.64 507.264 329.28 493.12 331.584 479.104L99.776 710.848zM225.6 625.344l0 0.704L225.28 625.664 225.6 625.344z" ></path><path d="M76.16 358.208C73.024 367.488 70.144 376.896 67.584 386.432c-10.24 38.016-15.872 77.888-15.872 119.04 0 17.6 1.152 34.944 3.072 52.032 4.8 41.792 15.168 81.92 30.4 119.552L303.232 458.88l19.136-19.136L362.752 399.36C365.952 395.008 369.28 390.784 372.672 386.688c9.216-10.688 19.712-20.224 31.168-28.48L76.16 358.208zM225.536 386.688 225.088 387.136 225.088 386.688 225.536 386.688z" ></path><path d="M306.944 93.568C298.176 97.92 289.472 102.592 280.96 107.52 246.848 127.104 214.72 151.36 185.6 180.416 173.184 192.832 161.664 205.952 150.976 219.392 124.8 252.288 103.808 288 88 325.376l308.352 0 27.072 0 57.216 0C485.888 324.48 491.136 323.84 496.448 323.456c14.08-1.088 28.288-0.384 42.24 1.92L306.944 93.568zM392.512 219.392 391.808 219.392l0.32-0.32L392.512 219.392z" ></path></symbol><symbol id="icon-weibiaoti544" viewBox="0 0 1024 1024"><path d="M767.420809 213.3399l-130.449028 0c0-24.559349-19.108197-54.235229-42.701544-54.235229l-149.400658 0c-23.590278 0-42.698474 29.67588-42.698474 54.235229l-130.445958 0c-28.789697 0-60.519352 4.300956-60.519352 33.145911l0 44.62536 601.704045 0 0-44.62536C812.911886 217.641879 796.256554 213.3399 767.420809 213.3399z" ></path><path d="M264.419763 343.299787l0 424.964738c0 43.212174 42.3659 95.898117 85.575004 95.898117l339.157443 0c43.258223 0 71.571059-52.685943 71.571059-95.898117l0-424.964738L264.419763 343.299787zM406.929478 777.151939l-52.212152 0 0-376.045585 52.212152 0L406.929478 777.151939zM537.71415 777.151939l-52.212152 0 0-376.045585 52.212152 0L537.71415 777.151939zM668.498822 777.151939l-52.212152 0 0-376.045585 52.212152 0L668.498822 777.151939z" ></path></symbol><symbol id="icon-weibiaoti553" viewBox="0 0 1024 1024"><path d="M505.122871 403.977751c-74.251098 0-134.672212 60.389392-134.672212 134.672212 0 74.227562 60.422138 134.672212 134.672212 134.672212 74.255191 0 134.672212-60.444651 134.672212-134.672212C639.795083 464.367143 579.378062 403.977751 505.122871 403.977751z" ></path><path d="M814.870494 242.425332l-134.672212 0-80.804351-81.864496-188.541097 0-80.804351 81.864496-134.672212 0c-44.63457 0-74.859965 22.669302-74.859965 67.280336l0 457.889615c0 44.611034 30.225395 94.953605 74.859965 94.953605l619.495246 0c44.64071 0 87.449701-50.342572 87.449701-94.953605l0-457.889615C902.320195 265.095657 859.511203 242.425332 814.870494 242.425332zM505.122871 754.128573c-118.811989 0-215.477586-96.694249-215.477586-215.477586 0-118.841665 96.665597-215.477586 215.477586-215.477586 118.810966 0 215.477586 96.636944 215.477586 215.477586C720.600457 657.434324 623.933837 754.128573 505.122871 754.128573z" ></path></symbol><symbol id="icon-qq" viewBox="0 0 1024 1024"><path d="M162.797568 576.497664c-30.287872 75.442176-35.29728 147.37408-10.903552 160.73728 16.87552 9.275392 43.149312-11.943936 67.883008-50.542592 9.814016 42.274816 34.000896 80.203776 68.589568 110.866432-36.21888 14.116864-59.94496 37.175296-59.94496 63.24224 0 42.944512 64.079872 77.613056 143.112192 77.613056 71.305216 0 130.373632-28.153856 141.273088-65.247232 2.885632 0 14.209024 0 16.961536 0 11.114496 37.093376 70.053888 65.247232 141.441024 65.247232 79.120384 0 143.11424-34.670592 143.11424-77.613056 0-26.066944-23.683072-48.955392-59.98592-63.24224 34.463744-30.662656 58.81856-68.591616 68.548608-110.866432 24.727552 38.598656 50.880512 59.817984 67.84 50.542592 24.518656-13.3632 19.632128-85.295104-10.94656-160.73728-23.891968-59.068416-56.266752-102.67648-80.953344-112.449536 0.333824-3.592192 0.626688-7.563264 0.626688-11.364352 0-22.892544-6.098944-44.027904-16.498688-61.239296 0.210944-1.376256 0.210944-2.67264 0.210944-4.050944 0-10.569728-2.381824-20.385792-6.475776-28.86656-6.223872-153.76384-101.339136-276.02944-255.35488-276.02944-153.974784 0-249.217024 122.267648-255.440896 276.02944-4.009984 8.605696-6.473728 18.466816-6.473728 28.993536 0 1.378304 0 2.67264 0.167936 4.052992-10.190848 17.084416-16.29184 38.219776-16.29184 61.19424 0 3.844096 0.206848 7.686144 0.4608 11.446272C219.148288 473.905152 186.650624 517.431296 162.797568 576.497664L162.797568 576.497664z" ></path></symbol><symbol id="icon-iconfontzhizuobiaozhunbduan32" viewBox="0 0 1024 1024"><path d="M693.063287 347.452363c11.739369 0 23.353894 0.862647 34.874275 2.143826-31.333636-145.899928-187.328479-254.30694-365.384781-254.30694-199.066825 0-362.134761 135.684262-362.134761 307.978327 0 99.453083 54.251601 181.122127 144.907321 244.463758l-36.219923 108.936061 126.59628-63.48387c45.299719 8.968256 81.639369 18.185174 126.849036 18.185174 11.361769 0 22.630417-0.560772 33.80492-1.438769-7.074116-24.211425-11.174504-49.568952-11.174504-75.879178C385.183198 475.845569 521.046538 347.452363 693.063287 347.452363L693.063287 347.452363zM498.35063 249.270227c27.267017 0 45.331441 17.938558 45.331441 45.189202 0 27.139104-18.063401 45.328371-45.331441 45.328371-27.142174 0-54.377468-18.188244-54.377468-45.328371C443.973162 267.206738 471.208457 249.270227 498.35063 249.270227L498.35063 249.270227zM244.908384 339.785753c-27.139104 0-54.531987-18.186198-54.531987-45.328371 0-27.250644 27.390837-45.188178 54.531987-45.188178 27.139104 0 45.203528 17.937534 45.203528 45.188178C290.111912 321.599556 272.048511 339.785753 244.908384 339.785753L244.908384 339.785753zM1023.580956 629.701702c0-144.778384-144.879692-262.793218-307.599703-262.793218-172.303274 0-308.004933 118.013811-308.004933 262.793218 0 145.026024 135.705752 262.790148 308.004933 262.790148 36.063357 0 72.435753-9.092076 108.656699-18.170848l99.329263 54.389748-27.232225-90.499154C969.421452 783.681656 1023.580956 711.369723 1023.580956 629.701702L1023.580956 629.701702zM616.116801 584.389704c-18.030655 0-36.219923-17.938558-36.219923-36.236296 0-18.044982 18.188244-36.213783 36.219923-36.213783 27.39186 0 45.330418 18.168802 45.330418 36.213783C661.447219 566.451146 643.508661 584.389704 616.116801 584.389704L616.116801 584.389704zM815.309492 584.389704c-17.907858 0-35.971259-17.938558-35.971259-36.236296 0-18.044982 18.063401-36.213783 35.971259-36.213783 27.140127 0 45.326325 18.168802 45.326325 36.213783C860.63684 566.451146 842.450642 584.389704 815.309492 584.389704L815.309492 584.389704z" ></path></symbol><symbol id="icon-guanbi" viewBox="0 0 1024 1024"><path d="M511.232 438.8352L112.9984 40.6016A51.2 51.2 0 0 0 40.6016 112.9984L438.784 511.232 40.6016 909.4656a51.2 51.2 0 1 0 72.3968 72.448l398.2336-398.2848 398.2336 398.2848a51.2 51.2 0 1 0 72.448-72.448l-398.2848-398.2336 398.2848-398.2336A51.2 51.2 0 0 0 909.4656 40.6016L511.232 438.784z" ></path></symbol><symbol id="icon-py_weixinzhifu" viewBox="0 0 1137 1024"><path d="M426 619.367a33.133 33.133 0 0 1-44.167-13.466l-2.467-4.934-90.833-199.266a13.967 13.967 0 0 1-1.867-6.733c0-9.2 7.367-16.567 16.6-16.567a17 17 0 0 1 9.8 3.067L420.5 457.5a49 49 0 0 0 44.2 4.9L970.532 238c-90.867-106.666-240-176-408.833-176C286 61.401 62 247.801 62 477.734c0 125.1 67.533 238.533 172.5 314.566 8.6 6.134 14.133 16.534 14.133 27 0 3.667-0.633 7.334-1.867 11l-22.7 84c-1.233 3.667-2.466 8-2.466 12.267 0 9.2 7.366 16.566 16.566 16.566 3.667 0 6.767-1.233 9.834-3.066L357.266 876.9c8-4.9 17.2-7.333 26.4-7.967 4.9 0 9.834 0.634 14.734 2.467 53.4 15.333 108.033 22.667 163.3 22.667 276.232 0 500.299-186.4 500.299-416.333 0-68.667-20.267-135.5-57.1-193.133l-575.8 332.333-3.066 2.433z" ></path></symbol><symbol id="icon-yanjing" viewBox="0 0 1024 1024"><path d="M512.002844 249.457778c189.155556 0 361.415111 183.751111 427.207112 262.542222-65.792 78.791111-238.051556 262.542222-427.207112 262.542222S150.587733 590.791111 84.795733 512C150.587733 433.208889 322.847289 249.457778 512.002844 249.457778zM512.002844 170.666667C277.279289 170.666667 78.395733 394.638222 11.323733 479.715556a51.683556 51.683556 0 0 0 0 64.568888C78.395733 629.361778 277.279289 853.333333 512.002844 853.333333s433.607111-223.971556 500.679112-309.048889a51.683556 51.683556 0 0 0 0-64.568888C945.609956 394.638222 746.7264 170.666667 512.002844 170.666667z m0 262.542222c42.410667 0 76.8 35.271111 76.8 78.791111s-34.389333 78.791111-76.8 78.791111-76.8-35.271111-76.8-78.791111 34.389333-78.791111 76.8-78.791111z m0-78.734222c-62.122667 0-118.129778 38.371556-141.880888 97.251555-23.779556 58.88-10.638222 126.606222 33.28 171.662222a150.755556 150.755556 0 0 0 167.367111 34.133334C628.169956 633.173333 665.602844 575.715556 665.602844 512c0-87.011556-68.750222-157.525333-153.571555-157.525333z" ></path></symbol><symbol id="icon-yanjing1" viewBox="0 0 1024 1024"><path d="M512.022187 546.417778c-184.177778 0-368.071111-55.921778-499.114667-167.537778a37.575111 37.575111 0 0 1-3.498667-53.162667 37.944889 37.944889 0 0 1 53.418667-3.470222c231.082667 198.826667 668.302222 198.826667 898.389333 0a37.944889 37.944889 0 0 1 53.418667 3.470222c13.767111 15.644444 12.231111 39.452444-3.498667 53.191111C880.093298 490.496 696.199964 546.417778 512.022187 546.417778z m-136.760889 164.522666a30.833778 30.833778 0 0 1-6.741334 0c-10.325333-1.422222-19.626667-7.111111-25.543111-15.644444-5.944889-8.561778-7.964444-19.228444-5.632-29.354667l24.945778-146.631111a37.973333 37.973333 0 0 1 43.918222-30.805333 37.831111 37.831111 0 0 1 30.947556 43.747555l-24.945778 146.602667a37.376 37.376 0 0 1-36.949333 32.085333z m561.009778-74.581333c-9.955556 0-19.512889-4.039111-26.453334-11.178667l-123.022222-124.245333a37.176889 37.176889 0 0 1 16.042667-64.455111 37.546667 37.546667 0 0 1 37.091555 12.259556l123.050667 124.245333c14.592 14.563556 14.592 38.144 0 52.707555-7.224889 6.826667-16.782222 10.638222-26.737778 10.666667z m-848.497778 0a38.997333 38.997333 0 0 1-24.945778-10.666667 37.176889 37.176889 0 0 1 0-52.707555l123.022222-124.245333a37.518222 37.518222 0 0 1 67.470222 14.136888 37.205333 37.205333 0 0 1-15.815111 38.058667l-123.022222 124.245333a37.006222 37.006222 0 0 1-26.709333 11.178667z m562.744889 74.581333a37.376 37.376 0 0 1-36.693334-30.833777l-24.945777-146.631111a37.176889 37.176889 0 0 1 9.756444-38.826667 37.546667 37.546667 0 0 1 39.424-7.68c13.539556 5.319111 22.755556 17.92 23.694222 32.341333l24.945778 146.631111c1.820444 9.728-0.341333 19.768889-6.030222 27.904-5.688889 8.135111-14.364444 13.653333-24.177778 15.36a30.805333 30.805333 0 0 1-5.973333 1.706667z" ></path></symbol><symbol id="icon-jiahao" viewBox="0 0 1024 1024"><path d="M913.536524 551.447587H116.910163c-23.637854 0-42.977915-19.340062-42.977916-42.977916s19.340062-42.977915 42.977916-42.977915h796.626361c23.637854 0 42.977915 19.340062 42.977916 42.977915s-19.340062 42.977915-42.977916 42.977916z" ></path><path d="M472.194264 906.731688V110.105326c0-23.637854 19.340062-42.977915 42.977915-42.977915s42.977915 19.340062 42.977916 42.977915v796.626362c0 23.637854-19.340062 42.977915-42.977916 42.977915s-42.977915-19.340062-42.977915-42.977915z" ></path></symbol><symbol id="icon-shenfenrenzheng_chenggong" viewBox="0 0 1024 1024"><path d="M514.9 528.5c-106.4 0-193-86.6-193-193s86.6-193 193-193 193 86.6 193 193-86.6 193-193 193z m0-346.6c-84.7 0-153.6 68.9-153.6 153.6s68.9 153.6 153.6 153.6 153.6-68.9 153.6-153.6-69-153.6-153.6-153.6z" fill="#444444" ></path><path d="M149 882.9h-0.8c-10.9-0.5-19.3-9.6-18.9-20.5 8.7-207.2 178-369.6 385.6-369.6 107.2 0 210.4 45.1 283.3 123.8 7.4 8 6.9 20.4-1.1 27.8-8 7.4-20.4 6.9-27.8-1.1-65.4-70.7-158.1-111.2-254.4-111.2-186.4 0-338.5 145.7-346.2 331.8-0.5 10.7-9.3 19-19.7 19z" fill="#444444" ></path><path d="M676.3 882.9c-5 0-10.1-1.9-13.9-5.8L540.3 755c-7.7-7.7-7.7-20.2 0-27.8 7.7-7.7 20.2-7.7 27.8 0l108.2 108.2 188-188c7.7-7.7 20.2-7.7 27.8 0 7.7 7.7 7.7 20.2 0 27.8l-201.9 202c-3.8 3.8-8.8 5.7-13.9 5.7z" fill="#FF8803" ></path></symbol><symbol id="icon-duihao" viewBox="0 0 1024 1024"><path d="M380.342857 801.645714a53.394286 53.394286 0 0 1-36.571428-16.091428l-218.331429-217.234286a55.588571 55.588571 0 0 1 0-77.165714 54.125714 54.125714 0 0 1 76.8 0l178.102857 179.2L835.291429 272.091429a53.394286 53.394286 0 0 1 76.434285 0 54.125714 54.125714 0 0 1 0 76.8L418.742857 785.554286a54.491429 54.491429 0 0 1-38.4 16.091428z" ></path></symbol><symbol id="icon-zhifubao" viewBox="0 0 1024 1024"><path d="M230.404 576.536c-12.087 9.728-25.043 23.93-28.805 41.984-5.12 24.666-1.069 55.541 22.728 79.761 28.828 29.362 72.637 37.398 91.56 38.779 51.4 3.717 106.184-21.772 147.477-50.844 16.184-11.42 43.899-34.349 70.39-69.721-59.37-30.653-133.477-64.557-212.703-61.24-40.47 1.692-69.454 10.084-90.647 21.281z m752.859 135.545C1009.463 650.574 1024 582.968 1024 512 1024 229.688 794.335 0 512 0 229.665 0 0 229.688 0 512c0 282.335 229.665 512 512 512 170.385 0 321.491-83.723 414.631-212.124-87.997-43.742-233.027-115.734-322.36-159.299-42.63 48.596-105.65 97.303-176.84 118.495-44.722 13.29-85.037 18.365-127.199 9.75-41.739-8.548-72.481-28.093-90.401-47.683-9.127-9.995-19.612-22.706-27.203-37.82a71.25 71.25 0 0 0 1.202 3.049s-4.363-7.524-7.702-19.5a85.994 85.994 0 0 1-3.34-18.143 93.517 93.517 0 0 1-0.2-13.045c-0.378-7.702-0.066-15.783 1.67-24.064 4.185-20.235 12.822-43.81 35.172-65.692 49.063-48.039 114.777-50.621 148.814-50.42 50.421 0.289 138.04 22.35 211.812 48.439 20.436-43.52 33.547-90.068 42.007-121.1H305.308v-33.168h157.518v-66.337H272.139v-33.169h190.687v-66.315c0-9.105 1.803-16.584 16.584-16.584h74.619v82.899h207.293v33.169H554.029v66.337h165.82s-16.65 92.828-68.719 184.32c115.557 41.272 278.128 104.849 332.133 126.086z" ></path></symbol><symbol id="icon-tupian" viewBox="0 0 1024 1024"><path d="M335.36 440.32c38.4 0 71.68-30.72 71.68-71.68 0-38.4-30.72-71.68-71.68-71.68-38.4 0-71.68 30.72-71.68 71.68 2.56 40.96 33.28 71.68 71.68 71.68z m0 0M652.8 396.8L445.44 691.2 337.92 540.16 158.72 793.6h704L652.8 396.8z m0 0" ></path><path d="M934.4 107.52H89.6c-20.48 0-35.84 15.36-35.84 35.84V883.2c0 20.48 15.36 35.84 35.84 35.84h844.8c20.48 0 35.84-15.36 35.84-35.84V143.36c0-20.48-15.36-35.84-35.84-35.84z m-35.84 739.84H125.44V176.64h775.68v670.72h-2.56z m0 0" ></path></symbol><symbol id="icon-xiazai-wenjianxiazai-05" viewBox="0 0 1024 1024"><path d="M897.706667 989.866667H126.293333c-51.2 0-92.16-40.96-92.16-92.16V512c0-13.653333 11.946667-25.6 25.6-25.6S85.333333 498.346667 85.333333 512v385.706667C85.333333 919.893333 104.106667 938.666667 126.293333 938.666667h769.706667c22.186667 0 40.96-18.773333 40.96-40.96V512c0-13.653333 11.946667-25.6 25.6-25.6s27.306667 11.946667 27.306667 25.6v385.706667c0 51.2-40.96 92.16-92.16 92.16z" fill="#333333" ></path><path d="M512 738.986667c-6.826667 0-13.653333-1.706667-18.773333-6.826667L267.946667 505.173333c-10.24-10.24-10.24-25.6 0-35.84s25.6-10.24 35.84 0L512 677.546667l208.213333-208.213334c10.24-10.24 25.6-10.24 35.84 0s10.24 25.6 0 35.84L530.773333 730.453333c-5.12 5.12-11.946667 8.533333-18.773333 8.533334z" fill="#333333" ></path><path d="M512 738.986667c-13.653333 0-25.6-11.946667-25.6-25.6V59.733333c0-13.653333 11.946667-25.6 25.6-25.6s25.6 11.946667 25.6 25.6v653.653334c0 13.653333-11.946667 25.6-25.6 25.6z" fill="#333333" ></path></symbol><symbol id="icon-zhuanfa" viewBox="0 0 1024 1024"><path d="M864 501.333333c-23.466667 0-42.666667 19.2-42.666667 42.666667v256h-597.333333v-597.333333h256c23.466667 0 42.666667-19.2 42.666667-42.666667s-19.2-42.666667-42.666667-42.666667H221.866667c-6.4 0-10.666667 0-17.066667 2.133334-4.266667 2.133333-10.666667 2.133333-14.933333 4.266666-4.266667 2.133333-10.666667 6.4-14.933334 8.533334-4.266667 2.133333-8.533333 6.4-10.666666 10.666666-4.266667 2.133333-8.533333 6.4-10.666667 10.666667-2.133333 4.266667-6.4 10.666667-8.533333 14.933333-2.133333 4.266667-2.133333 10.666667-4.266667 14.933334 0 6.4-2.133333 10.666667-2.133333 17.066666v603.733334c0 6.4 0 10.666667 2.133333 17.066666 2.133333 4.266667 2.133333 10.666667 4.266667 14.933334 2.133333 4.266667 4.266667 10.666667 8.533333 14.933333 2.133333 4.266667 6.4 8.533333 10.666667 12.8s8.533333 6.4 12.8 10.666667c4.266667 2.133333 8.533333 6.4 14.933333 8.533333 4.266667 2.133333 10.666667 4.266667 14.933333 4.266667 6.4 2.133333 10.666667 2.133333 17.066667 2.133333h603.733333c6.4 0 10.666667 0 17.066667-2.133333 4.266667-2.133333 10.666667-2.133333 14.933333-4.266667 4.266667-2.133333 8.533333-4.266667 14.933334-8.533333 4.266667-2.133333 8.533333-6.4 12.8-10.666667 4.266667-4.266667 6.4-8.533333 10.666666-12.8 2.133333-4.266667 6.4-8.533333 8.533334-14.933333 2.133333-4.266667 4.266667-10.666667 4.266666-14.933334 2.133333-6.4 2.133333-10.666667 2.133334-17.066666V544c-6.4-23.466667-25.6-42.666667-49.066667-42.666667z" ></path><path d="M906.666667 183.466667c-2.133333-4.266667-2.133333-10.666667-4.266667-14.933334-2.133333-4.266667-4.266667-8.533333-8.533333-14.933333-2.133333-4.266667-6.4-8.533333-10.666667-12.8-4.266667-4.266667-8.533333-6.4-12.8-10.666667-4.266667-2.133333-8.533333-6.4-14.933333-8.533333-4.266667-2.133333-10.666667-4.266667-14.933334-4.266667-6.4-2.133333-10.666667-2.133333-17.066666-2.133333h-151.466667c-23.466667 0-42.666667 19.2-42.666667 42.666667s19.2 42.666667 42.666667 42.666666H725.333333c-89.6 64-215.466667 168.533333-245.333333 288-6.4 23.466667 8.533333 46.933333 32 51.2 4.266667 0 6.4 2.133333 10.666667 2.133334 19.2 0 36.266667-12.8 40.533333-32 25.6-104.533333 168.533333-213.333333 258.133333-268.8v106.666666c0 23.466667 19.2 42.666667 42.666667 42.666667s42.666667-19.2 42.666667-42.666667V200.533333v-17.066666z" ></path></symbol><symbol id="icon-shouye" viewBox="0 0 1024 1024"><path d="M969.6 502.4l-118.4-112-323.2-300.8c-9.6-9.6-22.4-9.6-32 0l-313.6 297.6c-3.2 3.2-6.4 6.4-9.6 9.6l-118.4 112c-9.6 9.6-9.6 22.4 0 32s22.4 9.6 32 0l83.2-80 0 393.6c0 48 41.6 89.6 92.8 89.6l83.2 0c38.4 0 70.4-28.8 70.4-67.2l0-217.6 99.2 0 99.2 0 0 217.6c0 35.2 32 67.2 70.4 67.2l83.2 0c51.2 0 92.8-38.4 92.8-89.6l0-396.8 80 73.6c9.6 9.6 22.4 9.6 32 0C979.2 524.8 979.2 512 969.6 502.4zM809.6 857.6c0 25.6-19.2 44.8-44.8 44.8l-83.2 0c-12.8 0-22.4-9.6-22.4-22.4L659.2 640c0-12.8-9.6-22.4-22.4-22.4l-121.6 0-121.6 0c-12.8 0-22.4 9.6-22.4 22.4l0 240c0 12.8-9.6 22.4-22.4 22.4l-83.2 0c-25.6 0-44.8-19.2-44.8-44.8l0-438.4 294.4-281.6 294.4 281.6L809.6 857.6z" ></path></symbol><symbol id="icon-sousuo" viewBox="0 0 1024 1024"><path d="M862.609 816.955L726.44 680.785l-0.059-0.056a358.907 358.907 0 0 0 56.43-91.927c18.824-44.507 28.369-91.767 28.369-140.467 0-48.701-9.545-95.96-28.369-140.467-18.176-42.973-44.19-81.56-77.319-114.689-33.13-33.129-71.717-59.144-114.69-77.32-44.507-18.825-91.767-28.37-140.467-28.37-48.701 0-95.96 9.545-140.467 28.37-42.973 18.176-81.56 44.19-114.689 77.32-33.13 33.129-59.144 71.717-77.32 114.689-18.825 44.507-28.37 91.767-28.37 140.467 0 48.7 9.545 95.96 28.37 140.467 18.176 42.974 44.19 81.561 77.32 114.69 33.129 33.129 71.717 59.144 114.689 77.319 44.507 18.824 91.767 28.369 140.467 28.369 48.7 0 95.96-9.545 140.467-28.369 32.78-13.864 62.997-32.303 90.197-54.968 0.063 0.064 0.122 0.132 0.186 0.195l136.169 136.17c6.25 6.25 14.438 9.373 22.628 9.373 8.188 0 16.38-3.125 22.627-9.372 12.496-12.496 12.496-32.758 0-45.254z m-412.274-69.466c-79.907 0-155.031-31.118-211.534-87.62-56.503-56.503-87.62-131.627-87.62-211.534s31.117-155.031 87.62-211.534c56.502-56.503 131.626-87.62 211.534-87.62s155.031 31.117 211.534 87.62c56.502 56.502 87.62 131.626 87.62 211.534s-31.118 155.031-87.62 211.534c-56.503 56.502-131.627 87.62-211.534 87.62z" fill="" ></path></symbol><symbol id="icon-saoyisao" viewBox="0 0 1024 1024"><path d="M149.333333 170.858667A21.546667 21.546667 0 0 1 170.858667 149.333333H384V106.666667H170.858667A64.213333 64.213333 0 0 0 106.666667 170.858667V384h42.666666V170.858667zM170.858667 874.666667A21.546667 21.546667 0 0 1 149.333333 853.141333V640H106.666667v213.141333A64.213333 64.213333 0 0 0 170.858667 917.333333H384v-42.666666H170.858667zM853.12 149.333333A21.546667 21.546667 0 0 1 874.666667 170.858667V384h42.666666V170.858667A64.213333 64.213333 0 0 0 853.141333 106.666667H640v42.666666h213.141333zM874.666667 853.141333A21.546667 21.546667 0 0 1 853.141333 874.666667H640v42.666666h213.141333A64.213333 64.213333 0 0 0 917.333333 853.141333V640h-42.666666v213.141333zM106.666667 490.666667h810.666666v42.666666H106.666667v-42.666666z" fill="#3D3D3D" ></path></symbol><symbol id="icon-xiaoxi" viewBox="0 0 1024 1024"><path d="M504.14253 974.868231C233.014641 974.868231 12.463574 769.49021 12.463574 516.967366S233.014641 59.066502 504.14253 59.066502s491.678956 205.378021 491.678955 457.900864c0 85.25807-24.927148 167.264773-72.252602 239.156113 42.809667 35.945669 95.012171 80.38102 91.580173 135.292997-1.445052 22.75957-11.018522 42.087141-27.997883 55.815135-46.78356 38.113247-138.00247 25.288411-226.331275 12.644205-34.86188-4.877051-73.878285-10.476627-94.470277-9.212207l-1.806315 1.806315h-8.489681c-48.951138 14.992415-99.889222 22.398307-151.911095 22.398307z m0-850.774387C268.96031 124.093844 77.671547 300.390192 77.671547 516.967366s191.288763 392.873523 426.470983 392.873523c44.615982 0 88.509437-6.322103 130.415946-18.605045l0.903157-0.722526 10.837891-2.709473h1.625683c28.539778-5.238314 70.085024 0.541895 122.287529 7.947787 60.330923 8.489681 151.369201 21.495149 175.935085 1.26442 1.986947-1.625684 3.793262-3.61263 4.154525-9.392838 1.445052-22.940201-43.351561-60.511554-70.265655-82.909861-7.767155-6.502734-15.173046-12.644205-21.856412-18.605045L835.601341 765.87758l18.243782-23.843359c50.215558-66.111131 76.949021-143.963309 76.949021-225.066855-0.180632-216.577174-191.469395-392.873523-426.651614-392.873522z" ></path><path d="M755.581584 476.144646H272.031046c-49.312401 0-49.312401-71.349444 0-71.349444h483.73117c49.131769 0 49.131769 71.349444-0.180632 71.349444zM755.581584 629.139531H485.898748c-43.893456 0-43.893456-65.027342 0-65.027342h269.682836c36.306932 0 36.306932 65.027342 0 65.027342z" ></path></symbol><symbol id="icon-wode" viewBox="0 0 1024 1024"><path d="M970.142125 887.350303c-0.271515-3.84-0.827475-9.671111-1.82303-17.260606-1.848889-14.157576-4.615758-29.853737-8.494546-46.713535-11.080404-48.122828-28.935758-96.271515-55.169292-141.433536-68.926061-118.600404-181.772929-194.314343-344.901819-206.62303 95.883636-21.837576 167.421414-107.545859 167.421415-209.945859 0-118.923636-96.504242-215.337374-215.544243-215.337373-119.04 0-215.544242 96.413737-215.544242 215.337373 0 102.412929 71.550707 188.108283 167.434343 209.958788-163.128889 12.308687-275.975758 88.048485-344.914747 206.674748-26.233535 45.16202-44.088889 93.323636-55.182223 141.459394-3.878788 16.859798-6.658586 32.568889-8.507474 46.726464-1.021414 7.848081-1.590303 13.808485-1.83596 17.635556-6.270707 48.032323 29.013333 88.177778 77.795556 88.177778h761.483636c49.027879 0 85.061818-40.572121 77.782626-88.656162zM353.570004 265.373737c0-87.22101 70.76202-157.918384 158.060606-157.918383 87.298586 0 158.060606 70.697374 158.060606 157.918383S598.916267 423.292121 511.63061 423.292121c-87.285657 0-158.060606-70.697374-158.060606-157.918384z m538.815354 653.213738H130.888792c-14.235152 0-22.794343-9.865051-20.751515-23.815758l0.193939-1.292929 0.064647-1.305859c0.025859-0.426667 0.103434-1.564444 0.271515-3.361616 0.284444-3.180606 0.698182-6.930101 1.254141-11.196768 1.616162-12.373333 4.059798-26.259394 7.511919-41.257373 9.87798-42.873535 25.755152-85.721212 48.885657-125.517576 65.512727-112.756364 175.127273-179.872323 343.311515-179.872323 168.197172 0 277.798788 67.10303 343.311515 179.820606 23.117576 39.770505 38.994747 82.605253 48.872728 125.478788 3.452121 14.985051 5.908687 28.858182 7.511919 41.244444 0.55596 4.266667 0.969697 8.016162 1.241212 11.196768 0.168081 1.797172 0.245657 2.92202 0.271515 3.361616l0.090505 1.667879 0.284444 1.64202c2.301414 13.239596-6.412929 23.208081-20.82909 23.208081z m0 0" ></path></symbol><symbol id="icon-shaixuan" viewBox="0 0 1024 1024"><path d="M814.6 110a79.2 79.2 0 0 0-72.2-46H240a80 80 0 0 0-62.1 130L360 417.9a15.6 15.6 0 0 1 3.6 10V800a80 80 0 0 0 28.8 61.4l96 80A80 80 0 0 0 539 960a81.5 81.5 0 0 0 34.2-7.7 79.2 79.2 0 0 0 46-72.3V428a16.2 16.2 0 0 1 3.6-10l181.7-223.6A79.4 79.4 0 0 0 814.6 110z m-60 44.4L573.1 377.5a80.9 80.9 0 0 0-17.9 50V880a16 16 0 0 1-26.2 12.2l-96-80a15.7 15.7 0 0 1-5.8-12.2V428a80 80 0 0 0-17.9-50L227.7 154a15.4 15.4 0 0 1-2.1-16.9A15.6 15.6 0 0 1 240 128h502.4a16 16 0 0 1 12.4 26z" fill="#333333" ></path><path d="M672 475a32 32 0 0 0 32 32h128a32 32 0 1 0 0-64H704a32 32 0 0 0-32 32zM832 571H704a32 32 0 0 0 0 64h128a32 32 0 1 0 0-64zM832 699H704a32 32 0 0 0 0 64h128a32 32 0 1 0 0-64z" fill="#333333" ></path></symbol><symbol id="icon-youjiantou" viewBox="0 0 1024 1024"><path d="M769.216 511.936c0-3.712-1.152-7.232-1.856-10.88-0.64-2.368-0.64-4.8-1.408-7.04a50.56 50.56 0 0 0-11.136-17.344l-417.28-417.28a48.96 48.96 0 0 0-68.992-0.96 48.832 48.832 0 0 0 1.024 68.864L654.208 512l-384.64 384.768a48.768 48.768 0 0 0-1.024 68.8 48.768 48.768 0 0 0 68.864-0.96l417.28-417.344a51.2 51.2 0 0 0 11.136-17.344c0.896-2.304 0.896-4.736 1.472-7.04 0.768-3.648 1.92-7.232 1.92-10.944z" ></path></symbol><symbol id="icon-bianji" viewBox="0 0 1024 1024"><path d="M862.709333 116.042667a32 32 0 1 1 45.248 45.248L455.445333 613.813333a32 32 0 1 1-45.258666-45.258666L862.709333 116.053333zM853.333333 448a32 32 0 0 1 64 0v352c0 64.8-52.533333 117.333333-117.333333 117.333333H224c-64.8 0-117.333333-52.533333-117.333333-117.333333V224c0-64.8 52.533333-117.333333 117.333333-117.333333h341.333333a32 32 0 0 1 0 64H224a53.333333 53.333333 0 0 0-53.333333 53.333333v576a53.333333 53.333333 0 0 0 53.333333 53.333333h576a53.333333 53.333333 0 0 0 53.333333-53.333333V448z" ></path></symbol></svg>',function(a){var c=(c=document.getElementsByTagName("script"))[c.length-1],l=c.getAttribute("data-injectcss"),c=c.getAttribute("data-disable-injectsvg");if(!c){var t,o,i,h,s,e=function(c,l){l.parentNode.insertBefore(c,l)};if(l&&!a.__iconfont__svg__cssinject__){a.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(c){console&&console.log(c)}}t=function(){var c,l=document.createElement("div");l.innerHTML=a._iconfont_svg_string_3749283,(l=l.getElementsByTagName("svg")[0])&&(l.setAttribute("aria-hidden","true"),l.style.position="absolute",l.style.width=0,l.style.height=0,l.style.overflow="hidden",l=l,(c=document.body).firstChild?e(l,c.firstChild):c.appendChild(l))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(t,0):(o=function(){document.removeEventListener("DOMContentLoaded",o,!1),t()},document.addEventListener("DOMContentLoaded",o,!1)):document.attachEvent&&(i=t,h=a.document,s=!1,n(),h.onreadystatechange=function(){"complete"==h.readyState&&(h.onreadystatechange=null,d())})}function d(){s||(s=!0,i())}function n(){try{h.documentElement.doScroll("left")}catch(c){return void setTimeout(n,50)}d()}}(window);
\ No newline at end of file \ No newline at end of file
...@@ -6,6 +6,20 @@ ...@@ -6,6 +6,20 @@
"description": "", "description": "",
"glyphs": [ "glyphs": [
{ {
"icon_id": "3216618",
"name": "浏览器",
"font_class": "liulanqi",
"unicode": "e68f",
"unicode_decimal": 59023
},
{
"icon_id": "7423",
"name": "排序",
"font_class": "paixu",
"unicode": "e60b",
"unicode_decimal": 58891
},
{
"icon_id": "2023263", "icon_id": "2023263",
"name": "沙漏", "name": "沙漏",
"font_class": "shalou", "font_class": "shalou",
......
No preview for this file type
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
<script> <script>
import api from "@/api/api"; import api from "@/api/api";
import { hshare } from '@/util/fiveshare'
import { import {
nanoid nanoid
} from 'nanoid'; } from 'nanoid';
...@@ -40,6 +41,25 @@ ...@@ -40,6 +41,25 @@
} }
}, },
methods: { methods: {
getshareData() {
let data = {
title: this.WXdata.title,
desc: '加入我们开启学习之旅',
link: window.location.href, //分享链接
imgUrl: this.WXdata.imageUrl, //图片
}
// let url;
// if (navigator.userAgent.indexOf('iPhone') !== -1) {
// // IOS 记录微信菜单打开时的url
// url = uni.getStorageSync('entryUrl');
// } else {
// // 安卓 记录当前使用SDK的页面的url
// const { href } = window.location;
// url = href.split('#')[0];
// }
var url = window.location.href.split('#')[0]
hshare(data, url)
},
open(option) { open(option) {
console.log(option, 155) console.log(option, 155)
this.WXdata = option this.WXdata = option
...@@ -54,6 +74,7 @@ ...@@ -54,6 +74,7 @@
this.$refs.sharewx.close() this.$refs.sharewx.close()
}, },
uniShare(type) { uniShare(type) {
// #ifdef APP-PLUS
let that = this let that = this
this.closeShare() this.closeShare()
this.submitsuessc(type) this.submitsuessc(type)
...@@ -75,6 +96,10 @@ ...@@ -75,6 +96,10 @@
console.log("fail:" + JSON.stringify(err)); console.log("fail:" + JSON.stringify(err));
} }
}); });
// #endif
// #ifdef H5
this.getshareData()
// #endif
// if (type === 1) { // if (type === 1) {
// let that = this; // let that = this;
// uni.downloadFile({ // uni.downloadFile({
......
...@@ -21,7 +21,7 @@ export function initJssdkShare(callback, url) { ...@@ -21,7 +21,7 @@ export function initJssdkShare(callback, url) {
// @ts-ignore // @ts-ignore
api.Wxshare(WxConfigRequestVO).then(res => { api.Wxshare(WxConfigRequestVO).then(res => {
jWeixin.config({ jWeixin.config({
debug: false,//调试的时候需要 在app上回弹出errmg:config ok 的时候就证明没问题了 这时候就可以改为false debug: true,//调试的时候需要 在app上回弹出errmg:config ok 的时候就证明没问题了 这时候就可以改为false
appId: res.data.appId,//appid appId: res.data.appId,//appid
timestamp: res.data.timestamp,//时间戳 timestamp: res.data.timestamp,//时间戳
nonceStr: res.data.nonceStr,//随机串 nonceStr: res.data.nonceStr,//随机串
...@@ -35,10 +35,13 @@ export function initJssdkShare(callback, url) { ...@@ -35,10 +35,13 @@ export function initJssdkShare(callback, url) {
} }
// data是穿的参数 url是当前页面的链接 // data是穿的参数 url是当前页面的链接
export function hshare(data,url){ export function hshare(data,url){
console.log(data)
// initJssdkShare(data, url) // initJssdkShare(data, url)
initJssdkShare(function(){ initJssdkShare(function(){
console.log(1)
jWeixin.ready(function(){ jWeixin.ready(function(){
console.log(data); console.log(2)
var sharedata={ var sharedata={
title: data.title, //标题 title: data.title, //标题
desc: data.desc, //描述 desc: data.desc, //描述
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment