Pārlūkot izejas kodu

Merge branch 'master' of http://8.136.199.33:3000/Karsa/raiwechat_link_h5 into crm15.5

cxmo 10 mēneši atpakaļ
vecāks
revīzija
b51f20a27f

+ 2 - 0
.env.development

@@ -3,6 +3,8 @@ VITE_APP_OUTDIR="raiwechat_link_h5"
 
 VITE_APP_CYGX_BASEAPIURL="http://8.136.199.33:8500/api"
 
+VITE_APP_MFYX_BASEAPIURL="http://8.136.199.33:8108/api"
+
 VITE_APP_HZYB_BASEAPIURL="https://ybpctest.hzinsights.com/api"
 
 VITE_APP_HZSL_BASEAPIURL="http://8.136.199.33:8608/api"

+ 2 - 0
.env.product

@@ -3,6 +3,8 @@ VITE_APP_OUTDIR="raiwechat_link_h5"
 
 VITE_APP_CYGX_BASEAPIURL="https://cygx.hzinsights.com/api"
 
+VITE_APP_MFYX_BASEAPIURL="https://mfyx.hzinsights.com/api"
+
 VITE_APP_HZYB_BASEAPIURL="https://yanbao.hzinsights.com/api"
 
 VITE_APP_HZSL_BASEAPIURL="https://openapi.hzinsights.com/api"

+ 2 - 0
.env.test

@@ -3,6 +3,8 @@ VITE_APP_OUTDIR="raiwechat_link_h5"
 
 VITE_APP_CYGX_BASEAPIURL="http://8.136.199.33:8500/api"
 
+VITE_APP_MFYX_BASEAPIURL="http://8.136.199.33:8108/api"
+
 VITE_APP_HZYB_BASEAPIURL="https://ybpctest.hzinsights.com/api"
 
 VITE_APP_HZSL_BASEAPIURL="http://8.136.199.33:8608/api"

+ 1 - 1
index.html

@@ -3,7 +3,7 @@
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover">
-    <title>弘则研究</title>
+    <title></title>
     <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
     <script src="/jquery-3.6.0.min.js"></script>
   </head>

+ 1 - 0
package.json

@@ -10,6 +10,7 @@
   "dependencies": {
     "@fullcalendar/core": "^5.10.1",
     "@fullcalendar/interaction": "^5.10.1",
+    "@fullcalendar/daygrid": "^5.10.1",
     "@fullcalendar/timegrid": "^5.10.1",
     "@fullcalendar/vue3": "^5.10.1",
     "@vant/touch-emulator": "^1.3.2",

+ 78 - 0
src/api/hzyb/forexCalendar.js

@@ -0,0 +1,78 @@
+//外汇日历表
+
+import {get,post} from './http'
+
+/**
+ * 获取基础指标详情
+ * @param {Object} params 
+ * @param {*} params.edb_info_id 指标id
+ * @param {*} params.date_type 默认10
+ * @param {*} params.start_date 默认空
+ * @param {*} params.end_date 默认空
+ * @param {*} params.start_year 默认空
+ * @returns 
+ */
+export const apiGetbaseEdbInfo=params=>{
+    return get('/edb_info/data',{...params,...{date_type:10,start_date:'',end_date:'',start_year:''}})
+}
+
+/**
+ * 获取预测指标详情
+ * @param {Object} params 
+ * @param {*} params.edb_info_id 指标id
+ * @param {*} params.date_type 默认10
+ * @param {*} params.start_date 默认空
+ * @param {*} params.end_date 默认空
+ * @param {*} params.start_year 默认5
+ * @param {*} params.chart_type 默认1
+ * @param {*} params.calendar 默认公历
+ * @returns 
+ */
+export const apiGetpredictEdbInfo=params=>{
+    return get('/predict_edb_info/data',{...params,...{date_type:10,start_date:'',end_date:'',start_year:5,chart_type:1,calendar:'公历'}})
+}
+
+/**
+     * 获取日期范围内事项列表
+     * @param {Object} params 
+     * @param {Number} params.chart_permission_id 品种ID
+     * @param {String} params.start_date 起始时间
+     * @param {String} params.end_date 终止时间
+     * @returns [{
+     *      Date:"2024-03-28",//事项日期
+     *      Matters:[],//事项详情
+     * }]
+     */
+export const apiGetCalendarEventList = (params)=>{
+    return get('/fe_calendar/matter/list',params)
+}
+
+/**
+ * 获取品种列表
+ * @param {*} params 
+ * @returns 
+ */
+export const apiGetPermissionList = (params)=>{
+    return get('/fe_calendar/permission/list',params)
+}
+
+/**
+ * 获取品种最新日历月份
+ * @param {Object} params 
+ * @param {Number} params.chart_permission_id 品种ID
+ * @returns 
+ */
+export const apiGetPermissionNewestDate = (params)=>{
+    return get('/fe_calendar/permission/latest_month',params)
+}
+
+/**
+     * 获取指定日期事项列表
+     * @param {Object} params 
+     * @param {Number} params.chart_permission_id 品种ID
+     * @param {String} params.matter_date "2024-03-29" 指定日期
+     * @returns
+     */
+export const apiGetDailyEventList = (params)=>{
+    return get('/fe_calendar/matter/detail',params)
+}

+ 25 - 0
src/api/hzyb/report.js

@@ -74,4 +74,29 @@ export const apiPublicBannerMark = params=>{
  */
 export const apiPublicBannerList = params=>{
     return get('/public/banner/list',params)
+}
+
+/**
+ * banner历史图列表
+ * @returns 
+ */
+export const bannerHistoryList = params=>{
+    return get('/public/banner_history/list',params)
+}
+
+/**
+ * banner图获取报名二维码
+ * @returns 
+ */
+export const getBannerQrcode = params=>{
+    return get('/public/banner/get_qrcode',params)
+}
+
+
+/**
+ * banner图详情
+ * @returns 
+ */
+export const getBannerDetail = params=>{
+    return get('/public/banner/detail',params)
 }

+ 84 - 0
src/api/mfyx/api.js

@@ -0,0 +1,84 @@
+import { get, post } from "./http";
+
+/* 权益链接 */
+export const RaiApi = {
+  /* 获取详情 */
+  reportDtl: (params) => {
+    return get("/article/detail", params);
+  },
+  reportDtlTwo: (params) => {
+    return get("/tactics/detail", params);
+  },
+  /* 查看报告 */
+  lookReport: (params) => {
+    return get("/article/look/detail", params);
+  },
+  /* 收藏 ArticleId*/
+  collectRpt: (params) => {
+    return post("/article/collect", params, 1);
+  },
+  /* 申请访谈 ArticleId*/
+  applyRpt: (params) => {
+    return post("/article/interview/apply", params, 1);
+  },
+  /* 关注作者/取消关注作者 接口 DepartmentId*/
+  fllowDepartment: (params) => {
+    return post("/report/fllowDepartment", params, 1);
+  },
+  /* 下载PDF打水印接口*/
+  articlePdfwatermark: (params) => {
+    return get("/article/pdfwatermark", params, "下载");
+  },
+  /* 页面复制监听*/
+  pageHistoryCopy: (params) => {
+    return post("/config/pageHistory", params, 1);
+  },
+  // 用户的文章活动,关注/取消关注产业
+  userIndustryFollow: (params) => {
+    return post("/industry/follow", params);
+  },
+  /**
+   * 约访专家
+   * @param {} params:{number ArticleId:ArticleId}
+   * @returns
+   */
+  appointmentExpert: (params) => {
+    return post("/article/applyAppointmentExpert", params);
+  },
+};
+export const FreeButton = {
+  /*获取是否展示免费试用按钮接口*/
+  userIsShowFreeButton: (params) => {
+    return get("/user/isShow/freeButton", params);
+  },
+  /* 隐藏当天的按钮接口 */
+  userFreeButtonUpdate: (params) => {
+    return post("/user/freeButton/update", params);
+  },
+  /*分享的时候判断是不是弘则的手机号*/
+  userIsShowShare: (params) => {
+    return get("/user/isShow/share", params);
+  },
+  /*获取权限弹窗是否展示免费月卡接口*/
+  userIsShowAlert: (params) => {
+    return get("/user/isShow/alert", params);
+  },
+  /* 页面复制监听*/
+  researcharticleHotList: (params) => {
+    return get("/research/article/hotList", params, 1);
+  },
+  /* 收藏 ArticleId*/
+  collectRpt: (params) => {
+    return post("/article/collect", params, 0);
+  },
+};
+/* 产品内测 详情 */
+export const inrernalApi = {
+  getProductInteriorDetail: (params) => {
+    return get("/product_interior/detail", params, 0);
+  },
+  /* 新增音频放记录 报告 */
+  reportVoiceHistoryAdd: (params) => {
+    return post("/activity/videoHistory/add", params);
+  },
+};

+ 60 - 0
src/api/mfyx/http.js

@@ -0,0 +1,60 @@
+"use strict";
+import axios from "axios";
+import {Toast} from 'vant'
+
+// 请求数
+let LOADINGCOUNT = 0;
+let LOADING;
+
+let config = {
+  baseURL: import.meta.env.VITE_APP_MFYX_BASEAPIURL,
+  timeout: 60 * 1000, // Timeout
+};
+
+const _axios = axios.create(config);
+
+_axios.interceptors.request.use(
+  function (config) {
+    // Do something before request is sent
+    let auth = localStorage.getItem("access_token") || "";
+    if (auth) {
+      config.headers.Authorization = auth;
+    }
+
+    return config;
+  },
+  function (error) {
+    // Do something with request error
+    return Promise.reject(error);
+  }
+);
+
+// Add a response interceptor
+_axios.interceptors.response.use(
+  function (response) {
+    
+    return response.data;
+  },
+  function (error) {
+    // Do something with response error
+    return Promise.reject(error);
+  }
+);
+
+/**
+ * 导出get请求方法
+ * @url 请求地址
+ * @params get请求参数
+ */
+export const get = (url, params) => {
+  return _axios.get(url, { params })
+};
+
+/**
+ * 导出post请求方法
+ * @url 请求地址
+ * @params post请求参数
+ */
+export const post = (url,params) => {
+  return _axios.post(url, params)
+};

+ 22 - 0
src/router/cygx/index.js

@@ -4,6 +4,11 @@ export const cygxRoutes = [
     name: "raiReportDtl",
     component: () => import("@/views/cygx/raiReportDtl.vue"),
   },
+  {
+    path: "/yxReportDtl",
+    name: "yxReportDtl",
+    component: () => import("@/views/cygx/yxReportDtl.vue"),
+  },
   {
     path: "/strategyReport",
     name: "strategyReport",
@@ -31,4 +36,21 @@ export const cygxRoutes = [
       },
     ],
   },
+  {
+    path: "/agreement",
+    name: "agreement",
+    component: () => import("@/App.vue"),
+    children: [
+      {
+        path: "privacy",
+        name: "privacy",
+        component: () => import("@/views/cygx/Agreement/privacy.vue"),
+      },
+      {
+        path: "service",
+        name: "service",
+        component: () => import("@/views/cygx/Agreement/service.vue"),
+      },
+    ],
+  },
 ];

+ 34 - 1
src/router/hzyb/index.js

@@ -67,5 +67,38 @@ export const hzybRoutes=[
                 component:() => import("@/views/hzyb/report/PreviewPDF.vue")
             }
         ]
-    }
+    },
+    {
+        path:'/hzyb/surveyHistory',
+        name:'surveyHistory',
+        component: () => import("@/views/hzyb/report/surveyHistory.vue"),
+    },
+    //外汇日历模块
+    {
+        path:'/hzyb/forex',
+        name:'hzybForex',
+        component:()=>import("@/App.vue"),
+        children:[
+            {
+                path:'transindex', //iframe嵌套页
+                name:'hzybTransForexIndex',
+                component:()=> import("@/views/hzyb/forexCalendar/transIndex.vue")
+            },
+            {
+                path:'index', //日历页面
+                name:'hzybForexIndex',
+                component:()=> import("@/views/hzyb/forexCalendar/Index.vue")
+            },
+            {
+                path:'detail', //图表详情页
+                name:'hzybForexDetail',
+                component:()=> import("@/views/hzyb/forexCalendar/Detail.vue")
+            }
+        ]
+    },
+    {
+        path:'/hzyb/surveyDetail',
+        name:'surveyDetail',
+        component: () => import("@/views/hzyb/report/surveyDetail.vue"),
+    },
 ]

+ 722 - 0
src/views/cygx/Agreement/privacy.vue

