UserAgreement.html 284 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418
  1. <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=gb2312" ><meta name=ProgId content=Word.Document ><meta name=Generator content="Microsoft Word 14" ><meta name=Originator content="Microsoft Word 14" ><title></title><!--[if gte mso 9]><xml><o:DocumentProperties><o:Author>Lydia.</o:Author><o:LastAuthor>听风念ㄖ亽</o:LastAuthor><o:Revision>1</o:Revision><o:Pages>9</o:Pages><o:Characters>7597</o:Characters><o:Lines>58</o:Lines><o:Paragraphs>16</o:Paragraphs></o:DocumentProperties><o:CustomDocumentProperties><o:KSOProductBuildVer dt:dt="string" >2052-11.1.0.14036</o:KSOProductBuildVer><o:ICV dt:dt="string" >212E54C2D08C475D94E824941BB908AB_13</o:ICV></o:CustomDocumentProperties></xml><![endif]--><!--[if gte mso 9]><xml><o:OfficeDocumentSettings></o:OfficeDocumentSettings></xml><![endif]--><!--[if gte mso 9]><xml><w:WordDocument><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery><w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery><w:DocumentKind>DocumentNotSpecified</w:DocumentKind><w:DrawingGridVerticalSpacing>7.8 磅</w:DrawingGridVerticalSpacing><w:View>Web</w:View><w:Compatibility><w:AdjustLineHeightInTable/><w:DontGrowAutofit/><w:BalanceSingleByteDoubleByteWidth/><w:DoNotExpandShiftReturn/><w:UseFELayout/></w:Compatibility><w:Zoom>0</w:Zoom></w:WordDocument></xml><![endif]--><!--[if gte mso 9]><xml><w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true" DefSemiHidden="true" DefQFormat="false" DefPriority="99" LatentStyleCount="260" >
  2. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Normal" ></w:LsdException>
  3. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="heading 1" ></w:LsdException>
  4. <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 2" ></w:LsdException>
  5. <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 3" ></w:LsdException>
  6. <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 4" ></w:LsdException>
  7. <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 5" ></w:LsdException>
  8. <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 6" ></w:LsdException>
  9. <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 7" ></w:LsdException>
  10. <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 8" ></w:LsdException>
  11. <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 9" ></w:LsdException>
  12. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 1" ></w:LsdException>
  13. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 2" ></w:LsdException>
  14. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 3" ></w:LsdException>
  15. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 4" ></w:LsdException>
  16. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 5" ></w:LsdException>
  17. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 6" ></w:LsdException>
  18. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 7" ></w:LsdException>
  19. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 8" ></w:LsdException>
  20. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 9" ></w:LsdException>
  21. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="toc 1" ></w:LsdException>
  22. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="toc 2" ></w:LsdException>
  23. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="toc 3" ></w:LsdException>
  24. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 4" ></w:LsdException>
  25. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 5" ></w:LsdException>
  26. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 6" ></w:LsdException>
  27. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 7" ></w:LsdException>
  28. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 8" ></w:LsdException>
  29. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 9" ></w:LsdException>
  30. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Normal Indent" ></w:LsdException>
  31. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="footnote text" ></w:LsdException>
  32. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="annotation text" ></w:LsdException>
  33. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="header" ></w:LsdException>
  34. <w:LsdException Locked="false" Priority="99" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="footer" ></w:LsdException>
  35. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index heading" ></w:LsdException>
  36. <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="caption" ></w:LsdException>
  37. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="table of figures" ></w:LsdException>
  38. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="envelope address" ></w:LsdException>
  39. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="envelope return" ></w:LsdException>
  40. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="footnote reference" ></w:LsdException>
  41. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="annotation reference" ></w:LsdException>
  42. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="line number" ></w:LsdException>
  43. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="page number" ></w:LsdException>
  44. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="endnote reference" ></w:LsdException>
  45. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="endnote text" ></w:LsdException>
  46. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="table of authorities" ></w:LsdException>
  47. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="macro" ></w:LsdException>
  48. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toa heading" ></w:LsdException>
  49. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List" ></w:LsdException>
  50. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet" ></w:LsdException>
  51. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Number" ></w:LsdException>
  52. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List 2" ></w:LsdException>
  53. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List 3" ></w:LsdException>
  54. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List 4" ></w:LsdException>
  55. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List 5" ></w:LsdException>
  56. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Bullet 2" ></w:LsdException>
  57. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Bullet 3" ></w:LsdException>
  58. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Bullet 4" ></w:LsdException>
  59. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Bullet 5" ></w:LsdException>
  60. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Number 2" ></w:LsdException>
  61. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Number 3" ></w:LsdException>
  62. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Number 4" ></w:LsdException>
  63. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Number 5" ></w:LsdException>
  64. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Title" ></w:LsdException>
  65. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Closing" ></w:LsdException>
  66. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Signature" ></w:LsdException>
  67. <w:LsdException Locked="false" Priority="1" SemiHidden="false" QFormat="true" Name="Default Paragraph Font" ></w:LsdException>
  68. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Body Text" ></w:LsdException>
  69. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Body Text Indent" ></w:LsdException>
  70. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Continue" ></w:LsdException>
  71. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 2" ></w:LsdException>
  72. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 3" ></w:LsdException>
  73. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 4" ></w:LsdException>
  74. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 5" ></w:LsdException>
  75. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Message Header" ></w:LsdException>
  76. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Subtitle" ></w:LsdException>
  77. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Salutation" ></w:LsdException>
  78. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Date" ></w:LsdException>
  79. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Body Text First Indent" ></w:LsdException>
  80. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Body Text First Indent 2" ></w:LsdException>
  81. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Note Heading" ></w:LsdException>
  82. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Body Text 2" ></w:LsdException>
  83. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Body Text 3" ></w:LsdException>
  84. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Body Text Indent 2" ></w:LsdException>
  85. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Body Text Indent 3" ></w:LsdException>
  86. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Block Text" ></w:LsdException>
  87. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Hyperlink" ></w:LsdException>
  88. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="FollowedHyperlink" ></w:LsdException>
  89. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Strong" ></w:LsdException>
  90. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Emphasis" ></w:LsdException>
  91. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Document Map" ></w:LsdException>
  92. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Plain Text" ></w:LsdException>
  93. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="E-mail Signature" ></w:LsdException>
  94. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Normal (Web)" ></w:LsdException>
  95. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Acronym" ></w:LsdException>
  96. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Address" ></w:LsdException>
  97. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Cite" ></w:LsdException>
  98. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Code" ></w:LsdException>
  99. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Definition" ></w:LsdException>
  100. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Keyboard" ></w:LsdException>
  101. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Preformatted" ></w:LsdException>
  102. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Sample" ></w:LsdException>
  103. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Typewriter" ></w:LsdException>
  104. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Variable" ></w:LsdException>
  105. <w:LsdException Locked="false" Priority="99" SemiHidden="false" QFormat="true" Name="Normal Table" ></w:LsdException>
  106. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="annotation subject" ></w:LsdException>
  107. <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="No List" ></w:LsdException>
  108. <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="1 / a / i" ></w:LsdException>
  109. <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="1 / 1.1 / 1.1.1" ></w:LsdException>
  110. <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Article / Section" ></w:LsdException>
  111. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Simple 1" ></w:LsdException>
  112. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Simple 2" ></w:LsdException>
  113. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Simple 3" ></w:LsdException>
  114. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 1" ></w:LsdException>
  115. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 2" ></w:LsdException>
  116. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 3" ></w:LsdException>
  117. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 4" ></w:LsdException>
  118. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Colorful 1" ></w:LsdException>
  119. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Colorful 2" ></w:LsdException>
  120. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Colorful 3" ></w:LsdException>
  121. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 1" ></w:LsdException>
  122. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 2" ></w:LsdException>
  123. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 3" ></w:LsdException>
  124. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 4" ></w:LsdException>
  125. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 5" ></w:LsdException>
  126. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 1" ></w:LsdException>
  127. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 2" ></w:LsdException>
  128. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 3" ></w:LsdException>
  129. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 4" ></w:LsdException>
  130. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 5" ></w:LsdException>
  131. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 6" ></w:LsdException>
  132. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 7" ></w:LsdException>
  133. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 8" ></w:LsdException>
  134. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 1" ></w:LsdException>
  135. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 2" ></w:LsdException>
  136. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 3" ></w:LsdException>
  137. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 4" ></w:LsdException>
  138. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 5" ></w:LsdException>
  139. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 6" ></w:LsdException>
  140. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 7" ></w:LsdException>
  141. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 8" ></w:LsdException>
  142. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table 3D effects 1" ></w:LsdException>
  143. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table 3D effects 2" ></w:LsdException>
  144. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table 3D effects 3" ></w:LsdException>
  145. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Contemporary" ></w:LsdException>
  146. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Elegant" ></w:LsdException>
  147. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Professional" ></w:LsdException>
  148. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Subtle 1" ></w:LsdException>
  149. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Subtle 2" ></w:LsdException>
  150. <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Web 1" ></w:LsdException>
  151. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Web 2" ></w:LsdException>
  152. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Web 3" ></w:LsdException>
  153. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Balloon Text" ></w:LsdException>
  154. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid" ></w:LsdException>
  155. <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Theme" ></w:LsdException>
  156. <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Placeholder Text" ></w:LsdException>
  157. <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="No Spacing" ></w:LsdException>
  158. <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading" ></w:LsdException>
  159. <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List" ></w:LsdException>
  160. <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid" ></w:LsdException>
  161. <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1" ></w:LsdException>
  162. <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2" ></w:LsdException>
  163. <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1" ></w:LsdException>
  164. <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2" ></w:LsdException>
  165. <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1" ></w:LsdException>
  166. <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2" ></w:LsdException>
  167. <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3" ></w:LsdException>
  168. <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List" ></w:LsdException>
  169. <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading" ></w:LsdException>
  170. <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List" ></w:LsdException>
  171. <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid" ></w:LsdException>
  172. <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 1" ></w:LsdException>
  173. <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 1" ></w:LsdException>
  174. <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 1" ></w:LsdException>
  175. <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" ></w:LsdException>
  176. <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" ></w:LsdException>
  177. <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 1" ></w:LsdException>
  178. <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Paragraph" ></w:LsdException>
  179. <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Quote" ></w:LsdException>
  180. <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Intense Quote" ></w:LsdException>
  181. <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 1" ></w:LsdException>
  182. <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" ></w:LsdException>
  183. <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" ></w:LsdException>
  184. <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" ></w:LsdException>
  185. <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 1" ></w:LsdException>
  186. <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 1" ></w:LsdException>
  187. <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 1" ></w:LsdException>
  188. <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 1" ></w:LsdException>
  189. <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 2" ></w:LsdException>
  190. <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 2" ></w:LsdException>
  191. <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 2" ></w:LsdException>
  192. <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" ></w:LsdException>
  193. <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" ></w:LsdException>
  194. <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 2" ></w:LsdException>
  195. <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 2" ></w:LsdException>
  196. <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" ></w:LsdException>
  197. <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" ></w:LsdException>
  198. <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" ></w:LsdException>
  199. <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 2" ></w:LsdException>
  200. <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 2" ></w:LsdException>
  201. <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 2" ></w:LsdException>
  202. <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 2" ></w:LsdException>
  203. <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 3" ></w:LsdException>
  204. <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 3" ></w:LsdException>
  205. <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 3" ></w:LsdException>
  206. <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" ></w:LsdException>
  207. <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" ></w:LsdException>
  208. <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 3" ></w:LsdException>
  209. <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 3" ></w:LsdException>
  210. <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" ></w:LsdException>
  211. <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" ></w:LsdException>
  212. <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" ></w:LsdException>
  213. <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 3" ></w:LsdException>
  214. <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 3" ></w:LsdException>
  215. <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 3" ></w:LsdException>
  216. <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 3" ></w:LsdException>
  217. <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 4" ></w:LsdException>
  218. <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 4" ></w:LsdException>
  219. <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 4" ></w:LsdException>
  220. <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" ></w:LsdException>
  221. <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" ></w:LsdException>
  222. <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 4" ></w:LsdException>
  223. <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 4" ></w:LsdException>
  224. <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" ></w:LsdException>
  225. <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" ></w:LsdException>
  226. <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" ></w:LsdException>
  227. <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 4" ></w:LsdException>
  228. <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 4" ></w:LsdException>
  229. <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 4" ></w:LsdException>
  230. <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 4" ></w:LsdException>
  231. <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 5" ></w:LsdException>
  232. <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 5" ></w:LsdException>
  233. <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 5" ></w:LsdException>
  234. <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" ></w:LsdException>
  235. <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" ></w:LsdException>
  236. <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 5" ></w:LsdException>
  237. <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 5" ></w:LsdException>
  238. <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" ></w:LsdException>
  239. <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" ></w:LsdException>
  240. <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" ></w:LsdException>
  241. <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 5" ></w:LsdException>
  242. <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 5" ></w:LsdException>
  243. <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 5" ></w:LsdException>
  244. <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 5" ></w:LsdException>
  245. <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 6" ></w:LsdException>
  246. <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 6" ></w:LsdException>
  247. <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 6" ></w:LsdException>
  248. <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" ></w:LsdException>
  249. <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" ></w:LsdException>
  250. <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 6" ></w:LsdException>
  251. <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 6" ></w:LsdException>
  252. <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" ></w:LsdException>
  253. <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" ></w:LsdException>
  254. <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" ></w:LsdException>
  255. <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 6" ></w:LsdException>
  256. <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 6" ></w:LsdException>
  257. <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 6" ></w:LsdException>
  258. <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 6" ></w:LsdException>
  259. </w:LatentStyles></xml><![endif]--><style>
  260. @font-face{
  261. font-family:"Times New Roman";
  262. }
  263. @font-face{
  264. font-family:"宋体";
  265. }
  266. @font-face{
  267. font-family:"Wingdings";
  268. }
  269. @font-face{
  270. font-family:"楷体_GB2312";
  271. }
  272. @font-face{
  273. font-family:"Trebuchet MS";
  274. }
  275. @font-face{
  276. font-family:"黑体";
  277. }
  278. @font-face{
  279. font-family:"Arial";
  280. }
  281. @list l0:level1{
  282. mso-level-number-format:decimal;
  283. mso-level-suffix:tab;
  284. mso-level-text:"%1.";
  285. mso-level-tab-stop:none;
  286. mso-level-number-position:left;
  287. margin-left:21.6000pt;text-indent:-21.6000pt;font-family:'Times New Roman';}
  288. @list l0:level2{
  289. mso-level-number-format:decimal;
  290. mso-level-suffix:tab;
  291. mso-level-text:"%1.%2.";
  292. mso-level-tab-stop:none;
  293. mso-level-number-position:left;
  294. margin-left:28.7500pt;text-indent:-28.7500pt;font-family:'Times New Roman';}
  295. @list l0:level3{
  296. mso-level-number-format:decimal;
  297. mso-level-suffix:tab;
  298. mso-level-text:"%1.%2.%3.";
  299. mso-level-tab-stop:none;
  300. mso-level-number-position:left;
  301. margin-left:36.0000pt;text-indent:-36.0000pt;font-family:'Times New Roman';}
  302. @list l0:level4{
  303. mso-level-number-format:decimal;
  304. mso-level-suffix:tab;
  305. mso-level-text:"%1.%2.%3.%4.";
  306. mso-level-tab-stop:none;
  307. mso-level-number-position:left;
  308. margin-left:43.2000pt;text-indent:-43.2000pt;font-family:'Times New Roman';}
  309. @list l0:level5{
  310. mso-level-number-format:decimal;
  311. mso-level-suffix:tab;
  312. mso-level-text:"%1.%2.%3.%4.%5.";
  313. mso-level-tab-stop:none;
  314. mso-level-number-position:left;
  315. margin-left:50.4000pt;text-indent:-50.4000pt;font-family:'Times New Roman';}
  316. @list l0:level6{
  317. mso-level-number-format:decimal;
  318. mso-level-suffix:tab;
  319. mso-level-text:"%1.%2.%3.%4.%5.%6.";
  320. mso-level-tab-stop:none;
  321. mso-level-number-position:left;
  322. margin-left:57.5500pt;text-indent:-57.5500pt;font-family:'Times New Roman';}
  323. @list l0:level7{
  324. mso-level-number-format:decimal;
  325. mso-level-suffix:tab;
  326. mso-level-text:"%1.%2.%3.%4.%5.%6.%7.";
  327. mso-level-tab-stop:none;
  328. mso-level-number-position:left;
  329. margin-left:64.8000pt;text-indent:-64.8000pt;font-family:'Times New Roman';}
  330. @list l0:level8{
  331. mso-level-number-format:decimal;
  332. mso-level-suffix:tab;
  333. mso-level-text:"%1.%2.%3.%4.%5.%6.%7.%8.";
  334. mso-level-tab-stop:none;
  335. mso-level-number-position:left;
  336. margin-left:72.0000pt;text-indent:-72.0000pt;font-family:'Times New Roman';}
  337. @list l0:level9{
  338. mso-level-number-format:decimal;
  339. mso-level-suffix:tab;
  340. mso-level-text:"%1.%2.%3.%4.%5.%6.%7.%8.%9.";
  341. mso-level-tab-stop:none;
  342. mso-level-number-position:left;
  343. margin-left:79.1500pt;text-indent:-79.1500pt;font-family:'Times New Roman';}
  344. p.MsoNormal{
  345. mso-style-name:正文;
  346. mso-style-parent:"";
  347. mso-style-next:正文文本;
  348. margin:0pt;
  349. margin-bottom:.0001pt;
  350. text-indent:24.0000pt;
  351. mso-char-indent-count:2.0000;
  352. mso-pagination:none;
  353. text-align:justify;
  354. text-justify:inter-ideograph;
  355. line-height:125%;
  356. font-family:'Times New Roman';
  357. mso-fareast-font-family:楷体_GB2312;
  358. font-size:12.0000pt;
  359. mso-font-kerning:1.0000pt;
  360. }
  361. h1{
  362. mso-style-name:"标题 1";
  363. mso-style-next:正文;
  364. margin-left:21.6000pt;
  365. text-indent:-21.6000pt;
  366. mso-char-indent-count:2.0000;
  367. page-break-after:avoid;
  368. mso-pagination:none;
  369. text-align:justify;
  370. text-justify:inter-ideograph;
  371. mso-outline-level:1;
  372. line-height:125%;
  373. font-family:'Times New Roman';
  374. mso-fareast-font-family:楷体_GB2312;
  375. font-weight:bold;
  376. font-size:15.0000pt;
  377. mso-font-kerning:22.0000pt;
  378. }
  379. h2{
  380. mso-style-name:"标题 2";
  381. mso-style-noshow:yes;
  382. mso-style-next:正文;
  383. margin-left:28.7500pt;
  384. text-indent:0.0000pt;
  385. mso-char-indent-count:0.0000;
  386. page-break-after:avoid;
  387. mso-pagination:lines-together;
  388. text-align:justify;
  389. text-justify:inter-ideograph;
  390. mso-outline-level:2;
  391. line-height:125%;
  392. font-family:'Trebuchet MS';
  393. mso-fareast-font-family:楷体_GB2312;
  394. mso-bidi-font-family:'Times New Roman';
  395. font-weight:bold;
  396. font-size:14.0000pt;
  397. mso-font-kerning:1.0000pt;
  398. }
  399. h3{
  400. mso-style-name:"标题 3";
  401. mso-style-noshow:yes;
  402. mso-style-next:正文;
  403. margin-left:36.0000pt;
  404. text-indent:0.0000pt;
  405. mso-char-indent-count:0.0000;
  406. page-break-after:avoid;
  407. mso-pagination:lines-together;
  408. text-align:justify;
  409. text-justify:inter-ideograph;
  410. mso-outline-level:3;
  411. line-height:125%;
  412. font-family:'Times New Roman';
  413. mso-fareast-font-family:楷体_GB2312;
  414. font-weight:bold;
  415. font-size:12.0000pt;
  416. mso-font-kerning:1.0000pt;
  417. }
  418. h4{
  419. mso-style-name:"标题 4";
  420. mso-style-noshow:yes;
  421. mso-style-next:正文;
  422. margin-left:43.2000pt;
  423. text-indent:0.0000pt;
  424. mso-char-indent-count:0.0000;
  425. page-break-after:avoid;
  426. mso-pagination:lines-together;
  427. text-align:justify;
  428. text-justify:inter-ideograph;
  429. mso-outline-level:4;
  430. line-height:125%;
  431. font-family:'Times New Roman';
  432. mso-fareast-font-family:楷体_GB2312;
  433. mso-ansi-font-weight:bold;
  434. font-size:10.5000pt;
  435. mso-font-kerning:1.0000pt;
  436. }
  437. h5{
  438. mso-style-name:"标题 5";
  439. mso-style-noshow:yes;
  440. mso-style-next:正文;
  441. margin-left:50.4000pt;
  442. text-indent:0.0000pt;
  443. mso-char-indent-count:0.0000;
  444. page-break-after:avoid;
  445. mso-pagination:lines-together;
  446. text-align:left;
  447. mso-outline-level:5;
  448. line-height:125%;
  449. font-family:'Times New Roman';
  450. mso-fareast-font-family:黑体;
  451. font-size:12.0000pt;
  452. mso-font-kerning:1.0000pt;
  453. }
  454. h6{
  455. mso-style-name:"标题 6";
  456. mso-style-noshow:yes;
  457. mso-style-next:正文;
  458. margin-top:12.0000pt;
  459. margin-bottom:3.2000pt;
  460. margin-left:57.5500pt;
  461. text-indent:0.0000pt;
  462. mso-char-indent-count:0.0000;
  463. page-break-after:avoid;
  464. mso-pagination:lines-together;
  465. text-align:justify;
  466. text-justify:inter-ideograph;
  467. mso-outline-level:6;
  468. line-height:132%;
  469. font-family:Arial;
  470. mso-fareast-font-family:黑体;
  471. mso-bidi-font-family:'Times New Roman';
  472. mso-ansi-font-weight:bold;
  473. font-size:12.0000pt;
  474. mso-font-kerning:1.0000pt;
  475. }
  476. p.MsoHeading7{
  477. mso-style-name:"标题 7";
  478. mso-style-noshow:yes;
  479. mso-style-next:正文;
  480. margin-top:12.0000pt;
  481. margin-bottom:3.2000pt;
  482. margin-left:64.8000pt;
  483. text-indent:0.0000pt;
  484. mso-char-indent-count:0.0000;
  485. page-break-after:avoid;
  486. mso-pagination:lines-together;
  487. text-align:justify;
  488. text-justify:inter-ideograph;
  489. mso-outline-level:7;
  490. line-height:132%;
  491. font-family:'Times New Roman';
  492. mso-fareast-font-family:楷体_GB2312;
  493. mso-ansi-font-weight:bold;
  494. font-size:12.0000pt;
  495. mso-font-kerning:1.0000pt;
  496. }
  497. p.MsoHeading8{
  498. mso-style-name:"标题 8";
  499. mso-style-noshow:yes;
  500. mso-style-next:正文;
  501. margin-top:12.0000pt;
  502. margin-bottom:3.2000pt;
  503. margin-left:72.0000pt;
  504. text-indent:0.0000pt;
  505. mso-char-indent-count:0.0000;
  506. page-break-after:avoid;
  507. mso-pagination:lines-together;
  508. text-align:justify;
  509. text-justify:inter-ideograph;
  510. mso-outline-level:8;
  511. line-height:132%;
  512. font-family:Arial;
  513. mso-fareast-font-family:黑体;
  514. mso-bidi-font-family:'Times New Roman';
  515. font-size:12.0000pt;
  516. mso-font-kerning:1.0000pt;
  517. }
  518. p.Msoheading9{
  519. mso-style-name:"标题 9";
  520. mso-style-noshow:yes;
  521. mso-style-next:正文;
  522. margin-top:12.0000pt;
  523. margin-bottom:3.2000pt;
  524. margin-left:79.1500pt;
  525. text-indent:0.0000pt;
  526. mso-char-indent-count:0.0000;
  527. page-break-after:avoid;
  528. mso-pagination:lines-together;
  529. text-align:justify;
  530. text-justify:inter-ideograph;
  531. mso-outline-level:9;
  532. line-height:132%;
  533. font-family:Arial;
  534. mso-fareast-font-family:黑体;
  535. mso-bidi-font-family:'Times New Roman';
  536. font-size:10.5000pt;
  537. mso-font-kerning:1.0000pt;
  538. }
  539. span.10{
  540. font-family:'Times New Roman';
  541. }
  542. span.15{
  543. font-family:'Times New Roman';
  544. mso-fareast-font-family:楷体_GB2312;
  545. mso-ansi-font-weight:bold;
  546. font-size:14.0000pt;
  547. }
  548. span.16{
  549. font-family:'Times New Roman';
  550. mso-fareast-font-family:楷体_GB2312;
  551. font-weight:bold;
  552. font-size:15.0000pt;
  553. mso-font-kerning:22.0000pt;
  554. }
  555. span.17{
  556. font-family:'Times New Roman';
  557. mso-fareast-font-family:楷体_GB2312;
  558. font-size:12.0000pt;
  559. mso-font-kerning:1.0000pt;
  560. }
  561. span.25{
  562. font-family:'Times New Roman';
  563. mso-fareast-font-family:楷体_GB2312;
  564. font-size:12.0000pt;
  565. mso-font-kerning:1.0000pt;
  566. }
  567. span.18{
  568. font-family:'Times New Roman';
  569. mso-fareast-font-family:楷体_GB2312;
  570. font-weight:bold;
  571. font-size:12.0000pt;
  572. mso-font-kerning:1.0000pt;
  573. }
  574. span.19{
  575. font-family:'Times New Roman';
  576. mso-ansi-font-weight:bold;
  577. }
  578. span.20{
  579. font-family:'Times New Roman';
  580. mso-fareast-font-family:楷体_GB2312;
  581. color:rgb(0,0,255);
  582. text-decoration:underline;
  583. text-underline:single;
  584. font-size:12.0000pt;
  585. }
  586. span.21{
  587. font-family:'Times New Roman';
  588. font-size:10.5000pt;
  589. }
  590. span.22{
  591. font-family:'Trebuchet MS';
  592. mso-fareast-font-family:楷体_GB2312;
  593. font-weight:bold;
  594. font-size:14.0000pt;
  595. }
  596. span.23{
  597. font-family:'Times New Roman';
  598. mso-fareast-font-family:楷体_GB2312;
  599. mso-ansi-font-weight:bold;
  600. font-size:10.5000pt;
  601. }
  602. span.24{
  603. font-family:'Times New Roman';
  604. mso-fareast-font-family:黑体;
  605. font-size:12.0000pt;
  606. }
  607. span.26{
  608. font-family:'Times New Roman';
  609. mso-fareast-font-family:楷体_GB2312;
  610. font-size:9.0000pt;
  611. mso-font-kerning:1.0000pt;
  612. }
  613. span.27{
  614. font-family:'Times New Roman';
  615. mso-fareast-font-family:楷体_GB2312;
  616. font-size:9.0000pt;
  617. mso-font-kerning:1.0000pt;
  618. }
  619. p.MsoBodyText{
  620. mso-style-name:正文文本;
  621. margin:0pt;
  622. margin-bottom:.0001pt;
  623. text-indent:24.0000pt;
  624. mso-char-indent-count:2.0000;
  625. mso-pagination:none;
  626. text-align:justify;
  627. text-justify:inter-ideograph;
  628. line-height:125%;
  629. font-family:'Times New Roman';
  630. mso-fareast-font-family:楷体_GB2312;
  631. font-size:12.0000pt;
  632. mso-font-kerning:1.0000pt;
  633. }
  634. p.29{
  635. mso-style-name:修订1;
  636. mso-style-noshow:yes;
  637. margin:0pt;
  638. margin-bottom:.0001pt;
  639. font-family:'Times New Roman';
  640. mso-fareast-font-family:楷体_GB2312;
  641. font-size:12.0000pt;
  642. mso-font-kerning:1.0000pt;
  643. }
  644. p.MsoToc2{
  645. mso-style-name:"目录 2";
  646. mso-style-next:正文;
  647. margin:0pt;
  648. margin-bottom:.0001pt;
  649. text-indent:24.0000pt;
  650. mso-char-indent-count:2.0000;
  651. mso-pagination:none;
  652. text-align:justify;
  653. text-justify:inter-ideograph;
  654. line-height:125%;
  655. font-family:'Times New Roman';
  656. mso-fareast-font-family:楷体_GB2312;
  657. font-size:12.0000pt;
  658. mso-font-kerning:1.0000pt;
  659. }
  660. p.MsoBodyTextIndent{
  661. mso-style-name:正文文本缩进;
  662. margin-bottom:6.0000pt;
  663. margin-left:21.0000pt;
  664. mso-para-margin-left:2.0000gd;
  665. text-indent:24.0000pt;
  666. mso-char-indent-count:2.0000;
  667. mso-pagination:none;
  668. text-align:justify;
  669. text-justify:inter-ideograph;
  670. line-height:125%;
  671. font-family:'Times New Roman';
  672. mso-fareast-font-family:楷体_GB2312;
  673. font-size:12.0000pt;
  674. mso-font-kerning:1.0000pt;
  675. }
  676. p.MsoCaption{
  677. mso-style-name:题注;
  678. mso-style-noshow:yes;
  679. mso-style-next:正文;
  680. margin:0pt;
  681. margin-bottom:.0001pt;
  682. text-indent:24.0000pt;
  683. mso-char-indent-count:2.0000;
  684. page-break-after:avoid;
  685. mso-pagination:none;
  686. text-align:center;
  687. line-height:125%;
  688. font-family:'Times New Roman';
  689. mso-fareast-font-family:楷体_GB2312;
  690. font-size:12.0000pt;
  691. mso-font-kerning:1.0000pt;
  692. }
  693. p.MsoCommentText{
  694. mso-style-name:批注文字;
  695. margin:0pt;
  696. margin-bottom:.0001pt;
  697. text-indent:24.0000pt;
  698. mso-char-indent-count:2.0000;
  699. mso-pagination:none;
  700. text-align:left;
  701. line-height:125%;
  702. font-family:'Times New Roman';
  703. mso-fareast-font-family:楷体_GB2312;
  704. font-size:12.0000pt;
  705. mso-font-kerning:1.0000pt;
  706. }
  707. p.MsoCommentSubject{
  708. mso-style-name:批注主题;
  709. mso-style-parent:批注文字;
  710. mso-style-next:批注文字;
  711. margin:0pt;
  712. margin-bottom:.0001pt;
  713. text-indent:24.0000pt;
  714. mso-char-indent-count:2.0000;
  715. mso-pagination:none;
  716. text-align:left;
  717. line-height:125%;
  718. font-family:'Times New Roman';
  719. mso-fareast-font-family:楷体_GB2312;
  720. font-weight:bold;
  721. font-size:12.0000pt;
  722. mso-font-kerning:1.0000pt;
  723. }
  724. p.MsoToc3{
  725. mso-style-name:"目录 3";
  726. mso-style-next:正文;
  727. margin-left:24.0000pt;
  728. mso-para-margin-left:2.0000gd;
  729. text-indent:24.0000pt;
  730. mso-char-indent-count:2.0000;
  731. mso-pagination:none;
  732. text-align:justify;
  733. text-justify:inter-ideograph;
  734. line-height:125%;
  735. font-family:'Times New Roman';
  736. mso-fareast-font-family:楷体_GB2312;
  737. font-size:12.0000pt;
  738. mso-font-kerning:1.0000pt;
  739. }
  740. p.MsoAcetate{
  741. mso-style-name:批注框文本;
  742. margin:0pt;
  743. margin-bottom:.0001pt;
  744. text-indent:24.0000pt;
  745. mso-char-indent-count:2.0000;
  746. mso-pagination:none;
  747. text-align:justify;
  748. text-justify:inter-ideograph;
  749. font-family:'Times New Roman';
  750. mso-fareast-font-family:楷体_GB2312;
  751. font-size:9.0000pt;
  752. mso-font-kerning:1.0000pt;
  753. }
  754. p.MsoBodyTextFirstIndent2{
  755. mso-style-name:"正文首行缩进 2";
  756. mso-style-parent:正文文本缩进;
  757. margin-bottom:6.0000pt;
  758. margin-left:21.0000pt;
  759. mso-para-margin-left:2.0000gd;
  760. text-indent:21.0000pt;
  761. mso-char-indent-count:2.0000;
  762. mso-pagination:none;
  763. text-align:justify;
  764. text-justify:inter-ideograph;
  765. line-height:125%;
  766. font-family:'Times New Roman';
  767. mso-fareast-font-family:楷体_GB2312;
  768. font-size:12.0000pt;
  769. mso-font-kerning:1.0000pt;
  770. }
  771. p.MsoFooter{
  772. mso-style-name:页脚;
  773. margin:0pt;
  774. margin-bottom:.0001pt;
  775. text-indent:24.0000pt;
  776. mso-char-indent-count:2.0000;
  777. layout-grid-mode:char;
  778. mso-pagination:none;
  779. text-align:left;
  780. line-height:125%;
  781. font-family:'Times New Roman';
  782. mso-fareast-font-family:楷体_GB2312;
  783. font-size:9.0000pt;
  784. mso-font-kerning:1.0000pt;
  785. }
  786. p.MsoHeader{
  787. mso-style-name:页眉;
  788. margin:0pt;
  789. margin-bottom:.0001pt;
  790. text-indent:24.0000pt;
  791. mso-char-indent-count:2.0000;
  792. border-top:none;
  793. mso-border-top-alt:none;
  794. border-right:none;
  795. mso-border-right-alt:none;
  796. border-bottom:none;
  797. mso-border-bottom-alt:none;
  798. border-left:none;
  799. mso-border-left-alt:none;
  800. padding:1pt 4pt 1pt 4pt ;
  801. layout-grid-mode:char;
  802. mso-pagination:none;
  803. text-align:justify;
  804. text-justify:inter-ideograph;
  805. font-family:'Times New Roman';
  806. mso-fareast-font-family:楷体_GB2312;
  807. font-size:9.0000pt;
  808. mso-font-kerning:1.0000pt;
  809. }
  810. p.MsoToc1{
  811. mso-style-name:"目录 1";
  812. mso-style-next:正文;
  813. margin:0pt;
  814. margin-bottom:.0001pt;
  815. text-indent:0.0000pt;
  816. mso-char-indent-count:0.0000;
  817. mso-pagination:none;
  818. text-align:justify;
  819. text-justify:inter-ideograph;
  820. font-family:'Times New Roman';
  821. mso-fareast-font-family:楷体_GB2312;
  822. text-transform:uppercase;
  823. font-size:12.0000pt;
  824. mso-font-kerning:1.0000pt;
  825. }
  826. p.p{
  827. mso-style-name:"普通\(网站\)";
  828. mso-margin-top-alt:auto;
  829. mso-margin-bottom-alt:auto;
  830. text-indent:24.0000pt;
  831. mso-char-indent-count:2.0000;
  832. mso-pagination:none;
  833. text-align:left;
  834. line-height:125%;
  835. font-family:'Times New Roman';
  836. mso-fareast-font-family:楷体_GB2312;
  837. font-size:12.0000pt;
  838. }
  839. p.42{
  840. mso-style-name:样式1;
  841. mso-style-parent:"标题 3";
  842. mso-style-next:正文;
  843. margin-left:36.0000pt;
  844. text-indent:0.0000pt;
  845. mso-char-indent-count:0.0000;
  846. page-break-after:avoid;
  847. mso-pagination:lines-together;
  848. text-align:justify;
  849. text-justify:inter-ideograph;
  850. mso-outline-level:3;
  851. line-height:125%;
  852. font-family:'Times New Roman';
  853. mso-fareast-font-family:楷体_GB2312;
  854. font-weight:bold;
  855. font-size:12.0000pt;
  856. mso-font-kerning:1.0000pt;
  857. }
  858. p.43{
  859. mso-style-name:Revision;
  860. mso-style-noshow:yes;
  861. margin:0pt;
  862. margin-bottom:.0001pt;
  863. font-family:'Times New Roman';
  864. mso-fareast-font-family:楷体_GB2312;
  865. font-size:12.0000pt;
  866. mso-font-kerning:1.0000pt;
  867. }
  868. span.msoIns{
  869. mso-style-type:export-only;
  870. mso-style-name:"";
  871. text-decoration:underline;
  872. text-underline:single;
  873. color:blue;
  874. }
  875. span.msoDel{
  876. mso-style-type:export-only;
  877. mso-style-name:"";
  878. text-decoration:line-through;
  879. color:red;
  880. }
  881. table.MsoNormalTable{
  882. mso-style-name:普通表格;
  883. mso-style-parent:"";
  884. mso-style-noshow:yes;
  885. mso-tstyle-rowband-size:0;
  886. mso-tstyle-colband-size:0;
  887. mso-padding-alt:0.0000pt 5.4000pt 0.0000pt 5.4000pt;
  888. mso-para-margin:0pt;
  889. mso-para-margin-bottom:.0001pt;
  890. mso-pagination:widow-orphan;
  891. font-family:'Times New Roman';
  892. font-size:10.0000pt;
  893. mso-ansi-language:#0400;
  894. mso-fareast-language:#0400;
  895. mso-bidi-language:#0400;
  896. }
  897. @page{mso-page-border-surround-header:no;
  898. mso-page-border-surround-footer:no;}@page Section0{
  899. margin-top:72.0000pt;
  900. margin-bottom:72.0000pt;
  901. margin-left:90.0000pt;
  902. margin-right:90.0000pt;
  903. size:595.3000pt 841.9000pt;
  904. layout-grid:15.6000pt;
  905. mso-header-margin:42.5500pt;
  906. mso-footer-margin:49.6000pt;
  907. mso-header:url("230509-“小世“系统用户协议”-v2r3-清洁版.files/header.html") h0;
  908. mso-footer:url("230509-“小世“系统用户协议”-v2r3-清洁版.files/header.html") f0;
  909. mso-first-header:url("230509-“小世“系统用户协议”-v2r3-清洁版.files/header.html") fh0;
  910. mso-first-footer:url("230509-“小世“系统用户协议”-v2r3-清洁版.files/header.html") ff0;
  911. }
  912. div.Section0{page:Section0;}</style></head><body style="tab-interval:21pt;text-justify-trim:punctuation;" ><!--StartFragment--><div class="Section0" style="layout-grid:15.6000pt;" ><p class=MsoNormal align=center style="text-indent:0.0000pt;mso-char-indent-count:0.0000;text-align:center;
  913. mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  914. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:16.0000pt;
  915. mso-font-kerning:1.0000pt;" ><font face="楷体_GB2312" >小世系统用户协议</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  916. font-size:14.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="text-indent:0.0000pt;mso-char-indent-count:0.0000;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  917. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=MsoBodyText style="text-indent:0.0000pt;mso-char-indent-count:0.0000;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  918. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  919. mso-font-kerning:1.0000pt;" ><font face="楷体_GB2312" >更新日期:</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  920. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  921. mso-font-kerning:1.0000pt;" ><font face="Times New Roman" >2023</font><font face="楷体_GB2312" >年</font><font face="Times New Roman" >5</font><font face="楷体_GB2312" >月</font><font face="Times New Roman" >9</font><font face="楷体_GB2312" >日</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  922. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="text-indent:0.0000pt;mso-char-indent-count:0.0000;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  923. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  924. mso-font-kerning:1.0000pt;" ><font face="楷体_GB2312" >生效日期:</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  925. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  926. mso-font-kerning:1.0000pt;" ><font face="Times New Roman" >2023</font><font face="楷体_GB2312" >年</font><font face="Times New Roman" >5</font><font face="楷体_GB2312" >月</font><font face="Times New Roman" >9</font><font face="楷体_GB2312" >日</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  927. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="text-indent:0.0000pt;mso-char-indent-count:0.0000;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  928. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=MsoBodyText ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  929. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  930. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  931. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >欢迎您</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  932. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  933. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >购买</font><font face="Times New Roman" >/</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  934. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  935. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >注册</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  936. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  937. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  938. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  939. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账号并使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  940. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  941. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  942. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  943. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务!</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  944. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  945. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  946. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  947. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >在您以任何方式(</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  948. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  949. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >包括但不限于</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  950. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  951. mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  952. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  953. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >网站)访问或使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  954. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  955. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世数字科技(深圳)有限公司(以下简称</font><font face="楷体_GB2312" >“小世公司”)运营的</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  956. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  957. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  958. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  959. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >知识产权风控与组织记忆系统(以下简称</font><font face="楷体_GB2312" >“小世”)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  960. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  961. mso-shading:rgb(255,255,255);" >&nbsp;<font face="楷体_GB2312" >之前,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  962. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  963. mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >请您仔细阅读以下条款,如果您对本协议表示异议,您可以选择不进入或不使用小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  964. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  965. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >网站</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  966. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  967. mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  968. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  969. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  970. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  971. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  972. mso-shading:rgb(255,255,255);" >&nbsp;1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  973. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  974. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >.</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  975. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  976. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >协议的范围</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  977. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  978. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  979. mso-shading:rgb(255,255,255);" >1.1 </span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  980. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >本协议是您与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  981. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  982. mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >“小世公司”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  983. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >之间关于使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  984. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  985. mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  986. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >各项服务的法律协议。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  987. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  988. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  989. mso-shading:rgb(255,255,255);" >1.2 </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  990. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  991. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  992. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  993. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务包括由</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  994. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  995. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  996. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  997. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >向您提供的全球专利数据库、</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  998. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  999. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世专题库、小世报告管理系统、小世权限系统</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1000. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1001. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >等内容。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1002. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1003. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1004. mso-shading:rgb(255,255,255);" >1.3</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1005. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1006. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >&nbsp;</span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1007. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1008. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >如果您使用或购买</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1009. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1010. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世系统中由第三方提供的服务</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1011. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1012. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >,您可能仍需确认</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1013. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1014. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >第三方</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1015. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1016. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的服务条款,请您审慎阅读、充分理解各条款内容,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1017. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1018. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >自行选择</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1019. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1020. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1021. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1022. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司不对您使用第三方服务所产生的风险承担责任。</font></span><u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1023. text-decoration:underline;text-underline:single;font-size:12.0000pt;
  1024. mso-font-kerning:0.0000pt;" ><o:p></o:p></span></u></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1025. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1026. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1027. mso-shading:rgb(255,255,255);" >2</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1028. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1029. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >. </font><font face="楷体_GB2312" >小世公司的产品和服务</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1030. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1031. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:2;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1032. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1033. mso-shading:rgb(255,255,255);" >2.1 </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1034. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1035. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >产品相关</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1036. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1037. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >知识产权</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1038. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1039. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1040. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1041. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.1.1</font><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1042. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1043. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >向您提供的服务内容可能涉及的网页、界面设计、版面框架、文字、软件、图片、音频、视频、图表等内容均受版权、商标和其它相关法律的保护。使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1044. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1045. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1046. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1047. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的服务并不代表您拥有您所访问的内容的任何知识产权,除非您自身即为所有者、或获得相关内容所有者的许可、或通过其他方式获得法律的许可。除另有约定外,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1048. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1049. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1050. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1051. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >提供服务所依托的软件、系统等的著作权、专利权及其他知识产权均归</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1052. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1053. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世公司”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1054. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1055. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >所有。您不得删除、隐藏或更改</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1056. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1057. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1058. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1059. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务过程中提示的或随服务内容一同显示的任何法律声明,不得将</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1060. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1061. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >与</font><font face="楷体_GB2312" >“小世”相关</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1062. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1063. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1064. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1065. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >一切知识产权</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1066. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1067. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >以任何方式使用或作其它处理。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1068. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1069. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1070. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.1</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1071. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1072. mso-shading:rgb(255,255,255);" >.2 <font face="楷体_GB2312" >如果某个产品或某项服务要求下载或包含可下载软件或作品,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1073. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1074. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世公司”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1075. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1076. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >授予您免额外许可的、不可转让的、非独占的许可,允许您使用由</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1077. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1078. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1079. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1080. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >提供的</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1081. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1082. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1083. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1084. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >内容,本许可仅旨在让您本人通过本协议允许的方式使用由</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1085. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1086. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1087. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1088. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >提供的服务并从中受益。您不得复制、修改、发布、出售或出租</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1089. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1090. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1091. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1092. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的服务或所含软件的任何部分,也不得进行反向工程或试图提取该软件的源代码。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1093. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:2;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1094. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1095. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.1</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1096. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1097. mso-shading:rgb(255,255,255);" >.3 <font face="楷体_GB2312" >除非您与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1098. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1099. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1100. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1101. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >另有书面约定,否则在任何情况下,您均不得利用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1102. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1103. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1104. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1105. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账号,超出正常使用范围,获取</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1106. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1107. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1108. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1109. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务的功能清单、版式设计、数据、代码、规则、业务模式等的全部或部分,形成与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1110. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1111. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1112. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1113. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >相竞争的产品。</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1114. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1115. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >自</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1116. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1117. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >您同意</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1118. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1119. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >本协议之际</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1120. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1121. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >,如前述产品与您有关联,则您的注册行为即构成您或产品被认定为重大违约或侵权、不正当竞争的关键依据。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1122. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1123. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:2;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1124. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1125. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1126. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1127. mso-shading:rgb(255,255,255);" >&nbsp;</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1128. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1129. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >产品提供</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1130. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1131. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >数据</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1132. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1133. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1134. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1135. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1136. mso-shading:rgb(255,255,255);" >.1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1137. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1138. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1139. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1140. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >向您提供数据或数据服务,包括数据检索、数据分析、数据展示、数据管理等(以下统称</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1141. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1142. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1143. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1144. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >数据</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1145. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1146. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1147. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1148. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >),不能视为这些数据的所有权或知识产权发生了转移,您仅可在与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1149. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1150. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1151. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1152. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >之间的协议范围内使用。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1153. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1154. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1155. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1156. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1157. mso-shading:rgb(255,255,255);" >.2</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1158. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1159. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世可能会</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1160. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1161. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >通过</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1162. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1163. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >第三方数据机构</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1164. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1165. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >向您提供尽可能准确、全面、有效的数据,但您理解并同意,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1166. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1167. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1168. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1169. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >始终不对数据的准确性、全面性、有效性做任何承诺或保证。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1170. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1171. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1172. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1173. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1174. mso-shading:rgb(255,255,255);" >.3&nbsp;<font face="楷体_GB2312" >受限于数据更新的时延性,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1175. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1176. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1177. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1178. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >始终不对数据的及时性向您作任何承诺或保证。您不应在重大商业决策或学术研究中将</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1179. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1180. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1181. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1182. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的数据作为唯一依据。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1183. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1184. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1185. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1186. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1187. mso-shading:rgb(255,255,255);" >.4</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1188. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1189. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1190. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1191. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的原始数据主要来源于公开信息,如这些数据对您具有较大价值或较大意义,您可通过各种公开渠道或直接向官方咨询以获取和验证您所需要的数据。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1192. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1193. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1194. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1195. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1196. mso-shading:rgb(255,255,255);" >.5 <font face="楷体_GB2312" >您理解并同意,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1197. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1198. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1199. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1200. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >希望向您提供高质量的数据</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1201. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1202. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >和分析功能</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1203. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1204. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >,从而依其综合判断会对某些数据进行</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1205. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1206. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1207. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1208. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >纠正</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1209. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1210. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1211. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1212. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >,导致</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1213. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1214. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1215. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1216. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的这些数据可能与公开信息不一致,这并不表示</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1217. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1218. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1219. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1220. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >对公开信息的不认同或反对。您应审慎考虑采信何种渠道的信息或数据,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1221. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1222. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1223. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1224. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不对您的选择承担任何责任。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1225. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1226. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1227. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1228. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1229. mso-shading:rgb(255,255,255);" >.6 <font face="楷体_GB2312" >您可以在对某些数据存疑时向</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1230. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1231. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1232. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1233. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >反馈,但您应理解,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1234. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1235. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1236. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1237. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >需要一定时间检验并判断是否采取行动补充、纠正或删除某些数据;您应知晓,这些纠正或修改仅对</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1238. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1239. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1240. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1241. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的数据有效,不</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1242. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1243. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >会</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1244. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1245. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >影响公开信息或您自其它第三方获取的数据。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1246. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=MsoCommentText ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1247. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1248. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1249. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1250. mso-shading:rgb(255,255,255);" >.7 <font face="楷体_GB2312" >您</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1251. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1252. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可在</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1253. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1254. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1255. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1256. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1257. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1258. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的服务</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1259. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1260. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >中按需添加相关</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1261. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1262. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >数据</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1263. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1264. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1265. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1266. mso-font-kerning:1.0000pt;" ><font face="楷体_GB2312" >包括但不限于相关产业数据、公司产品销售数据、相关许可费用数据等,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1267. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1268. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >但</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1269. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1270. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >您</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1271. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1272. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >需保证相关</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1273. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1274. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >数据的来源</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1275. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1276. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1277. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1278. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >合法性</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1279. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1280. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >,并且</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1281. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1282. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >承担</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1283. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1284. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >通过使用该数据在小世所形成的相关数据或结论进行公开后而</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1285. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1286. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >引发的任何后果</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1287. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1288. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >及相应的</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1289. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1290. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >责任,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1291. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1292. mso-font-kerning:1.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1293. font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
  1294. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >对此不承担任何责任。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1295. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1296. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1297. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1298. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1299. mso-shading:rgb(255,255,255);" >.8 <font face="楷体_GB2312" >您因违反本协议而取得的任何数据,不得自己使用、公开或交付他人,您应立即删除这些数据。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1300. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1301. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1302. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1303. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1304. mso-shading:rgb(255,255,255);" >.9&nbsp;<font face="楷体_GB2312" >如果您是中国大陆地区以外的自然人、法人或其他组织,您应特别注意:受限于法律法规、政策的规定及数据授权方等的约定,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1305. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1306. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1307. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1308. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不承诺向您在全部时间提供所有数据,因此导致您</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1309. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1310. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1311. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1312. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户的某些功能受限、服务成果不完整或存在滞后性等,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1313. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1314. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1315. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1316. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不承担任何责任。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1317. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1318. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1319. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1320. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1321. mso-shading:rgb(255,255,255);" >.10</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1322. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1323. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1324. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1325. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >仅在为您提供服务之目的而使用、存储、转移、处理、备份这些业务数据。未经您的许可,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1326. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1327. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1328. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1329. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不将业务数据向第三方披露。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1330. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:2;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1331. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1332. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.3 </font><font face="楷体_GB2312" >服务方式</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1333. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1334. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1335. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1336. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.3.1</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1337. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1338. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >通常,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1339. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1340. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1341. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1342. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >以访问</font></span><u><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1343. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';text-decoration:underline;
  1344. text-underline:single;font-size:12.0000pt;mso-font-kerning:0.0000pt;
  1345. background:rgb(255,255,0);mso-highlight:rgb(255,255,0);background:rgb(255,255,255);
  1346. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“ &nbsp;&nbsp;&nbsp;”</font></span></u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1347. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1348. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >网站</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1349. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1350. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >或</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1351. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1352. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >定制的本地化数据库</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1353. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1354. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的方式向您提供服务;在一些情况下(包括应您要求或者</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1355. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1356. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1357. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1358. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >提示等情况,以及您与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1359. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1360. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1361. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1362. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >有特别约定的情况),</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1363. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1364. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1365. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1366. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可能以其他方式向您提供</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1367. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1368. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >个性化数据</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1369. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1370. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1371. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1372. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="楷体_GB2312" >软件的更新、升级同时适用本协议第</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1373. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1374. mso-font-kerning:1.0000pt;" ><font face="Times New Roman" >2.5</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1375. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="楷体_GB2312" >条的相关约定。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1376. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:2;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1377. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1378. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.4</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1379. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1380. mso-shading:rgb(255,255,255);" >&nbsp;</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1381. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1382. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1383. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1384. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1385. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:3;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1386. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1387. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.4.1</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1388. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1389. mso-shading:rgb(255,255,255);" >&nbsp;<font face="楷体_GB2312" >账户</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1390. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1391. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的获得</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1392. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1393. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1394. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >1</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1395. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1396. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >当您完成全部注册程序后,您可获得</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1397. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1398. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1399. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1400. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户并成为</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1401. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1402. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1403. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1404. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的用户。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1405. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1406. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1407. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >2</font><font face="楷体_GB2312" >)小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1408. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1409. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >是账户的所有权人,依您</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1410. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1411. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >在小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1412. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1413. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >购买的不同服务,而享有对应的使用权限。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1414. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1415. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1416. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >3</font><font face="楷体_GB2312" >)小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1417. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1418. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账号可与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1419. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1420. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1421. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1422. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >旗下其他服务账号通用,包括</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1423. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1424. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世专题库、小世报告管理系统、小世权限系统</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1425. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1426. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >等;您实际可享受的服务范围取决于您选择的</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1427. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1428. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1429. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1430. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >提供的</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1431. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1432. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务内容</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1433. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1434. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >。您在付款时应仔细辨认所购买的服务,并确认账户权限的激活情况。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1435. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1436. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1437. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >4</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1438. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1439. mso-shading:rgb(255,255,255);" >&nbsp;<font face="楷体_GB2312" >您应当按照法律法规要求或按相应页面的提示,准确提供并及时更新您的账户信息,以使之真实、及时、完整和准确;为开通某些服务,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1440. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1441. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1442. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1443. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可能会要求您进一步提供资料或信息,并进行认证或验证,只有认证和验证通过后,您才能要求</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1444. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1445. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1446. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1447. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >提供这些服务。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1448. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1449. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1450. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >5</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1451. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1452. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >您对您账户信息和资料的真实、准确、及时和完整承担责任;这些责任包括您的账户因此被冻结、注销、限制使用,以及您使用过程中的后果和责任。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1453. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1454. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1455. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >6</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1456. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1457. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >如您或您所在单位开通了【管理员功能】并设置了管理员账户,管理员账户有权对其管理下的所有子账户代为完成部分子账户的注册程序和</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1458. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1459. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >激活</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1460. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1461. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >等操作。虽有前述管理设定,若您使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1462. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1463. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1464. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1465. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的服务,您依然需要同意本协议,本协议在您与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1466. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1467. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1468. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1469. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >之间有效。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1470. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1471. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1472. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >7</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1473. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1474. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >通常情况下,同一法律主体允许同时拥有多个账号,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1475. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1476. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1477. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1478. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可根据关联信息判断某</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1479. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1480. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >些</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1481. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1482. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账号是否属于同一法律主体,并进行统一处理。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1483. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1484. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1485. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1486. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >8</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1487. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1488. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >一个账户仅对应唯一的法律主体。除经</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1489. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1490. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1491. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1492. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >书面同意,您不得将账号出租、借用、转让、赠与、共享、分时使用或被继承等有偿或无偿的方式将账户提供给他人。该账号所进行的一切活动,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1493. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1494. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1495. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1496. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >有合理理由相信和认为是您的行为。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1497. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1498. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1499. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1500. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >9</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1501. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1502. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >如果您的账户认证为组织,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1503. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1504. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1505. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1506. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可能向您索取相关的授权文件;账户的实际使用人应当被推定为是被该组织充分授权的人。使用人的变更需要以书面形式进行,并附加新使用人的授权书。</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1507. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1508. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1509. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1510. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >有权(但无义务)检查账户的使用人,若经</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1511. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1512. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1513. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1514. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >合理判断(如</font>IP<font face="楷体_GB2312" >地址、明显异常的操作等)认为使用人属未经授权的人,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1515. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1516. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1517. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1518. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可能与该组织联络(无论是否先行采取必要措施);</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1519. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1520. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1521. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1522. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >提供技术信息仅以账户实际使用人是该组织充分授权的人为前提。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1523. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1524. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1525. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >10</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1526. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1527. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >您应妥善保管您的账户及密码,并对密码严格保密;</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1528. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1529. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1530. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1531. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不会主动向您索取密码。如您的密码忘记、被盗取、被篡改或您发现您的账户未经授权被使用,您应立即更改密码或通知</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1532. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1533. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1534. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1535. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >冻结您的账户,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1536. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1537. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1538. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1539. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >将在合理时间内采取措施。对于此前及以后所产生的一切法律后果,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1540. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1541. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1542. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1543. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不承担任何责任。请您使用复杂密码,并定期更新密码,以保证您的账号安全。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1544. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1545. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1546. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1547. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >11</font><font face="楷体_GB2312" >)您不得冒用他人信息注册小世账号,也不得盗用他人的小世账号。否则,您应承担由此产生的全部法律责任,且小世公司有权限制或终止您使用各项服务。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1548. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1549. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1550. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1551. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >12</font><font face="楷体_GB2312" >)您使用小世公司系列产品注册的小世账号的所有权归小世公司所有。您在注册成功后可获得该小世账号的使用权,您违反本协议内容及</font><font face="Times New Roman" >/</font><font face="楷体_GB2312" >或本协议解除时,小世公司有权视情形限制使用或收回您的小世账号。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1552. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1553. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1554. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1555. mso-shading:rgb(255,255,255);" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:3;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1556. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1557. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.4.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1558. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1559. mso-shading:rgb(255,255,255);" >&nbsp;<font face="楷体_GB2312" >账户的冻结</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1560. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1561. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1562. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >如您或您的账户存在下列情况,您的</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1563. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1564. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1565. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1566. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户可能被冻结,账户对应的部分或全部权限或功能可能无法使用或被限制登录:</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1567. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1568. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1569. mso-shading:rgb(255,255,255);" >1) <font face="楷体_GB2312" >违反本协议、</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1570. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1571. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1572. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1573. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >网站</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1574. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1575. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >等</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1576. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1577. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的相关规则、规范及您与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1578. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1579. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1580. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1581. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >订立的其他服务协议或条款的;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1582. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1583. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1584. mso-shading:rgb(255,255,255);" >2) <font face="楷体_GB2312" >违反国家法律、法规、政策的规定的;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1585. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1586. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1587. mso-shading:rgb(255,255,255);" >3) <font face="楷体_GB2312" >国家机关要求进行冻结的;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1588. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1589. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1590. mso-shading:rgb(255,255,255);" >4) <font face="楷体_GB2312" >您根据本用户协议的约定,向</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1591. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1592. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1593. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1594. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >申请冻结账户的;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1595. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1596. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1597. mso-shading:rgb(255,255,255);" >5) <font face="楷体_GB2312" >您的账户到期,且未在到期日前续</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1598. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1599. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >约</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1600. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1601. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1602. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1603. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1604. mso-shading:rgb(255,255,255);" >6)&nbsp;<font face="楷体_GB2312" >根据您与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1605. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1606. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1607. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1608. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >订立的其他服务协议或条款,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1609. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1610. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1611. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1612. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可以</font>/<font face="楷体_GB2312" >应当冻结您的账户的;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1613. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1614. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1615. mso-shading:rgb(255,255,255);" >7)&nbsp;</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1616. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1617. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1618. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1619. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >根据合理判断,为保护您的利益,或为避免他人、</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1620. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1621. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1622. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1623. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的损失进一步扩大的。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1624. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1625. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1626. mso-shading:rgb(255,255,255);" >&nbsp;<font face="楷体_GB2312" >若您触发</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1627. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1628. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >上述限制条款</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1629. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1630. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >时,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1631. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1632. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1633. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1634. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >为履行法定职责和义务、避免损失进一步扩大等考虑,有权不经提前通知,冻结您的账户。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1635. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1636. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1637. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >您对因冻结造成的无法使用的后果承担责任,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1638. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1639. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1640. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1641. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不对您作任何使用期延长或补偿。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1642. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1643. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1644. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1645. mso-shading:rgb(255,255,255);" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:3;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1646. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1647. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.4.3</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1648. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1649. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户的注销和删除</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1650. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1651. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1652. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >1</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1653. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1654. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户被冻结后,在</font>30<font face="楷体_GB2312" >日内,您未向</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1655. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1656. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1657. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1658. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >作出适当解释或提供适当材料的,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1659. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1660. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1661. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1662. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可能注销或删除您的账户。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1663. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1664. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1665. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >2</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1666. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1667. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >如果您存在上述</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1668. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1669. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.4.2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1670. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1671. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >情形且情形严重的,或基于国家机关的要求,您的</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1672. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1673. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1674. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1675. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户将被注销或删除。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1676. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1677. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1678. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >3</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1679. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1680. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >您的个人用户账户连续</font>12<font face="楷体_GB2312" >个月未登陆过</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1681. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1682. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1683. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1684. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >网站,且账户下不存在任何未到期的收费服务,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1685. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1686. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1687. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1688. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可以注销或删除您的账户。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1689. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1690. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1691. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >4</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1692. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1693. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >您的所属管理员可注销或删除您的账户,包括该账户下的数据,而无需事先经您同意。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1694. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1695. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1696. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >5</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1697. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1698. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户被注销或删除后,将不能登陆,亦不能使用相同的账户名重新注册;账户下的资料、信息、使用记录等数据可能被立刻删除、匿名化处理或以法律、法规未禁止的其他方式处理,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1699. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1700. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1701. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1702. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不会向您做出另行通知;</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1703. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1704. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1705. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1706. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >亦并无额外的义务为您继续保存或向您返还该等资料、信息、使用记录等数据。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1707. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1708. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1709. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1710. mso-shading:rgb(255,255,255);" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:3;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1711. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1712. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.4.4</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1713. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1714. mso-shading:rgb(255,255,255);" >&nbsp;<font face="楷体_GB2312" >申诉</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1715. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1716. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1717. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >1</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1718. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1719. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >您的账户被冻结或被注销、删除后,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1720. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1721. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1722. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1723. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >将通过邮件、登录提示、短信或电话等一种或多种方式通知您。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1724. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1725. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1726. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >2</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1727. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1728. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >您应及时关注账户被冻结或注销、删除的情形,并可以按照程序进行申诉等后续操作。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1729. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1730. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1731. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >3</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1732. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1733. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >在您申请账户恢复正常状态时,您应配合</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1734. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1735. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1736. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1737. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >如实提供相关证明、资料及其他信息或文件。您理解并同意,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1738. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1739. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1740. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1741. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >有权决定是否恢复账户正常状态且不承担责任。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1742. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1743. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1744. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1745. mso-shading:rgb(255,255,255);" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:2;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1746. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1747. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2.5</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1748. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1749. mso-shading:rgb(255,255,255);" >&nbsp;<font face="楷体_GB2312" >更新与升级</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1750. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1751. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1752. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >1</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1753. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1754. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >您理解并同意,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1755. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1756. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1757. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1758. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >将定期或不定期对服务的部分或全部进行更新或升级。通常情况下,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1759. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1760. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1761. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1762. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >尽可能将更新或升级安排在非工作时段(双休日、节假日、</font>18:00-<font face="楷体_GB2312" >次日</font><font face="Times New Roman" >9:00</font><font face="楷体_GB2312" >),更新或升级一般(但不保证)不会影响您的正常使用。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1763. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1764. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1765. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >2</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1766. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1767. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >这些更新和升级是为了给您带来更好的体验,在整体上不会降低服务的质量水平。您知晓并同意,您在各次更新或升级之后所使用的服务与您和</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1768. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1769. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1770. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1771. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >之间此前的特定协议或有出入,您将完全接受这些功能差异。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1772. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1773. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1774. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >如您对特定功能有较大期待或固化需求,您应通过与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1775. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1776. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1777. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1778. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >另行订立书面协议的方式做出约定。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1779. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1780. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1781. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >3</font><font face="楷体_GB2312" >)</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1782. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1783. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >更新或升级前,您使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1784. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1785. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1786. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1787. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务时存储的数据,不会仅因当次更新或升级而丢失。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1788. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1789. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1790. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >(</font><font face="Times New Roman" >4</font><font face="楷体_GB2312" >)小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1791. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1792. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可以通过站内通告或官网公告等方式提示您每次更新或升级的内容或计划,且不再另行通知。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1793. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1794. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1795. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1796. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1797. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >3.</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1798. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1799. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >费用</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1800. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1801. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1802. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >3</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1803. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1804. mso-shading:rgb(255,255,255);" >.1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1805. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1806. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >原则上,小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1807. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1808. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1809. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1810. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >产品及</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1811. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1812. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务以收费方式提供。</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1813. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1814. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1815. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1816. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可能根据实际需要对收费服务的收费标准进行变更,或取消部分服务的收费,也可能会对部分免费服务开始收费。前述收费标准变更前,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1817. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1818. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1819. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1820. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >将在相应</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1821. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1822. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1823. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1824. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务页面进行通知或公告。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1825. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1826. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1827. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >3</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1828. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1829. mso-shading:rgb(255,255,255);" >.2 <font face="楷体_GB2312" >您知晓并同意,如</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1830. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1831. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1832. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1833. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >降低部分收费服务的收费标准或者将部分收费服务改为免费服务而提供时,您不得要求、且</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1834. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1835. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1836. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1837. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >有权不对您原先已付费的服务提供退费或者费用调整。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1838. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1839. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1840. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >3</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1841. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1842. mso-shading:rgb(255,255,255);" >.3 <font face="楷体_GB2312" >您理解并认可,如果您通过第三方支付工具在</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1843. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1844. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1845. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1846. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户支付后可能产生的任何商业风险(包括不法分子利用您账户或银行卡进行违法活动等风险),该等风险有可能给您造成相应的经济损失,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1847. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1848. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1849. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1850. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >在充分履行其在本协议项下义务和符合法律规定的前提下,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1851. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1852. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不对此承担责任。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1853. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1854. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1855. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1856. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >4.</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1857. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1858. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >使用规则</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1859. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1860. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1861. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >当您通过</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1862. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1863. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1864. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1865. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户使用或接受</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1866. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1867. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1868. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1869. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的服务时,您应遵守以下使用规则:</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1870. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1871. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1872. mso-shading:rgb(255,255,255);" >1) <font face="楷体_GB2312" >应在合理范围内使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1873. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1874. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1875. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1876. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户及服务;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1877. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1878. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1879. mso-shading:rgb(255,255,255);" >2) <font face="楷体_GB2312" >不得利用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1880. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1881. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1882. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1883. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的服务或账户试图或实施危害国家利益、违反法律规定、损害公共利益、侵犯他人合法权益的行为;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1884. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1885. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1886. mso-shading:rgb(255,255,255);" >3) <font face="楷体_GB2312" >不得在未经</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1887. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1888. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1889. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1890. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >书面同意的情况下将账户有偿或无偿转让、出租、分享、借用、分时使用等给第三方使用,为他人使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1891. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1892. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1893. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1894. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >账户密码提供条件;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1895. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1896. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1897. mso-shading:rgb(255,255,255);" >4) <font face="楷体_GB2312" >仅可为自身正当合理目的使用或在与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1898. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1899. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1900. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1901. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >订立的其他有效协议中约定的范围内访问、查询、检索、下载或援引信息;不得为商业目的从事以上行为。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1902. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1903. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1904. mso-shading:rgb(255,255,255);" >5) <font face="楷体_GB2312" >不得在</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1905. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1906. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1907. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1908. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >产品或服务或网络之上运行或安装任何插件、外挂、系统或第三方工具对</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1909. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1910. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1911. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1912. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >产品、服务或网络的正常运行进行干扰、破坏、修改或施加其他影响;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1913. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1914. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1915. mso-shading:rgb(255,255,255);" >6) <font face="楷体_GB2312" >不得使用技术手段突破、绕开</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1916. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1917. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1918. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1919. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >对任何内容关于类型、数量等设置的访问、查询、浏览、下载或其他限制;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1920. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1921. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1922. mso-shading:rgb(255,255,255);" >7) <font face="楷体_GB2312" >不得使用技术手段突破、绕开</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1923. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1924. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1925. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1926. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的网络安全或身份验证措施;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1927. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1928. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1929. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1930. mso-shading:rgb(255,255,255);" >8) <font face="楷体_GB2312" >不得人为或通过技术手段干扰、破坏</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1931. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1932. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1933. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1934. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务的正常提供;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1935. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1936. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1937. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >9</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1938. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1939. mso-shading:rgb(255,255,255);" >) <font face="楷体_GB2312" >不得通过机器人软件、程序、脚本或其他自动化方式监视、复制、传播、展示、镜像、上载、下载等方式擅自获取或使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1940. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1941. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1942. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1943. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务及相关网站或系统的数据,或模仿</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1944. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1945. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1946. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1947. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务的外观和功能,但</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1948. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1949. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1950. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1951. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >根据特别约定主动提供的</font>API<font face="楷体_GB2312" >产品、</font><font face="Times New Roman" >API</font><font face="楷体_GB2312" >模块或其他集成了自动化使用方式的除外;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1952. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1953. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1954. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >10</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1955. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1956. mso-shading:rgb(255,255,255);" >) <font face="楷体_GB2312" >未经</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1957. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1958. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1959. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1960. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >事先书面同意,不得对</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1961. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1962. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1963. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1964. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的产品或服务进行漏洞扫描、安全测试、渗透测试;不得以任何技术手段试图获取</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1965. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1966. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1967. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1968. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >产品或服务的实现技术细节;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1969. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1970. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1971. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1972. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1973. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >1</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1974. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1975. mso-shading:rgb(255,255,255);" >) <font face="楷体_GB2312" >不得利用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1976. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1977. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1978. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1979. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >产品或服务中的技术漏洞,对其全部或部分进行未授权的访问或使用,包括但不限于调用未在界面上提供的功能;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1980. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1981. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1982. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1983. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1984. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >2</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1985. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1986. mso-shading:rgb(255,255,255);" >) <font face="楷体_GB2312" >不得在未经授权的情况下试图或实施获取他人的浏览记录、检索记录、检索方法、检索组合、监控设置、邮件内容</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1987. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1988. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >、分析记录、分析结论</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1989. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1990. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >等行为;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1991. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1992. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1993. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1994. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1995. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >3</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  1996. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  1997. mso-shading:rgb(255,255,255);" >) <font face="楷体_GB2312" >不得试图对</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  1998. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  1999. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2000. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2001. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >网页等产品进行解编、反向编译或逆向工程从</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2002. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2003. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2004. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2005. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >产品或服务中得到源代码;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2006. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2007. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2008. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2009. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2010. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >4</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2011. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2012. mso-shading:rgb(255,255,255);" >) </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2013. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2014. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不得</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2015. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2016. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >利用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2017. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2018. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2019. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2020. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的产品、服务或网络收集个人信息;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2021. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2022. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2023. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2024. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2025. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >5</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2026. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2027. mso-shading:rgb(255,255,255);" >) <font face="楷体_GB2312" >不得在未经</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2028. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2029. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2030. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2031. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >书面授权的情况下,利用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2032. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2033. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2034. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2035. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的服务、商标、商号、网站、设计等或上述多项的结合向第三方实施混淆等不正当行为;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2036. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2037. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2038. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2039. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2040. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >6</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2041. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2042. mso-shading:rgb(255,255,255);" >) <font face="楷体_GB2312" >不得破坏</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2043. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2044. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2045. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2046. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的版权技术保护措施,不得修改、编辑、改编、汇编、出版、翻译等</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2047. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2048. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2049. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2050. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >产品和服务中提供的包括且不限于网页、标记、图片、表格、链接、视频在内的任何部分或者全部数据;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2051. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2052. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2053. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2054. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2055. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >7</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2056. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2057. mso-shading:rgb(255,255,255);" >) <font face="楷体_GB2312" >不得向第三方提供、出售、转售</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2058. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2059. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2060. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2061. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务内容数据(包括但不限于目录、数据库、专题</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2062. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2063. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >、分析报告</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2064. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2065. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >等)其他相关派生作品,或将该等内容数据用于任何其它商业目的;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2066. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2067. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2068. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2069. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2070. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >8</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2071. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2072. mso-shading:rgb(255,255,255);" >)<font face="楷体_GB2312" >不得将</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2073. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2074. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2075. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2076. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的产品或服务改变为其他衍生作品或竞争产品或作为其他产品的组成部分进行有偿销售或无偿提供或进行其他商业化利用;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2077. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2078. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2079. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2080. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2081. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >9</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2082. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2083. mso-shading:rgb(255,255,255);" >)<font face="楷体_GB2312" >引用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2084. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2085. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2086. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2087. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >提供的数据、图表、报告等内容时,需在合理位置标明来源,不得通过任何形式(包括但不限于更改、模糊、删除或遮挡)影响</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2088. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2089. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2090. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2091. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >商标、字号、来源等标记的显示;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2092. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;vertical-align:baseline;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2093. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2094. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >20</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2095. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2096. mso-shading:rgb(255,255,255);" >) <font face="楷体_GB2312" >不得实施其他超出您自身、内部使用范围的行为,以及其他损害</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2097. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2098. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2099. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2100. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >产品、服务或违反法律法规的行为。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2101. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2102. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;vertical-align:baseline;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2103. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2104. mso-shading:rgb(255,255,255);" ><o:p>&nbsp;</o:p></span></p><h1 style="margin-left:24.0000pt;mso-para-margin-left:2.0000gd;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2105. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-weight:normal;
  2106. font-size:12.0000pt;mso-font-kerning:22.0000pt;" ><font face="Times New Roman" >5.</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2107. font-weight:normal;font-size:12.0000pt;mso-font-kerning:22.0000pt;" ><font face="楷体_GB2312" >责任范围及责任限制</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2108. font-weight:normal;font-size:12.0000pt;mso-font-kerning:22.0000pt;" ><o:p></o:p></span></h1><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2109. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2110. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >5</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2111. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2112. mso-shading:rgb(255,255,255);" >.1&nbsp;<font face="楷体_GB2312" >您知晓并同意,您应承担因您使用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2113. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2114. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2115. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2116. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >所提供的服务、违反本协议或在您账户下实施的任何行为而导致的任何第三方索赔。如因此导致</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2117. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2118. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2119. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2120. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >及</font>/<font face="楷体_GB2312" >或其关联公司、员工、合作伙伴被第三方索赔的,您应负责处理,并赔偿</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2121. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2122. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2123. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2124. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >及其关联公司的全部损失。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2125. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2126. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2127. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >5</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2128. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2129. mso-shading:rgb(255,255,255);" >.2&nbsp;<font face="楷体_GB2312" >在适用法律许可的范围内,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2130. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2131. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2132. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2133. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不对与本协议有关的或由本用户协议引起的任何间接的、惩罚性的、特殊的、偶然的、结果性的或派生的损失承担责任,无论是否被告知这种损害的可能性。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2134. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2135. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2136. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >5</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2137. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2138. mso-shading:rgb(255,255,255);" >.3&nbsp;</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2139. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2140. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2141. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2142. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不对您利用</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2143. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2144. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2145. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2146. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >服务实施的违法或违约行为承担任何责任。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2147. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2148. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2149. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >5</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2150. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2151. mso-shading:rgb(255,255,255);" >.4&nbsp;<font face="楷体_GB2312" >在任何情况下,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2152. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2153. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2154. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2155. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >及其关联方单独或合计承担的、由本协议引起或与之相关责任,均不超过您就相关服务当年度所支付的费用总额。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2156. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2157. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2158. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >5.5</font><font face="楷体_GB2312" >除法律有明确规定外,小世公司对第三方链接提供的服务或资源内容,无需承担责任。小世公司建议您在离开“小世”,访问其他网站或资源前仔细阅读其服务条款和隐私权政策。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2159. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2160. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2161. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2162. mso-shading:rgb(255,255,255);" ><o:p>&nbsp;</o:p></span></p><h3 style="text-indent:24.0000pt;mso-char-indent-count:2.0000;mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2163. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-weight:normal;
  2164. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="Times New Roman" >6</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2165. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-weight:normal;
  2166. font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="Times New Roman" >.</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2167. font-weight:normal;font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><font face="楷体_GB2312" >保密</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2168. font-weight:normal;font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p></o:p></span></h3><p class=p style="mso-pagination:widow-orphan;line-height:18.7500pt;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2169. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >只要信息仍属于保密信息,双方从对方处收到的保密信息(在非保密基础上公开的、成为公开的或者为</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2170. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2171. mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2172. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2173. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2174. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >或您所知悉的信息除外)不得披露给其他任何人,法律要求或为履行本协议义务所需的披露除外。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2175. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;line-height:18.7500pt;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2176. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >每一方将采用行业标准的管理、物理和技术的安全保障措施来保护另一方的保密信息。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2177. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;line-height:18.7500pt;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2178. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><font face="楷体_GB2312" >如果法院或政府机关命令任何一方披露另一方的保密信息,该另一方应当立即获得通知以便能够获得适当的保护性命令或其他补救,除非法院或政府机关禁止事前通知。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2179. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;line-height:18.7500pt;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2180. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2181. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2182. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >7</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2183. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2184. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >.</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2185. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2186. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不可抗力和意外事件</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2187. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2188. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2189. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2190. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2191. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可能因下列不可抗力及意外事件无法正常提供服务,或无法使其网站正常访问,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2192. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2193. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2194. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2195. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >不承担责任:</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2196. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2197. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2198. mso-shading:rgb(255,255,255);" >1) <font face="楷体_GB2312" >因自然灾害、疫情、罢工、战争、政府行为、司法行政命令等不可抗力因素;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2199. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2200. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2201. mso-shading:rgb(255,255,255);" >2) <font face="楷体_GB2312" >因电力供应故障、通讯网络故障等公共服务因素;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2202. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2203. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2204. mso-shading:rgb(255,255,255);" >3) <font face="楷体_GB2312" >因第三方数据、存储、计算等服务机构较大范围故障因素;</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2205. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2206. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2207. mso-shading:rgb(255,255,255);" >4) <font face="楷体_GB2312" >经提前公告或通知的,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2208. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2209. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >“小世”</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2210. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2211. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >在短时间内的系统维护。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2212. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2213. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2214. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2215. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >8</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2216. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2217. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >.</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2218. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2219. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >管辖与法律适用</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2220. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2221. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2222. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >8</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2223. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2224. mso-shading:rgb(255,255,255);" >.1 </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2225. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2226. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >本协议之效力、解释、变更、执行与争议解决均适用中华人民共和国法律。因本协议产生的争议应提交至深圳国际仲裁院解决。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2227. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2228. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2229. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >8</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2230. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2231. mso-shading:rgb(255,255,255);" >.2 <font face="楷体_GB2312" >本协议的原始版本为中文制成;</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2232. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2233. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2234. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2235. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >为您阅读方便可提供机器或人工翻译的其他语言版本,您亦可自行或委托他人翻译;与本协议或本协议项下的各条款、词句有关的定义、理解、解释、或适用等,应当以中文原意为准。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2236. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2237. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2238. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2239. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >9</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2240. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2241. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >.</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2242. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2243. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >通知与送达</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2244. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2245. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2246. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >9</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2247. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2248. mso-shading:rgb(255,255,255);" >.1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2249. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2250. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2251. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2252. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可通过</font></span><u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2253. text-decoration:underline;text-underline:single;font-size:12.0000pt;
  2254. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >网站公告</font></span></u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2255. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2256. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >、</font></span><u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2257. text-decoration:underline;text-underline:single;font-size:12.0000pt;
  2258. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >电子邮件</font></span></u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2259. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2260. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >、</font></span><u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2261. text-decoration:underline;text-underline:single;font-size:12.0000pt;
  2262. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >短信</font></span></u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2263. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2264. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >、</font></span><u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2265. text-decoration:underline;text-underline:single;font-size:12.0000pt;
  2266. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >电话</font></span></u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2267. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2268. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >、</font></span><u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2269. text-decoration:underline;text-underline:single;font-size:12.0000pt;
  2270. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >系统消息</font></span></u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2271. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2272. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >以及</font></span><u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2273. text-decoration:underline;text-underline:single;font-size:12.0000pt;
  2274. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >其他即时通信</font></span></u><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2275. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2276. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >等一种或多种通知方式向您发送通知,且</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2277. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2278. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2279. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2280. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >可以信赖您所提供的联系信息是完整、准确且当前有效的;上述通知在发送成功后视为已送达。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2281. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2282. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2283. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >9</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2284. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2285. mso-shading:rgb(255,255,255);" >.2 <font face="楷体_GB2312" >您的账户名称将被视为有效的收件地址之一。除非您在</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2286. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2287. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2288. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2289. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >通过特别设置,与该账户及账户的使用有关的通知,将被发送至该账户绑定的邮箱中。邮箱的变更应当以书面方式进行。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2290. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2291. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2292. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >9</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2293. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2294. mso-shading:rgb(255,255,255);" >.3 <font face="楷体_GB2312" >除非本协议另有约定或</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2295. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2296. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2297. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2298. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >与您另行签订的协议明确规定了通知方式,您发送给</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2299. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2300. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2301. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2302. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >的通知,应当通过</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2303. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2304. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2305. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2306. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >对外正式公布的通信地址、电子邮件地址等联系信息进行送达。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2307. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2308. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2309. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2310. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2311. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2312. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >0</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2313. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2314. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >.</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2315. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2316. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >条款的更新及终止</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2317. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2318. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2319. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2320. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2321. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >0</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2322. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2323. mso-shading:rgb(255,255,255);" >.1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2324. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2325. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2326. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2327. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >有权对本协议内容随时进行变更,并以本协议约定的通知方式予以公告或通知;若您在本协议内容变更后继续使用本服务的,表示您已充分阅读、理解并接受修改后的内容,也将遵循修改后的条款内容。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2328. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2329. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2330. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2331. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2332. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >0</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2333. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2334. mso-shading:rgb(255,255,255);" >.2 <font face="楷体_GB2312" >如本协议的任何条款被视作无效或无法执行,该条应视为可分的且并不影响本协议其余条款的有效性及可执行性,您与</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2335. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2336. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世公司</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2337. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2338. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >均应继续履行本协议并受其约束。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2339. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2340. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2341. mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2342. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2343. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="Times New Roman" >0</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2344. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2345. mso-shading:rgb(255,255,255);" >.3 <font face="楷体_GB2312" >在您的账户注销或经双方协商一致终止产品</font><font face="Times New Roman" >/</font><font face="楷体_GB2312" >服务的,本协议终止。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2346. font-size:12.0000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=MsoBodyText style="text-indent:36.0000pt;mso-char-indent-count:3.0000;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;font-size:12.0000pt;
  2347. mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2348. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2349. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >如您对本服务协议有任何问题或建议,请在工作时间联系</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
  2350. mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
  2351. mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >小世客服</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2352. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2353. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >。</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2354. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2355. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=p style="mso-pagination:widow-orphan;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2356. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2357. mso-shading:rgb(255,255,255);" ><font face="楷体_GB2312" >再次感谢您的耐心阅读!</font></span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
  2358. font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
  2359. mso-shading:rgb(255,255,255);" ><o:p></o:p></span></p><p class=MsoBodyText style="text-indent:36.0000pt;mso-char-indent-count:3.0000;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;font-size:12.0000pt;
  2360. mso-font-kerning:1.0000pt;" ><o:p>&nbsp;</o:p></span></p></div><!--EndFragment--></body></html>