123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063 |
- <html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <link rel="icon" href="/icon-logo.png">
- <meta name="ProgId" content="Word.Document">
- <meta name="Generator" content="Microsoft Word 14">
- <meta name="Originator" content="Microsoft Word 14">
- <title>万维空间隐私政策</title>
- <style>
- @font-face {
- font-family: "Times New Roman";
- }
- @font-face {
- font-family: "宋体";
- }
- @font-face {
- font-family: "Wingdings";
- }
- @font-face {
- font-family: "Calibri";
- }
- @font-face {
- font-family: "Arial";
- }
- @font-face {
- font-family: "微软雅黑";
- }
- p.MsoNormal {
- mso-style-name: 正文;
- mso-style-parent: "";
- margin: 0pt;
- margin-bottom: 0.0001pt;
- mso-pagination: none;
- text-align: justify;
- text-justify: inter-ideograph;
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- }
- span.10 {
- font-family: Wingdings;
- }
- span.msoIns {
- mso-style-type: export-only;
- mso-style-name: "";
- text-decoration: underline;
- text-underline: single;
- color: blue;
- }
- span.msoDel {
- mso-style-type: export-only;
- mso-style-name: "";
- text-decoration: line-through;
- color: red;
- }
- table.MsoNormalTable {
- mso-style-name: 普通表格;
- mso-style-parent: "";
- mso-style-noshow: yes;
- mso-tstyle-rowband-size: 0;
- mso-tstyle-colband-size: 0;
- mso-padding-alt: 0pt 5.4pt 0pt 5.4pt;
- mso-para-margin: 0pt;
- mso-para-margin-bottom: 0.0001pt;
- mso-pagination: widow-orphan;
- font-family: "Times New Roman";
- font-size: 10pt;
- mso-ansi-language: #0400;
- mso-fareast-language: #0400;
- mso-bidi-language: #0400;
- }
- table.MsoTableGrid {
- mso-style-name: 网格型;
- mso-tstyle-rowband-size: 0;
- mso-tstyle-colband-size: 0;
- mso-padding-alt: 0pt 5.4pt 0pt 5.4pt;
- mso-border-top-alt: 0.5pt solid windowtext;
- mso-border-left-alt: 0.5pt solid windowtext;
- mso-border-bottom-alt: 0.5pt solid windowtext;
- mso-border-right-alt: 0.5pt solid windowtext;
- mso-border-insideh: 0.5pt solid windowtext;
- mso-border-insidev: 0.5pt solid windowtext;
- mso-para-margin: 0pt;
- mso-para-margin-bottom: 0.0001pt;
- mso-pagination: none;
- text-align: justify;
- text-justify: inter-ideograph;
- font-family: "Times New Roman";
- font-size: 10pt;
- mso-ansi-language: #0400;
- mso-fareast-language: #0400;
- mso-bidi-language: #0400;
- }
- @page {
- mso-page-border-surround-header: no;
- mso-page-border-surround-footer: no;
- }
- @page Section0 {
- margin-top: 72pt;
- margin-bottom: 72pt;
- margin-left: 90pt;
- margin-right: 90pt;
- size: 595.3pt 841.9pt;
- layout-grid: 15.6pt;
- mso-header-margin: 42.55pt;
- mso-footer-margin: 49.6pt;
- }
- div.Section0 {
- page: Section0;
- }
- </style>
- </head>
- <body style="
- tab-interval: 21pt;
- text-justify-trim: punctuation;
- padding: 24px;
- ">
- <!--StartFragment-->
- <div class="Section0" style="layout-grid: 15.6pt">
- <p class="MsoNormal" align="center" style="text-align: center">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 48px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 48px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">隐私政策</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 48px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">生效日期:</font><font face="微软雅黑">2023年1</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">1</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">月</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">30</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">日</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">更新日期:</font><font face="微软雅黑">2023年1</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">1</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">月</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">30</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">日</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">欢迎您使用</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">服务!</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">浙江万维空间信息技术有限公司</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">及其关联公司(简称</font><font face="微软雅黑">“</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">我们</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">”)深知个人信息对您的重要性,您的信赖对我们非常重要,我们将严格遵守法律法规要求采取相应的安全保护措施、保护您的个人信息安全性。基于此,我们制定本《</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">隐私政策》(简称</font><font face="微软雅黑">“</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">本政策</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">”),帮助您充分了解在您参与使用本服务的过程中,我们会如何收集、使用、共享、存储和保护您的个人信息以及您可以如何管理您的个人信息,以便您更好地作出适当的选择。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">在正式开启本服务前,请您务必先仔细阅读和理解本政策,特别应重点阅读我们以</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">粗体</font><font face="微软雅黑">/</font></span></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">粗体下划线</font></span></u></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">标识的条款,确保您充分理解和同意之后再开始使用。</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">除本政策外,在特定场景下,我们还会通过即时告知(含弹窗、页面提示等)、功能更新说明等方式,向您说明对应的信息收集目的、范围及使用方式,这些即时告知及功能更新说明等构成本政策的一部分,并与本政策具有同等效力。</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">本政策中涉及的专业词汇,我们尽量以简明通俗的表述向您解释,以便于您理解。</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">如对本政策内容有任何疑问、意见或建议,您可通过本政策文末的联系方式与我们联系。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">本政策将帮助您了解以下内容:</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">一、本政策的适用范围</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">二、我们如何收集和使用您的个人信息</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">三、我们如何共享、转让、公开披露您的个人信息</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">四、您如何管理您的个人信息</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">五、我们如何保护和保存您的个人信息</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">六、未成年人用户信息的特别约定</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">七、本政策的更新</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">八、如何联系我们</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">一、本政策的适用范围</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">1.1. 本政策适用于App、小程序以及随技术发展出现的新形态(统称</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">“</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用</font><font face="微软雅黑">”</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">)向您提供的各项产品和服务。若我们及关联公司向您提供的产品或服务内设有单独隐私政策或类似法律文件,该等单独的文件优先适用。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">1.2. </font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">本政策不适用于其他第三方向您提供的服务,您的信息处理及保护事宜应当适用该等第三方的隐私权政策或类似文件,我们对任何第三方不当使用或披露由您提供的信息不承担任何法律责任。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">二、我们如何收集和使用您的个人信息</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">在您使用本服务期间,我们可能通过以下两种方式获取您的信息:</font></span></u></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></u></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(</font><font face="微软雅黑">1)您在使用本服务期间主动向我们提供的信息,如您在注册账号过程中填写的相应信息;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(</font><font face="微软雅黑">2)在您使用本服务期间,我们主动收集的相关信息,如在您使用</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用的操作记录或其他日志类数据等。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">在您使用本服务期间,我们需要</font><font face="微软雅黑">/可能需要收集和使用的您的个人信息包括如下两种:</font></span></u></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></u></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(</font><font face="微软雅黑">1)为实现向您提供</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用的基本功能或服务,您须授权我们收集、使用的必要的信息。</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">如您拒绝提供相应信息,您将无法正常使用本服务。</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(</font><font face="微软雅黑">2)为实现向您提供</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用的附加功能或服务,您可选择单独同意或不同意我们收集、使用的信息。</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">如您拒绝提供,您将无法正常使用相关附加功能或无法达到我们拟达到的功能效果,但不会影响您正常使用本服务的基本功能。</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(一)为向您提供</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用的基本功能或服务</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.1. 帮助您完成账号注册</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.1.1.
- 为帮助您完成账号注册,您需要向我们提供您的手机号码、短信验证码。</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">如果您拒绝提供上述信息,您将无法注册</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用账号,进而无法正常使用本服务。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.2. 为您提供对话应用</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.2.1.
- 本服务的对话应用依赖于您输入的内容,即我们需要收集并记录</font></span><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">您与</font></span></u></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></u></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用对话时所输入的文本信息,</font></span></u></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">并为您提供智能对话服务。同时,为便于您随时能查看及管理对话历史记录,我们会记录你与</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用的对话记录,包括您输入的文本对话信息、以及基于上述信息形成的对话主题。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.2.2.</font></span></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "> </span></u></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></u></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用致力于为您提供更为优质的服务,在对输入内容进行标识化处理且确保无法重新识别特定个人的前提下,我们会使用单个对话内的上下文信息对</font></span></u></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></u></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用进行改善及优化,如提高对话质量和响应速度、以及对您输入内容的理解能力。</font></span></u></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.3. 为保证本服务稳定开展</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.3.1.
- 为保证本服务正常开展,我们可能会收集您在使用本服务过程中产生的日志数据(包括您的浏览器信息和类型、您提出请求的日期和时间,以及您如何与我们的网站互动)、使用信息(您的位置、例如客户端日期和访问时间、服务端日期和访问时间、计算机或移动设备的类型、网络信息、运行中应用列表)、设备信息(包括您正在使用的设备信息、操作系统、文件目录和浏览器类型)、Cookie等来帮助我们进行服务情况分析,并进一步帮助我们能有效地增强您的使用体验。特别地,我们承诺,不会将Cookie用于本政策所述目的之外的任何其他用途。我们使用Cookie主要为了保障服务体验的安全、高效运转,可以使我们确认您账号的安全状态,排查崩溃、延迟的相关异常情况,帮助您省去重复填写表单、输入搜索内容的步骤和流程。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.3.2.
- 为提高本服务安全性,保护您或其他用户或公众的人身安全、财产安全、账号安全,更好地预防钓鱼网站、欺诈、网络漏洞、计算机病毒、网络攻击、网络侵入、恶意程序等安全风险,更准确地识别违反法律法规或相关协议、规则的情况,我们及我们的关联公司会收集您的设备信息、日志信息,并可能使用或整合您的设备信息、日志信息,来综合判断您账号及使用风险、进行身份验证、检测及防范安全事件,并依法采取必要的记录、审计、分析、处置措施。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(二)为向您提供</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用的附加功能或服务</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.4. 为您提供意见反馈渠道</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">在应用服务过程中,您可以根据实际情况对</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">应用的回复做出评价,</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">在经过去标识化且无法重新识别特定个人的前提下,我们将收集您的评价及反馈,以改善</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">的对话质量,优化服务体验。如您拒绝向我们提供前述信息,可能无法享受我们向您提供的附加服务,但您仍可正常使用本服务的基本功能。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.5. 基于系统权限为您提供的附加功能</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 36pt; mso-char-indent-count: 3">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">为向您提供更便捷的产品及</font><font face="微软雅黑">/或服务,努力提升您的体验,我们在向您提供的以下附加功能中可能会通过开启系统权限以收集和使用您的个人信息。</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">如果您不同意开启相关权限,不会影响您使用</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">App的基本功能,但您可能无法获得这些附加功能给您带来的额外用户体验。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-weight: bold;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 31.55pt; mso-char-indent-count: 3">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-weight: bold;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p> </o:p></span></b>
- </p>
- <table class="MsoTableGrid" border="1" cellspacing="0" style="
- border-collapse: collapse;
- border: none;
- mso-border-left-alt: 0.5pt solid windowtext;
- mso-border-top-alt: 0.5pt solid windowtext;
- mso-border-right-alt: 0.5pt solid windowtext;
- mso-border-bottom-alt: 0.5pt solid windowtext;
- mso-border-insideh: 0.5pt solid windowtext;
- mso-border-insidev: 0.5pt solid windowtext;
- mso-padding-alt: 0pt 5.4pt 0pt 5.4pt;
- ">
- <tbody><tr>
- <td width="106" valign="top" style="
- width: 106.5pt;
- padding: 0pt 5.4pt 0pt 5.4pt;
- border-left: 1pt solid windowtext;
- mso-border-left-alt: 0.5pt solid windowtext;
- border-right: 1pt solid windowtext;
- mso-border-right-alt: 0.5pt solid windowtext;
- border-top: 1pt solid windowtext;
- mso-border-top-alt: 0.5pt solid windowtext;
- border-bottom: 1pt solid windowtext;
- mso-border-bottom-alt: 0.5pt solid windowtext;
- ">
- <p class="MsoNormal">
- <span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><font face="宋体">权限名称</font></span><b><span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-weight: bold;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- </td>
- <td width="106" valign="top" style="
- width: 106.5pt;
- padding: 0pt 5.4pt 0pt 5.4pt;
- border-left: 1pt solid windowtext;
- mso-border-left-alt: 0.5pt solid windowtext;
- border-right: 1pt solid windowtext;
- mso-border-right-alt: 0.5pt solid windowtext;
- border-top: 1pt solid windowtext;
- mso-border-top-alt: 0.5pt solid windowtext;
- border-bottom: 1pt solid windowtext;
- mso-border-bottom-alt: 0.5pt solid windowtext;
- ">
- <p class="MsoNormal">
- <span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><font face="宋体">权限功能说明</font></span><b><span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-weight: bold;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- </td>
- <td width="106" valign="top" style="
- width: 106.5pt;
- padding: 0pt 5.4pt 0pt 5.4pt;
- border-left: 1pt solid windowtext;
- mso-border-left-alt: 0.5pt solid windowtext;
- border-right: 1pt solid windowtext;
- mso-border-right-alt: 0.5pt solid windowtext;
- border-top: 1pt solid windowtext;
- mso-border-top-alt: 0.5pt solid windowtext;
- border-bottom: 1pt solid windowtext;
- mso-border-bottom-alt: 0.5pt solid windowtext;
- ">
- <p class="MsoNormal">
- <span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><font face="宋体">使用场景或目的</font></span><span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- </td>
- <td width="106" valign="top" style="
- width: 106.5pt;
- padding: 0pt 5.4pt 0pt 5.4pt;
- border-left: 1pt solid windowtext;
- mso-border-left-alt: 0.5pt solid windowtext;
- border-right: 1pt solid windowtext;
- mso-border-right-alt: 0.5pt solid windowtext;
- border-top: 1pt solid windowtext;
- mso-border-top-alt: 0.5pt solid windowtext;
- border-bottom: 1pt solid windowtext;
- mso-border-bottom-alt: 0.5pt solid windowtext;
- ">
- <p class="MsoNormal">
- <span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><font face="宋体">适用系统</font></span><span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- </td>
- </tr>
- <tr>
- <td width="106" valign="top" style="
- width: 106.5pt;
- padding: 0pt 5.4pt 0pt 5.4pt;
- border-left: 1pt solid windowtext;
- mso-border-left-alt: 0.5pt solid windowtext;
- border-right: 1pt solid windowtext;
- mso-border-right-alt: 0.5pt solid windowtext;
- border-top: none;
- mso-border-top-alt: 0.5pt solid windowtext;
- border-bottom: 1pt solid windowtext;
- mso-border-bottom-alt: 0.5pt solid windowtext;
- ">
- <p class="MsoNormal">
- <span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><font face="宋体">麦克风</font></span><span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- ">android.permission.RECORD_AUDIO/ Microphone Usage
- Description</span><b><span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-weight: bold;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- </td>
- <td width="106" valign="top" style="
- width: 106.5pt;
- padding: 0pt 5.4pt 0pt 5.4pt;
- border-left: 1pt solid windowtext;
- mso-border-left-alt: 0.5pt solid windowtext;
- border-right: 1pt solid windowtext;
- mso-border-right-alt: 0.5pt solid windowtext;
- border-top: none;
- mso-border-top-alt: 0.5pt solid windowtext;
- border-bottom: 1pt solid windowtext;
- mso-border-bottom-alt: 0.5pt solid windowtext;
- ">
- <p class="MsoNormal">
- <span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><font face="宋体">实现语音转文字,为用户提供便捷</font></span><b><span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-weight: bold;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- </td>
- <td width="106" valign="top" style="
- width: 106.5pt;
- padding: 0pt 5.4pt 0pt 5.4pt;
- border-left: 1pt solid windowtext;
- mso-border-left-alt: 0.5pt solid windowtext;
- border-right: 1pt solid windowtext;
- mso-border-right-alt: 0.5pt solid windowtext;
- border-top: none;
- mso-border-top-alt: 0.5pt solid windowtext;
- border-bottom: 1pt solid windowtext;
- mso-border-bottom-alt: 0.5pt solid windowtext;
- ">
- <p class="MsoNormal">
- <span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><font face="宋体">为向用户提供语音快速输入对话内容功能,需要调用麦克风权限</font></span><b><span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-weight: bold;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- </td>
- <td width="106" valign="top" style="
- width: 106.5pt;
- padding: 0pt 5.4pt 0pt 5.4pt;
- border-left: 1pt solid windowtext;
- mso-border-left-alt: 0.5pt solid windowtext;
- border-right: 1pt solid windowtext;
- mso-border-right-alt: 0.5pt solid windowtext;
- border-top: none;
- mso-border-top-alt: 0.5pt solid windowtext;
- border-bottom: 1pt solid windowtext;
- mso-border-bottom-alt: 0.5pt solid windowtext;
- ">
- <p class="MsoNormal">
- <span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- ">Android/ IOS</span><span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-weight: bold;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p> </o:p></span></b>
- </p>
- </td>
- </tr>
- </tbody></table>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">您可在您设备的</font><font face="微软雅黑">“设置”页面中或我们客户端“个人中心-权限管理”中逐项查看上述权限的状态,可自行决定这些权限随时的开启或关闭。请您注意,您开启任一权限即代表您授权我们可以收集和使用相关个人信息来为您提供对应服务,您一旦关闭任一权限即代表您取消了授权,我们将不再基于对应权限继续收集和使用相关个人信息,也无法为您提供该权限所对应的服务。但是,您关闭权限的决定不会影响此前基于您的授权所进行的信息收集及使用。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(三)无需获得您授权同意的个人信息收集、使用例外情形</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.6.
- 您充分知晓,依据可适用的法律,在以下情形中,我们收集、使用您的个人信息无需征得您的授权同意:</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.6.1. 涉及国家安全与利益、社会公共利益的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.6.2.
- 为履行我们的法定职责或者法定义务或者响应政府部门指示所必需的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.6.3. 与您签订和履行您作为协议或其他书面文件一方所必需的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.6.4.
- 为应对突发公共卫生事件,或者紧急情况下为保护您和他人的生命健康和财产安全所必需;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.6.5. 在合理的范围内处理您自行向社会公众公开的个人信息;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.6.6.
- 在合理的范围内处理从合法公开披露的信息中收集的您的个人信息(如合法的新闻报道、政府信息公开等渠道);</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.6.7. 法律法规规定的其他情形。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.7.
- 如您拒绝我们收集和处理前述信息,请您谨慎输入文本信息。如您输入的内容(包括但不限于对话信息、评价、反馈)涉及第三方的信息(包括但不限于个人信息),在输入这些信息之前,您需确保您已经取得合法的授权,避免泄露他人个人信息,侵犯他人权利。</font></span></u></b><b><u><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- text-decoration: underline;
- text-underline: single;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></u></b>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">2.8.
- 请您理解,我们向您提供的功能和服务是不断更新和发展的,如果某一功能或服务未被包含在上述说明中且收集了您的信息,我们会通过页面提示、交互流程、网站公告、另行签署协议等方式另行向您说明信息收集的内容、范围和目的,以征得您的同意。</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">三、我们如何共享、转让、公开披露您的个人信息</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">我们产品或</font><font face="微软雅黑">/及服务中的某些模块和功能将由服务提供商提供,为此,我们可能会与合作伙伴共享您的某些个人信息,以提供更好的客户服务和用户体验。我们在与该等合作伙伴进行合作时,将会遵守以下原则:</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(</font><font face="微软雅黑">1)合法正当与最小必要原则</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">:数据处理应当具有合法性基础,具有正当的目的,并以实现处理目的最小范围为限;</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(</font><font face="微软雅黑">2)用户知情权与决定权最大化原则:</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">数据处理过程中充分尊重用户对其个人信息处理享有的知情权与决定权;</font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(</font><font face="微软雅黑">3)安全保障能力最强化原则</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">:我们将采取必要措施保障所处理个人信息的安全,审慎评估合作方使用数据的目的,对这些合作方的安全保障能力进行综合评估,并要求其遵循合作协议的有关要求。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.1. 委托处理</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">我们可能委托授权合作伙伴(如技术服务方、授权合作伙伴等)处理您的个人信息,以便授权合作伙伴代表我们为您提供某些服务或履行职能。我们仅会出于本政策声明的合法、正当、必要、特定、明确的目的委托其处理您的信息,授权合作伙伴只能接触到其履行职责所需信息,且我们将会通过协议要求其不得将此信息用于其他任何超出委托范围的目的。如果授权合作伙伴将您的信息用于我们未委托的用途,其将单独征得您的同意。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.2. 第三方共享</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">原则上,我们不会与其他组织和个人共享您的用户信息,但以下情况除外:</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.2.1. 在获取您明确同意的情况下共享:</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">获得您的明确同意后,我们会与其他方共享您的用户信息。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.2.2. 为履行</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">法定义务所必需的共享:</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">我们可能会根据法律法规规定、诉讼、仲裁解决需要,或按行政、司法机关依法提出的要求,对外共享您的用户信息。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.2.3.
- 为订立、履行您作为一方当事人的合同所必需的情况下的共享。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.3. SDK 的使用</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.3.1.
- 为保障我们客户端的稳定运行、功能实现,使您能够使用和享受更多的服务及功能,我们的应用中会嵌入授权合作伙伴的
- SDK
- 或其他类似的应用程序,该等SDK将可能会采集您的信息,如硬件型号、硬件序列号、操作系统版本号、SD卡数据、MAC地址、唯一设备识别码、软件版本号、网络接入方式及类型、操作日志信息等。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.3.2. 我们会对授权合作伙伴获取有关信息的应用程序接口( API
- )、软件工具开发包( SDK
- )进行严格的安全检测,并与授权合作伙伴约定严格的数据保护措施,令其按照本政策以及其他任何相关的保密和安全措施来处理个人信息。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.3.3.
- 对我们与之共享用户信息的公司、组织和个人,我们会与其签署严格的保密协议以及信息保护约定,要求他们按照我们的说明、本政策以及其他任何相关的保密和安全措施来处理用户信息。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.4. 转让</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">原则上,我们不会与其他组织和个人共享您的用户信息,但在</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">与其他法律主体者发生合并、收购或破产清算情形,或其他涉及合并、收购或破产清算情形时,如涉及到用户信息转让,我们会要求新的持有您用户信息的公司、组织继续受本政策的约束,否则我们将要求该公司、组织和个人重新向您征求授权同意。如涉及破产且无承接方的情形,我们将依法对数据进行删除处理。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.5. 公开披露</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">我们仅会在以下情况下公开披露您的用户信息:</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.5.1.
- 获得您充分同意或基于您的主动选择,我们可能会公开披露您的用户信息;或</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.5.2. 为保护</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">平台及其关联公司用户或公众的人身财产安全免遭侵害,我们可能依据适用的法律或</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">万维空间</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">平台相关协议、规则披露关于您的用户信息。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.6. 对外提供用户信息时事先征得授权同意的例外</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">以下情形中,对外提供用户信息无需事先征得您的授权同意:</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.6.1. 与国家安全、国防安全有关的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.6.2. 与公共安全、公共卫生、重大公共利益有关的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.6.3. 与刑事侦查、起诉、审判和判决执行等有关的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.6.4.
- 出于维护您或其他个人的生命、财产等重大合法权益但又很难得到本人同意的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.6.5. 您自行向社会公众公开的个人信息;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.6.6.
- 从合法公开披露的信息中收集个人信息的,如合法的新闻报道、政府信息公开等渠道;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">3.6.7.
- 为履行我们的法定职责或者法定义务或者响应政府部门指示所必需的。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">四、您如何管理您的个人信息</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.1. 查阅、更正和补充</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.1.1. 您可自行在【“个人中心”-“账号管理”/
- “权限管理”】内查阅、更正我们收集、使用您信息的基本情况;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.1.2.
- 如无法自行操作,您可通过【本政策披露的联系方式】与我们取得联系,我们将协助您进一步完成相应操作。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.2. 复制</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">您可以通过以下方式复制您的信息:</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.2.1.
- 您可自行在【“个人中心”-“账号管理”】内,复制可自行查阅的信息;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.2.2.
- 如无法自行操作,您可通过【本政策披露的联系方式】与我们取得联系,我们将协助您进一步完成相应操作。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.3. 删除</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.3.1.
- 您可自行在【“个人中心”-“账号管理”】内,删除可自行查阅的信息;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.3.2.
- 在以下情形中,您可以通过本政策披露的联系方式与我们联系,向我们提出删除其他信息的请求:</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(</font><font face="微软雅黑">1)如果我们处理用户信息的行为违反法律法规;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(</font><font face="微软雅黑">2)如果我们收集、使用您的用户信息,却未征得您的明确同意;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">(</font><font face="微软雅黑">3)如果我们处理个人信息的行为严重违反了与您的约定。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.3.3.
- 当您或我们协助您删除相关信息后,因为适用的法律和安全技术限制,我们可能无法立即从备份系统中删除相应的信息,我们将安全地存储您的个人信息并限制对其的任何进一步的处理,直到备份可以清除或实现匿名化。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.4. 改变或撤回授权范围</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.4.1.
- 您可自行在【“个人中心”-“权限管理”】管理权限授权状态,以改变或撤回您此前向我们做出的授权;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.4.2.
- 您也可以通过本政策披露的联系方式与我们联系,改变或者收回您授权我们收集和处理您的个人信息的范围;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.4.3. </font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">当您撤回同意后,我们将不再处理相应的个人信息。但您撤回同意的决定,不会影响我们此前基于您的授权而开展的个人信息处理行为。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.5. 注销账户</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.5.1. 您可自行在【“个人中心”-“账号管理”】提交账号注销申请。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.5.2. </font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">在您主动注销账户之后,我们将停止为您提供产品或服务,并根据删除您的个人信息,或对其进行匿名化处理,但法律法规或行业监管规则另有规定的除外。</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.6. 响应您的上述请求</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.6.1.
- 为保障安全,您可能需要提供书面请求,或以其他方式证明您的身份。我们可能会先要求您验证自己的身份,然后再处理您的请求。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.6.2.
- 对于您合理的请求,我们原则上不收取费用,但对多次重复、超出合理限度的请求,我们有权酌情收取一定费用。对于与您的身份不直接关联的信息、无合理理由重复申请的信息,或者需要过多技术手段(如需要开发新系统或从根本上改变现行惯例)、给他人合法权益带来风险或者不切实际的请求,我们可能会予以拒绝。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.7.
- 在符合相关法律要求的情况下,您的近亲属经我们身份核实后,可以对您的相关个人信息行使上述查阅、更正、删除、复制等权利,但您另有安排的除外。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.8. 响应您的权利请求的例外</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">以下情形中,我们有权不响应您的上述权利请求:</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.8.1. 与我们履行法律法规规定的义务相关的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.8.2. 与国家安全、国防安全直接相关的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.8.3. 与公共安全、公共卫生、重大公共利益直接相关的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.8.4. 与刑事侦查、起诉、审判和执行判决等直接相关的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.8.5.
- 我们有充分证据表明您或其他个人信息主体存在主观恶意或滥用权利的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.8.6. 出于维护您或其他个人信息主体的生命、财产等重大合法权益
- 但又很难得到本人授权同意的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.8.7.
- 响应您或其他个人信息主体的请求将导致您或其他个人信息主体、组织的合法权益受到严重损害的;</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal" style="text-indent: 24pt; mso-char-indent-count: 2">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">4.8.8. 涉及商业秘密的。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">五、我们如何保护和保存您的个人信息</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">5.1.
- 我们非常重视您的信息安全。我们努力采取各种合理的物理、电子和管理方面的安全措施来保护您的用户信息。防止用户信息遭到未经授权访问、公开披露、使用、修改、损坏或丢失。例如,我们会使用加密技术提高用户信息的安全性;我们会使用受信赖的保护机制防止用户信息遭到恶意攻击;我们会部署访问控制机制,尽力确保只有授权人员才可访问用户信息;以及我们会举办安全和隐私保护培训课程,加强员工对于保护用户信息重要性的认识。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">5.2.
- 我们会采取合理可行的措施,尽力避免收集无关的用户信息。我们只会在达成本政策所述目的所需的期限内保留您的用户信息,除非受到法律的允许。超出上述用户信息保存期限后,我们会对您的个人信息进行删除或匿名化处理。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">5.3.
- 尽管我们已经按照相关法律法规要求采取了合理有效的安全措施,但由于技术限制和可能存在的恶意手段,我们不能保证百分之百的信息安全。请您了解并理解,我们所提供的系统和通信网络可能会受到我们无法控制的因素影响而出现问题。因此,我们强烈建议您采取积极措施来保护个人信息的安全,例如使用复杂密码、定期更改密码、不将账号密码和相关个人信息透露给他人等。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">5.4.
- 在不幸发生用户信息安全事件(泄露、丢失等)后,我们将按照法律法规的要求,及时向您告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、您可自主防范和降低风险的建议、对您的补救措施等。我们将及时将事件相关情况以邮件、信函、电话、推送通等等方式告知您,难以逐一告知用户信息主体时,我们会采取合理、有效的方式发布公告。同时,我们还将按照监管部门要求,上报用户信息安全事件的处置情况。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">5.5.
- 如出现产品和服务停止运营的情形,我们会采取合理措施保护您用户信息安全,包括及时停止继续收集用户信息的活动;停止运营的通知将以逐一送达或公告的形式通知用户;并对所持有的个人信息进行删除或匿名化处理等。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">5.6.
- 原则上,我们在中华人民共和国境内开展业务过程中产生或收集的个人信息,将存储在中华人民共和国境内;除非为向您提供某项服务所必需,我们会在获得您单独同意,并采取其他法律法规要求的措施下,方会向境外传输您的个人信息。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">六、未成年人用户信息的特别约定</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">6.1. </font></span><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">我们面向成年人提供本服务及其他相关产品。如您为未成年人,</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">请勿</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">使用我们的产品或服务以及向我们提供信息。</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">6.2.
- 受制于现有技术和商业模式,我们很难在账号注册环节主动识别未成年人的个人信息,如我们审查发现存在未成年人个人信息的情况,我们也主动对相关个人信息予以删除或进行匿名化处理。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">七、本政策的更新</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">7.1.
- 为给您带来更好的服务体验,我们持续努力改进我们的技术。我们可能会更新我们的隐私政策,并通过短信或其他适当的方式提醒您更新的内容,以便您及时了解本隐私政策的最新版本。但未经您明确同意,我们不会限制您按照本政策所享有的权利。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">7.2.
- 对于重大变更,我们还会提供更为显著的通知(包括我们会通过短信、邮件进行通知或向您提供弹窗提示)再次向您告知,并根据法律法规的相关要求征得您的同意。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">八、如何联系我们</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal" style="mso-pagination: widow-orphan; text-align: left">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">您对本政策内容有任何疑问和意见,或者您上述实践以及操作上有任何疑问和意见,您可以通过</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">【发送邮件至</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">houyw@zjugis.com</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">】</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">方式与我们联系,我们将在</font><font face="微软雅黑">15天内回复您的请求。如您对我们的解决方式不满,您有权向中国互联网举报中心投诉。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑"></font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">附录:相关定义</font></span></b><b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span></b>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">个人信息</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">:以电子或者其他方式记录的与已识别或者可识别的自然人有关的各种信息</font><font face="微软雅黑">,不包括匿名化处理后的信息。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">敏感个人信息</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">:敏感个人信息是一旦泄露或者非法使用,容易导致自然人的人格尊严受到侵害或者人身、财产安全受到危害的个人信息,包括生物识别、宗教信仰、特定身份、医疗健康、金融账户、行踪轨迹等信息,以及不满十四周岁未成年人的个人信息。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">设备信息:</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">包括硬件型号、硬件序列号、软件列表、应用安装列表、软件安装列表、唯一设备识别码</font><font face="微软雅黑">IMEI、设备MAC地址、SIM卡IMSI信息、Android
- ID、MEID、OpenUDID、GUID、IDFA、IDFV、BSSID、GAID、蓝牙信息、广播组件通讯信息、ICCID、BSSID、SSID、运营商信息、传感器(陀螺仪、重力传感器、加速度传感器、环境传感器、光学心率传感器)、剪切板。以实际采集情况为准。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">日志信息:</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">包括时间、用户</font><font face="微软雅黑">ID、对话ID、对话内容,以及IP地址、浏览器类型、电信运营商、使用语言、访问日期和时间。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">去标识化</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">:指个人信息经过处理,使其在不借助额外信息的情况下无法识别特定自然人的过程。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">匿名化:</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">指个人信息经过处理无法识别特定自然人且不能复原的过程。</font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-weight: bold;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">Cookie</font></span></b><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><font face="微软雅黑">:</font><font face="微软雅黑">Cookie和同类设备信息标识技术是互联网中普遍使用的技术。当您体验本服务时,我们可能会使用相关技术向您的设备发送一个或多个Cookie或匿名标识符,以收集、标识和存储您访问、使用本产品时的信息。
- </font></span><span style="
- mso-spacerun: 'yes';
- font-family: 微软雅黑;
- font-size: 32px;
- mso-font-kerning: 1pt;
- "><o:p></o:p></span>
- </p>
- <p class="MsoNormal">
- <span style="
- mso-spacerun: 'yes';
- font-family: Calibri;
- mso-fareast-font-family: 宋体;
- mso-bidi-font-family: Arial;
- font-size: 28px;;
- mso-font-kerning: 1pt;
- "><o:p> </o:p></span>
- </p>
- </div>
- <!--EndFragment-->
- </body></html>
|