Browse Source

2024.02.26
- 对接点赞相关接口;
- 注册页和名片表单填写页增加radio信息获取授权;
- 代码完善

zweiqin 1 year ago
parent
commit
c7270e6eda

+ 32 - 7
another-tf/another-user/calling-card-management/calling-card-form.vue

@@ -1,6 +1,29 @@
 <template>
 	<view class="calling-card-form-container">
 		<JHeader width="50" height="50" title="名片表单"></JHeader>
+		<view>
+			<view style="font-size: 34rpx;font-weight: bold;">
+				使用申明
+			</view>
+			<view style="margin-top: 14rpx;font-size: 28rpx;color: #706f6f;">
+				<view>1. 请确保微信号、qq号和邮箱百分百有效,之后将用于首页电子名片的信息显示。</view>
+				<view>2. 在未经您同意及确认之前,本程序不会将您的注册信息用于任何其它商业目的。</view>
+				<view>3. 本程序将对您所提供的资料进行严格的管理及保护,本程序将使用相应的技术,防止您的个人资料丢失、被盗用或遭篡改。</view>
+				<view>4. 请您放心使用!</view>
+			</view>
+			<view
+				style="display: flex;align-items: center;margin-top: 14rpx;font-size: 28rx;color: #222229;"
+			>
+				<radio
+					style="transform:scale(0.8)" border-color="#000000" color="#CE2601" :checked="isReadAgreement"
+					@click="isReadAgreement = !isReadAgreement"
+				/>
+				<view>
+					同意向小程序提供个人信息
+				</view>
+			</view>
+		</view>
+
 		<FieldPaneCCF v-model="form.basicInfo" :fields="applyOne" title="基本信息"></FieldPaneCCF>
 
 		<FieldPaneCCF v-model="form.relatesInfo" :fields="applyTow" title="企业信息"></FieldPaneCCF>
@@ -16,7 +39,7 @@
 		></ATFMoreUpload>
 
 		<ATFUpload
-			v-if="Number(form.relatesInfo.isEnterprise) === 1"
+			v-if="String(form.relatesInfo.isEnterprise) === 'true'"
 			:title="uploadFields[2].label" :img-url="form.imgs[uploadFields[2].field]"
 			@upload="handleSaveImg(uploadFields[2].field, $event)" @delete="handleDeleteImg(uploadFields[2].field)"
 		></ATFUpload>
