123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418 |
- <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" >
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Normal" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="heading 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 7" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 8" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="heading 9" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 7" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 8" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index 9" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="toc 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="toc 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="toc 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 7" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 8" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toc 9" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Normal Indent" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="footnote text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="annotation text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="header" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="footer" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="index heading" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" QFormat="true" Name="caption" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="table of figures" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="envelope address" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="envelope return" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="footnote reference" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="annotation reference" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="line number" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="page number" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="endnote reference" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="endnote text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="table of authorities" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="macro" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="toa heading" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Bullet" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Number" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Bullet 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Bullet 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Bullet 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Bullet 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Number 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Number 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Number 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Number 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Title" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Closing" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Signature" ></w:LsdException>
- <w:LsdException Locked="false" Priority="1" SemiHidden="false" QFormat="true" Name="Default Paragraph Font" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Body Text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Body Text Indent" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="List Continue" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="List Continue 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Message Header" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Subtitle" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Salutation" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Date" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Body Text First Indent" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Body Text First Indent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Note Heading" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Body Text 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Body Text 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Body Text Indent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Body Text Indent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Block Text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Hyperlink" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="FollowedHyperlink" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Strong" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Emphasis" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Document Map" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Plain Text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="E-mail Signature" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Normal (Web)" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Acronym" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Address" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Cite" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Code" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Definition" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Keyboard" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Preformatted" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Sample" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Typewriter" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="HTML Variable" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" QFormat="true" Name="Normal Table" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="annotation subject" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="No List" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="1 / a / i" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="1 / 1.1 / 1.1.1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Article / Section" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Simple 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Simple 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Simple 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Classic 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Colorful 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Colorful 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Colorful 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Columns 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 7" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Grid 8" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 7" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table List 8" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table 3D effects 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table 3D effects 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table 3D effects 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Contemporary" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Elegant" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Professional" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Subtle 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Subtle 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" Name="Table Web 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Web 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Web 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Balloon Text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid" ></w:LsdException>
- <w:LsdException Locked="false" Priority="0" SemiHidden="false" UnhideWhenUsed="false" Name="Table Theme" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Placeholder Text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="No Spacing" ></w:LsdException>
- <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading" ></w:LsdException>
- <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List" ></w:LsdException>
- <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid" ></w:LsdException>
- <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List" ></w:LsdException>
- <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading" ></w:LsdException>
- <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List" ></w:LsdException>
- <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid" ></w:LsdException>
- <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Paragraph" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Quote" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Intense Quote" ></w:LsdException>
- <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="60" SemiHidden="false" UnhideWhenUsed="false" Name="Light Shading Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="61" SemiHidden="false" UnhideWhenUsed="false" Name="Light List Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="62" SemiHidden="false" UnhideWhenUsed="false" Name="Light Grid Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="63" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="64" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="65" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 1 Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="66" SemiHidden="false" UnhideWhenUsed="false" Name="Medium List 2 Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="67" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="68" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="69" SemiHidden="false" UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="70" SemiHidden="false" UnhideWhenUsed="false" Name="Dark List Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="71" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Shading Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="72" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful List Accent 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="73" SemiHidden="false" UnhideWhenUsed="false" Name="Colorful Grid Accent 6" ></w:LsdException>
- </w:LatentStyles></xml><![endif]--><style>
- @font-face{
- font-family:"Times New Roman";
- }
- @font-face{
- font-family:"宋体";
- }
- @font-face{
- font-family:"Wingdings";
- }
- @font-face{
- font-family:"楷体_GB2312";
- }
- @font-face{
- font-family:"Trebuchet MS";
- }
- @font-face{
- font-family:"黑体";
- }
- @font-face{
- font-family:"Arial";
- }
- @list l0:level1{
- mso-level-number-format:decimal;
- mso-level-suffix:tab;
- mso-level-text:"%1.";
- mso-level-tab-stop:none;
- mso-level-number-position:left;
- margin-left:21.6000pt;text-indent:-21.6000pt;font-family:'Times New Roman';}
- @list l0:level2{
- mso-level-number-format:decimal;
- mso-level-suffix:tab;
- mso-level-text:"%1.%2.";
- mso-level-tab-stop:none;
- mso-level-number-position:left;
- margin-left:28.7500pt;text-indent:-28.7500pt;font-family:'Times New Roman';}
- @list l0:level3{
- mso-level-number-format:decimal;
- mso-level-suffix:tab;
- mso-level-text:"%1.%2.%3.";
- mso-level-tab-stop:none;
- mso-level-number-position:left;
- margin-left:36.0000pt;text-indent:-36.0000pt;font-family:'Times New Roman';}
- @list l0:level4{
- mso-level-number-format:decimal;
- mso-level-suffix:tab;
- mso-level-text:"%1.%2.%3.%4.";
- mso-level-tab-stop:none;
- mso-level-number-position:left;
- margin-left:43.2000pt;text-indent:-43.2000pt;font-family:'Times New Roman';}
- @list l0:level5{
- mso-level-number-format:decimal;
- mso-level-suffix:tab;
- mso-level-text:"%1.%2.%3.%4.%5.";
- mso-level-tab-stop:none;
- mso-level-number-position:left;
- margin-left:50.4000pt;text-indent:-50.4000pt;font-family:'Times New Roman';}
- @list l0:level6{
- mso-level-number-format:decimal;
- mso-level-suffix:tab;
- mso-level-text:"%1.%2.%3.%4.%5.%6.";
- mso-level-tab-stop:none;
- mso-level-number-position:left;
- margin-left:57.5500pt;text-indent:-57.5500pt;font-family:'Times New Roman';}
- @list l0:level7{
- mso-level-number-format:decimal;
- mso-level-suffix:tab;
- mso-level-text:"%1.%2.%3.%4.%5.%6.%7.";
- mso-level-tab-stop:none;
- mso-level-number-position:left;
- margin-left:64.8000pt;text-indent:-64.8000pt;font-family:'Times New Roman';}
- @list l0:level8{
- mso-level-number-format:decimal;
- mso-level-suffix:tab;
- mso-level-text:"%1.%2.%3.%4.%5.%6.%7.%8.";
- mso-level-tab-stop:none;
- mso-level-number-position:left;
- margin-left:72.0000pt;text-indent:-72.0000pt;font-family:'Times New Roman';}
- @list l0:level9{
- mso-level-number-format:decimal;
- mso-level-suffix:tab;
- mso-level-text:"%1.%2.%3.%4.%5.%6.%7.%8.%9.";
- mso-level-tab-stop:none;
- mso-level-number-position:left;
- margin-left:79.1500pt;text-indent:-79.1500pt;font-family:'Times New Roman';}
- p.MsoNormal{
- mso-style-name:正文;
- mso-style-parent:"";
- mso-style-next:正文文本;
- margin:0pt;
- margin-bottom:.0001pt;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- h1{
- mso-style-name:"标题 1";
- mso-style-next:正文;
- margin-left:21.6000pt;
- text-indent:-21.6000pt;
- mso-char-indent-count:2.0000;
- page-break-after:avoid;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- mso-outline-level:1;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-weight:bold;
- font-size:15.0000pt;
- mso-font-kerning:22.0000pt;
- }
- h2{
- mso-style-name:"标题 2";
- mso-style-noshow:yes;
- mso-style-next:正文;
- margin-left:28.7500pt;
- text-indent:0.0000pt;
- mso-char-indent-count:0.0000;
- page-break-after:avoid;
- mso-pagination:lines-together;
- text-align:justify;
- text-justify:inter-ideograph;
- mso-outline-level:2;
- line-height:125%;
- font-family:'Trebuchet MS';
- mso-fareast-font-family:楷体_GB2312;
- mso-bidi-font-family:'Times New Roman';
- font-weight:bold;
- font-size:14.0000pt;
- mso-font-kerning:1.0000pt;
- }
- h3{
- mso-style-name:"标题 3";
- mso-style-noshow:yes;
- mso-style-next:正文;
- margin-left:36.0000pt;
- text-indent:0.0000pt;
- mso-char-indent-count:0.0000;
- page-break-after:avoid;
- mso-pagination:lines-together;
- text-align:justify;
- text-justify:inter-ideograph;
- mso-outline-level:3;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-weight:bold;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- h4{
- mso-style-name:"标题 4";
- mso-style-noshow:yes;
- mso-style-next:正文;
- margin-left:43.2000pt;
- text-indent:0.0000pt;
- mso-char-indent-count:0.0000;
- page-break-after:avoid;
- mso-pagination:lines-together;
- text-align:justify;
- text-justify:inter-ideograph;
- mso-outline-level:4;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- mso-ansi-font-weight:bold;
- font-size:10.5000pt;
- mso-font-kerning:1.0000pt;
- }
- h5{
- mso-style-name:"标题 5";
- mso-style-noshow:yes;
- mso-style-next:正文;
- margin-left:50.4000pt;
- text-indent:0.0000pt;
- mso-char-indent-count:0.0000;
- page-break-after:avoid;
- mso-pagination:lines-together;
- text-align:left;
- mso-outline-level:5;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:黑体;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- h6{
- mso-style-name:"标题 6";
- mso-style-noshow:yes;
- mso-style-next:正文;
- margin-top:12.0000pt;
- margin-bottom:3.2000pt;
- margin-left:57.5500pt;
- text-indent:0.0000pt;
- mso-char-indent-count:0.0000;
- page-break-after:avoid;
- mso-pagination:lines-together;
- text-align:justify;
- text-justify:inter-ideograph;
- mso-outline-level:6;
- line-height:132%;
- font-family:Arial;
- mso-fareast-font-family:黑体;
- mso-bidi-font-family:'Times New Roman';
- mso-ansi-font-weight:bold;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoHeading7{
- mso-style-name:"标题 7";
- mso-style-noshow:yes;
- mso-style-next:正文;
- margin-top:12.0000pt;
- margin-bottom:3.2000pt;
- margin-left:64.8000pt;
- text-indent:0.0000pt;
- mso-char-indent-count:0.0000;
- page-break-after:avoid;
- mso-pagination:lines-together;
- text-align:justify;
- text-justify:inter-ideograph;
- mso-outline-level:7;
- line-height:132%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- mso-ansi-font-weight:bold;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoHeading8{
- mso-style-name:"标题 8";
- mso-style-noshow:yes;
- mso-style-next:正文;
- margin-top:12.0000pt;
- margin-bottom:3.2000pt;
- margin-left:72.0000pt;
- text-indent:0.0000pt;
- mso-char-indent-count:0.0000;
- page-break-after:avoid;
- mso-pagination:lines-together;
- text-align:justify;
- text-justify:inter-ideograph;
- mso-outline-level:8;
- line-height:132%;
- font-family:Arial;
- mso-fareast-font-family:黑体;
- mso-bidi-font-family:'Times New Roman';
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.Msoheading9{
- mso-style-name:"标题 9";
- mso-style-noshow:yes;
- mso-style-next:正文;
- margin-top:12.0000pt;
- margin-bottom:3.2000pt;
- margin-left:79.1500pt;
- text-indent:0.0000pt;
- mso-char-indent-count:0.0000;
- page-break-after:avoid;
- mso-pagination:lines-together;
- text-align:justify;
- text-justify:inter-ideograph;
- mso-outline-level:9;
- line-height:132%;
- font-family:Arial;
- mso-fareast-font-family:黑体;
- mso-bidi-font-family:'Times New Roman';
- font-size:10.5000pt;
- mso-font-kerning:1.0000pt;
- }
- span.10{
- font-family:'Times New Roman';
- }
- span.15{
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- mso-ansi-font-weight:bold;
- font-size:14.0000pt;
- }
- span.16{
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-weight:bold;
- font-size:15.0000pt;
- mso-font-kerning:22.0000pt;
- }
- span.17{
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- span.25{
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- span.18{
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-weight:bold;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- span.19{
- font-family:'Times New Roman';
- mso-ansi-font-weight:bold;
- }
- span.20{
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- color:rgb(0,0,255);
- text-decoration:underline;
- text-underline:single;
- font-size:12.0000pt;
- }
- span.21{
- font-family:'Times New Roman';
- font-size:10.5000pt;
- }
- span.22{
- font-family:'Trebuchet MS';
- mso-fareast-font-family:楷体_GB2312;
- font-weight:bold;
- font-size:14.0000pt;
- }
- span.23{
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- mso-ansi-font-weight:bold;
- font-size:10.5000pt;
- }
- span.24{
- font-family:'Times New Roman';
- mso-fareast-font-family:黑体;
- font-size:12.0000pt;
- }
- span.26{
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:9.0000pt;
- mso-font-kerning:1.0000pt;
- }
- span.27{
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:9.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoBodyText{
- mso-style-name:正文文本;
- margin:0pt;
- margin-bottom:.0001pt;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.29{
- mso-style-name:修订1;
- mso-style-noshow:yes;
- margin:0pt;
- margin-bottom:.0001pt;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoToc2{
- mso-style-name:"目录 2";
- mso-style-next:正文;
- margin:0pt;
- margin-bottom:.0001pt;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoBodyTextIndent{
- mso-style-name:正文文本缩进;
- margin-bottom:6.0000pt;
- margin-left:21.0000pt;
- mso-para-margin-left:2.0000gd;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoCaption{
- mso-style-name:题注;
- mso-style-noshow:yes;
- mso-style-next:正文;
- margin:0pt;
- margin-bottom:.0001pt;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- page-break-after:avoid;
- mso-pagination:none;
- text-align:center;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoCommentText{
- mso-style-name:批注文字;
- margin:0pt;
- margin-bottom:.0001pt;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- mso-pagination:none;
- text-align:left;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoCommentSubject{
- mso-style-name:批注主题;
- mso-style-parent:批注文字;
- mso-style-next:批注文字;
- margin:0pt;
- margin-bottom:.0001pt;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- mso-pagination:none;
- text-align:left;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-weight:bold;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoToc3{
- mso-style-name:"目录 3";
- mso-style-next:正文;
- margin-left:24.0000pt;
- mso-para-margin-left:2.0000gd;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoAcetate{
- mso-style-name:批注框文本;
- margin:0pt;
- margin-bottom:.0001pt;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:9.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoBodyTextFirstIndent2{
- mso-style-name:"正文首行缩进 2";
- mso-style-parent:正文文本缩进;
- margin-bottom:6.0000pt;
- margin-left:21.0000pt;
- mso-para-margin-left:2.0000gd;
- text-indent:21.0000pt;
- mso-char-indent-count:2.0000;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoFooter{
- mso-style-name:页脚;
- margin:0pt;
- margin-bottom:.0001pt;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- layout-grid-mode:char;
- mso-pagination:none;
- text-align:left;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:9.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoHeader{
- mso-style-name:页眉;
- margin:0pt;
- margin-bottom:.0001pt;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- border-top:none;
- mso-border-top-alt:none;
- border-right:none;
- mso-border-right-alt:none;
- border-bottom:none;
- mso-border-bottom-alt:none;
- border-left:none;
- mso-border-left-alt:none;
- padding:1pt 4pt 1pt 4pt ;
- layout-grid-mode:char;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:9.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoToc1{
- mso-style-name:"目录 1";
- mso-style-next:正文;
- margin:0pt;
- margin-bottom:.0001pt;
- text-indent:0.0000pt;
- mso-char-indent-count:0.0000;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- text-transform:uppercase;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.p{
- mso-style-name:"普通\(网站\)";
- mso-margin-top-alt:auto;
- mso-margin-bottom-alt:auto;
- text-indent:24.0000pt;
- mso-char-indent-count:2.0000;
- mso-pagination:none;
- text-align:left;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- }
- p.42{
- mso-style-name:样式1;
- mso-style-parent:"标题 3";
- mso-style-next:正文;
- margin-left:36.0000pt;
- text-indent:0.0000pt;
- mso-char-indent-count:0.0000;
- page-break-after:avoid;
- mso-pagination:lines-together;
- text-align:justify;
- text-justify:inter-ideograph;
- mso-outline-level:3;
- line-height:125%;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-weight:bold;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.43{
- mso-style-name:Revision;
- mso-style-noshow:yes;
- margin:0pt;
- margin-bottom:.0001pt;
- font-family:'Times New Roman';
- mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;
- mso-font-kerning:1.0000pt;
- }
- span.msoIns{
- mso-style-type:export-only;
- mso-style-name:"";
- text-decoration:underline;
- text-underline:single;
- color:blue;
- }
- span.msoDel{
- mso-style-type:export-only;
- mso-style-name:"";
- text-decoration:line-through;
- color:red;
- }
- table.MsoNormalTable{
- mso-style-name:普通表格;
- mso-style-parent:"";
- mso-style-noshow:yes;
- mso-tstyle-rowband-size:0;
- mso-tstyle-colband-size:0;
- mso-padding-alt:0.0000pt 5.4000pt 0.0000pt 5.4000pt;
- mso-para-margin:0pt;
- mso-para-margin-bottom:.0001pt;
- mso-pagination:widow-orphan;
- font-family:'Times New Roman';
- font-size:10.0000pt;
- mso-ansi-language:#0400;
- mso-fareast-language:#0400;
- mso-bidi-language:#0400;
- }
- @page{mso-page-border-surround-header:no;
- mso-page-border-surround-footer:no;}@page Section0{
- margin-top:72.0000pt;
- margin-bottom:72.0000pt;
- margin-left:90.0000pt;
- margin-right:90.0000pt;
- size:595.3000pt 841.9000pt;
- layout-grid:15.6000pt;
- mso-header-margin:42.5500pt;
- mso-footer-margin:49.6000pt;
- mso-header:url("230509-“小世“系统用户协议”-v2r3-清洁版.files/header.html") h0;
- mso-footer:url("230509-“小世“系统用户协议”-v2r3-清洁版.files/header.html") f0;
- mso-first-header:url("230509-“小世“系统用户协议”-v2r3-清洁版.files/header.html") fh0;
- mso-first-footer:url("230509-“小世“系统用户协议”-v2r3-清洁版.files/header.html") ff0;
- }
- 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;
- mso-outline-level:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:16.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;
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- 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;
- font-size:12.0000pt;mso-font-kerning:1.0000pt;" ><o:p> </o:p></span></p><p class=MsoBodyText ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
- 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:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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:1;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" > 1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1.1 </span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';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;
- 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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1.2 </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1.3</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" > </span><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- text-decoration:underline;text-underline:single;font-size:12.0000pt;
- 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;
- 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:1;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >2</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >2.1 </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" > </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >.1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >.2</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >.4</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:1.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >.9 <font face="楷体_GB2312" >如果您是中国大陆地区以外的自然人、法人或其他组织,您应特别注意:受限于法律法规、政策的规定及数据授权方等的约定,</font></span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >.10</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';text-decoration:underline;
- text-underline:single;font-size:12.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,0);mso-highlight:rgb(255,255,0);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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" > </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" ><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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >7) </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" ><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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" ><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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >.1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- 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;
- 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:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >) </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" ><o:p> </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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-weight:normal;
- 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;
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >.3 </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" ><o:p> </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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-weight:normal;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-weight:normal;
- 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;
- 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;
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- 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;
- 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;
- 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;
- 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;
- 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;
- 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;
- 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:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- 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:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >.1 </span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- 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:1;" ><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >.1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- text-decoration:underline;text-underline:single;font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- text-decoration:underline;text-underline:single;font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- text-decoration:underline;text-underline:single;font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- text-decoration:underline;text-underline:single;font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- text-decoration:underline;text-underline:single;font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- text-decoration:underline;text-underline:single;font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- 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:1;" ><span style="mso-spacerun:'yes';font-family:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >.1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- mso-shading:rgb(255,255,255);" >1</span><span style="mso-spacerun:'yes';font-family:楷体_GB2312;mso-ascii-font-family:'Times New Roman';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- 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;
- 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:'Times New Roman';mso-fareast-font-family:楷体_GB2312;
- font-size:12.0000pt;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';
- mso-hansi-font-family:'Times New Roman';mso-bidi-font-family:'Times New Roman';font-size:12.0000pt;
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- font-size:12.0000pt;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;
- font-size:12.0000pt;mso-font-kerning:0.0000pt;background:rgb(255,255,255);
- 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;
- mso-font-kerning:1.0000pt;" ><o:p> </o:p></span></p></div><!--EndFragment--></body></html>
|