@@ -0,0 +1,722 @@
+<script setup>
+document.title = "研选平台服务协议";
+</script>
+
+<template>
+  <!-- 服务协议 -->
+  <div class="container-privacy">
+    <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">研选平台服务协议</span></strong>
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">一、特别提示</span></strong>
+    </h2>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >1、《研选平台服务协议》(以下简称&ldquo;本协议&rdquo;)是用户(以下或称&ldquo;您&rdquo;)与察研科技(其定义详见本协议第二条第1款)之间签署的具有法律约束力的协议。本协议为适用于察研科技提供的所有服务(以下简称&ldquo;服务&rdquo;或&ldquo;察研科技提供的服务&rdquo;)的基础性、通用性的协议,您注册研选平台账号和/或使用察研科技提供的任何服务均受本协议之约束。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">2、察研科技特别提示您:</span></p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >(1)请您务必审慎阅读本协议的全部条款,特别是免除或者限制察研科技的责任的条款、排除或者限制您的权利的条款</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">,以及</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >约定适用法律、争议解决方式和管辖的条款等,这些条款可能以黑体加粗、设置下划线等方式被突出标示;</span
+        ></strong
+      >
+    </p>
+
+    <p style="margin-left: 0pt; text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(2)请您务必审慎选择是否接受本协议。如果您在相关页面点击确认本协议</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">或</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">在注册/登录过程中作出(或被察研科技视为作出)同意本协议的意思表示</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">或</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >在察研科技以合理方式向您展示/提示/通知本协议或本协议的任何更新版本后仍继续使用察研科技提供的服务</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">或</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >以可能的其他方式作出(或被察研科技视为作出)同意本协议的意思表示,均代表您完全同意本协议的全部条款;</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >(3)本协议的效力范围及于察研科技提供的一切产品和服务,用户在享受任何单项服务时,应当受本协议的约束</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(4)如果您对本协议的任何部分有任何异议,您应当立即停止使用察研科技提供的服务。</span></strong>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >3、为了给您提供更好的服务,察研科技的业务可能不时发生变化,本协议也可能随之作出调整。察研科技会通过在研选平台(其定义详见本协议第二条第2款)发布更新版本或以其他方式提示您相关内容的更新,也请您访问研选平台以便及时了解最新的协议文本;但您理解并同意,察研科技无义务对您或任何特定用户作出特定通知并就相关内容的更新取得您或任何特定用户的同意</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">。</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >在前述情况下,如果您继续使用察研科技提供的服务,即表示您同意接受修订后的协议文本并愿意受其约束。如果您对更新后的服务条款有任何异议,您应当立即停止使用察研科技提供的服务。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >4、如果您未注册研选平台账号,将导致您不能成为研选平台的用户,但这并不会导致察研科技禁止您访问研选平台并使用基本的浏览或信息搜索功能。然而,在任何情形下,您都充分理解并完全同意,察研科技无意且不应被认定为向任何未注册研选平台账号的对象提供任何服务或与之建立任何商业关系。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">5、本协议除正文外,还包含以下内容:</span></p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">(1)《研选平台隐私政策》;</span></p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >(2)您在使用研选平台的特定服务时,该等服务可能会另有单独适用的相关协议、政策、指引、制度或规则等。所有研选平台已经发布的或将来可能发布的涉及相关业务的协议、政策、指引、制度或规则等,均构成对本协议的有效补充,与本协议具有同等法律效力,对您具有法律上的约束力。</span
+      >
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">二、定义与释义</span></strong>
+    </h2>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">1、本协议所称&ldquo;察研科技&rdquo;是指研选平台的经营者上海察研科技有限公司及现有</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">和</span><span style="font-family: 宋体; line-height: 150%; font-size: 16px">将来设立的相关关联公司的单称或合称。</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">2、本协议所称&ldquo;研选平台&rdquo;包括但不限于查研观向微信小程序,以及将来增加的网站及对应的移动客户端</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">,以及</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">相关的微信公众号或其他公众号平台或其他小程序</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">,以及</span><span style="font-family: 宋体; line-height: 150%; font-size: 16px">可能不时涉及的其他互联网媒介等。</span>
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">三、用户注册要求</span></strong>
+    </h2>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">根据相关</span><span style="font-family: 宋体; line-height: 150%; font-size: 16px">法律法规</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">规定,结合研选平台服务的需求,用户注册时需遵守以下条款:</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >1、根据法律法规,您在注册账号时应当提供真实身份信息,不得冒用他人身份(包括不限于冒用他人姓名或肖像、冒用其他公司或机构的名称、盗用他人手机号码或第三方账号、盗用他人邮箱、冒用他人肖像或社会身份等)。如果察研科技发现您未提供真实身份信息或者您冒用他人身份,察研科技将终止为您提供服务。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">2、提供完整、真实、准确、最新的个人或机构资料,如注册信息有变,应及时更新。</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >3、您在注册研选平台账号,完善账号昵称、头像、简介等信息时,不得以任何形式违反法律法规或侵害他人合法权益,不得出现违法和不良信息;否则,察研科技有权随时不经通知对您的研选平台账号进行处理。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">在账号头像、昵称及注册信息中不得出现违法违规信息,包括但不限于以下信息:</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">(1)冒用国家名称、中央国家机关名称和地方各级党政机关名称的;</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">(2)冒用党和国家领导人或其他公众人物姓名、头衔等信息的;</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">(3)冒用社会公共机构名称、社会名人姓名和媒体名称的;</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">(4)冒用外国国家名称、国际组织名称、境外政要姓名、境外媒体名称的。</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >察研科技保留对于用户昵称的审核权。如察研科技认为用户昵称出现有悖于社会公德、违反公序良俗、损害社会及他人利益的词语,察研科技有权对该用户昵称予以修改、标注或者禁止使用。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">4、用户同意,其提供的真实、准备、合法的研选平台账号注册资料是作为认定用户与研选平台账号关联性以及用户身份的唯一证据。</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">如用户提供的资料不准确、不真实、不合法,察研科技保留结束用户使用研选平台各项服务的权利。</span>
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">四、用户账号、密码安全性</span></strong>
+    </h2>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >1、您完成研选平台账号申请注册手续后,您的研选平台账号由您使用、维护并独立承担全部责任,账号禁止赠与、借用、租用、转让或售卖等。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >2、研选平台账号密码由您自行设定。察研科技特别提示您应妥善保管您的账号和密码。您需要采取特定措施保护您的账号安全,包括但不限于妥善保管研选平台账号与密码、定期更改密码等措施。您同意在任何情况下不向他人透露账号或密码信息。因您保管不善可能导致账号被他人使用(包括但不限于遭受盗号、密码失窃)或信息数据泄漏而对您本身、察研科技或第三方造成损害,责任由您自行承担,察研科技不承担任何责任。您理解并同意,在您未进行投诉或提出账号申诉等方式明确告知研选平台账号被他人使用或信息数据泄漏等情况并提供相关证明材料前,察研科技有理由相信该账号行为是您使用账号的行为。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >3、在您怀疑他人在使用您的账号或密码时,您同意立即通知察研科技。如果您当前使用的研选平台账号并不是您初始申请注册的或者通过察研科技提供的其他途径获得的,但您却知悉该账号当前的密码,您不得用该账号登录或进行任何操作,并请您在第一时间通知察研科技或者该账号的初始申请注册主体。如果察研科技发现您并非该账号的初始申请注册主体,察研科技有权在未经通知的情况下终止您使用该账号。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >4、您理解并同意,为保护您及其他用户的数据安全,防止用户信息泄露、毁损、篡改或者丢失,察研科技有权对您接入的信息系统实行接入审查,包括但不限于技术水平审查、安全水平审查、主体资质审查等,并根据审查结果向您提出防入侵、防病毒等措施建议。如果您的信息系统仍无法符合保护用户数据安全的要求,察研科技有权拒绝或终止向您提供服务。</span
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >5、如果您违反法律法规、本协议以及专项规则的规定,察研科技有权进行独立判断并随时限制、冻结或终止您对研选平台账号的使用,且根据实际情况决定是否恢复使用。由此给您带来的损失(包括但不限于通信中断,用户资料及相关数据清空等),由您自行承担。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >6、如果您的研选平台账号被盗、密码遗忘或因其他原因导致无法正常登录,您可以按照研选平台的申诉途径进行申诉。察研科技将在可行的范围内为您的申诉提供便利,但并不承诺您一定能通过申诉找回账号。</span
+      >
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">五、用户使用规则</span></strong>
+    </h2>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >1、察研科技致力于为您提供文明健康、规范有序的网络环境,您对察研科技提供的服务的使用必须遵守法律法规。您不得利用研选平台账号或察研科技提供的服务从事如下行为:</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(1)发布、传送、传播、储存违反国家法律法规禁止的内容:</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">a.违反宪法确定的基本原则的;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">b.危害国家安全,泄露国家秘密,颠覆国家政权,破坏国家统一的;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">c.损害国家荣誉和利益的;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">d.煽动民族仇恨、民族歧视,破坏民族团结的;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">e.破坏国家宗教政策,宣扬邪教和封建迷信的;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">f.散布谣言,扰乱社会秩序,破坏社会稳定的;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">g.散布淫秽、色情、赌博、暴力、恐怖或者教唆犯罪的;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">h.侮辱或者诽谤他人,侵害他人合法权益的;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">i.煽动非法集会、结社、游行、示威、聚众扰乱社会秩序的;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">j.以非法民间组织名义活动的;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">k.含有法律、行政法规禁止的其他内容的。</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(2)发布、传送、传播、储存侵害他人名誉权、肖像权、知识产权、商业秘密等合法权利的内容;</span></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(3)发布、传送、传播、储存涉及他人隐私、个人信息或资料的内容;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(4)发布、传送、传播骚扰信息、广告信息、垃圾信息或含有任何性或性暗示信息的内容;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(5)发布、传送、传播谣言、虚假信息或其他含有不实信息的内容;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >(6)发布、传送、传播、储存其他违反法律法规、政策及公序良俗、社会公德或干扰研选平台正常运营和侵犯其他用户或第三方合法权益内容的信息。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >2、您承诺:遵守法律法规、社会主义制度、国家利益、公民合法利益、社会公共秩序、社会道德风尚和信息真实性等七条底线的要求。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >3、您理解并同意:您发表在研选平台上的任何内容,察研科技可以根据自己标准和立场进行管理或者删除,而无需提前或者事后向您说明;管理或者删除的标准,也完全由察研科技独立制定,无需征求您意见,也无需向您公开。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >4、如果察研科技发现您通过研选平台发布、传送、传播、储存的信息属于本条第1款第(1)项及第2款所列内容之一,察研科技有义务依法立即停止传输,保存有关记录,进行相应处理并向国家有关机关报告。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >5、您仅限于在研选平台内使用察研科技提供的信息、数据等内容,任何以破解、转译、转录等非法手段将平台发布的内容与平台分离的行为,察研科技保留追究侵权人的法律责任及索赔的权利。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >6、任何以盗窃、利用系统漏洞、通过任何非察研科技授权途径获得的信息、数据等内容,察研科技有权立即终止服务,所有产生的损失及责任(包括直接经济损失、商誉损失及赔偿金</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">和</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">解款、律师费、公证费、诉讼费等间接经济损失等全部损失)由行为人自行承担。</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >7、使用研选平台或参加相关线下活动时,您应通过察研科技公布/授权的方式进行,不得通过任何其他渠道、途径、方式非法获取的平台服务或参加活动获取资讯,一经察研科技发现立即终止服务,察研科技有权立即就行为人获取的相关服务做出删除、取消、清零等处理,所有产生的损失及责任由行为人自行承担。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >8、对察研科技提供的信息、数据、纪要、报告等内容,未经察研科技书面许可,您不得再次公开发布、转载或向任何第三方提供任何信息</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">、</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">数据等内容。</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >9、您不得以任何方式提供察研科技提供的平台账号给他人使用,包括但不限于以转让、出租、借用、分享、出售等方式提供给他人作包括但不限于分享、上传、浏览、下载、存储等使用。否则,因此产生任何法律后果及责任均由行为人自行承担,且察研科技有权终止服务。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >10、因您的原因导致的任何纠纷、责任等,以及您或您的研选平台账号违反法律法规或本协议约定引发的任何后果,均由您独立承担全部责任,与察研科技无关;因此给察研科技、其他用户或第三方造成损害的,您应当承担完全的赔偿责任。</span
+        ></strong
+      >
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">六、服务</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">费用</span></strong>
+    </h2>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >1、您理解并同意察研科技有权根据实际需要对本服务的服务内容、服务方式、是否收费及收费标准等进行调整,在相关服务页面或以其他合理方式进行通知,并在通知后生效。您继续使用相关服务,视为您同意察研科技的前述调整。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-weight: normal; font-size: 16px">2、您理解并同意察研科技有权决定新增服务/产品是否收费,您有权接受或拒绝该服务/产品。</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-weight: normal; font-size: 16px"
+        >3、如您使用察研科技的收费服务/产品,则您应当按照察研科技的收费规定支付费用;如您未支付费用或者欠费,则察研科技有权暂停或停止向您提供此项服务/产品。</span
+      >
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">七</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">、服务变更、中断或终止</span></strong>
+    </h2>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">1、受限于互联网的固有缺陷(包括但不限于软硬件故障、网络通信线路故障、恶意网络攻击、不可抗力</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">或</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >其他察研科技无法控制的情形),您同意察研科技有权依据自身判断在必要时变更、中断或终止部分或全部服务,如果发生此等情形,察研科技将尽可能及时通过公告、系统通知、私信、短信或察研科技认为合理的其他方式向受影响的用户进行通知或提示。</span
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >2、您同意,察研科技需要定期或不定期对研选平台和相关软硬件进行维护、升级,或基于其他合理原因需要暂停部分或全部服务,如果因此类情况而造成服务在察研科技认为合理的时间内的中断或不稳定,察研科技无需为此承担任何责任。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >3、如果发生下列任何一种情形,察研科技有权随时中断或终止向您提供部分或全部服务而无需对您或任何第三方承担任何责任,由此造成的损失完全由您自行承担:</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(1)您提供的个人资料不真实;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(2)您违反法律法规、监管要求或本协议;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(3)您在使用收费服务时未按规定为其所使用的收费服务支付相关服务费用;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >(4)您侵犯个人、企业事业单位或社会团体的合法权益,包括但不限于专利权、著作权、商标权,或姓名权、名称权、名誉权、荣誉权、肖像权、隐私权等;</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(5)您损害监管部门、国家机关及政府形象;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(6)您以任何方式损害察研科技的商誉或信誉等合法权益;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(7)察研科技有其他合理理由认为需要中断或终止的。</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">4、您同意,您与察研科技的服务关系终止后,察研科技仍享有下列权利:</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >(1)继续保存您未及时删除的注册信息及您使用察研科技提供的服务期间发布的所有信息至法律规定的记录保存期满;</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >(2)您在使用察研科技提供的服务期间存在违法行为或违反本协议和/或规则的行为的,察研科技仍可依据本协议向您主张权利、追究责任。</span
+        ></strong
+      >
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">八</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">、知识产权及版权处理&nbsp;</span></strong>
+    </h2>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >1、研选平台的内容(包括但不限于界面设计、版面框架、文字、音频、视频、图片或其他资料等)等知识产权归察研科技所有。除另有约定外,研选平台的软件、系统等的著作权、专利权及其他知识产权归察研科技所有。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >2、您使用察研科技提供的服务在平台上发布的文字、图片、图表等任何内容均应由您原创或已获得合法授权并且该内容不会侵犯任何第三方的合法权益。如有第三方声称您发布的内容侵犯了第三方的知识产权或其他权利、并向察研科技提供了相应的证明材料或说明(察研科技将对第三方提供的证明材料或说明进行合理的形式审查,但在察研科技的合法权限和合理能力范围内,察研科技可能无法实质审查相应内容是否确实侵权或确实不侵权,无论察研科技最终作出何种处理措施,您均理解并同意,察研科技无需为此向您承担任何责任。),察研科技有权基于自身判断对可能涉嫌侵权的内容作删除等处理,并采取包括但不限于关停账号等措施对您进行惩罚;同时,侵权责任由信息发布主体自行承担,察研科技不承担任何责任。对于因您的原因造成第三方向察研科技主张权利,由察研科技对外承担责任的,察研科技有权全额向您进行追偿。</span
+      >
+    </p>
+
+    <p style="text-indent: 21pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">3、</span
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+          >为了促进知识的分享和传播,您在研选平台上发表的全部内容,授予察研科技免费的、永久的、不可撤销的、非独家的使用许可。察研科技有权将该内容用于其各种形态的产品和服务商,包括但不限于部分或者全部地复制、修改、改编、翻译、组装、分拆、推广、分发、出版等。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 21pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-size: 16px">其中,</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+          >您基于察研科技提供的专家服务形成的相关纪要、观点报告等,经察研科技审核后发表于研选平台中(察研科技可对内容进行适当调整,修改),相关知识产权归察研科技所有。且上述纪要、观点报告等仅可发表于研选平台中,未经察研科技书面许可不得擅自发表于研选平台以外的任何其他地方。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">4、您同意许可察研科技视具体情况就任何主体侵犯您权益的事宜进行维权,包括但不限于发送侵权函件、提起诉讼、申请仲裁</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">,以及</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >其他合理措施等,察研科技无需再向您单独获得授权。本协议已经构成《中华人民共和国著作权法》第二十五条所规定的书面协议,其效力及于用户在察研科技发布的任何受著作权法保护的内容,无论该内容形成于本协议签订前还是本协议签订后。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >5、察研科技尊重他人合法权益(包括知识产权、名誉权、商誉权等),呼吁您也尊重他人合法权益。如果您违反法律法规的禁止性规定、对他人的合法权益或公众利益造成了侵害,察研科技将依照法律法规的规定,或在适当的情形下,依本协议或其相关规定,删除或屏蔽特定内容直至终止您对研选平台账号的使用。如果您认为用户通过研选平台上传、发布的内容侵犯了您的合法权益,请您联系察研科技相关工作人员</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">并</span><span style="font-family: 宋体; line-height: 150%; font-size: 16px">提交相关材料,察研科技将依法进行处理。</span>
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">九</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">、免责声明</span></strong>
+    </h2>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >1、您理解并同意:察研科技所提供的任何信息(包括但不限于察研科技官方提供的、察研科技用户发布的、察研科技邀请的专家提供的),察研科技并不对其准确性、真实性、可用性、安全性、完整性、正当性做出保证,您应当自行决定是否采纳并自行承担相应的责任。察研科技不对您因使用察研科技提供的任何信息做出的任何决策承担责任。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >也不表明察研科技证实其描述或赞同其观点。所有内容仅供参考,不构成投资建议或者其他实际的操作意见,用户据此操作所造成的后果自行负责。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >2、您理解并同意:察研科技不保证服务一定能满足用户的要求,也不保证服务不会中断,对服务的及时性、准确性不</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">做</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >保证。您使用察研科技提供的服务所存在或导致的风险将完全由您自己承担;因您使用察研科技提供的服务而产生的一切后果也由您自己承担,察研科技对您不承担任何责任,该等风险或后果包括但不限于:</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >(1)由于地震、台风、洪水、火灾、战争、政府禁令以及其他不能预见并且对其发生和后果不能防止或避免的不可抗力或受到计算机病毒、木马或其他恶意程序、黑客攻击的破坏等不可控因素可能引起的信息丢失、泄漏等损失和风险;</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >(2)您或察研科技的电脑软件、系统、硬件和通信线路出现故障导致的服务中断、资料丢失、数据损毁以及其他的损失和风险;</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(3)您操作不当或通过非察研科技授权的方式使用察研科技提供的服务带来的损失和风险;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(4)您发布的内容被他人转发、分享,因此等传播可能带来的风险和责任;</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >(5)由于网络信号不稳定等原因,所引起的研选平台账号登录失败、资料同步不完整、页面打开速度慢等风险;</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">(6)其他察研科技无法控制或合理预见的情形。</span></strong>
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >3、您理解并同意:研选平台提供的专家服务中涉及专家并非察研科技公司员工,专家均为相关行业的业内专家,其发表行业咨询信息为专家基于其行业经验和认知对相关行业的看法和评论。专家</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">发布</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">的行业咨询信息应当仅供您参考,专家</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">发布</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >的行业咨询信息并不代表研选平台的立场。察研科技不对专家所提供的行业咨询信息的准确性、合法性负责,亦不为您基于得到的行业咨询信息而做的决定、计划和行为承担责任。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >4、您理解并同意:研选平台中转发、摘编的其他专业人士或机构撰写的研究观点及数据仅代表其本人/该机构的分析判断,不代表研选平台观点,察研科技对其中的信息及观点不做任何形式的确认或保证。察研科技不对任何人依据或使用研选平台所载资料的行为或由此而引致的任何后果承担任何责任。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >5、您理解并同意:研选平台文章所载意见、评估及预测仅为该资料出具日的观点和判断,不保证有关观点或分析判断在未来不发生变更。</span
+        ></strong
+      >
+    </p>
+
+    <p style="text-indent: 24.1pt; line-height: 150%; font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px"
+          >6、您理解并同意:研选平台所载信息、意见不构成买卖任何证券、基金及其他金融工具的投资决策建议或推荐,且在任何时候均不构成对任何人具有针对性的、指导具体投资的操作意见,您应当对研选平台文章中的信息和意见进行评估,全面认识金融市场和金融产品的风险收益特征,根据自身情况自主作出决策并自行承担风险。市场有风险,投资需谨慎。</span
+        ></strong
+      >
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">十</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">、通知和送达</span></strong>
+    </h2>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >1、您理解并同意,察研科技可能会通过包括但不限于小程序页面提示、公告、系统通知、电子邮件、手机短信、站内信息等通知方式中的一种或多种向您送达相关通知、提示等信息。通知成功发出时,即被视为已送达您。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >2、您理解并同意,任何由于电子邮箱、手机号码、通讯地址等信息错误或其他不可归咎于察研科技的原因,导致您未收到相关规则、通知、提示等信息的,均不影响该等信息对您所产生的法律效力。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">3、您理解并同意,察研科技可向您的电子邮箱、手机号码、平台账号等发送商业性电子信息。</span>
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">十</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">一</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">、法律责任</span></strong>
+    </h2>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >1、如果察研科技发现或收到他人投诉用户违反本协议约定、法律法规及监管要求的,察研科技有权不经通知随时对相关内容进行删除、屏蔽,并视行为情节对违规账号处以包括但不限于警告、限制或禁止使用部分或全部功能、账号封禁直至注销的处罚,并公告处理结果。察研科技也有权依照本协议及专项规则的规定,拒绝再向该主体提供服务。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">2、如果您发现任何人违反本协议规定或以其他不当的方式使用察研科技提供的服务,请立即向察研科技投诉。</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >3、您理解并同意,察研科技有权依合理判断对违反法律法规或本协议规定的行为进行处罚,对违法违规的任何人采取适当的法律行动,并依据法律法规保存有关信息向有关部门报告等,用户应独自承担由此而产生的一切法律责任。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >4、您理解并同意,因您违反本协议或相关服务条款的规定,导致或产生第三方主张的任何索赔、要求或损失,您应当独立承担责任;察研科技因此遭受损失的,您也应当一并赔偿。</span
+      >
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >5、您理解并同意,为及时保障您合法权益不受侵害,如果您的研选平台账号存在权益纠纷,察研科技有权根据情况,采取包括但不限于冻结该账号的部分或全部功能等保护措施,直至有权机关作出生效裁判或用户在不违反本协议的前提下协商一致,并由此所产生的一切法律责任均与察研科技无关。</span
+      >
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">十</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">二</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">、适用法律和争议解决方式</span></strong>
+    </h2>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">1</span><span style="font-family: 宋体; line-height: 150%; font-size: 16px">、</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">本协议适用中华人民共和国的法律。</span>
+    </p>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">2</span><span style="font-family: 宋体; line-height: 150%; font-size: 16px">、</span
+      ><span style="font-family: 宋体; line-height: 150%; font-size: 16px"
+        >如产生的任何纠纷,双方应友好协商解决,协商不成的任何一方有权提交上海国际经济贸易仲裁委员会(上海国际仲裁中心),按照仲裁申请时上海国际经济贸易仲裁委员会现行有效的仲裁规则进行仲裁,仲裁地点在上海市。仲裁裁决是终局的,对双方均有约束力。</span
+      >
+    </p>
+
+    <h2 style="line-height: 150%">
+      <strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">十</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">三</span></strong
+      ><strong><span style="font-family: 宋体; font-weight: bold; font-size: 21px">、解释权</span></strong>
+    </h2>
+
+    <p style="text-indent: 24pt; line-height: 150%; font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; font-size: 16px">在法律允许的最大范围内,察研科技保留对本协议及相关政策、指引、规则的最终解释权。</span>
+    </p>
+  </div>
+</template>
+
+<style lang="scss" scoped>
+.container-privacy {
+  padding: 30px 30px 50px;
+}
+</style>

+ 1780 - 0
src/views/cygx/Agreement/service.vue

