styles.css 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1931px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u42 {
  16. position:absolute;
  17. left:0px;
  18. top:0px;
  19. width:0px;
  20. height:0px;
  21. }
  22. #u43_div {
  23. position:absolute;
  24. left:0px;
  25. top:0px;
  26. width:320px;
  27. height:657px;
  28. background:inherit;
  29. background-color:rgba(242, 242, 242, 1);
  30. box-sizing:border-box;
  31. border-width:1px;
  32. border-style:solid;
  33. border-color:rgba(0, 0, 0, 1);
  34. border-radius:0px;
  35. -moz-box-shadow:none;
  36. -webkit-box-shadow:none;
  37. box-shadow:none;
  38. font-family:'PingFangSC-Regular', 'PingFang SC';
  39. font-weight:400;
  40. font-style:normal;
  41. font-size:12px;
  42. color:#000000;
  43. }
  44. #u43 {
  45. position:absolute;
  46. left:510px;
  47. top:195px;
  48. width:320px;
  49. height:657px;
  50. font-family:'PingFangSC-Regular', 'PingFang SC';
  51. font-weight:400;
  52. font-style:normal;
  53. font-size:12px;
  54. color:#000000;
  55. }
  56. #u44 {
  57. position:absolute;
  58. left:2px;
  59. top:320px;
  60. width:316px;
  61. word-wrap:break-word;
  62. }
  63. #u45 {
  64. position:absolute;
  65. left:0px;
  66. top:0px;
  67. width:0px;
  68. height:0px;
  69. }
  70. #u46_div {
  71. position:absolute;
  72. left:0px;
  73. top:0px;
  74. width:318px;
  75. height:17px;
  76. background:inherit;
  77. background-color:rgba(255, 255, 255, 1);
  78. border:none;
  79. border-radius:0px;
  80. -moz-box-shadow:none;
  81. -webkit-box-shadow:none;
  82. box-shadow:none;
  83. }
  84. #u46 {
  85. position:absolute;
  86. left:511px;
  87. top:196px;
  88. width:318px;
  89. height:17px;
  90. }
  91. #u47 {
  92. position:absolute;
  93. left:2px;
  94. top:0px;
  95. width:314px;
  96. visibility:hidden;
  97. word-wrap:break-word;
  98. }
  99. #u48_img {
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:318px;
  104. height:17px;
  105. }
  106. #u48 {
  107. position:absolute;
  108. left:511px;
  109. top:196px;
  110. width:318px;
  111. height:17px;
  112. }
  113. #u49 {
  114. position:absolute;
  115. left:2px;
  116. top:0px;
  117. width:314px;
  118. visibility:hidden;
  119. word-wrap:break-word;
  120. }
  121. #u50 {
  122. position:absolute;
  123. left:0px;
  124. top:0px;
  125. width:0px;
  126. height:0px;
  127. }
  128. #u51_div {
  129. position:absolute;
  130. left:0px;
  131. top:0px;
  132. width:318px;
  133. height:40px;
  134. background:inherit;
  135. background-color:rgba(255, 255, 255, 1);
  136. box-sizing:border-box;
  137. border-width:1px;
  138. border-style:solid;
  139. border-color:rgba(228, 228, 228, 1);
  140. border-left:0px;
  141. border-top:0px;
  142. border-right:0px;
  143. border-radius:0px;
  144. border-top-left-radius:0px;
  145. border-top-right-radius:0px;
  146. border-bottom-right-radius:0px;
  147. border-bottom-left-radius:0px;
  148. -moz-box-shadow:none;
  149. -webkit-box-shadow:none;
  150. box-shadow:none;
  151. font-family:'PingFangSC-Regular', 'PingFang SC';
  152. font-weight:400;
  153. font-style:normal;
  154. font-size:14px;
  155. text-align:left;
  156. }
  157. #u51 {
  158. position:absolute;
  159. left:511px;
  160. top:213px;
  161. width:318px;
  162. height:40px;
  163. font-family:'PingFangSC-Regular', 'PingFang SC';
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:14px;
  167. text-align:left;
  168. }
  169. #u52 {
  170. position:absolute;
  171. left:0px;
  172. top:10px;
  173. width:318px;
  174. word-wrap:break-word;
  175. }
  176. #u53_img {
  177. position:absolute;
  178. left:0px;
  179. top:0px;
  180. width:10px;
  181. height:16px;
  182. }
  183. #u53 {
  184. position:absolute;
  185. left:521px;
  186. top:225px;
  187. width:10px;
  188. height:16px;
  189. }
  190. #u54 {
  191. position:absolute;
  192. left:2px;
  193. top:0px;
  194. width:6px;
  195. visibility:hidden;
  196. word-wrap:break-word;
  197. }
  198. #u55 {
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:0px;
  203. height:0px;
  204. }
  205. #u56_div {
  206. position:absolute;
  207. left:0px;
  208. top:0px;
  209. width:50px;
  210. height:26px;
  211. background:inherit;
  212. background-color:rgba(255, 255, 255, 1);
  213. box-sizing:border-box;
  214. border-width:1px;
  215. border-style:solid;
  216. border-color:rgba(204, 204, 204, 1);
  217. border-radius:15px;
  218. -moz-box-shadow:none;
  219. -webkit-box-shadow:none;
  220. box-shadow:none;
  221. }
  222. #u56 {
  223. position:absolute;
  224. left:769px;
  225. top:220px;
  226. width:50px;
  227. height:26px;
  228. }
  229. #u57 {
  230. position:absolute;
  231. left:2px;
  232. top:5px;
  233. width:46px;
  234. visibility:hidden;
  235. word-wrap:break-word;
  236. }
  237. #u58 {
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:0px;
  242. height:0px;
  243. }
  244. #u59_img {
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:3px;
  249. height:3px;
  250. }
  251. #u59 {
  252. position:absolute;
  253. left:776px;
  254. top:232px;
  255. width:3px;
  256. height:3px;
  257. -webkit-transform:rotate(45deg);
  258. -moz-transform:rotate(45deg);
  259. -ms-transform:rotate(45deg);
  260. transform:rotate(45deg);
  261. font-family:'MicrosoftYaHei', '微软雅黑';
  262. font-weight:400;
  263. font-style:normal;
  264. font-size:18px;
  265. }
  266. #u60 {
  267. position:absolute;
  268. left:0px;
  269. top:-6px;
  270. width:3px;
  271. visibility:hidden;
  272. word-wrap:break-word;
  273. }
  274. #u61_img {
  275. position:absolute;
  276. left:0px;
  277. top:0px;
  278. width:5px;
  279. height:5px;
  280. }
  281. #u61 {
  282. position:absolute;
  283. left:780px;
  284. top:231px;
  285. width:5px;
  286. height:5px;
  287. -webkit-transform:rotate(45deg);
  288. -moz-transform:rotate(45deg);
  289. -ms-transform:rotate(45deg);
  290. transform:rotate(45deg);
  291. font-family:'MicrosoftYaHei', '微软雅黑';
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:18px;
  295. }
  296. #u62 {
  297. position:absolute;
  298. left:0px;
  299. top:-6px;
  300. width:5px;
  301. visibility:hidden;
  302. word-wrap:break-word;
  303. }
  304. #u63_img {
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:3px;
  309. height:3px;
  310. }
  311. #u63 {
  312. position:absolute;
  313. left:786px;
  314. top:232px;
  315. width:3px;
  316. height:3px;
  317. -webkit-transform:rotate(45deg);
  318. -moz-transform:rotate(45deg);
  319. -ms-transform:rotate(45deg);
  320. transform:rotate(45deg);
  321. font-family:'MicrosoftYaHei', '微软雅黑';
  322. font-weight:400;
  323. font-style:normal;
  324. font-size:18px;
  325. }
  326. #u64 {
  327. position:absolute;
  328. left:0px;
  329. top:-6px;
  330. width:3px;
  331. visibility:hidden;
  332. word-wrap:break-word;
  333. }
  334. #u65_img {
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:2px;
  339. height:19px;
  340. }
  341. #u65 {
  342. position:absolute;
  343. left:793px;
  344. top:224px;
  345. width:1px;
  346. height:18px;
  347. }
  348. #u66 {
  349. position:absolute;
  350. left:2px;
  351. top:1px;
  352. width:1px;
  353. visibility:hidden;
  354. word-wrap:break-word;
  355. }
  356. #u67_img {
  357. position:absolute;
  358. left:0px;
  359. top:0px;
  360. width:14px;
  361. height:14px;
  362. }
  363. #u67 {
  364. position:absolute;
  365. left:799px;
  366. top:226px;
  367. width:14px;
  368. height:14px;
  369. }
  370. #u68 {
  371. position:absolute;
  372. left:2px;
  373. top:-1px;
  374. width:10px;
  375. visibility:hidden;
  376. word-wrap:break-word;
  377. }
  378. #u69_img {
  379. position:absolute;
  380. left:0px;
  381. top:0px;
  382. width:6px;
  383. height:6px;
  384. }
  385. #u69 {
  386. position:absolute;
  387. left:803px;
  388. top:230px;
  389. width:6px;
  390. height:6px;
  391. }
  392. #u70 {
  393. position:absolute;
  394. left:2px;
  395. top:-5px;
  396. width:2px;
  397. visibility:hidden;
  398. word-wrap:break-word;
  399. }
  400. #u71 {
  401. position:absolute;
  402. left:0px;
  403. top:0px;
  404. width:0px;
  405. height:0px;
  406. }
  407. #u72_img {
  408. position:absolute;
  409. left:0px;
  410. top:0px;
  411. width:7px;
  412. height:7px;
  413. }
  414. #u72 {
  415. position:absolute;
  416. left:652px;
  417. top:716px;
  418. width:7px;
  419. height:7px;
  420. color:#FFFFFF;
  421. }
  422. #u73 {
  423. position:absolute;
  424. left:0px;
  425. top:-4px;
  426. width:7px;
  427. visibility:hidden;
  428. word-wrap:break-word;
  429. }
  430. #u74_img {
  431. position:absolute;
  432. left:0px;
  433. top:0px;
  434. width:7px;
  435. height:7px;
  436. }
  437. #u74 {
  438. position:absolute;
  439. left:662px;
  440. top:716px;
  441. width:7px;
  442. height:7px;
  443. color:#FFFFFF;
  444. }
  445. #u75 {
  446. position:absolute;
  447. left:0px;
  448. top:-4px;
  449. width:7px;
  450. visibility:hidden;
  451. word-wrap:break-word;
  452. }
  453. #u76_img {
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:7px;
  458. height:7px;
  459. }
  460. #u76 {
  461. position:absolute;
  462. left:672px;
  463. top:716px;
  464. width:7px;
  465. height:7px;
  466. color:#FFFFFF;
  467. }
  468. #u77 {
  469. position:absolute;
  470. left:0px;
  471. top:-4px;
  472. width:7px;
  473. visibility:hidden;
  474. word-wrap:break-word;
  475. }
  476. #u78_img {
  477. position:absolute;
  478. left:0px;
  479. top:0px;
  480. width:7px;
  481. height:7px;
  482. }
  483. #u78 {
  484. position:absolute;
  485. left:682px;
  486. top:716px;
  487. width:7px;
  488. height:7px;
  489. color:#FFFFFF;
  490. }
  491. #u79 {
  492. position:absolute;
  493. left:0px;
  494. top:-4px;
  495. width:7px;
  496. visibility:hidden;
  497. word-wrap:break-word;
  498. }
  499. #u80 {
  500. position:absolute;
  501. left:0px;
  502. top:0px;
  503. width:0px;
  504. height:0px;
  505. }
  506. #u81_div {
  507. position:absolute;
  508. left:0px;
  509. top:0px;
  510. width:320px;
  511. height:657px;
  512. background:inherit;
  513. background-color:rgba(242, 242, 242, 1);
  514. box-sizing:border-box;
  515. border-width:1px;
  516. border-style:solid;
  517. border-color:rgba(0, 0, 0, 1);
  518. border-radius:0px;
  519. -moz-box-shadow:none;
  520. -webkit-box-shadow:none;
  521. box-shadow:none;
  522. font-family:'PingFangSC-Regular', 'PingFang SC';
  523. font-weight:400;
  524. font-style:normal;
  525. font-size:12px;
  526. color:#000000;
  527. }
  528. #u81 {
  529. position:absolute;
  530. left:853px;
  531. top:196px;
  532. width:320px;
  533. height:657px;
  534. font-family:'PingFangSC-Regular', 'PingFang SC';
  535. font-weight:400;
  536. font-style:normal;
  537. font-size:12px;
  538. color:#000000;
  539. }
  540. #u82 {
  541. position:absolute;
  542. left:2px;
  543. top:320px;
  544. width:316px;
  545. word-wrap:break-word;
  546. }
  547. #u83 {
  548. position:absolute;
  549. left:0px;
  550. top:0px;
  551. width:0px;
  552. height:0px;
  553. }
  554. #u84_div {
  555. position:absolute;
  556. left:0px;
  557. top:0px;
  558. width:318px;
  559. height:17px;
  560. background:inherit;
  561. background-color:rgba(255, 255, 255, 1);
  562. border:none;
  563. border-radius:0px;
  564. -moz-box-shadow:none;
  565. -webkit-box-shadow:none;
  566. box-shadow:none;
  567. }
  568. #u84 {
  569. position:absolute;
  570. left:854px;
  571. top:197px;
  572. width:318px;
  573. height:17px;
  574. }
  575. #u85 {
  576. position:absolute;
  577. left:2px;
  578. top:0px;
  579. width:314px;
  580. visibility:hidden;
  581. word-wrap:break-word;
  582. }
  583. #u86_img {
  584. position:absolute;
  585. left:0px;
  586. top:0px;
  587. width:318px;
  588. height:17px;
  589. }
  590. #u86 {
  591. position:absolute;
  592. left:854px;
  593. top:197px;
  594. width:318px;
  595. height:17px;
  596. }
  597. #u87 {
  598. position:absolute;
  599. left:2px;
  600. top:0px;
  601. width:314px;
  602. visibility:hidden;
  603. word-wrap:break-word;
  604. }
  605. #u88 {
  606. position:absolute;
  607. left:0px;
  608. top:0px;
  609. width:0px;
  610. height:0px;
  611. }
  612. #u89_div {
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:318px;
  617. height:40px;
  618. background:inherit;
  619. background-color:rgba(255, 255, 255, 1);
  620. box-sizing:border-box;
  621. border-width:1px;
  622. border-style:solid;
  623. border-color:rgba(228, 228, 228, 1);
  624. border-left:0px;
  625. border-top:0px;
  626. border-right:0px;
  627. border-radius:0px;
  628. border-top-left-radius:0px;
  629. border-top-right-radius:0px;
  630. border-bottom-right-radius:0px;
  631. border-bottom-left-radius:0px;
  632. -moz-box-shadow:none;
  633. -webkit-box-shadow:none;
  634. box-shadow:none;
  635. font-family:'PingFangSC-Regular', 'PingFang SC';
  636. font-weight:400;
  637. font-style:normal;
  638. font-size:14px;
  639. text-align:left;
  640. }
  641. #u89 {
  642. position:absolute;
  643. left:854px;
  644. top:214px;
  645. width:318px;
  646. height:40px;
  647. font-family:'PingFangSC-Regular', 'PingFang SC';
  648. font-weight:400;
  649. font-style:normal;
  650. font-size:14px;
  651. text-align:left;
  652. }
  653. #u90 {
  654. position:absolute;
  655. left:0px;
  656. top:10px;
  657. width:318px;
  658. word-wrap:break-word;
  659. }
  660. #u91_img {
  661. position:absolute;
  662. left:0px;
  663. top:0px;
  664. width:10px;
  665. height:16px;
  666. }
  667. #u91 {
  668. position:absolute;
  669. left:864px;
  670. top:226px;
  671. width:10px;
  672. height:16px;
  673. }
  674. #u92 {
  675. position:absolute;
  676. left:2px;
  677. top:0px;
  678. width:6px;
  679. visibility:hidden;
  680. word-wrap:break-word;
  681. }
  682. #u93 {
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:0px;
  687. height:0px;
  688. }
  689. #u94_div {
  690. position:absolute;
  691. left:0px;
  692. top:0px;
  693. width:50px;
  694. height:26px;
  695. background:inherit;
  696. background-color:rgba(255, 255, 255, 1);
  697. box-sizing:border-box;
  698. border-width:1px;
  699. border-style:solid;
  700. border-color:rgba(204, 204, 204, 1);
  701. border-radius:15px;
  702. -moz-box-shadow:none;
  703. -webkit-box-shadow:none;
  704. box-shadow:none;
  705. }
  706. #u94 {
  707. position:absolute;
  708. left:1112px;
  709. top:221px;
  710. width:50px;
  711. height:26px;
  712. }
  713. #u95 {
  714. position:absolute;
  715. left:2px;
  716. top:5px;
  717. width:46px;
  718. visibility:hidden;
  719. word-wrap:break-word;
  720. }
  721. #u96 {
  722. position:absolute;
  723. left:0px;
  724. top:0px;
  725. width:0px;
  726. height:0px;
  727. }
  728. #u97_img {
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:3px;
  733. height:3px;
  734. }
  735. #u97 {
  736. position:absolute;
  737. left:1119px;
  738. top:233px;
  739. width:3px;
  740. height:3px;
  741. -webkit-transform:rotate(45deg);
  742. -moz-transform:rotate(45deg);
  743. -ms-transform:rotate(45deg);
  744. transform:rotate(45deg);
  745. font-family:'MicrosoftYaHei', '微软雅黑';
  746. font-weight:400;
  747. font-style:normal;
  748. font-size:18px;
  749. }
  750. #u98 {
  751. position:absolute;
  752. left:0px;
  753. top:-6px;
  754. width:3px;
  755. visibility:hidden;
  756. word-wrap:break-word;
  757. }
  758. #u99_img {
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:5px;
  763. height:5px;
  764. }
  765. #u99 {
  766. position:absolute;
  767. left:1123px;
  768. top:232px;
  769. width:5px;
  770. height:5px;
  771. -webkit-transform:rotate(45deg);
  772. -moz-transform:rotate(45deg);
  773. -ms-transform:rotate(45deg);
  774. transform:rotate(45deg);
  775. font-family:'MicrosoftYaHei', '微软雅黑';
  776. font-weight:400;
  777. font-style:normal;
  778. font-size:18px;
  779. }
  780. #u100 {
  781. position:absolute;
  782. left:0px;
  783. top:-6px;
  784. width:5px;
  785. visibility:hidden;
  786. word-wrap:break-word;
  787. }
  788. #u101_img {
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:3px;
  793. height:3px;
  794. }
  795. #u101 {
  796. position:absolute;
  797. left:1129px;
  798. top:233px;
  799. width:3px;
  800. height:3px;
  801. -webkit-transform:rotate(45deg);
  802. -moz-transform:rotate(45deg);
  803. -ms-transform:rotate(45deg);
  804. transform:rotate(45deg);
  805. font-family:'MicrosoftYaHei', '微软雅黑';
  806. font-weight:400;
  807. font-style:normal;
  808. font-size:18px;
  809. }
  810. #u102 {
  811. position:absolute;
  812. left:0px;
  813. top:-6px;
  814. width:3px;
  815. visibility:hidden;
  816. word-wrap:break-word;
  817. }
  818. #u103_img {
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:2px;
  823. height:19px;
  824. }
  825. #u103 {
  826. position:absolute;
  827. left:1136px;
  828. top:225px;
  829. width:1px;
  830. height:18px;
  831. }
  832. #u104 {
  833. position:absolute;
  834. left:2px;
  835. top:1px;
  836. width:1px;
  837. visibility:hidden;
  838. word-wrap:break-word;
  839. }
  840. #u105_img {
  841. position:absolute;
  842. left:0px;
  843. top:0px;
  844. width:14px;
  845. height:14px;
  846. }
  847. #u105 {
  848. position:absolute;
  849. left:1142px;
  850. top:227px;
  851. width:14px;
  852. height:14px;
  853. }
  854. #u106 {
  855. position:absolute;
  856. left:2px;
  857. top:-1px;
  858. width:10px;
  859. visibility:hidden;
  860. word-wrap:break-word;
  861. }
  862. #u107_img {
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:6px;
  867. height:6px;
  868. }
  869. #u107 {
  870. position:absolute;
  871. left:1146px;
  872. top:231px;
  873. width:6px;
  874. height:6px;
  875. }
  876. #u108 {
  877. position:absolute;
  878. left:2px;
  879. top:-5px;
  880. width:2px;
  881. visibility:hidden;
  882. word-wrap:break-word;
  883. }
  884. #u109 {
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:0px;
  889. height:0px;
  890. }
  891. #u110_img {
  892. position:absolute;
  893. left:0px;
  894. top:0px;
  895. width:7px;
  896. height:7px;
  897. }
  898. #u110 {
  899. position:absolute;
  900. left:995px;
  901. top:717px;
  902. width:7px;
  903. height:7px;
  904. color:#FFFFFF;
  905. }
  906. #u111 {
  907. position:absolute;
  908. left:0px;
  909. top:-4px;
  910. width:7px;
  911. visibility:hidden;
  912. word-wrap:break-word;
  913. }
  914. #u112_img {
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:7px;
  919. height:7px;
  920. }
  921. #u112 {
  922. position:absolute;
  923. left:1005px;
  924. top:717px;
  925. width:7px;
  926. height:7px;
  927. color:#FFFFFF;
  928. }
  929. #u113 {
  930. position:absolute;
  931. left:0px;
  932. top:-4px;
  933. width:7px;
  934. visibility:hidden;
  935. word-wrap:break-word;
  936. }
  937. #u114_img {
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:7px;
  942. height:7px;
  943. }
  944. #u114 {
  945. position:absolute;
  946. left:1015px;
  947. top:717px;
  948. width:7px;
  949. height:7px;
  950. color:#FFFFFF;
  951. }
  952. #u115 {
  953. position:absolute;
  954. left:0px;
  955. top:-4px;
  956. width:7px;
  957. visibility:hidden;
  958. word-wrap:break-word;
  959. }
  960. #u116_img {
  961. position:absolute;
  962. left:0px;
  963. top:0px;
  964. width:7px;
  965. height:7px;
  966. }
  967. #u116 {
  968. position:absolute;
  969. left:1025px;
  970. top:717px;
  971. width:7px;
  972. height:7px;
  973. color:#FFFFFF;
  974. }
  975. #u117 {
  976. position:absolute;
  977. left:0px;
  978. top:-4px;
  979. width:7px;
  980. visibility:hidden;
  981. word-wrap:break-word;
  982. }
  983. #u118 {
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:0px;
  988. height:0px;
  989. }
  990. #u119_div {
  991. position:absolute;
  992. left:0px;
  993. top:0px;
  994. width:320px;
  995. height:657px;
  996. background:inherit;
  997. background-color:rgba(242, 242, 242, 1);
  998. box-sizing:border-box;
  999. border-width:1px;
  1000. border-style:solid;
  1001. border-color:rgba(0, 0, 0, 1);
  1002. border-radius:0px;
  1003. -moz-box-shadow:none;
  1004. -webkit-box-shadow:none;
  1005. box-shadow:none;
  1006. font-family:'PingFangSC-Regular', 'PingFang SC';
  1007. font-weight:400;
  1008. font-style:normal;
  1009. font-size:12px;
  1010. color:#000000;
  1011. }
  1012. #u119 {
  1013. position:absolute;
  1014. left:166px;
  1015. top:196px;
  1016. width:320px;
  1017. height:657px;
  1018. font-family:'PingFangSC-Regular', 'PingFang SC';
  1019. font-weight:400;
  1020. font-style:normal;
  1021. font-size:12px;
  1022. color:#000000;
  1023. }
  1024. #u120 {
  1025. position:absolute;
  1026. left:2px;
  1027. top:320px;
  1028. width:316px;
  1029. word-wrap:break-word;
  1030. }
  1031. #u121 {
  1032. position:absolute;
  1033. left:0px;
  1034. top:0px;
  1035. width:0px;
  1036. height:0px;
  1037. }
  1038. #u122_div {
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:318px;
  1043. height:17px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 1);
  1046. border:none;
  1047. border-radius:0px;
  1048. -moz-box-shadow:none;
  1049. -webkit-box-shadow:none;
  1050. box-shadow:none;
  1051. }
  1052. #u122 {
  1053. position:absolute;
  1054. left:167px;
  1055. top:197px;
  1056. width:318px;
  1057. height:17px;
  1058. }
  1059. #u123 {
  1060. position:absolute;
  1061. left:2px;
  1062. top:0px;
  1063. width:314px;
  1064. visibility:hidden;
  1065. word-wrap:break-word;
  1066. }
  1067. #u124_img {
  1068. position:absolute;
  1069. left:0px;
  1070. top:0px;
  1071. width:318px;
  1072. height:17px;
  1073. }
  1074. #u124 {
  1075. position:absolute;
  1076. left:167px;
  1077. top:197px;
  1078. width:318px;
  1079. height:17px;
  1080. }
  1081. #u125 {
  1082. position:absolute;
  1083. left:2px;
  1084. top:0px;
  1085. width:314px;
  1086. visibility:hidden;
  1087. word-wrap:break-word;
  1088. }
  1089. #u126 {
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:0px;
  1094. height:0px;
  1095. }
  1096. #u127_div {
  1097. position:absolute;
  1098. left:0px;
  1099. top:0px;
  1100. width:318px;
  1101. height:40px;
  1102. background:inherit;
  1103. background-color:rgba(255, 255, 255, 1);
  1104. box-sizing:border-box;
  1105. border-width:1px;
  1106. border-style:solid;
  1107. border-color:rgba(228, 228, 228, 1);
  1108. border-left:0px;
  1109. border-top:0px;
  1110. border-right:0px;
  1111. border-radius:0px;
  1112. border-top-left-radius:0px;
  1113. border-top-right-radius:0px;
  1114. border-bottom-right-radius:0px;
  1115. border-bottom-left-radius:0px;
  1116. -moz-box-shadow:none;
  1117. -webkit-box-shadow:none;
  1118. box-shadow:none;
  1119. font-family:'PingFangSC-Regular', 'PingFang SC';
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. text-align:left;
  1124. }
  1125. #u127 {
  1126. position:absolute;
  1127. left:167px;
  1128. top:214px;
  1129. width:318px;
  1130. height:40px;
  1131. font-family:'PingFangSC-Regular', 'PingFang SC';
  1132. font-weight:400;
  1133. font-style:normal;
  1134. font-size:14px;
  1135. text-align:left;
  1136. }
  1137. #u128 {
  1138. position:absolute;
  1139. left:0px;
  1140. top:10px;
  1141. width:318px;
  1142. word-wrap:break-word;
  1143. }
  1144. #u129_img {
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:10px;
  1149. height:16px;
  1150. }
  1151. #u129 {
  1152. position:absolute;
  1153. left:177px;
  1154. top:226px;
  1155. width:10px;
  1156. height:16px;
  1157. }
  1158. #u130 {
  1159. position:absolute;
  1160. left:2px;
  1161. top:0px;
  1162. width:6px;
  1163. visibility:hidden;
  1164. word-wrap:break-word;
  1165. }
  1166. #u131 {
  1167. position:absolute;
  1168. left:0px;
  1169. top:0px;
  1170. width:0px;
  1171. height:0px;
  1172. }
  1173. #u132_div {
  1174. position:absolute;
  1175. left:0px;
  1176. top:0px;
  1177. width:50px;
  1178. height:26px;
  1179. background:inherit;
  1180. background-color:rgba(255, 255, 255, 1);
  1181. box-sizing:border-box;
  1182. border-width:1px;
  1183. border-style:solid;
  1184. border-color:rgba(204, 204, 204, 1);
  1185. border-radius:15px;
  1186. -moz-box-shadow:none;
  1187. -webkit-box-shadow:none;
  1188. box-shadow:none;
  1189. }
  1190. #u132 {
  1191. position:absolute;
  1192. left:425px;
  1193. top:221px;
  1194. width:50px;
  1195. height:26px;
  1196. }
  1197. #u133 {
  1198. position:absolute;
  1199. left:2px;
  1200. top:5px;
  1201. width:46px;
  1202. visibility:hidden;
  1203. word-wrap:break-word;
  1204. }
  1205. #u134 {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:0px;
  1210. height:0px;
  1211. }
  1212. #u135_img {
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:3px;
  1217. height:3px;
  1218. }
  1219. #u135 {
  1220. position:absolute;
  1221. left:432px;
  1222. top:233px;
  1223. width:3px;
  1224. height:3px;
  1225. -webkit-transform:rotate(45deg);
  1226. -moz-transform:rotate(45deg);
  1227. -ms-transform:rotate(45deg);
  1228. transform:rotate(45deg);
  1229. font-family:'MicrosoftYaHei', '微软雅黑';
  1230. font-weight:400;
  1231. font-style:normal;
  1232. font-size:18px;
  1233. }
  1234. #u136 {
  1235. position:absolute;
  1236. left:0px;
  1237. top:-6px;
  1238. width:3px;
  1239. visibility:hidden;
  1240. word-wrap:break-word;
  1241. }
  1242. #u137_img {
  1243. position:absolute;
  1244. left:0px;
  1245. top:0px;
  1246. width:5px;
  1247. height:5px;
  1248. }
  1249. #u137 {
  1250. position:absolute;
  1251. left:436px;
  1252. top:232px;
  1253. width:5px;
  1254. height:5px;
  1255. -webkit-transform:rotate(45deg);
  1256. -moz-transform:rotate(45deg);
  1257. -ms-transform:rotate(45deg);
  1258. transform:rotate(45deg);
  1259. font-family:'MicrosoftYaHei', '微软雅黑';
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:18px;
  1263. }
  1264. #u138 {
  1265. position:absolute;
  1266. left:0px;
  1267. top:-6px;
  1268. width:5px;
  1269. visibility:hidden;
  1270. word-wrap:break-word;
  1271. }
  1272. #u139_img {
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:3px;
  1277. height:3px;
  1278. }
  1279. #u139 {
  1280. position:absolute;
  1281. left:442px;
  1282. top:233px;
  1283. width:3px;
  1284. height:3px;
  1285. -webkit-transform:rotate(45deg);
  1286. -moz-transform:rotate(45deg);
  1287. -ms-transform:rotate(45deg);
  1288. transform:rotate(45deg);
  1289. font-family:'MicrosoftYaHei', '微软雅黑';
  1290. font-weight:400;
  1291. font-style:normal;
  1292. font-size:18px;
  1293. }
  1294. #u140 {
  1295. position:absolute;
  1296. left:0px;
  1297. top:-6px;
  1298. width:3px;
  1299. visibility:hidden;
  1300. word-wrap:break-word;
  1301. }
  1302. #u141_img {
  1303. position:absolute;
  1304. left:0px;
  1305. top:0px;
  1306. width:2px;
  1307. height:19px;
  1308. }
  1309. #u141 {
  1310. position:absolute;
  1311. left:449px;
  1312. top:225px;
  1313. width:1px;
  1314. height:18px;
  1315. }
  1316. #u142 {
  1317. position:absolute;
  1318. left:2px;
  1319. top:1px;
  1320. width:1px;
  1321. visibility:hidden;
  1322. word-wrap:break-word;
  1323. }
  1324. #u143_img {
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:14px;
  1329. height:14px;
  1330. }
  1331. #u143 {
  1332. position:absolute;
  1333. left:455px;
  1334. top:227px;
  1335. width:14px;
  1336. height:14px;
  1337. }
  1338. #u144 {
  1339. position:absolute;
  1340. left:2px;
  1341. top:-1px;
  1342. width:10px;
  1343. visibility:hidden;
  1344. word-wrap:break-word;
  1345. }
  1346. #u145_img {
  1347. position:absolute;
  1348. left:0px;
  1349. top:0px;
  1350. width:6px;
  1351. height:6px;
  1352. }
  1353. #u145 {
  1354. position:absolute;
  1355. left:459px;
  1356. top:231px;
  1357. width:6px;
  1358. height:6px;
  1359. }
  1360. #u146 {
  1361. position:absolute;
  1362. left:2px;
  1363. top:-5px;
  1364. width:2px;
  1365. visibility:hidden;
  1366. word-wrap:break-word;
  1367. }
  1368. #u147 {
  1369. position:absolute;
  1370. left:0px;
  1371. top:0px;
  1372. width:0px;
  1373. height:0px;
  1374. }
  1375. #u148_img {
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:7px;
  1380. height:7px;
  1381. }
  1382. #u148 {
  1383. position:absolute;
  1384. left:308px;
  1385. top:717px;
  1386. width:7px;
  1387. height:7px;
  1388. color:#FFFFFF;
  1389. }
  1390. #u149 {
  1391. position:absolute;
  1392. left:0px;
  1393. top:-4px;
  1394. width:7px;
  1395. visibility:hidden;
  1396. word-wrap:break-word;
  1397. }
  1398. #u150_img {
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:7px;
  1403. height:7px;
  1404. }
  1405. #u150 {
  1406. position:absolute;
  1407. left:318px;
  1408. top:717px;
  1409. width:7px;
  1410. height:7px;
  1411. color:#FFFFFF;
  1412. }
  1413. #u151 {
  1414. position:absolute;
  1415. left:0px;
  1416. top:-4px;
  1417. width:7px;
  1418. visibility:hidden;
  1419. word-wrap:break-word;
  1420. }
  1421. #u152_img {
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:7px;
  1426. height:7px;
  1427. }
  1428. #u152 {
  1429. position:absolute;
  1430. left:328px;
  1431. top:717px;
  1432. width:7px;
  1433. height:7px;
  1434. color:#FFFFFF;
  1435. }
  1436. #u153 {
  1437. position:absolute;
  1438. left:0px;
  1439. top:-4px;
  1440. width:7px;
  1441. visibility:hidden;
  1442. word-wrap:break-word;
  1443. }
  1444. #u154_img {
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:7px;
  1449. height:7px;
  1450. }
  1451. #u154 {
  1452. position:absolute;
  1453. left:338px;
  1454. top:717px;
  1455. width:7px;
  1456. height:7px;
  1457. color:#FFFFFF;
  1458. }
  1459. #u155 {
  1460. position:absolute;
  1461. left:0px;
  1462. top:-4px;
  1463. width:7px;
  1464. visibility:hidden;
  1465. word-wrap:break-word;
  1466. }
  1467. #u156_div {
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:328px;
  1472. height:25px;
  1473. background:inherit;
  1474. background-color:rgba(255, 255, 255, 0);
  1475. border:none;
  1476. border-radius:0px;
  1477. -moz-box-shadow:none;
  1478. -webkit-box-shadow:none;
  1479. box-shadow:none;
  1480. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  1481. font-weight:650;
  1482. font-style:normal;
  1483. }
  1484. #u156 {
  1485. position:absolute;
  1486. left:511px;
  1487. top:145px;
  1488. width:328px;
  1489. height:25px;
  1490. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  1491. font-weight:650;
  1492. font-style:normal;
  1493. }
  1494. #u157 {
  1495. position:absolute;
  1496. left:0px;
  1497. top:0px;
  1498. width:328px;
  1499. white-space:nowrap;
  1500. }
  1501. #u158 {
  1502. position:absolute;
  1503. left:0px;
  1504. top:0px;
  1505. width:0px;
  1506. height:0px;
  1507. }
  1508. #u159_div {
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:320px;
  1513. height:657px;
  1514. background:inherit;
  1515. background-color:rgba(242, 242, 242, 1);
  1516. box-sizing:border-box;
  1517. border-width:1px;
  1518. border-style:solid;
  1519. border-color:rgba(0, 0, 0, 1);
  1520. border-radius:0px;
  1521. -moz-box-shadow:none;
  1522. -webkit-box-shadow:none;
  1523. box-shadow:none;
  1524. font-family:'PingFangSC-Regular', 'PingFang SC';
  1525. font-weight:400;
  1526. font-style:normal;
  1527. font-size:12px;
  1528. color:#000000;
  1529. }
  1530. #u159 {
  1531. position:absolute;
  1532. left:1271px;
  1533. top:197px;
  1534. width:320px;
  1535. height:657px;
  1536. font-family:'PingFangSC-Regular', 'PingFang SC';
  1537. font-weight:400;
  1538. font-style:normal;
  1539. font-size:12px;
  1540. color:#000000;
  1541. }
  1542. #u160 {
  1543. position:absolute;
  1544. left:2px;
  1545. top:320px;
  1546. width:316px;
  1547. word-wrap:break-word;
  1548. }
  1549. #u161 {
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:0px;
  1554. height:0px;
  1555. }
  1556. #u162_div {
  1557. position:absolute;
  1558. left:0px;
  1559. top:0px;
  1560. width:318px;
  1561. height:17px;
  1562. background:inherit;
  1563. background-color:rgba(255, 255, 255, 1);
  1564. border:none;
  1565. border-radius:0px;
  1566. -moz-box-shadow:none;
  1567. -webkit-box-shadow:none;
  1568. box-shadow:none;
  1569. }
  1570. #u162 {
  1571. position:absolute;
  1572. left:1272px;
  1573. top:198px;
  1574. width:318px;
  1575. height:17px;
  1576. }
  1577. #u163 {
  1578. position:absolute;
  1579. left:2px;
  1580. top:0px;
  1581. width:314px;
  1582. visibility:hidden;
  1583. word-wrap:break-word;
  1584. }
  1585. #u164_img {
  1586. position:absolute;
  1587. left:0px;
  1588. top:0px;
  1589. width:318px;
  1590. height:17px;
  1591. }
  1592. #u164 {
  1593. position:absolute;
  1594. left:1272px;
  1595. top:198px;
  1596. width:318px;
  1597. height:17px;
  1598. }
  1599. #u165 {
  1600. position:absolute;
  1601. left:2px;
  1602. top:0px;
  1603. width:314px;
  1604. visibility:hidden;
  1605. word-wrap:break-word;
  1606. }
  1607. #u166 {
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:0px;
  1612. height:0px;
  1613. }
  1614. #u167_div {
  1615. position:absolute;
  1616. left:0px;
  1617. top:0px;
  1618. width:318px;
  1619. height:40px;
  1620. background:inherit;
  1621. background-color:rgba(255, 255, 255, 1);
  1622. box-sizing:border-box;
  1623. border-width:1px;
  1624. border-style:solid;
  1625. border-color:rgba(228, 228, 228, 1);
  1626. border-left:0px;
  1627. border-top:0px;
  1628. border-right:0px;
  1629. border-radius:0px;
  1630. border-top-left-radius:0px;
  1631. border-top-right-radius:0px;
  1632. border-bottom-right-radius:0px;
  1633. border-bottom-left-radius:0px;
  1634. -moz-box-shadow:none;
  1635. -webkit-box-shadow:none;
  1636. box-shadow:none;
  1637. font-family:'PingFangSC-Regular', 'PingFang SC';
  1638. font-weight:400;
  1639. font-style:normal;
  1640. font-size:14px;
  1641. text-align:left;
  1642. }
  1643. #u167 {
  1644. position:absolute;
  1645. left:1272px;
  1646. top:215px;
  1647. width:318px;
  1648. height:40px;
  1649. font-family:'PingFangSC-Regular', 'PingFang SC';
  1650. font-weight:400;
  1651. font-style:normal;
  1652. font-size:14px;
  1653. text-align:left;
  1654. }
  1655. #u168 {
  1656. position:absolute;
  1657. left:0px;
  1658. top:10px;
  1659. width:318px;
  1660. word-wrap:break-word;
  1661. }
  1662. #u169_img {
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:10px;
  1667. height:16px;
  1668. }
  1669. #u169 {
  1670. position:absolute;
  1671. left:1282px;
  1672. top:227px;
  1673. width:10px;
  1674. height:16px;
  1675. }
  1676. #u170 {
  1677. position:absolute;
  1678. left:2px;
  1679. top:0px;
  1680. width:6px;
  1681. visibility:hidden;
  1682. word-wrap:break-word;
  1683. }
  1684. #u171 {
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:0px;
  1689. height:0px;
  1690. }
  1691. #u172_div {
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:50px;
  1696. height:26px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 1);
  1699. box-sizing:border-box;
  1700. border-width:1px;
  1701. border-style:solid;
  1702. border-color:rgba(204, 204, 204, 1);
  1703. border-radius:15px;
  1704. -moz-box-shadow:none;
  1705. -webkit-box-shadow:none;
  1706. box-shadow:none;
  1707. }
  1708. #u172 {
  1709. position:absolute;
  1710. left:1530px;
  1711. top:222px;
  1712. width:50px;
  1713. height:26px;
  1714. }
  1715. #u173 {
  1716. position:absolute;
  1717. left:2px;
  1718. top:5px;
  1719. width:46px;
  1720. visibility:hidden;
  1721. word-wrap:break-word;
  1722. }
  1723. #u174 {
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:0px;
  1728. height:0px;
  1729. }
  1730. #u175_img {
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:3px;
  1735. height:3px;
  1736. }
  1737. #u175 {
  1738. position:absolute;
  1739. left:1537px;
  1740. top:234px;
  1741. width:3px;
  1742. height:3px;
  1743. -webkit-transform:rotate(45deg);
  1744. -moz-transform:rotate(45deg);
  1745. -ms-transform:rotate(45deg);
  1746. transform:rotate(45deg);
  1747. font-family:'MicrosoftYaHei', '微软雅黑';
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:18px;
  1751. }
  1752. #u176 {
  1753. position:absolute;
  1754. left:0px;
  1755. top:-6px;
  1756. width:3px;
  1757. visibility:hidden;
  1758. word-wrap:break-word;
  1759. }
  1760. #u177_img {
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:5px;
  1765. height:5px;
  1766. }
  1767. #u177 {
  1768. position:absolute;
  1769. left:1541px;
  1770. top:233px;
  1771. width:5px;
  1772. height:5px;
  1773. -webkit-transform:rotate(45deg);
  1774. -moz-transform:rotate(45deg);
  1775. -ms-transform:rotate(45deg);
  1776. transform:rotate(45deg);
  1777. font-family:'MicrosoftYaHei', '微软雅黑';
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:18px;
  1781. }
  1782. #u178 {
  1783. position:absolute;
  1784. left:0px;
  1785. top:-6px;
  1786. width:5px;
  1787. visibility:hidden;
  1788. word-wrap:break-word;
  1789. }
  1790. #u179_img {
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:3px;
  1795. height:3px;
  1796. }
  1797. #u179 {
  1798. position:absolute;
  1799. left:1547px;
  1800. top:234px;
  1801. width:3px;
  1802. height:3px;
  1803. -webkit-transform:rotate(45deg);
  1804. -moz-transform:rotate(45deg);
  1805. -ms-transform:rotate(45deg);
  1806. transform:rotate(45deg);
  1807. font-family:'MicrosoftYaHei', '微软雅黑';
  1808. font-weight:400;
  1809. font-style:normal;
  1810. font-size:18px;
  1811. }
  1812. #u180 {
  1813. position:absolute;
  1814. left:0px;
  1815. top:-6px;
  1816. width:3px;
  1817. visibility:hidden;
  1818. word-wrap:break-word;
  1819. }
  1820. #u181_img {
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:2px;
  1825. height:19px;
  1826. }
  1827. #u181 {
  1828. position:absolute;
  1829. left:1554px;
  1830. top:226px;
  1831. width:1px;
  1832. height:18px;
  1833. }
  1834. #u182 {
  1835. position:absolute;
  1836. left:2px;
  1837. top:1px;
  1838. width:1px;
  1839. visibility:hidden;
  1840. word-wrap:break-word;
  1841. }
  1842. #u183_img {
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:14px;
  1847. height:14px;
  1848. }
  1849. #u183 {
  1850. position:absolute;
  1851. left:1560px;
  1852. top:228px;
  1853. width:14px;
  1854. height:14px;
  1855. }
  1856. #u184 {
  1857. position:absolute;
  1858. left:2px;
  1859. top:-1px;
  1860. width:10px;
  1861. visibility:hidden;
  1862. word-wrap:break-word;
  1863. }
  1864. #u185_img {
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:6px;
  1869. height:6px;
  1870. }
  1871. #u185 {
  1872. position:absolute;
  1873. left:1564px;
  1874. top:232px;
  1875. width:6px;
  1876. height:6px;
  1877. }
  1878. #u186 {
  1879. position:absolute;
  1880. left:2px;
  1881. top:-5px;
  1882. width:2px;
  1883. visibility:hidden;
  1884. word-wrap:break-word;
  1885. }
  1886. #u187 {
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:0px;
  1891. height:0px;
  1892. }
  1893. #u188_img {
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:7px;
  1898. height:7px;
  1899. }
  1900. #u188 {
  1901. position:absolute;
  1902. left:1413px;
  1903. top:718px;
  1904. width:7px;
  1905. height:7px;
  1906. color:#FFFFFF;
  1907. }
  1908. #u189 {
  1909. position:absolute;
  1910. left:0px;
  1911. top:-4px;
  1912. width:7px;
  1913. visibility:hidden;
  1914. word-wrap:break-word;
  1915. }
  1916. #u190_img {
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:7px;
  1921. height:7px;
  1922. }
  1923. #u190 {
  1924. position:absolute;
  1925. left:1423px;
  1926. top:718px;
  1927. width:7px;
  1928. height:7px;
  1929. color:#FFFFFF;
  1930. }
  1931. #u191 {
  1932. position:absolute;
  1933. left:0px;
  1934. top:-4px;
  1935. width:7px;
  1936. visibility:hidden;
  1937. word-wrap:break-word;
  1938. }
  1939. #u192_img {
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:7px;
  1944. height:7px;
  1945. }
  1946. #u192 {
  1947. position:absolute;
  1948. left:1433px;
  1949. top:718px;
  1950. width:7px;
  1951. height:7px;
  1952. color:#FFFFFF;
  1953. }
  1954. #u193 {
  1955. position:absolute;
  1956. left:0px;
  1957. top:-4px;
  1958. width:7px;
  1959. visibility:hidden;
  1960. word-wrap:break-word;
  1961. }
  1962. #u194_img {
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:7px;
  1967. height:7px;
  1968. }
  1969. #u194 {
  1970. position:absolute;
  1971. left:1443px;
  1972. top:718px;
  1973. width:7px;
  1974. height:7px;
  1975. color:#FFFFFF;
  1976. }
  1977. #u195 {
  1978. position:absolute;
  1979. left:0px;
  1980. top:-4px;
  1981. width:7px;
  1982. visibility:hidden;
  1983. word-wrap:break-word;
  1984. }
  1985. #u196 {
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:0px;
  1990. height:0px;
  1991. }
  1992. #u197_div {
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:320px;
  1997. height:657px;
  1998. background:inherit;
  1999. background-color:rgba(242, 242, 242, 1);
  2000. box-sizing:border-box;
  2001. border-width:1px;
  2002. border-style:solid;
  2003. border-color:rgba(0, 0, 0, 1);
  2004. border-radius:0px;
  2005. -moz-box-shadow:none;
  2006. -webkit-box-shadow:none;
  2007. box-shadow:none;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC';
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:12px;
  2012. color:#000000;
  2013. }
  2014. #u197 {
  2015. position:absolute;
  2016. left:1611px;
  2017. top:199px;
  2018. width:320px;
  2019. height:657px;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC';
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:12px;
  2024. color:#000000;
  2025. }
  2026. #u198 {
  2027. position:absolute;
  2028. left:2px;
  2029. top:320px;
  2030. width:316px;
  2031. word-wrap:break-word;
  2032. }
  2033. #u199 {
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:0px;
  2038. height:0px;
  2039. }
  2040. #u200_div {
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:318px;
  2045. height:17px;
  2046. background:inherit;
  2047. background-color:rgba(255, 255, 255, 1);
  2048. border:none;
  2049. border-radius:0px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. }
  2054. #u200 {
  2055. position:absolute;
  2056. left:1612px;
  2057. top:200px;
  2058. width:318px;
  2059. height:17px;
  2060. }
  2061. #u201 {
  2062. position:absolute;
  2063. left:2px;
  2064. top:0px;
  2065. width:314px;
  2066. visibility:hidden;
  2067. word-wrap:break-word;
  2068. }
  2069. #u202_img {
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:318px;
  2074. height:17px;
  2075. }
  2076. #u202 {
  2077. position:absolute;
  2078. left:1612px;
  2079. top:200px;
  2080. width:318px;
  2081. height:17px;
  2082. }
  2083. #u203 {
  2084. position:absolute;
  2085. left:2px;
  2086. top:0px;
  2087. width:314px;
  2088. visibility:hidden;
  2089. word-wrap:break-word;
  2090. }
  2091. #u204 {
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:0px;
  2096. height:0px;
  2097. }
  2098. #u205_div {
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:318px;
  2103. height:40px;
  2104. background:inherit;
  2105. background-color:rgba(255, 255, 255, 1);
  2106. box-sizing:border-box;
  2107. border-width:1px;
  2108. border-style:solid;
  2109. border-color:rgba(228, 228, 228, 1);
  2110. border-left:0px;
  2111. border-top:0px;
  2112. border-right:0px;
  2113. border-radius:0px;
  2114. border-top-left-radius:0px;
  2115. border-top-right-radius:0px;
  2116. border-bottom-right-radius:0px;
  2117. border-bottom-left-radius:0px;
  2118. -moz-box-shadow:none;
  2119. -webkit-box-shadow:none;
  2120. box-shadow:none;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC';
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:14px;
  2125. text-align:left;
  2126. }
  2127. #u205 {
  2128. position:absolute;
  2129. left:1612px;
  2130. top:217px;
  2131. width:318px;
  2132. height:40px;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC';
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:14px;
  2137. text-align:left;
  2138. }
  2139. #u206 {
  2140. position:absolute;
  2141. left:0px;
  2142. top:10px;
  2143. width:318px;
  2144. word-wrap:break-word;
  2145. }
  2146. #u207_img {
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:10px;
  2151. height:16px;
  2152. }
  2153. #u207 {
  2154. position:absolute;
  2155. left:1622px;
  2156. top:229px;
  2157. width:10px;
  2158. height:16px;
  2159. }
  2160. #u208 {
  2161. position:absolute;
  2162. left:2px;
  2163. top:0px;
  2164. width:6px;
  2165. visibility:hidden;
  2166. word-wrap:break-word;
  2167. }
  2168. #u209 {
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:0px;
  2173. height:0px;
  2174. }
  2175. #u210_div {
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:50px;
  2180. height:26px;
  2181. background:inherit;
  2182. background-color:rgba(255, 255, 255, 1);
  2183. box-sizing:border-box;
  2184. border-width:1px;
  2185. border-style:solid;
  2186. border-color:rgba(204, 204, 204, 1);
  2187. border-radius:15px;
  2188. -moz-box-shadow:none;
  2189. -webkit-box-shadow:none;
  2190. box-shadow:none;
  2191. }
  2192. #u210 {
  2193. position:absolute;
  2194. left:1870px;
  2195. top:224px;
  2196. width:50px;
  2197. height:26px;
  2198. }
  2199. #u211 {
  2200. position:absolute;
  2201. left:2px;
  2202. top:5px;
  2203. width:46px;
  2204. visibility:hidden;
  2205. word-wrap:break-word;
  2206. }
  2207. #u212 {
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:0px;
  2212. height:0px;
  2213. }
  2214. #u213_img {
  2215. position:absolute;
  2216. left:0px;
  2217. top:0px;
  2218. width:3px;
  2219. height:3px;
  2220. }
  2221. #u213 {
  2222. position:absolute;
  2223. left:1877px;
  2224. top:236px;
  2225. width:3px;
  2226. height:3px;
  2227. -webkit-transform:rotate(45deg);
  2228. -moz-transform:rotate(45deg);
  2229. -ms-transform:rotate(45deg);
  2230. transform:rotate(45deg);
  2231. font-family:'MicrosoftYaHei', '微软雅黑';
  2232. font-weight:400;
  2233. font-style:normal;
  2234. font-size:18px;
  2235. }
  2236. #u214 {
  2237. position:absolute;
  2238. left:0px;
  2239. top:-6px;
  2240. width:3px;
  2241. visibility:hidden;
  2242. word-wrap:break-word;
  2243. }
  2244. #u215_img {
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:5px;
  2249. height:5px;
  2250. }
  2251. #u215 {
  2252. position:absolute;
  2253. left:1881px;
  2254. top:235px;
  2255. width:5px;
  2256. height:5px;
  2257. -webkit-transform:rotate(45deg);
  2258. -moz-transform:rotate(45deg);
  2259. -ms-transform:rotate(45deg);
  2260. transform:rotate(45deg);
  2261. font-family:'MicrosoftYaHei', '微软雅黑';
  2262. font-weight:400;
  2263. font-style:normal;
  2264. font-size:18px;
  2265. }
  2266. #u216 {
  2267. position:absolute;
  2268. left:0px;
  2269. top:-6px;
  2270. width:5px;
  2271. visibility:hidden;
  2272. word-wrap:break-word;
  2273. }
  2274. #u217_img {
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:3px;
  2279. height:3px;
  2280. }
  2281. #u217 {
  2282. position:absolute;
  2283. left:1887px;
  2284. top:236px;
  2285. width:3px;
  2286. height:3px;
  2287. -webkit-transform:rotate(45deg);
  2288. -moz-transform:rotate(45deg);
  2289. -ms-transform:rotate(45deg);
  2290. transform:rotate(45deg);
  2291. font-family:'MicrosoftYaHei', '微软雅黑';
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:18px;
  2295. }
  2296. #u218 {
  2297. position:absolute;
  2298. left:0px;
  2299. top:-6px;
  2300. width:3px;
  2301. visibility:hidden;
  2302. word-wrap:break-word;
  2303. }
  2304. #u219_img {
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:2px;
  2309. height:19px;
  2310. }
  2311. #u219 {
  2312. position:absolute;
  2313. left:1894px;
  2314. top:228px;
  2315. width:1px;
  2316. height:18px;
  2317. }
  2318. #u220 {
  2319. position:absolute;
  2320. left:2px;
  2321. top:1px;
  2322. width:1px;
  2323. visibility:hidden;
  2324. word-wrap:break-word;
  2325. }
  2326. #u221_img {
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:14px;
  2331. height:14px;
  2332. }
  2333. #u221 {
  2334. position:absolute;
  2335. left:1900px;
  2336. top:230px;
  2337. width:14px;
  2338. height:14px;
  2339. }
  2340. #u222 {
  2341. position:absolute;
  2342. left:2px;
  2343. top:-1px;
  2344. width:10px;
  2345. visibility:hidden;
  2346. word-wrap:break-word;
  2347. }
  2348. #u223_img {
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:6px;
  2353. height:6px;
  2354. }
  2355. #u223 {
  2356. position:absolute;
  2357. left:1904px;
  2358. top:234px;
  2359. width:6px;
  2360. height:6px;
  2361. }
  2362. #u224 {
  2363. position:absolute;
  2364. left:2px;
  2365. top:-5px;
  2366. width:2px;
  2367. visibility:hidden;
  2368. word-wrap:break-word;
  2369. }
  2370. #u225 {
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:0px;
  2375. height:0px;
  2376. }
  2377. #u226_img {
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:7px;
  2382. height:7px;
  2383. }
  2384. #u226 {
  2385. position:absolute;
  2386. left:1753px;
  2387. top:720px;
  2388. width:7px;
  2389. height:7px;
  2390. color:#FFFFFF;
  2391. }
  2392. #u227 {
  2393. position:absolute;
  2394. left:0px;
  2395. top:-4px;
  2396. width:7px;
  2397. visibility:hidden;
  2398. word-wrap:break-word;
  2399. }
  2400. #u228_img {
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:7px;
  2405. height:7px;
  2406. }
  2407. #u228 {
  2408. position:absolute;
  2409. left:1763px;
  2410. top:720px;
  2411. width:7px;
  2412. height:7px;
  2413. color:#FFFFFF;
  2414. }
  2415. #u229 {
  2416. position:absolute;
  2417. left:0px;
  2418. top:-4px;
  2419. width:7px;
  2420. visibility:hidden;
  2421. word-wrap:break-word;
  2422. }
  2423. #u230_img {
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:7px;
  2428. height:7px;
  2429. }
  2430. #u230 {
  2431. position:absolute;
  2432. left:1773px;
  2433. top:720px;
  2434. width:7px;
  2435. height:7px;
  2436. color:#FFFFFF;
  2437. }
  2438. #u231 {
  2439. position:absolute;
  2440. left:0px;
  2441. top:-4px;
  2442. width:7px;
  2443. visibility:hidden;
  2444. word-wrap:break-word;
  2445. }
  2446. #u232_img {
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:7px;
  2451. height:7px;
  2452. }
  2453. #u232 {
  2454. position:absolute;
  2455. left:1783px;
  2456. top:720px;
  2457. width:7px;
  2458. height:7px;
  2459. color:#FFFFFF;
  2460. }
  2461. #u233 {
  2462. position:absolute;
  2463. left:0px;
  2464. top:-4px;
  2465. width:7px;
  2466. visibility:hidden;
  2467. word-wrap:break-word;
  2468. }
  2469. #u234_div {
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:320px;
  2474. height:48px;
  2475. background:inherit;
  2476. background-color:rgba(208, 225, 125, 1);
  2477. border:none;
  2478. border-radius:0px;
  2479. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2480. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2481. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2482. font-family:'PingFangSC-Regular', 'PingFang SC';
  2483. font-weight:400;
  2484. font-style:normal;
  2485. }
  2486. #u234 {
  2487. position:absolute;
  2488. left:510px;
  2489. top:862px;
  2490. width:320px;
  2491. height:48px;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC';
  2493. font-weight:400;
  2494. font-style:normal;
  2495. }
  2496. #u235 {
  2497. position:absolute;
  2498. left:10px;
  2499. top:10px;
  2500. width:300px;
  2501. word-wrap:break-word;
  2502. }
  2503. #u236_div {
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:320px;
  2508. height:48px;
  2509. background:inherit;
  2510. background-color:rgba(208, 225, 125, 1);
  2511. border:none;
  2512. border-radius:0px;
  2513. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2514. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2515. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2516. font-family:'PingFangSC-Regular', 'PingFang SC';
  2517. font-weight:400;
  2518. font-style:normal;
  2519. }
  2520. #u236 {
  2521. position:absolute;
  2522. left:852px;
  2523. top:863px;
  2524. width:320px;
  2525. height:48px;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC';
  2527. font-weight:400;
  2528. font-style:normal;
  2529. }
  2530. #u237 {
  2531. position:absolute;
  2532. left:10px;
  2533. top:10px;
  2534. width:300px;
  2535. word-wrap:break-word;
  2536. }
  2537. #u238_div {
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:320px;
  2542. height:48px;
  2543. background:inherit;
  2544. background-color:rgba(208, 225, 125, 1);
  2545. border:none;
  2546. border-radius:0px;
  2547. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2548. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2549. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2550. font-family:'PingFangSC-Regular', 'PingFang SC';
  2551. font-weight:400;
  2552. font-style:normal;
  2553. }
  2554. #u238 {
  2555. position:absolute;
  2556. left:1272px;
  2557. top:864px;
  2558. width:320px;
  2559. height:48px;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC';
  2561. font-weight:400;
  2562. font-style:normal;
  2563. }
  2564. #u239 {
  2565. position:absolute;
  2566. left:10px;
  2567. top:10px;
  2568. width:300px;
  2569. word-wrap:break-word;
  2570. }
  2571. #u240_div {
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:320px;
  2576. height:48px;
  2577. background:inherit;
  2578. background-color:rgba(208, 225, 125, 1);
  2579. border:none;
  2580. border-radius:0px;
  2581. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2582. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2583. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2584. font-family:'PingFangSC-Regular', 'PingFang SC';
  2585. font-weight:400;
  2586. font-style:normal;
  2587. }
  2588. #u240 {
  2589. position:absolute;
  2590. left:1611px;
  2591. top:866px;
  2592. width:320px;
  2593. height:48px;
  2594. font-family:'PingFangSC-Regular', 'PingFang SC';
  2595. font-weight:400;
  2596. font-style:normal;
  2597. }
  2598. #u241 {
  2599. position:absolute;
  2600. left:10px;
  2601. top:10px;
  2602. width:300px;
  2603. word-wrap:break-word;
  2604. }
  2605. #u242 {
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:0px;
  2610. height:0px;
  2611. }
  2612. #u243_div {
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:320px;
  2617. height:657px;
  2618. background:inherit;
  2619. background-color:rgba(242, 242, 242, 1);
  2620. box-sizing:border-box;
  2621. border-width:1px;
  2622. border-style:solid;
  2623. border-color:rgba(0, 0, 0, 1);
  2624. border-radius:0px;
  2625. -moz-box-shadow:none;
  2626. -webkit-box-shadow:none;
  2627. box-shadow:none;
  2628. font-family:'PingFangSC-Regular', 'PingFang SC';
  2629. font-weight:400;
  2630. font-style:normal;
  2631. font-size:12px;
  2632. color:#000000;
  2633. }
  2634. #u243 {
  2635. position:absolute;
  2636. left:167px;
  2637. top:1037px;
  2638. width:320px;
  2639. height:657px;
  2640. font-family:'PingFangSC-Regular', 'PingFang SC';
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:12px;
  2644. color:#000000;
  2645. }
  2646. #u244 {
  2647. position:absolute;
  2648. left:2px;
  2649. top:320px;
  2650. width:316px;
  2651. word-wrap:break-word;
  2652. }
  2653. #u245 {
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:0px;
  2658. height:0px;
  2659. }
  2660. #u246_div {
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:318px;
  2665. height:17px;
  2666. background:inherit;
  2667. background-color:rgba(255, 255, 255, 1);
  2668. border:none;
  2669. border-radius:0px;
  2670. -moz-box-shadow:none;
  2671. -webkit-box-shadow:none;
  2672. box-shadow:none;
  2673. }
  2674. #u246 {
  2675. position:absolute;
  2676. left:168px;
  2677. top:1038px;
  2678. width:318px;
  2679. height:17px;
  2680. }
  2681. #u247 {
  2682. position:absolute;
  2683. left:2px;
  2684. top:0px;
  2685. width:314px;
  2686. visibility:hidden;
  2687. word-wrap:break-word;
  2688. }
  2689. #u248_img {
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:318px;
  2694. height:17px;
  2695. }
  2696. #u248 {
  2697. position:absolute;
  2698. left:168px;
  2699. top:1038px;
  2700. width:318px;
  2701. height:17px;
  2702. }
  2703. #u249 {
  2704. position:absolute;
  2705. left:2px;
  2706. top:0px;
  2707. width:314px;
  2708. visibility:hidden;
  2709. word-wrap:break-word;
  2710. }
  2711. #u250 {
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:0px;
  2716. height:0px;
  2717. }
  2718. #u251_div {
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:318px;
  2723. height:40px;
  2724. background:inherit;
  2725. background-color:rgba(255, 255, 255, 1);
  2726. box-sizing:border-box;
  2727. border-width:1px;
  2728. border-style:solid;
  2729. border-color:rgba(228, 228, 228, 1);
  2730. border-left:0px;
  2731. border-top:0px;
  2732. border-right:0px;
  2733. border-radius:0px;
  2734. border-top-left-radius:0px;
  2735. border-top-right-radius:0px;
  2736. border-bottom-right-radius:0px;
  2737. border-bottom-left-radius:0px;
  2738. -moz-box-shadow:none;
  2739. -webkit-box-shadow:none;
  2740. box-shadow:none;
  2741. font-family:'PingFangSC-Regular', 'PingFang SC';
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:14px;
  2745. text-align:left;
  2746. }
  2747. #u251 {
  2748. position:absolute;
  2749. left:168px;
  2750. top:1055px;
  2751. width:318px;
  2752. height:40px;
  2753. font-family:'PingFangSC-Regular', 'PingFang SC';
  2754. font-weight:400;
  2755. font-style:normal;
  2756. font-size:14px;
  2757. text-align:left;
  2758. }
  2759. #u252 {
  2760. position:absolute;
  2761. left:0px;
  2762. top:10px;
  2763. width:318px;
  2764. word-wrap:break-word;
  2765. }
  2766. #u253_img {
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:10px;
  2771. height:16px;
  2772. }
  2773. #u253 {
  2774. position:absolute;
  2775. left:178px;
  2776. top:1067px;
  2777. width:10px;
  2778. height:16px;
  2779. }
  2780. #u254 {
  2781. position:absolute;
  2782. left:2px;
  2783. top:0px;
  2784. width:6px;
  2785. visibility:hidden;
  2786. word-wrap:break-word;
  2787. }
  2788. #u255 {
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:0px;
  2793. height:0px;
  2794. }
  2795. #u256_div {
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:50px;
  2800. height:26px;
  2801. background:inherit;
  2802. background-color:rgba(255, 255, 255, 1);
  2803. box-sizing:border-box;
  2804. border-width:1px;
  2805. border-style:solid;
  2806. border-color:rgba(204, 204, 204, 1);
  2807. border-radius:15px;
  2808. -moz-box-shadow:none;
  2809. -webkit-box-shadow:none;
  2810. box-shadow:none;
  2811. }
  2812. #u256 {
  2813. position:absolute;
  2814. left:426px;
  2815. top:1062px;
  2816. width:50px;
  2817. height:26px;
  2818. }
  2819. #u257 {
  2820. position:absolute;
  2821. left:2px;
  2822. top:5px;
  2823. width:46px;
  2824. visibility:hidden;
  2825. word-wrap:break-word;
  2826. }
  2827. #u258 {
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:0px;
  2832. height:0px;
  2833. }
  2834. #u259_img {
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:3px;
  2839. height:3px;
  2840. }
  2841. #u259 {
  2842. position:absolute;
  2843. left:433px;
  2844. top:1074px;
  2845. width:3px;
  2846. height:3px;
  2847. -webkit-transform:rotate(45deg);
  2848. -moz-transform:rotate(45deg);
  2849. -ms-transform:rotate(45deg);
  2850. transform:rotate(45deg);
  2851. font-family:'MicrosoftYaHei', '微软雅黑';
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:18px;
  2855. }
  2856. #u260 {
  2857. position:absolute;
  2858. left:0px;
  2859. top:-6px;
  2860. width:3px;
  2861. visibility:hidden;
  2862. word-wrap:break-word;
  2863. }
  2864. #u261_img {
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:5px;
  2869. height:5px;
  2870. }
  2871. #u261 {
  2872. position:absolute;
  2873. left:437px;
  2874. top:1073px;
  2875. width:5px;
  2876. height:5px;
  2877. -webkit-transform:rotate(45deg);
  2878. -moz-transform:rotate(45deg);
  2879. -ms-transform:rotate(45deg);
  2880. transform:rotate(45deg);
  2881. font-family:'MicrosoftYaHei', '微软雅黑';
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:18px;
  2885. }
  2886. #u262 {
  2887. position:absolute;
  2888. left:0px;
  2889. top:-6px;
  2890. width:5px;
  2891. visibility:hidden;
  2892. word-wrap:break-word;
  2893. }
  2894. #u263_img {
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:3px;
  2899. height:3px;
  2900. }
  2901. #u263 {
  2902. position:absolute;
  2903. left:443px;
  2904. top:1074px;
  2905. width:3px;
  2906. height:3px;
  2907. -webkit-transform:rotate(45deg);
  2908. -moz-transform:rotate(45deg);
  2909. -ms-transform:rotate(45deg);
  2910. transform:rotate(45deg);
  2911. font-family:'MicrosoftYaHei', '微软雅黑';
  2912. font-weight:400;
  2913. font-style:normal;
  2914. font-size:18px;
  2915. }
  2916. #u264 {
  2917. position:absolute;
  2918. left:0px;
  2919. top:-6px;
  2920. width:3px;
  2921. visibility:hidden;
  2922. word-wrap:break-word;
  2923. }
  2924. #u265_img {
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:2px;
  2929. height:19px;
  2930. }
  2931. #u265 {
  2932. position:absolute;
  2933. left:450px;
  2934. top:1066px;
  2935. width:1px;
  2936. height:18px;
  2937. }
  2938. #u266 {
  2939. position:absolute;
  2940. left:2px;
  2941. top:1px;
  2942. width:1px;
  2943. visibility:hidden;
  2944. word-wrap:break-word;
  2945. }
  2946. #u267_img {
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:14px;
  2951. height:14px;
  2952. }
  2953. #u267 {
  2954. position:absolute;
  2955. left:456px;
  2956. top:1068px;
  2957. width:14px;
  2958. height:14px;
  2959. }
  2960. #u268 {
  2961. position:absolute;
  2962. left:2px;
  2963. top:-1px;
  2964. width:10px;
  2965. visibility:hidden;
  2966. word-wrap:break-word;
  2967. }
  2968. #u269_img {
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:6px;
  2973. height:6px;
  2974. }
  2975. #u269 {
  2976. position:absolute;
  2977. left:460px;
  2978. top:1072px;
  2979. width:6px;
  2980. height:6px;
  2981. }
  2982. #u270 {
  2983. position:absolute;
  2984. left:2px;
  2985. top:-5px;
  2986. width:2px;
  2987. visibility:hidden;
  2988. word-wrap:break-word;
  2989. }
  2990. #u271 {
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:0px;
  2995. height:0px;
  2996. }
  2997. #u272_img {
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:7px;
  3002. height:7px;
  3003. }
  3004. #u272 {
  3005. position:absolute;
  3006. left:309px;
  3007. top:1601px;
  3008. width:7px;
  3009. height:7px;
  3010. color:#FFFFFF;
  3011. }
  3012. #u273 {
  3013. position:absolute;
  3014. left:0px;
  3015. top:-4px;
  3016. width:7px;
  3017. visibility:hidden;
  3018. word-wrap:break-word;
  3019. }
  3020. #u274_img {
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:7px;
  3025. height:7px;
  3026. }
  3027. #u274 {
  3028. position:absolute;
  3029. left:319px;
  3030. top:1601px;
  3031. width:7px;
  3032. height:7px;
  3033. color:#FFFFFF;
  3034. }
  3035. #u275 {
  3036. position:absolute;
  3037. left:0px;
  3038. top:-4px;
  3039. width:7px;
  3040. visibility:hidden;
  3041. word-wrap:break-word;
  3042. }
  3043. #u276_img {
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:7px;
  3048. height:7px;
  3049. }
  3050. #u276 {
  3051. position:absolute;
  3052. left:329px;
  3053. top:1601px;
  3054. width:7px;
  3055. height:7px;
  3056. color:#FFFFFF;
  3057. }
  3058. #u277 {
  3059. position:absolute;
  3060. left:0px;
  3061. top:-4px;
  3062. width:7px;
  3063. visibility:hidden;
  3064. word-wrap:break-word;
  3065. }
  3066. #u278_img {
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:7px;
  3071. height:7px;
  3072. }
  3073. #u278 {
  3074. position:absolute;
  3075. left:339px;
  3076. top:1601px;
  3077. width:7px;
  3078. height:7px;
  3079. color:#FFFFFF;
  3080. }
  3081. #u279 {
  3082. position:absolute;
  3083. left:0px;
  3084. top:-4px;
  3085. width:7px;
  3086. visibility:hidden;
  3087. word-wrap:break-word;
  3088. }
  3089. #u280_div {
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:320px;
  3094. height:48px;
  3095. background:inherit;
  3096. background-color:rgba(208, 225, 125, 1);
  3097. border:none;
  3098. border-radius:0px;
  3099. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3100. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3101. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3102. font-family:'PingFangSC-Regular', 'PingFang SC';
  3103. font-weight:400;
  3104. font-style:normal;
  3105. }
  3106. #u280 {
  3107. position:absolute;
  3108. left:167px;
  3109. top:1704px;
  3110. width:320px;
  3111. height:48px;
  3112. font-family:'PingFangSC-Regular', 'PingFang SC';
  3113. font-weight:400;
  3114. font-style:normal;
  3115. }
  3116. #u281 {
  3117. position:absolute;
  3118. left:10px;
  3119. top:10px;
  3120. width:300px;
  3121. word-wrap:break-word;
  3122. }
  3123. #u282_div {
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:150px;
  3128. height:25px;
  3129. background:inherit;
  3130. background-color:rgba(255, 255, 255, 0);
  3131. border:none;
  3132. border-radius:0px;
  3133. -moz-box-shadow:none;
  3134. -webkit-box-shadow:none;
  3135. box-shadow:none;
  3136. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  3137. font-weight:650;
  3138. font-style:normal;
  3139. }
  3140. #u282 {
  3141. position:absolute;
  3142. left:168px;
  3143. top:987px;
  3144. width:150px;
  3145. height:25px;
  3146. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  3147. font-weight:650;
  3148. font-style:normal;
  3149. }
  3150. #u283 {
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:150px;
  3155. white-space:nowrap;
  3156. }
  3157. #u284 {
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:0px;
  3162. height:0px;
  3163. }
  3164. #u285_div {
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:320px;
  3169. height:657px;
  3170. background:inherit;
  3171. background-color:rgba(242, 242, 242, 1);
  3172. box-sizing:border-box;
  3173. border-width:1px;
  3174. border-style:solid;
  3175. border-color:rgba(0, 0, 0, 1);
  3176. border-radius:0px;
  3177. -moz-box-shadow:none;
  3178. -webkit-box-shadow:none;
  3179. box-shadow:none;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC';
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:12px;
  3184. color:#000000;
  3185. }
  3186. #u285 {
  3187. position:absolute;
  3188. left:510px;
  3189. top:1037px;
  3190. width:320px;
  3191. height:657px;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC';
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#000000;
  3197. }
  3198. #u286 {
  3199. position:absolute;
  3200. left:2px;
  3201. top:320px;
  3202. width:316px;
  3203. word-wrap:break-word;
  3204. }
  3205. #u287 {
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:0px;
  3210. height:0px;
  3211. }
  3212. #u288_div {
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:318px;
  3217. height:17px;
  3218. background:inherit;
  3219. background-color:rgba(255, 255, 255, 1);
  3220. border:none;
  3221. border-radius:0px;
  3222. -moz-box-shadow:none;
  3223. -webkit-box-shadow:none;
  3224. box-shadow:none;
  3225. }
  3226. #u288 {
  3227. position:absolute;
  3228. left:511px;
  3229. top:1038px;
  3230. width:318px;
  3231. height:17px;
  3232. }
  3233. #u289 {
  3234. position:absolute;
  3235. left:2px;
  3236. top:0px;
  3237. width:314px;
  3238. visibility:hidden;
  3239. word-wrap:break-word;
  3240. }
  3241. #u290_img {
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:318px;
  3246. height:17px;
  3247. }
  3248. #u290 {
  3249. position:absolute;
  3250. left:511px;
  3251. top:1038px;
  3252. width:318px;
  3253. height:17px;
  3254. }
  3255. #u291 {
  3256. position:absolute;
  3257. left:2px;
  3258. top:0px;
  3259. width:314px;
  3260. visibility:hidden;
  3261. word-wrap:break-word;
  3262. }
  3263. #u292 {
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:0px;
  3268. height:0px;
  3269. }
  3270. #u293_div {
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:318px;
  3275. height:40px;
  3276. background:inherit;
  3277. background-color:rgba(255, 255, 255, 1);
  3278. box-sizing:border-box;
  3279. border-width:1px;
  3280. border-style:solid;
  3281. border-color:rgba(228, 228, 228, 1);
  3282. border-left:0px;
  3283. border-top:0px;
  3284. border-right:0px;
  3285. border-radius:0px;
  3286. border-top-left-radius:0px;
  3287. border-top-right-radius:0px;
  3288. border-bottom-right-radius:0px;
  3289. border-bottom-left-radius:0px;
  3290. -moz-box-shadow:none;
  3291. -webkit-box-shadow:none;
  3292. box-shadow:none;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC';
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:14px;
  3297. text-align:left;
  3298. }
  3299. #u293 {
  3300. position:absolute;
  3301. left:511px;
  3302. top:1055px;
  3303. width:318px;
  3304. height:40px;
  3305. font-family:'PingFangSC-Regular', 'PingFang SC';
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:14px;
  3309. text-align:left;
  3310. }
  3311. #u294 {
  3312. position:absolute;
  3313. left:0px;
  3314. top:10px;
  3315. width:318px;
  3316. word-wrap:break-word;
  3317. }
  3318. #u295_img {
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:10px;
  3323. height:16px;
  3324. }
  3325. #u295 {
  3326. position:absolute;
  3327. left:521px;
  3328. top:1067px;
  3329. width:10px;
  3330. height:16px;
  3331. }
  3332. #u296 {
  3333. position:absolute;
  3334. left:2px;
  3335. top:0px;
  3336. width:6px;
  3337. visibility:hidden;
  3338. word-wrap:break-word;
  3339. }
  3340. #u297 {
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:0px;
  3345. height:0px;
  3346. }
  3347. #u298_div {
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:50px;
  3352. height:26px;
  3353. background:inherit;
  3354. background-color:rgba(255, 255, 255, 1);
  3355. box-sizing:border-box;
  3356. border-width:1px;
  3357. border-style:solid;
  3358. border-color:rgba(204, 204, 204, 1);
  3359. border-radius:15px;
  3360. -moz-box-shadow:none;
  3361. -webkit-box-shadow:none;
  3362. box-shadow:none;
  3363. }
  3364. #u298 {
  3365. position:absolute;
  3366. left:769px;
  3367. top:1062px;
  3368. width:50px;
  3369. height:26px;
  3370. }
  3371. #u299 {
  3372. position:absolute;
  3373. left:2px;
  3374. top:5px;
  3375. width:46px;
  3376. visibility:hidden;
  3377. word-wrap:break-word;
  3378. }
  3379. #u300 {
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:0px;
  3384. height:0px;
  3385. }
  3386. #u301_img {
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:3px;
  3391. height:3px;
  3392. }
  3393. #u301 {
  3394. position:absolute;
  3395. left:776px;
  3396. top:1074px;
  3397. width:3px;
  3398. height:3px;
  3399. -webkit-transform:rotate(45deg);
  3400. -moz-transform:rotate(45deg);
  3401. -ms-transform:rotate(45deg);
  3402. transform:rotate(45deg);
  3403. font-family:'MicrosoftYaHei', '微软雅黑';
  3404. font-weight:400;
  3405. font-style:normal;
  3406. font-size:18px;
  3407. }
  3408. #u302 {
  3409. position:absolute;
  3410. left:0px;
  3411. top:-6px;
  3412. width:3px;
  3413. visibility:hidden;
  3414. word-wrap:break-word;
  3415. }
  3416. #u303_img {
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:5px;
  3421. height:5px;
  3422. }
  3423. #u303 {
  3424. position:absolute;
  3425. left:780px;
  3426. top:1073px;
  3427. width:5px;
  3428. height:5px;
  3429. -webkit-transform:rotate(45deg);
  3430. -moz-transform:rotate(45deg);
  3431. -ms-transform:rotate(45deg);
  3432. transform:rotate(45deg);
  3433. font-family:'MicrosoftYaHei', '微软雅黑';
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:18px;
  3437. }
  3438. #u304 {
  3439. position:absolute;
  3440. left:0px;
  3441. top:-6px;
  3442. width:5px;
  3443. visibility:hidden;
  3444. word-wrap:break-word;
  3445. }
  3446. #u305_img {
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:3px;
  3451. height:3px;
  3452. }
  3453. #u305 {
  3454. position:absolute;
  3455. left:786px;
  3456. top:1074px;
  3457. width:3px;
  3458. height:3px;
  3459. -webkit-transform:rotate(45deg);
  3460. -moz-transform:rotate(45deg);
  3461. -ms-transform:rotate(45deg);
  3462. transform:rotate(45deg);
  3463. font-family:'MicrosoftYaHei', '微软雅黑';
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:18px;
  3467. }
  3468. #u306 {
  3469. position:absolute;
  3470. left:0px;
  3471. top:-6px;
  3472. width:3px;
  3473. visibility:hidden;
  3474. word-wrap:break-word;
  3475. }
  3476. #u307_img {
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:2px;
  3481. height:19px;
  3482. }
  3483. #u307 {
  3484. position:absolute;
  3485. left:793px;
  3486. top:1066px;
  3487. width:1px;
  3488. height:18px;
  3489. }
  3490. #u308 {
  3491. position:absolute;
  3492. left:2px;
  3493. top:1px;
  3494. width:1px;
  3495. visibility:hidden;
  3496. word-wrap:break-word;
  3497. }
  3498. #u309_img {
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:14px;
  3503. height:14px;
  3504. }
  3505. #u309 {
  3506. position:absolute;
  3507. left:799px;
  3508. top:1068px;
  3509. width:14px;
  3510. height:14px;
  3511. }
  3512. #u310 {
  3513. position:absolute;
  3514. left:2px;
  3515. top:-1px;
  3516. width:10px;
  3517. visibility:hidden;
  3518. word-wrap:break-word;
  3519. }
  3520. #u311_img {
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:6px;
  3525. height:6px;
  3526. }
  3527. #u311 {
  3528. position:absolute;
  3529. left:803px;
  3530. top:1072px;
  3531. width:6px;
  3532. height:6px;
  3533. }
  3534. #u312 {
  3535. position:absolute;
  3536. left:2px;
  3537. top:-5px;
  3538. width:2px;
  3539. visibility:hidden;
  3540. word-wrap:break-word;
  3541. }
  3542. #u313 {
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:0px;
  3547. height:0px;
  3548. }
  3549. #u314_img {
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:7px;
  3554. height:7px;
  3555. }
  3556. #u314 {
  3557. position:absolute;
  3558. left:652px;
  3559. top:1558px;
  3560. width:7px;
  3561. height:7px;
  3562. color:#FFFFFF;
  3563. }
  3564. #u315 {
  3565. position:absolute;
  3566. left:0px;
  3567. top:-4px;
  3568. width:7px;
  3569. visibility:hidden;
  3570. word-wrap:break-word;
  3571. }
  3572. #u316_img {
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:7px;
  3577. height:7px;
  3578. }
  3579. #u316 {
  3580. position:absolute;
  3581. left:662px;
  3582. top:1558px;
  3583. width:7px;
  3584. height:7px;
  3585. color:#FFFFFF;
  3586. }
  3587. #u317 {
  3588. position:absolute;
  3589. left:0px;
  3590. top:-4px;
  3591. width:7px;
  3592. visibility:hidden;
  3593. word-wrap:break-word;
  3594. }
  3595. #u318_img {
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:7px;
  3600. height:7px;
  3601. }
  3602. #u318 {
  3603. position:absolute;
  3604. left:672px;
  3605. top:1558px;
  3606. width:7px;
  3607. height:7px;
  3608. color:#FFFFFF;
  3609. }
  3610. #u319 {
  3611. position:absolute;
  3612. left:0px;
  3613. top:-4px;
  3614. width:7px;
  3615. visibility:hidden;
  3616. word-wrap:break-word;
  3617. }
  3618. #u320_img {
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:7px;
  3623. height:7px;
  3624. }
  3625. #u320 {
  3626. position:absolute;
  3627. left:682px;
  3628. top:1558px;
  3629. width:7px;
  3630. height:7px;
  3631. color:#FFFFFF;
  3632. }
  3633. #u321 {
  3634. position:absolute;
  3635. left:0px;
  3636. top:-4px;
  3637. width:7px;
  3638. visibility:hidden;
  3639. word-wrap:break-word;
  3640. }
  3641. #u322_div {
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:320px;
  3646. height:48px;
  3647. background:inherit;
  3648. background-color:rgba(208, 225, 125, 1);
  3649. border:none;
  3650. border-radius:0px;
  3651. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3652. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3653. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3654. font-family:'PingFangSC-Regular', 'PingFang SC';
  3655. font-weight:400;
  3656. font-style:normal;
  3657. }
  3658. #u322 {
  3659. position:absolute;
  3660. left:510px;
  3661. top:1704px;
  3662. width:320px;
  3663. height:48px;
  3664. font-family:'PingFangSC-Regular', 'PingFang SC';
  3665. font-weight:400;
  3666. font-style:normal;
  3667. }
  3668. #u323 {
  3669. position:absolute;
  3670. left:10px;
  3671. top:10px;
  3672. width:300px;
  3673. word-wrap:break-word;
  3674. }
  3675. #u324 {
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:0px;
  3680. height:0px;
  3681. }
  3682. #u325_div {
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:320px;
  3687. height:657px;
  3688. background:inherit;
  3689. background-color:rgba(242, 242, 242, 1);
  3690. box-sizing:border-box;
  3691. border-width:1px;
  3692. border-style:solid;
  3693. border-color:rgba(0, 0, 0, 1);
  3694. border-radius:0px;
  3695. -moz-box-shadow:none;
  3696. -webkit-box-shadow:none;
  3697. box-shadow:none;
  3698. font-family:'PingFangSC-Regular', 'PingFang SC';
  3699. font-weight:400;
  3700. font-style:normal;
  3701. font-size:12px;
  3702. color:#000000;
  3703. }
  3704. #u325 {
  3705. position:absolute;
  3706. left:892px;
  3707. top:1035px;
  3708. width:320px;
  3709. height:657px;
  3710. font-family:'PingFangSC-Regular', 'PingFang SC';
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:12px;
  3714. color:#000000;
  3715. }
  3716. #u326 {
  3717. position:absolute;
  3718. left:2px;
  3719. top:320px;
  3720. width:316px;
  3721. word-wrap:break-word;
  3722. }
  3723. #u327 {
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:0px;
  3728. height:0px;
  3729. }
  3730. #u328_div {
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:318px;
  3735. height:17px;
  3736. background:inherit;
  3737. background-color:rgba(255, 255, 255, 1);
  3738. border:none;
  3739. border-radius:0px;
  3740. -moz-box-shadow:none;
  3741. -webkit-box-shadow:none;
  3742. box-shadow:none;
  3743. }
  3744. #u328 {
  3745. position:absolute;
  3746. left:893px;
  3747. top:1036px;
  3748. width:318px;
  3749. height:17px;
  3750. }
  3751. #u329 {
  3752. position:absolute;
  3753. left:2px;
  3754. top:0px;
  3755. width:314px;
  3756. visibility:hidden;
  3757. word-wrap:break-word;
  3758. }
  3759. #u330_img {
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:318px;
  3764. height:17px;
  3765. }
  3766. #u330 {
  3767. position:absolute;
  3768. left:893px;
  3769. top:1036px;
  3770. width:318px;
  3771. height:17px;
  3772. }
  3773. #u331 {
  3774. position:absolute;
  3775. left:2px;
  3776. top:0px;
  3777. width:314px;
  3778. visibility:hidden;
  3779. word-wrap:break-word;
  3780. }
  3781. #u332 {
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:0px;
  3786. height:0px;
  3787. }
  3788. #u333_div {
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:318px;
  3793. height:40px;
  3794. background:inherit;
  3795. background-color:rgba(255, 255, 255, 1);
  3796. box-sizing:border-box;
  3797. border-width:1px;
  3798. border-style:solid;
  3799. border-color:rgba(228, 228, 228, 1);
  3800. border-left:0px;
  3801. border-top:0px;
  3802. border-right:0px;
  3803. border-radius:0px;
  3804. border-top-left-radius:0px;
  3805. border-top-right-radius:0px;
  3806. border-bottom-right-radius:0px;
  3807. border-bottom-left-radius:0px;
  3808. -moz-box-shadow:none;
  3809. -webkit-box-shadow:none;
  3810. box-shadow:none;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC';
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:14px;
  3815. text-align:left;
  3816. }
  3817. #u333 {
  3818. position:absolute;
  3819. left:893px;
  3820. top:1053px;
  3821. width:318px;
  3822. height:40px;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC';
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:14px;
  3827. text-align:left;
  3828. }
  3829. #u334 {
  3830. position:absolute;
  3831. left:0px;
  3832. top:10px;
  3833. width:318px;
  3834. word-wrap:break-word;
  3835. }
  3836. #u335_img {
  3837. position:absolute;
  3838. left:0px;
  3839. top:0px;
  3840. width:10px;
  3841. height:16px;
  3842. }
  3843. #u335 {
  3844. position:absolute;
  3845. left:903px;
  3846. top:1065px;
  3847. width:10px;
  3848. height:16px;
  3849. }
  3850. #u336 {
  3851. position:absolute;
  3852. left:2px;
  3853. top:0px;
  3854. width:6px;
  3855. visibility:hidden;
  3856. word-wrap:break-word;
  3857. }
  3858. #u337 {
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:0px;
  3863. height:0px;
  3864. }
  3865. #u338_div {
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:50px;
  3870. height:26px;
  3871. background:inherit;
  3872. background-color:rgba(255, 255, 255, 1);
  3873. box-sizing:border-box;
  3874. border-width:1px;
  3875. border-style:solid;
  3876. border-color:rgba(204, 204, 204, 1);
  3877. border-radius:15px;
  3878. -moz-box-shadow:none;
  3879. -webkit-box-shadow:none;
  3880. box-shadow:none;
  3881. }
  3882. #u338 {
  3883. position:absolute;
  3884. left:1151px;
  3885. top:1060px;
  3886. width:50px;
  3887. height:26px;
  3888. }
  3889. #u339 {
  3890. position:absolute;
  3891. left:2px;
  3892. top:5px;
  3893. width:46px;
  3894. visibility:hidden;
  3895. word-wrap:break-word;
  3896. }
  3897. #u340 {
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:0px;
  3902. height:0px;
  3903. }
  3904. #u341_img {
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:3px;
  3909. height:3px;
  3910. }
  3911. #u341 {
  3912. position:absolute;
  3913. left:1158px;
  3914. top:1072px;
  3915. width:3px;
  3916. height:3px;
  3917. -webkit-transform:rotate(45deg);
  3918. -moz-transform:rotate(45deg);
  3919. -ms-transform:rotate(45deg);
  3920. transform:rotate(45deg);
  3921. font-family:'MicrosoftYaHei', '微软雅黑';
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:18px;
  3925. }
  3926. #u342 {
  3927. position:absolute;
  3928. left:0px;
  3929. top:-6px;
  3930. width:3px;
  3931. visibility:hidden;
  3932. word-wrap:break-word;
  3933. }
  3934. #u343_img {
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:5px;
  3939. height:5px;
  3940. }
  3941. #u343 {
  3942. position:absolute;
  3943. left:1162px;
  3944. top:1071px;
  3945. width:5px;
  3946. height:5px;
  3947. -webkit-transform:rotate(45deg);
  3948. -moz-transform:rotate(45deg);
  3949. -ms-transform:rotate(45deg);
  3950. transform:rotate(45deg);
  3951. font-family:'MicrosoftYaHei', '微软雅黑';
  3952. font-weight:400;
  3953. font-style:normal;
  3954. font-size:18px;
  3955. }
  3956. #u344 {
  3957. position:absolute;
  3958. left:0px;
  3959. top:-6px;
  3960. width:5px;
  3961. visibility:hidden;
  3962. word-wrap:break-word;
  3963. }
  3964. #u345_img {
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:3px;
  3969. height:3px;
  3970. }
  3971. #u345 {
  3972. position:absolute;
  3973. left:1168px;
  3974. top:1072px;
  3975. width:3px;
  3976. height:3px;
  3977. -webkit-transform:rotate(45deg);
  3978. -moz-transform:rotate(45deg);
  3979. -ms-transform:rotate(45deg);
  3980. transform:rotate(45deg);
  3981. font-family:'MicrosoftYaHei', '微软雅黑';
  3982. font-weight:400;
  3983. font-style:normal;
  3984. font-size:18px;
  3985. }
  3986. #u346 {
  3987. position:absolute;
  3988. left:0px;
  3989. top:-6px;
  3990. width:3px;
  3991. visibility:hidden;
  3992. word-wrap:break-word;
  3993. }
  3994. #u347_img {
  3995. position:absolute;
  3996. left:0px;
  3997. top:0px;
  3998. width:2px;
  3999. height:19px;
  4000. }
  4001. #u347 {
  4002. position:absolute;
  4003. left:1175px;
  4004. top:1064px;
  4005. width:1px;
  4006. height:18px;
  4007. }
  4008. #u348 {
  4009. position:absolute;
  4010. left:2px;
  4011. top:1px;
  4012. width:1px;
  4013. visibility:hidden;
  4014. word-wrap:break-word;
  4015. }
  4016. #u349_img {
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:14px;
  4021. height:14px;
  4022. }
  4023. #u349 {
  4024. position:absolute;
  4025. left:1181px;
  4026. top:1066px;
  4027. width:14px;
  4028. height:14px;
  4029. }
  4030. #u350 {
  4031. position:absolute;
  4032. left:2px;
  4033. top:-1px;
  4034. width:10px;
  4035. visibility:hidden;
  4036. word-wrap:break-word;
  4037. }
  4038. #u351_img {
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:6px;
  4043. height:6px;
  4044. }
  4045. #u351 {
  4046. position:absolute;
  4047. left:1185px;
  4048. top:1070px;
  4049. width:6px;
  4050. height:6px;
  4051. }
  4052. #u352 {
  4053. position:absolute;
  4054. left:2px;
  4055. top:-5px;
  4056. width:2px;
  4057. visibility:hidden;
  4058. word-wrap:break-word;
  4059. }
  4060. #u353 {
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:0px;
  4065. height:0px;
  4066. }
  4067. #u354_img {
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:7px;
  4072. height:7px;
  4073. }
  4074. #u354 {
  4075. position:absolute;
  4076. left:1034px;
  4077. top:1556px;
  4078. width:7px;
  4079. height:7px;
  4080. color:#FFFFFF;
  4081. }
  4082. #u355 {
  4083. position:absolute;
  4084. left:0px;
  4085. top:-4px;
  4086. width:7px;
  4087. visibility:hidden;
  4088. word-wrap:break-word;
  4089. }
  4090. #u356_img {
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:7px;
  4095. height:7px;
  4096. }
  4097. #u356 {
  4098. position:absolute;
  4099. left:1044px;
  4100. top:1556px;
  4101. width:7px;
  4102. height:7px;
  4103. color:#FFFFFF;
  4104. }
  4105. #u357 {
  4106. position:absolute;
  4107. left:0px;
  4108. top:-4px;
  4109. width:7px;
  4110. visibility:hidden;
  4111. word-wrap:break-word;
  4112. }
  4113. #u358_img {
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:7px;
  4118. height:7px;
  4119. }
  4120. #u358 {
  4121. position:absolute;
  4122. left:1054px;
  4123. top:1556px;
  4124. width:7px;
  4125. height:7px;
  4126. color:#FFFFFF;
  4127. }
  4128. #u359 {
  4129. position:absolute;
  4130. left:0px;
  4131. top:-4px;
  4132. width:7px;
  4133. visibility:hidden;
  4134. word-wrap:break-word;
  4135. }
  4136. #u360_img {
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:7px;
  4141. height:7px;
  4142. }
  4143. #u360 {
  4144. position:absolute;
  4145. left:1064px;
  4146. top:1556px;
  4147. width:7px;
  4148. height:7px;
  4149. color:#FFFFFF;
  4150. }
  4151. #u361 {
  4152. position:absolute;
  4153. left:0px;
  4154. top:-4px;
  4155. width:7px;
  4156. visibility:hidden;
  4157. word-wrap:break-word;
  4158. }
  4159. #u362_div {
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:320px;
  4164. height:48px;
  4165. background:inherit;
  4166. background-color:rgba(208, 225, 125, 1);
  4167. border:none;
  4168. border-radius:0px;
  4169. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4170. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4171. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4172. font-family:'PingFangSC-Regular', 'PingFang SC';
  4173. font-weight:400;
  4174. font-style:normal;
  4175. }
  4176. #u362 {
  4177. position:absolute;
  4178. left:892px;
  4179. top:1702px;
  4180. width:320px;
  4181. height:48px;
  4182. font-family:'PingFangSC-Regular', 'PingFang SC';
  4183. font-weight:400;
  4184. font-style:normal;
  4185. }
  4186. #u363 {
  4187. position:absolute;
  4188. left:10px;
  4189. top:10px;
  4190. width:300px;
  4191. word-wrap:break-word;
  4192. }
  4193. #u364 {
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:0px;
  4198. height:0px;
  4199. }
  4200. #u365_div {
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:320px;
  4205. height:657px;
  4206. background:inherit;
  4207. background-color:rgba(242, 242, 242, 1);
  4208. box-sizing:border-box;
  4209. border-width:1px;
  4210. border-style:solid;
  4211. border-color:rgba(0, 0, 0, 1);
  4212. border-radius:0px;
  4213. -moz-box-shadow:none;
  4214. -webkit-box-shadow:none;
  4215. box-shadow:none;
  4216. font-family:'PingFangSC-Regular', 'PingFang SC';
  4217. font-weight:400;
  4218. font-style:normal;
  4219. font-size:12px;
  4220. color:#000000;
  4221. }
  4222. #u365 {
  4223. position:absolute;
  4224. left:1235px;
  4225. top:1035px;
  4226. width:320px;
  4227. height:657px;
  4228. font-family:'PingFangSC-Regular', 'PingFang SC';
  4229. font-weight:400;
  4230. font-style:normal;
  4231. font-size:12px;
  4232. color:#000000;
  4233. }
  4234. #u366 {
  4235. position:absolute;
  4236. left:2px;
  4237. top:320px;
  4238. width:316px;
  4239. word-wrap:break-word;
  4240. }
  4241. #u367 {
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:0px;
  4246. height:0px;
  4247. }
  4248. #u368_div {
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:318px;
  4253. height:17px;
  4254. background:inherit;
  4255. background-color:rgba(255, 255, 255, 1);
  4256. border:none;
  4257. border-radius:0px;
  4258. -moz-box-shadow:none;
  4259. -webkit-box-shadow:none;
  4260. box-shadow:none;
  4261. }
  4262. #u368 {
  4263. position:absolute;
  4264. left:1236px;
  4265. top:1036px;
  4266. width:318px;
  4267. height:17px;
  4268. }
  4269. #u369 {
  4270. position:absolute;
  4271. left:2px;
  4272. top:0px;
  4273. width:314px;
  4274. visibility:hidden;
  4275. word-wrap:break-word;
  4276. }
  4277. #u370_img {
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:318px;
  4282. height:17px;
  4283. }
  4284. #u370 {
  4285. position:absolute;
  4286. left:1236px;
  4287. top:1036px;
  4288. width:318px;
  4289. height:17px;
  4290. }
  4291. #u371 {
  4292. position:absolute;
  4293. left:2px;
  4294. top:0px;
  4295. width:314px;
  4296. visibility:hidden;
  4297. word-wrap:break-word;
  4298. }
  4299. #u372 {
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:0px;
  4304. height:0px;
  4305. }
  4306. #u373_div {
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:318px;
  4311. height:40px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 1);
  4314. box-sizing:border-box;
  4315. border-width:1px;
  4316. border-style:solid;
  4317. border-color:rgba(228, 228, 228, 1);
  4318. border-left:0px;
  4319. border-top:0px;
  4320. border-right:0px;
  4321. border-radius:0px;
  4322. border-top-left-radius:0px;
  4323. border-top-right-radius:0px;
  4324. border-bottom-right-radius:0px;
  4325. border-bottom-left-radius:0px;
  4326. -moz-box-shadow:none;
  4327. -webkit-box-shadow:none;
  4328. box-shadow:none;
  4329. font-family:'PingFangSC-Regular', 'PingFang SC';
  4330. font-weight:400;
  4331. font-style:normal;
  4332. font-size:14px;
  4333. text-align:left;
  4334. }
  4335. #u373 {
  4336. position:absolute;
  4337. left:1236px;
  4338. top:1053px;
  4339. width:318px;
  4340. height:40px;
  4341. font-family:'PingFangSC-Regular', 'PingFang SC';
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. text-align:left;
  4346. }
  4347. #u374 {
  4348. position:absolute;
  4349. left:0px;
  4350. top:10px;
  4351. width:318px;
  4352. word-wrap:break-word;
  4353. }
  4354. #u375_img {
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:10px;
  4359. height:16px;
  4360. }
  4361. #u375 {
  4362. position:absolute;
  4363. left:1246px;
  4364. top:1065px;
  4365. width:10px;
  4366. height:16px;
  4367. }
  4368. #u376 {
  4369. position:absolute;
  4370. left:2px;
  4371. top:0px;
  4372. width:6px;
  4373. visibility:hidden;
  4374. word-wrap:break-word;
  4375. }
  4376. #u377 {
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:0px;
  4381. height:0px;
  4382. }
  4383. #u378_div {
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:50px;
  4388. height:26px;
  4389. background:inherit;
  4390. background-color:rgba(255, 255, 255, 1);
  4391. box-sizing:border-box;
  4392. border-width:1px;
  4393. border-style:solid;
  4394. border-color:rgba(204, 204, 204, 1);
  4395. border-radius:15px;
  4396. -moz-box-shadow:none;
  4397. -webkit-box-shadow:none;
  4398. box-shadow:none;
  4399. }
  4400. #u378 {
  4401. position:absolute;
  4402. left:1494px;
  4403. top:1060px;
  4404. width:50px;
  4405. height:26px;
  4406. }
  4407. #u379 {
  4408. position:absolute;
  4409. left:2px;
  4410. top:5px;
  4411. width:46px;
  4412. visibility:hidden;
  4413. word-wrap:break-word;
  4414. }
  4415. #u380 {
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:0px;
  4420. height:0px;
  4421. }
  4422. #u381_img {
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:3px;
  4427. height:3px;
  4428. }
  4429. #u381 {
  4430. position:absolute;
  4431. left:1501px;
  4432. top:1072px;
  4433. width:3px;
  4434. height:3px;
  4435. -webkit-transform:rotate(45deg);
  4436. -moz-transform:rotate(45deg);
  4437. -ms-transform:rotate(45deg);
  4438. transform:rotate(45deg);
  4439. font-family:'MicrosoftYaHei', '微软雅黑';
  4440. font-weight:400;
  4441. font-style:normal;
  4442. font-size:18px;
  4443. }
  4444. #u382 {
  4445. position:absolute;
  4446. left:0px;
  4447. top:-6px;
  4448. width:3px;
  4449. visibility:hidden;
  4450. word-wrap:break-word;
  4451. }
  4452. #u383_img {
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:5px;
  4457. height:5px;
  4458. }
  4459. #u383 {
  4460. position:absolute;
  4461. left:1505px;
  4462. top:1071px;
  4463. width:5px;
  4464. height:5px;
  4465. -webkit-transform:rotate(45deg);
  4466. -moz-transform:rotate(45deg);
  4467. -ms-transform:rotate(45deg);
  4468. transform:rotate(45deg);
  4469. font-family:'MicrosoftYaHei', '微软雅黑';
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:18px;
  4473. }
  4474. #u384 {
  4475. position:absolute;
  4476. left:0px;
  4477. top:-6px;
  4478. width:5px;
  4479. visibility:hidden;
  4480. word-wrap:break-word;
  4481. }
  4482. #u385_img {
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:3px;
  4487. height:3px;
  4488. }
  4489. #u385 {
  4490. position:absolute;
  4491. left:1511px;
  4492. top:1072px;
  4493. width:3px;
  4494. height:3px;
  4495. -webkit-transform:rotate(45deg);
  4496. -moz-transform:rotate(45deg);
  4497. -ms-transform:rotate(45deg);
  4498. transform:rotate(45deg);
  4499. font-family:'MicrosoftYaHei', '微软雅黑';
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:18px;
  4503. }
  4504. #u386 {
  4505. position:absolute;
  4506. left:0px;
  4507. top:-6px;
  4508. width:3px;
  4509. visibility:hidden;
  4510. word-wrap:break-word;
  4511. }
  4512. #u387_img {
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:2px;
  4517. height:19px;
  4518. }
  4519. #u387 {
  4520. position:absolute;
  4521. left:1518px;
  4522. top:1064px;
  4523. width:1px;
  4524. height:18px;
  4525. }
  4526. #u388 {
  4527. position:absolute;
  4528. left:2px;
  4529. top:1px;
  4530. width:1px;
  4531. visibility:hidden;
  4532. word-wrap:break-word;
  4533. }
  4534. #u389_img {
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:14px;
  4539. height:14px;
  4540. }
  4541. #u389 {
  4542. position:absolute;
  4543. left:1524px;
  4544. top:1066px;
  4545. width:14px;
  4546. height:14px;
  4547. }
  4548. #u390 {
  4549. position:absolute;
  4550. left:2px;
  4551. top:-1px;
  4552. width:10px;
  4553. visibility:hidden;
  4554. word-wrap:break-word;
  4555. }
  4556. #u391_img {
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:6px;
  4561. height:6px;
  4562. }
  4563. #u391 {
  4564. position:absolute;
  4565. left:1528px;
  4566. top:1070px;
  4567. width:6px;
  4568. height:6px;
  4569. }
  4570. #u392 {
  4571. position:absolute;
  4572. left:2px;
  4573. top:-5px;
  4574. width:2px;
  4575. visibility:hidden;
  4576. word-wrap:break-word;
  4577. }
  4578. #u393 {
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:0px;
  4583. height:0px;
  4584. }
  4585. #u394_img {
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:7px;
  4590. height:7px;
  4591. }
  4592. #u394 {
  4593. position:absolute;
  4594. left:1377px;
  4595. top:1556px;
  4596. width:7px;
  4597. height:7px;
  4598. color:#FFFFFF;
  4599. }
  4600. #u395 {
  4601. position:absolute;
  4602. left:0px;
  4603. top:-4px;
  4604. width:7px;
  4605. visibility:hidden;
  4606. word-wrap:break-word;
  4607. }
  4608. #u396_img {
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:7px;
  4613. height:7px;
  4614. }
  4615. #u396 {
  4616. position:absolute;
  4617. left:1387px;
  4618. top:1556px;
  4619. width:7px;
  4620. height:7px;
  4621. color:#FFFFFF;
  4622. }
  4623. #u397 {
  4624. position:absolute;
  4625. left:0px;
  4626. top:-4px;
  4627. width:7px;
  4628. visibility:hidden;
  4629. word-wrap:break-word;
  4630. }
  4631. #u398_img {
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:7px;
  4636. height:7px;
  4637. }
  4638. #u398 {
  4639. position:absolute;
  4640. left:1397px;
  4641. top:1556px;
  4642. width:7px;
  4643. height:7px;
  4644. color:#FFFFFF;
  4645. }
  4646. #u399 {
  4647. position:absolute;
  4648. left:0px;
  4649. top:-4px;
  4650. width:7px;
  4651. visibility:hidden;
  4652. word-wrap:break-word;
  4653. }
  4654. #u400_img {
  4655. position:absolute;
  4656. left:0px;
  4657. top:0px;
  4658. width:7px;
  4659. height:7px;
  4660. }
  4661. #u400 {
  4662. position:absolute;
  4663. left:1407px;
  4664. top:1556px;
  4665. width:7px;
  4666. height:7px;
  4667. color:#FFFFFF;
  4668. }
  4669. #u401 {
  4670. position:absolute;
  4671. left:0px;
  4672. top:-4px;
  4673. width:7px;
  4674. visibility:hidden;
  4675. word-wrap:break-word;
  4676. }
  4677. #u402_div {
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:320px;
  4682. height:48px;
  4683. background:inherit;
  4684. background-color:rgba(208, 225, 125, 1);
  4685. border:none;
  4686. border-radius:0px;
  4687. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4688. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4689. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4690. font-family:'PingFangSC-Regular', 'PingFang SC';
  4691. font-weight:400;
  4692. font-style:normal;
  4693. }
  4694. #u402 {
  4695. position:absolute;
  4696. left:1235px;
  4697. top:1702px;
  4698. width:320px;
  4699. height:48px;
  4700. font-family:'PingFangSC-Regular', 'PingFang SC';
  4701. font-weight:400;
  4702. font-style:normal;
  4703. }
  4704. #u403 {
  4705. position:absolute;
  4706. left:10px;
  4707. top:10px;
  4708. width:300px;
  4709. word-wrap:break-word;
  4710. }
  4711. #u404_div {
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:143px;
  4716. height:36px;
  4717. background:inherit;
  4718. background-color:rgba(255, 255, 255, 1);
  4719. box-sizing:border-box;
  4720. border-width:1px;
  4721. border-style:solid;
  4722. border-color:rgba(0, 0, 0, 1);
  4723. border-radius:0px;
  4724. -moz-box-shadow:none;
  4725. -webkit-box-shadow:none;
  4726. box-shadow:none;
  4727. font-family:'PingFangSC-Regular', 'PingFang SC';
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:12px;
  4731. }
  4732. #u404 {
  4733. position:absolute;
  4734. left:864px;
  4735. top:762px;
  4736. width:143px;
  4737. height:36px;
  4738. font-family:'PingFangSC-Regular', 'PingFang SC';
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:12px;
  4742. }
  4743. #u405 {
  4744. position:absolute;
  4745. left:2px;
  4746. top:10px;
  4747. width:139px;
  4748. word-wrap:break-word;
  4749. }
  4750. #u406_div {
  4751. position:absolute;
  4752. left:0px;
  4753. top:0px;
  4754. width:297px;
  4755. height:36px;
  4756. background:inherit;
  4757. background-color:rgba(255, 255, 255, 1);
  4758. box-sizing:border-box;
  4759. border-width:1px;
  4760. border-style:solid;
  4761. border-color:rgba(0, 0, 0, 1);
  4762. border-radius:0px;
  4763. -moz-box-shadow:none;
  4764. -webkit-box-shadow:none;
  4765. box-shadow:none;
  4766. font-family:'PingFangSC-Regular', 'PingFang SC';
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:12px;
  4770. }
  4771. #u406 {
  4772. position:absolute;
  4773. left:864px;
  4774. top:808px;
  4775. width:297px;
  4776. height:36px;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC';
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:12px;
  4781. }
  4782. #u407 {
  4783. position:absolute;
  4784. left:2px;
  4785. top:10px;
  4786. width:293px;
  4787. word-wrap:break-word;
  4788. }
  4789. #u408_div {
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:75px;
  4794. height:36px;
  4795. background:inherit;
  4796. background-color:rgba(255, 255, 255, 1);
  4797. box-sizing:border-box;
  4798. border-width:1px;
  4799. border-style:solid;
  4800. border-color:rgba(0, 0, 0, 1);
  4801. border-radius:0px;
  4802. -moz-box-shadow:none;
  4803. -webkit-box-shadow:none;
  4804. box-shadow:none;
  4805. font-family:'PingFangSC-Regular', 'PingFang SC';
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:12px;
  4809. }
  4810. #u408 {
  4811. position:absolute;
  4812. left:1085px;
  4813. top:762px;
  4814. width:75px;
  4815. height:36px;
  4816. font-family:'PingFangSC-Regular', 'PingFang SC';
  4817. font-weight:400;
  4818. font-style:normal;
  4819. font-size:12px;
  4820. }
  4821. #u409 {
  4822. position:absolute;
  4823. left:2px;
  4824. top:10px;
  4825. width:71px;
  4826. word-wrap:break-word;
  4827. }
  4828. #u410_div {
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:80px;
  4833. height:36px;
  4834. background:inherit;
  4835. background-color:rgba(255, 255, 255, 1);
  4836. box-sizing:border-box;
  4837. border-width:1px;
  4838. border-style:solid;
  4839. border-color:rgba(0, 0, 0, 1);
  4840. border-radius:0px;
  4841. -moz-box-shadow:none;
  4842. -webkit-box-shadow:none;
  4843. box-shadow:none;
  4844. font-family:'PingFangSC-Regular', 'PingFang SC';
  4845. font-weight:400;
  4846. font-style:normal;
  4847. font-size:12px;
  4848. }
  4849. #u410 {
  4850. position:absolute;
  4851. left:1006px;
  4852. top:762px;
  4853. width:80px;
  4854. height:36px;
  4855. font-family:'PingFangSC-Regular', 'PingFang SC';
  4856. font-weight:400;
  4857. font-style:normal;
  4858. font-size:12px;
  4859. }
  4860. #u411 {
  4861. position:absolute;
  4862. left:2px;
  4863. top:10px;
  4864. width:76px;
  4865. word-wrap:break-word;
  4866. }
  4867. #u412_div {
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:149px;
  4872. height:36px;
  4873. background:inherit;
  4874. background-color:rgba(255, 255, 255, 1);
  4875. box-sizing:border-box;
  4876. border-width:1px;
  4877. border-style:solid;
  4878. border-color:rgba(0, 0, 0, 1);
  4879. border-radius:0px;
  4880. -moz-box-shadow:none;
  4881. -webkit-box-shadow:none;
  4882. box-shadow:none;
  4883. font-family:'PingFangSC-Regular', 'PingFang SC';
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:12px;
  4887. }
  4888. #u412 {
  4889. position:absolute;
  4890. left:520px;
  4891. top:761px;
  4892. width:149px;
  4893. height:36px;
  4894. font-family:'PingFangSC-Regular', 'PingFang SC';
  4895. font-weight:400;
  4896. font-style:normal;
  4897. font-size:12px;
  4898. }
  4899. #u413 {
  4900. position:absolute;
  4901. left:2px;
  4902. top:10px;
  4903. width:145px;
  4904. word-wrap:break-word;
  4905. }
  4906. #u414_div {
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:300px;
  4911. height:36px;
  4912. background:inherit;
  4913. background-color:rgba(255, 255, 255, 1);
  4914. box-sizing:border-box;
  4915. border-width:1px;
  4916. border-style:solid;
  4917. border-color:rgba(0, 0, 0, 1);
  4918. border-radius:0px;
  4919. -moz-box-shadow:none;
  4920. -webkit-box-shadow:none;
  4921. box-shadow:none;
  4922. font-family:'PingFangSC-Regular', 'PingFang SC';
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:12px;
  4926. }
  4927. #u414 {
  4928. position:absolute;
  4929. left:177px;
  4930. top:808px;
  4931. width:300px;
  4932. height:36px;
  4933. font-family:'PingFangSC-Regular', 'PingFang SC';
  4934. font-weight:400;
  4935. font-style:normal;
  4936. font-size:12px;
  4937. }
  4938. #u415 {
  4939. position:absolute;
  4940. left:2px;
  4941. top:10px;
  4942. width:296px;
  4943. word-wrap:break-word;
  4944. }
  4945. #u416_div {
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:151px;
  4950. height:36px;
  4951. background:inherit;
  4952. background-color:rgba(255, 255, 255, 1);
  4953. box-sizing:border-box;
  4954. border-width:1px;
  4955. border-style:solid;
  4956. border-color:rgba(0, 0, 0, 1);
  4957. border-radius:0px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC';
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:12px;
  4965. }
  4966. #u416 {
  4967. position:absolute;
  4968. left:1430px;
  4969. top:808px;
  4970. width:151px;
  4971. height:36px;
  4972. font-family:'PingFangSC-Regular', 'PingFang SC';
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:12px;
  4976. }
  4977. #u417 {
  4978. position:absolute;
  4979. left:2px;
  4980. top:10px;
  4981. width:147px;
  4982. word-wrap:break-word;
  4983. }
  4984. #u418_div {
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:149px;
  4989. height:36px;
  4990. background:inherit;
  4991. background-color:rgba(255, 255, 255, 1);
  4992. box-sizing:border-box;
  4993. border-width:1px;
  4994. border-style:solid;
  4995. border-color:rgba(0, 0, 0, 1);
  4996. border-radius:0px;
  4997. -moz-box-shadow:none;
  4998. -webkit-box-shadow:none;
  4999. box-shadow:none;
  5000. font-family:'PingFangSC-Regular', 'PingFang SC';
  5001. font-weight:400;
  5002. font-style:normal;
  5003. font-size:12px;
  5004. }
  5005. #u418 {
  5006. position:absolute;
  5007. left:1281px;
  5008. top:808px;
  5009. width:149px;
  5010. height:36px;
  5011. font-family:'PingFangSC-Regular', 'PingFang SC';
  5012. font-weight:400;
  5013. font-style:normal;
  5014. font-size:12px;
  5015. }
  5016. #u419 {
  5017. position:absolute;
  5018. left:2px;
  5019. top:10px;
  5020. width:145px;
  5021. word-wrap:break-word;
  5022. }
  5023. #u420_div {
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:151px;
  5028. height:36px;
  5029. background:inherit;
  5030. background-color:rgba(255, 255, 255, 1);
  5031. box-sizing:border-box;
  5032. border-width:1px;
  5033. border-style:solid;
  5034. border-color:rgba(0, 0, 0, 1);
  5035. border-radius:0px;
  5036. -moz-box-shadow:none;
  5037. -webkit-box-shadow:none;
  5038. box-shadow:none;
  5039. font-family:'PingFangSC-Regular', 'PingFang SC';
  5040. font-weight:400;
  5041. font-style:normal;
  5042. font-size:12px;
  5043. }
  5044. #u420 {
  5045. position:absolute;
  5046. left:1394px;
  5047. top:1627px;
  5048. width:151px;
  5049. height:36px;
  5050. font-family:'PingFangSC-Regular', 'PingFang SC';
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:12px;
  5054. }
  5055. #u421 {
  5056. position:absolute;
  5057. left:2px;
  5058. top:10px;
  5059. width:147px;
  5060. word-wrap:break-word;
  5061. }
  5062. #u422_div {
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:149px;
  5067. height:36px;
  5068. background:inherit;
  5069. background-color:rgba(255, 255, 255, 1);
  5070. box-sizing:border-box;
  5071. border-width:1px;
  5072. border-style:solid;
  5073. border-color:rgba(0, 0, 0, 1);
  5074. border-radius:0px;
  5075. -moz-box-shadow:none;
  5076. -webkit-box-shadow:none;
  5077. box-shadow:none;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC';
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:12px;
  5082. }
  5083. #u422 {
  5084. position:absolute;
  5085. left:1245px;
  5086. top:1627px;
  5087. width:149px;
  5088. height:36px;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC';
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:12px;
  5093. }
  5094. #u423 {
  5095. position:absolute;
  5096. left:2px;
  5097. top:10px;
  5098. width:145px;
  5099. word-wrap:break-word;
  5100. }
  5101. #u424_div {
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:300px;
  5106. height:36px;
  5107. background:inherit;
  5108. background-color:rgba(255, 255, 255, 1);
  5109. box-sizing:border-box;
  5110. border-width:1px;
  5111. border-style:solid;
  5112. border-color:rgba(0, 0, 0, 1);
  5113. border-radius:0px;
  5114. -moz-box-shadow:none;
  5115. -webkit-box-shadow:none;
  5116. box-shadow:none;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC';
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:12px;
  5121. }
  5122. #u424 {
  5123. position:absolute;
  5124. left:902px;
  5125. top:1627px;
  5126. width:300px;
  5127. height:36px;
  5128. font-family:'PingFangSC-Regular', 'PingFang SC';
  5129. font-weight:400;
  5130. font-style:normal;
  5131. font-size:12px;
  5132. }
  5133. #u425 {
  5134. position:absolute;
  5135. left:2px;
  5136. top:10px;
  5137. width:296px;
  5138. word-wrap:break-word;
  5139. }
  5140. #u426_div {
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:151px;
  5145. height:36px;
  5146. background:inherit;
  5147. background-color:rgba(255, 255, 255, 1);
  5148. box-sizing:border-box;
  5149. border-width:1px;
  5150. border-style:solid;
  5151. border-color:rgba(0, 0, 0, 1);
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC';
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:12px;
  5160. }
  5161. #u426 {
  5162. position:absolute;
  5163. left:326px;
  5164. top:1630px;
  5165. width:151px;
  5166. height:36px;
  5167. font-family:'PingFangSC-Regular', 'PingFang SC';
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:12px;
  5171. }
  5172. #u427 {
  5173. position:absolute;
  5174. left:2px;
  5175. top:10px;
  5176. width:147px;
  5177. word-wrap:break-word;
  5178. }
  5179. #u428_div {
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:149px;
  5184. height:36px;
  5185. background:inherit;
  5186. background-color:rgba(255, 255, 255, 1);
  5187. box-sizing:border-box;
  5188. border-width:1px;
  5189. border-style:solid;
  5190. border-color:rgba(0, 0, 0, 1);
  5191. border-radius:0px;
  5192. -moz-box-shadow:none;
  5193. -webkit-box-shadow:none;
  5194. box-shadow:none;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC';
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:12px;
  5199. }
  5200. #u428 {
  5201. position:absolute;
  5202. left:177px;
  5203. top:1630px;
  5204. width:149px;
  5205. height:36px;
  5206. font-family:'PingFangSC-Regular', 'PingFang SC';
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:12px;
  5210. }
  5211. #u429 {
  5212. position:absolute;
  5213. left:2px;
  5214. top:10px;
  5215. width:145px;
  5216. word-wrap:break-word;
  5217. }
  5218. #u430_div {
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:300px;
  5223. height:36px;
  5224. background:inherit;
  5225. background-color:rgba(255, 255, 255, 1);
  5226. box-sizing:border-box;
  5227. border-width:1px;
  5228. border-style:solid;
  5229. border-color:rgba(0, 0, 0, 1);
  5230. border-radius:0px;
  5231. -moz-box-shadow:none;
  5232. -webkit-box-shadow:none;
  5233. box-shadow:none;
  5234. font-family:'PingFangSC-Regular', 'PingFang SC';
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:12px;
  5238. }
  5239. #u430 {
  5240. position:absolute;
  5241. left:520px;
  5242. top:807px;
  5243. width:300px;
  5244. height:36px;
  5245. font-family:'PingFangSC-Regular', 'PingFang SC';
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:12px;
  5249. }
  5250. #u431 {
  5251. position:absolute;
  5252. left:2px;
  5253. top:10px;
  5254. width:296px;
  5255. word-wrap:break-word;
  5256. }
  5257. #u432_div {
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:151px;
  5262. height:36px;
  5263. background:inherit;
  5264. background-color:rgba(255, 255, 255, 1);
  5265. box-sizing:border-box;
  5266. border-width:1px;
  5267. border-style:solid;
  5268. border-color:rgba(0, 0, 0, 1);
  5269. border-radius:0px;
  5270. -moz-box-shadow:none;
  5271. -webkit-box-shadow:none;
  5272. box-shadow:none;
  5273. font-family:'PingFangSC-Regular', 'PingFang SC';
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:12px;
  5277. }
  5278. #u432 {
  5279. position:absolute;
  5280. left:669px;
  5281. top:761px;
  5282. width:151px;
  5283. height:36px;
  5284. font-family:'PingFangSC-Regular', 'PingFang SC';
  5285. font-weight:400;
  5286. font-style:normal;
  5287. font-size:12px;
  5288. }
  5289. #u433 {
  5290. position:absolute;
  5291. left:2px;
  5292. top:10px;
  5293. width:147px;
  5294. word-wrap:break-word;
  5295. }
  5296. #u434_div {
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:300px;
  5301. height:36px;
  5302. background:inherit;
  5303. background-color:rgba(255, 255, 255, 1);
  5304. box-sizing:border-box;
  5305. border-width:1px;
  5306. border-style:solid;
  5307. border-color:rgba(0, 0, 0, 1);
  5308. border-radius:0px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. font-family:'PingFangSC-Regular', 'PingFang SC';
  5313. font-weight:400;
  5314. font-style:normal;
  5315. font-size:12px;
  5316. }
  5317. #u434 {
  5318. position:absolute;
  5319. left:520px;
  5320. top:1647px;
  5321. width:300px;
  5322. height:36px;
  5323. font-family:'PingFangSC-Regular', 'PingFang SC';
  5324. font-weight:400;
  5325. font-style:normal;
  5326. font-size:12px;
  5327. }
  5328. #u435 {
  5329. position:absolute;
  5330. left:2px;
  5331. top:10px;
  5332. width:296px;
  5333. word-wrap:break-word;
  5334. }
  5335. #u436_div {
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:320px;
  5340. height:48px;
  5341. background:inherit;
  5342. background-color:rgba(208, 225, 125, 1);
  5343. border:none;
  5344. border-radius:0px;
  5345. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5346. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5347. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5348. font-family:'PingFangSC-Regular', 'PingFang SC';
  5349. font-weight:400;
  5350. font-style:normal;
  5351. }
  5352. #u436 {
  5353. position:absolute;
  5354. left:168px;
  5355. top:863px;
  5356. width:320px;
  5357. height:48px;
  5358. font-family:'PingFangSC-Regular', 'PingFang SC';
  5359. font-weight:400;
  5360. font-style:normal;
  5361. }
  5362. #u437 {
  5363. position:absolute;
  5364. left:10px;
  5365. top:10px;
  5366. width:300px;
  5367. word-wrap:break-word;
  5368. }
  5369. #u438_div {
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:557px;
  5374. height:60px;
  5375. background:inherit;
  5376. background-color:rgba(208, 225, 125, 1);
  5377. border:none;
  5378. border-radius:0px;
  5379. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5380. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5381. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5382. font-family:'PingFangSC-Regular', 'PingFang SC';
  5383. font-weight:400;
  5384. font-style:normal;
  5385. }
  5386. #u438 {
  5387. position:absolute;
  5388. left:163px;
  5389. top:40px;
  5390. width:557px;
  5391. height:60px;
  5392. font-family:'PingFangSC-Regular', 'PingFang SC';
  5393. font-weight:400;
  5394. font-style:normal;
  5395. }
  5396. #u439 {
  5397. position:absolute;
  5398. left:10px;
  5399. top:10px;
  5400. width:537px;
  5401. word-wrap:break-word;
  5402. }
  5403. #u440_div {
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:55px;
  5408. height:25px;
  5409. background:inherit;
  5410. background-color:rgba(255, 255, 255, 0);
  5411. border:none;
  5412. border-radius:0px;
  5413. -moz-box-shadow:none;
  5414. -webkit-box-shadow:none;
  5415. box-shadow:none;
  5416. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  5417. font-weight:650;
  5418. font-style:normal;
  5419. }
  5420. #u440 {
  5421. position:absolute;
  5422. left:167px;
  5423. top:145px;
  5424. width:55px;
  5425. height:25px;
  5426. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  5427. font-weight:650;
  5428. font-style:normal;
  5429. }
  5430. #u441 {
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:55px;
  5435. white-space:nowrap;
  5436. }
  5437. #u442 {
  5438. position:absolute;
  5439. left:195px;
  5440. top:170px;
  5441. width:0px;
  5442. height:0px;
  5443. }
  5444. #u442_seg0 {
  5445. position:absolute;
  5446. left:-4px;
  5447. top:0px;
  5448. width:8px;
  5449. height:19px;
  5450. }
  5451. #u442_seg1 {
  5452. position:absolute;
  5453. left:-4px;
  5454. top:11px;
  5455. width:139px;
  5456. height:8px;
  5457. }
  5458. #u442_seg2 {
  5459. position:absolute;
  5460. left:127px;
  5461. top:11px;
  5462. width:8px;
  5463. height:16px;
  5464. }
  5465. #u442_seg3 {
  5466. position:absolute;
  5467. left:121px;
  5468. top:10px;
  5469. width:20px;
  5470. height:21px;
  5471. }
  5472. #u443 {
  5473. position:absolute;
  5474. left:14px;
  5475. top:7px;
  5476. width:100px;
  5477. visibility:hidden;
  5478. word-wrap:break-word;
  5479. }
  5480. #u444 {
  5481. position:absolute;
  5482. left:675px;
  5483. top:170px;
  5484. width:0px;
  5485. height:0px;
  5486. }
  5487. #u444_seg0 {
  5488. position:absolute;
  5489. left:-4px;
  5490. top:0px;
  5491. width:8px;
  5492. height:19px;
  5493. }
  5494. #u444_seg1 {
  5495. position:absolute;
  5496. left:-9px;
  5497. top:11px;
  5498. width:13px;
  5499. height:8px;
  5500. }
  5501. #u444_seg2 {
  5502. position:absolute;
  5503. left:-9px;
  5504. top:11px;
  5505. width:8px;
  5506. height:15px;
  5507. }
  5508. #u444_seg3 {
  5509. position:absolute;
  5510. left:-15px;
  5511. top:9px;
  5512. width:20px;
  5513. height:21px;
  5514. }
  5515. #u445 {
  5516. position:absolute;
  5517. left:-50px;
  5518. top:7px;
  5519. width:100px;
  5520. visibility:hidden;
  5521. word-wrap:break-word;
  5522. }
  5523. #u446 {
  5524. position:absolute;
  5525. left:675px;
  5526. top:170px;
  5527. width:0px;
  5528. height:0px;
  5529. }
  5530. #u446_seg0 {
  5531. position:absolute;
  5532. left:-4px;
  5533. top:0px;
  5534. width:8px;
  5535. height:19px;
  5536. }
  5537. #u446_seg1 {
  5538. position:absolute;
  5539. left:-4px;
  5540. top:11px;
  5541. width:346px;
  5542. height:8px;
  5543. }
  5544. #u446_seg2 {
  5545. position:absolute;
  5546. left:334px;
  5547. top:11px;
  5548. width:8px;
  5549. height:16px;
  5550. }
  5551. #u446_seg3 {
  5552. position:absolute;
  5553. left:328px;
  5554. top:10px;
  5555. width:20px;
  5556. height:21px;
  5557. }
  5558. #u447 {
  5559. position:absolute;
  5560. left:118px;
  5561. top:7px;
  5562. width:100px;
  5563. visibility:hidden;
  5564. word-wrap:break-word;
  5565. }
  5566. #u448_div {
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:328px;
  5571. height:25px;
  5572. background:inherit;
  5573. background-color:rgba(255, 255, 255, 0);
  5574. border:none;
  5575. border-radius:0px;
  5576. -moz-box-shadow:none;
  5577. -webkit-box-shadow:none;
  5578. box-shadow:none;
  5579. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  5580. font-weight:650;
  5581. font-style:normal;
  5582. }
  5583. #u448 {
  5584. position:absolute;
  5585. left:1272px;
  5586. top:145px;
  5587. width:328px;
  5588. height:25px;
  5589. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  5590. font-weight:650;
  5591. font-style:normal;
  5592. }
  5593. #u449 {
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:328px;
  5598. white-space:nowrap;
  5599. }
  5600. #u450 {
  5601. position:absolute;
  5602. left:1436px;
  5603. top:170px;
  5604. width:0px;
  5605. height:0px;
  5606. }
  5607. #u450_seg0 {
  5608. position:absolute;
  5609. left:-4px;
  5610. top:0px;
  5611. width:8px;
  5612. height:19px;
  5613. }
  5614. #u450_seg1 {
  5615. position:absolute;
  5616. left:-9px;
  5617. top:11px;
  5618. width:13px;
  5619. height:8px;
  5620. }
  5621. #u450_seg2 {
  5622. position:absolute;
  5623. left:-9px;
  5624. top:11px;
  5625. width:8px;
  5626. height:16px;
  5627. }
  5628. #u450_seg3 {
  5629. position:absolute;
  5630. left:-15px;
  5631. top:10px;
  5632. width:20px;
  5633. height:21px;
  5634. }
  5635. #u451 {
  5636. position:absolute;
  5637. left:-51px;
  5638. top:7px;
  5639. width:100px;
  5640. visibility:hidden;
  5641. word-wrap:break-word;
  5642. }
  5643. #u452 {
  5644. position:absolute;
  5645. left:1436px;
  5646. top:170px;
  5647. width:0px;
  5648. height:0px;
  5649. }
  5650. #u452_seg0 {
  5651. position:absolute;
  5652. left:-4px;
  5653. top:0px;
  5654. width:8px;
  5655. height:19px;
  5656. }
  5657. #u452_seg1 {
  5658. position:absolute;
  5659. left:-4px;
  5660. top:11px;
  5661. width:343px;
  5662. height:8px;
  5663. }
  5664. #u452_seg2 {
  5665. position:absolute;
  5666. left:331px;
  5667. top:11px;
  5668. width:8px;
  5669. height:19px;
  5670. }
  5671. #u452_seg3 {
  5672. position:absolute;
  5673. left:325px;
  5674. top:13px;
  5675. width:20px;
  5676. height:21px;
  5677. }
  5678. #u453 {
  5679. position:absolute;
  5680. left:118px;
  5681. top:7px;
  5682. width:100px;
  5683. visibility:hidden;
  5684. word-wrap:break-word;
  5685. }
  5686. #u454_div {
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:143px;
  5691. height:36px;
  5692. background:inherit;
  5693. background-color:rgba(255, 255, 255, 1);
  5694. box-sizing:border-box;
  5695. border-width:1px;
  5696. border-style:solid;
  5697. border-color:rgba(0, 0, 0, 1);
  5698. border-radius:0px;
  5699. -moz-box-shadow:none;
  5700. -webkit-box-shadow:none;
  5701. box-shadow:none;
  5702. font-family:'PingFangSC-Regular', 'PingFang SC';
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:12px;
  5706. }
  5707. #u454 {
  5708. position:absolute;
  5709. left:1623px;
  5710. top:808px;
  5711. width:143px;
  5712. height:36px;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC';
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:12px;
  5717. }
  5718. #u455 {
  5719. position:absolute;
  5720. left:2px;
  5721. top:10px;
  5722. width:139px;
  5723. word-wrap:break-word;
  5724. }
  5725. #u456_div {
  5726. position:absolute;
  5727. left:0px;
  5728. top:0px;
  5729. width:75px;
  5730. height:36px;
  5731. background:inherit;
  5732. background-color:rgba(255, 255, 255, 1);
  5733. box-sizing:border-box;
  5734. border-width:1px;
  5735. border-style:solid;
  5736. border-color:rgba(0, 0, 0, 1);
  5737. border-radius:0px;
  5738. -moz-box-shadow:none;
  5739. -webkit-box-shadow:none;
  5740. box-shadow:none;
  5741. font-family:'PingFangSC-Regular', 'PingFang SC';
  5742. font-weight:400;
  5743. font-style:normal;
  5744. font-size:12px;
  5745. }
  5746. #u456 {
  5747. position:absolute;
  5748. left:1844px;
  5749. top:808px;
  5750. width:75px;
  5751. height:36px;
  5752. font-family:'PingFangSC-Regular', 'PingFang SC';
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:12px;
  5756. }
  5757. #u457 {
  5758. position:absolute;
  5759. left:2px;
  5760. top:10px;
  5761. width:71px;
  5762. word-wrap:break-word;
  5763. }
  5764. #u458_div {
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:80px;
  5769. height:36px;
  5770. background:inherit;
  5771. background-color:rgba(255, 255, 255, 1);
  5772. box-sizing:border-box;
  5773. border-width:1px;
  5774. border-style:solid;
  5775. border-color:rgba(0, 0, 0, 1);
  5776. border-radius:0px;
  5777. -moz-box-shadow:none;
  5778. -webkit-box-shadow:none;
  5779. box-shadow:none;
  5780. font-family:'PingFangSC-Regular', 'PingFang SC';
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:12px;
  5784. }
  5785. #u458 {
  5786. position:absolute;
  5787. left:1765px;
  5788. top:808px;
  5789. width:80px;
  5790. height:36px;
  5791. font-family:'PingFangSC-Regular', 'PingFang SC';
  5792. font-weight:400;
  5793. font-style:normal;
  5794. font-size:12px;
  5795. }
  5796. #u459 {
  5797. position:absolute;
  5798. left:2px;
  5799. top:10px;
  5800. width:76px;
  5801. word-wrap:break-word;
  5802. }
  5803. #u460_div {
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:151px;
  5808. height:36px;
  5809. background:inherit;
  5810. background-color:rgba(255, 255, 255, 1);
  5811. box-sizing:border-box;
  5812. border-width:1px;
  5813. border-style:solid;
  5814. border-color:rgba(0, 0, 0, 1);
  5815. border-radius:0px;
  5816. -moz-box-shadow:none;
  5817. -webkit-box-shadow:none;
  5818. box-shadow:none;
  5819. font-family:'PingFangSC-Regular', 'PingFang SC';
  5820. font-weight:400;
  5821. font-style:normal;
  5822. font-size:12px;
  5823. }
  5824. #u460 {
  5825. position:absolute;
  5826. left:669px;
  5827. top:1601px;
  5828. width:151px;
  5829. height:36px;
  5830. font-family:'PingFangSC-Regular', 'PingFang SC';
  5831. font-weight:400;
  5832. font-style:normal;
  5833. font-size:12px;
  5834. }
  5835. #u461 {
  5836. position:absolute;
  5837. left:2px;
  5838. top:10px;
  5839. width:147px;
  5840. word-wrap:break-word;
  5841. }
  5842. #u462_div {
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:149px;
  5847. height:36px;
  5848. background:inherit;
  5849. background-color:rgba(255, 255, 255, 1);
  5850. box-sizing:border-box;
  5851. border-width:1px;
  5852. border-style:solid;
  5853. border-color:rgba(0, 0, 0, 1);
  5854. border-radius:0px;
  5855. -moz-box-shadow:none;
  5856. -webkit-box-shadow:none;
  5857. box-shadow:none;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC';
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:12px;
  5862. }
  5863. #u462 {
  5864. position:absolute;
  5865. left:520px;
  5866. top:1601px;
  5867. width:149px;
  5868. height:36px;
  5869. font-family:'PingFangSC-Regular', 'PingFang SC';
  5870. font-weight:400;
  5871. font-style:normal;
  5872. font-size:12px;
  5873. }
  5874. #u463 {
  5875. position:absolute;
  5876. left:2px;
  5877. top:10px;
  5878. width:145px;
  5879. word-wrap:break-word;
  5880. }
  5881. #u464_div {
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:150px;
  5886. height:25px;
  5887. background:inherit;
  5888. background-color:rgba(255, 255, 255, 0);
  5889. border:none;
  5890. border-radius:0px;
  5891. -moz-box-shadow:none;
  5892. -webkit-box-shadow:none;
  5893. box-shadow:none;
  5894. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  5895. font-weight:650;
  5896. font-style:normal;
  5897. }
  5898. #u464 {
  5899. position:absolute;
  5900. left:893px;
  5901. top:987px;
  5902. width:150px;
  5903. height:25px;
  5904. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  5905. font-weight:650;
  5906. font-style:normal;
  5907. }
  5908. #u465 {
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:150px;
  5913. white-space:nowrap;
  5914. }
  5915. #u466 {
  5916. position:absolute;
  5917. left:243px;
  5918. top:1012px;
  5919. width:0px;
  5920. height:0px;
  5921. }
  5922. #u466_seg0 {
  5923. position:absolute;
  5924. left:-4px;
  5925. top:0px;
  5926. width:8px;
  5927. height:17px;
  5928. }
  5929. #u466_seg1 {
  5930. position:absolute;
  5931. left:-4px;
  5932. top:9px;
  5933. width:92px;
  5934. height:8px;
  5935. }
  5936. #u466_seg2 {
  5937. position:absolute;
  5938. left:80px;
  5939. top:9px;
  5940. width:8px;
  5941. height:17px;
  5942. }
  5943. #u466_seg3 {
  5944. position:absolute;
  5945. left:74px;
  5946. top:9px;
  5947. width:20px;
  5948. height:21px;
  5949. }
  5950. #u467 {
  5951. position:absolute;
  5952. left:-8px;
  5953. top:5px;
  5954. width:100px;
  5955. visibility:hidden;
  5956. word-wrap:break-word;
  5957. }
  5958. #u468 {
  5959. position:absolute;
  5960. left:318px;
  5961. top:1000px;
  5962. width:0px;
  5963. height:0px;
  5964. }
  5965. #u468_seg0 {
  5966. position:absolute;
  5967. left:0px;
  5968. top:-4px;
  5969. width:356px;
  5970. height:8px;
  5971. }
  5972. #u468_seg1 {
  5973. position:absolute;
  5974. left:348px;
  5975. top:-4px;
  5976. width:8px;
  5977. height:42px;
  5978. }
  5979. #u468_seg2 {
  5980. position:absolute;
  5981. left:342px;
  5982. top:21px;
  5983. width:20px;
  5984. height:21px;
  5985. }
  5986. #u469 {
  5987. position:absolute;
  5988. left:145px;
  5989. top:-8px;
  5990. width:100px;
  5991. visibility:hidden;
  5992. word-wrap:break-word;
  5993. }
  5994. #u470 {
  5995. position:absolute;
  5996. left:968px;
  5997. top:1012px;
  5998. width:0px;
  5999. height:0px;
  6000. }
  6001. #u470_seg0 {
  6002. position:absolute;
  6003. left:-4px;
  6004. top:0px;
  6005. width:8px;
  6006. height:17px;
  6007. }
  6008. #u470_seg1 {
  6009. position:absolute;
  6010. left:-4px;
  6011. top:9px;
  6012. width:92px;
  6013. height:8px;
  6014. }
  6015. #u470_seg2 {
  6016. position:absolute;
  6017. left:80px;
  6018. top:9px;
  6019. width:8px;
  6020. height:15px;
  6021. }
  6022. #u470_seg3 {
  6023. position:absolute;
  6024. left:74px;
  6025. top:7px;
  6026. width:20px;
  6027. height:21px;
  6028. }
  6029. #u471 {
  6030. position:absolute;
  6031. left:-9px;
  6032. top:5px;
  6033. width:100px;
  6034. visibility:hidden;
  6035. word-wrap:break-word;
  6036. }
  6037. #u472 {
  6038. position:absolute;
  6039. left:1043px;
  6040. top:1000px;
  6041. width:0px;
  6042. height:0px;
  6043. }
  6044. #u472_seg0 {
  6045. position:absolute;
  6046. left:0px;
  6047. top:-4px;
  6048. width:356px;
  6049. height:8px;
  6050. }
  6051. #u472_seg1 {
  6052. position:absolute;
  6053. left:348px;
  6054. top:-4px;
  6055. width:8px;
  6056. height:40px;
  6057. }
  6058. #u472_seg2 {
  6059. position:absolute;
  6060. left:342px;
  6061. top:19px;
  6062. width:20px;
  6063. height:21px;
  6064. }
  6065. #u473 {
  6066. position:absolute;
  6067. left:144px;
  6068. top:-8px;
  6069. width:100px;
  6070. visibility:hidden;
  6071. word-wrap:break-word;
  6072. }