@@ -40,12 +63,13 @@ export default {
 	onLoad(options) {
 		if (Number(options.id)) {
 			this.form.basicInfo.buyerId = options.id
-			this.form.basicInfo.isEnterprise = '0'
+			this.form.relatesInfo.isEnterprise = 'false'
 			this.getElectronicCard(options.id)
 		}
 	},
 	data() {
 		return {
+			isReadAgreement: false,
 			applyOne: [
 				{
 					label: 'ID:',
@@ -234,7 +258,7 @@ export default {
 				// this.form.basicInfo.ifBlack = String(data.ifBlack) || ''
 				this.form.basicInfo.styleId = data.styleId || ''
 				this.form.imgs.headImage = data.headImage || ''
-				this.form.imgs.pictureIntroduction = data.pictureIntroduction || ''
+				this.form.imgs.pictureIntroduction = data.pictureIntroduction.split(',') || []
 				this.form.relatesInfo.isEnterprise = String(data.isEnterprise) || ''
 				this.form.relatesInfo.enterpriseName = data.enterpriseName || ''
 				this.form.relatesInfo.enterpriseDuties = data.enterpriseDuties || ''
@@ -259,11 +283,12 @@ export default {
 
 		// 点击提交按钮
 		submit() {
+			if (!this.isReadAgreement) return this.$showToast('请先同意小程序获取用户信息')
 			const data = {
 				...this.form.basicInfo,
 				// ifBlack: this.form.basicInfo.ifBlack ? Number(this.form.basicInfo.ifBlack) : '',
 				...this.form.relatesInfo,
-				isEnterprise: this.form.basicInfo.isEnterprise ? Number(this.form.basicInfo.isEnterprise) : '',
+				isEnterprise: this.form.relatesInfo.isEnterprise === 'true' ? true : this.form.relatesInfo.isEnterprise === 'false' ? false : '',
 				...this.form.imgs,
 				pictureIntroduction: this.form.imgs.pictureIntroduction.join(',')
 			}
@@ -280,11 +305,11 @@ export default {
 				this.$showToast('缺少样式')
 				return
 			}
-			if (typeof data.timeType !== 'number') {
+			if (typeof data.isEnterprise !== 'boolean') {
 				this.$showToast('请选择是否企业')
 				return
 			}
-			if ((typeof data.isEnterprise === 'number') && (data.isEnterprise === 1) && !data.enterpriseName) {
+			if ((typeof data.isEnterprise === 'boolean') && data.isEnterprise && !data.enterpriseName) {
 				this.$showToast('缺少企业名称')
 				return
 			}
@@ -293,7 +318,7 @@ export default {
 				content: '确认提交名片表单?',
 				success: (res) => {
 					if (res.confirm) {
-						if (data.goods.id) {
+						if (data.buyerId) {
 							updateByIdEnterpriseUserApi(data).then((res) => {
 								this.$showToast('修改名片成功')
 								setTimeout(() => {

+ 9 - 9
another-tf/another-user/calling-card-management/card-label-form.vue

@@ -12,7 +12,7 @@
 
 <script>
 import FieldPaneCLF from './components/field-pane-clf.vue'
-import { getEnterpriseUserLabelDetailApi, updateByIdEnterpriseUserApi, addEnterpriseUserSaveApi } from '../../../api/anotherTFInterface'
+import { getEnterpriseUserLabelDetailApi, updateByIdEnterpriseUserLabelApi, addEnterpriseUserLabelSaveApi } from '../../../api/anotherTFInterface'
 
 export default {
 	name: 'CardLabelForm',
@@ -70,12 +70,12 @@ export default {
 		async getElectronicLabel(id) {
 			uni.showLoading()
 			try {
-				const data = await getEnterpriseUserLabelDetailApi({ labelId: id })
+				const res = await getEnterpriseUserLabelDetailApi({ labelId: id })
 				uni.hideLoading()
-				// this.form.basicInfo.labelId = data.labelId || ''
-				this.form.basicInfo.createTime = data.createTime || ''
-				this.form.basicInfo.enterpriseUserId = data.enterpriseUserId || ''
-				this.form.basicInfo.labelName = data.labelName || ''
+				// this.form.basicInfo.labelId = res.data.labelId || ''
+				this.form.basicInfo.createTime = res.data.createTime || ''
+				this.form.basicInfo.enterpriseUserId = res.data.enterpriseUserId || ''
+				this.form.basicInfo.labelName = res.data.labelName || ''
 			} catch (err) {
 				console.log(err)
 				uni.hideLoading()
@@ -101,15 +101,15 @@ export default {
 				content: '确认提交名片标签表单?',
 				success: (res) => {
 					if (res.confirm) {
-						if (data.id) {
-							updateByIdEnterpriseUserApi(data).then((res) => {
+						if (data.labelId) {
+							updateByIdEnterpriseUserLabelApi(data).then((res) => {
 								this.$showToast('提交成功')
 								setTimeout(() => {
 									uni.navigateBack()
 								}, 2000)
 							})
 						} else {
-							addEnterpriseUserSaveApi(data).then((res) => {
+							addEnterpriseUserLabelSaveApi(data).then((res) => {
 								this.$showToast('提交成功')
 								setTimeout(() => {
 									uni.navigateBack()

+ 43 - 39
another-tf/another-user/calling-card-management/components/field-pane-ccf.vue

@@ -6,30 +6,32 @@
 				v-if="(item.field === 'id') || (item.field === 'label') || (item.field === 'enterpriseUserId') || (item.field === 'buyerId')"
 			>
 			</view>
-			<view v-else-if="item.field === 'birthday'" class="item">
-				<template>
-					<view
-						class="input-wrapper" :style="{
-							'flex-direction': item.type === 'textarea' ? 'column' : '',
-							'align-items': item.type === 'textarea' ? 'flex-start' : ''
-						}"
-					>
-						<view class="sub-title">{{ item.label }}</view>
+			<view v-else-if="item.field === 'birthday'">
+				<view class="item">
+					<template>
+						<view
+							class="input-wrapper" :style="{
+								'flex-direction': item.type === 'textarea' ? 'column' : '',
+								'align-items': item.type === 'textarea' ? 'flex-start' : ''
+							}"
+						>
+							<view class="sub-title">{{ item.label }}</view>
 
-						<view v-if="item.type === 'time' && item.field === 'birthday'" class="input">
-							<input
-								:value="form[item.field]" :disabled="true" type="text"
-								:placeholder="item.placeholder"
-								@click="$refs.dateTimeTradeB[0].show()"
-							/>
-							<tui-datetime
-								ref="dateTimeTradeB" :type="2" radius
-								@confirm="handleInput(item.field, $event)"
-							></tui-datetime>
-						</view>
+							<view v-if="item.type === 'time' && item.field === 'birthday'" class="input">
+								<input
+									:value="form[item.field]" :disabled="true" type="text"
+									:placeholder="item.placeholder"
+									@click="$refs.dateTimeTradeB[0].show()"
+								/>
+								<tui-datetime
+									ref="dateTimeTradeB" :type="2" radius
+									@confirm="handleInput(item.field, $event)"
+								></tui-datetime>
+							</view>
 
-					</view>
-				</template>
+						</view>
+					</template>
+				</view>
 			</view>
 			<view v-else-if="item.field === 'styleId'">
 				<view class="item">
@@ -53,22 +55,24 @@
 			<view
 				v-else-if="(item.field === 'enterpriseName') || (item.field === 'enterpriseDuties') || (item.field === 'enterpriseDepartment')"
 			>
-				<view v-if="form.isEnterprise === '1'" class="item">
-					<template>
-						<view
-							class="input-wrapper" :style="{
-								'flex-direction': item.type === 'textarea' ? 'column' : '',
-								'align-items': item.type === 'textarea' ? 'flex-start' : ''
-							}"
-						>
-							<view class="sub-title">{{ item.label }}</view>
-							<input
-								v-if="item.type === 'input'" :value="form[item.field]" class="input" :disabled="false"
-								:type="item.field === 'phone' ? 'number' : 'text'" :placeholder="item.placeholder"
-								@input="handleInput(item.field, $event)"
-							/>
-						</view>
-					</template>
+				<view v-if="form.isEnterprise === 'true'">
+					<view class="item">
+						<template>
+							<view
+								class="input-wrapper" :style="{
+									'flex-direction': item.type === 'textarea' ? 'column' : '',
+									'align-items': item.type === 'textarea' ? 'flex-start' : ''
+								}"
+							>
+								<view class="sub-title">{{ item.label }}</view>
+								<input
+									v-if="item.type === 'input'" :value="form[item.field]" class="input" :disabled="false"
+									:type="item.field === 'phone' ? 'number' : 'text'" :placeholder="item.placeholder"
+									@input="handleInput(item.field, $event)"
+								/>
+							</view>
+						</template>
+					</view>
 				</view>
 				<view v-else></view>
 			</view>
@@ -113,7 +117,7 @@
 							@change="(e) => { }"
 						>
 							<view style="display: flex;">
-								<tui-label v-for="(part, index) in [{ name: '是', value: '1' }, { name: '否', value: '0' }]" :key="index">
+								<tui-label v-for="(part, index) in [{ name: '是', value: 'true' }, { name: '否', value: 'false' }]" :key="index">
 									<tui-list-cell padding="16rpx">
 										<view>
 											<tui-radio :checked="false" :value="part.value" color="#07c160" border-color="#999">

+ 5 - 5
another-tf/another-user/calling-card-management/components/field-pane-clf.vue

@@ -4,7 +4,7 @@
 		<view v-for="item in fields" :key="item.label">
 			<view v-if="item.field === 'id'"></view>
 			<view v-else-if="(item.field === 'labelId') || (item.field === 'createTime')">
-				<template v-if="form[item.field]">
+				<view v-if="form[item.field]" class="item">
 					<view
 						class="input-wrapper" :style="{
 							'flex-direction': item.type === 'textarea' ? 'column' : '',
@@ -14,10 +14,11 @@
 						<view class="sub-title">{{ item.label }}</view>
 						<input
 							v-if="item.type === 'input'" :value="form[item.field]" class="input" disabled
-							type="text" :placeholder="item.placeholder"
+							type="text"
+							:placeholder="item.placeholder"
 						/>
 					</view>
-				</template>
+				</view>
 			</view>
 			<view v-else class="item">
 				<template>
@@ -30,8 +31,7 @@
 						<view class="sub-title">{{ item.label }}</view>
 						<input
 							v-if="item.type === 'input'" :value="form[item.field]" class="input"
-							:disabled="item.field === 'enterpriseUserId'"
-							:type="item.field === 'enterpriseUserId' ? 'number' : 'text'"
+							:disabled="item.field === 'enterpriseUserId'" :type="item.field === 'enterpriseUserId' ? 'number' : 'text'"
 							:placeholder="item.placeholder" @input="handleInput(item.field, $event)"
 						/>
 					</view>

+ 197 - 0
another-tf/another-user/calling-card/card-sharing.vue

@@ -0,0 +1,197 @@
+<template>
+	<view class="card-sharing-container">
+		<view v-if="electronicCardShareInfo.buyerId">
+			<view style="padding: 20rpx;font-size: 36rpx;font-weight: bold;text-align: center;">
+				{{ electronicCardShareInfo.name || '无名' }}的名片
+			</view>
+			<ATFCardDisplay
+				:card-data="electronicCardShareInfo" :label-list="electronicLabelShareInfo"
+				introduction-pic-margin="14rpx -30rpx 0"
+			>
+				<template #bottomFoot="obj">
+					<view
+						v-if="obj.data.labelList && obj.data.labelList.length"
+						style="display: flex;flex-wrap: wrap;padding: 8rpx 0;"
+					>
+						<tui-button
+							v-for="(item, index) in obj.data.labelList" :key="item.labelId" width="fit-content" height="58rpx"
+							:size="28"
+							plain :type="item.isPraise ? 'warning' : 'white'" shape="circle" margin="8rpx 0 0 12rpx"
+							@click="handleClickLabelPrise(index, item)"
+						>
+							<view style="margin: 0 20rpx;">
+								<text style="margin-right: 10rpx;">{{ item.labelName }}</text>
+								<tui-icon name="agree" :size="18" :color="item.isPraise ? '#fc872d' : '#999999'"></tui-icon>
+							</view>
+						</tui-button>
+					</view>
+				</template>
+			</ATFCardDisplay>
+			<view
+				style="display: flex;justify-content: space-between;align-items: center;flex-wrap: wrap;padding-bottom: 20rpx;border-bottom: 2rpx solid #cccccc;"
+			>
+				<tui-button
+					v-if="electronicCardShareInfo.weChatSignal" type="blue" width="280rpx" height="68rpx"
+					margin="20rpx auto 0" @click="$copy(electronicCardShareInfo.weChatSignal)"
+				>
+					复制微信号
+				</tui-button>
+				<tui-button type="blue" width="280rpx" height="68rpx" margin="20rpx auto 0" open-type="share">
+					分享名片
+				</tui-button>
+				<tui-button
+					v-if="electronicCardShareInfo.phone" type="blue" width="280rpx" height="68rpx"
+					margin="20rpx auto 0"
+					@click="handlePhoneCall(electronicCardShareInfo.phone)"
+				>
+					拨打电话
+				</tui-button>
+				<tui-button
+					v-if="electronicCardShareInfo.phone" type="blue" width="280rpx" height="68rpx"
+					margin="20rpx auto 0"
+					@click="handlePhoneContact(electronicCardShareInfo)"
+				>
+					同步到通讯录
+				</tui-button>
+			</view>
+		</view>
+		<view style="padding-bottom: 45rpx;">
+			<LoadingMore :status="isLoading ? 'loading' : ''"></LoadingMore>
+			<view v-if="!isLoading && !electronicCardShareInfo.enterpriseUserId">
+				<tui-no-data :fixed="false">出错了~</tui-no-data>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+import { getStorageUserId } from '../../../utils'
+import { getIdEnterpriseUserApi, getUserIdEnterpriseUserLabelApi, updateByLabelEnterpriseUserLikeApi, updateByIdCanEnterpriseUserLikeApi } from '../../../api/anotherTFInterface'
+
+export default {
+	name: 'CardSharing',
+	data() {
+		return {
+			electronicCardShareInfo: {
+				enterpriseUserId: '',
+				buyerId: ''
+			},
+			electronicLabelShareInfo: [
+				// {
+				// 	labelId: '标签Id',
+				// 	labelName: '标签名称',
+				// 	enterpriseUserId: '关联名片ID',
+				// 	createTime: '创建时间',
+				// 	updateTime: '更新时间',
+				// 	isPraise: false
+				// }
+			],
+			isLoading: true
+		}
+	},
+	onLoad(options) {
+		this.electronicCardShareInfo.buyerId = Number(options.id) || ''
+		this.getCardData(this.electronicCardShareInfo.buyerId)
+	},
+	onShareAppMessage(res) {
+		if ((res.from === 'button') || (res.from === 'menu')) {
+			console.log(res.target)
+		}
+		return {
+			title: '您好,这是我的名片,望惠存',
+			path: `/another-tf/another-user/calling-card/card-sharing?id=${this.electronicCardShareInfo.buyerId}`,
+			imageUrl: (this.electronicCardShareInfo.pictureIntroduction && this.electronicCardShareInfo.pictureIntroduction.split(',')[0]) || this.electronicCardShareInfo.headImage || ''
+			// imageUrl: '/static/images/userimg.png',
+		}
+	},
+	methods: {
+		async getCardData(id) {
+			if (id) {
+				uni.showLoading()
+				this.isLoading = true
+				try {
+					const tempResultCard = await getIdEnterpriseUserApi({ id })
+					this.electronicCardShareInfo = tempResultCard.data
+					if (tempResultCard) {
+						const tempResultLabel = await getUserIdEnterpriseUserLabelApi({ enterpriseUserId: this.electronicCardShareInfo.enterpriseUserId })
+						this.electronicLabelShareInfo = tempResultLabel.data.map((item) => ({ ...item, isPraise: false }))
+					}
+					uni.hideLoading()
+					this.isLoading = false
+				} catch (err) {
+					uni.hideLoading()
+					this.isLoading = false
+				}
+			} else {
+				this.$showToast('缺少名片信息')
+			}
+		},
+		handleClickLabelPrise(index, item) {
+			if (getStorageUserId()) {
+				uni.showLoading()
+				if (!item.isPraise) {
+					updateByLabelEnterpriseUserLikeApi({
+						likeUserId: getStorageUserId(),
+						quiltUserId: this.electronicCardShareInfo.buyerId,
+						labelId: item.labelId
+					}).then((res) => {
+						uni.hideLoading()
+						this.electronicLabelShareInfo[index].isPraise = !item.isPraise
+					})
+						.catch((e) => {
+							uni.hideLoading()
+						})
+				} else {
+					updateByIdCanEnterpriseUserLikeApi({
+						likeUserId: getStorageUserId(),
+						labelId: item.labelId
+					}).then((res) => {
+						uni.hideLoading()
+						this.electronicLabelShareInfo[index].isPraise = !item.isPraise
+					})
+						.catch((e) => {
+							uni.hideLoading()
+						})
+				}
+			}
+		},
+		handlePhoneContact(data) {
+			uni.addPhoneContact({
+				mobilePhoneNumber: data.phone,
+				firstName: data.name || '',
+				email: data.mailbox || '',
+				weChatNumber: data.weChatSignal || '',
+				remark: data.personalProfile || '',
+				organization: data.enterpriseName || '',
+				title: data.enterpriseDuties || '',
+				success() {
+					console.log('success')
+				},
+				fail() {
+					console.log('fail')
+				}
+			})
+		},
+		handlePhoneCall(phone) {
+			uni.makePhoneCall({
+				phoneNumber: phone,
+				success: (res) => {
+					console.log('调用成功!')
+				},
+				fail: (res) => {
+					console.log('调用失败!')
+				}
+			})
+		}
+	}
+}
+</script>
+
+<style lang="less" scoped>
+.card-sharing-container {
+	min-height: 100vh;
+	padding: 0 30rpx 120rpx;
+	background-color: #fefefe;
+	box-sizing: border-box;
+}
+</style>

+ 10 - 10
api/anotherTFInterface/index.js

@@ -1,34 +1,34 @@
 import { AnotherTFRequest } from '../../utils'
 
 // 查询名片信息
-export const getIdEnterpriseUserApi = (data) => AnotherTFRequest('/dtsEnterpriseUser/getId', data)
+export const getIdEnterpriseUserApi = (data) => AnotherTFRequest('/enterpriseUser/getUserId', data)
 
 // 保存名片信息
-export const addEnterpriseUserSaveApi = (data) => AnotherTFRequest('/dtsEnterpriseUser/save', data, 'POST')
+export const addEnterpriseUserSaveApi = (data) => AnotherTFRequest('/enterpriseUser/save', data, 'POST')
 
 // 修改名片信息
-export const updateByIdEnterpriseUserApi = (data) => AnotherTFRequest('/dtsEnterpriseUser/updateById', data, 'POST')
+export const updateByIdEnterpriseUserApi = (data) => AnotherTFRequest('/enterpriseUser/updateById', data, 'POST')
 
 // 查询用户标签
-export const getUserIdEnterpriseUserLabelApi = (data) => AnotherTFRequest('/dtsEnterpriseUserLabel/getUserId', data)
+export const getUserIdEnterpriseUserLabelApi = (data) => AnotherTFRequest('/enterpriseUserLabel/getByLabel', data)
 
 // 新增用户标签
-export const addEnterpriseUserLabelSaveApi = (data) => AnotherTFRequest('/dtsEnterpriseUserLabel/save', data, 'POST')
+export const addEnterpriseUserLabelSaveApi = (data) => AnotherTFRequest('/enterpriseUserLabel/save', data, 'POST')
 
 // 修改用户标签
-export const updateByIdEnterpriseUserLabelApi = (data) => AnotherTFRequest('/dtsEnterpriseUserLabel/updateById', data, 'POST')
+export const updateByIdEnterpriseUserLabelApi = (data) => AnotherTFRequest('/enterpriseUserLabel/updateById', data, 'POST')
 
 // 查询标签详情
-export const getEnterpriseUserLabelDetailApi = (data) => AnotherTFRequest('/dtsEnterpriseUserLabel/xxx', data)
+export const getEnterpriseUserLabelDetailApi = (data) => AnotherTFRequest('/enterpriseUserLabel/getByLabelId', data)
 
 // 删除用户标签
-export const deleteByIdEnterpriseUserLabelApi = (data) => AnotherTFRequest('/dtsEnterpriseUserLabel/deleteById', data, 'POST')
+export const deleteByIdEnterpriseUserLabelApi = (data) => AnotherTFRequest('/enterpriseUserLabel/deleteById', data, 'POST')
 
 // 点赞标签
-export const updateByLabelEnterpriseUserLikeApi = (data) => AnotherTFRequest('/dtsEnterpriseUserLike/getByLabel', data, 'POST')
+export const updateByLabelEnterpriseUserLikeApi = (data) => AnotherTFRequest('/enterpriseUserLike/likeById', data, 'POST')
 
 // 取消点赞标签
-export const updateByIdCanEnterpriseUserLikeApi = (data) => AnotherTFRequest('/dtsEnterpriseUserLike/likeByIdCan', data, 'POST')
+export const updateByIdCanEnterpriseUserLikeApi = (data) => AnotherTFRequest('/enterpriseUserLike/likeByIdCan', data, 'POST')
 
 /**
  * @description 商城相关接口

+ 179 - 0
components/ATFCardDisplay/ATFCardDisplay.vue

@@ -0,0 +1,179 @@
+<template>
+	<view class="card-display-container">
+		<view style="padding: 20rpx;background-color: #476088;color: #ffffff;border-radius: 14rpx;">
+			<view v-if="(cardData.styleId === 1) || (cardData.styleId === 2) || (cardData.styleId === 3)">
+				<view style="display: flex;align-items: center;">
+					<view style="flex: 1;display: flex;align-items: center;">
+						<view style="text-align: center;">
+							<image
+								:src="common.seamingImgUrl(cardData.headImage) || headerImg"
+								style="width: 102rpx;height: 102rpx;border-radius: 50%;"
+							></image>
+						</view>
+						<view style="margin-left: 28rpx;">
+							<view style="display: flex;align-items: center;">
+								<view>{{ cardData.name }}</view>
+								<view style="margin-left: 20rpx;">
+									<text v-if="cardData.sex == 1">男</text>
+									<text v-else-if="cardData.sex == 2">女</text>
+									<text v-else>未知</text>
+								</view>
+							</view>
+							<view style="font-size: 26rpx;">{{ cardData.birthday }}</view>
+						</view>
+					</view>
+					<view v-if="cardData.ifBlack" style="margin-left: 20rpx;font-weight: bold;">已加入黑名单</view>
+				</view>
+				<view style="margin-top: 12rpx;">
+					<view style="display: flex;justify-content: space-between;align-items: center;">
+						<view style="flex: 2;display: flex;align-items: flex-start;padding-top: 8rpx;padding-right:14rpx;">
+							<tui-icon :size="28" color="#dedcdc" name="mobile" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
+							<view>{{ cardData.phone }}</view>
+						</view>
+						<view v-if="cardData.landline" style="flex: 3;display: flex;align-items: flex-start;padding-top: 8rpx;">
+							<tui-icon :size="28" color="#dedcdc" name="voipphone" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
+							<view>{{ cardData.landline }}</view>
+						</view>
+					</view>
+					<view style="display: flex;justify-content: space-between;align-items: center;">
+						<view
+							v-if="cardData.mailbox"
+							style="flex: 2;display: flex;align-items: flex-start;padding-top: 8rpx;padding-right:14rpx;"
+						>
+							<tui-icon :size="28" color="#dedcdc" name="mail" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
+							<view>{{ cardData.mailbox }}</view>
+						</view>
+						<view v-if="cardData.weChatSignal" style="flex: 3;display: flex;align-items: flex-start;padding-top: 8rpx;">
+							<tui-icon :size="28" color="#dedcdc" name="wechat" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
+							<view>{{ cardData.weChatSignal }}</view>
+						</view>
+					</view>
+					<view v-if="cardData.personalProfile" style="display: flex;align-items: flex-start;padding-top: 8rpx;">
+						<tui-icon :size="28" color="#dedcdc" name="message" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
+						<view>{{ cardData.personalProfile }}</view>
+					</view>
+					<view style="display: flex;align-items: flex-start;padding-top: 8rpx;">
+						<tui-icon :size="28" color="#dedcdc" name="position" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
+						<view>{{ cardData.address }}</view>
+					</view>
+				</view>
+			</view>
+			<view v-else class="card-style" style="padding-bottom: 45rpx;">
+				<tui-no-data :fixed="false">未设置名片样式~</tui-no-data>
+			</view>
+			<view v-if="isShowLabel && labelList && labelList.length" style="display: flex;flex-wrap: wrap;padding: 8rpx 0;">
+				<view
+					v-for="item in labelList" :key="item.labelId"
+					style="margin: 8rpx 0 0 12rpx;padding: 6rpx 16rpx;border: 2rpx solid #d8d3d3;background-color: #292d3c;border-radius: 6rpx;"
+				>
+					{{ item.labelName }}
+				</view>
+			</view>
+			<slot name="bottomFoot" :data="{ cardData, labelList }"></slot>
+		</view>
+		<view
+			v-if="cardData.pictureIntroduction && cardData.pictureIntroduction.length"
+			style="padding: 16rpx 16rpx 0;background-color: #e8e8e8;" :style="{ margin: introductionPicMargin }"
+		>
+			<view style="margin-left: 30rpx;font-size: 30rpx;font-weight: bold;">图片介绍</view>
+			<view style="margin-top: 18rpx;">
+				<swiper
+					autoplay :interval="3000" circular :previous-margin="previousMargin"
+					:next-margin="nextMargin"
+					:duration="1000" style="height: 480rpx;" @change="handleSwiperChange"
+				>
+					<swiper-item v-for="(item, index) in cardData.pictureIntroduction.split(',')" :key="index">
+						<tui-lazyload-img
+							mode="scaleToFill" width="600rpx" height="100%" radius="20rpx"
+							:src="common.seamingImgUrl(item)"
+						></tui-lazyload-img>
+					</swiper-item>
+				</swiper>
+			</view>
+		</view>
+		<view
+			v-if="cardData.isEnterprise"
+			style="padding: 20rpx;margin-top: 30rpx;background-color: #2d3d5a;color: #ffffff;border-radius: 14rpx;"
+		>
+			<view>企业信息</view>
+			<view style="margin-top: 20rpx;display: flex;justify-content: space-between;align-items: center;">
+				<view style="text-align: center;">
+					<image
+						:src="common.seamingImgUrl(cardData.enterpriseHeadImage) || headerImg"
+						style="width: 102rpx;height: 102rpx;border-radius: 50%;"
+					></image>
+				</view>
+				<view style="flex: 1;margin-left: 28rpx;">
+					<view>企业名称:{{ cardData.enterpriseName }}</view>
+					<view>职务:{{ cardData.enterpriseDuties || '--' }}</view>
+				</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+
+export default {
+	name: 'ATFCardDisplay',
+	props: {
+		cardData: {
+			type: Object,
+			required: true
+		},
+		labelList: {
+			type: Array,
+			default: () => []
+		},
+		introductionPicMargin: {
+			type: String,
+			default: '14rpx 0 0'
+		},
+		isShowLabel: {
+			type: Boolean,
+			default: false
+		}
+	},
+	data() {
+		return {
+			previousMargin: '0',
+			nextMargin: '80rpx',
+			headerImg: require('../../static/images/userimg.png')
+		}
+	},
+	options: {
+		'styleIsolation': 'shared'
+	},
+	methods: {
+		handleSwiperChange(e) {
+			if (this.$store.getters.electronicCardInfo.pictureIntroduction && this.$store.getters.electronicCardInfo.pictureIntroduction.split(',').length === 1) {
+				console.log(e)
+				if (e.detail.current === 1) {
+					this.nextMargin = '0'
+					this.previousMargin = '80rpx'
+				} else {
+					this.nextMargin = '80rpx'
+					this.previousMargin = '0'
+				}
+			}
+		}
+	}
+}
+</script>
+
+<style lang="less" scoped>
+.card-display-container {
+	font-size: 28rpx;
+	box-sizing: border-box;
+
+	/deep/ .card-style {
+		.tui-nodata-box {
+			padding-top: 60rpx;
+
+			.tui-tips-content {
+				color: #ffffff;
+			}
+		}
+	}
+}
+</style>

+ 3 - 3
manifest.json

@@ -62,7 +62,7 @@
                 "oauth" : {
                     "apple" : {},
                     "weixin" : {
-                        "appid" : "wx984383bfd5405df1",
+                        "appid" : "wxb446588ba0dbb9d7",
                         "appsecret" : "",
                         "UniversalLinks" : ""
                     },
@@ -71,7 +71,7 @@
                 "ad" : {},
                 "share" : {
                     "weixin" : {
-                        "appid" : "wx984383bfd5405df1",
+                        "appid" : "wxb446588ba0dbb9d7",
                         "UniversalLinks" : ""
                     }
                 },
@@ -86,7 +86,7 @@
     },
     "quickapp" : {},
     "mp-weixin" : {
-        "appid" : "wx984383bfd5405df1",
+        "appid" : "wxb446588ba0dbb9d7",
         "setting" : {
             "urlCheck" : false,
             "es6" : false,

+ 18 - 0
pages.json

@@ -31,6 +31,18 @@
 			"style": {
 				"navigationBarTitleText": "注册"
 			}
+		},
+		{
+			"path": "pages/service-agreement/service-agreement",
+			"style": {
+				"navigationBarTitleText": "团蜂服务协议"
+			}
+		},
+		{
+			"path": "pages/service-agreement/privacy-policy",
+			"style": {
+				"navigationBarTitleText": "团蜂隐私协议"
+			}
 		}
 	],
 	"subPackages": [
@@ -41,6 +53,12 @@
 					"path": "another-user/calling-card/agree",
 					"style": {
 						"navigationBarTitleText": "用户协议"
+					}
+				},
+				{
+					"path": "another-user/calling-card/card-sharing",
+					"style": {
+						"navigationBarTitleText": "名片分享"
 						// 对于APP,单独设置uniapp自带的头部导航栏,则有头部导航栏,否则没有;当然也可以不设置,而使用页面头部栏。
 						// "app-plus": {
 						// 	// #ifdef APP

+ 36 - 266
pages/index/index.vue

@@ -1,141 +1,27 @@
 <template>
 	<view class="index-container">
 		<TuanAppShim bg="transparent"></TuanAppShim>
-		<view style="padding-top: 30rpx;font-size: 28rpx;">
+		<view style="text-align: center;">
+			<image
+				src="../../static/images/new-user/default-user-avatar.png"
+				style="width: 102rpx;height: 102rpx;border-radius: 50%;"
+			></image>
+		</view>
+		<view style="padding-top: 30rpx;">
 			<view v-if="electronicCardInfo.buyerId">
-
-				<view style="padding: 20rpx;background-color: #476088;color: #ffffff;border-radius: 14rpx;">
-					<view
-						v-if="(electronicCardInfo.styleId === 1) || (electronicCardInfo.styleId === 2) || (electronicCardInfo.styleId === 3)"
-					>
-						<view style="display: flex;align-items: center;">
-							<view style="flex: 1;display: flex;align-items: center;">
-								<view style="text-align: center;">
-									<image
-										:src="common.seamingImgUrl(electronicCardInfo.headImage)"
-										style="width: 102rpx;height: 102rpx;border-radius: 50%;"
-									></image>
-								</view>
-								<view style="margin-left: 28rpx;">
-									<view style="display: flex;align-items: center;">
-										<view>{{ electronicCardInfo.name }}</view>
-										<view style="margin-left: 20rpx;">
-											<text v-if="electronicCardInfo.sex == 1">男</text>
-											<text v-else-if="electronicCardInfo.sex == 2">女</text>
-											<text v-else>未知</text>
-										</view>
-									</view>
-									<view style="font-size: 26rpx;">{{ electronicCardInfo.birthday }}</view>
-								</view>
-							</view>
-							<view v-if="electronicCardInfo.ifBlack" style="margin-left: 20rpx;font-weight: bold;">已加入黑名单</view>
-						</view>
-						<view style="margin-top: 12rpx;">
-							<view style="display: flex;justify-content: space-between;align-items: center;">
-								<view style="flex: 2;display: flex;align-items: flex-start;padding-top: 8rpx;">
-									<tui-icon :size="28" color="#dedcdc" name="mobile" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
-									<view>{{ electronicCardInfo.phone }}</view>
-								</view>
-								<view
-									v-if="electronicCardInfo.landline"
-									style="flex: 3;display: flex;align-items: flex-start;padding-top: 8rpx;"
-								>
-									<tui-icon :size="28" color="#dedcdc" name="voipphone" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
-									<view>{{ electronicCardInfo.landline }}</view>
-								</view>
-							</view>
-							<view style="display: flex;justify-content: space-between;align-items: center;">
-								<view
-									v-if="electronicCardInfo.mailbox"
-									style="flex: 2;display: flex;align-items: flex-start;padding-top: 8rpx;"
-								>
-									<tui-icon :size="28" color="#dedcdc" name="mail" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
-									<view>{{ electronicCardInfo.mailbox }}</view>
-								</view>
-								<view
-									v-if="electronicCardInfo.weChatSignal"
-									style="flex: 3;display: flex;align-items: flex-start;padding-top: 8rpx;"
-								>
-									<tui-icon :size="28" color="#dedcdc" name="wechat" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
-									<view>{{ electronicCardInfo.weChatSignal }}</view>
-								</view>
-							</view>
-							<view
-								v-if="electronicCardInfo.personalProfile"
-								style="display: flex;align-items: flex-start;padding-top: 8rpx;"
-							>
-								<tui-icon :size="28" color="#dedcdc" name="message" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
-								<view>{{ electronicCardInfo.personalProfile }}</view>
-							</view>
-							<view style="display: flex;align-items: flex-start;padding-top: 8rpx;">
-								<tui-icon :size="28" color="#dedcdc" name="position" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
-								<view>{{ electronicCardInfo.address }}</view>
-							</view>
-						</view>
-					</view>
-					<view v-else style="padding-bottom: 45rpx;">
-						<tui-no-data :fixed="false">您还未设置名片样式~</tui-no-data>
-					</view>
-					<view
-						v-if="electronicLabelInfo && electronicLabelInfo.length"
-						style="display: flex;flex-wrap: wrap;padding: 8rpx 0;"
-					>
-						<view
-							v-for="item in electronicLabelInfo" :key="item.labelId"
-							style="margin: 8rpx 0 0 12rpx;padding: 6rpx 16rpx;border: 2rpx solid #d8d3d3;background-color: #292d3c;border-radius: 6rpx;"
-						>
-							{{ item.labelName }}
-						</view>
-					</view>
-				</view>
-				<view style="margin: 14rpx -30rpx 0;padding: 16rpx 16rpx 0;background-color: #e8e8e8;">
-					<view style="margin-left: 30rpx;font-size: 30rpx;font-weight: bold;">图片介绍</view>
-					<view style="margin-top: 18rpx;">
-						<swiper
-							autoplay :interval="3000" circular :previous-margin="previousMargin"
-							:next-margin="nextMargin"
-							:duration="1000" style="height: 328rpx;" @change="handleSwiperChange"
-						>
-							<swiper-item v-for="(item, index) in electronicCardInfo.pictureIntroduction.split(',')" :key="index">
-								<tui-lazyload-img
-									mode="scaleToFill" width="600rpx" height="100%" radius="20rpx"
-									:src="common.seamingImgUrl(item)"
-								></tui-lazyload-img>
-							</swiper-item>
-						</swiper>
-					</view>
-				</view>
-				<view
-					v-if="electronicCardInfo.isEnterprise"
-					style="padding: 20rpx;margin-top: 30rpx;background-color: #2d3d5a;color: #ffffff;border-radius: 14rpx;"
-				>
-					<view>企业信息</view>
-					<view style="margin-top: 20rpx;display: flex;justify-content: space-between;align-items: center;">
-						<view style="text-align: center;">
-							<image
-								:src="common.seamingImgUrl(electronicCardInfo.enterpriseHeadImage)"
-								style="width: 102rpx;height: 102rpx;border-radius: 50%;"
-							></image>
-						</view>
-						<view style="flex: 1;margin-left: 28rpx;">
-							<view>企业名称:{{ electronicCardInfo.enterpriseName }}</view>
-							<view>职务:{{ electronicCardInfo.enterpriseDuties || '--' }}</view>
-						</view>
-					</view>
-				</view>
-
-				<view>
+				<ATFCardDisplay
+					:card-data="electronicCardInfo" :label-list="electronicLabelInfo"
+					is-show-label introduction-pic-margin="14rpx -30rpx 0"
+				></ATFCardDisplay>
+				<view style="font-size: 28rpx;">
 					<view
 						style="display: flex;justify-content: space-between;align-items: center;padding-bottom: 20rpx;border-bottom: 2rpx solid #cccccc;"
 					>
-						<tui-button type="blue" width="220rpx" height="68rpx" margin="20rpx auto 0" open-type="share">
+						<tui-button type="blue" width="280rpx" height="68rpx" margin="20rpx auto 0" open-type="share">
 							分享名片
 						</tui-button>
-						<tui-button type="blue" width="220rpx" height="68rpx" margin="20rpx auto 0" @click="onAdd()">
-							同步到通讯录
-						</tui-button>
 						<tui-button
-							type="blue" width="220rpx" height="68rpx" margin="20rpx auto 0"
+							type="blue" width="280rpx" height="68rpx" margin="20rpx auto 0"
 							@click="go(`/another-tf/another-user/calling-card-management/calling-card-form?id=${electronicCardInfo.buyerId}`)"
 						>
 							编辑名片
@@ -194,7 +80,7 @@
 								<text>名片头像:</text>
 								<view style="flex: 1;text-align: right;">
 									<image
-										:src="common.seamingImgUrl(electronicCardInfo.headImage)"
+										:src="common.seamingImgUrl(electronicCardInfo.headImage) || headerImg"
 										style="width: 102rpx;height: 102rpx;border-radius: 50%;"
 									></image>
 								</view>
@@ -303,7 +189,7 @@
 									<text>企业头像:</text>
 									<view style="flex: 1;text-align: right;">
 										<image
-											:src="common.seamingImgUrl(electronicCardInfo.enterpriseHeadImage)"
+											:src="common.seamingImgUrl(electronicCardInfo.enterpriseHeadImage) || headerImg"
 											style="width: 102rpx;height: 102rpx;border-radius: 50%;"
 										></image>
 									</view>
@@ -334,9 +220,6 @@
 					新建名片
 				</tui-button>
 			</view>
-
-			<view>
-			</view>
 		</view>
 	</view>
 </template>
@@ -348,147 +231,42 @@ export default {
 	name: 'Index',
 	data() {
 		return {
+			showCount: 0,
 			previousMargin: '0',
 			nextMargin: '80rpx',
-
-			id: '',
-			headerImg: require('../../static/images/userimg.png'),
-			cardObj: {},
-			visitorList: [],
-			visitorCount: 0,
-			headerList: []
+			headerImg: require('../../static/images/userimg.png')
 		}
 	},
 	async onShow(options) {
-		console.log('onLoad options', options)
-		// if (uni.getStorageSync(USER_INFO)) {
-		// 	var user = uni.getStorageSync(USER_INFO)
-		// 	if (id != null && id != '') {
-		// 		this.id = id
-		// 		const card = await request('uni-card', 'getCard', {
-		// 			id,
-		// 			uid: user.id
-		// 		}, {
-		// 			showloading: true
-		// 		})
-		// 		if (card._id == '') {
-		// 			this.getDefault()
-		// 		} else {
-		// 			const visitorList = await request('uni-card', 'getVisitorList', {
-		// 				card_id: id,
-		// 				skip: 0,
-		// 				limit: 8
-		// 			}, {
-		// 				showloading: true
-		// 			})
-		// 			this.cardObj = card
-		// 			this.visitorCount = visitorList.total
-		// 			visitorList.items.forEach((arr, index) => {
-		// 				if (arr.head_img) { this.headerList.push(arr.head_img) } else { this.headerList.push(require('../../static/images/userimg.png')) }
-		// 			})
-		// 		}
-		// 	} else {
-		// 		const mycard = await request('uni-card', 'getMyCard', {
-		// 			uid: user.id
-		// 		}, {
-		// 			showloading: true
-		// 		})
-		// 		if (mycard._id == '') {
-		// 			this.getDefault()
-		// 		} else {
-		// 			const myVisitorList = await request('uni-card', 'getMyVisitorList', {
-		// 				uid: user.id,
-		// 				skip: 0,
-		// 				limit: 8
-		// 			}, {
-		// 				showloading: true
-		// 			})
-		// 			this.cardObj = mycard
-		// 			this.visitorCount = myVisitorList.total
-		// 			myVisitorList.items.forEach((arr, index) => {
-		// 				if (arr.head_img) { this.headerList.push(arr.head_img) } else { this.headerList.push(require('../../static/images/userimg.png')) }
-		// 			})
-		// 		}
-		// 	}
-		// }
+		this.showCount = this.showCount + 1
+		if (this.showCount > 1) {
+			uni.showLoading()
+			try {
+				const data = await this.$store.dispatch('user/getElectronicCardAction')
+				if (data.enterpriseUserId) await this.$store.dispatch('user/getElectronicLabelAction', { id: data.enterpriseUserId })
+				uni.hideLoading()
+			} catch (err) {
+				console.log(err)
+				uni.hideLoading()
+			}
+		}
 	},
 	onShareAppMessage(res) {
-		if (this.id == '' || this.id == null) {
-			this.id = '61b30b8091a7500001dea375'
+		if ((res.from === 'button') || (res.from === 'menu')) {
+			console.log(res.target)
 		}
 		return {
 			title: '您好,这是我的名片,望惠存',
-			path: '/pages/index?id=' + this.id
+			path: this.$store.getters.electronicCardInfo.buyerId
+				? `/another-tf/another-user/calling-card/card-sharing?id=${this.$store.getters.electronicCardInfo.buyerId}`
+				: '/pages/index/index',
+			imageUrl: (this.$store.getters.electronicCardInfo.pictureIntroduction && this.$store.getters.electronicCardInfo.pictureIntroduction.split(',')[0]) || this.$store.getters.electronicCardInfo.headImage || ''
 		}
 	},
 	computed: {
 		...mapGetters(['electronicCardInfo', 'electronicLabelInfo'])
 	},
 	methods: {
-		handleSwiperChange(e) {
-			if (this.$store.getters.electronicCardInfo.pictureIntroduction && this.$store.getters.electronicCardInfo.pictureIntroduction.split(',').length === 1) {
-				console.log(e)
-				if (e.detail.current === 1) {
-					this.nextMargin = '0'
-					this.previousMargin = '80rpx'
-				} else {
-					this.nextMargin = '80rpx'
-					this.previousMargin = '0'
-				}
-			}
-		},
-
-		async getDefault() {
-			const card = await request('uni-card', 'getCard', {
-				id: '61b30b8091a7500001dea375',
-				uid: '61b30b4e7964120001e32f41'
-			}, {
-				showloading: true
-			})
-			if (card._id == '') {
-				this.gotoEdit()
-			}
-			const visitorList = await request('uni-card', 'getVisitorList', {
-				card_id: '61b30b8091a7500001dea375',
-				skip: 0,
-				limit: 8
-			}, {
-				showloading: true
-			})
-			this.cardObj = card
-			this.visitorCount = visitorList.total
-			visitorList.items.forEach((arr, index) => {
-				if (arr.head_img) { this.headerList.push(arr.head_img) } else { this.headerList.push(require('../../static/images/userimg.png')) }
-			})
-		},
-		onAdd() {
-			uni.addPhoneContact({
-				organization: this.cardObj.company,
-				firstName: this.cardObj.name,
-				title: this.cardObj.job,
-				email: this.cardObj.email,
-				mobilePhoneNumber: this.cardObj.phone,
-				weChatNumber: this.cardObj.wechat,
-				remark: this.cardObj.address,
-				success() {
-					console.log('success')
-				},
-				fail() {
-					console.log('fail')
-				}
-			})
-		},
-		onPhone() {
-			uni.makePhoneCall({
-				phoneNumber: this.cardObj.phone,
-				success: (res) => {
-					console.log('调用成功!')
-				},
-				fail: (res) => {
-					console.log('调用失败!')
-				}
-			})
-		}
 	}
 }
 </script>
@@ -500,14 +278,6 @@ export default {
 	background-color: #fefefe;
 	box-sizing: border-box;
 
-	/deep/ .tui-nodata-box {
-		padding-top: 60rpx;
-
-		.tui-tips-content {
-			color: #ffffff;
-		}
-	}
-
 	/deep/ .tui-list-cell {
 		border-bottom: 2rpx solid #cccccc;
 	}

+ 29 - 25
pages/login/register.vue

@@ -9,16 +9,15 @@
 			<tui-form ref="form" :show-message="false">
 				<view class="formItem">
 					<tui-input
-						v-model="registerQuery.phone" placeholder-class="inputs" border-color="#EA5B1D"
-						placeholder="请输入电话号码" :border-top="false" color="#222229" clearable
-						size="34"
+						v-model="registerQuery.phone" placeholder-class="inputs" border-color="#EA5B1D" placeholder="请输入电话号码"
+						:border-top="false" color="#222229" clearable size="34"
 					></tui-input>
 				</view>
 				<view class="formItem">
 					<tui-input
-						v-model="registerQuery.verificationCode" padding="26rpx 20rpx 26rpx 0"
-						placeholder-style="color: #f3c1c4;font-size: 32rpx;" background-color="transparent" :border-top="false"
-						border-color="#EA5B1D" label-color="#ffffff" placeholder="请输入验证码" color="#222229"
+						v-model="registerQuery.verificationCode" placeholder-style="color: #f3c1c4;font-size: 32rpx;"
+						background-color="transparent" :border-top="false" border-color="#EA5B1D" label-color="#ffffff"
+						placeholder="请输入验证码" color="#222229"
 					>
 						<template #right>
 							<tui-countdown-verify
@@ -31,9 +30,8 @@
 				</view>
 				<view class="formItem">
 					<tui-input
-						v-model="registerQuery.password" placeholder-class="inputs" type="password"
-						border-color="#EA5B1D" placeholder="请输入密码" :border-top="false" color="#222229"
-						clearable
+						v-model="registerQuery.password" placeholder-class="inputs" type="password" border-color="#EA5B1D"
+						placeholder="请输入密码" :border-top="false" color="#222229" clearable
 						size="34"
 					></tui-input>
 				</view>
@@ -55,8 +53,26 @@
 		>
 			确定
 		</button>
-		<view class="agreement">
-			登录即代表你已阅读并同意<text style="color: #222229;">《用户服务协议》</text>
+		<view
+			style="display: flex;justify-content: center;align-items: center;margin-top: 50rpx;padding: 0rpx 40rpx;font-size: 28rx;color: #888889;"
+		>
+			<radio
+				style="transform:scale(0.8)" color="#CE2601" :checked="isReadAgreement"
+				@click="isReadAgreement = !isReadAgreement"
+			/>
+			<view>
+				我已阅读并同意<text
+					style="color: #222229;"
+					@click="go('pages/service-agreement/service-agreement')"
+				>
+					《用户服务协议》
+				</text>以及<text
+					style="color: #222229;"
+					@click="go('pages/service-agreement/privacy-policy')"
+				>
+					《隐私政策》
+				</text>
+			</view>
 		</view>
 		<tui-toast ref="toast"></tui-toast>
 		<tui-modal :show="hasRegister" custom fade-i :button="[]" @cancel="hasRegister = false">
@@ -96,6 +112,7 @@ export default {
 				phone: '',
 				verificationCode: ''
 			},
+			isReadAgreement: false,
 			hasRegister: false
 		}
 	},
@@ -144,6 +161,7 @@ export default {
 				}
 			])
 				.then(() => {
+					if (!this.isReadAgreement) return this.$showToast('请先同意《用户服务协议》以及《隐私政策》')
 					updatePhoneLoginRegisterApi({
 						type: 1,
 						phone: this.registerQuery.phone,
@@ -222,19 +240,5 @@ export default {
 		color: #FFFFFF;
 		font-size: 32rpx;
 	}
-
-	.agreement {
-		position: absolute;
-		bottom: 48rpx;
-		left: 50%;
-		transform: translateX(-50%);
-		white-space: nowrap;
-		font-size: 28rx;
-		font-weight: 350;
-		line-height: 36rpx;
-		text-align: center;
-		letter-spacing: 0rpx;
-		color: #888889;
-	}
 }
 </style>

+ 728 - 0
pages/service-agreement/privacy-policy.vue

@@ -0,0 +1,728 @@
+<template>
+	<view class="container">
+		<div>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">团蜂家居隐私政策</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">发布及生效时间:</span><span
+					style="font-family:Calibri; font-size:10.5pt">202</span><span
+					style="font-family:Calibri; font-size:10.5pt">3</span><span
+					style="font-family:宋体; font-size:10.5pt">年</span><span
+					style="font-family:Calibri; font-size:10.5pt">1</span><span
+					style="font-family:宋体; font-size:10.5pt">月</span><span
+					style="font-family:Calibri; font-size:10.5pt">14</span><span style="font-family:宋体; font-size:10.5pt">日</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">更新时间:</span><span
+					style="font-family:Calibri; font-size:10.5pt">202</span><span
+					style="font-family:Calibri; font-size:10.5pt">3</span><span
+					style="font-family:宋体; font-size:10.5pt">年</span><span
+					style="font-family:Calibri; font-size:10.5pt">1</span><span
+					style="font-family:宋体; font-size:10.5pt">月</span><span
+					style="font-family:Calibri; font-size:10.5pt">14</span><span style="font-family:宋体; font-size:10.5pt">日</span>
+			</p>
+			<p style="line-height:10.5pt; margin:0pt 0pt 10pt"><span
+					style="font-family:宋体; font-size:10.5pt; font-weight:normal">公司名称:</span><span
+					style="font-family:宋体; font-size:10.5pt; font-weight:bold">广东团蜂科技有限公司</span></p>
+			<p style="line-height:10.5pt; margin:0pt 0pt 10pt"><span style="font-family:宋体; font-size:10.5pt">注册地址</span><span
+					style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">常用办公联系地址:广东省佛山市顺德区龙江社区</span><span
+					style="font-family:Calibri; font-size:10.5pt">325</span><span
+					style="font-family:宋体; font-size:10.5pt">国道龙江段第</span><span
+					style="font-family:Calibri; font-size:10.5pt">102</span><span
+					style="font-family:宋体; font-size:10.5pt">号之二合创盈科家具材料交易中心(商务中央区</span><span
+					style="font-family:Calibri; font-size:10.5pt">1</span><span
+					style="font-family:宋体; font-size:10.5pt">)</span><span
+					style="font-family:Calibri; font-size:10.5pt">5321-5331</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">5333-5386</span></p>
+			<p style="line-height:10.5pt; margin:0pt 0pt 10pt"><span style="font-family:宋体; font-size:10.5pt">负责人</span><span
+					style="font-family:宋体; font-size:10.5pt">联系方式</span><span style="font-family:宋体; font-size:10.5pt">:</span><a
+					href="mailto:13823455400@139.com"><span
+						style="color:#0000ff; font-family:Calibri; font-size:10.5pt; text-decoration:underline">13823455400</span><span
+						style="color:#0000ff; font-family:Calibri; font-size:10.5pt; text-decoration:underline">@</span><span
+						style="color:#0000ff; font-family:Calibri; font-size:10.5pt; text-decoration:underline">139.com</span></a></p>
+			<p style="line-height:10.5pt; margin:0pt 0pt 10pt"><span style="font-family:Calibri; font-size:10.5pt">&#xa0;</span>
+			</p>
+			<p style="line-height:10.5pt; margin:0pt 0pt 10pt"><span
+					style="font-family:宋体; font-size:10.5pt">本政策仅适用于</span><span
+					style="font-family:宋体; font-size:10.5pt; font-weight:bold">广东团蜂科技有限公司</span><span
+					style="font-family:宋体; font-size:10.5pt">提供的产品和服务及其延伸的功能(以下简称“</span><span
+					style="font-family:宋体; font-size:10.5pt; font-weight:bold">团蜂家居</span><span
+					style="font-family:宋体; font-size:10.5pt">”)。如我们提供的某款产品有单独的隐私政策或相应的用户服务协议当中存在特殊约定,则该产品的隐私政策将优先适用;该款产品隐私政策和用户服务协议未涵盖的内容,以本政策内容为准。除本隐私权政策另有规定外,在未征得您事先许可的情况下,本系统不会将这些信息对外披露或向第三方提供。本系统会不时更新本隐私权政策。
+					您在同意本系统服务使用协议之时,即视为您已经同意本隐私权政策全部内容。本隐私权政策属于本系统服务使用协议不可分割的一部分。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">本政策适用于“</span><span
+					style="font-family:宋体; font-size:10.5pt; font-weight:bold">团蜂家居</span><span
+					style="font-family:宋体; font-size:10.5pt">”提供的所有产品和服务</span><span
+					style="font-family:宋体; font-size:10.5pt">。在您使用“</span><span
+					style="font-family:宋体; font-size:10.5pt; font-weight:bold">团蜂家居</span><span
+					style="font-family:宋体; font-size:10.5pt">”各项产品或者服务前,请您务必仔细阅读并透彻理解本政策,特别是以粗体</span><span
+					style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">粗体下划线标识的条款,您应重点阅读,确保您充分理解和同意后再开始使用。本政策中涉及的专业词汇,我司尽量以简明通俗的表述向您解释,以便于您理解。</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">本隐私政策将帮助您了解以下内容</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">一、定义及适用范围</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">二、我司如何收集和使用您的个人信息</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">三</span><span style="font-family:宋体; font-size:10.5pt">、我</span><span
+					style="font-family:宋体; font-size:10.5pt">司</span><span style="font-family:宋体; font-size:10.5pt">如何共享您的信息</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">四、您如何管理您的信息</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">五、信息存储和交换 </span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">六、如何访问和管理自己的信息</span><span
+					style="font-family:宋体; font-size:10.5pt">、信息安全</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">七</span><span style="font-family:宋体; font-size:10.5pt">、其他</span></p>
+			<p style="line-height:10.5pt; margin:0pt 0pt 10pt"><span style="font-family:Calibri; font-size:10.5pt">&#xa0;</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">一、适用范围</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">a) </span><span
+					style="font-family:宋体; font-size:10.5pt">在您注册本系统帐号时,您根据本系统要求提供的个人注册信息(包括手机号码); </span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">b) </span><span
+					style="font-family:宋体; font-size:10.5pt">在您使用本系统网络服务,或访问本系统平台网页时,本系统自动接收并记录的您的浏览器和计算机上的信息,包括但不限于您的</span><span
+					style="font-family:Calibri; font-size:10.5pt">IP</span><span
+					style="font-family:宋体; font-size:10.5pt">地址、浏览器的类型、使用的语言、访问日期和时间、软硬件特征信息及您需求的网页记录等数据;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">c) </span><span
+					style="font-family:宋体; font-size:10.5pt">本系统通过合法途径从商业伙伴处取得的用户个人数据。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">d</span><span
+					style="font-family:宋体; font-size:10.5pt">)位置信息:您使用</span><span
+					style="font-family:宋体; font-size:10.5pt; font-weight:bold">团蜂家居</span><span
+					style="font-family:宋体; font-size:10.5pt">提供位置服务时,我们需要收集和处理您的位置信息。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">e</span><span
+					style="font-family:宋体; font-size:10.5pt">)设备信息:为了保证</span><span
+					style="font-family:宋体; font-size:10.5pt; font-weight:bold">团蜂家居</span><span
+					style="font-family:宋体; font-size:10.5pt">服务的正常运行,向您提供问题诊断或设备检测服务,我们会收集您的硬件型号、操作系统版本、设备配置、唯一设备标识符、网络设备硬件地址</span><span
+					style="font-family:Calibri; font-size:10.5pt">MAC</span><span
+					style="font-family:宋体; font-size:10.5pt">、设备连接信息以及设备状态信息等。基于不同的系统,设备信息表述文字有所不同。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">f</span><span
+					style="font-family:宋体; font-size:10.5pt">)</span><span
+					style="font-family:宋体; font-size:10.5pt">设备权限收集说明</span><span style="font-family:宋体; font-size:10.5pt">:</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">1.</span><span
+					style="font-family:宋体; font-size:10.5pt">电话权限</span><span
+					style="font-family:Calibri; font-size:10.5pt">(</span><span style="font-family:宋体; font-size:10.5pt">获取手机识别码
+				</span><span style="font-family:Calibri; font-size:10.5pt">):</span><span
+					style="font-family:宋体; font-size:10.5pt">您登录本平台识别您的设备身份,需要调用您的电话权限获取此项信息,除此之外不会基于其他用途进行调用。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">2.</span><span
+					style="font-family:宋体; font-size:10.5pt">存储权限</span><span
+					style="font-family:Calibri; font-size:10.5pt">(</span><span
+					style="font-family:宋体; font-size:10.5pt">读写存储</span><span
+					style="font-family:Calibri; font-size:10.5pt">):</span><span
+					style="font-family:宋体; font-size:10.5pt">为了存储必要的应用配置文件以及您所选择下载、更新的内容、报表,或读取您需要上传、同步的内容,需要调用您的存储权限。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">3</span><span
+					style="font-family:Calibri; font-size:10.5pt">.</span><span
+					style="font-family:宋体; font-size:10.5pt">相机权限</span><span
+					style="font-family:Calibri; font-size:10.5pt">:</span><span
+					style="font-family:宋体; font-size:10.5pt">当您使用拍摄或扫描相关功能时</span><span
+					style="font-family:宋体; font-size:10.5pt">,</span><span
+					style="font-family:宋体; font-size:10.5pt">我们需要调用您的相机权限。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">4.</span><span
+					style="font-family:宋体; font-size:10.5pt">相册权限:</span><span
+					style="font-family:宋体; font-size:10.5pt">当您使用</span><span
+					style="font-family:宋体; font-size:10.5pt">更换头像或者意见反馈填写</span><span
+					style="font-family:宋体; font-size:10.5pt">功能时</span><span style="font-family:宋体; font-size:10.5pt">,</span><span
+					style="font-family:宋体; font-size:10.5pt">我们需要调用您的相</span><span
+					style="font-family:宋体; font-size:10.5pt">册获取图片</span><span
+					style="font-family:宋体; font-size:10.5pt">权限</span><span style="font-family:宋体; font-size:10.5pt">填写</span><span
+					style="font-family:宋体; font-size:10.5pt">。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt"> 您了解并同意,以下信息不适用本隐私权政策:</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt"> </span><span style="font-family:Calibri; font-size:10.5pt">a)
+				</span><span style="font-family:宋体; font-size:10.5pt">您在使用本系统平台提供的搜索服务时输入的关键字信息;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt"> </span><span style="font-family:Calibri; font-size:10.5pt">b)
+				</span><span style="font-family:宋体; font-size:10.5pt">本系统收集到的您在本系统发布的有关信息数据,包括但不限于参与活动、成交信息及评价详情; </span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">c) </span><span
+					style="font-family:宋体; font-size:10.5pt">违反法律规定或违反本系统规则行为及本系统已对您采取的措施。 </span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">我们非常注重保护用户(“您”)的个人信息及隐私,并希望通过本概要向您 简洁介绍我们如何收集、使用和保护您的个人信息。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">二</span><span
+					style="font-family:宋体; font-size:10.5pt">、我们如何收集和使用您的个人信息</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">注册信息</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">团蜂家居使用团蜂账号体系,需要您使用团蜂家居注册或登录。在您注册成为 团蜂家居用户时,您需要至少提供手机号码以创建团蜂账号,并完善相关的网络身
+					份识别信息(如头像、昵称及登录密码等);如果您仅需使用浏览功能,您无 需注册成为我们的用户以及提供上述信息。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">地理位置</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">使用目的:经您授权,我们会收集您的地理位置信息,以便为您推荐周边的生 活服务,以及估算商家和您之间的距离以便于您进行消费决策等。</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">信息说明:位置信息的来源包括 </span><span
+					style="font-family:Calibri; font-size:10.5pt">IP </span><span
+					style="font-family:宋体; font-size:10.5pt">地址、</span><span style="font-family:Calibri; font-size:10.5pt">GPS
+				</span><span style="font-family:宋体; font-size:10.5pt">以及能够提供相关信息的 </span><span
+					style="font-family:Calibri; font-size:10.5pt">WLAN </span><span style="font-family:宋体; font-size:10.5pt">(如
+				</span><span style="font-family:Calibri; font-size:10.5pt">Wi-Fi</span><span
+					style="font-family:宋体; font-size:10.5pt">) 接入点、蓝牙和基站等传感器信息。 当您拒绝位置授权后仍然可以手动选择或输入位置信息,不会影响您使用浏 览、下单等基本服务。</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">相机</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">使用目的:经您授权,我们会收集您的相机信息,以便为您提供扫码、拍照等 功能。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">信息说明:我们仅在您使用对应功能时收集相应信息,例如您使用扫码拍照等 功能时。不同的系统显示的名称可能有所差异,如相机、摄像头等。
+					您可以自行选择开启或关闭相机的授权,一旦关闭您将可能无法使用扫码、拍 照等功能,但不会影响您使用浏览、下单等基本服务。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">相册</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">使用目的:经您授权,我们会收集您的相册信息,以便为您上传和保存照片、 视频等功能。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">信息说明:我们仅在您使用对应功能时收集相应信息,例如您使用上传和保存 照片、视频等功能时。不同的系统显示的名称可能有所差异,如相册、存储权
+					限等。 您可以自行选择开启或关闭相册的授权,一旦关闭您将可能无法通过上传图 片、视频等方式来发布评价等功能,但不会影响您使用浏览、下单等基本服务。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">麦克风</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">使用目的:经您授权,我们会收集您的录音信息,以便为您提供语音搜索、智 能点餐等语音交互功能。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">信息说明:我们仅在您使用对应功能时收集相应信息,通过申请麦克风权限以 便获得声音,以提供对应的识别后后续的交互功能。不同的系统显示的名称可
+					能有所差异,如麦克风、录音权限等。 您可以自行选择开启或关闭麦克风授权,一旦关闭您将可能无法使用诸如“按 住说话”、语音交互等相关功能,但不会影响您使用浏览、下单等基本服务。
+					麦克风权限需要您的额外授权,您也可以在系统权限中自主控制,我们绝不会 私自开启您的麦克风权限,更不会非法利用非法手段进行相关信息的收集和使 用,请您放心。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">设备信息</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">使用目的:在您访问或使用我们服务的过程中,我们会收集您的设备信息,以 便获取屏幕分辨率等信息进行界面展示、避免其他设备的异常登录、留存必要
+					的日志信息,从而保障您的账号安全、交易安全和系统运行安全。此外,如您 未登录账号,我们使用您的设备信息以便为您推送对应的信息展示。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">信息说明:我们收集的设备状态包括您的设备型号、硬件序列号、设备 </span><span
+					style="font-family:Calibri; font-size:10.5pt">MAC </span><span style="font-family:宋体; font-size:10.5pt">地
+					址、唯一设备识别码(如 </span><span
+					style="font-family:Calibri; font-size:10.5pt">IMEI/androidID/IDFA/OPENUDID/GUID/OAID</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span style="font-family:Calibri; font-size:10.5pt">SIM
+				</span><span style="font-family:宋体; font-size:10.5pt">卡 </span><span
+					style="font-family:Calibri; font-size:10.5pt">IMSI</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span style="font-family:Calibri; font-size:10.5pt">ICCID
+				</span><span style="font-family:宋体; font-size:10.5pt">信息等设备标识符)、移动应用列表、电信运营商等。未经您的
+					授权,我们不会提前获取以上信息。目前多数手机终端厂商支持对设备标识符 的更改,以保障您对个人信息的自主控制,具体撤回或更改的方式可参见您所 使用的终端设备说明。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">您使用过程中主动提供的信息</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">使用目的:在您使用我们提供的产品</span><span
+					style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">服务过程中,我们根据您使用的特定场景 可能会收集您提供的个人信息,以实现您所需要使用的功能。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">信息说明:我们会根据具体的场景请求您提供对应的信息并会严格依法保护您 的个人信息,例如下单需要您提供联系人信息、联系方式、收货地址信息,撰
+					写带图评价时需要提供昵称、头像、相关评价图片</span><span style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">视频等发布内容。</span><span style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">服务的基本功能。 除法律另有规定外,我们仅会在实现目的所必需的最短时间内留存您的相关个
+					人信息。如您希望详细了解我们所收集的具体各项个人信息及对应的场景,请 查阅概要后的隐私政策正文。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">三</span><span
+					style="font-family:宋体; font-size:10.5pt">、我们如何共享您的信息</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">请您知悉,我们为您所提供的产品</span><span
+					style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">服务大多是无法单独完成的,因此我们可 能会与我们的关联公司以及其他合作商等第三方共享或委托其处理您的部分个
+					人信息。目前,除再次获得您明确同意或授权外,此类共享或委托处理涉及的 主要情形包括:根据行政、司法等有权机关的要求提供必要信息;为提供账号 一致性服务与关联公司共享必要信息;为提供如配送、第三方支付等服务与有
+					关合作商、骑手、第三方商家、支付机构等共享有关的必要信息等。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">我们会与其签署严格的信息保护和保密协定,要求他们遵守协议并采取相关的 安全措施来保护您的个人信息。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">四</span><span
+					style="font-family:宋体; font-size:10.5pt">、您如何管理您的信息</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">您有权管理您的个人信息,包括查询、更正和删除您的账号信息、地址信息、 搜索记录、评论信息、设备系统权限管理情况,改变您的授权同意的范围或撤
+					回授权,以及注销您的账号。您可以通过我们的 </span><span style="font-family:Calibri; font-size:10.5pt">App </span><span
+					style="font-family:宋体; font-size:10.5pt">中提供的相应功能设置或 隐私管理中进行上述操作。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">如果您无法通过上述方式进行管理,您可以通过我们的公众号(团蜂)联系 我们,我们将在 </span><span
+					style="font-family:Calibri; font-size:10.5pt">15 </span><span
+					style="font-family:宋体; font-size:10.5pt">天内回复您的要求。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">五、信息存储和交换  </span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">本系统收集的有关您的信息和资料将保存在本系统及(或)其关联公司的服务器上,这些信息和资料可能传送至您所在国家、地区或本系统收集信息和资料所在地的境外并在境外被访问、存储和展示。</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">为保证向您提供本隐私政策目的所述的服务,我们可能会向第三方服务提供商与业务合作伙伴等第三方共享必要的个人信息。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">为了使您能够接收信息、在第三方平台分享信息、使用地图服务、播放视频等必要的功能用途,我们的应用中会嵌入授权合作伙伴的</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">或其他类似的应用程序。如您使用华为</span><span
+					style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">小米</span><span
+					style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">魅族手机时,华为</span><span
+					style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">小米</span><span
+					style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">魅族</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">需要读取您的设备识别号、联网相关信息,用于下发通知栏消息;如您使用高德提供的地图服务,高德</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">需要您打开设备位置权限并收集设备所在位置相关信息信息、设备识别号、联网相关信息。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">我们会对授权合作伙伴获取有关信息的应用程序接口(</span><span
+					style="font-family:Calibri; font-size:10.5pt">API</span><span
+					style="font-family:宋体; font-size:10.5pt">)、软件工具开发包(</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">)进行严格的安全检测,并与授权合作伙伴约定严格的数据保护措施,令其按照我们的委托目的、服务说明、本隐私权政策以及其他任何相关的保密和安全措施来处理个人信息。</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">我们还会收集您的</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMSI</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMEI</span><span
+					style="font-family:宋体; font-size:10.5pt">、设备</span><span
+					style="font-family:Calibri; font-size:10.5pt">MAC</span><span
+					style="font-family:宋体; font-size:10.5pt">地址、软件列表、设备序列号、</span><span
+					style="font-family:Calibri; font-size:10.5pt">Android ID</span><span
+					style="font-family:宋体; font-size:10.5pt">用于判断您上次登录的方式,目的是方便您使用登录功能。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">本政策涉及的个人信息或权限包括:</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">1</span><span
+					style="font-family:宋体; font-size:10.5pt">)基本信息(包括个人姓名、生日、性别、住址、个人电话号码、电子邮箱);</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">2</span><span
+					style="font-family:宋体; font-size:10.5pt">)个人身份信息(包括身份证相关身份证明等);</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">3</span><span
+					style="font-family:宋体; font-size:10.5pt">)财产信息(包括交易记录以及金币、钻石等虚拟财产信息);</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">4</span><span
+					style="font-family:宋体; font-size:10.5pt">)个人位置信息;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">5</span><span
+					style="font-family:宋体; font-size:10.5pt">)网络身份标识信息(包括系统账号、</span><span
+					style="font-family:Calibri; font-size:10.5pt">IP</span><span
+					style="font-family:宋体; font-size:10.5pt">地址、邮箱地址及与前述有关的密码、密保);</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">通讯录;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">6</span><span
+					style="font-family:宋体; font-size:10.5pt">)个人上网记录(包括搜索记录、软件使用记录、点击记录);</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">7</span><span
+					style="font-family:宋体; font-size:10.5pt">)个人常用设备信息(包括硬件型号、设备</span><span
+					style="font-family:Calibri; font-size:10.5pt">MAC</span><span
+					style="font-family:宋体; font-size:10.5pt">地址、操作系统类型);</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">8</span><span
+					style="font-family:宋体; font-size:10.5pt">)软件列表唯一设备识别码(如</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMEI/android ID/IDFA/OPENUDID/GUID</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">SIM</span><span
+					style="font-family:宋体; font-size:10.5pt">卡</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMSI</span><span
+					style="font-family:宋体; font-size:10.5pt">信息等在内的描述个人常用设备基本情况的信息,存在收集</span><span
+					style="font-family:Calibri; font-size:10.5pt">ICCID</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span style="font-family:Calibri; font-size:10.5pt">Android
+					ID</span><span style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">IP</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMSI</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">SD</span><span
+					style="font-family:宋体; font-size:10.5pt">卡数据、</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMEI</span><span
+					style="font-family:宋体; font-size:10.5pt">、安装列表、设备序列号、传感器、</span><span
+					style="font-family:Calibri; font-size:10.5pt">MAC</span><span
+					style="font-family:宋体; font-size:10.5pt">、剪切板的行为)。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">第三方</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">列表:</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">1</span><span
+					style="font-family:宋体; font-size:10.5pt">)</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">名称</span><span style="font-family:宋体; font-size:10.5pt">:</span><span
+					style="font-family:宋体; font-size:10.5pt">移动智能终端补充设备标识体系统一调用</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">包名</span><span style="font-family:宋体; font-size:10.5pt">:</span><span
+					style="font-family:Calibri; font-size:10.5pt">com.bun</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">厂家</span><span style="font-family:宋体; font-size:10.5pt">:</span><span
+					style="font-family:宋体; font-size:10.5pt">中国信息通信研究院</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">描述</span><span style="font-family:宋体; font-size:10.5pt">:</span><span
+					style="font-family:宋体; font-size:10.5pt">获取华为、小米、</span><span
+					style="font-family:Calibri; font-size:10.5pt">OPPO</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">vivo</span><span
+					style="font-family:宋体; font-size:10.5pt">、中兴、努比亚、魅族、联想、三星等设备厂商的补充设备标识(</span><span
+					style="font-family:Calibri; font-size:10.5pt">OAID</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">AAID</span><span
+					style="font-family:宋体; font-size:10.5pt">等)</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">个人信息</span><span style="font-family:宋体; font-size:10.5pt">:</span><span
+					style="font-family:宋体; font-size:10.5pt">获取</span><span
+					style="font-family:Calibri; font-size:10.5pt">OAID</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">2</span><span
+					style="font-family:宋体; font-size:10.5pt">)</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">名称:</span><span style="font-family:宋体; font-size:10.5pt">高德</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">作用:定位以及地图展示及 </span><span
+					style="font-family:Calibri; font-size:10.5pt">poi </span><span
+					style="font-family:宋体; font-size:10.5pt">查询</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">收集个人信息类型:需要获取外部存储状态,最近一次地理位置信息,持续定位,网络类型,网络服务运营商,</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMEI</span><span
+					style="font-family:宋体; font-size:10.5pt">,</span><span style="font-family:Calibri; font-size:10.5pt">MAC
+				</span><span style="font-family:宋体; font-size:10.5pt">地址,</span><span
+					style="font-family:Calibri; font-size:10.5pt">WiFi </span><span
+					style="font-family:宋体; font-size:10.5pt">信息。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">隐私政策链接:</span><a href="https://lbs.amap.com/pages/privacy/"><span
+						style="color:#0000ff; font-family:Calibri; font-size:10.5pt; text-decoration:underline">https://lbs.amap.com/pages/privacy/</span></a>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">3</span><span
+					style="font-family:宋体; font-size:10.5pt">)</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">名称:</span><span
+					style="font-family:宋体; font-size:10.5pt">支付宝</span><span
+					style="font-family:Calibri; font-size:10.5pt">-</span><span style="font-family:宋体; font-size:10.5pt">阿里支付</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">作用:用于支付宝支付。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">收集个人信息类型:系统语言,系统唯一标识符,外部存储状态,网络类型,设备型号,设备制造商,</span><span
+					style="font-family:Calibri; font-size:10.5pt">SIM </span><span
+					style="font-family:宋体; font-size:10.5pt">卡序列号,</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMEI</span><span
+					style="font-family:宋体; font-size:10.5pt">,</span><span style="font-family:Calibri; font-size:10.5pt">MAC
+				</span><span style="font-family:宋体; font-size:10.5pt">地址,</span><span
+					style="font-family:Calibri; font-size:10.5pt">ANDROID_ID</span><span
+					style="font-family:宋体; font-size:10.5pt">,</span><span style="font-family:Calibri; font-size:10.5pt">IP
+				</span><span style="font-family:宋体; font-size:10.5pt">地址,</span><span
+					style="font-family:Calibri; font-size:10.5pt">WiFi </span><span
+					style="font-family:宋体; font-size:10.5pt">信息,应用安装列表,</span><span
+					style="font-family:Calibri; font-size:10.5pt">OpenUDID</span><span
+					style="font-family:宋体; font-size:10.5pt">。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">隐私政策链接:</span><span
+					style="font-family:Calibri; font-size:10.5pt">https://www.alipay.com/</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">4</span><span
+					style="font-family:宋体; font-size:10.5pt">)</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">名称:微信</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">作用:使用微信开放平台</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">,支持微信授权登录、微信分享和微信支付。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">收集个人信息类型:第三方账号、设备信息(包括开放性独立设备标识符</span><span
+					style="font-family:Calibri; font-size:10.5pt">(Open UDID)</span><span
+					style="font-family:宋体; font-size:10.5pt">、唯一设备识别码</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMEI</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span style="font-family:Calibri; font-size:10.5pt">IOS
+				</span><span style="font-family:宋体; font-size:10.5pt">广告标识符</span><span
+					style="font-family:Calibri; font-size:10.5pt">(IDFA)</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">MAC</span><span
+					style="font-family:宋体; font-size:10.5pt">地址、设备型号、终端设备操作系统版本、终端制造厂商)、设备语言、时区和网络</span><span
+					style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">语言状态相关信息,用于统计分析您使用我们的服务数据;</span><span
+					style="font-family:Calibri; font-size:10.5pt">Bugly SDK </span><span
+					style="font-family:宋体; font-size:10.5pt">会读取您的 </span><span style="font-family:Calibri; font-size:10.5pt">CRASH
+				</span><span style="font-family:宋体; font-size:10.5pt">环境(包括 </span><span
+					style="font-family:Calibri; font-size:10.5pt">CRASH </span><span
+					style="font-family:宋体; font-size:10.5pt">信息及线程堆线、</span><span
+					style="font-family:Calibri; font-size:10.5pt">ROM/RAM/SD </span><span
+					style="font-family:宋体; font-size:10.5pt">卡容量)、应用程序包名、应用程序版本、应用程序所属进程名、设备信息(包括开放性独立设备标识符</span><span
+					style="font-family:Calibri; font-size:10.5pt">(Open UDID)</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span style="font-family:Calibri; font-size:10.5pt">IOS
+				</span><span style="font-family:宋体; font-size:10.5pt">广告标识符</span><span
+					style="font-family:Calibri; font-size:10.5pt">(IDFA)</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span style="font-family:Calibri; font-size:10.5pt">MAC
+				</span><span style="font-family:宋体; font-size:10.5pt">地址、国际移动设备识别码</span><span
+					style="font-family:Calibri; font-size:10.5pt">(IMEI)</span><span
+					style="font-family:宋体; font-size:10.5pt">、设备型号、终端设备操作系统版本、终端制造厂商)、设备语言、时区和网络</span><span
+					style="font-family:Calibri; font-size:10.5pt">/</span><span
+					style="font-family:宋体; font-size:10.5pt">语言状态相关信息,用于判断并收集、统计 </span><span
+					style="font-family:Calibri; font-size:10.5pt">CRASH </span><span
+					style="font-family:宋体; font-size:10.5pt">信息。)</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">隐私政策链接:</span><span
+					style="font-family:Calibri; font-size:10.5pt">https://open.weixin.qq.com/</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p
+				style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; text-indent:0pt; widows:0">
+				<span style="font-family:宋体; font-size:10.5pt">(</span><span
+					style="font-family:Calibri; font-size:10.5pt">5</span><span
+					style="font-family:宋体; font-size:10.5pt">)</span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">名称:腾讯</span><span
+					style="font-family:Calibri; font-size:10.5pt">Bugly</span><span
+					style="width:1.35pt; text-indent:0pt; display:inline-block"></span><span
+					style="font-family:Calibri; font-size:10.5pt">SDK</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">收集个人信息类型:</span><span
+					style="font-family:宋体; font-size:10.5pt">在收集运行进程信息时,腾讯</span><span
+					style="font-family:Calibri; font-size:10.5pt">bugly SDK</span><span
+					style="font-family:宋体; font-size:10.5pt">将会收集、使用日志信息(包括:第三方开发者自定义日志、</span><span
+					style="font-family:Calibri; font-size:10.5pt">Logcat</span><span
+					style="font-family:宋体; font-size:10.5pt">日志以及</span><span
+					style="font-family:Calibri; font-size:10.5pt">APP</span><span
+					style="font-family:宋体; font-size:10.5pt">崩溃堆栈信息)、联网信息、系统名称、系统版本、</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMEI</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">IMSI</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:Calibri; font-size:10.5pt">DEVICEID</span><span
+					style="font-family:宋体; font-size:10.5pt">设备</span><span
+					style="font-family:Calibri; font-size:10.5pt">MAC</span><span
+					style="font-family:宋体; font-size:10.5pt">地址以及国家码</span><span
+					style="font-family:Calibri; font-size:10.5pt">              </span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">目的:提供</span><span
+					style="font-family:Calibri; font-size:10.5pt">app</span><span
+					style="font-family:宋体; font-size:10.5pt">稳定性监控,程序崩溃上报,帮助开发者快速发现问题</span><span
+					style="width:15.75pt; text-indent:0pt; display:inline-block"></span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">用户协议:</span><span
+					style="font-family:Calibri; font-size:10.5pt">https://bugly.qq.com/v2/contract</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">六、如何访问和管理自己的信息</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span style="font-family:宋体; font-size:10.5pt">信息安全  </span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(一)</span><span style="font-family:宋体; font-size:10.5pt">信息安全</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">a) </span><span
+					style="font-family:宋体; font-size:10.5pt; font-weight:bold">团蜂家居</span><span
+					style="font-family:宋体; font-size:10.5pt">帐号均有安全保护功能,请妥善保管您的用户名及密码信息。</span><span
+					style="font-family:宋体; font-size:10.5pt; font-weight:bold">团蜂家居</span><span
+					style="font-family:宋体; font-size:10.5pt">将通过对用户密码进行加密等安全措施确保您的信息不丢失,不被滥用和变造。尽管有前述安全措施,但同时也请您注意在信息网络上不存在“完善的安全措施”。 
+				</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">b) </span><span
+					style="font-family:宋体; font-size:10.5pt">在使用本系统网络服务进行网上交易时,您不可避免的要向交易对方或潜在的交易对方披露自己的个人信息,如联络方式或者邮政地址。请您妥善保护自己的个人信息,仅在必要的情形下向他人提供。如您发现自己的个人信息泄密,尤其是本系统用户名及密码发生泄露,请您立即联络本系统客服,以便本系统采取相应措施。</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">(二)</span><span
+					style="font-family:宋体; font-size:10.5pt">如何访问和管理自己的信息</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">a</span><span
+					style="font-family:宋体; font-size:10.5pt">)我们将采取适当的技术手段,保证您可以查询您的注册信息。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">您可以通过“我的”,查看您的头像、昵称等信息,点击“设置”可以修改昵称。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">b)</span><span
+					style="font-family:宋体; font-size:10.5pt">账号注销</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">您可以通过点击“我的”——“</span><span
+					style="font-family:宋体; font-size:10.5pt">账号</span><span
+					style="font-family:宋体; font-size:10.5pt">”——“注销账号”,输入登录密码,进行注销账号操作。账号注销后,我们将对已经收集的个人信息进行删除或匿名化处理。</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p
+				style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; text-indent:0pt; widows:0">
+				<span style="font-family:Calibri; font-size:10.5pt">7</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span style="font-family:宋体; font-size:10.5pt">其他</span>
+			</p>
+			<p
+				style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; text-indent:0pt; widows:0">
+				<span style="font-family:Calibri; font-size:10.5pt">1</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:宋体; font-size:10.5pt">本隐私政策的签订、生效、履行、争议的解决均适用中华人民共和国法律。</span>
+			</p>
+			<p
+				style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; text-indent:0pt; widows:0">
+				<span style="font-family:Calibri; font-size:10.5pt">2</span><span
+					style="font-family:宋体; font-size:10.5pt">、</span><span
+					style="font-family:宋体; font-size:10.5pt">有关本协议的争议应通过友好协商解决,如果协商不成,该争议将提交公司所在地有管辖权的法院诉讼解决。</span>
+			</p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:Calibri; font-size:10.5pt">&#xa0;</span></p>
+			<p style="font-size:10.5pt; line-height:115%; margin:0pt 0pt 10pt; orphans:0; text-align:justify; widows:0"><span
+					style="font-family:宋体; font-size:10.5pt">我们非常注重用户隐私和数据保护,为了保障用户的权益,我们严格遵守相关法律法规和行业标准,并建立了完善的隐私保护体系。如果您在使用我们的应用程序时,有任何问题或疑虑,请随时联系我们。我们会尽一切努力保护您的个人信息安全,绝不泄露您的任何隐私信息。</span>
+			</p>
+		</div>
+	</view>
+</template>
+
+<script>
+export default {}
+</script>
+
+<style lang="less" scoped>
+h1,
+view,
+text {
+	line-height: 1.5;
+}
+
+.container {
+	padding: 20upx;
+	box-sizing: border-box;
+
+	h1 {
+		font-weight: 500;
+		text-align: center;
+		font-size: 40upx;
+	}
+
+	p.blod {
+		font-weight: bold;
+		margin: 20px 0;
+		text-decoration: underline;
+	}
+
+	p.ge {
+		margin: 10px 0;
+	}
+
+	text.blod {
+		font-weight: bold;
+	}
+
+	div.ge {
+		p {
+			margin: 20upx 0;
+		}
+	}
+}</style>

+ 4109 - 0
pages/service-agreement/service-agreement.vue

@@ -0,0 +1,4109 @@
+<template>
+  <view class="container">
+
+    <h3
+      style="
+        background-color: #ffffff;
+        line-height: 12pt;
+        margin: 15pt 0pt 7.5pt;
+      "
+    >
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >服务协议</span
+      >
+    </h3>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>欢迎您与各</span><span>团蜂</span><span>平台商家共同签署本《</span
+      ><span>团蜂</span><span>平台服务协议》(下称“本协议”)并使用</span
+      ><span>团蜂</span><span>平台服务!</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>本协议为《</span><span>团蜂</span
+      ><span>平台服务协议》修订版本,自本协议发布之日起,</span><span>团蜂</span
+      ><span>平台各处所称“</span><span>团蜂</span
+      ><span
+        >平台服务协议”均指本协议。
+        各服务条款前所列索引关键词仅为帮助您理解该条款表达的主旨之用,不影响或限制本协议条款的含义或解释。为维护您自身权益,建议您仔细阅读各条款具体表述。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【审慎阅读】</span
+      ><span>您在申请注册流程中点击同意本协议之前,应当认真阅读本协议。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >请您务必审慎阅读、充分理解各条款内容,特别是免除或者限制责任的条款、法律适用和争议解决条款。</span
+      ><span
+        >免除或者限制责任的条款将以粗体下划线标识,您应重点阅读。如您对协议有任何疑问,可向</span
+      ><span>团蜂</span><span>平台客服咨询。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【签约动作】</span
+      ><span
+        >当您按照注册页面提示填写信息、阅读并同意本协议且完成全部注册程序后,即表示您已充分阅读、理解并接受本协议的全部内容,并与</span
+      ><span>团蜂</span><span>平台达成一致,成为</span><span>团蜂</span
+      ><span>平台“用户”。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >阅读本协议的过程中,如果您不同意本协议或其中任何条款约定,您应立即停止注册程序。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【法律关系界定】您完成注册后,可以在</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台上自由选择</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >服务与</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >师傅。师傅也是平台的注册用户,并非平台指派。简言之,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台仅提供安装需求信息与安装服务信息的对接,您选择师傅后,您直接与师傅之间形成承揽关系,承揽合同的具体履行和安装服务的具体提供均与</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台无关。师傅的安装给您造成损失的,按照法律的规定应当由师傅承担。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台的先行赔付服务,仅是一项</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台自愿提供的福利和保险措施,有其专门的规则,并不代表一旦损害发生,法律责任均由平台承担。</span
+      >
+    </p>
+    <h4 style="background-color: #ffffff; line-height: 12pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >一、 定义</span
+      >
+    </h4>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台:</span
+      ><span>指</span><span>团蜂</span
+      ><span>网(https://www.tuanfengkeji.cn/)的网站及客户端。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台服务:</span
+      ><span>团蜂</span><span>平台基于互联网,以包含</span><span>团蜂</span
+      ><span
+        >平台网站、客户端等在内的各种形态(包括未来技术发展出现的新的服务形态)向您提供的各项服务。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台规则:</span
+      ><span>包括在所有</span><span>团蜂</span
+      ><span
+        >平台规则频道内已经发布及后续发布的全部规则、解读、公告等内容以及各平台在帮派、论坛、帮助中心内发布的各类规则、实施细则、产品流程说明、公告等。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >服务商:</span
+      ><span>服务商是指通过</span><span>团蜂</span
+      ><span>平台提供家居服务的企业、个体工商户或其他组织以及在</span
+      ><span>团蜂</span
+      ><span
+        >平台上注册并经过认证的,为用户提供线下家居配送、安装等劳动服务的个人。</span
+      >
+    </p>
+    <h4 style="background-color: #ffffff; line-height: 12pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >二、 协议范围</span
+      >
+    </h4>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >2.1 签约主体</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【平等主体】</span
+      ><span>本协议由您与</span><span>团蜂</span
+      ><span>平台经营者共同缔结,本协议对您与</span><span>团蜂</span
+      ><span>平台经营者均具有合同效力。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【主体信息】</span
+      ><span>团蜂</span><span>平台经营者是指经营</span><span>团蜂</span
+      ><span>平台的各法律主体,您可随时查看</span><span>团蜂</span
+      ><span>平台各网站首页底部公示的证照信息以确定与您履约的</span
+      ><span>团蜂</span><span>平台主体。本协议项下,</span><span>团蜂</span
+      ><span>平台经营者可能根据</span><span>团蜂</span
+      ><span>平台的业务调整而发生变更,变更后的</span><span>团蜂</span
+      ><span>平台经营者与您共同履行本协议并向您提供服务,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台经营者的变更不会影响您本协议项下的权益。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台经营者还有可能因为提供新的</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台服务而新增,如您使用新增的</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台服务的,视为您同意新增的</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台经营者与您共同履行本协议。发生争议时,您可根据您具体使用的服务及对您权益产生影响的具体行为对象确定与您履约的主体及争议相对方。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >2.2补充协议</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>由于互联网高速发展,您与</span><span>团蜂</span
+      ><span>平台签署的本协议列明的条款并不能完整罗列并覆盖您与</span
+      ><span>团蜂</span
+      ><span
+        >平台所有权利与义务,现有的约定也不能保证完全符合未来发展的需求。因此,</span
+      ><span>团蜂</span><span>平台</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #0000ff;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: none;
+          text-transform: none;
+        "
+        >法律声明及隐私权政策</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >为本协议的补充协议,与本协议不可分割且具有同等法律效力。如您使用</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台服务,视为您同意上述补充协议。</span
+      >
+    </p>
+    <h4 style="background-color: #ffffff; line-height: 12pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >三、 账户注册与使用</span
+      >
+    </h4>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >3.1 用户资格</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>您确认,在您开始注册程序使用</span><span>团蜂</span
+      ><span
+        >平台服务前,您应当具备中华人民共和国法律规定的与您行为相适应的民事行为能力。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >若您不具备前述与您行为相适应的民事行为能力,则您及您的监护人应依照法律规定承担因此而导致的一切后果。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >3.2 账户说明</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【账户获得】</span
+      ><span
+        >当您按照注册页面提示填写信息、阅读并同意本协议且完成全部注册程序后,您可获得</span
+      ><span>团蜂</span><span>平台账户并成为</span><span>团蜂</span
+      ><span>平台用户。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台只允许每位用户使用一个</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台账户。如有证据证明或</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台有理由相信您存在不当注册或不当使用多个</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台账户的情形,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可采取冻结或关闭账户、取消订单、拒绝提供服务等措施,如给</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台及相关方造成损失的,您还应承担赔偿责任。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【账户使用】</span
+      ><span>您有权使用您设置或确认的</span><span>团蜂</span
+      ><span
+        >平台用户名、邮箱、手机号码(以下简称“账户名称”)及您设置的密码(账户名称及密码合称“账户”)登录</span
+      ><span>团蜂</span><span>平台。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>由于您的</span><span>团蜂</span
+      ><span>平台账户关联您的个人信息及</span><span>团蜂</span
+      ><span>平台商业信息,您的</span><span>团蜂</span
+      ><span>平台账户仅限您本人使用。未经</span><span>团蜂</span
+      ><span>平台同意,您直接或间接授权第三方使用您</span><span>团蜂</span
+      ><span>平台账户或获取您账户项下信息的行为无效。如</span><span>团蜂</span
+      ><span>平台判断您</span><span>团蜂</span
+      ><span>平台账户的使用可能危及您的账户安全及/或</span><span>团蜂</span
+      ><span>平台信息安全的,</span><span>团蜂</span
+      ><span>平台可拒绝提供相应服务或终止本协议。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【账户转让】</span
+      ><span
+        >由于用户账户关联用户信用信息,仅当有法律明文规定、司法裁定或经</span
+      ><span>团蜂</span><span>平台同意,并符合</span><span>团蜂</span
+      ><span
+        >平台规则规定的用户账户转让流程的情况下,您可进行账户的转让。您的账户一经转让,该账户项下权利义务一并转移。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >除此外,您的账户不得以任何方式转让,否则</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台有权追究您的违约责任,且由此产生的一切责任均由您承担。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >3.3 注册信息管理</span
+      >
+    </h5>
+    <h6 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >3.3.1 真实合法</span
+      >
+    </h6>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【信息真实】</span
+      ><span>在使用</span><span>团蜂</span><span>傅平台服务时,您应当按</span
+      ><span>团蜂</span
+      ><span
+        >平台页面的提示准确完整地提供您的信息(包括您的姓名及电子邮件地址、联系电话、联系地址等),以便</span
+      ><span>团蜂</span><span>平台或其他用户与您联系。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >您了解并同意,您有义务保持您提供信息的真实性及有效性。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【用户名的合法性】</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >您设置的</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台用户名不得违反国家法律法规及</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台规则关于用户名的管理规定,否则</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可回收您的</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台用户名。</span
+      ><span>团蜂</span><span>平台用户名的回收不影响您以邮箱、手机号码登录</span
+      ><span>团蜂</span><span>平台并使用</span><span>团蜂</span
+      ><span>平台服务。</span>
+    </p>
+    <h6 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >3.3.2 更新维护</span
+      >
+    </h6>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>您应当及时更新您提供的信息,在法律有明确规定要求</span
+      ><span>团蜂</span
+      ><span>平台作为平台服务提供者必须对部分用户的信息进行核实的情况下,</span
+      ><span>团蜂</span
+      ><span
+        >平台将依法不时地对您的信息进行检查核实,您应当配合提供最新、真实、完整、有效的信息。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >如</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台按您最后一次提供的信息与您联系未果、您未按</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台的要求及时提供信息、您提供的信息存在明显不实或行政司法机关核实您提供的信息无效的,您将承担因此对您自身、他人及</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台造成的全部损失与不利后果。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可向您发出询问或要求整改的通知,并有权直接做出删除相应资料的处理,直至中止、终止对您提供部分或全部</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台服务,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台对此不承担责任。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >3.4 账户安全规范</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【账户安全保管义务】</span
+      ><span>您的账户为您自行设置并由您保管,</span><span>团蜂</span
+      ><span
+        >平台任何时候均不会主动要求您提供您的账户密码。因此,建议您务必保管好您的账户,
+        并确保您在每个上网时段结束时退出登录并以正确步骤离开</span
+      ><span>团蜂</span><span>平台。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >账户因您主动泄露或因您遭受他人攻击、诈骗等行为导致的损失及后果,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台并不承担责任,您应通过司法、行政等救济途径向侵权行为人追偿。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【账户行为责任自负】</span
+      ><span>除</span><span>团蜂</span><span>平台存在过错外,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >您应对您账户项下的所有行为结果(包括但不限于在线签署各类协议、发布信息、兑换商品及服务及披露信息等)负责。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【日常维护须知】</span
+      ><span>如发现任何未经授权使用您账户登录</span><span>团蜂</span
+      ><span>平台或其他可能导致您账户遭窃、遗失的情况,建议您立即通知</span
+      ><span>团蜂</span><span>平台。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >您理解</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台对您的任何请求采取行动均需要合理时间,且</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台应您请求而采取的行动可能无法避免或阻止侵害后果的形成或扩大,除</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台存在法定过错外,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台不承担责任。</span
+      >
+    </p>
+    <p
+      style="
+        background-color: #ffffff;
+        line-height: 22.5pt;
+        margin: 0pt;
+        font-weight: bold;
+      "
+    >
+      我们非常重视您的隐私权利,并致力于保护您的个人信息。本隐私政策将告知您我们收集、使用和保护您的个人信息的方式。
+      一、 收集的设备信息 我们可能会收集以下设备信息:
+      设备MAC地址:设备MAC地址是设备网络接口的唯一标识符。
+      软件安装列表:我们可能会收集您设备上已安装的应用程序列表。
+      OAID:OAID是一种与设备相关的匿名标识符,用于识别设备并为您提供广告服务。
+      二、 收集设备信息的目的 我们仅会根据以下目的和方式使用收集的设备信息:
+     
+      三、 使用收集设备信息的方式
+      我们仅会以合法、正当、必要的方式使用您的设备信息,例如:
+      我们会对收集的设备信息进行安全保护,采取相应措施防止泄露、滥用、篡改等风险。
+      我们会对收集的设备信息进行合理的时限限制,不会超过实现收集目的所必需的时间。
+      我们仅会与为实现收集目的必要的合作伙伴共享您的设备信息,例如为您提供广告服务或进行数据统计分析。我们将对共享信息的合作伙伴进行严格审查,并要求其按照我们的隐私政策进行保护。
+      四、 其他事项
+      我们会不断更新和完善隐私政策,以反映我们收集、使用和保护个人信息的最新方式。如果我们进行了任何实质性的政策更改,我们将在APP上进行通知或公告,以确保您充分了解我们如何处理您的个人信息。
+    </p>
+    <h4 style="background-color: #ffffff; line-height: 12pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >四、 </span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台服务及规范</span
+      >
+    </h4>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【服务概况】</span
+      ><span>【服务概况】您有权在</span><span>团蜂</span
+      ><span>平台上享受寻找师傅、资金交易等服务。</span><span>团蜂</span
+      ><span>平台提供的服务内容众多,具体您可登录</span><span>团蜂</span
+      ><span>平台浏览。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>团蜂</span><span>平台保留在任何时候自行决定对</span><span>团蜂</span
+      ><span>平台服务及其相关功能、应用软件变更、升级的权利。 </span
+      ><span>团蜂</span
+      ><span
+        >平台进一步保留在平台服务中开发新的模块、功能和软件或其它语种服务的权利。
+        上述所有新的模块、功能、软件服务的提供,除非</span
+      ><span>团蜂</span
+      ><span>平台另有说明,否则仍适用本协议。 服务随时可能因</span
+      ><span>团蜂</span
+      ><span
+        >平台的单方判断而被增加或修改,或因定期、不定期的维护而暂缓提供,
+        您将会得到相应的变更通知。您在此同意</span
+      ><span>团蜂</span
+      ><span
+        >平台在任何情况下都无需向其或第三方在使用服务时对其在传输或联络中的迟延、不准确、错误或疏漏及因此而致使的损害负责。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >4.1 选择</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >服务</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【招标信息发布】</span
+      ><span>通过</span><span>团蜂</span
+      ><span>平台提供的服务,您有权通过文字、图片等形式在</span><span>团蜂</span
+      ><span>平台上发布家居服务需求、招标和选择师傅、达成交易。</span
+      ><span>团蜂</span><span>平台不对您所发布信息的删除或储存失败负责。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【服务方】</span
+      ><span>您有权依据自己的独立判断选择提供服务的对象师傅,</span
+      ><span>团蜂</span
+      ><span
+        >平台仅通过提供在线信息平台的方式,
+        向您提供信息服务,本协议的签署并不意味着</span
+      ><span>团蜂</span><span>平台成为您在</span><span>团蜂</span
+      ><span>平台上与服务商所进行的服务或交易的参与者;</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台本身不对服务商的上传内容
+        (包括其发布的供服务商参考报价的订单内容及其他全部由其上传的内容)负责</span
+      ><span>,亦不对服务商在</span><span>团蜂</span
+      ><span>平台上发布的信息及其提供的线下服务作任何明示或默示的担保。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台不担保平台中服务商提供的家居服务一定能满足您及线下客户的要求,您明确同意其使用本网站服务及通过本网站的服务所存在的风险将完全由其自己承担;</span
+      ><span>因您使用本网站服务而产生的一切后果也由您自己承担,</span
+      ><span>团蜂</span><span>平台不对消费者承担任何责任。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>您所有的非通过</span><span>团蜂</span
+      ><span
+        >平台订单的对应产生的交易均属于线下交易,因线下交易发生的任何纠纷,与万</span
+      ><span>团蜂</span><span>平台无关,</span><span>团蜂</span
+      ><span>平台既不介入处理,也不承担任何责任。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【交易秩序保障】</span
+      ><span
+        >您应当遵守诚实信用原则,确保您所发布的家居服务需求真实并在交易过程中切实履行您的交易承诺。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>您应当维护</span><span>团蜂</span
+      ><span
+        >平台市场良性竞争秩序,不得贬低、诋毁竞争对手以及服务商,不得干扰</span
+      ><span>团蜂</span
+      ><span
+        >平台上进行的任何交易、活动,不得以任何不正当方式提升或试图提升自身的信用度,不得以任何方式干扰或试图干扰</span
+      ><span>团蜂</span><span>平台的正常运作。</span>
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >4.2资金交易</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【钱包账户】</span
+      ><span>&#xa0;</span><span>您需了解并同意,如您系在</span><span>团蜂</span
+      ><span>平台完成注册,只要您注册成功,您即自动开通</span><span>团蜂</span
+      ><span>钱包账户,同意使用</span><span>团蜂</span
+      ><span>钱包账户结算与</span><span>团蜂</span
+      ><span
+        >平台发生联系的款项,您可以对钱包账户进行充值,使用钱包余额支付服务费等款项,订单的退款以及先行赔付的赔付金会依据</span
+      ><span>团蜂</span><span>平台规则进入钱包账户。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >特别需要注意的是,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台为加强退款和赔付效率,将涉及资金转账的操作业务委托给具备专业资质和经验的第三方进行集中处理,根据交易规则,在办理具体转账操作时,必须要您提供身份证信息以进行安全核对,您对此知悉并同意。(注:国内类似网络资金的转账,均有此要求,受此约束)</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        >您有权根据需要更改账户钱包密码。因您的过错导致的任何钱包资金损失由您自行承担,该过错包括但不限于:不按照交易提示操作,未及时进行交易操作,遗忘或泄漏密码,密码被他人破解,用户使用的计算机被他人侵入。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【不担保交易】</span
+      ><span>团蜂</span
+      ><span
+        >平台不担保服务商提供的服务一定能满足您以及您客户的需求,只对您在支付服务款之后的资金进行担保交易。您有权依据</span
+      ><span>团蜂</span
+      ><span
+        >平台规定在服务商提交服务完成后再进行确认付款,服务商的服务完成后若您未主动确认付款,订单将在7天(返货订单15天)之后自动确认付款。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >4.3 交易争议处理</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【交易争议处理途径】</span
+      ><span>您在</span><span>团蜂</span
+      ><span>平台交易过程中与服务商发生争议的,您有权选择以下途径解决:</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(一)与争议相对方自主协商;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(二)使用</span><span>团蜂</span
+      ><span>平台提供的争议调处服务;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(三)请求消费者协会或者其他依法成立的调解组织调解;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(四)向有关行政部门投诉;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        >(五)根据与争议相对方达成的仲裁协议(如有)提请仲裁机构仲裁;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【平台调处服务】</span
+      ><span>如您依据</span><span>团蜂</span
+      ><span>平台规则(包括但不限于交易退款、费用增加等)使用</span
+      ><span>团蜂</span><span>平台的争议调处服务,则表示您认可并愿意履行</span
+      ><span>团蜂</span
+      ><span
+        >平台的维权专员或大众评审员(“调处方”)作为独立的第三方根据其所了解到的争议事实并依据</span
+      ><span>团蜂</span
+      ><span
+        >平台规则所作出的调处决定(包括调整相关订单的交易状态、判定将争议款项的全部或部分支付给交易一方或双方,部分符合先行赔付规则的交易订单,</span
+      ><span>团蜂</span
+      ><span>平台可依据单方面的判断提供相应赔偿服务等)。在</span
+      ><span>团蜂</span
+      ><span
+        >平台调处决定作出前,您可选择上述(三)、(四)、(五)途径(下称“其他争议处理途径”)解决争议以中止</span
+      ><span>团蜂</span
+      ><span
+        >平台的争议调处服务。您同意,平台维权专员可以根据您描述的师傅违规的具体情况对您提交的投诉类别做更改处理(你的投诉描述文字不会更改),以使得您的问题更够被更快更好地处理。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >如您对调处决定不满意,您仍有权采取其他争议处理途径解决争议,但通过其他争议处理途径未取得终局决定前,您仍应先履行调处决定。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >4.4费用</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>团蜂</span><span>平台向您提供的服务付出了大量的成本,除</span
+      ><span>团蜂</span><span>平台明示的收费业务外,</span><span>团蜂</span
+      ><span>平台向您提供的服务目前是免费的。如未来</span><span>团蜂</span
+      ><span>平台向您收取合理费用,</span><span>团蜂</span
+      ><span
+        >平台会采取合理途径并以足够合理的期限提前通过法定程序并以本协议第八条约定的方式通知您,确保您有充分选择的权利。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >4.5责任限制</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【不可抗力及第三方原因】</span
+      ><span>团蜂</span><span>平台依照法律规定履行基础保障义务,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >但对于下述原因导致的合同履行障碍、履行瑕疵、履行延后或履行内容变更等情形,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台并不承担相应的违约责任:</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >(一)因自然灾害、罢工、暴乱、战争、政府行为、司法行政命令等不可抗力因素;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >(二)因电力供应故障、通讯网络故障等公共服务因素或第三人因素;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >(三)在</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台已尽善意管理的情况下,因常规或紧急的设备与系统维护、设备与系统故障、网络信息与数据安全等因素。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【海量信息】</span
+      ><span>团蜂</span><span>平台仅向您提供</span><span>团蜂</span
+      ><span>平台服务,您了解</span><span>团蜂</span
+      ><span>平台上的信息系服务商自行发布,且可能存在风险和瑕疵。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台不对服务所涉及的技术的质量、
+        稳定、完整及对服务商信息的有效性、准确性、合法性、真实性、及时性做出任何承诺和保证,并且不承担任何由此引起的法律责任。</span
+      ><span
+        >在任何情况下,用户应充分了解交易风险后,依据自身风险承受能力和经验,衡量平台披露的交易内容及交易对方信息的准确性、真实性以及合法性,</span
+      ><span>团蜂</span><span>平台对用户因其选择</span><span>团蜂</span
+      ><span
+        >平台的服务而导致的任何直接、间接损失(
+        包括但不限于交易损失、资金损失、利润损失、营业中断损失等)均不承担法律责任,均由用户自行承担。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【调处决定】</span
+      ><span>您理解并同意,在争议调处服务中,</span><span>团蜂</span
+      ><span
+        >平台的维权专员、大众评审员并非专业人士,仅能以普通人的认知对用户提交的凭证进行判断。因此,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >除存在故意或重大过失外,调处方对争议调处决定免责。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >4.6安全注意</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台已经尽最大努力加强师傅的安全性审查和筛选。但我们仍重点提请用户们主动提请客户注意,以下情形下切勿选择师傅上门安装:</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >(一)师傅的信息与订单不符(请在开门前也进行核对);</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >(二)家中只有老人和小孩,或其他不足以防范外来者的家人在场时;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >(三)夜晚安装或者其他不适合上门安装的时间;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >(四)贵重物品放置在家中容易被看见的裸露地方。</span
+      >
+    </p>
+    <h4 style="background-color: #ffffff; line-height: 12pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >五、 用户信息的保护及授权</span
+      >
+    </h4>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >5.1个人信息的保护</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>团蜂</span
+      ><span
+        >平台非常重视用户个人信息(即能够独立或与其他信息结合后识别用户身份的信息)的保护,在您使用</span
+      ><span>团蜂</span><span>平台提供的服务时,您同意</span><span>团蜂</span
+      ><span>平台按照在</span><span>团蜂</span
+      ><span
+        >平台上公布的隐私权政策收集、存储、使用、披露和保护您的个人信息。</span
+      ><span>团蜂</span><span>平台希望通过隐私权政策向您清楚地介绍</span
+      ><span>团蜂</span><span>平台对您个人信息的处理方式,因此</span
+      ><span>团蜂</span><span>平台建议您完整地阅读隐私权政策(点击</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #00b8d9;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          text-decoration: none;
+          text-transform: none;
+        "
+        >此处</span
+      ><span>或点击</span><span>团蜂</span
+      ><span>平台首页底部链接),以帮助您更好地保护您的隐私权。</span>
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >5.2非个人信息的保证与授权</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【信息的发布】</span
+      ><span>您声明并保证,您对您所发布的信息拥有相应、合法的权利。否则,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可对您发布的信息依法或依本协议进行删除或屏蔽。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【禁止性信息】</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >您应当确保您所发布的信息不包含以下内容:</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >(一)违反国家法律法规禁止性规定的;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >(二)政治宣传、封建迷信、淫秽、色情、赌博、暴力、恐怖或者教唆犯罪的;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >(三)欺诈、虚假、不准确或存在误导性的;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >(四)侵犯他人知识产权或涉及第三方商业秘密及其他专有权利的;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >(五)侮辱、诽谤、恐吓、涉及他人隐私等侵害他人合法权益的;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >(六)存在可能破坏、篡改、删除、影响</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台任何系统正常运行或未经授权秘密获取</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台及其他用户的数据、个人资料的病毒、木马、爬虫等恶意软件、程序代码的;</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >(七)其他违背社会公共利益或公共道德或依据相关</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台协议、规则的规定不适合在</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台上发布的。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【授权使用】</span
+      ><span>对于您提供及发布除个人信息外的文字、图片等非个人信息,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >在版权保护期内您免费授予</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台获得全球排他的许可使用权利及再授权给其他第三方使用的权利。您同意</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台存储、使用、复制、修订、编辑、发布、展示、翻译、分发您的非个人信息或制作其派生作品,并以已知或日后开发的形式、媒体或技术将上述信息纳入其它作品内。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>为方便您使用</span><span>团蜂</span><span>平台其他相关服务,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >您授权</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台将您在账户注册和使用</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台服务过程中提供、形成的信息传递给</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台其他相关服务提供者,例如,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可能将该信息发送至信用卡服务商以完成付款程序。或从</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台其他相关服务提供者获取您在注册、使用相关服务期间提供、形成的信息。</span
+      >
+    </p>
+    <h4 style="background-color: #ffffff; line-height: 12pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >六、 用户的违约及处理</span
+      >
+    </h4>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >6.1 违约认定</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>发生如下情形之一的,视为您违约:</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(一)使用</span><span>团蜂</span
+      ><span>平台服务时违反有关法律法规规定的;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(二)违反本协议或本协议补充协议(即本协议第2.2条)约定的。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        >为适应平台发展和满足海量用户对高效优质服务的需求,您理解并同意,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可在</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台规则中约定违约认定的程序和标准。如:</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可依据服务商提供的证据来认定您是否构成违约;您有义务对您的指控进行充分举证和合理解释,否则将被认定为违约。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >6.2 违约处理措施</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【信息处理】</span
+      ><span>您在</span><span>团蜂</span
+      ><span>平台上发布的信息构成违约的,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可根据相应规则立即对相应信息进行删除、屏蔽处理等。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【行为限制】</span
+      ><span>您在</span><span>团蜂</span><span>平台上实施的行为,或虽未在</span
+      ><span>团蜂</span><span>平台上实施但对</span><span>团蜂</span
+      ><span>平台及其用户产生影响的行为构成违约的,</span><span>团蜂</span
+      ><span>平台</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >可依据相应规则对您执行限制参加商业活动、中止向您提供部分或全部服务、冻结或删除账户等处理措施。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【处理结果公示】</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可将对您上述违约行为处理措施信息以及其他经国家行政或司法机关生效法律文书确认的违法信息在</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台上予以公示。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >6.3赔偿责任</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >如您的行为使</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台遭受损失(包括自身的直接经济损失、商誉损失及对外支付的赔偿金、和解款、律师费、诉讼费等间接经济损失),您应赔偿</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台的上述全部损失。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >如您的行为使</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台遭受第三人主张权利,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可在对第三人承担金钱给付等义务后就全部损失向您追偿。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >6.4特别约定</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【商业贿赂】</span
+      ><span>如您向</span><span>团蜂</span
+      ><span
+        >平台的雇员或顾问等提供实物、现金、现金等价物、劳务、旅游等价值明显超出正常商务洽谈范畴的利益,则可视为您存在商业贿赂行为。</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >发生上述情形的,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可立即终止与您的所有合作并向您收取违约金及/或赔偿金,</span
+      ><span>该等金额以</span><span>团蜂</span
+      ><span>平台因您的贿赂行为而遭受的经济损失和商誉损失作为计算依据。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【关联处理】</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >如您因严重违约导致</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台终止本协议时,出于维护平台秩序及保护消费者权益的目的,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可对与您在其他协议项下的合作采取中止甚或终止协议的措施,并以本协议第八条约定的方式通知您。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >如</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台与您签署的其他协议及</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台与您签署的协议中明确约定了对您在本协议项下合作进行关联处理的情形,则</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台出于维护平台秩序及保护消费者权益的目的,可在收到指令时中止甚至终止协议,并以本协议第八条约定的方式通知您。</span
+      >
+    </p>
+    <h4 style="background-color: #ffffff; line-height: 12pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >七、 协议的变更</span
+      >
+    </h4>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>团蜂</span
+      ><span
+        >平台可根据国家法律法规变化及维护交易秩序、保护消费者权益需要,不时修改本协议、补充协议,变更后的协议、补充协议(下称“变更事项”)将通过法定程序并以本协议第八条约定的方式通知您。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>如您不同意变更事项,您有权于变更事项确定的生效日前联系</span
+      ><span>团蜂</span><span>平台反馈意见。如反馈意见得以采纳,</span
+      ><span>团蜂</span><span>平台将酌情调整变更事项。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >如您对已生效的变更事项仍不同意的,您应当于变更事项确定的生效之日起停止使用</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台服务,变更事项对您不产生效力;如您在变更事项生效后仍继续使用</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台服务,则视为您同意已生效的变更事项。</span
+      >
+    </p>
+    <h4 style="background-color: #ffffff; line-height: 12pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >八、 通知</span
+      >
+    </h4>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >8.1有效联系方式</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>您在注册成为</span><span>团蜂</span><span>平台用户,并接受</span
+      ><span>团蜂</span><span>平台服务时,您应该向</span><span>团蜂</span
+      ><span
+        >平台提供真实有效的联系方式(包括您的电子邮件地址、联系电话、联系地址等),对于联系方式发生变更的,您有义务及时更新有关信息,并保持可被联系的状态。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>您在注册</span><span>团蜂</span><span>平台用户时生成的用于登陆</span
+      ><span>团蜂</span
+      ><span>平台接收站内信、系统消息也作为您的有效联系方式。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台将向您的上述联系方式的其中之一或其中若干向您送达各类通知,而此类通知的内容可能对您的权利义务产生重大的有利或不利影响,请您务必及时关注。</span
+      >
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >8.2 通知的送达</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>团蜂</span
+      ><span
+        >平台通过上述联系方式向您发出通知,其中以电子的方式发出的书面通知,包括但不限于在</span
+      ><span>团蜂</span
+      ><span
+        >平台公告,向您提供的联系电话发送手机短信,向您提供的电子邮件地址发送电子邮件,在发送成功后即视为送达;以纸质载体发出的书面通知,按照提供联系地址交邮后的第五个自然日即视为送达。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>对于在</span><span>团蜂</span
+      ><span
+        >平台上因交易活动引起的任何纠纷,您同意司法机关(包括但不限于人民法院)可以通过手机短信、电子邮件等现代通讯方式或邮寄方式向您送达法律文书(包括但不限于诉讼文书)。您指定接收法律文书的手机号码、电子邮箱等联系方式为您在</span
+      ><span>团蜂</span
+      ><span
+        >平台注册、更新时提供的手机号码、电子邮箱联系方式,司法机关向上述联系方式发出法律文书即视为送达。您指定的邮寄地址为您的法定联系地址或您提供的有效联系地址。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        >您同意司法机关可采取以上一种或多种送达方式向您达法律文书,司法机关采取多种方式向您送达法律文书,送达时间以上述送达方式中最先送达的为准。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        >您同意上述送达方式适用于各个司法程序阶段。如进入诉讼程序的,包括但不限于一审、二审、再审、执行以及督促程序等。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        >你应当保证所提供的联系方式是准确、有效的,并进行实时更新。如果因提供的联系方式不确切,或不及时告知变更后的联系方式,使法律文书无法送达或未及时送达,由您自行承担由此可能产生的法律后果。</span
+      >
+    </p>
+    <h4 style="background-color: #ffffff; line-height: 12pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >九、 协议的终止</span
+      >
+    </h4>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >9.1 终止的情形</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【用户发起的终止】</span
+      ><span>您有权通过以下任一方式终止本协议:</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(一)变更事项生效前您停止使用并明示不愿接受变更事项的;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(二)您明示不愿继续使用</span><span>团蜂</span
+      ><span>平台服务,且符合</span><span>团蜂</span
+      ><span>平台终止条件的。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台发起的终止】</span
+      ><span>出现以下情况时,</span><span>团蜂</span
+      ><span>平台可以本协议第八条的所列的方式通知您终止本协议:</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(一)您违反本协议约定,</span><span>团蜂</span
+      ><span>平台依据违约条款终止本协议的;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        >(二)您盗用他人账户、发布违禁信息、骗取他人财物、引导线下交易、扰乱市场秩序、采取不正当手段谋利等行为,</span
+      ><span>团蜂</span><span>平台依据</span><span>团蜂</span
+      ><span>平台规则对您的账户予以查封的;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(三)除上述情形外,因您多次违反</span><span>团蜂</span
+      ><span>平台规则相关规定且情节严重,</span><span>团蜂</span
+      ><span>平台依据</span><span>团蜂</span
+      ><span>平台规则对您的账户予以查封的;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(四)您的账户被</span><span>团蜂</span
+      ><span>平台依据本协议回收的;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(五)其它应当终止服务的情况。</span>
+    </p>
+    <h5 style="background-color: #ffffff; line-height: 12pt; margin: 7.5pt 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >9.2 协议终止后的处理</span
+      >
+    </h5>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【用户信息披露】</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >本协议终止后,除法律有明确规定外,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台无义务向您或您指定的第三方披露您账户中的任何信息。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台权利】</span
+      ><span>本协议终止后,</span><span>团蜂</span
+      ><span>平台仍享有下列权利:</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(一)继续保存您留存于</span><span>团蜂</span
+      ><span>平台的本协议第五条所列的各类信息;</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span>(二)对于您过往的违约行为,</span><span>团蜂</span
+      ><span>平台仍可依据本协议向您追究违约责任。</span>
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【交易处理】</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >本协议终止后,对于您在本协议存续期间产生的交易订单,</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >平台可通知交易相对方并根据交易相对方的意愿决定是否关闭该等交易订单;如交易相对方要求继续履行的,则您应当就该等交易订单继续履行本协议及交易订单的约定,并承担因此产生的任何损失或增加的任何费用。</span
+      >
+    </p>
+    <h4 style="background-color: #ffffff; line-height: 12pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 12pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >十、 法律适用、管辖与其他</span
+      >
+    </h4>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【法律适用】</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-decoration: underline;
+          text-transform: none;
+        "
+        >本协议之订立、生效、解释、修订、补充、终止、执行与争议解决均适用中华人民共和国大陆地区法律;如法律无相关规定的,参照商业惯例及/或行业惯例。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【管辖】您因使用</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台服务所产生及与</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台服务有关的争议,由</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >团蜂</span
+      ><span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >平台与您协商解决。协商不成时,任何一方均可向深圳国际仲裁院提起仲裁。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【可分性】</span
+      ><span
+        >本协议任一条款被视为废止、无效或不可执行,该条应视为可分的且并不影响本协议其余条款的有效性及可执行性。</span
+      >
+    </p>
+    <p style="background-color: #ffffff; line-height: 22.5pt; margin: 0pt">
+      <span
+        style="
+          background-color: #ffffff;
+          color: #333333;
+          font-family: 微软雅黑;
+          font-size: 9pt;
+          font-style: normal;
+          font-weight: bold;
+          text-transform: none;
+        "
+        >【最终解释权】</span
+      ><span>团蜂</span
+      ><span
+        >平台对本服务协议包括基于本服务协议制定的各项规则拥有最终解释权</span
+      >
+    </p>
+    <p style="margin: 0pt; orphans: 0; text-align: justify; widows: 0">
+      <span style="font-family: Calibri; font-size: 10.5pt">&#xa0;</span>
+    </p>
+  </view>
+</template>
+
+<script>
+export default {
+  data() {
+    return {
+      scrollTop: 0,
+      tabbar: null,
+    }
+  },
+  methods: {
+    handleBack() {
+      if (this.tabbar) {
+        uni.switchTab({
+          url: this.tabbar,
+        })
+      } else {
+        uni.redirectTo({
+          url: '/pages/login/login',
+        })
+      }
+    },
+  },
+
+  onLoad(params) {
+    this.tabbar = params.from
+  },
+
+  onPageScroll(e) {
+    this.scrollTop = e.scrollTop
+  },
+}
+</script>
+
+<style lang="less" scoped>
+.container {
+  padding: 20upx;
+}
+</style>

+ 1 - 1
store/modules/auth.js

@@ -404,7 +404,7 @@ export default {
 				// 			resolve(res.data)
 				try {
 					const cardInfo = await store.dispatch('user/getElectronicCardAction')
-					await store.dispatch('user/getElectronicLabelAction', { id: cardInfo.enterpriseUserId })
+					if (cardInfo.enterpriseUserId) await store.dispatch('user/getElectronicLabelAction', { id: cardInfo.enterpriseUserId })
 					resolve()
 				} catch (err) {
 					reject(err)

+ 32 - 59
store/modules/user.js

@@ -10,67 +10,39 @@ export default {
 	state() {
 		return {
 			electronicCardInfo: {
-				enterpriseUserId: 1, // 名片ID
-				buyerId: 999, // 用户ID
-				name: '昵称', // 昵称
-				sex: '1', // 1男2女
-				birthday: '2024-09-03', // 生日
-				phone: '13288888888', // 注册手机号
-				headImage: 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/微信图片_20231102095245.jpg', // 头像图片
-				state: 1, // 是否启用1-是,0-否
-				ifBlack: 1, // 是否加入黑名单 1-是0-否
-				isEnterprise: 1, // 是否企业 1-是 0-否
-				enterpriseName: '企业名称', // 企业名称
-				enterpriseDuties: '职务', // 职务
-				enterpriseDepartment: '部门', // 部门
-				address: '地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址', // 地址
-				enterpriseHeadImage: 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/微信图片_20231102095245.jpg', // 企业头像
-				mailbox: '邮箱', // 邮箱
-				weChatSignal: '微信号', // 微信号
-				landline: '座机', // 座机
-				personalProfile: '个人简介', // 个人简介
-				label: '1,2,3,4,5,6', // 用户标签ID (1,2,3,4,5,6)
-				pictureIntroduction: 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/1705998424162-22(1)(1).png,https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/1704700771949-79b9dbdacaa2a34efa5d1f62f02b614.png,https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/1705540309535-124.jpg', // 图片介绍
-				styleId: 1, // 样式ID
-				createTime: '创建时间',
-				updateTime: '更新时间'
+				// enterpriseUserId: 1, // 名片ID
+				// buyerId: 999, // 用户ID
+				// name: '昵称', // 昵称
+				// sex: '1', // 1男2女
+				// birthday: '2024-09-03', // 生日
+				// phone: '13288888888', // 注册手机号
+				// headImage: 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/微信图片_20231102095245.jpg', // 头像图片
+				// state: 1, // 是否启用1-是,0-否
+				// ifBlack: 1, // 是否加入黑名单 1-是0-否
+				// isEnterprise: 1, // 是否企业 1-是 0-否
+				// enterpriseName: '企业名称', // 企业名称
+				// enterpriseDuties: '职务', // 职务
+				// enterpriseDepartment: '部门', // 部门
+				// address: '地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址地址', // 地址
+				// enterpriseHeadImage: 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/微信图片_20231102095245.jpg', // 企业头像
+				// mailbox: '邮箱', // 邮箱
+				// weChatSignal: '微信号', // 微信号
+				// landline: '座机', // 座机
+				// personalProfile: '个人简介', // 个人简介
+				// label: '1,2,3,4,5,6', // 用户标签ID (1,2,3,4,5,6)
+				// pictureIntroduction: 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/1705998424162-22(1)(1).png,https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/1704700771949-79b9dbdacaa2a34efa5d1f62f02b614.png,https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/1705540309535-124.jpg', // 图片介绍
+				// styleId: 1, // 样式ID
+				// createTime: '创建时间',
+				// updateTime: '更新时间'
 			},
 			electronicLabelInfo: [
-				{
-					labelId: '标签Id',
-					labelName: '标签名称',
-					enterpriseUserId: '关联名片ID',
-					createTime: '创建时间',
-					updateTime: '更新时间'
-				},
-				{
-					labelId: '标签Id',
-					labelName: '标签名称',
-					enterpriseUserId: '关联名片ID',
-					createTime: '创建时间',
-					updateTime: '更新时间'
-				},
-				{
-					labelId: '标签Id',
-					labelName: '标签名称',
-					enterpriseUserId: '关联名片ID',
-					createTime: '创建时间',
-					updateTime: '更新时间'
-				},
-				{
-					labelId: '标签Id',
-					labelName: '标签名称',
-					enterpriseUserId: '关联名片ID',
-					createTime: '创建时间',
-					updateTime: '更新时间'
-				},
-				{
-					labelId: '标签Id',
-					labelName: '标签名称',
-					enterpriseUserId: '关联名片ID',
-					createTime: '创建时间',
-					updateTime: '更新时间'
-				}
+				// {
+				// 	labelId: '标签Id',
+				// 	labelName: '标签名称',
+				// 	enterpriseUserId: '关联名片ID',
+				// 	createTime: '创建时间',
+				// 	updateTime: '更新时间'
+				// }
 			]
 		}
 	},
@@ -90,6 +62,7 @@ export default {
 				if (!getStorageKeyToken()) return reject('缺少个人信息')
 				getIdEnterpriseUserApi({ id: getStorageUserId() })
 					.then((res) => {
+						console.log(res.data)
 						commit(CHNAGE_ELECTRONIC_CARD_INFO, res.data)
 						resolve(res.data)
 					})