@@ -0,0 +1,1780 @@
+<script setup>
+document.title = '研选平台隐私政策'
+</script>
+
+<template>
+  <div class="container-service">
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: center; line-height: 150%; font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">研选平台隐私政策</span></strong>
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">引言</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">察研科技</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(&ldquo;我们&rdquo;)注重保护用户个人信息以及个人隐私。本隐私政策包含我们</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">收集、处理、存储、使用、共享、转让、公开披露和保护</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">用户(&ldquo;</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">&rdquo;)的个人信息(以下或称&ldquo;信息&rdquo;)的有关条款。&nbsp;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们深知个人信息对</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的重要性,并会尽全力保护</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息安全可靠。同时,我们承诺,我们将按照业界成熟的安全标准,采取相应的安全保护措施来保护</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >请在使用我们的服务以及该服务所包含的各项业务功能(以下统称&ldquo;服务&rdquo;或&ldquo;我们的服务&rdquo;)前,仔细阅读和了解本隐私政策,以帮助</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">了解我们对</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">个人信息的处理规则和</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">维护自己隐私权的方式。有关</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">个人信息权益的重要条款已用加粗及下划线形式提示,请</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">特别关注。如果对本隐私政策有任何疑问,</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">可以通过我们在本隐私政策中公布的联系方式与我们联系。</span></strong>
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">第一部分 定义</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >1、本协议所称&ldquo;察研科技&rdquo;是指研选平台的经营者上海察研科技有限公司及现有</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">和</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">将来设立的相关关联公司的单称或合称。</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >2、本协议所称&ldquo;研选平台&rdquo;包括但不限于查研观向微信小程序,以及将来增加的网站及对应的移动客户端</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">,以及</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">相关的微信公众号或其他公众号平台或其他小程序</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">,以及</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">可能不时涉及的其他互联网媒介等。</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">3</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">关联公司</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >:指一方现在或将来控制、受控制或与其处于共同控制下的任何公司、机构。&ldquo;控制&rdquo;指直接或者间接拥有管理或影响管理该实体的管理层和政策的权利,无论是通过具有投票权的股权或通过合同等其他方式。</span
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">4</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">个人信息</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >:指以电子或者其他方式记录的与已识别或者可识别的自然人有关的各种信息,不包括匿名化处理后的信息。</span
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">5</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">敏感个人信息</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >:指一旦泄露或者非法使用,容易导致自然人的人格尊严受到侵害或者人身、财产安全受到危害的个人信息。包括</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">生物识别</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">宗教信仰</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">特定身份</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">医疗健康</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">金融账户</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">行踪轨迹</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">等信息,以及</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">不满十四周岁未成年人的个人信息</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">。在本隐私政策中将以</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">粗体</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">形式进行显著标识。</span>
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">第二部分 隐私政策</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">本隐私政策将帮助</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">了解以下内容</span></strong>
+    </p>
+
+    <ul style="list-style-type: undefined; margin-left: 26px">
+      <li>
+        <span style="font-family: Symbol; font-size: 10pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 13px">&middot;&nbsp;</span
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">一</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">、</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">本隐私政策的管辖法律和适用范围;</span></strong>
+      </li>
+      <li>
+        <span style="font-family: Symbol; font-size: 10pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 13px">&middot;&nbsp;</span
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">二</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">、</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">我们如何收集和使用</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">您</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">的个人信息;</span></strong>
+      </li>
+      <li>
+        <span style="font-family: Symbol; font-size: 10pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 13px">&middot;&nbsp;</span
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">三</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">、</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">我们如何存储</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">您</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">的个人信息;</span></strong>
+      </li>
+      <li>
+        <span style="font-family: Symbol; font-size: 10pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 13px">&middot;&nbsp;</span
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">四</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">、</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">我们如何使用Cookie和同类技术;</span></strong>
+      </li>
+      <li>
+        <span style="font-family: Symbol; font-size: 10pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 13px">&middot;&nbsp;</span
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">五</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">、</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">我们如何委托处理、共享、转让、公开披露</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">您</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">的个人信息;</span></strong>
+      </li>
+      <li>
+        <span style="font-family: Symbol; font-size: 10pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 13px">&middot;&nbsp;</span
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">六</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">、</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">我们如何保护</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">您</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">的个人信息;</span></strong>
+      </li>
+      <li>
+        <span style="font-family: Symbol; font-size: 10pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 13px">&middot;&nbsp;</span
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">七</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">、您</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">管理</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">您</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">个人信息的权利;</span></strong>
+      </li>
+      <li>
+        <span style="font-family: Symbol; font-size: 10pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 13px">&middot;&nbsp;</span
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">八</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">、</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">未成年人个人信息保护;</span></strong>
+      </li>
+      <li>
+        <span style="font-family: Symbol; font-size: 10pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 13px">&middot;&nbsp;</span
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">九</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">、</span></strong
+        ><strong><span style="line-height: 150%; font-family: 宋体; font-size: 16pt; color: rgb(51, 51, 51); font-weight: bold; font-size: 21px">本隐私政策的更新及如何联系我们;</span></strong>
+      </li>
+    </ul>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">一、本隐私政策的管辖法律和适用范围</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 19px">(一)本隐私政策的管辖法律</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >本隐私政策依照中华人民共和国(&ldquo;中国&rdquo;,为本隐私政策之目的,不包括香港特别行政区、澳门特别行政区和台湾地区)法律(不包括冲突法)制定和解释,适用中国法律并仅受中国法律管辖。</span
+        ></strong
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">本隐私政策所称中国法律,指中国的立法机关或政府机构不时颁布的</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">法律法规</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">、规章、规范性文件</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">,以及</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">其他形式的监管规定或政府命令。</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 19px">(二)本隐私政策的适用范围</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">本隐私政策适用于提供的所有服务,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">访问</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">和使用</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">察研科技</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">提供的服务,均适用本隐私政策。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >此外,针对某些特定服务,我们也可能会制定特定的隐私政策/声明/条款(无论具体称谓如何,以下统称&ldquo;特定隐私政策&rdquo;),该等特定隐私政策将更加具体地说明我们在特定服务中如何收集、处理、存储、使用、共享、转让、公开披露和保护</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >的个人信息。如该等特定隐私政策与本隐私政策有不一致之处,则在涉及相关事项时优先适用该等特定隐私政策的相关规定。</span
+        ></strong
+      >
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">二、我们如何收集和使用</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的个人信息</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们仅会出于本隐私政策所述的以下目的,收集和使用</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(一)</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">注册</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">研选平台</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">账号以成为我们的用户</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">在</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">使用我们的服务前,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">需要注册</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">账号以成为我们的用户。为账号注册之目的,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">需要按照相关网络页面的提示向我们提供用于识别</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">身份的信息。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以在相关网络页面内使用</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">本人名下的实名制手机号进行注册(为此</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">必须保证该手机号已经以</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">本人名义在相应电信服务商处进行了实名登记</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">,并且</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">该手机号正在由</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">本人使用)</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">你需要</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">提供完整、真实、准确、最新的个人或机构资料</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">如果</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">尚未注册</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">研选平台</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">账号,将导致</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">不能成为我们的用户,但这并不会导致我们禁止</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">访问</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">研选平台</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">并使用基本的浏览或信息搜索功能。如果</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">在未注册</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">研选平台</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">账号的情形下访问</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">研选平台</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">,我们仅会在最小必要范围内且在获得</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">明确授权的情况下请求</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的设备权限(</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >可查看下文所列示之&ldquo;设备敏感权限与请求目的对照表&rdquo;以进一步了解具体权限信息与请求目的)。</span
+        ></strong
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">在</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">注册</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">账号之后,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以进一步通过相关网络页面上传</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的用户头像(头像可以是不包含违法内容的卡通形象或其他图片,我们并不要求</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">必须上传</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的本人照片)</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">或</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">向我们进一步提供</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >的性别、地区、个人简介等信息(具体以相关网络页面的提示和实际情况为准),这些信息可能有助于我们向</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">提供更加个性化的服务,但拒绝提供这些信息不会影响</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">使用我们的服务的基本功能。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(二)</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">使用我们提供的服务</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们的服务包括基本业务功能和扩展业务功能,基本业务功能包含了满足</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">选择使用</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">察研科技</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >的最主要需求和根本期待的业务功能,如信息浏览功能、信息发布功能、互动交流功能(包括关注、收藏、点赞)。扩展业务功能是除基本业务功能之外的其他业务功能,如搜索功能、专项访谈或专家分享活动</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">用户画像</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">客户服务功能。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">为了向</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">提供服务之目的,我们需要收集、保存和使用下列与</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">有关的信息。如果</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">不愿意提供与基本业务功能相关的信息,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">将无法使用我们提供的基本业务功能;如果</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">不愿意提供与扩展业务功能相关的信息,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">将无法使用相对应的扩展业务功能,但并不会影响</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">使用我们提供的基本业务功能。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">1、基本业务功能包括:&nbsp;</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">1</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">信息浏览功能</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">:</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以通过访问</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >使用我们提供的信息浏览功能。为了满足用户的差异化信息浏览需求,(包括关注、推荐及热门等版面,如有调整请以届时的最新情况为准):</span
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">a.关注版面:便于</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">浏览</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">关注的用户所发布的信息</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">,以及您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">关注的其他信息等;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">b.推荐版面:是我们向</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">提供的个性化信息推荐版面。我们根据</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">在</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">浏览记录</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、关注、收藏、点赞的信息情况,为</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">推荐</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可能感兴趣的信息。如果</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">对我们推荐的信息不感兴趣或希望减少某些信息的推荐,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以点击相应推荐信息右下角的&ldquo;&times;&rdquo;,勾选理由后进行精准屏蔽;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">c.热门版面:便于</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">浏览</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">内的热门</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">主题</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、热门作者等。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">2</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">信息发布功能</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">a.当</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">发布信息时,我们将记录</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">发布的信息和依法保存操作日志信息;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">b.当</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">使用拍摄/上传图片功能发布图片时,我们会请求</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">授权</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的设备的相机/相册权限。如果</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">拒绝授权该权限,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">将无法使用此项功能,但并不影响</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">使用其他功能。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">3</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">互动交流功能(包括关注、收藏、点赞)</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">:当</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">使用互动交流功能(包括关注、收藏、点赞)时,我们会依法保存操作日志信息。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">2</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">扩展业务功能包括</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">1</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">搜索功能</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">:当</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">使用搜索功能时,我们会记录</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的历史搜索记录、并依法保存操作日志信息。该等历史搜索记录通常无法单独识别</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人身份,不属于</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息,不在本隐私政策的限制范围内。只有当</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的历史搜索记录与</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的其他信息有联结并可识别</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人身份时,则在结合使用期间,我们会将</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的历史搜索记录作为</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息,按照本隐私政策对其进行处理与保护。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">2</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">专项访谈或专家分享</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">活动</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">:我们将不时举办线上或线下的专项访谈或专家分享活动,在此类活动中,我们可能需要</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">提供</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的相关个人信息,我们会在相关活动的页面或规则中事先明示收集信息的具体类型、收集目的和收集方式。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">3</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">用户画像</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">:在遵守</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">法律法规</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、规章和规范性文件规定的合法目的和正当程序的前提下,我们可能会将</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >的个人信息在匿名化、汇总、脱敏和加密处理后,形成统计信息或用户画像(但画像无法识别任何用户个人),为</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">展示和推送相关服务、产品或功能。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">4</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">客户服务</span></strong
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">:当</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">使用客服咨询和投诉功能时,为了方便与</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">联系和帮助</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">解决投诉问题,我们可能需要</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">提供姓名、联系方式、我们相关业务规则要求提供的其他信息</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">,以及您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">明示同意提供的其他信息。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >此外,我们可能不时增加新的功能或对已有功能作出调整。我们将严格遵循法律法规的规定和本隐私政策的约定,依法采取必要的措施,保护</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的数据隐私权和</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">管理</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">个人信息的权利。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">3、支付功能:</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >在您使用我们的付费服务时,您需要通过第三方支付平台 (主要包括支付宝支付、微信支付等)
+        进行支付,相关服务和责任将由第三方承担。第三方会收集您的账单信息,如您不想第三方获得您的前述信息,请不要使用支付功能。</span
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >此外,我们可能不时增加新的功能或对已有功能作出调整。我们将严格遵循法律法规的规定和本隐私政策的约定,依法采取必要的措施,保护您的数据隐私权和您管理您个人信息的权利。</span
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">4</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">、设备敏感权限与请求目的对照表</span></strong>
+    </p>
+
+    <table border="1" cellspacing="0" style="border-collapse: collapse; margin-left: 1.65pt; border: none">
+      <tbody>
+        <tr>
+          <td
+            style="
+              padding: 3pt 3pt 3pt 3pt;
+              border-left: 1pt outset windowtext;
+              border-right: 1pt outset windowtext;
+              border-top: 1pt outset windowtext;
+              border-bottom: 1pt outset windowtext;
+              background: rgb(255, 255, 255);
+            "
+            valign="center"
+          >
+            <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%">
+              <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">序号</span></strong>
+            </p>
+          </td>
+          <td
+            style="
+              padding: 3pt 3pt 3pt 3pt;
+              border-left: none;
+              border-right: 1pt outset windowtext;
+              border-top: 1pt outset windowtext;
+              border-bottom: 1pt outset windowtext;
+              background: rgb(255, 255, 255);
+            "
+            valign="center"
+          >
+            <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%">
+              <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">设备敏感权限</span></strong>
+            </p>
+          </td>
+          <td
+            style="
+              padding: 3pt 3pt 3pt 3pt;
+              border-left: none;
+              border-right: 1pt outset windowtext;
+              border-top: 1pt outset windowtext;
+              border-bottom: 1pt outset windowtext;
+              background: rgb(255, 255, 255);
+            "
+            valign="center"
+          >
+            <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%">
+              <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">调用权限的目的</span></strong>
+            </p>
+          </td>
+          <td
+            style="
+              padding: 3pt 3pt 3pt 3pt;
+              border-left: none;
+              border-right: 1pt outset windowtext;
+              border-top: 1pt outset windowtext;
+              border-bottom: 1pt outset windowtext;
+              background: rgb(255, 255, 255);
+            "
+            valign="center"
+          >
+            <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%">
+              <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">权限授权方式</span></strong>
+            </p>
+          </td>
+          <td
+            style="
+              padding: 3pt 3pt 3pt 3pt;
+              border-left: none;
+              border-right: 1pt outset windowtext;
+              border-top: 1pt outset windowtext;
+              border-bottom: 1pt outset windowtext;
+              background: rgb(255, 255, 255);
+            "
+            valign="center"
+          >
+            <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%">
+              <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">您</span></strong
+              ><strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">是否可自行关闭</span></strong>
+            </p>
+          </td>
+          <td
+            style="
+              padding: 3pt 3pt 3pt 3pt;
+              border-left: none;
+              border-right: 1pt outset windowtext;
+              border-top: 1pt outset windowtext;
+              border-bottom: 1pt outset windowtext;
+              background: rgb(255, 255, 255);
+            "
+            valign="center"
+          >
+            <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%">
+              <strong><span style="font-family: 宋体; line-height: 150%; font-weight: bold; font-size: 16px">我们的建议</span></strong>
+            </p>
+          </td>
+        </tr>
+        <tr>
+          <td
+            style="
+              padding: 3pt 3pt 3pt 3pt;
+              border-left: 1pt outset windowtext;
+              border-right: 1pt outset windowtext;
+              border-top: none;
+              border-bottom: 1pt outset windowtext;
+              background: rgb(255, 255, 255);
+            "
+            valign="center"
+          >
+            <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">1</span></p>
+          </td>
+          <td
+            style="padding: 3pt 3pt 3pt 3pt; border-left: none; border-right: 1pt outset windowtext; border-top: none; border-bottom: 1pt outset windowtext; background: rgb(255, 255, 255)"
+            valign="center"
+          >
+            <p style="text-align: left; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">相机/相册</span></p>
+          </td>
+          <td
+            style="padding: 3pt 3pt 3pt 3pt; border-left: none; border-right: 1pt outset windowtext; border-top: none; border-bottom: 1pt outset windowtext; background: rgb(255, 255, 255)"
+            valign="center"
+          >
+            <p style="text-align: left; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">基于用户主动操作,拍摄/上传图片</span></p>
+          </td>
+          <td
+            style="padding: 3pt 3pt 3pt 3pt; border-left: none; border-right: 1pt outset windowtext; border-top: none; border-bottom: 1pt outset windowtext; background: rgb(255, 255, 255)"
+            valign="center"
+          >
+            <p style="text-align: left; line-height: 150%; font-size: 16px; width: 100%">
+              <span style="font-family: 宋体; line-height: 150%; font-size: 16px">在用户首次拍摄/上传图片时进行弹窗提示</span>
+            </p>
+          </td>
+          <td
+            style="padding: 3pt 3pt 3pt 3pt; border-left: none; border-right: 1pt outset windowtext; border-top: none; border-bottom: 1pt outset windowtext; background: rgb(255, 255, 255)"
+            valign="center"
+          >
+            <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">是</span></p>
+          </td>
+          <td
+            style="padding: 3pt 3pt 3pt 3pt; border-left: none; border-right: 1pt outset windowtext; border-top: none; border-bottom: 1pt outset windowtext; background: rgb(255, 255, 255)"
+            valign="center"
+          >
+            <p style="text-align: left; line-height: 150%; font-size: 16px; width: 100%">
+              <span style="font-family: 宋体; line-height: 150%; font-size: 16px">如果</span><span style="font-family: 宋体; line-height: 150%; font-size: 16px">您</span
+              ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">经常上传图片,则可保持该权限开启;如果</span
+              ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">您</span><span style="font-family: 宋体; line-height: 150%; font-size: 16px">很少上传图片,则建议</span
+              ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">您</span
+              ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">仅在使用相应功能时开启该权限,在使用完毕后及时关闭。</span>
+            </p>
+          </td>
+        </tr>
+        <tr>
+          <td
+            style="
+              padding: 3pt 3pt 3pt 3pt;
+              border-left: 1pt outset windowtext;
+              border-right: 1pt outset windowtext;
+              border-top: none;
+              border-bottom: 1pt outset windowtext;
+              background: rgb(255, 255, 255);
+            "
+            valign="center"
+          >
+            <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">2</span></p>
+          </td>
+          <td
+            style="padding: 3pt 3pt 3pt 3pt; border-left: none; border-right: 1pt outset windowtext; border-top: none; border-bottom: 1pt outset windowtext; background: rgb(255, 255, 255)"
+            valign="center"
+          >
+            <p style="text-align: left; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">系统通知</span></p>
+          </td>
+          <td
+            style="padding: 3pt 3pt 3pt 3pt; border-left: none; border-right: 1pt outset windowtext; border-top: none; border-bottom: 1pt outset windowtext; background: rgb(255, 255, 255)"
+            valign="center"
+          >
+            <p style="text-align: left; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">向用户发送通知</span></p>
+          </td>
+          <td
+            style="padding: 3pt 3pt 3pt 3pt; border-left: none; border-right: 1pt outset windowtext; border-top: none; border-bottom: 1pt outset windowtext; background: rgb(255, 255, 255)"
+            valign="center"
+          >
+            <p style="text-align: left; line-height: 150%; font-size: 16px; width: 100%">
+              <span style="font-family: 宋体; line-height: 150%; font-size: 16px">在用户首次使用</span><span style="font-family: 宋体; line-height: 150%; font-size: 16px">研选平台</span
+              ><span style="font-family: 宋体; line-height: 150%; font-size: 16px">时进行弹窗提示</span>
+            </p>
+          </td>
+          <td
+            style="padding: 3pt 3pt 3pt 3pt; border-left: none; border-right: 1pt outset windowtext; border-top: none; border-bottom: 1pt outset windowtext; background: rgb(255, 255, 255)"
+            valign="center"
+          >
+            <p style="text-align: center; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">是</span></p>
+          </td>
+          <td
+            style="padding: 3pt 3pt 3pt 3pt; border-left: none; border-right: 1pt outset windowtext; border-top: none; border-bottom: 1pt outset windowtext; background: rgb(255, 255, 255)"
+            valign="center"
+          >
+            <p style="text-align: left; line-height: 150%; font-size: 16px; width: 100%"><span style="font-family: 宋体; line-height: 150%; font-size: 16px">/</span></p>
+          </td>
+        </tr>
+      </tbody>
+    </table>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">备注:</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">可以通过</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >设备的&ldquo;设置&rdquo;路径,查看、开启或关闭上述敏感权限。在不同的设备或系统版本中,相关查看或操作路径和方式可能有所不同,具体请参考设备及系统开发方说明或指引。</span
+        ></strong
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(三)保障</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">研选平台</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">和相关服务的运行安全</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">为了保障</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">和相关服务的运行安全,在</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">使用或访问</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">时,我们会收集与</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >设备相关的设备型号、操作系统、操作系统版本、分辨率、网络信息、唯一设备标识符、MAC地址、浏览器类型/版本/内核、使用的语言、电信运营商、手机网络,储存</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">在使用我们服务的过程中产生的网络日志信息。这些信息是保障</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">正常运行和提供服务所必须收集的基本信息。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(四)征得授权同意的例外</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">根据中国法律,在以下情形中,收集和使用</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息无需征得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的授权同意:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">1、为订立、履行个人作为一方当事人的合同所必需;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">2、为履行法定职责或者法定义务所必需;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">3、为应对突发公共卫生事件,或者紧急情况下为保护自然人的生命健康和财产安全所必需;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">4、为公共利益实施新闻报道、舆论监督等行为,在合理的范围内处理个人信息;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >5、依照《个人信息保护法》等相关法律法规在合理的范围内处理个人自行公开或者其他已经合法公开的个人信息;</span
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">6、法律、行政法规规定的其他情形。</span>
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">三、我们如何存储</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的个人信息</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(一)存储地域</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >我们在中国境内收集和产生的个人信息,将仅存储在中国境内。如果因为处理跨境业务需要向境外机构传输境内收集的个人信息的,我们会严格执行</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">法律法规</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、规章或规范性文件的规定,向</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">告知出境的目的、涉及的个人信息类型、接收方身份、安全风险,且事先征得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >的同意,并通过签订协议、安全评估、核查等有效措施,要求接收方为所获得的个人信息保密并妥善处理,确保接收方有充分的能力来保护</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(二)存储期限</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">除非</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">法律法规</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、规章或规范性文件另有规定,我们将按如下期间存储</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的信息:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">1、我们将在实现本隐私政策中所述目的所必需的期间内保留</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息,除非</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">法律法规</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、规章或规范性文件要求或允许在更长的期间内存储这些信息。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">2、</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >的个人信息经匿名化处理后将形成可以使用及流通的数据,我们对此类数据的保存及处理无需另行通知并征得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的同意。</span>
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">四、我们如何使用Cookie和同类技术</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(一)Cookie&nbsp;</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">为确保网站正常高效运转、为</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">获得更轻松的访问体验、向</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">推荐</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可能感兴趣的内容,我们有时会在</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的设备终端/系统上存储名为&nbsp;Cookie的小数据文件。&nbsp;Cookie会帮助</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">在后续访问</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">时调用</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的信息,简化</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">填写个人信息</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">例如登录等</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的流程。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们不会将Cookie用于本隐私政策所述目的之外的任何用途。</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可根据自己的偏好管理或删除Cookie。</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以清除计算机或移动设备上保存的所有Cookie,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">有权接受或拒绝Cookie。大多数浏览器会自动接受Cookie,但</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">通常可根据自己的需要来修改浏览器的设置以拒绝Cookie</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">;</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">另外,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">也可以清除软件内保存的所有Cookie。但</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可能因此无法完全体验我们某些便捷性的服务功能。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(二)其他同类技术</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">目前,我们并未使用除Cookie以外的其他同类技术。</span>
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">五、我们如何委托处理、共享、转让、公开披露</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的个人信息</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(一)委托处理</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们可能委托授权合作伙伴处理</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息,以便授权合作伙伴代表我们为</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >提供某些服务或履行职能。我们仅会出于本隐私政策声明的合法、正当、必要、特定、明确的目的委托其处理</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的信息,授权合作伙伴只能接触到其履行职责所需信息,且我们将会通过协议要求他们妥善保护和处理</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息,不得将</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息用于其他任何超出委托范围的目的。如果授权合作伙伴将</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息用于我们未委托的用途,其将单独征得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的同意。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(二)共享</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们不会与任何公司、组织和个人共享</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息,但以下情况除外:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">1、事先获得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">明确的同意或授权;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">2、基于法定情形:根据法律规定、诉讼等争议解决需要,司法机关或政府机构等依法提出的要求;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">3、与关联方共享:我们可能会与我们的关联公司共享</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息。但我们仅共享必要的个人信息,且关联公司对</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息的处理和保护亦须受本隐私政策所声明的目的的约束。关联公司如要改变</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息的处理目的,将再次征求</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的授权和同意;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >4、与授权合作伙伴共享:仅为实现本隐私政策声明之目的,我们的某些服务由授权合作伙伴提供,我们可能会与合作伙伴共享</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的某些个人信息;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">5、</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">与我们关于个人信息共享的其他约定。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">请</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">知悉,即使已经取得</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的授权同意,我们也仅会出于合法、正当、必要、特定、明确的目的共享</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >的个人信息,并尽量对共享内容中的个人信息进行去标识化处理。对我们与之共享</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >的个人信息的公司、组织和个人,我们会与其签署严格的数据保护协定,要求其按照我们的说明、本隐私政策以及其他任何相关的保密和安全措施妥善保护和处理</span
+        ></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的个人信息。</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(三)转让</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们不会将</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息转让给其他任何公司、组织和个人,但以下情形除外:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >1、随着我们业务的发展,我们及我们的关联公司有可能进行合并、收购、资产转让或其他类似的交易。如相关交易</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">涉及您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息转让,我们会按照相关法律规定向</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">告知接收方的名称和联系方式,我们亦会要求新持有</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >个人信息的公司、组织和个人继续受本隐私政策的约束,接受方变更本隐私政策所述个人信息处理目的、处理方式的,需按照法律规定重新取得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的授权同意;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; margin-left: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">2、在获得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">明确同意的情形下转让,亦即获得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">明确同意后,我们会向其他方转让我们已经获取的</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(四)公开披露</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们仅会在以下情形中,公开披露</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">1、已经获得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的单独同意;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">2、根据中国法律的要求、强制性的行政执法或司法活动的要求所必须提供</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">个人信息的情况下,我们可能会依据所要求的个人信息类型和披露方式公开披露</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >的个人信息。在可行的限度内,当我们收到上述披露信息的请求时,我们会要求请求方出具与之相应的法律文件,如传票或调查函;</span
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">3、中国法律允许的其他情形。&nbsp;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(五)共享、转让、公开披露个人信息时事先征得授权同意的例外</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">根据中国法律,在以下情形中,共享、转让、公开披露</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息无需事先征得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的授权同意:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">1、为订立、履行个人作为一方当事人的合同所必需;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">2、为履行法定职责或者法定义务所必需;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">3、为应对突发公共卫生事件,或者紧急情况下为保护自然人的生命健康和财产安全所必需;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">4、为公共利益实施新闻报道、舆论监督等行为,在合理的范围内处理个人信息;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >5、依照《个人信息保护法》等相关法律法规在合理的范围内处理个人自行公开或者其他已经合法公开的个人信息;</span
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">6、法律、行政法规规定的其他情形。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >根据法律规定,共享、转让、公开披露经去标识化处理的个人信息,且确保数据接收方无法复原并重新识别个人信息主体的,我们对此类数据的处理将无需另行向</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">通知并征得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的同意。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">请注意,</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">在使用我们服务时自愿发布甚至公开分享的信息,可能会涉及</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">或他人的个人信息甚至敏感个人信息,例如</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的发帖、跟帖评论、聊天内容所包含的文字、图片等各种形式的信息。请</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">在使用我们的服务时谨慎确认是否要发布甚至公开分享相关信息。</span></strong>
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">六、我们如何保护</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的个人信息</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(一)数据安全措施</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">为保障</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的信息安全,我们努力采取各种符合业界标准的物理、电子和管理方面的安全措施来保护</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息,防止</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >的个人信息遭到未经授权访问、公开披露、使用、修改、损坏或丢失。我们将尽力采取一切合理可行的措施,保护</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >请注意,无法与任何特定个人直接建立联系的数据,不属于个人信息。如果我们将这类非个人信息与其他信息结合用于识别自然人个人身份,或将其与个人信息结合使用,则在结合使用期间,此类信息将被视为个人信息。</span
+        ></strong
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(二)账号安全</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">互联网并非绝对安全的环境,我们强烈建议</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">通过安全方式、使用复杂密码,协助我们保障</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的账号安全。如果</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">发现自己的个人信息泄密,尤其是</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的账号密码发生</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">泄漏</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">,请</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >立即根据本隐私政策中提供的联系方式联络我们,以便我们采取相应措施。</span
+        ></strong
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(三)个人信息安全事件处置</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">在不幸发生个人信息安全事件后,我们将按照中国法律的规定,及时向</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可自主防范和降低风险的建议、对</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的补救措施等。我们将及时将事件相关情况以邮件、信函、电话、推送通知等方式告知</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >,难以逐一告知个人信息主体时,我们会采取合理、有效的方式发布公告。同时,我们还将按照监管部门要求,主动上报个人信息安全事件的处置情况。</span
+      >
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">七、</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">管理</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">个人信息的权利</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">按照中国法律、并适当参照其他国家或地区的通行做法,我们保障</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">对自己的个人信息行使以下权利:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(一)访问和编辑</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的个人信息</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">有权访问和编辑</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息,法律规定的例外情况除外。如果</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">想行使数据访问和编辑的权利,可以通过以下方式自行访问和编辑:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">1、账号信息:如果</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">希望访问或编辑</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的账号中的个人资料信息、更改</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的密码、添加安全信息或其他相关信息</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">以下统称&ldquo;账号信息&rdquo;</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以在</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">在登录状态下通过&ldquo;我的</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">-</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">个人设置&rdquo;路径</span></u
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)执行此类操作。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">2、关注用户:如果</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">希望访问</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的关注用户信息,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以在</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">移动端</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">访问</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台(</span
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">在登录状态下通过&ldquo;首页</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">-</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">关注&rdquo;/&ldquo;个人主页</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">-</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">更多</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">-</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">关注&rdquo;路径</span></u
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)找到</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的相应的关注用户,并在相应的页面执行此类操作。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">3</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、收藏信息:如果</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">希望访问</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的收藏信息,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以在</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">移动端</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">访问</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">(</span
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">在登录状态下通过&ldquo;</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">我的-</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">收藏&rdquo;路径</span></u
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">)找到</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的相应的收藏信息,并在相应的页面执行此类操作</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">4</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、搜索记录:如果</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">希望访问</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的最近的搜索记录,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以在端搜索页面找到</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的历史搜索执行此类操作。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">5</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">、</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">浏览记录:</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">如果</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">希望访问</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的最近的搜索记录</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您可以在研选平台(</span
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">在登录状态下通过</span></u
+      ><u><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); text-decoration: underline; font-size: 16px">&ldquo;</span></u
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我的-足迹&rdquo;)</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">找到</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">浏览记录</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">执行此类操作。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(二)更正、补充</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的个人信息</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">当</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">发现我们处理的关于</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息不准确或者不完整时,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">有权要求我们做出更正、补充。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(三)删除</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的个人信息</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以通过&ldquo;(一)访问和编辑</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息&rdquo;中允许的方式删除</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的部分个人信息。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">在以下情形中,</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以向我们提出删除个人信息的请求:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">1、</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息的处理目的已实现、无法实现或者为实现处理目的不再必要;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">2、我们停止提供产品或者服务,或者保存期限已届满;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">3、</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">撤回同意;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">4、我们违反法律、行政法规或者违反约定处理个人信息;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">5、法律、行政法规规定的其他情形。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >法律、行政法规规定的保存期限未届满,或者删除个人信息从技术上难以实现的,我们会停止除存储和采取必要的安全保护措施之外的处理。</span
+        ></strong
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">如果我们决定响应</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的删除请求,我们还将同时尽可能通知从我们处获得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息的主体,要求其及时删除,除非中国法律另有规定,或这些主体获得</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的独立授权。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">当</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px"
+          >从我们的服务中删除信息后,我们可能不会立即从备份系统中删除相应的信息,但会在备份更新时删除这些信息。</span
+        ></strong
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(四)改变</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">授权同意的范围或撤回授权</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">每个业务功能需要一些基本的个人信息才能得以完成。</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以通过&ldquo;(一)访问和编辑</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息&rdquo;中允许的方式删除信息、更改隐私设置</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">,以及</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">在浏览器或</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的移动设备操作系统中关闭相关功能等方式改变同意范围或撤回</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的授权。</span
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">但请</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">理解,当</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">执行上述操作后,我们将无法继续为</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong
+        ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">提供撤回同意或授权所对应的服务,也将不再处理相应的个人信息。但</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">撤回同意的决定,不会影响此前基于</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的授权而开展的个人信息处理。</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(五)注销账号&nbsp;</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24.1pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">有权注销</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">研选平台</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">账号。</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">可以通过我们的在线客服以及我们不时提供的其他方式(如有)与我们取得联系,我们将为</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">提供账号注销服务。</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">在</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">主动注销账号之后,我们将停止为</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">提供服务,并根据中国法律的规定删除</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的个人信息,法律另有规定的除外。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(六)约束信息系统自动决策</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 32pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 21px"
+        >在某些业务功能中,我们可能仅依据信息系统、算法等在内的非人工自动决策机制做出决定。如果这些决定显著影响</span>
+        <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 21px">您</span>
+        <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 21px">的合法权益,</span>
+        <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 21px">您</span>
+        <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 21px">有权要求我们</span>
+        <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 21px">作出解释</span>
+        <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 21px">,并有权拒绝我们仅通过自动化决策的方式作出决定,我们也将提供适当的救济方式。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(七)响应</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong>
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">的上述请求</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">为了保障</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的账号及个人信息安全,在涉及部分请求(如注销账号等)时,我们可能需要</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">提供相应方式证明</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的身份和请求的正当性,我们将在收到</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">反馈并验证</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的身份后的15个工作日内答复</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的请求。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">对于</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">合理的请求,我们原则上不收取费用,但对多次重复、超出合理限度的请求,我们将视情况收取一定的成本费用。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >对于那些无端重复、需要过多技术手段(例如,需要开发新系统或从根本上改变现行惯例)、给他人合法权益带来风险或非常不切实际的请求,我们可能会予以拒绝。</span
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">在以下情形中,按照法律法规要求,我们将无法响应</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的请求:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">1、与个人信息控制者履行法律法规规定的义务相关的;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">2、与国家安全、国防安全直接相关的;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">3、与公共安全、公共卫生、重大公共利益直接相关的;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">4、与犯罪侦查、起诉、审判和执行判决等直接相关的;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">5、个人信息控制者有充分证据表明个人信息主体存在主观恶意或滥用权利的;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">6、出于维护个人信息主体或其他个人的生命、财产等重大合法权益但又很难得到本人同意的;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">7、响应个人信息主体的请求将导致个人信息主体或其他个人、组织的合法权益受到严重损害的;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">8、涉及商业秘密的。&nbsp;</span>
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">八、未成年人个人信息保护</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >基于我们的服务的特征,我们的网站和服务面向成年人,我们不向未成年人提供任何服务,并且我们拒绝收集未成年人的个人信息或者向这类人群发送任何宣传资料。</span
+      >
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px"
+        >我们不会寻求或试图寻求接收来自未成年人的任何个人信息。如果家长或监护人有理由相信未成年人未经事先同意而向我们提交了个人信息,请联系我们以确保删除此类个人信息,并保证未成年人取消其所订阅并使用的</span>
+        <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span>
+        <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">服务。</span>
+    </p>
+
+    <p style="margin-top: 5pt; margin-bottom: 5pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">九、本隐私政策的更新及如何联系我们</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(一)本隐私政策的更新</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们的服务可能不时发生变化,本隐私政策也将随之调整。未经</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">明确同意,我们不会削减</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">依据本隐私政策所应享有的权利。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们会通过在</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">发出更新版本或以其他方式提醒</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">相关内容的更新,也请</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">访问</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">以便及时了解最新的隐私政策。对于重大变更,我们还会提供更为显著的通知(包括我们会通过</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">平台</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">公示的方式进行通知甚至向</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">提供弹窗提示)。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">本隐私政策所指的重大变更包括但不限于:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">1、我们的服务模式发生重大变化。如处理个人信息的目的、处理的个人信息类型、个人信息的使用方式等;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">2、我们在所有权结构、组织架构等方面发生重大变化。如业务调整、破产并购等引起的所有者变更;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">3、个人信息共享、转让或公开披露的主要对象发生变化;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">4、</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">参与个人信息处理方面的权利及其行使方式发生重大变化;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">5、我们负责处理个人信息安全的责任部门、联络方式及投诉渠道发生变化时;</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">6、个人信息安全影响评估报告表明存在高风险时。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们还会在</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">研选平台</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">上持续展示本隐私政策的历史版本</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">。</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">(二)</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">您</span></strong
+      ><strong><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-weight: bold; font-size: 16px">如何联系我们</span></strong>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">如果</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">对本隐私政策有任何意见、建议或需要咨询的事项,</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">可以通过如下方式与我们的个人信息保护专职部门取得联系:</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">上海察研科技有限公司</span
+      ><span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">&nbsp;合规法务部(收)</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">联系邮箱:compliance@hzinsights.com</span>
+    </p>
+
+    <p style="margin-top: 0pt; margin-bottom: 0pt; text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">联系地址:上海市浦东新区世纪大道210号21世纪大厦12层</span>
+    </p>
+
+    <p style="text-indent: 24pt; text-align: left; line-height: 150%; background: rgb(255, 255, 255); font-size: 16px; width: 100%">
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">也可以通过我们的在线客服</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">,以及</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">我们不时提供的其他方式(如有)与我们取得联系并对</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的意见、建议或需要咨询的事项</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">做充分描述</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">,我们将在验证</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">身份后的15个工作日内答复</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">您</span>
+      <span style="font-family: 宋体; line-height: 150%; color: rgb(51, 51, 51); font-size: 16px">的请求并尽力解决。</span>
+    </p>
+  </div>
+</template>
+
+<style lang="scss" scoped>
+.container-service {
+  padding: 30px 30px 50px;
+}
+</style>

+ 489 - 0
src/views/cygx/yxReportDtl.vue

@@ -0,0 +1,489 @@
+<template>
+  <div :class="['container-cygx', reportInfo.IsResearch && 'no-cv', reportInfo.IsSpecialArticle && 'container-cygx-bg']" v-show="haveData">
+    <trackForm v-model:isShowFollowButton="reportInfo.IsShowFollowButton" :sourceId="rerportId" v-model:isFollowData="reportInfo.IsFollowButton" />
+    <div class="z-index-content" ref="contentBox">
+      <div class="content-top">
+        <div class="report-title">{{ reportInfo.Title }}</div>
+        <div class="report-text">
+          <template v-if="!reportInfo.IsResearch">
+            <div v-if="reportInfo.IsSpecialArticle">
+              <span>{{ reportInfo.PublishDate }} &nbsp;&nbsp;&nbsp;&nbsp;</span>
+              <span class="author">{{ reportInfo.SellerAndMobile }}</span>
+            </div>
+            <template v-else>
+              <div class="report_desc">
+                <span class="author">{{ reportInfo.Department }}</span>
+                <span>{{ reportInfo.PublishDate }}</span>
+              </div>
+              <div class="seller-list" v-if="reportInfo.IsSpecialArticle">
+                <span>联系人:</span>
+                <span v-for="(item, index) in reportInfo.SellerList" :key="index"> {{ item.SellerName }}({{ item.SellerMobile }})&nbsp;&nbsp; </span>
+              </div>
+            </template>
+          </template>
+          <template v-else>
+            <div class="report-research">
+              <div style="display: flex">
+                <img :src="reportInfo.DepartmentImgUrl" @click="goAuthorPages" />
+                <div class="research-author">
+                  <p @click="goAuthorPages">{{ reportInfo.SellerAndMobile }}</p>
+                  <p class="time">{{ reportInfo.PublishDate }}</p>
+                </div>
+              </div>
+              <div @click="attentionBtn" :style="{ 'background-color': isYanxuan ? '#F1A84A' : '#376CBB' }" class="is-follow" :class="reportInfo.IsFollow ? 'follow-cancel' : ''" v-if="isBinding">
+                {{ reportInfo.IsFollow ? "取消关注" : "+ 关注" }}
+              </div>
+            </div>
+          </template>
+          <div :class="['container-abstract', isYanxuan && 'container-abstract-yx']">&nbsp;&nbsp;摘要:&nbsp;{{ reportInfo.Abstract }}</div>
+        </div>
+      </div>
+      <template v-if="isBinding">
+        <div class="detail-report" :class="reportInfo.IsResearch ? '' : 'detail-bottom'">
+          <div id="report-content" v-html="reportInfo.Body"></div>
+        </div>
+        <div class="deeperReport" @click="lookDeeperReport" v-if="reportInfo.ReportLink">查看报告链接</div>
+        <div class="host-collect" v-if="reportInfo.IsResearch && reportResearch.length">
+          <h4>相关热门收藏:</h4>
+          <div class="host-content" v-for="item in reportResearch" :key="item.ArticleId">
+            <p class="host-title" @click="goDetail(item)">{{ item.Title }}</p>
+            <div class="item-more">
+              <p>{{ item.PublishDate }}</p>
+              <div class="pv-ollect">
+                <div>
+                  <img class="pv" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/examine_icon.png" />
+                  {{ item.Pv }}
+                </div>
+                <div @click="collectClick(item)">
+                  <img v-if="item.IsCollect" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/collect_act.png" />
+                  <img v-else src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/collect_ico.png" />
+                  {{ item.CollectNum }}人收藏
+                </div>
+              </div>
+            </div>
+          </div>
+        </div>
+      </template>
+      <template v-else>
+        <div class="detail-report" :class="reportInfo.IsResearch ? '' : 'detail-bottom'" v-if="reportInfo.Body">
+          <div id="report-content" v-html="reportInfo.Body.slice(0, 200)"></div>
+        </div>
+        <div class="please-login" @click="pleaseGoLogin">请登录后查看更多内容</div>
+      </template>
+    </div>
+    <div class="statement-content-box" v-if="rerportId >= 1000000">
+      <p>郑重声明:</p>
+      本文为用户投稿,用户在平台中发表的所有资料、言论等仅代表个人或嘉宾观点,与本网站、任何公司与任何机构立场无关。本平台对文中陈述、观点判断保持中立,不对所包含内容及数据的真实性、准确性、可靠性或完整性提供任何明示或暗示的保证。
+      股市波动与很多因素有关,任何用户或嘉宾的发言,都有其特定立场,投资决策是个人基于自己的研究分析所做的决定,本文章或会议目的在于事实、观点分享,不构成任何的投资建议。投资者应当自主进行投资决策,对投资者因依赖上述信息进行投资决策而导致的财产损失,本平台不承担法律责任。
+      本文章或会议未经本平台和作者的书面许可,任何机构和个人不得以任何形式转发、转载、翻版、复制、刊登、发表、修改、仿制或引用文章或会议的全部或部分内容。本平台对任何第三方的未经授权行为所产生的的影响不承担任何责任,同时保持实施法律行动的权利。
+    </div>
+    <div class="btn-returntop" v-if="isBinding">
+      <img v-if="isYanxuan" src="~@/assets/cygx/returntop_yx.png" @click="scrolltop" style="width: 40px" />
+      <img v-else src="~@/assets/cygx/returntop.png" @click="scrolltop" style="width: 40px" />
+    </div>
+    <div class="btn-freecharge" v-if="isShowFreeBtn && from_type == 'mpwechat'">
+      <img @click="toggle" class="image" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/free_icon.png" />
+      <img @click="removeBton" class="remove-icon" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/free_%20remove.png" />
+    </div>
+    <!-- 底部悬浮固定 -->
+    <div class="fixed_cont" v-if="from_type == 'mpwechat' && isBinding">
+      <div class="handle-item" @click="quizBtn">
+        <img src="@/assets/cygx/leaving_message.png" class="img_ico" />
+        <div>留言</div>
+      </div>
+      <div class="handle-item" v-if="reportInfo?.IsApplyAppointmentExpert" @click="appointment(reportInfo?.ArticleId)">
+        <img src="@/assets/cygx/appointment-expert.png" class="img_ico" />
+        <div>约访专家</div>
+      </div>
+      <div class="handle-item" @click="collectHandle">
+        <template v-if="reportInfo.IsCollect">
+          <img v-if="isYanxuan" src="https://hzstatic.hzinsights.com/yx_xcx/collect_act.png" />
+          <img src="@/assets/cygx/collect_act.png" class="img_ico" v-else />
+        </template>
+        <img src="@/assets/cygx/collect_ico.png" class="img_ico" v-else />
+
+        <div v-if="reportInfo.IsResearch">
+          {{ `${reportInfo.CollectionNum}  人收藏` }}
+        </div>
+        <div v-else>{{ reportInfo.IsCollect ? "已收藏" : "收藏" }}</div>
+      </div>
+    </div>
+    <dlg :showTips="showTips" :reportInfo="reportInfo" @hideDlg="showTips = false" />
+  </div>
+</template>
+
+<script setup>
+import { reactive, onMounted, toRefs, ref } from "vue";
+import { useRouter, useRoute } from "vue-router";
+import { RaiApi, FreeButton } from "@/api/mfyx/api.js";
+import { Icon, Dialog, Toast } from "vant";
+import dlg from "./dlg.vue";
+import trackForm from "./isTrackFollow.vue";
+const router = useRouter();
+const route = useRoute();
+const state = reactive({
+  reportInfo: {},
+  reportResearch: [],
+});
+const rerportId = ref(null);
+const from_type = ref(null);
+const haveData = ref(false);
+const fileLink = ref(false);
+const showTips = ref(false);
+const contentBox = ref(null);
+const isBinding = ref(true);
+const isSendWx = ref("");
+const isYanxuan = ref("");
+
+/* 访谈接口 */
+const interviewApi = () => {
+  RaiApi.applyRpt({
+    ArticleId: Number(rerportId.value),
+  }).then((res) => {
+    if (res.Ret === 200) {
+      state.reportInfo.IsInterviewApply = !state.reportInfo.IsInterviewApply;
+      state.reportInfo.InterviewApplyStatus = state.reportInfo.IsInterviewApply ? "待邀请" : "";
+      Toast(res.Msg);
+    }
+  });
+};
+//跳转到免费送月卡页面
+const toggle = () => {
+  wx.miniProgram.navigateTo({
+    url: `/${isYanxuan.value ? "pages-user" : "pageMy"}/freeTrial/freeTrial`,
+  });
+};
+const isShowFreeBtn = ref(false);
+
+//隐藏当天的按钮
+const removeBton = async () => {
+  const res = await FreeButton.userFreeButtonUpdate();
+  if (res.Ret === 200) {
+    isShowFreeBtn.value = false;
+  }
+};
+
+const userIsShowFreeButton = async () => {
+  const res = await FreeButton.userIsShowFreeButton();
+  if (res.Ret === 200) {
+    isShowFreeBtn.value = res.Data.IsShow;
+  }
+};
+// 跳转到作者页面
+const goAuthorPages = () => {
+  wx.miniProgram.navigateTo({
+    url: `/${isYanxuan.value ? "pages-report" : "reportPages"}/authorPages/authorPages?id=` + state.reportInfo.DepartmentId,
+  });
+};
+const downloadFile = async () => {
+  Toast.loading({
+    message: "下载中...",
+    duration: 0,
+    forbidClick: true,
+  });
+  const res = await RaiApi.articlePdfwatermark({
+    ArticleId: Number(rerportId.value),
+  });
+  if (res.Ret === 200) {
+    Toast.clear();
+    wx.miniProgram.navigateTo({
+      url: `/${isYanxuan.value ? "pages-user" : "pageMy"}/downloadFile/downloadFile?url=` + res.Data.FileLink,
+    });
+  }
+};
+/* 访谈申请 */
+const applyHandle = () => {
+  !state.reportInfo.IsInterviewApply &&
+    Dialog.confirm({
+      title: "",
+      message: "专家访谈申请会提交给您的对口销售,销售会线下与您取得联系,确定申请吗?",
+      confirmButtonColor: "#fff",
+      cancelButtonColor: "#fff",
+      theme: "round-button",
+    }).then(() => {
+      interviewApi();
+    });
+  // 取消申请访谈 区分状态 '待邀请','待访谈','已完成','已取消'
+  if (state.reportInfo.IsInterviewApply) {
+    Dialog.confirm({
+      title: "",
+      message:
+        state.reportInfo.InterviewApplyStatus == "待访谈"
+          ? "当前无法取消访谈,若有疑问,请联系对口销售" + state.reportInfo.SellerMobile
+          : state.reportInfo.InterviewApplyStatus == "待邀请"
+          ? "您要取消此次访谈申请吗?"
+          : "该访谈已完成",
+      confirmButtonColor: "#fff",
+      cancelButtonColor: "#fff",
+      theme: "round-button",
+    }).then(() => {
+      state.reportInfo.InterviewApplyStatus == "待邀请" ? interviewApi() : state.reportInfo.InterviewApplyStatus == "待访谈" ? (window.location.href = "tel://" + state.reportInfo.SellerMobile) : "";
+    });
+  }
+};
+const scrolltop = () => {
+  document.body.scrollTop = document.documentElement.scrollTop = 0;
+};
+/* 文章相关热门 */
+const researcharticleHotList = async () => {
+  const res = await FreeButton.researcharticleHotList({ ArticleId: Number(rerportId.value) });
+  if (res.Ret === 200) {
+    state.reportResearch = res.Data.List || [];
+  }
+};
+//关注作者事件
+const attentionBtn = () => {
+  RaiApi.fllowDepartment({
+    DepartmentId: state.reportInfo.DepartmentId,
+  }).then((res) => {
+    if (res.Ret === 200) {
+      state.reportInfo.IsFollow = !state.reportInfo.IsFollow;
+      if (res.Data.Status == 1) {
+        state.reportInfo.FollowNum += 1;
+        if (res.Data.GoFollow) {
+          Dialog.confirm({
+            title: "作者关注成功",
+            message: "想要及时获取该作者的报告更新提示,请关注【查研观向小助手】公众号",
+            confirmButtonColor: "#fff",
+            confirmButtonText: "去关注",
+            cancelButtonColor: "#fff",
+            theme: "round-button",
+          })
+            .then(() => {
+              wx.miniProgram.navigateTo({
+                url: `/${isYanxuan.value ? "pages-activity" : "activityPages"}/accountsOfficial/accountsOfficial`,
+              });
+            })
+            .catch(() => {
+              // on cancel
+            });
+        } else {
+          Dialog.alert({
+            title: "",
+            message: "作者关注成功,请关注【查研观向小助手】公众号,及时获取作者的报告更新提示",
+            confirmButtonColor: "#3385FF",
+            confirmButtonText: "知道了",
+          });
+        }
+      } else {
+        state.reportInfo.FollowNum -= 1;
+        Toast("已取消关注");
+      }
+    }
+  });
+};
+/* 收藏 */
+const collectHandle = () => {
+  RaiApi.collectRpt({
+    ArticleId: Number(rerportId.value),
+  }).then((res) => {
+    if (res.Ret === 200) {
+      state.reportInfo.IsCollect = !state.reportInfo.IsCollect;
+      if (res.Data.Status == 2) {
+        state.reportInfo.CollectionNum -= 1;
+      } else {
+        state.reportInfo.CollectionNum += 1;
+      }
+      Toast(res.Msg);
+    }
+  });
+};
+/* 文章相关热门跳转 */
+const goDetail = (item) => {
+  wx.miniProgram.navigateTo({
+    url: `/${isYanxuan.value ? "pages-user" : "pageMy"}/reportDetail/reportDetail?id=` + item.ArticleId,
+  });
+};
+/* 文章相关热门收藏 */
+const collectClick = async (item) => {
+  const res = await RaiApi.collectRpt({ ArticleId: item.ArticleId });
+  if (res.Ret === 200) {
+    item.IsCollect = !item.IsCollect;
+    item.IsCollect ? (item.CollectNum += 1) && Toast("收藏成功") : (item.CollectNum -= 1);
+    !item.IsCollect && Toast("已取消收藏");
+  }
+};
+/* 复制 */
+const copyMonitor = () => {
+  RaiApi.pageHistoryCopy({
+    DetailId: rerportId.value + "",
+    PageType: "ArticleCopy",
+  }).then((res) => {});
+};
+const waterMark = (text) => {
+  let canvas = document.createElement("canvas");
+  let ctx = canvas.getContext("2d");
+  ctx.font = "20px Arial";
+  ctx.rotate((-45 * Math.PI) / 200);
+  ctx.fillStyle = "#DCDCDC";
+  ctx.fillText(text, 30, 160);
+  ctx.fillText(text, -40, 80);
+
+  // 将canvas的内容转换为base64编码
+  let data = canvas.toDataURL("image/png");
+  // 将容器的的背景图片设置为生成的base64图片,并平铺
+  contentBox.value.style.background = "url(" + data + ") repeat";
+};
+//点击到提问页面
+const quizBtn = () => {
+  wx.miniProgram.navigateTo({
+    url: `/${isYanxuan.value ? "pages-activity" : "activityPages"}/generationAsk/generationAsk?id=` + state.reportInfo.ArticleId + "&type=文章",
+  });
+};
+// 约访专家
+const appointment = (articleId) => {
+  console.log(articleId);
+  if (!articleId) {
+    Toast("ArticleId 值错误");
+    return;
+  }
+  Dialog.confirm({
+    message: "约访专家的请求会提醒您的对口销售,确定要发起吗?",
+    messageAlign: "left",
+    showCancelButton: true,
+    confirmButtonColor: isYanxuan.value ? "#F1A84A" : "#3385FF",
+  })
+    .then(() => {
+      RaiApi.appointmentExpert({ ArticleId: articleId }).then((res) => {
+        if (res.Ret === 200 || res.Ret === 403) {
+          Dialog.confirm({
+            message: "约访申请已提醒您的对口销售,请等待销售与您联系",
+            messageAlign: "left",
+            showConfirmButton: false,
+            cancelButtonText: "知道了",
+          })
+            .then(() => {})
+            .catch(() => {});
+        }
+      });
+    })
+    .catch(() => {});
+};
+/* 获取报告详情 */
+const getReport = (id, token, type) => {
+  if (type == "mpwechat") {
+    RaiApi.reportDtl({
+      ArticleId: id,
+      Authorization: token,
+      IsSendWx: isSendWx.value,
+    }).then((res) => {
+      if (res.Ret === 200) {
+        haveData.value = res.Data.HasPermission === 1 ? true : false;
+        if (res.Data.HasPermission === 1) {
+          //有访问权限
+          state.reportInfo = res.Data.Detail;
+          fileLink.value = res.Data.Detail.FileLink;
+          if (state.reportInfo.IsResearch || state.reportInfo.IsBelongSummary) {
+            waterMark(res.Data.Mobile);
+          }
+          $(document).on("click", "#report-content img", function (event) {
+            let imgArray = [];
+            let src_tag = $(this).attr("src");
+            let parent_tag = $(this).parent();
+            if (src_tag && !parent_tag.attr("href")) {
+              $("#report-content img").each(function (index, el) {
+                let itemSrc = $(this).attr("src");
+                imgArray.push(itemSrc);
+              });
+              wx.previewImage({ current: src_tag, urls: imgArray });
+            }
+          });
+        }
+      }
+    });
+  } else {
+    RaiApi.lookReport({
+      ArticleIdMd5: id,
+    }).then((res) => {
+      if (res.Ret === 200) {
+        haveData.value = res.Data.HasPermission === 1 ? true : false;
+        if (res.Data.HasPermission === 1) {
+          //有访问权限
+          state.reportInfo = res.Data.Detail;
+          $(document).on("click", "#report-content img", function (event) {
+            let imgArray = [];
+            let src_tag = $(this).attr("src");
+            let parent_tag = $(this).parent();
+            if (src_tag && !parent_tag.attr("href")) {
+              $("#report-content img").each(function (index, el) {
+                let itemSrc = $(this).attr("src");
+                imgArray.push(itemSrc);
+              });
+              wx.previewImage({ current: src_tag, urls: imgArray });
+            }
+          });
+        }
+      }
+    });
+  }
+};
+
+const lookDeeperReport = () => {
+  router.push({
+    path: "/strategyReport",
+    query: {
+      url: state.reportInfo.ReportLink,
+    },
+  });
+};
+const pleaseGoLogin = () => {
+  Dialog.alert({
+    message: "即将前往登录页面,请确认是否继续",
+    showCancelButton: true,
+    confirmButtonColor: "#3385ff",
+  }).then((res) => {
+    if (res == "confirm") {
+      wx.miniProgram.navigateTo({
+        url: `/${isYanxuan.value ? "pages-user" : "pageMy"}/login/login`,
+      });
+    }
+  });
+};
+onMounted(() => {
+  document.title = "报告详情";
+  if (route.query.id) {
+    rerportId.value = +route.query.id;
+    isSendWx.value = route.query.IsSendWx || "";
+    from_type.value = route.query.fromType;
+    let access_token = route.query.token || "";
+    isBinding.value = route.query.isBinding == "true" ? true : false;
+    isYanxuan.value = route.query.isYanxuan ? true : false;
+    localStorage.setItem("access_token", access_token);
+    getReport(rerportId.value, access_token, from_type.value);
+    userIsShowFreeButton();
+    if (from_type.value == "mpwechat") {
+      document.addEventListener("copy", (e) => {
+        copyMonitor();
+      });
+    } else if (from_type.value == "manage") {
+      router.push({
+        path: "/cygx/report",
+        query: {
+          id: rerportId.value,
+        },
+      });
+      return;
+    }
+    researcharticleHotList();
+  }
+});
+const { reportInfo, reportResearch } = toRefs(state);
+// url: raiReportDtl?id=3001&token=20ec44c7fe0e02ff597c324406ce49ca4b6b838e1988df75bd82084a6c0672fc&fromType=mpwechat
+</script>
+
+<style lang="scss">
+@import "./index.scss";
+.please-login {
+  margin: 50px auto 150px;
+  width: 556px;
+  height: 64px;
+  color: #fff;
+  font-size: 24px;
+  font-weight: 600;
+  background-color: #376cbb;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  border-radius: 9px;
+}
+</style>

+ 37 - 25
src/views/hzyb/chart/Detail.vue

@@ -320,7 +320,7 @@ const getChartInfo=async (type)=>{
     loading.value=true
 
     //通用类根据code获取详情
-    if(chartSource!==1) return getCommonChartDetail();
+    if(![1,11].includes(chartSource)) return getCommonChartDetail();
 
     let res=null
     // 如果是从我的图库中来的
@@ -520,18 +520,18 @@ const initRelevanceChart=(data)=>{
 
     //处理series
     let seriesData=[]
-    data.YDataList.forEach(item=>{
+    data.YDataList.forEach((item,index)=>{
         let serie_item = {
           data: item.Value,
-          type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
-          dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
+          type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'spline',
+          dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
           yAxis: 0,
           name: data.ChartInfo.ChartName,
           nameCh: data.ChartInfo.ChartName,
           nameEn: data.ChartInfo.ChartName,
           color: '#00f',
           chartType: 'linear',
-          lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth) || 3,
+          lineWidth: (chartTheme&&chartTheme.lineOptionList[index].lineWidth) || 3,
           visible:true,
           marker: {
             enabled: false
@@ -749,19 +749,19 @@ const setCommodityChart = () => {
     }
 
     //数据列
-    data.forEach(item => {
+    data.forEach((item,index) => {
         //处理首或/尾全是无效数据的以null填充
         let filterData = filterInvalidData(item)
 
         let serie_item = {
             data: filterData,
-            type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
-            dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
+            type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'spline',
+            dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
             yAxis: 0,
             name: item.Name,
             color: item.Color,
             chartType: 'linear',
-            lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth) || 3,
+            lineWidth: (chartTheme&&chartTheme.lineOptionList[index].lineWidth) || 3,
             visible: true,
             marker: {
                 enabled: false
@@ -902,7 +902,7 @@ const setSectionScatterChart = () => {
 
     //数据列
     let series = [];
-    DataList.forEach(item => {
+    DataList.forEach((item,index) => {
         //数据列
         let series_item = {
             data: [],
@@ -913,7 +913,7 @@ const setSectionScatterChart = () => {
             chartType: 'linear',
             zIndex:1,
             marker: {
-                radius: (chartTheme&&chartTheme.lineOptions.radius)||5,
+                radius: (chartTheme&&chartTheme.lineOptionList[index].radius)||5,
             },
             visible: true
         }
@@ -1056,12 +1056,12 @@ const setStatisticFrequency = () => {
 
     let series_item = {
         data: item.Value.map(_ =>[_.X,_.Y]),
-        dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
-        type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
+        dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
+        type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'spline',
         yAxis: index,
         name: item.Name,
         color: item.Color,
-        lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth)||3,
+        lineWidth: (chartTheme&&chartTheme.lineOptionList[index].lineWidth)||3,
         chartType: 'linear',
         visible: true,
         zIndex:1
@@ -1302,16 +1302,16 @@ const setRadarChart = () => {
 
     //系列
     let series = [];
-    YDataList.forEach(item => {
+    YDataList.forEach((item,index) => {
       let serie_item = {
         data: item.Value,
         pointPlacement: 'on',
-        type: (chartTheme&&chartTheme.lineOptions.lineType) || 'line',
-        dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
+        type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'line',
+        dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
         yAxis: 0,
         name: item.Name || item.Date,
         color: item.Color,
-        lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth) || 1,
+        lineWidth: (chartTheme&&chartTheme.lineOptionList[index].lineWidth) || 1,
         chartType: 'linear',
         visible: true
       };
@@ -1419,8 +1419,8 @@ const setSplineOpt=(data)=>{
             dataGrouping:{
                 enabled:false
             },
-            type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
-            dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
+            type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'spline',
+            dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
             yAxis:index,
             name:temName,
             color: item.ChartColor,
@@ -1428,6 +1428,12 @@ const setSplineOpt=(data)=>{
             visible:true,
             LatestDate:item.LatestDate,
             LatestValue:item.LatestValue,
+            marker: chartTheme && chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none'?{
+                enabled:true,
+                symbol: chartTheme.lineOptionList[index].markType || 'circle',
+                fillColor:chartTheme.lineOptionList[index].markColor,
+                radius: chartTheme.lineOptionList[index].markSize
+            }:{},
             ...predict_params
         }
         item.DataList = item.DataList || [];
@@ -1846,12 +1852,18 @@ const setSeasonOpt=(data)=>{
                 dataGrouping:{
                     enabled:false
                 },
-                type: (chartTheme&&chartTheme.lineOptions.lineType) || data.ChartStyle,
-                dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
+                type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || data.ChartStyle,
+                dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
                 yAxis:0,
                 name:item.ChartLegend,
                 color:colorsArr.slice(-chartDataHandle.length)[index],                
                 visible:true,
+                marker: chartTheme && chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none'?{
+                    enabled:true,
+                    symbol: chartTheme.lineOptionList[index].markType || 'circle',
+                    fillColor:chartTheme.lineOptionList[index].markColor,
+                    radius: chartTheme.lineOptionList[index].markSize
+                }:{},
                 ...predict_params
             }
             item.DataList=item.DataList||[]
@@ -2090,7 +2102,7 @@ const setScatterOptions = (dataList) => {
         visible:true,
         chartType: 'linear',
         marker: {
-          radius: (chartTheme&&chartTheme.lineOptions.radius)||5,
+          radius: (chartTheme&&chartTheme.lineOptionList[0].radius)||5,
         },
     }
     real_data.forEach(_ => {
@@ -2725,7 +2737,7 @@ const myChartPageChange=(type)=>{
                 v-if="resData.ChartInfo.SourcesFrom&&JSON.parse(resData.ChartInfo.SourcesFrom).isShow"
                 :style="`
                     color: ${ JSON.parse(resData.ChartInfo.SourcesFrom).color };
-                    fontSize: ${ JSON.parse(resData.ChartInfo.SourcesFrom).fontSize }px;
+                    font-size: ${ JSON.parse(resData.ChartInfo.SourcesFrom).fontSize }px;
                 `"
             >
                 数据来源:{{ JSON.parse(resData.ChartInfo.SourcesFrom).text}}
@@ -2761,7 +2773,7 @@ const myChartPageChange=(type)=>{
                 v-if="resData.ChartInfo.SourcesFrom&&JSON.parse(resData.ChartInfo.SourcesFrom).isShow"
                 :style="`
                     color: ${ JSON.parse(resData.ChartInfo.SourcesFrom).color };
-                    fontSize: ${ JSON.parse(resData.ChartInfo.SourcesFrom).fontSize }px;
+                    font-size: ${ JSON.parse(resData.ChartInfo.SourcesFrom).fontSize }px;
                 `"
             >
                 数据来源:{{ JSON.parse(resData.ChartInfo.SourcesFrom).text}}

+ 6 - 2
src/views/hzyb/chart/component/chartBox.vue

@@ -105,7 +105,11 @@ const chartDefaultOpts={
 
 const props = defineProps({
   options: Object,
-	chartInfo: Object
+	chartInfo: Object,
+    showTitle:{
+        type:Boolean,
+        default:true
+    }
 })
 import {ref,onMounted,watch,toRefs } from 'vue'
 import Highcharts from 'highcharts/highstock';
@@ -187,7 +191,7 @@ watch(
 
 <template>
     <div class="chart-wrap">
-        <div class="chart-top-labels">
+        <div class="chart-top-labels" v-if="props.showTitle">
             <div 
                 class="item" 
                 v-for="(item,index) in props.options.series" 

+ 195 - 0
src/views/hzyb/forexCalendar/Detail.vue

@@ -0,0 +1,195 @@
+<script setup>
+import { ref, reactive, onMounted } from 'vue'
+import {useRoute, useRouter,onBeforeRouteUpdate} from 'vue-router'
+import chartBox from '../chart/component/chartBox.vue'
+import {
+    apiGetbaseEdbInfo,apiGetpredictEdbInfo,apiGetCalendarEventList
+} from '@/api/hzyb/forexCalendar.js'
+import {setSplineOpt,setOptions} from '../hooks/chartBase'
+/**
+ * 外汇日历详情
+        传入参数:
+            选中的指标
+            月份的起始日期,结束日期
+        获取所有事项
+        找到带指标的事项,设置初始索引为选中的指标在所有指标事项中的位置
+        切换上下张切换索引,当到达第一张/最后一张时,循环这个列表
+ */
+const route=useRoute()
+let EdbList = ref([])
+let currentEdbIndex=ref(0) //当前展示的指标索引
+let currentEdbId=ref('') //当前展示的指标id
+let chartData=ref({
+    series:[],
+    xAxis:[],
+    yAxis:[],
+
+})// 图表配置数据
+let resData=ref({
+    EdbInfo:{}
+})//接口详情数据
+let pageBoxPosition=reactive({
+    top:window.innerHeight-165,
+    left:window.innerWidth-50,
+    temTop:0,
+    temLeft:0,
+})
+localStorage.setItem('hzyb-token',route.query.token)
+
+function pageChange(type){
+    const length = EdbList.value.length
+    if(type==='before'){
+        if(currentEdbIndex.value===0){
+            currentEdbIndex.value = length-1
+        }else{
+            currentEdbIndex.value = currentEdbIndex.value - 1
+        }
+    }else{
+        if(currentEdbIndex.value===length-1){
+            currentEdbIndex.value = 0
+        }else{
+            currentEdbIndex.value = currentEdbIndex.value + 1
+        }
+    }
+    currentEdbId.value = EdbList.value[currentEdbIndex.value].edbInfoId
+    getEdbDetail()
+}
+const pageTouchmove=(e)=>{
+    const touchObj=e.touches[0]
+    let top=touchObj.clientY-82
+    let left=touchObj.clientX-25
+    if(left<=0){
+        left=0
+    }
+    if(left>window.innerWidth-50){
+        left=window.innerWidth-50
+    }
+    if(top<=0){
+        top=0
+    }
+    if(top>window.innerHeight-115){
+        top=window.innerHeight-115
+    }
+
+    pageBoxPosition.top=top
+    pageBoxPosition.left=left
+
+    event.preventDefault();//阻止页面移动
+}
+
+//获取当月指标列表
+async function getEdbList(){
+    const {startDate,endDate,edbInfoId,permissionId,permissionName} = route.query
+    document.title = startDate.slice(0,-3)+permissionName+'事项详情'
+    await apiGetCalendarEventList({
+        chart_permission_id:Number(permissionId),
+        start_date:startDate,
+        end_date:endDate
+    }).then(res=>{
+        if(res.code!==200) return 
+        let events = (res.data?res.data:[]).map(dailyEvents=>{
+            return dailyEvents.matters
+        })
+        events = events.flat().filter(e=>e.matter_type!==1).map(e=>{
+            return {
+                edbInfoId:e.edb_info_id,
+                matterType:e.matter_type
+            }
+        })
+        EdbList.value = events
+        currentEdbId.value = Number(edbInfoId)
+        const eventIndex = events.findIndex(e=>e.edbInfoId===Number(edbInfoId))
+        currentEdbIndex.value = eventIndex>=0?eventIndex:0
+        getEdbDetail()
+    })
+}
+getEdbList()
+
+function capitalizeFirstLetter(obj) {
+  return Object.keys(obj).reduce((acc, key) => {
+    const capitalizedKey = key.charAt(0).toUpperCase() + key.slice(1);
+    acc[capitalizedKey] = obj[key];
+    return acc;
+  }, {});
+}
+async function getEdbDetail(){
+    const res = EdbList.value[currentEdbIndex.value].matterType===2
+                ?await apiGetbaseEdbInfo({edb_info_id:currentEdbId.value})
+                :await apiGetpredictEdbInfo({edb_info_id:currentEdbId.value})
+    resData.value=res.data
+    //由于EdbInfo大小写命名和后台不一致,重新整一份
+    const EdbInfo = capitalizeFirstLetter(res.data.EdbInfo)
+    const edbData = {
+        DataList:res.data.DataList||[],
+        EdbInfo:{
+            ...EdbInfo,
+            ChartColor:'',
+            ChartStyle:'',
+            PredictChartColor:'',
+            ChartType:0,
+            ChartWidth:3,
+            MaxData:res.data.EdbInfo.maxValue,
+            MinData:res.data.EdbInfo.minValue,
+            EdbInfoCategoryType:1,
+            EdbInfoType:0,
+            IsAxis:1,
+        }
+    }
+
+    chartData.value = EdbList.value[currentEdbIndex.value].matterType===2
+                      ? setOptions(res.data.DataList||[],EdbInfo)
+                      : setSplineOpt([{
+                            ...edbData.EdbInfo,
+                            DataList:res.data.DataList||[]
+                            }],
+                            {value:{ChartInfo:{ChartType:1}}}
+                        )
+}
+</script>
+
+<template>
+    <div class="edb-detail-wrap">
+        <div class="edb-title">{{resData.EdbInfo.edbName}}</div>
+        <chartBox :options='chartData' :chartInfo="{ChartType:1}" :showTitle="false"></chartBox>
+        <!-- 上一张下一张图切换 -->
+        <div 
+            class="change-page-wrap" 
+            :style="{left:pageBoxPosition.left+'px',top:pageBoxPosition.top+'px'}"
+            @touchmove.stop="pageTouchmove"
+            @touchstart.stop=""
+        >
+            <div class="top" @click.stop="pageChange('before')"></div>
+            <div class="bot" @click.stop="pageChange('next')"></div>
+        </div>
+    </div>
+</template>
+
+<style scoped lang="scss">
+.edb-detail-wrap{
+    .edb-title{
+        padding: 40px 34px 20px 34px;
+        font-size: 32px;
+        font-weight: bold;
+        color: #1F243A;
+        letter-spacing: 2px;
+        @media (min-width: 768px){
+            padding: 0px 0 20px 0;
+            font-size: 18px;
+        }
+    }
+    .change-page-wrap{
+        position: fixed;
+        right: 0;
+        bottom: 50px;
+        width: 50PX;
+        height: 115PX;
+        background-image: url('../../../assets/hzyb/chart/before-next.png');
+        background-size: cover;
+        z-index: 10;
+        .top,.bot{
+            height: 50%;
+        }
+
+    }
+}
+</style>

+ 327 - 0
src/views/hzyb/forexCalendar/Index.vue

@@ -0,0 +1,327 @@
+<script setup>
+import { ref, reactive, onMounted } from 'vue'
+import {Popup,DatetimePicker,TreeSelect,Icon as VanIcon,Toast } from 'vant'
+import {apiGetPermissionList,apiGetPermissionNewestDate,apiGetCalendarEventList,apiGetDailyEventList}  from '@/api/hzyb/forexCalendar.js'
+import moment from 'moment'
+import BaseCalendar from './components/BaseCalendar.vue'
+
+let baseCalendarRef = ref(null)
+let currentDay = ref('') //选择的日期
+function dateClick(info){
+    setEventInfo(info.dateStr)
+}
+function eventClick(info){
+    setEventInfo(info.event.startStr)
+}
+//事项列表
+let eventList = ref([])
+let showEventList = ref(false)
+async function setEventInfo(date){
+    if(!permissionValue.value) return Toast('请选择品种!')
+    currentDay.value = date||''
+    //获取当天的日历信息,若有事项,则打开弹窗
+    await getEventsByDay()
+    showEventList.value = Boolean(eventList.value.length)
+}
+async function getEventsByDay(){
+    await apiGetDailyEventList({
+        chart_permission_id:Number(permissionValue.value),
+        matter_date:currentDay.value
+    }).then(res=>{
+        if(res.code!==200){
+            eventList.value=[]
+            return 
+        }
+        eventList.value = res.data||[]
+    })
+}
+
+let monthValue = ref(null)
+let datePickShow = ref(false)
+function changeMonth(month){
+    const Month = month||new Date()
+    baseCalendarRef.value?.calendarApi.gotoDate(Month)
+    renderCalendar()
+}
+
+let typePickShow = ref(false)
+let activeId = ref(0)
+let activeIndex = ref(0)
+let items = ref([]) //vant品种列表
+
+//选择一级品种,没用到
+function clickFirstHandle(index){}
+//选择二级品种
+function clickItemHandle({text,id}){
+    //获取到品种ID
+    if(permissionValue.value===id){
+        typePickShow.value = false
+        return 
+    }
+    permissionValue.value = id
+    permissionName.value = text
+    changePermission()
+}
+//获取该品种最新月份
+async function changePermission(){
+    if(!hasAuth.value) return 
+    if(!permissionValue.value) return 
+    await getPermissionNewestMonth()
+}
+async function getPermissionNewestMonth(){
+    //获取最新月份的接口
+    await apiGetPermissionNewestDate({
+        chart_permission_id:Number(permissionValue.value)
+    }).then(res=>{
+        if(res.code!==200) return 
+        monthValue.value = moment(res.data?(res.data+'-01'):new Date())._d
+        changeMonth(monthValue.value)
+    })
+}
+
+//权限控制
+let hasAuth = ref(true)
+let noAuth = ref({
+    type:'',
+    name:'',
+    mobile:'',
+    customer_info:{}
+})
+let permissonList = ref([])
+let permissionValue = ref('') //选中的品种ID
+let permissionName = ref('') //品种名称
+function getPermissionList(){
+    apiGetPermissionList().then(res=>{
+        if(res.code===200){
+            hasAuth.value = true
+            permissonList.value = res.data||[]
+            //将品种列表转换成vant-TreeSelect支持的格式
+            items.value = permissonList.value.map(p=>{
+                p.text = p.chart_permission_name
+                if(p.children.length){
+                    p.children = p.children.map(c=>{
+                        c.text = c.chart_permission_name
+                        c.id = c.chart_permission_id
+                        return c
+                    })
+                }
+                return p
+            })
+        }else{
+            hasAuth.value = false
+            noAuth.value = res.data
+            //将无权限信息传到transIndex,transIndex显示无权限
+            window.parent.postMessage(JSON.stringify({
+                path:'/hzyb/forex/noauth',
+                query:{
+                   noAuth:noAuth.value
+                }
+            }),'*')
+        }
+    })
+}
+async function renderCalendar(){
+    typePickShow.value = false
+    datePickShow.value = false
+
+    //获取当前日历的起始日期+终止日期,可能会跨月
+    const {activeStart,activeEnd} = baseCalendarRef.value?.calendarApi.view||{}
+    const res = await apiGetCalendarEventList({
+        chart_permission_id:Number(permissionValue.value),
+        start_date:moment(activeStart).format('YYYY-MM-DD'),
+        end_date:moment(activeEnd).subtract(1, 'days').format('YYYY-MM-DD'), //activeEnd到最后一天的24:00会被认为是第二天,所以取前一天
+    })
+    if(res.code!==200) return 
+    const allEventSource = baseCalendarRef.value?.calendarApi.getEventSources()||[]
+    //先清空所有eventSource,再添加
+    allEventSource.forEach(es=>es.remove())
+    //将日历表每天的事件作为一个eventSource
+    const eventList = (res.data?res.data:[]).map(dailyEvents=>{
+        const eventSource = { id:dailyEvents.Date,events:[]}
+        eventSource.events = dailyEvents.matters.map(e=>{
+            return {
+                ...e,
+                start:e.matter_date,
+                title:e.title,
+                textColor:e.font_color||'#000',
+                backgroundColor:e.filling_color||'#fff',
+                borderColor:e.filling_color||'#fff',
+            }
+        })
+        //移动端要求每天最多展示2条
+        if(eventSource.events.length>2){
+            eventSource.events = eventSource.events.splice(0,2)
+        }
+        return eventSource
+    })
+    eventList.forEach(es=>{
+        baseCalendarRef.value?.calendarApi.addEventSource(es)
+    })
+    baseCalendarRef.value?.calendarApi.updateSize()
+}
+//跳转事项详情
+function handleClickEvent(item){
+    if(item.matter_type===1) return Toast("该事项未关联指标")
+    const {activeStart,activeEnd} = baseCalendarRef.value?.calendarApi.view||{}
+    //信息传到transIndex,在transIndex跳转
+    window.parent.postMessage({
+        path:'/hzyb/forex/detail',
+        query:{
+            startDate:moment(activeStart).format('YYYY-MM-DD'),
+            endDate:moment(activeEnd).subtract(1, 'days').format('YYYY-MM-DD'),
+            edbInfoId:item.edb_info_id,
+            permissionId:permissionValue.value,
+            permissionName:permissionName.value,
+            token:localStorage.getItem('hzyb-token')||''
+        }
+    },'*')
+    showEventList.value = false
+}
+onMounted(()=>{
+    monthValue.value = new Date()
+    getPermissionList()
+})
+</script>
+
+<template>
+    <div class="forex-calendar-wrap">
+        <div class="calendar-header">
+            <span @click.stop="datePickShow = true"><img src="@/assets/hzyb/chart/calendar.png">选择日期</span>
+            <span @click.stop="typePickShow = true"><van-icon name="bars" color="#E3B377" size="16"/>其他品种</span>
+        </div>
+        <BaseCalendar 
+            ref="baseCalendarRef"
+            :markText="{date:monthValue,type:permissionName||'请选择品种'}"
+            @dateClick="dateClick"
+            @eventClick="eventClick"
+        ></BaseCalendar>
+        <!-- 选择日期 -->
+        <Popup v-model:show="datePickShow" position="bottom">
+            <DatetimePicker
+                v-model="monthValue"
+                title="选择日期"
+                type="year-month"
+                :formatter="(type, val)=>{
+                    if (type === 'year') {
+                        return `${val}年`;
+                    } else if (type === 'month') {
+                        return `${val}月`;
+                    }
+                    return val;
+                }"
+                @confirm="changeMonth"
+                @cancel="datePickShow = false"
+            />
+        </Popup>
+        <!-- 选择品种 -->
+        <Popup v-model:show="typePickShow" position="bottom">
+            <!-- <div class="select-header">
+                <span class="cancel" @click="typePickShow=false">取消</span>
+                <span class="ensure" @click="changeType">确认</span>
+            </div> -->
+            <TreeSelect
+                v-model:active-id="activeId"
+                v-model:main-active-index="activeIndex"
+                :items="items"
+                @click-nav="clickFirstHandle" 
+                @click-item="clickItemHandle" 
+            />
+        </Popup>
+        <Popup v-model:show="showEventList" position="bottom" :style="{ height: '50%' }">
+            <div class="pop-wrap">
+                <div class="select-header">
+                    <span class="title">{{ currentDay }}{{ permissionName }}事项</span>
+                    <span class="btn" @click="showEventList=false"><van-icon name="cross" size="16"/></span>
+                </div>
+                <div class="event-list-wrap">
+                    <ul class="event-list">
+                        <li class="event-item" v-for="(item,index) in eventList" :key="index" @click="handleClickEvent(item)">
+                            {{item.title}}
+                        </li>
+                    </ul>
+                </div>
+            </div>
+        </Popup>
+    </div>
+</template>
+
+<style scoped lang="scss">
+.forex-calendar-wrap{
+    display: flex;
+    flex-direction: column;
+    width: 100%;
+    height: 100%;
+    position: absolute;
+    left:0;
+    right:0;
+    top:0;
+    bottom:0;
+    .calendar-header{
+        font-size: 16px;
+        display: flex;
+        justify-content: flex-end;
+        align-items: center;
+        height:40px;
+        span{
+            margin-right: 40px;
+            display: flex;
+            align-items: center;
+            gap:5px;
+            i{
+                font-size: 18px !important;
+            }
+            img{
+                width:15px;
+                height:15px;
+            }
+        }
+    }
+    .pop-wrap{
+        display: flex;
+        flex-direction: column;
+        height: 100%;
+        .select-header {
+            display: flex;
+            align-items: center;
+            justify-content: space-between;
+            padding: var(--van-picker-action-padding);
+            font-size: var(--van-picker-action-font-size);
+            height: var(--van-picker-toolbar-height);
+            .cancel,.btn{
+                color: #969799;
+            }
+            .ensure {
+                color: #576b95;
+            }
+            .title{
+                font-weight: bold;
+            }
+        }
+        .event-list-wrap{
+            font-size: var(--van-picker-action-font-size);
+            padding: var(--van-padding-md);
+            flex:1;
+            overflow-y: auto;
+            .event-item{
+                margin-bottom: var(--van-padding-md);
+                border-bottom: 1px solid #E7E7E7;
+            }
+        }
+    }
+    
+    .van-tree-select {
+        ::v-deep(.van-sidebar-item--select:before) {
+            background-color: #E3B377;
+        }
+
+        ::v-deep(.van-tree-select__item--active) {
+            color: #E3B377;
+        }
+
+        ::v-deep(.van-tree-select__selected) {
+            position: absolute !important;
+        }
+    }
+    
+}
+</style>

+ 189 - 0
src/views/hzyb/forexCalendar/components/BaseCalendar.vue

@@ -0,0 +1,189 @@
+<script setup>
+import { ref, reactive, onMounted } from 'vue'
+
+import '@fullcalendar/core/vdom'; // solve problem with Vite
+import FullCalendar from "@fullcalendar/vue3";
+import dayGridPlugin from '@fullcalendar/daygrid'
+import interactionPlugin from '@fullcalendar/interaction'
+import moment from 'moment'
+
+const props = defineProps({
+    showMark:{
+        type:Boolean,
+        default:true
+    },
+    markText:{
+        type:Object,
+        default:{
+            date:'2024-04',
+            type:'当前品种'
+        }
+    },
+
+})
+const emit = defineEmits(["dateClick","eventClick"])
+let FullCalendarRef = ref(null)
+let calendarApi = ref(null)
+let calendarOptions = ref({
+    height:'100%',
+    locale: "zh-cn",
+    plugins: [ dayGridPlugin, interactionPlugin ],
+    initialView:'dayGridMonth',
+    headerToolbar:false,//不显示头部信息
+    weekNumberCalculation:'ISO',//从周一开始
+    dayHeaderFormat:{ //https://fullcalendar.io/docs/v5/date-formatting
+        weekday:'narrow', //头部星期显示为一 二 三...
+    },
+    fixedWeekCount:false,
+    eventOrder:'sort',
+    dayCellContent:function(arg){ //单元格日期显示为 1 2 3...
+        return arg.date.getDate()
+    },
+    dateClick:handleDateClick,
+    eventClick:handleEventClick
+})
+function handleDateClick(info){
+    emit("dateClick",info)
+}
+function handleEventClick(info){
+    emit("eventClick",info)
+}
+
+onMounted(()=>{
+    calendarApi.value = FullCalendarRef.value.getApi()
+
+})
+defineExpose({ calendarApi });
+</script>
+
+<template>
+    <div class="base-calendar-wrap">
+        <FullCalendar :options="calendarOptions" ref="FullCalendarRef" class="full-calendar-wrap">
+            <template #eventContent="arg">
+                <div class="popper-content"
+                    :style="{fontWeight:arg.event.extendedProps.font_bold?'bold':'normal'}"
+                >
+                   {{arg.event.title||''}}
+                </div>
+            </template>
+        </FullCalendar>
+        <div class="water-mark" v-if="showMark">
+            <p>{{ moment(markText.date).format("YYYY-MM") }}</p>
+            <p>{{ markText.type }}</p>
+        </div>
+    </div>
+    
+</template>
+
+<style scoped lang="scss">
+.base-calendar-wrap{
+    flex: 1;
+    display: flex;
+    flex-direction: column;
+    position:relative;
+    .full-calendar-wrap{
+        z-index: 2;
+        flex: 1;
+        :deep(.fc-daygrid-day-top){ //日期偏左显示
+            flex-direction: row;
+        }
+        :deep(.fc-daygrid-event){
+            border-radius: 0;
+            margin:0 !important;
+        }
+        /* :deep(.fc-col-header){
+            width:100% !important;
+        }
+        :deep(.fc-daygrid-body){
+            width:100% !important;
+        }
+        :deep(.fc-scrollgrid-sync-table){
+            width:100% !important;
+        } */
+        :deep(.fc-daygrid-day-number){
+            font-size: 12px;
+            line-height: 12px;
+            padding:0 2px;
+        }
+        :deep(.fc-scrollgrid-sync-inner){
+            width: 100%;
+            height: 100%;
+            display: flex;
+            justify-content: center;
+        }
+        :deep(.fc-daygrid-day-frame.fc-scrollgrid-sync-inner){
+            display: block;
+        }
+        :deep(.fc-col-header-cell-cushion ){
+            font-size: 12px;
+            display: flex;
+            justify-content: center;
+            align-items: center;
+        }
+        :deep(.fc-scroller){
+            overflow:auto !important; //x,y轴在横屏情况下会对调,默认可滚动
+            &::-webkit-scrollbar{
+                width: 0;
+            }
+        }
+        :deep(.fc-scrollgrid){
+            border:none;
+            .fc-scrollgrid-section-header{
+                th{
+                    border:none !important;
+                }
+                .fc-col-header-cell{
+                    //font-weight: 500;
+                    .fc-scrollgrid-sync-inner{
+                        justify-content: flex-start;
+                    }
+                }
+            }
+            .fc-scrollgrid-section-body{
+                td{
+                    border: none !important;
+                    border-left:3px solid #E3B377 !important;
+                }
+            }
+        }
+        :deep(.fc-daygrid-day-events){
+            min-height: 32px !important;
+            margin-top: 0 !important;
+        }
+        :deep(.fc-more-popover){
+            display:none !important;
+        }
+        :deep(.fc-daygrid-day-bottom){
+            font-size: 12px;
+            display: none;
+        }
+        :deep(.fc-daygrid-more-link.fc-more-link){
+            font-size: 12px;
+        }
+        .popper-content{
+            font-size: 12px;
+            overflow: hidden;
+            text-overflow: ellipsis;
+            /* height: 16px; */
+        }
+    }
+    .water-mark{
+        z-index: 1;
+        position: absolute;
+        top:0;
+        bottom: 0;
+        left: 0;
+        right: 0;
+        display: flex;
+        flex-direction: column;
+        justify-content: center;
+        align-items: center;
+        font-size: 64px;
+        opacity: 0.3;
+        p{
+            margin:0;
+            padding:0;
+        }
+    }
+}
+</style>

+ 150 - 0
src/views/hzyb/forexCalendar/components/NoAuth.vue

@@ -0,0 +1,150 @@
+<script setup>
+import { computed,ref } from "vue";
+import { Dialog } from "vant";
+import {apiApplyPermission,apiUserInfo} from '@/api/hzyb/user'
+
+let userInfo=ref(null)
+const getUserInfo=async ()=>{
+  const res=await apiUserInfo()
+  if(res.code===200){
+    userInfo.value=res.data
+  }
+}
+getUserInfo()
+
+
+const props = defineProps({
+  data: Object,
+});
+
+const authType = computed(() => {
+    if(!props.data) return
+    if (props.data.type === "contact") {
+        handleAutoApply()
+        return 1;
+    }
+    if (props.data.type === "expired") {
+        return 2;
+    }
+    if (props.data.type === "apply" && !props.data.customer_info.has_apply) {
+        return 3;
+    }
+    if (props.data.type === "apply" && props.data.customer_info.has_apply) {
+        return 4;
+    }
+});
+
+const handleAutoApply=()=>{
+  if(!props.data.customer_info.has_apply){
+    if(props.data.customer_info.status=='冻结'||(props.data.customer_info.status=='试用'&&props.data.customer_info.is_suspend==1)){
+        apiApplyPermission({
+            company_name:props.data.customer_info.company_name,
+            real_name:props.data.customer_info.name,
+            source:11,
+            from_page:'事件日历'
+        }).then(res=>{
+            if(res.code===200){
+                console.log('主动申请成功');
+            }
+        }) 
+    }
+  }
+}
+
+// 点击申请
+const handleApply=()=>{
+    if(userInfo.value.is_bind===0){
+      Dialog.confirm({
+        title:'温馨提示',
+        message:'为了优化您的用户体验,\n 请登录后查看更多信息!',
+        confirmButtonText:'去登录',
+        confirmButtonColor:'#E6B77D',
+        cancelButtonColor:'#666'
+      }).then(res=>{
+        wx.miniProgram.reLaunch({url:'/pages/login'})
+      })
+      return
+    }
+
+
+    if(props.data.customer_info.status=='流失'||props.data.customer_info.status=='关闭'){
+        apiApplyPermission({
+            company_name:props.data.customer_info.company_name,
+            real_name:props.data.customer_info.name,
+            source:11,
+            from_page:'事件日历'
+        }).then(res=>{
+            wx.miniProgram.navigateTo({url:'/pages-applyPermission/applyResult'})
+        })
+        return
+    }
+    wx.miniProgram.navigateTo({ url: '/pages-applyPermission/applyPermission?source=11&from_page=事件日历' })
+}
+
+const goBack=()=>{
+  wx.miniProgram.switchTab({url:'/pages/report/report'})
+}
+</script>
+
+<template>
+  <div class="chart-noauth-wrap">
+    <img class="img" src="https://hzstatic.hzinsights.com/static/icon/hzyb/activity_no_auth.png" alt="" v-if="authType!=4" />
+    <img class="img-wait" src="https://hzstatic.hzinsights.com/static/icon/hzyb/chart_wait.png" alt="" v-else />
+    <block v-if="authType == 1">
+      <div style="margin-bottom: 15px">您暂无权限查看事件日历</div>
+      <div>若想查看请联系对口销售</div>
+      <a :href="'tel:'+props.data.mobile" tag="div" class="global-btn-yellow-change btn" style="margin-top: 30px">联系销售</a>
+    </block>
+
+    <block v-if="authType == 2">
+      <div style="margin-bottom: 15px">您的权限已到期,暂时无法查看事件日历</div>
+      <div>若想继续查看请联系对口销售</div>
+      <!-- <div>{{info.name}}:{{info.mobile}}</div> -->
+      <a :href="'tel:'+props.data.mobile" tag="div" class="global-btn-yellow-change btn" style="margin-top: 30px">联系销售</a>
+    </block>
+
+    <block v-if="authType == 3">
+      <div style="margin-bottom: 15px">您暂无权限查看事件日历</div>
+      <div>若想查看可以申请开通</div>
+      <div class="global-btn-yellow-change btn" style="margin-top: 30px" @click="handleApply">立即申请</div>
+    </block>
+
+    <block v-if="authType == 4">
+      <div style="margin-bottom: 15px">您已提交申请</div>
+      <div>请等待销售人员与您联系</div>
+      <div class="global-btn-yellow-change btn" style="margin-top: 30px" @click="goBack">返回</div>
+    </block>
+  </div>
+</template>
+
+<style lang="scss" scoped>
+.chart-noauth-wrap {
+  padding-top: 50px;
+  text-align: center;
+  font-size: 32px;
+  .img {
+    width: 100%;
+    margin-bottom: 50px;
+  }
+  .img-wait {
+    margin-top: 200px;
+    width: 186px;
+    margin-bottom: 50px;
+  }
+  .global-btn-yellow-change{
+    background: linear-gradient(270deg, #EEC795 0%, #D9A360 100%);
+    border-radius: 35px;
+    color: #fff;
+    text-align: center;
+    line-height: 70px;
+  }
+  .btn{
+    width: 380px;
+    line-height: 7rpx;
+    margin-left: auto;
+    margin-right: auto;
+    margin-top: 40px;
+    display: block;
+  }
+}
+</style>

+ 109 - 0
src/views/hzyb/forexCalendar/transIndex.vue

@@ -0,0 +1,109 @@
+<script setup>
+import { ref, reactive, onMounted,watch,nextTick } from 'vue'
+import {useRoute,useRouter} from 'vue-router'
+import NoAuth from './components/NoAuth.vue'
+//强制横屏
+const forceLandscape = (id = '.iframe-class') => {
+  const handler = () => {
+    let width = document.documentElement.clientWidth;
+    let height = document.documentElement.clientHeight;
+    let targetDom = document.querySelector(id);
+    if (!targetDom) return;
+    
+    if (width > height) {
+      targetDom.style.position = 'absolute';
+      targetDom.style.width = `${width}px`;
+      targetDom.style.height = `${height}px`;
+      targetDom.style.left = `${0}px`;
+      targetDom.style.top = `${0}px`;
+      targetDom.style.transform = 'none';
+      targetDom.style.transformOrigin = '50% 50%';
+    } else {
+      targetDom.style.position = 'absolute';
+      targetDom.style.width = `${height}px`;
+      targetDom.style.height = `${width}px`;
+      targetDom.style.left = `${0 - (height - width) / 2}px`;
+      targetDom.style.top = `${(height - width) / 2}px`;
+      targetDom.style.transform = 'rotate(90deg)';
+      targetDom.style.transformOrigin = '50% 50%';
+    }
+  };
+
+  const handleResize = () => {
+    setTimeout(() => {
+      handler();
+    }, 300);
+  };
+
+  window.addEventListener('resize', handleResize);
+
+  handler();
+};
+const router = useRouter()
+function changeRoute(msg){
+    let data
+    try{
+        data = typeof msg.data === 'string'?JSON.parse(msg.data):msg.data||{}
+    }catch(e){
+        data = {}
+    }
+    const {path,query} = data
+
+    if(!path||!query) return //vue-devtools也会发message
+
+    if(path.includes('noauth')){
+        noAuth.value = query.noAuth
+        hasAuth.value = false
+        return
+    }
+    router.push({
+        path,
+        query
+    })
+
+}
+let hasAuth = ref(true)
+let noAuth = ref({
+    "name": "俞梦涯", //销售名称
+    "mobile": "15988911628", //销售电话
+    "type": "contact", //类型:
+    "hz_phone": "", //弘则公司电话
+    "customer_info": {
+    "company_name": "江苏智谋科技有限公司", //客户公司名称
+    "name": "孙浩", //用户姓名
+    "mobile": "18883968626", //用户手机号
+    "status": "冻结", //客户状态
+    "is_suspend": 0, //是否暂停:0-否;1-是
+    "has_apply": false //是否有申请过
+    }
+})
+watch(hasAuth,(newVal,oldVal)=>{
+    if(newVal){
+        nextTick(()=>{
+            window.dispatchEvent(new Event('resize'))
+        })
+        
+    }
+})
+
+const iframeURLBase = ref(process.env.NODE_ENV === 'development'?'/xcx_h5':'')
+const route = useRoute()
+onMounted(()=>{
+    localStorage.setItem('hzyb-token',route.query.token)
+    forceLandscape()
+    window.addEventListener('message',changeRoute)
+})
+</script>
+
+<template>
+    <!-- 直接将旋转作用在Index.vue上会导致日历插件dateClick不触发,vant组件滑动手势x,y轴相反 -->
+    <!-- 包一层,iframe为可替换元素,内部元素不受父级样式影响,但overflow-x,overflow-y判断会对调 -->
+    <iframe :src="iframeURLBase+'/hzyb/forex/index'" class="iframe-class" v-if="hasAuth"></iframe>
+    <NoAuth v-else :data="noAuth"></NoAuth>
+</template>
+
+<style scoped lang="scss">
+.iframe-class{
+    border:0;
+}
+</style>

+ 436 - 0
src/views/hzyb/hooks/chartBase.js

@@ -0,0 +1,436 @@
+//图表数据处理 公共函数
+/**
+ * 为了应对之后其他页面需要渲染Highcharts图表的情况
+ * 基于 hzyb/chart/Detail.vue 内的函数进一步封装
+ * 非/---/括起来的部分表示对原函数有调整,/---/括起来的部分是直接复制的
+ */
+import moment from 'moment'
+import Highcharts from 'highcharts';
+import {basicYAxis,basicXAxis} from '../utils/chartBaseConfig'
+
+//--------------------------------------
+/* 指标顺序调整  IsAxis: 0右轴 1左轴 2右2*/
+export const changeEdbOrder = (data) => {
+    // 左轴指标
+    let left_edbs = data.filter(_ => _.IsAxis===1);
+    //右轴指标
+    let right_edbs = data.filter(_ => !_.IsAxis);
+    // 右2轴指标
+    let right_two_edbs = data.filter(_ => _.IsAxis === 2);
+    // 按 左 右 右2顺序排列
+    return [left_edbs,right_edbs,right_two_edbs].flat(Infinity);
+}
+/* 拼接数据列动态name */
+export const setDyncmicSerieName = (item,dynamic_arr) => {
+    const { IsAxis,IsOrder,EdbInfoType,LeadValue,LeadUnit }  = item;
+    // IsAxis左轴1 右轴0 2右2轴 
+      //IsOrder正序false 逆序true 
+      //EdbInfoType是否是领先指标
+    const axisLabelMap = {
+        0: '右轴',
+        2: '右2轴'
+    }
+    const orderLabelMap = {
+        1: '逆序'
+    }
+    const edbInfoMap = {
+        0: '领先'
+    }
+
+    let axis_tag = axisLabelMap[IsAxis] || '';
+      //逆序拼接
+    let order_tag = orderLabelMap[Number(IsOrder)] ? `${axis_tag ? ',': ''}${orderLabelMap[Number(IsOrder)]}` : ''
+      //领先拼接
+    let edb_tag = edbInfoMap[EdbInfoType] ? `${(axis_tag||order_tag) ? ',' : '' }${edbInfoMap[EdbInfoType]}${LeadValue}${LeadUnit}` : '';
+
+    let dynamic_tag = (axis_tag || order_tag || edb_tag) ? `(${axis_tag}${order_tag}${edb_tag})` : '';
+
+    let temName = dynamic_arr.length > 1
+                ? `${item.EdbName}(${item.SourceName})${dynamic_tag}`
+                : `${item.EdbName}${dynamic_tag}`
+    if(temName.length>20){
+        let temArr=[]
+        for(let i=0;i<temName.length/20;i++){
+            temArr.push(temName.slice(i*20,i*20+20))
+        }
+        // console.log(temArr);
+        temName=temArr.join('<br>')
+    }
+
+    return temName
+}
+/* 预测配置 分区 */
+export const getPredictParams = ({LatestDate,MoveLatestDate,PredictChartColor,ChartStyle},chartStyle) => {
+    return {
+    zoneAxis: 'x',
+    zones: [{
+        value: new Date(MoveLatestDate||LatestDate).getTime()+1
+    }, {
+        dashStyle: 'ShortDot',
+        color: (ChartStyle==='column' || chartStyle==='column') ? 'transparent' : PredictChartColor
+    }]
+    }
+}
+// 查询范围为1年内 x轴显示为月/日 否则默认年/月
+export const xTimeDiffer=(minTime,maxTime)=>{
+    //年限差
+    let year_differ=moment(maxTime).diff(moment(minTime),'years',true)
+    console.log('年限差',year_differ)
+    if (year_differ<=1) {
+        console.log('true');
+        return true;
+    } else {
+        console.log('false');
+        return false;
+    }
+}
+//-------------------------------------
+ /* 处理轴的标识线结构 在指定轴位置上拼接标识线 
+    0:右轴 1:左轴 2:右2轴 x轴固定3
+    axisType表示x轴类型 处理时间轴的值 datetime/null 
+*/
+export const setAxisPlotLines = (axis,axisType,resData) => {
+    const { MarkersLines,ChartType } = resData.value.ChartInfo;
+    const { EdbInfoList } = resData.value;
+    if(!MarkersLines) return []
+
+    let markerLines = JSON.parse(MarkersLines);
+
+    let arr = markerLines.filter(_ => _.isShow&&_.axis===axis)
+    let plotLines = arr.map(_ => {
+        //是否是x时间轴
+        let isXDateAxis = axis===3&&axisType==='datetime';
+        let markerValue;
+        if(isXDateAxis) {
+            //季节图x轴额外拼个年份
+            let nowYear = ChartType===2 ? new Date(EdbInfoList[0].DataList[1].DataList
+                [0].DataTimestamp).getFullYear() : '';
+            markerValue = ChartType===2 
+                ? new Date(`${nowYear}-${_.value}`).getTime()
+                : new Date(_.value).getTime()
+        }else {
+            markerValue = Number(_.value)
+        }
+
+        return { 
+        value: markerValue,
+        dashStyle: _.dashStyle,
+        width: Number(_.lineWidth),
+        color: _.color,
+        label: {
+            text: _.text||'',
+            verticalAlign: _.textPosition,
+            style: {
+            color: _.textColor,
+            fontSize: _.textFontSize
+            }
+        }
+        }
+    })
+    return plotLines
+}
+/* 处理标识区拼接 axisType表示x轴类型处理时间轴的值 datetime/null */
+export const setAxisPlotAreas = (axis,axisType,resData) => {
+    const { MarkersAreas,ChartType } = resData.value.ChartInfo;
+    const { EdbInfoList } = resData.value;
+    if(!MarkersAreas) return []
+
+    let markerAreas = JSON.parse(MarkersAreas);
+
+    let arr = markerAreas.filter(_ => _.isShow&&_.axis===axis)
+    let plotBands = arr.map(_ => {
+        //是否是x时间轴
+        let isXDateAxis = axis===3&&axisType==='datetime';
+        let fromMarkerValue,toMarkerValue;
+        if(isXDateAxis) {
+            //季节图x轴额外拼个年份
+            let nowYear = ChartType===2 ? new Date(EdbInfoList[0].DataList[1].DataList
+                [0].DataTimestamp).getFullYear() : '';
+                console.log(nowYear)
+            fromMarkerValue = ChartType===2 
+                ? new Date(`${nowYear}-${_.fromValue}`).getTime()
+                : new Date(_.fromValue).getTime()
+
+            toMarkerValue = ChartType===2 
+                ? new Date(`${nowYear}-${_.toValue}`).getTime()
+                : new Date(_.toValue).getTime()
+        }else {
+            fromMarkerValue = Number(_.fromValue);
+            toMarkerValue = Number(_.toValue);
+        }
+
+        //默认label有些偏移 重新归正下
+        let positionMapValue = {
+            'top': 12,
+            'middle': 0,
+            'bottom': -10
+        }
+
+        return { 
+            from: fromMarkerValue,
+            to: toMarkerValue,
+            color: _.color,
+            label: {
+                text: _.text||'',
+                verticalAlign: _.textPosition,
+                y: positionMapValue[_.textPosition],
+                style: {
+                    color: _.textColor,
+                    fontSize: _.textFontSize
+                }
+            }
+        }
+    })
+
+    return plotBands
+}
+
+
+// 设置常规图配置 曲线
+export const setSplineOpt=(data,resData)=>{
+    console.log('setSplineOpt')
+    let series=[]
+    let yAxis=[]
+    let xAxis = {}
+
+    let temYLeftArr=[]
+    let temYRightArr=[]
+    let temYRightTwoArr = []
+    let temYLeftIndex=data.findIndex((item) => item.IsAxis===1)
+    let temYRightIndex=data.findIndex((item) => !item.IsAxis)
+    let temYRightTwoIndex = data.findIndex((item) => item.IsAxis===2)
+
+     /* 主题样式*/
+    const chartTheme =  resData.value.ChartInfo.ChartThemeStyle ? JSON.parse(resData.value.ChartInfo.ChartThemeStyle) : null;
+    let minAndMaxTimeTemArr=[]//存放所有指标的最大最小时间
+
+    //有右二轴时排个序 按照左 右 右2的顺序
+    let newData = data.some(_ =>_.IsAxis===2) ? changeEdbOrder(data) : data;
+    
+
+    newData.forEach((item,index)=>{
+
+         //轴位置值相同的下标
+        let sameSideIndex = newData.findIndex(i => i.IsAxis === item.IsAxis);
+
+        let dynamic_title = item.EdbName;
+        let dynamic_arr = newData.filter(
+          (item) => dynamic_title === item.EdbName
+        );
+        //处理数据列name
+        let temName= setDyncmicSerieName(item,dynamic_arr)  
+
+        //预测指标配置
+        let predict_params = item.EdbInfoCategoryType === 1 ? getPredictParams(item) : {};
+
+        let seriesItemObj={
+            data:[],
+            dataGrouping:{
+                enabled:false
+            },
+            type: (chartTheme&&chartTheme.lineOptionList[index].lineType) || 'spline',
+            dashStyle: (chartTheme&&chartTheme.lineOptionList[index].dashStyle)||'Solid',
+            yAxis:index,
+            name:temName,
+            color: item.ChartColor,
+            lineWidth: Number(item.ChartWidth),
+            visible:true,
+            LatestDate:item.LatestDate,
+            LatestValue:item.LatestValue,
+            ...predict_params
+        }
+        item.DataList = item.DataList || [];
+        for (let i of item.DataList) {
+          seriesItemObj.data.push([i.DataTimestamp, i.Value]);
+        }
+        series.push(seriesItemObj)
+        
+
+        // 设置y轴
+        if(item.IsAxis){
+            temYLeftArr.push(item)
+        }else{
+            temYRightArr.push(item)
+        }
+
+        let yItem={
+            ...basicYAxis,
+            IsAxis:item.IsAxis,
+            labels: {
+                formatter: function (ctx) {
+                    return sameSideIndex !== index ? '' : ctx.value;
+                },
+                align: 'center',
+                x: [0,2].includes(item.IsAxis) ? 5 : -5,
+                style:{
+                    ...chartTheme&&chartTheme.yAxisOptions.style
+                },
+            },
+            tickWidth: sameSideIndex !== index ? 0 : 1,
+            title: {
+                text:  sameSideIndex !== index ? '' : `${item.Unit||''}`,
+                align: 'high',
+                rotation: 0,
+                y: -15,
+                x: (item.IsAxis===0 && temYRightTwoIndex>-1) ? -newData[temYRightTwoIndex].Unit.length*12 : 0,
+                textAlign: item.IsAxis===1 ? 'left' : 'right',
+                reserveSpace: false,
+                style:{
+                    ...chartTheme&&chartTheme.yAxisOptions.style
+                },
+            },
+            opposite: [0,2].includes(item.IsAxis),
+            reversed: item.IsOrder,
+            min: item.MinData,
+            max: item.MaxData,
+            visible: sameSideIndex === index,
+            plotBands: setAxisPlotAreas(item.IsAxis,'',resData),
+            plotLines: setAxisPlotLines(item.IsAxis,'',resData),
+            chartEdbInfo:item//指标数据用于在保存时读取指标数据
+        }
+        yAxis.push(yItem)
+        
+        if(item.DataList.length>0){
+            minAndMaxTimeTemArr.push(item.DataList[0].DataTimestamp)
+            minAndMaxTimeTemArr.push(item.DataList[item.DataList.length-1].DataTimestamp)
+        }
+        
+    })
+
+    // 设置x轴
+    // 找出所有指标的最大和最小时间 分成6段
+    let minTime=Math.min.apply(null,minAndMaxTimeTemArr)
+    let maxTime=Math.max.apply(null,minAndMaxTimeTemArr)
+    const isLessThanOneYear = xTimeDiffer(minTime,maxTime)
+    xAxis={
+        ...basicXAxis,
+        tickInterval:((maxTime-minTime)/6)/(24*3600*1000)>30?(maxTime-minTime)/6:24*3600*1000*30,
+        labels: {
+            formatter:  (ctx)=> {
+                return isLessThanOneYear
+                ? Highcharts.dateFormat('%m/%d', ctx.value)
+                : Highcharts.dateFormat('%y/%m', ctx.value);
+            },
+            style: {
+                ...chartTheme&&chartTheme.xAxisOptions.style
+            }
+        },
+        plotBands: setAxisPlotAreas(3,'datetime',resData),
+        plotLines: setAxisPlotLines(3,'datetime',resData)
+    }
+    yAxis.forEach(item=>{
+        if(item.IsAxis===1){//左轴
+            item.min=data[temYLeftIndex].MinData
+            item.max=data[temYLeftIndex].MaxData
+        }else if (item.IsAxis===2){ // 右2轴
+            item.min=data[temYRightTwoIndex].MinData
+            item.max=data[temYRightTwoIndex].MaxData
+        }else{
+            item.min=data[temYRightIndex].MinData
+            item.max=data[temYRightIndex].MaxData
+        }
+    })
+    return {
+        series,
+        xAxis:[xAxis],
+        yAxis,
+        rangeSelector:{ enabled: false}
+    }
+}
+
+/* 图表配置 曲线*/
+export function setOptions(tableData,chartInfo) {
+    console.log('setOptions')
+    const chartData = tableData
+    //拼接标题 数据列
+    let data = [],ydata = [];
+    //y轴
+    let yItem = {
+        title: {
+            text: chartInfo.Unit||'',
+            align: 'high',
+            rotation: 0,
+            y: -12,
+            x: 0,
+            textAlign: 'left',
+            reserveSpace: false,
+        },
+        labels: {
+            formatter: function (ctx) {
+                return ctx.value;
+            },
+            align: 'center',
+        },
+        min: Number(chartInfo.MinValue),
+        max: Number(chartInfo.MaxValue),
+        lineWidth: 1,
+        lineColor: '#bfbfbf',
+        tickColor: '#bfbfbf',
+        opposite: false,
+        reversed: false,
+        visible: true,
+        gridLineWidth: 0,
+        tickWidth: 1,
+        tickLength:5,
+        tickPosition: 'inside',
+        endOnTick: false,
+        startOnTick: false,
+        showLastLabel: true, //显示最后刻度值
+        tickPixelInterval: 50
+    }
+    // 图例名称和图例文字样式
+    let dataName = chartInfo.EdbName||''
+    let color = '#333'
+    let legend = {
+        enabled: true,
+        verticalAlign: 'top',
+        margin:12,
+        itemMarginBottom:0,
+        itemMarginTop: 0,
+        itemStyle: {
+            color
+        },
+    }
+    //数据列
+    let obj = {
+        data: [],
+        type: 'spline',
+        yAxis: 0,
+        name: dataName,
+        lineWidth: 3,
+    }
+    chartData.forEach((item, index) => {
+        obj.data.push([item.DataTimestamp, item.Value]);
+    })
+    
+    data.push(obj);
+    ydata.push(yItem);
+
+    // 默认年/月
+    let xAxis = {}
+    xAxis = {
+        tickPosition: 'inside',
+        lineColor: '#bfbfbf',
+        tickColor: '#bfbfbf',
+        tickLength:5,
+        type: 'datetime',
+        ordinal: false,
+        dateTimeLabelFormats: {
+            day: '%y/%m',
+            week: '%y/%m',
+            month: '%y/%m',
+            year: '%y/%m',
+        },
+        labels: {
+            formatter: function (ctx) {
+                return Highcharts.dateFormat('%y/%m', ctx.value);
+            },
+        },
+    }
+    return  {
+        series: data,
+        yAxis: ydata,
+        xAxis,
+        legend
+    }
+}

+ 1 - 1
src/views/hzyb/report/ChapterDetail.vue

@@ -281,7 +281,7 @@ export default {
          })
          if(res.code===200){
            wx.miniProgram.navigateTo({
-             url:"/pages-report/disseminatePage/disseminatePage?imgHb="+item.jump_url_mobile
+             url:"/pages-report/disseminatePage/disseminatePage?imgHb="+item.jump_url_mobile+'&title='+item.remark
            })
          }
     },

+ 1 - 1
src/views/hzyb/report/Detail.vue

@@ -306,7 +306,7 @@ export default {
             })
             if(res.code===200){
               wx.miniProgram.navigateTo({
-                url:"/pages-report/disseminatePage/disseminatePage?imgHb="+item.jump_url_mobile
+                url:"/pages-report/disseminatePage/disseminatePage?imgHb="+item.jump_url_mobile+'&title='+item.remark
               })
             }
         },

+ 78 - 0
src/views/hzyb/report/surveyDetail.vue

@@ -0,0 +1,78 @@
+<script setup>
+import { onMounted, ref } from "vue";
+import { getBannerQrcode, getBannerDetail } from "@/api/hzyb/report";
+
+import { useRoute, useRouter } from "vue-router";
+const route = useRoute();
+const router = useRouter();
+
+const codeImg = ref("");
+async function getCodeImg() {
+  const res = await getBannerQrcode({
+    UserId: route.query.userId,
+    BannerId: route.query.bannerId,
+    Remark: route.query.remark,
+  });
+  if (res.code === 200) {
+    codeImg.value = res.data;
+  }
+}
+
+const bannerImg = ref("");
+
+async function getBannerImg() {
+  const res = await getBannerDetail({
+    banner_id: route.query.bannerId,
+  });
+  if (res.code === 200) {
+    bannerImg.value = res.data.jump_url_mobile;
+  }
+}
+
+// xcx_h5/hzyb/surveyDetail?token=e235b413337f3efc4db3a0b86c78ce4bdd141bf0d0410dd4b2bab561005b41a2&userId=83664&bannerId=4&remark=炼油调研
+
+onMounted(() => {
+  console.log(route.query);
+  localStorage.setItem("hzyb-token", route.query.token);
+  getCodeImg();
+  getBannerImg();
+});
+</script>
+
+<template>
+  <div class="survey-container">
+    <img class="survey-bg-img" :src="bannerImg" />
+    <div class="r-code">
+      <img :src="codeImg" />
+    </div>
+  </div>
+</template>
+
+<style lang="scss" scoped>
+* {
+  padding: 0;
+  margin: 0;
+}
+.survey-container {
+  position: relative;
+  width: 100%;
+  height: auto;
+  .survey-bg-img {
+    display: block;
+    width: 100%;
+    height: 100%;
+  }
+  .r-code {
+    position: absolute;
+    left: 50%;
+    bottom: 200px;
+    width: 256px;
+    height: 256px;
+    transform: translateX(-50%);
+    img {
+      width: 100%;
+      height: 100%;
+    }
+  }
+}
+</style>

+ 139 - 0
src/views/hzyb/report/surveyHistory.vue

@@ -0,0 +1,139 @@
+<script setup>
+import { onMounted, ref } from "vue";
+import {
+  apiPublicBannerList,
+  apiPublicBannerMark,
+  bannerHistoryList,
+} from "@/api/hzyb/report";
+import { List } from "vant";
+import { useRoute, useRouter, onBeforeRouteUpdate } from "vue-router";
+const route = useRoute();
+const router = useRouter();
+const bannerDataList = ref([]);
+
+// banner 获取列表
+async function getBannerList() {
+  const res = await apiPublicBannerList();
+  if (res.code == 200) {
+    // 加载状态结束
+    bannerDataList.value = res.data;
+  }
+}
+
+const loading = ref(false);
+const finished = ref(false);
+
+function surveyHistoryLoad() {
+  if (loading.value) return;
+  page.value++;
+  getSurveyHistoryList();
+}
+const page = ref(1);
+const limit = ref(10);
+const bannerHistoryDataList = ref([]);
+
+// 获取已结束的调研
+async function getSurveyHistoryList() {
+  loading.value = true;
+  const res = await bannerHistoryList({
+    page: page.value,
+    limit: limit.value,
+  });
+  loading.value = false;
+  if (res.code === 200) {
+    let arr = res.data.list || [];
+    bannerHistoryDataList.value = [...bannerHistoryDataList.value, ...arr];
+    if (res.data.paging.is_end) {
+      finished.value = true;
+    }
+  }
+}
+
+// banner 点击事件
+async function bannerSwiperHandler(item) {
+  const res = await apiPublicBannerMark({
+    first_source: 1, //一级来源 1小程序移动 2小程序pc 3研报官网
+    second_source: 2, //二级来源 1首页 2研报详情页
+    id: item.id,
+  });
+  if (res.code === 200) {
+    wx.miniProgram.navigateTo({
+      url:
+        "/pages-report/disseminatePage/disseminatePage?imgHb=" +
+        encodeURIComponent(item.jump_url_mobile) +
+        "&title=" +
+        item.remark +
+        "&id=" +
+        item.id +
+        "&enable=" +
+        item.enable,
+    });
+  }
+}
+
+onMounted(() => {
+  localStorage.setItem("hzyb-token", route.query.token);
+  getBannerList();
+  getSurveyHistoryList();
+  document.title = "调研列表";
+});
+</script>
+
+<template>
+  <div class="container survey-history-content">
+    <div class="state-content">进行中</div>
+    <div
+      class="activity-content"
+      v-for="item in bannerDataList"
+      :key="item.id"
+      @click="bannerSwiperHandler(item)"
+    >
+      <img :src="item.image_url_mobile" alt="" />
+    </div>
+    <div class="state-content" style="margin-top: 20px">已结束</div>
+    <List
+      v-model:loading="loading"
+      :finished="finished"
+      finished-text="没有更多了"
+      @load="surveyHistoryLoad"
+    >
+      <div
+        class="activity-content"
+        v-for="item in bannerHistoryDataList"
+        :key="item.id"
+        @click="bannerSwiperHandler(item)"
+      >
+        <img :src="item.image_url_mobile" alt="" />
+      </div>
+    </List>
+  </div>
+</template>
+
+<style lang="scss" scoped>
+.survey-history-content {
+  padding: 35px;
+  .state-content {
+    position: relative;
+    font-size: 28px;
+    font-weight: 500;
+    padding-left: 15px;
+    &::after {
+      content: "";
+      position: absolute;
+      top: 8px;
+      left: 0;
+      width: 6px;
+      height: 27px;
+      background-color: #e3b377;
+    }
+  }
+  .activity-content {
+    margin-top: 20px;
+    width: 100%;
+    img {
+      width: 100%;
+      height: auto;
+    }
+  }
+}
+</style>

+ 44 - 0
src/views/hzyb/utils/chartBaseConfig.js

@@ -0,0 +1,44 @@
+//图表基础配置
+// 散点x轴
+export const scatterXAxis = {
+    tickPosition: 'inside',
+    lineColor: '#bfbfbf',
+    tickColor: '#bfbfbf',
+    tickLength:5,
+    ordinal: false,
+    type: 'linear',
+}
+
+// 基础y轴配置
+export const basicYAxis = {
+    tickWidth: 1,
+    tickLength: 5,
+    lineWidth: 1,
+    lineColor: '#bfbfbf',
+    tickColor: '#bfbfbf',
+    // offset: 0,
+    visible: true,
+    gridLineWidth: 0,
+    tickPosition: 'inside',
+    endOnTick: false,
+    startOnTick: false,
+    showLastLabel: true,
+    tickPixelInterval: 50,
+}
+
+//基础x轴配置
+export const basicXAxis={
+    tickPosition: 'inside',
+    lineColor: '#bfbfbf',
+    tickColor: '#bfbfbf',
+    tickLength:5,
+    type: 'datetime',
+    ordinal: false,
+    dateTimeLabelFormats: {
+        day: '%y/%m',
+        week: '%y/%m',
+        month: '%y/%m',
+        year: '%y/%m',
+    },
+    xDateFormat:'%Y-%m-%d'
+}