123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970 |
- <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>Administrator</o:Author><o:LastAuthor>夏天,雨</o:LastAuthor><o:Revision>1</o:Revision><o:Pages>29</o:Pages><o:Characters>18551</o:Characters><o:Lines>134</o:Lines><o:Paragraphs>37</o:Paragraphs></o:DocumentProperties><o:CustomDocumentProperties><o:KSOProductBuildVer dt:dt="string" >2052-11.1.0.9192</o:KSOProductBuildVer><o:ICV dt:dt="string" >C09B22DE648D4BAFA501DDF67FBCEE4A</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:PunctuationKerning></w:PunctuationKerning><w:View>Web</w:View><w:Compatibility><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="9" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="heading 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="9" SemiHidden="false" QFormat="true" Name="heading 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="9" SemiHidden="false" QFormat="true" Name="heading 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="9" SemiHidden="false" QFormat="true" Name="heading 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="9" SemiHidden="false" QFormat="true" Name="heading 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="9" SemiHidden="false" QFormat="true" Name="heading 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="9" SemiHidden="false" QFormat="true" Name="heading 7" ></w:LsdException>
- <w:LsdException Locked="false" Priority="9" SemiHidden="false" QFormat="true" Name="heading 8" ></w:LsdException>
- <w:LsdException Locked="false" Priority="9" SemiHidden="false" QFormat="true" Name="heading 9" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="index 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="index 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="index 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="index 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="index 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="index 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="index 7" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="index 8" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="index 9" ></w:LsdException>
- <w:LsdException Locked="false" Priority="39" SemiHidden="false" Name="toc 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="39" SemiHidden="false" Name="toc 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="39" SemiHidden="false" Name="toc 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="39" SemiHidden="false" Name="toc 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="39" SemiHidden="false" Name="toc 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="39" SemiHidden="false" Name="toc 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="39" SemiHidden="false" Name="toc 7" ></w:LsdException>
- <w:LsdException Locked="false" Priority="39" SemiHidden="false" Name="toc 8" ></w:LsdException>
- <w:LsdException Locked="false" Priority="39" SemiHidden="false" Name="toc 9" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Normal Indent" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="footnote text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="annotation text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="header" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="footer" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="index heading" ></w:LsdException>
- <w:LsdException Locked="false" Priority="35" SemiHidden="false" QFormat="true" Name="caption" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="table of figures" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="envelope address" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="envelope return" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="footnote reference" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="annotation reference" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="line number" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="page number" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="endnote reference" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="endnote text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="table of authorities" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="macro" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="toa heading" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Bullet" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Number" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Bullet 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Bullet 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Bullet 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Bullet 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Number 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Number 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Number 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Number 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="10" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Title" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Closing" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Signature" ></w:LsdException>
- <w:LsdException Locked="false" Priority="1" SemiHidden="false" Name="Default Paragraph Font" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Body Text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Body Text Indent" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Continue" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Continue 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Continue 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Continue 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="List Continue 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Message Header" ></w:LsdException>
- <w:LsdException Locked="false" Priority="11" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Subtitle" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Salutation" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Date" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Body Text First Indent" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Body Text First Indent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Note Heading" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Body Text 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Body Text 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Body Text Indent 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Body Text Indent 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Block Text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Hyperlink" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="FollowedHyperlink" ></w:LsdException>
- <w:LsdException Locked="false" Priority="22" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Strong" ></w:LsdException>
- <w:LsdException Locked="false" Priority="20" SemiHidden="false" UnhideWhenUsed="false" QFormat="true" Name="Emphasis" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Document Map" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Plain Text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="E-mail Signature" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Normal (Web)" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="HTML Acronym" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="HTML Address" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="HTML Cite" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="HTML Code" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="HTML Definition" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="HTML Keyboard" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="HTML Preformatted" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="HTML Sample" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="HTML Typewriter" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" 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="99" SemiHidden="false" 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="99" SemiHidden="false" Name="Table Simple 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Simple 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Simple 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Classic 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Classic 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Classic 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Classic 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Colorful 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Colorful 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Colorful 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Columns 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Columns 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Columns 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Columns 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Columns 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Grid 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Grid 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Grid 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Grid 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Grid 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Grid 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Grid 7" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Grid 8" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table List 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table List 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table List 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table List 4" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table List 5" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table List 6" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table List 7" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table List 8" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table 3D effects 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table 3D effects 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table 3D effects 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Contemporary" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Elegant" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Professional" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Subtle 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Subtle 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Web 1" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Web 2" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Table Web 3" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="false" Name="Balloon Text" ></w:LsdException>
- <w:LsdException Locked="false" Priority="59" SemiHidden="false" UnhideWhenUsed="false" Name="Table Grid" ></w:LsdException>
- <w:LsdException Locked="false" Priority="99" SemiHidden="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:"Calibri";
- }
- @font-face{
- font-family:"Wingdings";
- }
- @font-face{
- font-family:"微软雅黑";
- }
- p.MsoNormal{
- mso-style-name:正文;
- mso-style-parent:"";
- margin:0pt;
- margin-bottom:.0001pt;
- mso-pagination:none;
- text-align:justify;
- text-justify:inter-ideograph;
- font-family:Calibri;
- mso-fareast-font-family:宋体;
- mso-bidi-font-family:'Times New Roman';
- font-size:10.5000pt;
- mso-font-kerning:1.0000pt;
- }
- span.10{
- font-family:Calibri;
- }
- span.15{
- font-family:Calibri;
- font-size:9.0000pt;
- }
- span.16{
- font-family:Calibri;
- }
- span.17{
- font-family:Calibri;
- color:rgb(0,0,255);
- text-decoration:underline;
- text-underline:single;
- }
- span.18{
- font-family:Calibri;
- font-size:9.0000pt;
- }
- p.p{
- mso-style-name:"普通\(网站\)";
- mso-style-noshow:yes;
- margin-top:5.0000pt;
- margin-bottom:5.0000pt;
- mso-margin-top-alt:auto;
- mso-margin-bottom-alt:auto;
- mso-pagination:widow-orphan;
- text-align:left;
- font-family:宋体;
- font-size:12.0000pt;
- }
- p.MsoHeader{
- mso-style-name:页眉;
- mso-style-noshow:yes;
- margin:0pt;
- margin-bottom:.0001pt;
- border-bottom:1.0000pt solid windowtext;
- mso-border-bottom-alt:0.7500pt solid windowtext;
- padding:0pt 0pt 1pt 0pt ;
- layout-grid-mode:char;
- mso-pagination:none;
- text-align:center;
- font-family:Calibri;
- mso-fareast-font-family:宋体;
- mso-bidi-font-family:'Times New Roman';
- font-size:9.0000pt;
- mso-font-kerning:1.0000pt;
- }
- p.MsoFooter{
- mso-style-name:页脚;
- mso-style-noshow:yes;
- margin:0pt;
- margin-bottom:.0001pt;
- layout-grid-mode:char;
- mso-pagination:none;
- text-align:left;
- font-family:Calibri;
- mso-fareast-font-family:宋体;
- mso-bidi-font-family:'Times New Roman';
- font-size:9.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;
- }
- 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=p align=center style="margin-top:3.7500pt;margin-bottom:3.7500pt;text-align:center;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:15.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:15.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:15.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >注册协议</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;mso-line-height-alt:12pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:9.0000pt;mso-font-kerning:0.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >提示条款</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >欢迎您与各</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >经营者(详见定义条款)共同签署本《</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务协议》(下称</font>“本协议”)并使用</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务!</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >各服务条款前所列索引关键词仅为帮助您理解该条款表达的主旨之用,不影响或限制本协议条款的含义或解释。为维护您自身权益,建议您仔细阅读各条款具体表述。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >【审慎阅读】</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您在申请注册流程中点击同意本协议之前,应当认真阅读本协议。</font></span><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >请您务必审慎阅读、充分理解各条款内容,特别是免除或者限制责任的条款、法律适用和争议解决条款。免除或者限制责任的条款将以粗体下划线标识,您应重点阅读。</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >如您对协议有任何疑问,可向</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >客服咨询。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >【签约动作】</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >当您按照注册页面提示填写信息、阅读并同意本协议且完成全部注册程序后,即表示您已充分阅读、理解并接受本协议的全部内容,并与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >达成一致,成为</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >“用户”。</span><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >阅读本协议的过程中,如果您不同意本协议或其中任何条款约定,您应立即停止注册程序。</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >一、</font> <font face="微软雅黑" >协议范围</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >网</font>”(域名为“</span><span><a href="http://www.hyjcz.cn/" ><u><span class="17" style="mso-spacerun:'yes';font-family:Calibri;color:rgb(0,0,255);
- text-decoration:underline;text-underline:single;" >http://www.hyjcz.cn</span></u></a></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >app”或其他H5等开放平台, 以下简称“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >平台服务包含任何</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >平台及其关联公司、第三方服务商提供的基于互联网以及移动互联网的相关服务,且均受本协议约束。如果您不同意本协议的约定,您应立即停止注册或停止使用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务规则》及所有</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >已经发布或将来可能发布的各类规则、公告或通知(以下合称</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >规则</font>”或“规则”)。所有规则为本协议不可分割的组成部分,与协议正文具有同等法律效力。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权依据国家法律法规调整的要求和公平交易的商业原则及时地制订、修改本协议及各类规则,并以网站公示的方式进行变更公告,无需另行单独通知您。变更后的协议和规则一经在网站公布后,立即或在公告明确的特定时间自动生效。若您在前述变更公告后继续使用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务的,即表示您已经阅读、理解并接受经修订的协议和规则。若您不同意相关变更,应当立即停止使用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >二、</font> <font face="微软雅黑" >注册与账户</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您确认,在您完成注册程序或以其他</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >平台允许的方式实际使用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务时,您应当符合下列条件之一</font>:</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务;</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您一旦注册成功成为用户,您将得到一个密码和帐号。如果您未保管好自己的帐号和密码而对您、</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >或第三方造成的损害,您将负全部责任。另外,每个用户都要对其帐户中的所有活动和事件负全责。您可随时改变您的密码和图标,也可以结束旧的帐户重开一个新帐户。用户同意若发现任何非法使用用户帐号或安全漏洞的情况,立即通告</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >三、</font></span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >上发布需求</font>/服务、查询需求/服务、达成交易意向并进行交易、对其他会员进行评价、参加</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >组织的活动以及使用其它信息服务及技术服务,具体以所开通的平台提供的服务内容为准。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >上交易过程中与其他会员发生交易纠纷时,一旦您或其它会员任一方或双方共同提交</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >要求调查处理,则</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >作为独立第三方,有权根据单方判断做出调查处理决定,您了解并同意接受</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的判断和调查处理决定。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权应政府部门(包括司法及行政部门)的要求,向其提供您向</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >提供的用户信息和交易记录等必要信息。如您涉嫌侵犯他人知识产权等合法权益,则</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >亦有权在初步判断涉嫌侵权行为存在的情况下,向权利人提供您必要的身份信息。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >5、拒绝提供担保和免责声明</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您明确同意使用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务的风险由您个人承担。服务提供是建立在免费的基础上。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >明确表示不提供任何类型的担保,不论是明确的或隐含的,但是对商业性的隐含担保,特定目的和不违反规定的适当担保除外。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >不担保服务一定能满足用户的要求,也不担保服务不会受中断,对服务的及时性、安全性、真实性、出错发生都不作担保。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >拒绝提供任何担保,包括信息能否准确、及时、顺利地传送。用户理解并接受下载或通过</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >产品服务取得的任何信息资料取决于用户自己,并由其承担系统受损、资料丢失以及其它任何风险。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >对在服务网上得到的任何商品购物服务、交易进程、招聘信息,承包过程、成果审核等都不作担保。用户不会从</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >收到口头或书面的意见或信息,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >也不会在这里作明确担保。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >四、</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务使用规范</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >上使用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务过程中,你承诺遵守以下约定:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >a)、实施的所有行为均遵守国家法律、法规等规范性文件及</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >各项规则的规定和要求,不违背社会公共利益或公共道德,不损害他人的合法权益,不偷逃应缴税费,不违反本协议及相关规则。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >b)、在与其他会员交易过程中,遵守诚实信用原则,不采取不正当竞争行为,不扰乱网上交易的正常秩序,不从事与网上交易无关的行为。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >c)、不发布国家禁止销售的或限制销售的服务信息(除非取得合法且足够的许可),不发布涉嫌侵犯他人知识产权或其它合法权益的服务信息,不发布违背社会公共利益或公共道德或</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >认为不适合在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >平台平台上销售的服务信息,不发布其它涉嫌违法或违反本协议及各类规则的信息。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >d)、不采取不正当手段(包括但不限于虚假需求、互换好评等方式)提高自身或他人评价,或采用不正当手段恶意评价其他用户,降低其他人评价。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >e)、未经公司书面许可,不对</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >平台平台上的任何数据作商业性利用,包括但不仅限于在未经</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >事先书面同意的情况下,以复制、传播等任何方式使用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >站上展示的资料。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >f)、不使用任何装置、软件或例行程序干预或试图干预</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的正常运作或正在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >上进行的任何交易、活动。你不得采取任何将导致不合理的庞大数据负载加诸</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >平台平台网络设备的行为。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >a)、您如果违反前述承诺,产生任何法律后果的,您应以自己的名义独立承担所有的法律责任,并确保</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >免于因此产生任何损失或增加费用。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >b)、基于维护</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >交易秩序及交易安全的需要,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权在发生恶意交易等扰乱市场正常交易秩序的情形下,执行强制关闭相应交易订单等操作。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;line-height:12.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >c)、经国家行政或司法机关的生效法律文书确认你存在违法或侵权行为,或者</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >根据自身的判断,认为您的行为涉嫌违反法律法规的规定或涉嫌违反本协议和</font>/或规则的条款的,则</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >上公示您的该等涉嫌违法或违约行为及</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >已对您采取的措施。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >d)、对于您在</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >上发布的涉嫌违法、涉嫌侵犯他人合法权利或违反本协议和规则的信息,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权不经通知你即予以删除,且按照规则的规定进行处罚。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >e)、对于您违反本协议项下承诺,或您在</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >上实施的行为,包括你未在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >上实施但已经对</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >及其用户产生影响的行为,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权单方认定您行为的性质及是否构成对本协议规则的违反,并根据单方认定结果适用规则予以处理或终止向您提供服务,且无须征得您的同意或提前通知予您。您应自行保存与您行为有关的全部证据,并应对无法提供充要证据而承担的不利后果。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >f)、如您涉嫌违反有关法律或者本协议之规定,使</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >遭受任何损失,或受到任何第三方的索赔,或受到任何行政管理部门的处罚,您应当赔偿</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >因此造成的损失发生的费用,包括合理的律师费用。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您了解并同意:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您单独承担发布内容的责任。您对服务的使用是根据所有适用于服务的地方法律、国家法律和国际法律标准的。您承诺</font>:</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >(</font>1)在</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的网页上发布信息或者利用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的服务时必须符合中国有关法规,不得在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的网页上或者利用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的服务制作、复制、发布、传播以下信息</font>:</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >a)、反对宪法所确定的基本原则的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >b)、危害国家安全,泄露国家秘密,颠覆国家政权,破坏国家统一的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >c)、损害国家荣誉和利益的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >d)、煽动民族仇恨、民族歧视,破坏民族团结的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >e)、破坏国家宗教政策,宣扬邪教和封建迷信的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >f)、散布谣言,扰乱社会秩序,破坏社会稳定的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >g)、散布淫秽、色情、赌博、暴力、凶杀、恐怖或者教唆犯罪的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >h)、侮辱或者诽谤他人,侵害他人合法权益的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >i)、含有法律、行政法规禁止的其他内容的。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >(</font>2)在</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的网页上发布信息或者利用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的服务时还必须符合其他有关国家和地区的法律规定以及国际法的有关规定。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >(</font>3)不利用</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的服务从事以下活动</font>:</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >a)、未经允许,进入计算机信息网络或者使用计算机信息网络资源的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >b)、未经允许,对计算机信息网络功能进行删除、修改或者增加的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >c)、未经允许,对进入计算机信息网络中存储、处理或者传输的数据和应用程序进行删除、修改或者增加的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >d)、故意制作、传播计算机病毒等破坏性程序的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >e)、其他危害计算机信息网络安全的行为。 </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >(</font>4)不以任何方式干扰</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的服务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >(</font>5)遵守</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的所有其他规定和程序。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您需对自己在使用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >平台服务过程中的行为承担法律责任。您理解,如果</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >发现其网站传输的信息明显属于上段第</font>(1)条所列内容之一,依据中国法律,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有义务立即停止传输,保存有关记录,向国家有关机关报告,并且删除含有该内容的地址、目录或关闭服务器。</font> </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您使用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >电子公告服务,包括电子布告牌、电子白板、电子论坛、网络聊天室和留言板等以交互形式为上网用户提供信息发布条件的行为,也须遵守本条的规定以及</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >将专门发布的电子公告服务规则,上段中描述的法律后果和法律责任同样适用于电子公告服务的用户。</font> </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >若您的行为不符合以上提到的服务条款,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >将作出独立判断立即取消用户服务帐号。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >五、特别授权</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您完全理解并不可撤销地授予</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >平台及其关联公司下列权利:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >或</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >授权的第三方或您与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >一致同意的第三方,根据本协议及</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >规则的规定,处理您在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >上发生的所有交易及可能产生的交易纠纷。您同意接受</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >或</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >授权的第三方或您与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >一致同意的第三方的判断和调查处理决定。该决定将对你具有法律约束力。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >和其关联公司做出任何形式的承诺,且相关公司已确认您违反了该承诺,则</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权立即按您的承诺或协议约定的方式对您的账户采取限制措施,包括中止或终止向您提供服务,并公示相关公司确认的您的违约情况。您了解并同意,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >无须就相关确认与您核对事实,或另行征得您的同意,且</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >无须就此限制措施或公示行为向你承担任何的责任。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >及其关联公司永久免费的许可使用权利</font> (并有权在多个层面对该权利进行再授权)。此外,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >及其关联公司有权</font>(全部或部分) 使用、复制、修订、改写、发布、翻译、分发、执行和展示您的全部资料数据(包括但不限于注册资料、交易行为数据及全部展示于</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的各类信息)或制作其派生作品,并以现在已知或日后开发的任何形式、媒体或技术,将上述信息纳入其它作品内。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >六、责任范围和责任限制</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >负责按</font>"现状"和"可得到"的状态向您提供</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务。但</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >对</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务不作任何明示或暗示的保证,包括但不限于</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务的适用性、没有错误或疏漏、持续性、准确性、可靠性、适用于某一特定用途。同时,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >也不对</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务所涉及的技术及信息的有效性、准确性、正确性、可靠性、稳定性和及时性做出任何承诺和保证。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >仅作为您获取需求和服务信息、物色交易对象、就服务的交易进行协商及开展交易的场所,平台上的服务和需求信息系由用户自行发布,且可能存在风险和瑕疵,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >无法完全控制交易所涉及的服务的质量、安全或合法性,信息的真实性或准确性,以及交易各方履行其在贸易协议中各项义务的能力。您应自行谨慎判断确定相关信息的真实性、合法性和有效性,并自行承担因此产生的责任与损失。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >没有义务对所有用户的信息数据、服务信息、交易行为以及与交易有关的其它事项进行事先审查:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >a)、</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有合理的理由认为特定会员及具体交易事项可能存在重大违法或违约情形。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >b)、</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有合理的理由认为用户在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的行为涉嫌违法或其他不当。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >或</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >授权的第三方或您与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >一致同意的第三方有权基于您不可撤销的授权受理您与其他会员因交易产生的争议,并有权单方判断与该争议相关的事实及应适用的规则,进而做出处理决定,包括但不限于调整相关订单的交易状态,争议款项的全部或部分支付给交易一方或双方。该处理决定对您有约束力。如你未在限期内执行处理决定的,则</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权利(但无义务)直接使用您账户内的款项,或您向</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >及其关联公司交纳的保证金代为支付。您应及时补足保证金并弥补</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >及其关联公司的损失,否则</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >及其关联公司有权直接抵减您在其它合同项下的权益,并有权继续追偿。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您理解并同意,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >或</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >授权的第三方或您与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >一致同意的第三方并非司法机构,仅能以普通人的身份对证据进行鉴别,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >或</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >授权的第三方或您与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >一致同意的第三方对争议的调查处理完全是基于您不可撤销的授权,其无法保证争议处理结果符合您的期望,也不对争议调处结论承担任何责任。如你因此遭受损失,您同意自行向受益人索偿。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >5、您了解并同意,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >不对因下述任一情况而导致您的任何损害赔偿承担责任,包括但不限于利润、商誉、数据等方面的损失或其它无形损失的损害赔偿</font> (无论</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >是否已被告知该等损害赔偿的可能性</font>) :</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >a)、使用或未能使用</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >b)、第三方未经批准的使用您的账户或更改您的数据。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >c)、通过</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >交易服务或获取任何平台增值服务、数据、信息或进行交易等行为或替代行为产生的费用及损失。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >d)、您对</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务的误解。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >e)、任何非因</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的原因而引起的与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务有关的其它损失。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >6、不论在何种情况下,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >均不对由于信息网络正常的设备维护,信息网络连接故障,电脑、通讯或其他系统的故障,电力故障、罢工、劳动争议、暴乱、起义、骚乱、生产力或生产资料不足、火灾、洪水、风暴、爆炸、战争、政府行为、司法行政机关的命令或第三方的不作为而造成的不能服务或延迟服务承担责任。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >七、协议终止</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权自行全权决定以任何理由不经事先通知的中止、终止向您提供部分或全部</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务,暂时冻结或永久冻结(注销)您的账户在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的权限,且无须为此向您或任何第三方承担任何责任。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权直接以注销账户的方式终止本协议,并有权永久冻结(注销)您的账户在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的权限和收回账户对应的</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >昵称:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >a)、</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >终止向您提供服务后,您涉嫌再一次直接或间接以他人名义注册为</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >用户的;</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >b)、您提供的电子邮箱不存在或无法接收电子邮件,且没有任何其他方式可以与您进行联系,或</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >以其它联系方式通知您更改电子邮件信息,而您在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >通知后三个工作日内仍未更改为有效的电子邮箱的。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >c)、您提供的用户信息中的主要内容不真实或不准确或不及时或不完整;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >d)、本协议(含规则)变更时,您明示并通知</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >不愿接受新的服务协议的;</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >e)、其它</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >认为应当终止服务的情况。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >f)、您若反对任何服务条款的建议或对后来的条款修改有异议,或对</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务不满,您只有以下的追索权:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务的资格。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >停止该用户的服务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >结束用户服务后,即协议终止。您使用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务的权利马上中止。从那时起,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >不再对您承担任何义务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的权限被永久冻结(注销)后,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >没有义务为您保留或向您披露您账户中的任何信息,也没有义务向您或第三方转发任何您未曾阅读或发送过的信息。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的合同关系终止后,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >仍享有下列权利:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >a)、继续保存您的用户信息及您使用</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务期间的所有交易信息。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >b)、您在使用</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务期间存在违法行为或违反本协议和</font>/或规则的行为的,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >仍可依据本协议向您主张权利。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >5、</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中止或终止向您提供</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务后,对于您在服务中止或终止之前的交易行为依下列原则处理,您应独力处理并完全承担进行以下处理所产生的任何争议、损失或增加的任何费用,并应确保</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >免于因此产生任何损失或承担任何费用:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >a)、您在服务中止或终止之前已经上传至</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的服务交易尚未交易的,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权在中止或终止服务的同时删除此项服务交易的相关信息;</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >b)、您在服务中止或终止之前已经与其他会员达成服务交易合同,但合同尚未实际履行的,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权删除该买卖合同及其交易服务的相关信息;</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >c)、您在服务中止或终止之前已经与其他会员达成买卖合同且已部分履行的,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >可以不删除该项交易,但</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >有权在中止或终止服务的同时将相关情形通知您的交易对方。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >八、隐私权政策</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >平台将在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >公布并不时修订隐私权政策,隐私权政策构成本协议的有效组成部分。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >九、知识产权条款</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >唯一所有,未经</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >书面许可,任何人均不得擅自进行全部和局部复制、转载、引用和链接等使用和处分。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >自行或许可其关联方、业务合作方、宣传方不受任何限制的使用和处分。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >十、法律适用、管辖与其他</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务所产生的争议应由</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的经营者与您直接沟通并处理。一旦产生不可调和的争议,您与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >的经营者均同意该争议统一归</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >所在地相应级别的法院管辖。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >签署声明:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您已经充分知悉且已理解本协议全部内容,保证网络流程操作者已获有效授权并足以代表自己或者授权人订立本协议。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >附件一</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p align=center style="margin-top:0.0000pt;margin-right:5.2500pt;margin-bottom:7.5000pt;
- margin-left:15.7500pt;text-align:center;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:15.0000pt;
- mso-font-kerning:0.0000pt;" >“</span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:15.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:15.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:15.0000pt;
- mso-font-kerning:0.0000pt;" >”平台服务协议</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p align=justify style="margin-top:0.0000pt;margin-right:21.0000pt;margin-bottom:7.5000pt;
- text-align:justify;text-justify:inter-ideograph;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.5000pt;mso-font-kerning:0.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p align=justify style="margin-top:0.0000pt;margin-right:21.0000pt;margin-bottom:7.5000pt;
- text-align:justify;text-justify:inter-ideograph;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.5000pt;mso-font-kerning:0.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" > </span><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >提示条款</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >欢迎您与各</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >经营者(详见定义条款)共同签署本《</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务协议》(下称</font>“本协议”)并使用</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >服务!</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >各服务条款前所列索引关键词仅为帮助您理解该条款表达的主旨之用,不影响或限制本协议条款的含义或解释。为维护您自身权益,建议您仔细阅读各条款具体表述。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >【审慎阅读】</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >您在申请注册流程中点击同意本协议之前,应当认真阅读本协议。</font></span><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >请您务必审慎阅读、充分理解各条款内容,特别是免除或者限制责任的条款、法律适用和争议解决条款。免除或者限制责任的条款将以粗体下划线标识,您应重点阅读。</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >如您对协议有任何疑问,可向</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >客服咨询。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >【签约动作】</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >当您按照注册页面提示填写信息、阅读并同意本协议且完成全部注册程序后,即表示您已充分阅读、理解并接受本协议的全部内容,并与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >达成一致,成为</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >“用户”。</span><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >阅读本协议的过程中,如果您不同意本协议或其中任何条款约定,您应立即停止注册程序。</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:3.7500pt;margin-bottom:3.7500pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.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:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-right:21.0000pt;margin-bottom:7.5000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >本协议是您与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >(下称</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台,网址</span><span><a href="http://www.hyjcz.cn/" ><u><span class="17" style="mso-spacerun:'yes';font-family:Calibri;color:rgb(0,0,255);
- text-decoration:underline;text-underline:single;" >http://www.hyjcz.cn</span></u></a></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >和</font>/或</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >app)所有者(下称“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”)之间就“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”开放平台网站服务等相关事宜达成的合意,请您仔细阅读本协议。点击“同意协议”按钮之日起,即表示您已充分阅读、理解并同意自己与本网站订立本协议,且您自愿受本协议的条款约束。本网站有权随时变更本协议并在本网站上予以公告。经修订的条款一经在本网站的公布后,立即自动生效。如您不同意相关变更,必须停止使用本网站。本协议内容包括协议正文及所有</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >已经发布的各类规则。所有规则为本协议不可分割的一部分,与本协议正文具有同等法律效力。一旦您继续使用本网站,则表示您已接受并自愿遵守经修订后的条款。本协议即构成对您与</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >之间有约束力的法律文件。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;text-indent:18.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >依照《中华人民共和国民法典》及相关法律、行政法规、遵循平等、自愿、公平和诚信原则,为明确各方责任,保护双方合法权益,经双方友好协商,达成如下协议:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第一条</font> 定义</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.1 “</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台:指运行于“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”网站的“</span><span><a href="http://www.hyjcz.cn/" ><u><span class="17" style="mso-spacerun:'yes';font-family:Calibri;color:rgb(0,0,255);
- text-decoration:underline;text-underline:single;" >http://www.hyjcz.cn</span></u></a></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >及</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;
- background:rgb(255,255,255);mso-shading:rgb(255,255,255);" >app”或其他H5等开放平台</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >,是</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”网站上为用户提供信息发布、交流,以及其他技术服务的电子商务交易服务平台,本协议中提及的应由接任务方或“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台行使的权利和履行的义务,由“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”内部负责履行。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.2 “</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台规则:指公示在“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台之上的,与“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台运营相关的全部规范性文件及流程操作指引。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.3 “发任务方”、“注册”及“入驻”:发任务方(又称“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”、“发任务企业”“发包方”),指已成为“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台的非自然人注册用户并准备或正在“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台发布项目的用户。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.4 “发布</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”、“项目”、“任务”:“发布</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”,指</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >在</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台以任务发布用户账户先后发布需要解决的具有一定经济价值或社会意义的任务、课题或其他相关需求的项目总和;“项目”,指</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >分批次发布的各期</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >;</font>“任务”,指</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >发布项目中所包含的每个单独的任务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.5 “接任务方”:(又称“接任务团队”、“团队”、“接包方”)指在“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台上已注册并经接任务方确认符合</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >业务要求的接任务团队或在有关工商行政管理部门登记注册的个体工商户,从事领取、解决和</font>/或完成“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台公开且正在进行中的待解决任务、课题或其他相关需求,由单一或数个自然人组成并负责管理本团队的主体。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.6 “任务项目服务费”:</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >按</font> “</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台规则确定的费率及本协议约定,向发布项目中的合格接任务方按审核通过的任务数量支付的项目服务费总和,从</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >在</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台的账户预存款中即时划扣。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.7 “平台服务费”:指接任务方为</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供本协议项下服务时,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >按</font> “</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台规则确定的费率及本协议约定向接任务方支付的“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台服务费。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.8 “预存款”:是指</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >在发布当期项目或委托服务需求前,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >应按提示在</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台线上完成相应预存(或向接任务方指定收款银行账户支付预付全款,即委托接任务方代</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >向</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >账户充值预存款),预存款由</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >支配并按本协议及</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台规则划扣,用以保障接任务方劳有所得、增强任务可信度、提升任务完成率的资金。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.9 “审核”:</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >根据发布项目或委托服务内容制定明确、具体、可衡量、可执行的审核标准,接任务方按该标准提交全部项目成果证明(即</font>“项目成果”)后,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >按该标准审核并在</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台确认。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.10 “结算金额”:是指</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >发布项目或委托服务事项中发生的全部交易金额(含任务项目服务费、平台服务费、手续费、税费等其他相关费用),从</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >预存款中即时划扣。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1.11 “不可抗力”:指不能预见、不能避免并不能克服的客观情况,包括但不限于战争、台风、水灾、火灾、雷击或地震、罢工、暴动、法定疾病、黑客攻击、网络病毒、电信网监部门技术管制、政府行为或任何其它自然或人为造成的灾难等强力制约本协议正常履行的客观情况。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第二条</font> 服务内容</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:18.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >2.1 服务内容</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >2.1.1发任务方企业根据经营需要,委托</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >依法通过</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供相关服务,服务方式包括但不限于咨询、信息、培训、技术、宣传、地推等各方共同确认的其他服务方式与服务内容。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >2.1.2</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >各方确认并同意,本协议项下发任务方委托</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供的服务内容及服务方式应当符合国家法律法规以及有关部门的监管规定,且应符合双方的经营范围及资质许可要求,同时也不应违反</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >规则。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >2.1.3</span><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >审核标准</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1) 为了保护接任务方权益并使接任务方更加准确了解“项目成果的合格状态”,发任务方应在发布项目时设定审核标准,且应审慎填写并严格执行;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >2) 如发任务方未予审核通过,接任务方可向</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >复议,由发任务方给出最终判定结果。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >2.1.4 接任务方仅按本协议约定的服务内容为发任务方提供信息及相关服务,因接任务方或第三方原因导致发任务方损失的,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >不承担相关赔偿责任和</font>/或相关所有连带责任。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >2.1.5</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >费用实现:发任务方按审核标准确认接任务方提交的项目成果合格之后,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >根据</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台统计的接任务方与发任务方之间的项目成交金额,从发任务方账户预存款中划扣相应金额至接任务方账户。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >2.2</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >接任务方账户使用方式:接任务方账户在</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台上领取的全部项目以及接任务方团队师傅在线下具体执行任务中,均以接任务方自身名义进行项目领取、项目执行、项目成果提交等。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第三条</font> 企业认证条件及证明文件提交</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >3.1 认证条件</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >发任务方申请成为</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台认证用户,在“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台开展经营活动,同时发任务方应保证满足以下全部条件:</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >3.1.1发任务方及接任务方为根据中国法律、法规、行政规章成立并合法存在的机关、企事业单位、个体工商户、社团组织和其他组织。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >3.1.2发任务方、接任务方同意严格遵守本协议及“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台规则及相关操作指引,规则及指引会不断补充完善,更新后</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >会及时在</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台以公示方式通知发任务方及接任务方;发任务方及接任务方有权选择拒绝履行,并立即停止使用“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台的服务。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;text-indent:21.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >根据中国法律、法规、行政规章成立并合法存在的机关、企事业单位、社团组织和其他组织。无法人资格的单位或组织或不满足条件的自然人不能注册为本网站用户的,其与本网站之间的协议自始无效,本网站一经发现,有权立即终止对该用户的服务,并追究其使用本网站服务的一切法律责任。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:18.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >3.2 证明文件提交</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" >3.2.1发任务方及接任务方根据“</span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" >”平台规则及相关要求向</span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提交营业执照、身份证等清晰扫描件。</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" >3.2.2发任务方及接任务方保证向</span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供的上述证明文件或其他相关证明真实、合法、准确、有效,并保证上述证明文件或其他相关证明发生任何变更、更新、撤销或注销之日起十日内书面通知</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >;若因接任务方提交虚假、过期文件或未及时更新或通知证明文件导致纠纷或被相关国家机关处罚的,由接任务方独立承担全部法律责任,如因此造成</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >(包括</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >代理人或职员)或其他任何相关方损失的,接任务方应当承担全部的赔偿责任。</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第四条</font> 账户的开通、停止</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >4.1 对于发任务方及接任务方拟领取及发布任务的账户,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >在其提出开通申请并满足以下条件后为其开通服务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >4.1.1发任务方或接任务方已按照本协议约定及“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台规则提交证明文件或其他相关证明并已在</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >平台完成备案;</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >4.1.2发任务方或接任务方已注册成为“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台用户且本协议已生效。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >4.2 </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >平台为发任务方开通服务后,发任务方可利用</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台用户名及自设密码登陆接任务方自有账户,与接任务方交流、审核项目成果、与接任务方达成交易、完成支付,使用本协议约定的其他服务等。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" >4.3 发任务方或接任务方提交的任务信息须符合法律法规规定,出现以下任一情形时,</span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有权随时停止发任务方或接任务方相关账户的服务,有权解除本协议,并应由违约方承担因下述事宜造成的全部损失;</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" >1) 发任务方或接任务方不再满足入驻条件的;</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" >2) 发任务方或接任务方提供虚假资质文件的;</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" >3) 发任务方或接任务方执行项目错误或虚假业务,导致</span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏酒业</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >平台受到或面临行政处罚、争议或纠纷的;</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" >4) 发任务方或接任务方提交的项目信息含有可能危害国家安全、破坏民族团结及宗教政策、宣扬邪教迷信、淫秽色情、虚假、侮辱、诽谤、恐吓或骚扰、涉嫌非法集资、侵犯他人知识产权、商业秘密、人身权或其他合法权益等违法或有违社会公序良俗的信息。</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第五条</font>  发任务方权利与义务</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.1 发任务方有权根据本协议及“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台规则,通过“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台发布项目信息、发布任务、对接任务方执行的项目进行验收,验收合格后并支付一定承包款,参加“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台有关活动并享受“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台提供的其他有关资讯及信息服务。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.2 发任务方需向</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供授权书,授权人操作发任务方平台账户,发任务方应自行负责自己的用户账号和密码,不得擅自以任何形式转让或授权他人使用,如发任务方向他人提出操作指导帮助请求并把接任务方平台账户名称及密码主动透露给他人,发任务方仍须对在用户账号密码下发生的所有活动承担责任。发任务方有权根据需要更改密码,且</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >建议发任务方定期更改。因发任务方过错而导致的任何损失由发任务方自行承担,该过错包括但不限于:不按照交易提示操作,未及时进行交易操作,遗忘或泄漏密码,因密码保存不善被他人破解等。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.3发任务方有义务确保在“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台上发布的项目信息真实、准确无误导性,确保其发布的项目及委托</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供的服务内容不得违反国家法律、法规、行政规章的规定、不得侵犯他人知识产权或其他合法权益的信息、不得违背社会公共利益或公共道德、不得违反</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台的相关规定。如有违反导致任何法律后果的发生,发任务方将以自己的名义独立承担法律责任,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >平台不承担任何由此引发的法律责任。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.4</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >发任务方在</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台网上交易过程中如与接任务方因交易产生纠纷,可以请求“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台沟通协调。发任务方、接任务方如发现其他用户有违法或违反本协议的行为,可以向“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台举报。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.5</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >发任务方承诺并保证其在</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台上发布的项目需求及任务信息真实、准确无误导性,接任务方承诺提供资料之真实性、合法性、准确性和完整性,不存在任何虚假、误导、违法情形,不会侵犯任何第三方的合法权益。发任务方应当保证本合作资金来源的稳定性及合法性,若因资金自身存在的问题并由此带来的一切后果及法律责任由接任务方自行承担。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.6</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >如果发任务方发布的项目或委托</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供的服务内容需要获得国家有关部门的认可、批准或相关合法资格的,接任务方承诺其具有运营本项目所需的全部合法且适格的资格与资质,并将相应资格资质证明的复印件,作为合同附件。否则,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有权拒绝提供相关服务并根据具体情况决定是否解除本协议。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.7</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >发任务方对发布的项目信息、审核标准等内容及形式自行审核,本协议另有约定除外。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有权检查发任务方发布项目及要求</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供的服务内容,对违反法律法规、侵害他人合法权益或对他人合法权益产生威胁的项目或服务内容,或发任务方、接任务方利用</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供的服务从事违反国家法律法规及有关部门监管规定活动的,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有权采取包括但不限于以下措施中的一项或多项:有权删除或临时中止发任务方发布项目,并有权发任务方提供合理说明;拒绝提供发任务方委托的服务内容;立即删除并对发任务方进行封号处理;有权立即解除本协议并要求发任务方赔偿</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >由此遭受的全部损失,对于发任务方已经支付的平台服务费,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >不予退还。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.8</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >若本项目需要实物产品及物料,发任务方负责提供并发送至</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >指定地点,运费以及物流风险均由发任务方承担;若发任务方需要</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >协助提供及快递,应提供样品并另行支付相关费用。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.9</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >除</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台规则另有规定外,发任务方应自行承担因发布项目活动或委托</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供服务内容所涉及交易产生的相关费用,并依法纳税,包括但不限于任务项目服务费、手续费、平台管理费、增值税,因向发任务方支付费用产生的税费等相关费用和税金。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.10发任务方公司或关联公司法定代表人、股东、董事、监事等其他从所属公司取得收入的人员、雇员等其他与公司或关联公司具有劳动/劳务合同关系、或其他类似的劳动人事法律关系并从与其有前述关系的公司取得工资薪金所得的人员,严禁使用本协议项下</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >提供的相关服务,包括抢活、接任务和结算等,否则一经发现</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有权解除合同,因以上行为产生的所有责任由发任务方承担。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5.11 发任务方提交的项目成果除受发任务方审核外,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >也有权抽查,对不合法合规、侵害他人合法权益或对他人合法权益产生威胁的、或虚假的项目成果,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有权予以立即删除不予支付任何承包款并对接任务方、发任务方进行封号处理,并有权立即解除本协议。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第六条</font> </span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span></b><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >平台权利与义务</font></span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >6.1 </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >仅为发任务方提供一个开放式信息发布平台,为项目的发布与解决提供配套的管理工具及服务,发任务方由此获得线上资源便于发任务方提供相关服务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >负责</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >运营、维护,确保平台上发任务方项目发布、项目成果审核、费用支付等操作流程的正常运行。 </font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >6.2</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有权对发任务方的发布的项目或委托服务内容进行审查,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有权要求发任务方按照</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >的要求进行核查,发任务方应当配合并按照</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >的要求予以改正;</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >的上述审核行为并不意味着</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >对发任务方的经营资质、任务、交易或发任务方自行上传在</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >的其他信息的真实性、准确性、合法性、有效性承担任何明示或暗示的保证或担保等责任,也不意味着</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >和</font>/或“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台成为发任务方与接任务方之间的参与方,因发任务方的行为导致的任何投诉、纠纷、争议、赔偿等发任务方应以自己的名义独立沟通与解决,并承担全部相应责任,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >可给予发任务方提供必要配合,但</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >不承担由此产生的任何法律责任。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >6.3发任务方与</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >之间,均不因本协议的存在而成立劳动关系、劳务关系、雇佣关系、代理关系等非平台服务合同关系,发任务方将发布的项目转包给</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >承接项目订单后可以另行与接任务方签署项目转包协议,双方确定</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >无须为发任务方和</font>/或接任务团队各成员交纳社会保险及意外伤害等商业保险,但各方另有书面约定除外。同时,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >强烈建议发任务方为自己及接任务方团队各成员购买商业保险。接任务方和</font>/或接任务团队成员在执行任务期间受到或对任何第三方造成人身、财产伤害,发任务方应自行承担后果,不得要求</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >承担侵权等赔偿责任。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >6.4发任务方基于“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台发生的任何商业行为所引起的一切法律纠纷由发任务方自行承担,与</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >无关。但</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >会积极配合发任务方处理相关事宜以促进各项事宜的解决。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >6.5 因</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >或发任务方的相关系统升级、调试等原因,需要按计划暂停服务时,不应视为</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >违约,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有义务尽可能减少对发任务方的影响,并提前通知发任务方。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >6.6 </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >因以下情况没有正确执行发任务方委托事项的,不应视为</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >违约,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >不承担任何责任:</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >(</font>1)接收到的发任务方委托事项有关信息不明确、不完整或无法辨认;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >(</font>2)发任务方的预存款的余额、或可用资金额度不足;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >(</font>3)发任务方未按照</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >或</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >的有关平台规则、流程规范等要求操作与执行;</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >(</font>4)不可抗力或其他不可归因于</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >平台的情形,包括但不限于网络故障、通讯故障、停电、黑客或病毒侵袭等;</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >(</font>5)有关部门或国家机关依法命令</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >停止提供服务或停止为发任务方服务。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第七条</font> 计费标准及结算方式</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >7.1</span><span class="16" style="mso-spacerun:'yes';font-family:微软雅黑;color:rgb(51,51,51);
- font-size:10.0000pt;" > </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >接任务方在线上提交全部项目成果时次日起发任务方即可按规定进行审核,每单任务交易完成后</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台根据项目交易情况将相应金额的承包款报酬从</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >发任务方账户划至</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >接任务方账户,完成支付;如接任务方加入团队,则由接任务方所属团队向接任务方进行内部收益分配;</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >7.2 各方根据本协议开展的服务,以及接任务方在“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台与发任务方之间开展的业务合作,均以人民币(RMB/¥)作为法定结算货币,另有约定除外。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:12.0000pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第八条</font> 所有权、知识产权、使用权 </span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >8.1 “</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台所使用的任何相关软件、程序、内容,包括但不限于作品、图片、图像、视频、档案、资料、网站构架、网站版面的安排、网页设计、经由“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台或广告商向用户呈现的广告或资讯,均由</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >或其它权利人依法享有相应的知识产权,包括但不限于著作权、商标权、专利权或其它专属权利等,受到相关法律的保护。未经</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >或权利人明示书面授权,接任务方、接任务方雇员及代理人保证不修改、出租、出借、出售、散布</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台及“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台所使用的上述任何资料和资源,或根据上述资料和资源制作成任何种类产品。与“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台相关的且由此业务产生的商业秘密信息、客户资料、渠道资源、技术资料和技术诀窍等所有权均归</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >所有。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >8.2 对于</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >向发任务方、接任务方提供的</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台服务,除各方另有约定外,并不表示发任务方、接任务方已经从</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >平台获得向第三人转让或许可第三人使用该平台的权利。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >8.3</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >在本合作协议项下的任何权利不因其发生收购、兼并、重组而发生变化;如</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >被收购、被兼并、被重组,则</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >在本合作协议项下的权利随之转移至收购、兼并或重组之单位。</font> </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >8.4 服务软件形式</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >若</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台依托“软件”向发任务方、接任务方提供平台服务,接任务方还应遵守以下约定:</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >8.4.1“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台可能为不同的终端设备开发不同的软件版本,发任务方、接任务方应当根据实际需要选择下载合适的版本进行安装。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >8.4.2如果发任务方从未经合法授权的第三方获取本软件或与本软件名称相同的安装程序,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >平台将无法保证该软件能否正常使用,由此给发任务方及接任务方造成的任何损失不予负责。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >8.4.3为了增进平台用户体验、完善服务内容,“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台将不时提供软件更新服务(该更新可能会采取软件替换、修改、功能强化、版本升级等形式)。为不断优化用户体验,保证服务的安全性与功能的一致性,“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台有权对软件进行更新或对软件的部分功能效果进行改变或限制。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >8.4.4软件新版本发布后,旧版软件可能无法使用。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >不保证旧版软件继续可用及相应的客户服务,请发任务方及接任务方随时核对并下载最新版本。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >8.4.5除非法律允许或“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台书面许可,发任务方不得从事下列行为:</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >1) 删除软件及其副本上关于著作权的信息;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >2) 对软件进行反向工程、反向汇编、反向编译或者以其他方式尝试发现软件的源代码;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >3) 对“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台或其关联公司拥有知识产权的内容进行使用、出租、出借、复制、修改、链接、转载、汇编、发表、出版、建立镜像站点等侵犯知识产权及相关专属权利的行为;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >4) 对软件或者软件运行过程中释放到任何终端内存中的数据、软件运行过程中客户端与服务器端的交互数据,以及软件运行所必需的系统数据,进行复制、修改、增加、删除、挂接运行或创作任何衍生作品,形式包括但不限于使用插件、外挂或非经合法授权的第三方工具/服务接入软件和相关系统;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >5) 修改或伪造软件运行中的指令、数据,增加、删减、变动软件的功能或运行效果,或者将用于上述用途的软件、方法进行运营或向公众传播,无论上述行为是否为商业目的;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >6) 通过非“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台开发、授权的第三方软件、插件、外挂、系统,使用“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台服务,或制作、发布、传播非“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台开发、授权的第三方软件、插件、外挂、系统;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;margin-left:32.2500pt;
- line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >7) 其他未经“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台明示授权和/或许可的行为。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >8.5.6发任务方如因违反本协议第八条而对</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >构成违约或侵权,发任务方应向</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >支付一定金额的损害赔偿金。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第九条</font> 保密条款</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >9.1各方对于本协议的签订、内容及在履行本协议期间所获知的另一方的商业秘密负有保密义务。非经对方书面同意,任何一方不得向第三方(关联公司除外)泄露、给予或转让该等保密信息。(根据法律、法规、证券交易所规则向政府、证券交易所或其他监管机构提供、双方的法律、会计、商业及其他顾问、雇员除外)。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >9.2 在本协议终止之后,各方在本条款项下的义务并不随之终止,各方仍需遵守本协议之保密条款,履行其所承诺的保密义务,直到其他方同意其解除此项义务,或事实上不会因违反本协议的保密条款而给其他方造成任何形式的损害时为止。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >9.3 任何一方均应告知并督促其因履行本协议之目的而必须获知本协议内容及因合作而获知对方商业秘密的雇员、代理人、顾问等遵守保密条款,并对其雇员、代理人、顾问等的行为承担责任。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第十条</font> 不可抗力 </span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >10.1 因不可抗力或者其他意外事件,使得本协议的履行不可能、不必要或者无意义的,各方均不承担责任。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >10.2 对于因不可抗力或</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >不能控制的原因造成的网络服务中断或其它缺陷,</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏酒业</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >平台不承担任何责任,但将尽力减少因此而给发任务方、接任务方造成的损失和影响。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >10.3 任何一方因不可抗力事件不能履行本协议的,应当在事件发生后7日内书面通知对方,以减轻可能给对方造成的损失,并应当在通知发出后7日内提供相关的证明。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >10.4 如果不可抗力持续15日以上,任何一方均有权终止本协议。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第十一条</font>  违约责任</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p align=justify style="margin-top:0.0000pt;margin-bottom:10.0000pt;text-align:justify;
- text-justify:inter-ideograph;line-height:15.0000pt;background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >11.1 任何一方违反本协议约定的,应承担相应的违约责任,并赔偿对方因此受到的直接损失。守约方有权单方提前终止本协议。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >11.2 本协议有效期内,因国家相关主管部门颁布、变更的法令、政策(包括但不限于监管机构向</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >出具的,要求停止或整改本协议约定的业务的书面通知等,下同)导致</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >不能提供约定服务的,不视为</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >违约,双方应根据相关的法令、政策变更本协议内容。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >11.3 如一方违反本协议约定的禁止性规定(禁止性规定,是指协议条款中含有“不得”、“不能”等表述的内容,不可抗力条款中的表述除外),守约方有权单方提前终止协议。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >11.4 发任务方、接任务方不论采取何种方式非法获取“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台系统数据、利用“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台谋取不正当利益或从事非法活动的,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有权追究违约责任。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >11.5 </span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >有权对发任务方、接任务方是否涉嫌违反本协议之约定做出认定,并根据认定结果中止、终止向接任务方提供服务或采取其他限制措施。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >11.5.1对于发任务方通过“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台提交的涉嫌违法或涉嫌侵犯他人合法权利或违反本协议的项目成果,</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >可不经通知发任务方即予以退回等;对于发任务方审核不合格的项目成果,接任务方无权向发任务方和</font>/或</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >主张支付承包款报酬。</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >11.5.2发任务方、接任务方违反本协议约定对任意第三方造成损害的,发任务方、接任务方均应当以自己的名义独立承担所有的法律责任,并应确保</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >、</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台、发任务方免于因此产生损失或增加费用。如发任务方、接任务方该等行为使</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >、</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台、发任务方遭受任何损失,或受到任何第三方的索赔,或受到任何行政管理部门的处罚,发任务方、接任务方应当赔偿以上主体因此遭受的全部损失(即直接损失及签订本协议时所能预见到的损失)和/或发生的费用,包括合理的律师费用、调查取证费用等。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第十二条</font> 本协议的签订、变更、补充或解除</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >12.1 本协议由本协议正文条款、附件与“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台规则等公示的各项通知、操作指引等规范性文件组成,相关名词可互相引用参照,如有不同理解,以本协议条款为准。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >12.2 本协议有效期为12个月。本协议有效期届满时如各方无异议,则本协议期满后自动顺延,每次顺延期限为12个月,顺延次数不限;本协议期满后,如发任务方发布信息继续存在或接任务方在“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台接任务方账户中继续领取任务的,视为发任务方同意续约。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >12.3 任何一方拒绝履行本协议项下义务,或在违反本协议约定且在能够纠正的情况下,未能于3个工作日内履行义务或纠正违约行为,则守约方可要求违约方继续履行本协议或立即予以补救;违约方在上述限定时间内仍拒绝履行或未采取有效补救措施的,守约方有权解除本协议,且本协议的解除不影响守约方要求违约方承担违约责任。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第十三条</font> 适用法律和争议解决</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >13.1 本协议订立、履行、解释及争议解决均在“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台规则基础上理解,并适用中华人民共和国(不包括香港、澳门、台湾地区)法律。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >13.2 双方约定,如果就本协议发生争议,双方一致同意交由杭州市仲裁委员会依其仲裁规则进行仲裁,且该仲裁裁决具有终局性。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >第十四条</font> 其他</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >14.1 本协议正本一式两份,各方各执一份,均具有同等法律效力。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >14.2 本协议自下列两种情形之任意一种最先发生之日起生效:</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >各方均签署本协议时,或</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >发任务方在</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台完成发任务方用户注册时;</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >或接任务方在</font>“</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >中宏</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >商城</font></span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-size:10.0000pt;mso-font-kerning:0.0000pt;" >”平台完成接任务用户注册时。</span><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=p style="margin-top:0.0000pt;margin-bottom:7.5000pt;line-height:15.0000pt;
- background:rgb(255,255,255);" ><b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(51,51,51);font-weight:bold;font-size:10.0000pt;
- mso-font-kerning:0.0000pt;" ><font face="微软雅黑" >签署声明:各方充分知悉且已理解本协议全部内容,各方均保证下列之签名者和</font>/或网络流程操作者已获有效授权并足以代表各方订立本协议。</span></b><span style="mso-spacerun:'yes';font-family:微软雅黑;mso-bidi-font-family:宋体;
- color:rgb(0,0,0);font-size:13.5000pt;mso-font-kerning:0.0000pt;" ><o:p></o:p></span></p><p class=MsoNormal ><span style="mso-spacerun:'yes';font-family:Calibri;mso-fareast-font-family:宋体;
- mso-bidi-font-family:'Times New Roman';font-size:10.5000pt;mso-font-kerning:1.0000pt;" ><o:p> </o:p></span></p></div><!--EndFragment--></body></html>
|