styles.css 146 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016
  1. body {
  2. margin:0px;
  3. background-color:rgba(204, 204, 204, 1);
  4. background-image:none;
  5. position:static;
  6. left:auto;
  7. width:1544px;
  8. margin-left:0;
  9. margin-right:0;
  10. text-align:left;
  11. }
  12. #base {
  13. position:absolute;
  14. z-index:0;
  15. }
  16. #u703 {
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:0px;
  21. height:0px;
  22. }
  23. #u704_div {
  24. position:absolute;
  25. left:0px;
  26. top:0px;
  27. width:320px;
  28. height:561px;
  29. background:inherit;
  30. background-color:rgba(242, 242, 242, 1);
  31. box-sizing:border-box;
  32. border-width:1px;
  33. border-style:solid;
  34. border-color:rgba(0, 0, 0, 1);
  35. border-radius:0px;
  36. -moz-box-shadow:none;
  37. -webkit-box-shadow:none;
  38. box-shadow:none;
  39. }
  40. #u704 {
  41. position:absolute;
  42. left:76px;
  43. top:1098px;
  44. width:320px;
  45. height:561px;
  46. }
  47. #u705 {
  48. position:absolute;
  49. left:2px;
  50. top:272px;
  51. width:316px;
  52. visibility:hidden;
  53. word-wrap:break-word;
  54. }
  55. #u706 {
  56. position:absolute;
  57. left:0px;
  58. top:0px;
  59. width:0px;
  60. height:0px;
  61. }
  62. #u707_div {
  63. position:absolute;
  64. left:0px;
  65. top:0px;
  66. width:318px;
  67. height:17px;
  68. background:inherit;
  69. background-color:rgba(255, 255, 255, 1);
  70. border:none;
  71. border-radius:0px;
  72. -moz-box-shadow:none;
  73. -webkit-box-shadow:none;
  74. box-shadow:none;
  75. }
  76. #u707 {
  77. position:absolute;
  78. left:77px;
  79. top:1099px;
  80. width:318px;
  81. height:17px;
  82. }
  83. #u708 {
  84. position:absolute;
  85. left:2px;
  86. top:0px;
  87. width:314px;
  88. visibility:hidden;
  89. word-wrap:break-word;
  90. }
  91. #u709_img {
  92. position:absolute;
  93. left:0px;
  94. top:0px;
  95. width:318px;
  96. height:17px;
  97. }
  98. #u709 {
  99. position:absolute;
  100. left:77px;
  101. top:1099px;
  102. width:318px;
  103. height:17px;
  104. }
  105. #u710 {
  106. position:absolute;
  107. left:2px;
  108. top:0px;
  109. width:314px;
  110. visibility:hidden;
  111. word-wrap:break-word;
  112. }
  113. #u711_div {
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:318px;
  118. height:103px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. border:none;
  122. border-radius:0px;
  123. -moz-box-shadow:none;
  124. -webkit-box-shadow:none;
  125. box-shadow:none;
  126. }
  127. #u711 {
  128. position:absolute;
  129. left:77px;
  130. top:1156px;
  131. width:318px;
  132. height:103px;
  133. }
  134. #u712 {
  135. position:absolute;
  136. left:2px;
  137. top:44px;
  138. width:314px;
  139. visibility:hidden;
  140. word-wrap:break-word;
  141. }
  142. #u713 {
  143. position:absolute;
  144. left:0px;
  145. top:0px;
  146. width:0px;
  147. height:0px;
  148. }
  149. #u714_div {
  150. position:absolute;
  151. left:0px;
  152. top:0px;
  153. width:320px;
  154. height:581px;
  155. background:inherit;
  156. background-color:rgba(242, 242, 242, 1);
  157. box-sizing:border-box;
  158. border-width:1px;
  159. border-style:solid;
  160. border-color:rgba(0, 0, 0, 1);
  161. border-radius:0px;
  162. -moz-box-shadow:none;
  163. -webkit-box-shadow:none;
  164. box-shadow:none;
  165. font-family:'PingFangSC-Regular', 'PingFang SC';
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:12px;
  169. color:#000000;
  170. }
  171. #u714 {
  172. position:absolute;
  173. left:86px;
  174. top:145px;
  175. width:320px;
  176. height:581px;
  177. font-family:'PingFangSC-Regular', 'PingFang SC';
  178. font-weight:400;
  179. font-style:normal;
  180. font-size:12px;
  181. color:#000000;
  182. }
  183. #u715 {
  184. position:absolute;
  185. left:2px;
  186. top:282px;
  187. width:316px;
  188. visibility:hidden;
  189. word-wrap:break-word;
  190. }
  191. #u716 {
  192. position:absolute;
  193. left:0px;
  194. top:0px;
  195. width:0px;
  196. height:0px;
  197. }
  198. #u717_div {
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:318px;
  203. height:17px;
  204. background:inherit;
  205. background-color:rgba(255, 255, 255, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. }
  212. #u717 {
  213. position:absolute;
  214. left:87px;
  215. top:146px;
  216. width:318px;
  217. height:17px;
  218. }
  219. #u718 {
  220. position:absolute;
  221. left:2px;
  222. top:0px;
  223. width:314px;
  224. visibility:hidden;
  225. word-wrap:break-word;
  226. }
  227. #u719_img {
  228. position:absolute;
  229. left:0px;
  230. top:0px;
  231. width:318px;
  232. height:17px;
  233. }
  234. #u719 {
  235. position:absolute;
  236. left:87px;
  237. top:146px;
  238. width:318px;
  239. height:17px;
  240. }
  241. #u720 {
  242. position:absolute;
  243. left:2px;
  244. top:0px;
  245. width:314px;
  246. visibility:hidden;
  247. word-wrap:break-word;
  248. }
  249. #u721 {
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:0px;
  254. height:0px;
  255. }
  256. #u722_div {
  257. position:absolute;
  258. left:0px;
  259. top:0px;
  260. width:318px;
  261. height:40px;
  262. background:inherit;
  263. background-color:rgba(255, 255, 255, 1);
  264. box-sizing:border-box;
  265. border-width:1px;
  266. border-style:solid;
  267. border-color:rgba(228, 228, 228, 1);
  268. border-left:0px;
  269. border-top:0px;
  270. border-right:0px;
  271. border-radius:0px;
  272. border-top-left-radius:0px;
  273. border-top-right-radius:0px;
  274. border-bottom-right-radius:0px;
  275. border-bottom-left-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC';
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:14px;
  283. text-align:left;
  284. }
  285. #u722 {
  286. position:absolute;
  287. left:87px;
  288. top:163px;
  289. width:318px;
  290. height:40px;
  291. font-family:'PingFangSC-Regular', 'PingFang SC';
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. text-align:left;
  296. }
  297. #u723 {
  298. position:absolute;
  299. left:0px;
  300. top:10px;
  301. width:318px;
  302. word-wrap:break-word;
  303. }
  304. #u724_img {
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:10px;
  309. height:16px;
  310. }
  311. #u724 {
  312. position:absolute;
  313. left:97px;
  314. top:175px;
  315. width:10px;
  316. height:16px;
  317. }
  318. #u725 {
  319. position:absolute;
  320. left:2px;
  321. top:0px;
  322. width:6px;
  323. visibility:hidden;
  324. word-wrap:break-word;
  325. }
  326. #u726_div {
  327. position:absolute;
  328. left:0px;
  329. top:0px;
  330. width:94px;
  331. height:25px;
  332. background:inherit;
  333. background-color:rgba(255, 255, 255, 0);
  334. border:none;
  335. border-radius:0px;
  336. -moz-box-shadow:none;
  337. -webkit-box-shadow:none;
  338. box-shadow:none;
  339. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  340. font-weight:650;
  341. font-style:normal;
  342. }
  343. #u726 {
  344. position:absolute;
  345. left:88px;
  346. top:98px;
  347. width:94px;
  348. height:25px;
  349. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  350. font-weight:650;
  351. font-style:normal;
  352. }
  353. #u727 {
  354. position:absolute;
  355. left:0px;
  356. top:0px;
  357. width:94px;
  358. white-space:nowrap;
  359. }
  360. #u728_div {
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:169px;
  365. height:33px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border:none;
  369. border-radius:0px;
  370. -moz-box-shadow:none;
  371. -webkit-box-shadow:none;
  372. box-shadow:none;
  373. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  374. font-weight:700;
  375. font-style:normal;
  376. }
  377. #u728 {
  378. position:absolute;
  379. left:76px;
  380. top:1029px;
  381. width:169px;
  382. height:33px;
  383. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  384. font-weight:700;
  385. font-style:normal;
  386. }
  387. #u729 {
  388. position:absolute;
  389. left:0px;
  390. top:0px;
  391. width:169px;
  392. white-space:nowrap;
  393. }
  394. #u730 {
  395. position:absolute;
  396. left:0px;
  397. top:0px;
  398. width:0px;
  399. height:0px;
  400. }
  401. #u731_div {
  402. position:absolute;
  403. left:0px;
  404. top:0px;
  405. width:318px;
  406. height:40px;
  407. background:inherit;
  408. background-color:rgba(255, 255, 255, 1);
  409. box-sizing:border-box;
  410. border-width:1px;
  411. border-style:solid;
  412. border-color:rgba(228, 228, 228, 1);
  413. border-left:0px;
  414. border-top:0px;
  415. border-right:0px;
  416. border-radius:0px;
  417. border-top-left-radius:0px;
  418. border-top-right-radius:0px;
  419. border-bottom-right-radius:0px;
  420. border-bottom-left-radius:0px;
  421. -moz-box-shadow:none;
  422. -webkit-box-shadow:none;
  423. box-shadow:none;
  424. font-family:'PingFangSC-Regular', 'PingFang SC';
  425. font-weight:400;
  426. font-style:normal;
  427. font-size:14px;
  428. text-align:left;
  429. }
  430. #u731 {
  431. position:absolute;
  432. left:77px;
  433. top:1116px;
  434. width:318px;
  435. height:40px;
  436. font-family:'PingFangSC-Regular', 'PingFang SC';
  437. font-weight:400;
  438. font-style:normal;
  439. font-size:14px;
  440. text-align:left;
  441. }
  442. #u732 {
  443. position:absolute;
  444. left:0px;
  445. top:10px;
  446. width:318px;
  447. word-wrap:break-word;
  448. }
  449. #u733_img {
  450. position:absolute;
  451. left:0px;
  452. top:0px;
  453. width:10px;
  454. height:16px;
  455. }
  456. #u733 {
  457. position:absolute;
  458. left:87px;
  459. top:1128px;
  460. width:10px;
  461. height:16px;
  462. }
  463. #u734 {
  464. position:absolute;
  465. left:2px;
  466. top:0px;
  467. width:6px;
  468. visibility:hidden;
  469. word-wrap:break-word;
  470. }
  471. #u735 {
  472. position:absolute;
  473. left:0px;
  474. top:0px;
  475. width:0px;
  476. height:0px;
  477. }
  478. #u736_div {
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:50px;
  483. height:26px;
  484. background:inherit;
  485. background-color:rgba(255, 255, 255, 1);
  486. box-sizing:border-box;
  487. border-width:1px;
  488. border-style:solid;
  489. border-color:rgba(204, 204, 204, 1);
  490. border-radius:15px;
  491. -moz-box-shadow:none;
  492. -webkit-box-shadow:none;
  493. box-shadow:none;
  494. }
  495. #u736 {
  496. position:absolute;
  497. left:335px;
  498. top:1123px;
  499. width:50px;
  500. height:26px;
  501. }
  502. #u737 {
  503. position:absolute;
  504. left:2px;
  505. top:5px;
  506. width:46px;
  507. visibility:hidden;
  508. word-wrap:break-word;
  509. }
  510. #u738 {
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u739_img {
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:3px;
  522. height:3px;
  523. }
  524. #u739 {
  525. position:absolute;
  526. left:342px;
  527. top:1135px;
  528. width:3px;
  529. height:3px;
  530. -webkit-transform:rotate(45deg);
  531. -moz-transform:rotate(45deg);
  532. -ms-transform:rotate(45deg);
  533. transform:rotate(45deg);
  534. font-family:'MicrosoftYaHei', '微软雅黑';
  535. font-weight:400;
  536. font-style:normal;
  537. font-size:18px;
  538. }
  539. #u740 {
  540. position:absolute;
  541. left:0px;
  542. top:-6px;
  543. width:3px;
  544. visibility:hidden;
  545. word-wrap:break-word;
  546. }
  547. #u741_img {
  548. position:absolute;
  549. left:0px;
  550. top:0px;
  551. width:5px;
  552. height:5px;
  553. }
  554. #u741 {
  555. position:absolute;
  556. left:346px;
  557. top:1134px;
  558. width:5px;
  559. height:5px;
  560. -webkit-transform:rotate(45deg);
  561. -moz-transform:rotate(45deg);
  562. -ms-transform:rotate(45deg);
  563. transform:rotate(45deg);
  564. font-family:'MicrosoftYaHei', '微软雅黑';
  565. font-weight:400;
  566. font-style:normal;
  567. font-size:18px;
  568. }
  569. #u742 {
  570. position:absolute;
  571. left:0px;
  572. top:-6px;
  573. width:5px;
  574. visibility:hidden;
  575. word-wrap:break-word;
  576. }
  577. #u743_img {
  578. position:absolute;
  579. left:0px;
  580. top:0px;
  581. width:3px;
  582. height:3px;
  583. }
  584. #u743 {
  585. position:absolute;
  586. left:352px;
  587. top:1135px;
  588. width:3px;
  589. height:3px;
  590. -webkit-transform:rotate(45deg);
  591. -moz-transform:rotate(45deg);
  592. -ms-transform:rotate(45deg);
  593. transform:rotate(45deg);
  594. font-family:'MicrosoftYaHei', '微软雅黑';
  595. font-weight:400;
  596. font-style:normal;
  597. font-size:18px;
  598. }
  599. #u744 {
  600. position:absolute;
  601. left:0px;
  602. top:-6px;
  603. width:3px;
  604. visibility:hidden;
  605. word-wrap:break-word;
  606. }
  607. #u745_img {
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:2px;
  612. height:19px;
  613. }
  614. #u745 {
  615. position:absolute;
  616. left:359px;
  617. top:1127px;
  618. width:1px;
  619. height:18px;
  620. }
  621. #u746 {
  622. position:absolute;
  623. left:2px;
  624. top:1px;
  625. width:1px;
  626. visibility:hidden;
  627. word-wrap:break-word;
  628. }
  629. #u747_img {
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:14px;
  634. height:14px;
  635. }
  636. #u747 {
  637. position:absolute;
  638. left:365px;
  639. top:1129px;
  640. width:14px;
  641. height:14px;
  642. }
  643. #u748 {
  644. position:absolute;
  645. left:2px;
  646. top:-1px;
  647. width:10px;
  648. visibility:hidden;
  649. word-wrap:break-word;
  650. }
  651. #u749_img {
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:6px;
  656. height:6px;
  657. }
  658. #u749 {
  659. position:absolute;
  660. left:369px;
  661. top:1133px;
  662. width:6px;
  663. height:6px;
  664. }
  665. #u750 {
  666. position:absolute;
  667. left:2px;
  668. top:-5px;
  669. width:2px;
  670. visibility:hidden;
  671. word-wrap:break-word;
  672. }
  673. #u751 {
  674. position:absolute;
  675. left:0px;
  676. top:0px;
  677. width:0px;
  678. height:0px;
  679. }
  680. #u752_div {
  681. position:absolute;
  682. left:0px;
  683. top:0px;
  684. width:318px;
  685. height:49px;
  686. background:inherit;
  687. background-color:rgba(247, 247, 250, 1);
  688. box-sizing:border-box;
  689. border-width:1px;
  690. border-style:solid;
  691. border-color:rgba(228, 228, 228, 1);
  692. border-left:0px;
  693. border-right:0px;
  694. border-bottom:0px;
  695. border-radius:0px;
  696. border-top-left-radius:0px;
  697. border-top-right-radius:0px;
  698. border-bottom-right-radius:0px;
  699. border-bottom-left-radius:0px;
  700. -moz-box-shadow:none;
  701. -webkit-box-shadow:none;
  702. box-shadow:none;
  703. font-size:16px;
  704. color:#333333;
  705. text-align:left;
  706. }
  707. #u752 {
  708. position:absolute;
  709. left:77px;
  710. top:1609px;
  711. width:318px;
  712. height:49px;
  713. font-size:16px;
  714. color:#333333;
  715. text-align:left;
  716. }
  717. #u752_div.selected {
  718. position:absolute;
  719. left:0px;
  720. top:0px;
  721. width:318px;
  722. height:49px;
  723. background:inherit;
  724. background-color:rgba(247, 247, 250, 1);
  725. box-sizing:border-box;
  726. border-width:1px;
  727. border-style:solid;
  728. border-color:rgba(45, 183, 245, 1);
  729. border-left:0px;
  730. border-right:0px;
  731. border-bottom:0px;
  732. border-radius:0px;
  733. border-top-left-radius:0px;
  734. border-top-right-radius:0px;
  735. border-bottom-right-radius:0px;
  736. border-bottom-left-radius:0px;
  737. -moz-box-shadow:none;
  738. -webkit-box-shadow:none;
  739. box-shadow:none;
  740. font-size:16px;
  741. color:#333333;
  742. text-align:left;
  743. }
  744. #u752.selected {
  745. }
  746. #u753 {
  747. position:absolute;
  748. left:55px;
  749. top:16px;
  750. width:263px;
  751. visibility:hidden;
  752. word-wrap:break-word;
  753. }
  754. #u754 {
  755. position:absolute;
  756. left:0px;
  757. top:0px;
  758. width:0px;
  759. height:0px;
  760. }
  761. #u755_div {
  762. position:absolute;
  763. left:0px;
  764. top:0px;
  765. width:70px;
  766. height:10px;
  767. background:inherit;
  768. background-color:rgba(255, 255, 255, 0);
  769. border:none;
  770. border-radius:0px;
  771. -moz-box-shadow:none;
  772. -webkit-box-shadow:none;
  773. box-shadow:none;
  774. font-family:'PingFangSC-Regular', 'PingFang SC';
  775. font-weight:400;
  776. font-style:normal;
  777. font-size:10px;
  778. color:#666666;
  779. line-height:10px;
  780. }
  781. #u755 {
  782. position:absolute;
  783. left:96px;
  784. top:1644px;
  785. width:70px;
  786. height:10px;
  787. font-family:'PingFangSC-Regular', 'PingFang SC';
  788. font-weight:400;
  789. font-style:normal;
  790. font-size:10px;
  791. color:#666666;
  792. line-height:10px;
  793. }
  794. #u756 {
  795. position:absolute;
  796. left:0px;
  797. top:0px;
  798. width:70px;
  799. word-wrap:break-word;
  800. }
  801. #u757_img {
  802. position:absolute;
  803. left:0px;
  804. top:0px;
  805. width:27px;
  806. height:27px;
  807. }
  808. #u757 {
  809. position:absolute;
  810. left:117px;
  811. top:1613px;
  812. width:27px;
  813. height:27px;
  814. }
  815. #u758 {
  816. position:absolute;
  817. left:2px;
  818. top:6px;
  819. width:23px;
  820. visibility:hidden;
  821. word-wrap:break-word;
  822. }
  823. #u759 {
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:0px;
  828. height:0px;
  829. }
  830. #u760_div {
  831. position:absolute;
  832. left:0px;
  833. top:0px;
  834. width:70px;
  835. height:10px;
  836. background:inherit;
  837. background-color:rgba(255, 255, 255, 0);
  838. border:none;
  839. border-radius:0px;
  840. -moz-box-shadow:none;
  841. -webkit-box-shadow:none;
  842. box-shadow:none;
  843. font-family:'PingFangSC-Regular', 'PingFang SC';
  844. font-weight:400;
  845. font-style:normal;
  846. font-size:10px;
  847. color:#7F8389;
  848. line-height:10px;
  849. }
  850. #u760 {
  851. position:absolute;
  852. left:201px;
  853. top:1644px;
  854. width:70px;
  855. height:10px;
  856. font-family:'PingFangSC-Regular', 'PingFang SC';
  857. font-weight:400;
  858. font-style:normal;
  859. font-size:10px;
  860. color:#7F8389;
  861. line-height:10px;
  862. }
  863. #u761 {
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:70px;
  868. word-wrap:break-word;
  869. }
  870. #u762_img {
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:27px;
  875. height:27px;
  876. }
  877. #u762 {
  878. position:absolute;
  879. left:222px;
  880. top:1613px;
  881. width:27px;
  882. height:27px;
  883. }
  884. #u763 {
  885. position:absolute;
  886. left:2px;
  887. top:6px;
  888. width:23px;
  889. visibility:hidden;
  890. word-wrap:break-word;
  891. }
  892. #u764 {
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:0px;
  897. height:0px;
  898. }
  899. #u765_div {
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:70px;
  904. height:10px;
  905. background:inherit;
  906. background-color:rgba(255, 255, 255, 0);
  907. border:none;
  908. border-radius:0px;
  909. -moz-box-shadow:none;
  910. -webkit-box-shadow:none;
  911. box-shadow:none;
  912. font-family:'PingFangSC-Regular', 'PingFang SC';
  913. font-weight:400;
  914. font-style:normal;
  915. font-size:10px;
  916. color:#009900;
  917. line-height:10px;
  918. }
  919. #u765 {
  920. position:absolute;
  921. left:306px;
  922. top:1644px;
  923. width:70px;
  924. height:10px;
  925. font-family:'PingFangSC-Regular', 'PingFang SC';
  926. font-weight:400;
  927. font-style:normal;
  928. font-size:10px;
  929. color:#009900;
  930. line-height:10px;
  931. }
  932. #u766 {
  933. position:absolute;
  934. left:0px;
  935. top:0px;
  936. width:70px;
  937. word-wrap:break-word;
  938. }
  939. #u767_img {
  940. position:absolute;
  941. left:0px;
  942. top:0px;
  943. width:27px;
  944. height:27px;
  945. }
  946. #u767 {
  947. position:absolute;
  948. left:327px;
  949. top:1613px;
  950. width:27px;
  951. height:27px;
  952. }
  953. #u768 {
  954. position:absolute;
  955. left:2px;
  956. top:6px;
  957. width:23px;
  958. visibility:hidden;
  959. word-wrap:break-word;
  960. }
  961. #u769_div {
  962. position:absolute;
  963. left:0px;
  964. top:0px;
  965. width:84px;
  966. height:22px;
  967. background:inherit;
  968. background-color:rgba(255, 255, 255, 0);
  969. border:none;
  970. border-radius:0px;
  971. -moz-box-shadow:none;
  972. -webkit-box-shadow:none;
  973. box-shadow:none;
  974. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  975. font-weight:200;
  976. font-style:normal;
  977. font-size:16px;
  978. color:#000000;
  979. text-align:center;
  980. }
  981. #u769 {
  982. position:absolute;
  983. left:163px;
  984. top:1178px;
  985. width:84px;
  986. height:22px;
  987. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  988. font-weight:200;
  989. font-style:normal;
  990. font-size:16px;
  991. color:#000000;
  992. text-align:center;
  993. }
  994. #u770 {
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:84px;
  999. word-wrap:break-word;
  1000. }
  1001. #u771 {
  1002. position:absolute;
  1003. left:0px;
  1004. top:0px;
  1005. width:0px;
  1006. height:0px;
  1007. }
  1008. #u772_div {
  1009. position:absolute;
  1010. left:0px;
  1011. top:0px;
  1012. width:126px;
  1013. height:18px;
  1014. background:inherit;
  1015. background-color:rgba(255, 255, 255, 0);
  1016. border:none;
  1017. border-radius:0px;
  1018. -moz-box-shadow:none;
  1019. -webkit-box-shadow:none;
  1020. box-shadow:none;
  1021. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1022. font-weight:200;
  1023. font-style:normal;
  1024. font-size:13px;
  1025. color:#000000;
  1026. text-align:center;
  1027. }
  1028. #u772 {
  1029. position:absolute;
  1030. left:163px;
  1031. top:1216px;
  1032. width:126px;
  1033. height:18px;
  1034. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1035. font-weight:200;
  1036. font-style:normal;
  1037. font-size:13px;
  1038. color:#000000;
  1039. text-align:center;
  1040. }
  1041. #u773 {
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:126px;
  1046. word-wrap:break-word;
  1047. }
  1048. #u774 {
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:0px;
  1053. height:0px;
  1054. }
  1055. #u775_div {
  1056. position:absolute;
  1057. left:0px;
  1058. top:0px;
  1059. width:318px;
  1060. height:50px;
  1061. background:inherit;
  1062. background-color:rgba(255, 255, 255, 1);
  1063. box-sizing:border-box;
  1064. border-width:1px;
  1065. border-style:solid;
  1066. border-color:rgba(229, 229, 229, 1);
  1067. border-left:0px;
  1068. border-right:0px;
  1069. border-radius:0px;
  1070. border-top-left-radius:0px;
  1071. border-top-right-radius:0px;
  1072. border-bottom-right-radius:0px;
  1073. border-bottom-left-radius:0px;
  1074. -moz-box-shadow:none;
  1075. -webkit-box-shadow:none;
  1076. box-shadow:none;
  1077. font-size:16px;
  1078. color:#333333;
  1079. text-align:left;
  1080. }
  1081. #u775 {
  1082. position:absolute;
  1083. left:77px;
  1084. top:1358px;
  1085. width:318px;
  1086. height:50px;
  1087. font-size:16px;
  1088. color:#333333;
  1089. text-align:left;
  1090. }
  1091. #u775_div.selected {
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:318px;
  1096. height:50px;
  1097. background:inherit;
  1098. background-color:rgba(255, 255, 255, 1);
  1099. box-sizing:border-box;
  1100. border-width:1px;
  1101. border-style:solid;
  1102. border-color:rgba(45, 183, 245, 1);
  1103. border-left:0px;
  1104. border-right:0px;
  1105. border-radius:0px;
  1106. border-top-left-radius:0px;
  1107. border-top-right-radius:0px;
  1108. border-bottom-right-radius:0px;
  1109. border-bottom-left-radius:0px;
  1110. -moz-box-shadow:none;
  1111. -webkit-box-shadow:none;
  1112. box-shadow:none;
  1113. font-size:16px;
  1114. color:#333333;
  1115. text-align:left;
  1116. }
  1117. #u775.selected {
  1118. }
  1119. #u776 {
  1120. position:absolute;
  1121. left:10px;
  1122. top:17px;
  1123. width:308px;
  1124. visibility:hidden;
  1125. word-wrap:break-word;
  1126. }
  1127. #u777_div {
  1128. position:absolute;
  1129. left:0px;
  1130. top:0px;
  1131. width:300px;
  1132. height:50px;
  1133. background:inherit;
  1134. background-color:rgba(255, 255, 255, 0);
  1135. box-sizing:border-box;
  1136. border-width:1px;
  1137. border-style:solid;
  1138. border-color:rgba(229, 229, 229, 1);
  1139. border-left:0px;
  1140. border-top:0px;
  1141. border-right:0px;
  1142. border-radius:0px;
  1143. border-top-left-radius:0px;
  1144. border-top-right-radius:0px;
  1145. border-bottom-right-radius:0px;
  1146. border-bottom-left-radius:0px;
  1147. -moz-box-shadow:none;
  1148. -webkit-box-shadow:none;
  1149. box-shadow:none;
  1150. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1151. font-weight:200;
  1152. font-style:normal;
  1153. font-size:14px;
  1154. color:#000000;
  1155. text-align:left;
  1156. }
  1157. #u777 {
  1158. position:absolute;
  1159. left:86px;
  1160. top:1358px;
  1161. width:300px;
  1162. height:50px;
  1163. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1164. font-weight:200;
  1165. font-style:normal;
  1166. font-size:14px;
  1167. color:#000000;
  1168. text-align:left;
  1169. }
  1170. #u777_div.selected {
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:300px;
  1175. height:50px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. box-sizing:border-box;
  1179. border-width:1px;
  1180. border-style:solid;
  1181. border-color:rgba(45, 183, 245, 1);
  1182. border-left:0px;
  1183. border-top:0px;
  1184. border-right:0px;
  1185. border-radius:0px;
  1186. border-top-left-radius:0px;
  1187. border-top-right-radius:0px;
  1188. border-bottom-right-radius:0px;
  1189. border-bottom-left-radius:0px;
  1190. -moz-box-shadow:none;
  1191. -webkit-box-shadow:none;
  1192. box-shadow:none;
  1193. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1194. font-weight:200;
  1195. font-style:normal;
  1196. font-size:14px;
  1197. color:#000000;
  1198. text-align:left;
  1199. }
  1200. #u777.selected {
  1201. }
  1202. #u778 {
  1203. position:absolute;
  1204. left:0px;
  1205. top:15px;
  1206. width:300px;
  1207. word-wrap:break-word;
  1208. }
  1209. #u779_img {
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:6px;
  1214. height:12px;
  1215. }
  1216. #u779 {
  1217. position:absolute;
  1218. left:380px;
  1219. top:1378px;
  1220. width:6px;
  1221. height:12px;
  1222. -webkit-transform:rotate(180deg);
  1223. -moz-transform:rotate(180deg);
  1224. -ms-transform:rotate(180deg);
  1225. transform:rotate(180deg);
  1226. }
  1227. #u780 {
  1228. position:absolute;
  1229. left:2px;
  1230. top:-2px;
  1231. width:2px;
  1232. visibility:hidden;
  1233. word-wrap:break-word;
  1234. }
  1235. #u781 {
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:0px;
  1240. height:0px;
  1241. }
  1242. #u782_div {
  1243. position:absolute;
  1244. left:0px;
  1245. top:0px;
  1246. width:318px;
  1247. height:50px;
  1248. background:inherit;
  1249. background-color:rgba(255, 255, 255, 1);
  1250. box-sizing:border-box;
  1251. border-width:1px;
  1252. border-style:solid;
  1253. border-color:rgba(229, 229, 229, 1);
  1254. border-left:0px;
  1255. border-right:0px;
  1256. border-radius:0px;
  1257. border-top-left-radius:0px;
  1258. border-top-right-radius:0px;
  1259. border-bottom-right-radius:0px;
  1260. border-bottom-left-radius:0px;
  1261. -moz-box-shadow:none;
  1262. -webkit-box-shadow:none;
  1263. box-shadow:none;
  1264. font-size:16px;
  1265. color:#333333;
  1266. text-align:left;
  1267. }
  1268. #u782 {
  1269. position:absolute;
  1270. left:77px;
  1271. top:1412px;
  1272. width:318px;
  1273. height:50px;
  1274. font-size:16px;
  1275. color:#333333;
  1276. text-align:left;
  1277. }
  1278. #u782_div.selected {
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:318px;
  1283. height:50px;
  1284. background:inherit;
  1285. background-color:rgba(255, 255, 255, 1);
  1286. box-sizing:border-box;
  1287. border-width:1px;
  1288. border-style:solid;
  1289. border-color:rgba(45, 183, 245, 1);
  1290. border-left:0px;
  1291. border-right:0px;
  1292. border-radius:0px;
  1293. border-top-left-radius:0px;
  1294. border-top-right-radius:0px;
  1295. border-bottom-right-radius:0px;
  1296. border-bottom-left-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. font-size:16px;
  1301. color:#333333;
  1302. text-align:left;
  1303. }
  1304. #u782.selected {
  1305. }
  1306. #u783 {
  1307. position:absolute;
  1308. left:10px;
  1309. top:17px;
  1310. width:308px;
  1311. visibility:hidden;
  1312. word-wrap:break-word;
  1313. }
  1314. #u784_div {
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:300px;
  1319. height:50px;
  1320. background:inherit;
  1321. background-color:rgba(255, 255, 255, 0);
  1322. box-sizing:border-box;
  1323. border-width:1px;
  1324. border-style:solid;
  1325. border-color:rgba(229, 229, 229, 1);
  1326. border-left:0px;
  1327. border-top:0px;
  1328. border-right:0px;
  1329. border-radius:0px;
  1330. border-top-left-radius:0px;
  1331. border-top-right-radius:0px;
  1332. border-bottom-right-radius:0px;
  1333. border-bottom-left-radius:0px;
  1334. -moz-box-shadow:none;
  1335. -webkit-box-shadow:none;
  1336. box-shadow:none;
  1337. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1338. font-weight:200;
  1339. font-style:normal;
  1340. font-size:14px;
  1341. color:#000000;
  1342. text-align:left;
  1343. }
  1344. #u784 {
  1345. position:absolute;
  1346. left:86px;
  1347. top:1412px;
  1348. width:300px;
  1349. height:50px;
  1350. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1351. font-weight:200;
  1352. font-style:normal;
  1353. font-size:14px;
  1354. color:#000000;
  1355. text-align:left;
  1356. }
  1357. #u784_div.selected {
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:300px;
  1362. height:50px;
  1363. background:inherit;
  1364. background-color:rgba(255, 255, 255, 0);
  1365. box-sizing:border-box;
  1366. border-width:1px;
  1367. border-style:solid;
  1368. border-color:rgba(45, 183, 245, 1);
  1369. border-left:0px;
  1370. border-top:0px;
  1371. border-right:0px;
  1372. border-radius:0px;
  1373. border-top-left-radius:0px;
  1374. border-top-right-radius:0px;
  1375. border-bottom-right-radius:0px;
  1376. border-bottom-left-radius:0px;
  1377. -moz-box-shadow:none;
  1378. -webkit-box-shadow:none;
  1379. box-shadow:none;
  1380. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1381. font-weight:200;
  1382. font-style:normal;
  1383. font-size:14px;
  1384. color:#000000;
  1385. text-align:left;
  1386. }
  1387. #u784.selected {
  1388. }
  1389. #u785 {
  1390. position:absolute;
  1391. left:0px;
  1392. top:15px;
  1393. width:300px;
  1394. word-wrap:break-word;
  1395. }
  1396. #u786_img {
  1397. position:absolute;
  1398. left:0px;
  1399. top:0px;
  1400. width:6px;
  1401. height:12px;
  1402. }
  1403. #u786 {
  1404. position:absolute;
  1405. left:380px;
  1406. top:1432px;
  1407. width:6px;
  1408. height:12px;
  1409. -webkit-transform:rotate(180deg);
  1410. -moz-transform:rotate(180deg);
  1411. -ms-transform:rotate(180deg);
  1412. transform:rotate(180deg);
  1413. }
  1414. #u787 {
  1415. position:absolute;
  1416. left:2px;
  1417. top:-2px;
  1418. width:2px;
  1419. visibility:hidden;
  1420. word-wrap:break-word;
  1421. }
  1422. #u788_img {
  1423. position:absolute;
  1424. left:0px;
  1425. top:0px;
  1426. width:56px;
  1427. height:56px;
  1428. }
  1429. #u788 {
  1430. position:absolute;
  1431. left:97px;
  1432. top:1178px;
  1433. width:56px;
  1434. height:56px;
  1435. }
  1436. #u789 {
  1437. position:absolute;
  1438. left:2px;
  1439. top:20px;
  1440. width:52px;
  1441. visibility:hidden;
  1442. word-wrap:break-word;
  1443. }
  1444. #u790 {
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:0px;
  1449. height:0px;
  1450. }
  1451. #u791_div {
  1452. position:absolute;
  1453. left:0px;
  1454. top:0px;
  1455. width:318px;
  1456. height:50px;
  1457. background:inherit;
  1458. background-color:rgba(255, 255, 255, 1);
  1459. box-sizing:border-box;
  1460. border-width:1px;
  1461. border-style:solid;
  1462. border-color:rgba(229, 229, 229, 1);
  1463. border-left:0px;
  1464. border-right:0px;
  1465. border-radius:0px;
  1466. border-top-left-radius:0px;
  1467. border-top-right-radius:0px;
  1468. border-bottom-right-radius:0px;
  1469. border-bottom-left-radius:0px;
  1470. -moz-box-shadow:none;
  1471. -webkit-box-shadow:none;
  1472. box-shadow:none;
  1473. font-size:16px;
  1474. color:#333333;
  1475. text-align:left;
  1476. }
  1477. #u791 {
  1478. position:absolute;
  1479. left:77px;
  1480. top:1309px;
  1481. width:318px;
  1482. height:50px;
  1483. font-size:16px;
  1484. color:#333333;
  1485. text-align:left;
  1486. }
  1487. #u791_div.selected {
  1488. position:absolute;
  1489. left:0px;
  1490. top:0px;
  1491. width:318px;
  1492. height:50px;
  1493. background:inherit;
  1494. background-color:rgba(255, 255, 255, 1);
  1495. box-sizing:border-box;
  1496. border-width:1px;
  1497. border-style:solid;
  1498. border-color:rgba(45, 183, 245, 1);
  1499. border-left:0px;
  1500. border-right:0px;
  1501. border-radius:0px;
  1502. border-top-left-radius:0px;
  1503. border-top-right-radius:0px;
  1504. border-bottom-right-radius:0px;
  1505. border-bottom-left-radius:0px;
  1506. -moz-box-shadow:none;
  1507. -webkit-box-shadow:none;
  1508. box-shadow:none;
  1509. font-size:16px;
  1510. color:#333333;
  1511. text-align:left;
  1512. }
  1513. #u791.selected {
  1514. }
  1515. #u792 {
  1516. position:absolute;
  1517. left:10px;
  1518. top:17px;
  1519. width:308px;
  1520. visibility:hidden;
  1521. word-wrap:break-word;
  1522. }
  1523. #u793_div {
  1524. position:absolute;
  1525. left:0px;
  1526. top:0px;
  1527. width:300px;
  1528. height:50px;
  1529. background:inherit;
  1530. background-color:rgba(255, 255, 255, 0);
  1531. box-sizing:border-box;
  1532. border-width:1px;
  1533. border-style:solid;
  1534. border-color:rgba(229, 229, 229, 1);
  1535. border-left:0px;
  1536. border-top:0px;
  1537. border-right:0px;
  1538. border-radius:0px;
  1539. border-top-left-radius:0px;
  1540. border-top-right-radius:0px;
  1541. border-bottom-right-radius:0px;
  1542. border-bottom-left-radius:0px;
  1543. -moz-box-shadow:none;
  1544. -webkit-box-shadow:none;
  1545. box-shadow:none;
  1546. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1547. font-weight:200;
  1548. font-style:normal;
  1549. font-size:14px;
  1550. color:#000000;
  1551. text-align:left;
  1552. }
  1553. #u793 {
  1554. position:absolute;
  1555. left:86px;
  1556. top:1309px;
  1557. width:300px;
  1558. height:50px;
  1559. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1560. font-weight:200;
  1561. font-style:normal;
  1562. font-size:14px;
  1563. color:#000000;
  1564. text-align:left;
  1565. }
  1566. #u793_div.selected {
  1567. position:absolute;
  1568. left:0px;
  1569. top:0px;
  1570. width:300px;
  1571. height:50px;
  1572. background:inherit;
  1573. background-color:rgba(255, 255, 255, 0);
  1574. box-sizing:border-box;
  1575. border-width:1px;
  1576. border-style:solid;
  1577. border-color:rgba(45, 183, 245, 1);
  1578. border-left:0px;
  1579. border-top:0px;
  1580. border-right:0px;
  1581. border-radius:0px;
  1582. border-top-left-radius:0px;
  1583. border-top-right-radius:0px;
  1584. border-bottom-right-radius:0px;
  1585. border-bottom-left-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1590. font-weight:200;
  1591. font-style:normal;
  1592. font-size:14px;
  1593. color:#000000;
  1594. text-align:left;
  1595. }
  1596. #u793.selected {
  1597. }
  1598. #u794 {
  1599. position:absolute;
  1600. left:0px;
  1601. top:15px;
  1602. width:300px;
  1603. word-wrap:break-word;
  1604. }
  1605. #u795_img {
  1606. position:absolute;
  1607. left:0px;
  1608. top:0px;
  1609. width:6px;
  1610. height:12px;
  1611. }
  1612. #u795 {
  1613. position:absolute;
  1614. left:380px;
  1615. top:1329px;
  1616. width:6px;
  1617. height:12px;
  1618. -webkit-transform:rotate(180deg);
  1619. -moz-transform:rotate(180deg);
  1620. -ms-transform:rotate(180deg);
  1621. transform:rotate(180deg);
  1622. }
  1623. #u796 {
  1624. position:absolute;
  1625. left:2px;
  1626. top:-2px;
  1627. width:2px;
  1628. visibility:hidden;
  1629. word-wrap:break-word;
  1630. }
  1631. #u797 {
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u798_div {
  1639. position:absolute;
  1640. left:0px;
  1641. top:0px;
  1642. width:318px;
  1643. height:50px;
  1644. background:inherit;
  1645. background-color:rgba(255, 255, 255, 1);
  1646. box-sizing:border-box;
  1647. border-width:1px;
  1648. border-style:solid;
  1649. border-color:rgba(229, 229, 229, 1);
  1650. border-left:0px;
  1651. border-right:0px;
  1652. border-radius:0px;
  1653. border-top-left-radius:0px;
  1654. border-top-right-radius:0px;
  1655. border-bottom-right-radius:0px;
  1656. border-bottom-left-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-size:16px;
  1661. color:#333333;
  1662. text-align:left;
  1663. }
  1664. #u798 {
  1665. position:absolute;
  1666. left:77px;
  1667. top:1260px;
  1668. width:318px;
  1669. height:50px;
  1670. font-size:16px;
  1671. color:#333333;
  1672. text-align:left;
  1673. }
  1674. #u798_div.selected {
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:318px;
  1679. height:50px;
  1680. background:inherit;
  1681. background-color:rgba(255, 255, 255, 1);
  1682. box-sizing:border-box;
  1683. border-width:1px;
  1684. border-style:solid;
  1685. border-color:rgba(45, 183, 245, 1);
  1686. border-left:0px;
  1687. border-right:0px;
  1688. border-radius:0px;
  1689. border-top-left-radius:0px;
  1690. border-top-right-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-size:16px;
  1697. color:#333333;
  1698. text-align:left;
  1699. }
  1700. #u798.selected {
  1701. }
  1702. #u799 {
  1703. position:absolute;
  1704. left:10px;
  1705. top:17px;
  1706. width:308px;
  1707. visibility:hidden;
  1708. word-wrap:break-word;
  1709. }
  1710. #u800_div {
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:300px;
  1715. height:50px;
  1716. background:inherit;
  1717. background-color:rgba(255, 255, 255, 0);
  1718. box-sizing:border-box;
  1719. border-width:1px;
  1720. border-style:solid;
  1721. border-color:rgba(229, 229, 229, 1);
  1722. border-left:0px;
  1723. border-top:0px;
  1724. border-right:0px;
  1725. border-radius:0px;
  1726. border-top-left-radius:0px;
  1727. border-top-right-radius:0px;
  1728. border-bottom-right-radius:0px;
  1729. border-bottom-left-radius:0px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1734. font-weight:200;
  1735. font-style:normal;
  1736. font-size:14px;
  1737. color:#000000;
  1738. text-align:left;
  1739. }
  1740. #u800 {
  1741. position:absolute;
  1742. left:86px;
  1743. top:1260px;
  1744. width:300px;
  1745. height:50px;
  1746. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1747. font-weight:200;
  1748. font-style:normal;
  1749. font-size:14px;
  1750. color:#000000;
  1751. text-align:left;
  1752. }
  1753. #u800_div.selected {
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:300px;
  1758. height:50px;
  1759. background:inherit;
  1760. background-color:rgba(255, 255, 255, 0);
  1761. box-sizing:border-box;
  1762. border-width:1px;
  1763. border-style:solid;
  1764. border-color:rgba(45, 183, 245, 1);
  1765. border-left:0px;
  1766. border-top:0px;
  1767. border-right:0px;
  1768. border-radius:0px;
  1769. border-top-left-radius:0px;
  1770. border-top-right-radius:0px;
  1771. border-bottom-right-radius:0px;
  1772. border-bottom-left-radius:0px;
  1773. -moz-box-shadow:none;
  1774. -webkit-box-shadow:none;
  1775. box-shadow:none;
  1776. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1777. font-weight:200;
  1778. font-style:normal;
  1779. font-size:14px;
  1780. color:#000000;
  1781. text-align:left;
  1782. }
  1783. #u800.selected {
  1784. }
  1785. #u801 {
  1786. position:absolute;
  1787. left:0px;
  1788. top:15px;
  1789. width:300px;
  1790. word-wrap:break-word;
  1791. }
  1792. #u802_img {
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:6px;
  1797. height:12px;
  1798. }
  1799. #u802 {
  1800. position:absolute;
  1801. left:380px;
  1802. top:1280px;
  1803. width:6px;
  1804. height:12px;
  1805. -webkit-transform:rotate(180deg);
  1806. -moz-transform:rotate(180deg);
  1807. -ms-transform:rotate(180deg);
  1808. transform:rotate(180deg);
  1809. }
  1810. #u803 {
  1811. position:absolute;
  1812. left:2px;
  1813. top:-2px;
  1814. width:2px;
  1815. visibility:hidden;
  1816. word-wrap:break-word;
  1817. }
  1818. #u804 {
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:0px;
  1823. height:0px;
  1824. }
  1825. #u805_div {
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:318px;
  1830. height:50px;
  1831. background:inherit;
  1832. background-color:rgba(255, 255, 255, 1);
  1833. box-sizing:border-box;
  1834. border-width:1px;
  1835. border-style:solid;
  1836. border-color:rgba(229, 229, 229, 1);
  1837. border-left:0px;
  1838. border-right:0px;
  1839. border-radius:0px;
  1840. border-top-left-radius:0px;
  1841. border-top-right-radius:0px;
  1842. border-bottom-right-radius:0px;
  1843. border-bottom-left-radius:0px;
  1844. -moz-box-shadow:none;
  1845. -webkit-box-shadow:none;
  1846. box-shadow:none;
  1847. font-size:16px;
  1848. color:#333333;
  1849. text-align:left;
  1850. }
  1851. #u805 {
  1852. position:absolute;
  1853. left:77px;
  1854. top:1461px;
  1855. width:318px;
  1856. height:50px;
  1857. font-size:16px;
  1858. color:#333333;
  1859. text-align:left;
  1860. }
  1861. #u805_div.selected {
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:318px;
  1866. height:50px;
  1867. background:inherit;
  1868. background-color:rgba(255, 255, 255, 1);
  1869. box-sizing:border-box;
  1870. border-width:1px;
  1871. border-style:solid;
  1872. border-color:rgba(45, 183, 245, 1);
  1873. border-left:0px;
  1874. border-right:0px;
  1875. border-radius:0px;
  1876. border-top-left-radius:0px;
  1877. border-top-right-radius:0px;
  1878. border-bottom-right-radius:0px;
  1879. border-bottom-left-radius:0px;
  1880. -moz-box-shadow:none;
  1881. -webkit-box-shadow:none;
  1882. box-shadow:none;
  1883. font-size:16px;
  1884. color:#333333;
  1885. text-align:left;
  1886. }
  1887. #u805.selected {
  1888. }
  1889. #u806 {
  1890. position:absolute;
  1891. left:10px;
  1892. top:17px;
  1893. width:308px;
  1894. visibility:hidden;
  1895. word-wrap:break-word;
  1896. }
  1897. #u807_div {
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:300px;
  1902. height:50px;
  1903. background:inherit;
  1904. background-color:rgba(255, 255, 255, 0);
  1905. box-sizing:border-box;
  1906. border-width:1px;
  1907. border-style:solid;
  1908. border-color:rgba(229, 229, 229, 1);
  1909. border-left:0px;
  1910. border-top:0px;
  1911. border-right:0px;
  1912. border-radius:0px;
  1913. border-top-left-radius:0px;
  1914. border-top-right-radius:0px;
  1915. border-bottom-right-radius:0px;
  1916. border-bottom-left-radius:0px;
  1917. -moz-box-shadow:none;
  1918. -webkit-box-shadow:none;
  1919. box-shadow:none;
  1920. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1921. font-weight:200;
  1922. font-style:normal;
  1923. font-size:14px;
  1924. color:#000000;
  1925. text-align:left;
  1926. }
  1927. #u807 {
  1928. position:absolute;
  1929. left:86px;
  1930. top:1461px;
  1931. width:300px;
  1932. height:50px;
  1933. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1934. font-weight:200;
  1935. font-style:normal;
  1936. font-size:14px;
  1937. color:#000000;
  1938. text-align:left;
  1939. }
  1940. #u807_div.selected {
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:300px;
  1945. height:50px;
  1946. background:inherit;
  1947. background-color:rgba(255, 255, 255, 0);
  1948. box-sizing:border-box;
  1949. border-width:1px;
  1950. border-style:solid;
  1951. border-color:rgba(45, 183, 245, 1);
  1952. border-left:0px;
  1953. border-top:0px;
  1954. border-right:0px;
  1955. border-radius:0px;
  1956. border-top-left-radius:0px;
  1957. border-top-right-radius:0px;
  1958. border-bottom-right-radius:0px;
  1959. border-bottom-left-radius:0px;
  1960. -moz-box-shadow:none;
  1961. -webkit-box-shadow:none;
  1962. box-shadow:none;
  1963. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1964. font-weight:200;
  1965. font-style:normal;
  1966. font-size:14px;
  1967. color:#000000;
  1968. text-align:left;
  1969. }
  1970. #u807.selected {
  1971. }
  1972. #u808 {
  1973. position:absolute;
  1974. left:0px;
  1975. top:15px;
  1976. width:300px;
  1977. word-wrap:break-word;
  1978. }
  1979. #u809_img {
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:6px;
  1984. height:12px;
  1985. }
  1986. #u809 {
  1987. position:absolute;
  1988. left:380px;
  1989. top:1481px;
  1990. width:6px;
  1991. height:12px;
  1992. -webkit-transform:rotate(180deg);
  1993. -moz-transform:rotate(180deg);
  1994. -ms-transform:rotate(180deg);
  1995. transform:rotate(180deg);
  1996. }
  1997. #u810 {
  1998. position:absolute;
  1999. left:2px;
  2000. top:-2px;
  2001. width:2px;
  2002. visibility:hidden;
  2003. word-wrap:break-word;
  2004. }
  2005. #u811_img {
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:18px;
  2010. height:18px;
  2011. }
  2012. #u811 {
  2013. position:absolute;
  2014. left:369px;
  2015. top:1166px;
  2016. width:18px;
  2017. height:18px;
  2018. }
  2019. #u812 {
  2020. position:absolute;
  2021. left:2px;
  2022. top:1px;
  2023. width:14px;
  2024. visibility:hidden;
  2025. word-wrap:break-word;
  2026. }
  2027. #u813_div {
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:318px;
  2032. height:523px;
  2033. background:inherit;
  2034. background-color:rgba(255, 255, 255, 1);
  2035. box-sizing:border-box;
  2036. border-width:1px;
  2037. border-style:solid;
  2038. border-color:rgba(242, 242, 242, 1);
  2039. border-radius:0px;
  2040. -moz-box-shadow:none;
  2041. -webkit-box-shadow:none;
  2042. box-shadow:none;
  2043. }
  2044. #u813 {
  2045. position:absolute;
  2046. left:87px;
  2047. top:203px;
  2048. width:318px;
  2049. height:523px;
  2050. }
  2051. #u814 {
  2052. position:absolute;
  2053. left:2px;
  2054. top:254px;
  2055. width:314px;
  2056. visibility:hidden;
  2057. word-wrap:break-word;
  2058. }
  2059. #u815_div {
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:270px;
  2064. height:41px;
  2065. background:inherit;
  2066. background-color:rgba(51, 51, 51, 1);
  2067. box-sizing:border-box;
  2068. border-width:1px;
  2069. border-style:solid;
  2070. border-color:rgba(121, 121, 121, 1);
  2071. border-radius:160px;
  2072. -moz-box-shadow:none;
  2073. -webkit-box-shadow:none;
  2074. box-shadow:none;
  2075. font-family:'PingFangSC-Regular', 'PingFang SC';
  2076. font-weight:400;
  2077. font-style:normal;
  2078. color:#FFFFFF;
  2079. }
  2080. #u815 {
  2081. position:absolute;
  2082. left:112px;
  2083. top:674px;
  2084. width:270px;
  2085. height:41px;
  2086. font-family:'PingFangSC-Regular', 'PingFang SC';
  2087. font-weight:400;
  2088. font-style:normal;
  2089. color:#FFFFFF;
  2090. }
  2091. #u816 {
  2092. position:absolute;
  2093. left:2px;
  2094. top:12px;
  2095. width:266px;
  2096. word-wrap:break-word;
  2097. }
  2098. #u817_div {
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:307px;
  2103. height:170px;
  2104. background:inherit;
  2105. background-color:rgba(51, 51, 51, 1);
  2106. box-sizing:border-box;
  2107. border-width:1px;
  2108. border-style:solid;
  2109. border-color:rgba(121, 121, 121, 1);
  2110. border-radius:5px;
  2111. -moz-box-shadow:none;
  2112. -webkit-box-shadow:none;
  2113. box-shadow:none;
  2114. font-size:18px;
  2115. color:#FFFFFF;
  2116. }
  2117. #u817 {
  2118. position:absolute;
  2119. left:93px;
  2120. top:209px;
  2121. width:307px;
  2122. height:170px;
  2123. font-size:18px;
  2124. color:#FFFFFF;
  2125. }
  2126. #u818 {
  2127. position:absolute;
  2128. left:2px;
  2129. top:77px;
  2130. width:303px;
  2131. visibility:hidden;
  2132. word-wrap:break-word;
  2133. }
  2134. #u819 {
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:0px;
  2139. height:0px;
  2140. }
  2141. #u820_div {
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:320px;
  2146. height:581px;
  2147. background:inherit;
  2148. background-color:rgba(242, 242, 242, 1);
  2149. box-sizing:border-box;
  2150. border-width:1px;
  2151. border-style:solid;
  2152. border-color:rgba(0, 0, 0, 1);
  2153. border-radius:0px;
  2154. -moz-box-shadow:none;
  2155. -webkit-box-shadow:none;
  2156. box-shadow:none;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC';
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:12px;
  2161. color:#000000;
  2162. }
  2163. #u820 {
  2164. position:absolute;
  2165. left:484px;
  2166. top:145px;
  2167. width:320px;
  2168. height:581px;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC';
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:12px;
  2173. color:#000000;
  2174. }
  2175. #u821 {
  2176. position:absolute;
  2177. left:2px;
  2178. top:282px;
  2179. width:316px;
  2180. visibility:hidden;
  2181. word-wrap:break-word;
  2182. }
  2183. #u822 {
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:0px;
  2188. height:0px;
  2189. }
  2190. #u823_div {
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:318px;
  2195. height:17px;
  2196. background:inherit;
  2197. background-color:rgba(255, 255, 255, 1);
  2198. border:none;
  2199. border-radius:0px;
  2200. -moz-box-shadow:none;
  2201. -webkit-box-shadow:none;
  2202. box-shadow:none;
  2203. }
  2204. #u823 {
  2205. position:absolute;
  2206. left:485px;
  2207. top:146px;
  2208. width:318px;
  2209. height:17px;
  2210. }
  2211. #u824 {
  2212. position:absolute;
  2213. left:2px;
  2214. top:0px;
  2215. width:314px;
  2216. visibility:hidden;
  2217. word-wrap:break-word;
  2218. }
  2219. #u825_img {
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:318px;
  2224. height:17px;
  2225. }
  2226. #u825 {
  2227. position:absolute;
  2228. left:485px;
  2229. top:146px;
  2230. width:318px;
  2231. height:17px;
  2232. }
  2233. #u826 {
  2234. position:absolute;
  2235. left:2px;
  2236. top:0px;
  2237. width:314px;
  2238. visibility:hidden;
  2239. word-wrap:break-word;
  2240. }
  2241. #u827 {
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:0px;
  2246. height:0px;
  2247. }
  2248. #u828_div {
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:318px;
  2253. height:40px;
  2254. background:inherit;
  2255. background-color:rgba(255, 255, 255, 1);
  2256. box-sizing:border-box;
  2257. border-width:1px;
  2258. border-style:solid;
  2259. border-color:rgba(228, 228, 228, 1);
  2260. border-left:0px;
  2261. border-top:0px;
  2262. border-right:0px;
  2263. border-radius:0px;
  2264. border-top-left-radius:0px;
  2265. border-top-right-radius:0px;
  2266. border-bottom-right-radius:0px;
  2267. border-bottom-left-radius:0px;
  2268. -moz-box-shadow:none;
  2269. -webkit-box-shadow:none;
  2270. box-shadow:none;
  2271. font-family:'PingFangSC-Regular', 'PingFang SC';
  2272. font-weight:400;
  2273. font-style:normal;
  2274. font-size:14px;
  2275. text-align:left;
  2276. }
  2277. #u828 {
  2278. position:absolute;
  2279. left:485px;
  2280. top:163px;
  2281. width:318px;
  2282. height:40px;
  2283. font-family:'PingFangSC-Regular', 'PingFang SC';
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:14px;
  2287. text-align:left;
  2288. }
  2289. #u829 {
  2290. position:absolute;
  2291. left:0px;
  2292. top:10px;
  2293. width:318px;
  2294. word-wrap:break-word;
  2295. }
  2296. #u830_img {
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:10px;
  2301. height:16px;
  2302. }
  2303. #u830 {
  2304. position:absolute;
  2305. left:495px;
  2306. top:175px;
  2307. width:10px;
  2308. height:16px;
  2309. }
  2310. #u831 {
  2311. position:absolute;
  2312. left:2px;
  2313. top:0px;
  2314. width:6px;
  2315. visibility:hidden;
  2316. word-wrap:break-word;
  2317. }
  2318. #u832_div {
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:37px;
  2323. height:25px;
  2324. background:inherit;
  2325. background-color:rgba(255, 255, 255, 0);
  2326. border:none;
  2327. border-radius:0px;
  2328. -moz-box-shadow:none;
  2329. -webkit-box-shadow:none;
  2330. box-shadow:none;
  2331. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  2332. font-weight:650;
  2333. font-style:normal;
  2334. }
  2335. #u832 {
  2336. position:absolute;
  2337. left:486px;
  2338. top:98px;
  2339. width:37px;
  2340. height:25px;
  2341. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  2342. font-weight:650;
  2343. font-style:normal;
  2344. }
  2345. #u833 {
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:37px;
  2350. white-space:nowrap;
  2351. }
  2352. #u834_div {
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:133px;
  2357. height:36px;
  2358. background:inherit;
  2359. background-color:rgba(0, 0, 0, 1);
  2360. box-sizing:border-box;
  2361. border-width:1px;
  2362. border-style:solid;
  2363. border-color:rgba(0, 0, 0, 1);
  2364. border-radius:20px;
  2365. -moz-box-shadow:none;
  2366. -webkit-box-shadow:none;
  2367. box-shadow:none;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC';
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:12px;
  2372. color:#FFFFFF;
  2373. }
  2374. #u834 {
  2375. position:absolute;
  2376. left:578px;
  2377. top:506px;
  2378. width:133px;
  2379. height:36px;
  2380. font-family:'PingFangSC-Regular', 'PingFang SC';
  2381. font-weight:400;
  2382. font-style:normal;
  2383. font-size:12px;
  2384. color:#FFFFFF;
  2385. }
  2386. #u835 {
  2387. position:absolute;
  2388. left:2px;
  2389. top:10px;
  2390. width:129px;
  2391. word-wrap:break-word;
  2392. }
  2393. #u836_img {
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:100px;
  2398. height:100px;
  2399. }
  2400. #u836 {
  2401. position:absolute;
  2402. left:594px;
  2403. top:303px;
  2404. width:100px;
  2405. height:100px;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC';
  2407. font-weight:400;
  2408. font-style:normal;
  2409. }
  2410. #u837 {
  2411. position:absolute;
  2412. left:2px;
  2413. top:41px;
  2414. width:96px;
  2415. word-wrap:break-word;
  2416. }
  2417. #u838_div {
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:169px;
  2422. height:56px;
  2423. background:inherit;
  2424. background-color:rgba(255, 255, 255, 0);
  2425. border:none;
  2426. border-radius:0px;
  2427. -moz-box-shadow:none;
  2428. -webkit-box-shadow:none;
  2429. box-shadow:none;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC';
  2431. font-weight:400;
  2432. font-style:normal;
  2433. text-align:center;
  2434. line-height:28px;
  2435. }
  2436. #u838 {
  2437. position:absolute;
  2438. left:560px;
  2439. top:418px;
  2440. width:169px;
  2441. height:56px;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC';
  2443. font-weight:400;
  2444. font-style:normal;
  2445. text-align:center;
  2446. line-height:28px;
  2447. }
  2448. #u839 {
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:169px;
  2453. white-space:nowrap;
  2454. }
  2455. #u840 {
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:0px;
  2460. height:0px;
  2461. }
  2462. #u841_div {
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:320px;
  2467. height:600px;
  2468. background:inherit;
  2469. background-color:rgba(242, 242, 242, 1);
  2470. box-sizing:border-box;
  2471. border-width:1px;
  2472. border-style:solid;
  2473. border-color:rgba(0, 0, 0, 1);
  2474. border-radius:0px;
  2475. -moz-box-shadow:none;
  2476. -webkit-box-shadow:none;
  2477. box-shadow:none;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC';
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. color:#000000;
  2483. }
  2484. #u841 {
  2485. position:absolute;
  2486. left:848px;
  2487. top:145px;
  2488. width:320px;
  2489. height:600px;
  2490. font-family:'PingFangSC-Regular', 'PingFang SC';
  2491. font-weight:400;
  2492. font-style:normal;
  2493. font-size:12px;
  2494. color:#000000;
  2495. }
  2496. #u842 {
  2497. position:absolute;
  2498. left:2px;
  2499. top:292px;
  2500. width:316px;
  2501. visibility:hidden;
  2502. word-wrap:break-word;
  2503. }
  2504. #u843 {
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:0px;
  2509. height:0px;
  2510. }
  2511. #u844_div {
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:318px;
  2516. height:17px;
  2517. background:inherit;
  2518. background-color:rgba(255, 255, 255, 1);
  2519. border:none;
  2520. border-radius:0px;
  2521. -moz-box-shadow:none;
  2522. -webkit-box-shadow:none;
  2523. box-shadow:none;
  2524. }
  2525. #u844 {
  2526. position:absolute;
  2527. left:849px;
  2528. top:146px;
  2529. width:318px;
  2530. height:17px;
  2531. }
  2532. #u845 {
  2533. position:absolute;
  2534. left:2px;
  2535. top:0px;
  2536. width:314px;
  2537. visibility:hidden;
  2538. word-wrap:break-word;
  2539. }
  2540. #u846_img {
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:318px;
  2545. height:17px;
  2546. }
  2547. #u846 {
  2548. position:absolute;
  2549. left:849px;
  2550. top:146px;
  2551. width:318px;
  2552. height:17px;
  2553. }
  2554. #u847 {
  2555. position:absolute;
  2556. left:2px;
  2557. top:0px;
  2558. width:314px;
  2559. visibility:hidden;
  2560. word-wrap:break-word;
  2561. }
  2562. #u848 {
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:0px;
  2567. height:0px;
  2568. }
  2569. #u849_div {
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:318px;
  2574. height:40px;
  2575. background:inherit;
  2576. background-color:rgba(255, 255, 255, 1);
  2577. box-sizing:border-box;
  2578. border-width:1px;
  2579. border-style:solid;
  2580. border-color:rgba(228, 228, 228, 1);
  2581. border-left:0px;
  2582. border-top:0px;
  2583. border-right:0px;
  2584. border-radius:0px;
  2585. border-top-left-radius:0px;
  2586. border-top-right-radius:0px;
  2587. border-bottom-right-radius:0px;
  2588. border-bottom-left-radius:0px;
  2589. -moz-box-shadow:none;
  2590. -webkit-box-shadow:none;
  2591. box-shadow:none;
  2592. font-family:'PingFangSC-Regular', 'PingFang SC';
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:14px;
  2596. text-align:left;
  2597. }
  2598. #u849 {
  2599. position:absolute;
  2600. left:849px;
  2601. top:163px;
  2602. width:318px;
  2603. height:40px;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC';
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:14px;
  2608. text-align:left;
  2609. }
  2610. #u850 {
  2611. position:absolute;
  2612. left:0px;
  2613. top:10px;
  2614. width:318px;
  2615. word-wrap:break-word;
  2616. }
  2617. #u851_img {
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:10px;
  2622. height:16px;
  2623. }
  2624. #u851 {
  2625. position:absolute;
  2626. left:859px;
  2627. top:175px;
  2628. width:10px;
  2629. height:16px;
  2630. }
  2631. #u852 {
  2632. position:absolute;
  2633. left:2px;
  2634. top:0px;
  2635. width:6px;
  2636. visibility:hidden;
  2637. word-wrap:break-word;
  2638. }
  2639. #u853_div {
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:37px;
  2644. height:25px;
  2645. background:inherit;
  2646. background-color:rgba(255, 255, 255, 0);
  2647. border:none;
  2648. border-radius:0px;
  2649. -moz-box-shadow:none;
  2650. -webkit-box-shadow:none;
  2651. box-shadow:none;
  2652. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  2653. font-weight:650;
  2654. font-style:normal;
  2655. }
  2656. #u853 {
  2657. position:absolute;
  2658. left:850px;
  2659. top:98px;
  2660. width:37px;
  2661. height:25px;
  2662. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  2663. font-weight:650;
  2664. font-style:normal;
  2665. }
  2666. #u854 {
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:37px;
  2671. white-space:nowrap;
  2672. }
  2673. #u855_div {
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:318px;
  2678. height:539px;
  2679. background:inherit;
  2680. background-color:rgba(255, 255, 255, 1);
  2681. border:none;
  2682. border-radius:0px;
  2683. -moz-box-shadow:none;
  2684. -webkit-box-shadow:none;
  2685. box-shadow:none;
  2686. }
  2687. #u855 {
  2688. position:absolute;
  2689. left:849px;
  2690. top:203px;
  2691. width:318px;
  2692. height:539px;
  2693. }
  2694. #u856 {
  2695. position:absolute;
  2696. left:2px;
  2697. top:262px;
  2698. width:314px;
  2699. visibility:hidden;
  2700. word-wrap:break-word;
  2701. }
  2702. #u857_div {
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:73px;
  2707. height:17px;
  2708. background:inherit;
  2709. background-color:rgba(255, 255, 255, 0);
  2710. border:none;
  2711. border-radius:0px;
  2712. -moz-box-shadow:none;
  2713. -webkit-box-shadow:none;
  2714. box-shadow:none;
  2715. font-size:12px;
  2716. }
  2717. #u857 {
  2718. position:absolute;
  2719. left:856px;
  2720. top:300px;
  2721. width:73px;
  2722. height:17px;
  2723. font-size:12px;
  2724. }
  2725. #u858 {
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:73px;
  2730. white-space:nowrap;
  2731. }
  2732. #u859 {
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:0px;
  2737. height:0px;
  2738. }
  2739. #u860_div {
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:304px;
  2744. height:36px;
  2745. background:inherit;
  2746. background-color:rgba(255, 255, 255, 1);
  2747. box-sizing:border-box;
  2748. border-width:1px;
  2749. border-style:solid;
  2750. border-color:rgba(209, 23, 26, 1);
  2751. border-radius:4px;
  2752. -moz-box-shadow:none;
  2753. -webkit-box-shadow:none;
  2754. box-shadow:none;
  2755. }
  2756. #u860 {
  2757. position:absolute;
  2758. left:856px;
  2759. top:327px;
  2760. width:304px;
  2761. height:36px;
  2762. }
  2763. #u861 {
  2764. position:absolute;
  2765. left:2px;
  2766. top:10px;
  2767. width:300px;
  2768. visibility:hidden;
  2769. word-wrap:break-word;
  2770. }
  2771. #u862_div {
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:18px;
  2776. height:16px;
  2777. background:inherit;
  2778. background-color:rgba(255, 255, 255, 0);
  2779. border:none;
  2780. border-radius:0px;
  2781. -moz-box-shadow:none;
  2782. -webkit-box-shadow:none;
  2783. box-shadow:none;
  2784. font-size:11px;
  2785. color:#666666;
  2786. }
  2787. #u862 {
  2788. position:absolute;
  2789. left:898px;
  2790. top:337px;
  2791. width:18px;
  2792. height:16px;
  2793. font-size:11px;
  2794. color:#666666;
  2795. }
  2796. #u863 {
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:18px;
  2801. white-space:nowrap;
  2802. }
  2803. #u864_img {
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:2px;
  2808. height:17px;
  2809. }
  2810. #u864 {
  2811. position:absolute;
  2812. left:977px;
  2813. top:337px;
  2814. width:1px;
  2815. height:16px;
  2816. }
  2817. #u865 {
  2818. position:absolute;
  2819. left:2px;
  2820. top:0px;
  2821. width:1px;
  2822. visibility:hidden;
  2823. word-wrap:break-word;
  2824. }
  2825. #u866_div {
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:25px;
  2830. height:12px;
  2831. background:inherit;
  2832. background-color:rgba(255, 255, 255, 0);
  2833. border:none;
  2834. border-radius:0px;
  2835. -moz-box-shadow:none;
  2836. -webkit-box-shadow:none;
  2837. box-shadow:none;
  2838. font-size:11px;
  2839. color:#666666;
  2840. }
  2841. #u866 {
  2842. position:absolute;
  2843. left:1019px;
  2844. top:339px;
  2845. width:25px;
  2846. height:12px;
  2847. font-size:11px;
  2848. color:#666666;
  2849. }
  2850. #u867 {
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:25px;
  2855. white-space:nowrap;
  2856. }
  2857. #u868_div {
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:21px;
  2862. height:10px;
  2863. background:inherit;
  2864. background-color:rgba(255, 255, 255, 0);
  2865. border:none;
  2866. border-radius:0px;
  2867. -moz-box-shadow:none;
  2868. -webkit-box-shadow:none;
  2869. box-shadow:none;
  2870. font-size:9px;
  2871. color:#999999;
  2872. }
  2873. #u868 {
  2874. position:absolute;
  2875. left:1054px;
  2876. top:340px;
  2877. width:21px;
  2878. height:10px;
  2879. font-size:9px;
  2880. color:#999999;
  2881. }
  2882. #u869 {
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:21px;
  2887. white-space:nowrap;
  2888. }
  2889. #u870_img {
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:22px;
  2894. height:2px;
  2895. }
  2896. #u870 {
  2897. position:absolute;
  2898. left:1054px;
  2899. top:345px;
  2900. width:21px;
  2901. height:1px;
  2902. }
  2903. #u871 {
  2904. position:absolute;
  2905. left:2px;
  2906. top:-8px;
  2907. width:17px;
  2908. visibility:hidden;
  2909. word-wrap:break-word;
  2910. }
  2911. #u872_div {
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:22px;
  2916. height:12px;
  2917. background:inherit;
  2918. background-color:rgba(255, 0, 0, 1);
  2919. border:none;
  2920. border-radius:0px;
  2921. -moz-box-shadow:none;
  2922. -webkit-box-shadow:none;
  2923. box-shadow:none;
  2924. font-size:7px;
  2925. }
  2926. #u872 {
  2927. position:absolute;
  2928. left:919px;
  2929. top:339px;
  2930. width:22px;
  2931. height:12px;
  2932. font-size:7px;
  2933. }
  2934. #u873 {
  2935. position:absolute;
  2936. left:2px;
  2937. top:2px;
  2938. width:18px;
  2939. word-wrap:break-word;
  2940. }
  2941. #u874 {
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:0px;
  2946. height:0px;
  2947. }
  2948. #u875_div {
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:304px;
  2953. height:36px;
  2954. background:inherit;
  2955. background-color:rgba(255, 255, 255, 1);
  2956. box-sizing:border-box;
  2957. border-width:1px;
  2958. border-style:solid;
  2959. border-color:rgba(215, 215, 215, 1);
  2960. border-radius:4px;
  2961. -moz-box-shadow:none;
  2962. -webkit-box-shadow:none;
  2963. box-shadow:none;
  2964. }
  2965. #u875 {
  2966. position:absolute;
  2967. left:856px;
  2968. top:368px;
  2969. width:304px;
  2970. height:36px;
  2971. }
  2972. #u876 {
  2973. position:absolute;
  2974. left:2px;
  2975. top:10px;
  2976. width:300px;
  2977. visibility:hidden;
  2978. word-wrap:break-word;
  2979. }
  2980. #u877_div {
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:29px;
  2985. height:16px;
  2986. background:inherit;
  2987. background-color:rgba(255, 255, 255, 0);
  2988. border:none;
  2989. border-radius:0px;
  2990. -moz-box-shadow:none;
  2991. -webkit-box-shadow:none;
  2992. box-shadow:none;
  2993. font-size:11px;
  2994. color:#666666;
  2995. }
  2996. #u877 {
  2997. position:absolute;
  2998. left:898px;
  2999. top:378px;
  3000. width:29px;
  3001. height:16px;
  3002. font-size:11px;
  3003. color:#666666;
  3004. }
  3005. #u878 {
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:29px;
  3010. white-space:nowrap;
  3011. }
  3012. #u879_img {
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:2px;
  3017. height:17px;
  3018. }
  3019. #u879 {
  3020. position:absolute;
  3021. left:977px;
  3022. top:378px;
  3023. width:1px;
  3024. height:16px;
  3025. }
  3026. #u880 {
  3027. position:absolute;
  3028. left:2px;
  3029. top:0px;
  3030. width:1px;
  3031. visibility:hidden;
  3032. word-wrap:break-word;
  3033. }
  3034. #u881_div {
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:25px;
  3039. height:12px;
  3040. background:inherit;
  3041. background-color:rgba(255, 255, 255, 0);
  3042. border:none;
  3043. border-radius:0px;
  3044. -moz-box-shadow:none;
  3045. -webkit-box-shadow:none;
  3046. box-shadow:none;
  3047. font-size:11px;
  3048. color:#666666;
  3049. }
  3050. #u881 {
  3051. position:absolute;
  3052. left:1019px;
  3053. top:380px;
  3054. width:25px;
  3055. height:12px;
  3056. font-size:11px;
  3057. color:#666666;
  3058. }
  3059. #u882 {
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:25px;
  3064. white-space:nowrap;
  3065. }
  3066. #u883_div {
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:21px;
  3071. height:10px;
  3072. background:inherit;
  3073. background-color:rgba(255, 255, 255, 0);
  3074. border:none;
  3075. border-radius:0px;
  3076. -moz-box-shadow:none;
  3077. -webkit-box-shadow:none;
  3078. box-shadow:none;
  3079. font-size:9px;
  3080. color:#999999;
  3081. }
  3082. #u883 {
  3083. position:absolute;
  3084. left:1054px;
  3085. top:381px;
  3086. width:21px;
  3087. height:10px;
  3088. font-size:9px;
  3089. color:#999999;
  3090. }
  3091. #u884 {
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:21px;
  3096. white-space:nowrap;
  3097. }
  3098. #u885_img {
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:22px;
  3103. height:2px;
  3104. }
  3105. #u885 {
  3106. position:absolute;
  3107. left:1054px;
  3108. top:386px;
  3109. width:21px;
  3110. height:1px;
  3111. }
  3112. #u886 {
  3113. position:absolute;
  3114. left:2px;
  3115. top:-8px;
  3116. width:17px;
  3117. visibility:hidden;
  3118. word-wrap:break-word;
  3119. }
  3120. #u887 {
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:0px;
  3125. height:0px;
  3126. }
  3127. #u888_div {
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:304px;
  3132. height:36px;
  3133. background:inherit;
  3134. background-color:rgba(255, 255, 255, 1);
  3135. box-sizing:border-box;
  3136. border-width:1px;
  3137. border-style:solid;
  3138. border-color:rgba(215, 215, 215, 1);
  3139. border-radius:4px;
  3140. -moz-box-shadow:none;
  3141. -webkit-box-shadow:none;
  3142. box-shadow:none;
  3143. }
  3144. #u888 {
  3145. position:absolute;
  3146. left:856px;
  3147. top:409px;
  3148. width:304px;
  3149. height:36px;
  3150. }
  3151. #u889 {
  3152. position:absolute;
  3153. left:2px;
  3154. top:10px;
  3155. width:300px;
  3156. visibility:hidden;
  3157. word-wrap:break-word;
  3158. }
  3159. #u890_div {
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:29px;
  3164. height:16px;
  3165. background:inherit;
  3166. background-color:rgba(255, 255, 255, 0);
  3167. border:none;
  3168. border-radius:0px;
  3169. -moz-box-shadow:none;
  3170. -webkit-box-shadow:none;
  3171. box-shadow:none;
  3172. font-size:11px;
  3173. color:#666666;
  3174. }
  3175. #u890 {
  3176. position:absolute;
  3177. left:898px;
  3178. top:419px;
  3179. width:29px;
  3180. height:16px;
  3181. font-size:11px;
  3182. color:#666666;
  3183. }
  3184. #u891 {
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:29px;
  3189. white-space:nowrap;
  3190. }
  3191. #u892_img {
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:2px;
  3196. height:17px;
  3197. }
  3198. #u892 {
  3199. position:absolute;
  3200. left:977px;
  3201. top:419px;
  3202. width:1px;
  3203. height:16px;
  3204. }
  3205. #u893 {
  3206. position:absolute;
  3207. left:2px;
  3208. top:0px;
  3209. width:1px;
  3210. visibility:hidden;
  3211. word-wrap:break-word;
  3212. }
  3213. #u894_div {
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:19px;
  3218. height:12px;
  3219. background:inherit;
  3220. background-color:rgba(255, 255, 255, 0);
  3221. border:none;
  3222. border-radius:0px;
  3223. -moz-box-shadow:none;
  3224. -webkit-box-shadow:none;
  3225. box-shadow:none;
  3226. font-size:11px;
  3227. color:#666666;
  3228. }
  3229. #u894 {
  3230. position:absolute;
  3231. left:1024px;
  3232. top:421px;
  3233. width:19px;
  3234. height:12px;
  3235. font-size:11px;
  3236. color:#666666;
  3237. }
  3238. #u895 {
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:19px;
  3243. white-space:nowrap;
  3244. }
  3245. #u896_div {
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:85px;
  3250. height:17px;
  3251. background:inherit;
  3252. background-color:rgba(255, 255, 255, 0);
  3253. border:none;
  3254. border-radius:0px;
  3255. -moz-box-shadow:none;
  3256. -webkit-box-shadow:none;
  3257. box-shadow:none;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC';
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:12px;
  3262. }
  3263. #u896 {
  3264. position:absolute;
  3265. left:859px;
  3266. top:220px;
  3267. width:85px;
  3268. height:17px;
  3269. font-family:'PingFangSC-Regular', 'PingFang SC';
  3270. font-weight:400;
  3271. font-style:normal;
  3272. font-size:12px;
  3273. }
  3274. #u897 {
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:85px;
  3279. white-space:nowrap;
  3280. }
  3281. #u898_div {
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:304px;
  3286. height:36px;
  3287. background:inherit;
  3288. background-color:rgba(255, 255, 255, 1);
  3289. box-sizing:border-box;
  3290. border-width:1px;
  3291. border-style:solid;
  3292. border-color:rgba(215, 215, 215, 1);
  3293. border-radius:4px;
  3294. -moz-box-shadow:none;
  3295. -webkit-box-shadow:none;
  3296. box-shadow:none;
  3297. text-align:left;
  3298. }
  3299. #u898 {
  3300. position:absolute;
  3301. left:856px;
  3302. top:243px;
  3303. width:304px;
  3304. height:36px;
  3305. text-align:left;
  3306. }
  3307. #u899 {
  3308. position:absolute;
  3309. left:2px;
  3310. top:10px;
  3311. width:300px;
  3312. word-wrap:break-word;
  3313. }
  3314. #u900_div {
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:270px;
  3319. height:41px;
  3320. background:inherit;
  3321. background-color:rgba(0, 0, 0, 1);
  3322. box-sizing:border-box;
  3323. border-width:1px;
  3324. border-style:solid;
  3325. border-color:rgba(121, 121, 121, 1);
  3326. border-radius:160px;
  3327. -moz-box-shadow:none;
  3328. -webkit-box-shadow:none;
  3329. box-shadow:none;
  3330. color:#FFFFFF;
  3331. }
  3332. #u900 {
  3333. position:absolute;
  3334. left:873px;
  3335. top:693px;
  3336. width:270px;
  3337. height:41px;
  3338. color:#FFFFFF;
  3339. }
  3340. #u901 {
  3341. position:absolute;
  3342. left:2px;
  3343. top:12px;
  3344. width:266px;
  3345. word-wrap:break-word;
  3346. }
  3347. #u902 {
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:0px;
  3352. height:0px;
  3353. }
  3354. #u903_div {
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:320px;
  3359. height:607px;
  3360. background:inherit;
  3361. background-color:rgba(242, 242, 242, 1);
  3362. box-sizing:border-box;
  3363. border-width:1px;
  3364. border-style:solid;
  3365. border-color:rgba(0, 0, 0, 1);
  3366. border-radius:0px;
  3367. -moz-box-shadow:none;
  3368. -webkit-box-shadow:none;
  3369. box-shadow:none;
  3370. font-family:'PingFangSC-Regular', 'PingFang SC';
  3371. font-weight:400;
  3372. font-style:normal;
  3373. font-size:12px;
  3374. color:#000000;
  3375. }
  3376. #u903 {
  3377. position:absolute;
  3378. left:1224px;
  3379. top:147px;
  3380. width:320px;
  3381. height:607px;
  3382. font-family:'PingFangSC-Regular', 'PingFang SC';
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:12px;
  3386. color:#000000;
  3387. }
  3388. #u904 {
  3389. position:absolute;
  3390. left:2px;
  3391. top:296px;
  3392. width:316px;
  3393. visibility:hidden;
  3394. word-wrap:break-word;
  3395. }
  3396. #u905 {
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:0px;
  3401. height:0px;
  3402. }
  3403. #u906_div {
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:318px;
  3408. height:17px;
  3409. background:inherit;
  3410. background-color:rgba(255, 255, 255, 1);
  3411. border:none;
  3412. border-radius:0px;
  3413. -moz-box-shadow:none;
  3414. -webkit-box-shadow:none;
  3415. box-shadow:none;
  3416. }
  3417. #u906 {
  3418. position:absolute;
  3419. left:1225px;
  3420. top:148px;
  3421. width:318px;
  3422. height:17px;
  3423. }
  3424. #u907 {
  3425. position:absolute;
  3426. left:2px;
  3427. top:0px;
  3428. width:314px;
  3429. visibility:hidden;
  3430. word-wrap:break-word;
  3431. }
  3432. #u908_img {
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:318px;
  3437. height:17px;
  3438. }
  3439. #u908 {
  3440. position:absolute;
  3441. left:1225px;
  3442. top:148px;
  3443. width:318px;
  3444. height:17px;
  3445. }
  3446. #u909 {
  3447. position:absolute;
  3448. left:2px;
  3449. top:0px;
  3450. width:314px;
  3451. visibility:hidden;
  3452. word-wrap:break-word;
  3453. }
  3454. #u910 {
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:0px;
  3459. height:0px;
  3460. }
  3461. #u911_div {
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:318px;
  3466. height:40px;
  3467. background:inherit;
  3468. background-color:rgba(255, 255, 255, 1);
  3469. box-sizing:border-box;
  3470. border-width:1px;
  3471. border-style:solid;
  3472. border-color:rgba(228, 228, 228, 1);
  3473. border-left:0px;
  3474. border-top:0px;
  3475. border-right:0px;
  3476. border-radius:0px;
  3477. border-top-left-radius:0px;
  3478. border-top-right-radius:0px;
  3479. border-bottom-right-radius:0px;
  3480. border-bottom-left-radius:0px;
  3481. -moz-box-shadow:none;
  3482. -webkit-box-shadow:none;
  3483. box-shadow:none;
  3484. font-family:'PingFangSC-Regular', 'PingFang SC';
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:14px;
  3488. text-align:left;
  3489. }
  3490. #u911 {
  3491. position:absolute;
  3492. left:1225px;
  3493. top:165px;
  3494. width:318px;
  3495. height:40px;
  3496. font-family:'PingFangSC-Regular', 'PingFang SC';
  3497. font-weight:400;
  3498. font-style:normal;
  3499. font-size:14px;
  3500. text-align:left;
  3501. }
  3502. #u912 {
  3503. position:absolute;
  3504. left:0px;
  3505. top:10px;
  3506. width:318px;
  3507. word-wrap:break-word;
  3508. }
  3509. #u913_img {
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:10px;
  3514. height:16px;
  3515. }
  3516. #u913 {
  3517. position:absolute;
  3518. left:1235px;
  3519. top:177px;
  3520. width:10px;
  3521. height:16px;
  3522. }
  3523. #u914 {
  3524. position:absolute;
  3525. left:2px;
  3526. top:0px;
  3527. width:6px;
  3528. visibility:hidden;
  3529. word-wrap:break-word;
  3530. }
  3531. #u915_div {
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:109px;
  3536. height:25px;
  3537. background:inherit;
  3538. background-color:rgba(255, 255, 255, 0);
  3539. border:none;
  3540. border-radius:0px;
  3541. -moz-box-shadow:none;
  3542. -webkit-box-shadow:none;
  3543. box-shadow:none;
  3544. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  3545. font-weight:650;
  3546. font-style:normal;
  3547. }
  3548. #u915 {
  3549. position:absolute;
  3550. left:1226px;
  3551. top:100px;
  3552. width:109px;
  3553. height:25px;
  3554. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  3555. font-weight:650;
  3556. font-style:normal;
  3557. }
  3558. #u916 {
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:109px;
  3563. white-space:nowrap;
  3564. }
  3565. #u917_div {
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:166px;
  3570. height:40px;
  3571. background:inherit;
  3572. background-color:rgba(255, 255, 255, 0);
  3573. border:none;
  3574. border-radius:0px;
  3575. -moz-box-shadow:none;
  3576. -webkit-box-shadow:none;
  3577. box-shadow:none;
  3578. text-align:center;
  3579. }
  3580. #u917 {
  3581. position:absolute;
  3582. left:1302px;
  3583. top:582px;
  3584. width:166px;
  3585. height:40px;
  3586. text-align:center;
  3587. }
  3588. #u918 {
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:166px;
  3593. white-space:nowrap;
  3594. }
  3595. #u919_div {
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:163px;
  3600. height:163px;
  3601. background:inherit;
  3602. background-color:rgba(255, 255, 255, 1);
  3603. box-sizing:border-box;
  3604. border-width:1px;
  3605. border-style:solid;
  3606. border-color:rgba(121, 121, 121, 1);
  3607. border-radius:0px;
  3608. -moz-box-shadow:none;
  3609. -webkit-box-shadow:none;
  3610. box-shadow:none;
  3611. font-family:'PingFangSC-Regular', 'PingFang SC';
  3612. font-weight:400;
  3613. font-style:normal;
  3614. }
  3615. #u919 {
  3616. position:absolute;
  3617. left:1304px;
  3618. top:409px;
  3619. width:163px;
  3620. height:163px;
  3621. font-family:'PingFangSC-Regular', 'PingFang SC';
  3622. font-weight:400;
  3623. font-style:normal;
  3624. }
  3625. #u920 {
  3626. position:absolute;
  3627. left:2px;
  3628. top:72px;
  3629. width:159px;
  3630. word-wrap:break-word;
  3631. }
  3632. #u921_div {
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:243px;
  3637. height:17px;
  3638. background:inherit;
  3639. background-color:rgba(255, 255, 255, 0);
  3640. border:none;
  3641. border-radius:0px;
  3642. -moz-box-shadow:none;
  3643. -webkit-box-shadow:none;
  3644. box-shadow:none;
  3645. font-size:12px;
  3646. color:#CC1619;
  3647. }
  3648. #u921 {
  3649. position:absolute;
  3650. left:1264px;
  3651. top:346px;
  3652. width:243px;
  3653. height:17px;
  3654. font-size:12px;
  3655. color:#CC1619;
  3656. }
  3657. #u922 {
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:243px;
  3662. white-space:nowrap;
  3663. }
  3664. #u923_img {
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:30px;
  3669. height:30px;
  3670. }
  3671. #u923 {
  3672. position:absolute;
  3673. left:1370px;
  3674. top:247px;
  3675. width:30px;
  3676. height:30px;
  3677. }
  3678. #u924 {
  3679. position:absolute;
  3680. left:2px;
  3681. top:7px;
  3682. width:26px;
  3683. visibility:hidden;
  3684. word-wrap:break-word;
  3685. }
  3686. #u925_div {
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:57px;
  3691. height:20px;
  3692. background:inherit;
  3693. background-color:rgba(255, 255, 255, 0);
  3694. border:none;
  3695. border-radius:0px;
  3696. -moz-box-shadow:none;
  3697. -webkit-box-shadow:none;
  3698. box-shadow:none;
  3699. }
  3700. #u925 {
  3701. position:absolute;
  3702. left:1357px;
  3703. top:287px;
  3704. width:57px;
  3705. height:20px;
  3706. }
  3707. #u926 {
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:57px;
  3712. white-space:nowrap;
  3713. }
  3714. #u927_div {
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:33px;
  3719. height:33px;
  3720. background:inherit;
  3721. background-color:rgba(255, 255, 255, 1);
  3722. box-sizing:border-box;
  3723. border-width:1px;
  3724. border-style:solid;
  3725. border-color:rgba(121, 121, 121, 1);
  3726. border-radius:4px;
  3727. -moz-box-shadow:none;
  3728. -webkit-box-shadow:none;
  3729. box-shadow:none;
  3730. font-size:11px;
  3731. }
  3732. #u927 {
  3733. position:absolute;
  3734. left:353px;
  3735. top:330px;
  3736. width:33px;
  3737. height:33px;
  3738. font-size:11px;
  3739. }
  3740. #u928 {
  3741. position:absolute;
  3742. left:2px;
  3743. top:10px;
  3744. width:29px;
  3745. word-wrap:break-word;
  3746. }
  3747. #u929_img {
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:170px;
  3752. height:20px;
  3753. }
  3754. #u929 {
  3755. position:absolute;
  3756. left:161px;
  3757. top:292px;
  3758. width:170px;
  3759. height:20px;
  3760. font-size:18px;
  3761. color:#FFFFFF;
  3762. text-align:center;
  3763. }
  3764. #u930 {
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:170px;
  3769. word-wrap:break-word;
  3770. }
  3771. #u931_img {
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:175px;
  3776. height:25px;
  3777. }
  3778. #u931 {
  3779. position:absolute;
  3780. left:159px;
  3781. top:257px;
  3782. width:175px;
  3783. height:25px;
  3784. font-size:18px;
  3785. color:#FFFFFF;
  3786. }
  3787. #u932 {
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:175px;
  3792. white-space:nowrap;
  3793. }
  3794. #u933 {
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:0px;
  3799. height:0px;
  3800. }
  3801. #u934_div {
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:300px;
  3806. height:275px;
  3807. background:inherit;
  3808. background-color:rgba(255, 255, 255, 1);
  3809. box-sizing:border-box;
  3810. border-width:1px;
  3811. border-style:solid;
  3812. border-color:rgba(121, 121, 121, 1);
  3813. border-radius:0px;
  3814. -moz-box-shadow:none;
  3815. -webkit-box-shadow:none;
  3816. box-shadow:none;
  3817. font-family:'PingFangSC-Regular', 'PingFang SC';
  3818. font-weight:400;
  3819. font-style:normal;
  3820. color:#CCCCCC;
  3821. }
  3822. #u934 {
  3823. position:absolute;
  3824. left:96px;
  3825. top:389px;
  3826. width:300px;
  3827. height:275px;
  3828. font-family:'PingFangSC-Regular', 'PingFang SC';
  3829. font-weight:400;
  3830. font-style:normal;
  3831. color:#CCCCCC;
  3832. }
  3833. #u935 {
  3834. position:absolute;
  3835. left:2px;
  3836. top:102px;
  3837. width:296px;
  3838. word-wrap:break-word;
  3839. }
  3840. #u936_div {
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:101px;
  3845. height:18px;
  3846. background:inherit;
  3847. background-color:rgba(51, 51, 51, 1);
  3848. border:none;
  3849. border-radius:0px;
  3850. -moz-box-shadow:none;
  3851. -webkit-box-shadow:none;
  3852. box-shadow:none;
  3853. color:#FFFFFF;
  3854. text-align:center;
  3855. }
  3856. #u936 {
  3857. position:absolute;
  3858. left:196px;
  3859. top:473px;
  3860. width:101px;
  3861. height:18px;
  3862. color:#FFFFFF;
  3863. text-align:center;
  3864. }
  3865. #u937 {
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:101px;
  3870. word-wrap:break-word;
  3871. }
  3872. #u938_div {
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:109px;
  3877. height:25px;
  3878. background:inherit;
  3879. background-color:rgba(255, 255, 255, 0);
  3880. border:none;
  3881. border-radius:0px;
  3882. -moz-box-shadow:none;
  3883. -webkit-box-shadow:none;
  3884. box-shadow:none;
  3885. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  3886. font-weight:700;
  3887. font-style:normal;
  3888. text-decoration:underline;
  3889. }
  3890. #u938 {
  3891. position:absolute;
  3892. left:192px;
  3893. top:438px;
  3894. width:109px;
  3895. height:25px;
  3896. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  3897. font-weight:700;
  3898. font-style:normal;
  3899. text-decoration:underline;
  3900. }
  3901. #u939 {
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:109px;
  3906. white-space:nowrap;
  3907. }
  3908. #u940_img {
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:23px;
  3913. height:20px;
  3914. }
  3915. #u940 {
  3916. position:absolute;
  3917. left:130px;
  3918. top:1214px;
  3919. width:23px;
  3920. height:20px;
  3921. }
  3922. #u941 {
  3923. position:absolute;
  3924. left:2px;
  3925. top:2px;
  3926. width:19px;
  3927. visibility:hidden;
  3928. word-wrap:break-word;
  3929. }
  3930. #u942_div {
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:318px;
  3935. height:86px;
  3936. background:inherit;
  3937. background-color:rgba(208, 225, 125, 1);
  3938. border:none;
  3939. border-radius:0px;
  3940. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3941. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3942. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3943. }
  3944. #u942 {
  3945. position:absolute;
  3946. left:77px;
  3947. top:1682px;
  3948. width:318px;
  3949. height:86px;
  3950. }
  3951. #u943 {
  3952. position:absolute;
  3953. left:10px;
  3954. top:10px;
  3955. width:298px;
  3956. word-wrap:break-word;
  3957. }
  3958. #u944_div {
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:73px;
  3963. height:17px;
  3964. background:inherit;
  3965. background-color:rgba(255, 255, 255, 0);
  3966. border:none;
  3967. border-radius:0px;
  3968. -moz-box-shadow:none;
  3969. -webkit-box-shadow:none;
  3970. box-shadow:none;
  3971. font-size:12px;
  3972. }
  3973. #u944 {
  3974. position:absolute;
  3975. left:856px;
  3976. top:464px;
  3977. width:73px;
  3978. height:17px;
  3979. font-size:12px;
  3980. }
  3981. #u945 {
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:73px;
  3986. white-space:nowrap;
  3987. }
  3988. #u946_div {
  3989. position:absolute;
  3990. left:0px;
  3991. top:0px;
  3992. width:28px;
  3993. height:28px;
  3994. background:inherit;
  3995. background-color:rgba(0, 153, 255, 1);
  3996. border:none;
  3997. border-radius:4px;
  3998. -moz-box-shadow:none;
  3999. -webkit-box-shadow:none;
  4000. box-shadow:none;
  4001. font-size:16px;
  4002. color:#FFFFFF;
  4003. }
  4004. #u946 {
  4005. position:absolute;
  4006. left:856px;
  4007. top:526px;
  4008. width:28px;
  4009. height:28px;
  4010. font-size:16px;
  4011. color:#FFFFFF;
  4012. }
  4013. #u947 {
  4014. position:absolute;
  4015. left:2px;
  4016. top:3px;
  4017. width:24px;
  4018. word-wrap:break-word;
  4019. }
  4020. #u948_div {
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:40px;
  4025. height:18px;
  4026. background:inherit;
  4027. background-color:rgba(255, 255, 255, 0);
  4028. border:none;
  4029. border-radius:0px;
  4030. -moz-box-shadow:none;
  4031. -webkit-box-shadow:none;
  4032. box-shadow:none;
  4033. font-size:13px;
  4034. color:#666666;
  4035. }
  4036. #u948 {
  4037. position:absolute;
  4038. left:892px;
  4039. top:529px;
  4040. width:40px;
  4041. height:18px;
  4042. font-size:13px;
  4043. color:#666666;
  4044. }
  4045. #u949 {
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:40px;
  4050. white-space:nowrap;
  4051. }
  4052. #u950_img {
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:16px;
  4057. height:16px;
  4058. }
  4059. #u950 {
  4060. position:absolute;
  4061. left:1144px;
  4062. top:532px;
  4063. width:16px;
  4064. height:16px;
  4065. }
  4066. #u951 {
  4067. position:absolute;
  4068. left:2px;
  4069. top:0px;
  4070. width:12px;
  4071. visibility:hidden;
  4072. word-wrap:break-word;
  4073. }
  4074. #u952_div {
  4075. position:absolute;
  4076. left:0px;
  4077. top:0px;
  4078. width:27px;
  4079. height:18px;
  4080. background:inherit;
  4081. background-color:rgba(255, 255, 255, 0);
  4082. border:none;
  4083. border-radius:0px;
  4084. -moz-box-shadow:none;
  4085. -webkit-box-shadow:none;
  4086. box-shadow:none;
  4087. font-size:13px;
  4088. color:#666666;
  4089. }
  4090. #u952 {
  4091. position:absolute;
  4092. left:892px;
  4093. top:497px;
  4094. width:27px;
  4095. height:18px;
  4096. font-size:13px;
  4097. color:#666666;
  4098. }
  4099. #u953 {
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:27px;
  4104. white-space:nowrap;
  4105. }
  4106. #u954_img {
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:26px;
  4111. height:21px;
  4112. }
  4113. #u954 {
  4114. position:absolute;
  4115. left:856px;
  4116. top:495px;
  4117. width:26px;
  4118. height:21px;
  4119. }
  4120. #u955 {
  4121. position:absolute;
  4122. left:2px;
  4123. top:2px;
  4124. width:22px;
  4125. visibility:hidden;
  4126. word-wrap:break-word;
  4127. }
  4128. #u956 {
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:0px;
  4133. height:0px;
  4134. }
  4135. #u957_div {
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:320px;
  4140. height:561px;
  4141. background:inherit;
  4142. background-color:rgba(242, 242, 242, 1);
  4143. box-sizing:border-box;
  4144. border-width:1px;
  4145. border-style:solid;
  4146. border-color:rgba(0, 0, 0, 1);
  4147. border-radius:0px;
  4148. -moz-box-shadow:none;
  4149. -webkit-box-shadow:none;
  4150. box-shadow:none;
  4151. }
  4152. #u957 {
  4153. position:absolute;
  4154. left:485px;
  4155. top:1098px;
  4156. width:320px;
  4157. height:561px;
  4158. }
  4159. #u958 {
  4160. position:absolute;
  4161. left:2px;
  4162. top:272px;
  4163. width:316px;
  4164. visibility:hidden;
  4165. word-wrap:break-word;
  4166. }
  4167. #u959 {
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:0px;
  4172. height:0px;
  4173. }
  4174. #u960_div {
  4175. position:absolute;
  4176. left:0px;
  4177. top:0px;
  4178. width:318px;
  4179. height:17px;
  4180. background:inherit;
  4181. background-color:rgba(255, 255, 255, 1);
  4182. border:none;
  4183. border-radius:0px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. }
  4188. #u960 {
  4189. position:absolute;
  4190. left:486px;
  4191. top:1099px;
  4192. width:318px;
  4193. height:17px;
  4194. }
  4195. #u961 {
  4196. position:absolute;
  4197. left:2px;
  4198. top:0px;
  4199. width:314px;
  4200. visibility:hidden;
  4201. word-wrap:break-word;
  4202. }
  4203. #u962_img {
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:318px;
  4208. height:17px;
  4209. }
  4210. #u962 {
  4211. position:absolute;
  4212. left:486px;
  4213. top:1099px;
  4214. width:318px;
  4215. height:17px;
  4216. }
  4217. #u963 {
  4218. position:absolute;
  4219. left:2px;
  4220. top:0px;
  4221. width:314px;
  4222. visibility:hidden;
  4223. word-wrap:break-word;
  4224. }
  4225. #u964_div {
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:140px;
  4230. height:33px;
  4231. background:inherit;
  4232. background-color:rgba(255, 255, 255, 0);
  4233. border:none;
  4234. border-radius:0px;
  4235. -moz-box-shadow:none;
  4236. -webkit-box-shadow:none;
  4237. box-shadow:none;
  4238. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  4239. font-weight:700;
  4240. font-style:normal;
  4241. }
  4242. #u964 {
  4243. position:absolute;
  4244. left:485px;
  4245. top:1029px;
  4246. width:140px;
  4247. height:33px;
  4248. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  4249. font-weight:700;
  4250. font-style:normal;
  4251. }
  4252. #u965 {
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:140px;
  4257. white-space:nowrap;
  4258. }
  4259. #u966 {
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:0px;
  4264. height:0px;
  4265. }
  4266. #u967_div {
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:318px;
  4271. height:40px;
  4272. background:inherit;
  4273. background-color:rgba(255, 255, 255, 1);
  4274. box-sizing:border-box;
  4275. border-width:1px;
  4276. border-style:solid;
  4277. border-color:rgba(228, 228, 228, 1);
  4278. border-left:0px;
  4279. border-top:0px;
  4280. border-right:0px;
  4281. border-radius:0px;
  4282. border-top-left-radius:0px;
  4283. border-top-right-radius:0px;
  4284. border-bottom-right-radius:0px;
  4285. border-bottom-left-radius:0px;
  4286. -moz-box-shadow:none;
  4287. -webkit-box-shadow:none;
  4288. box-shadow:none;
  4289. font-family:'PingFangSC-Regular', 'PingFang SC';
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:14px;
  4293. text-align:left;
  4294. }
  4295. #u967 {
  4296. position:absolute;
  4297. left:486px;
  4298. top:1116px;
  4299. width:318px;
  4300. height:40px;
  4301. font-family:'PingFangSC-Regular', 'PingFang SC';
  4302. font-weight:400;
  4303. font-style:normal;
  4304. font-size:14px;
  4305. text-align:left;
  4306. }
  4307. #u968 {
  4308. position:absolute;
  4309. left:0px;
  4310. top:10px;
  4311. width:318px;
  4312. word-wrap:break-word;
  4313. }
  4314. #u969_img {
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:10px;
  4319. height:16px;
  4320. }
  4321. #u969 {
  4322. position:absolute;
  4323. left:496px;
  4324. top:1128px;
  4325. width:10px;
  4326. height:16px;
  4327. }
  4328. #u970 {
  4329. position:absolute;
  4330. left:2px;
  4331. top:0px;
  4332. width:6px;
  4333. visibility:hidden;
  4334. word-wrap:break-word;
  4335. }
  4336. #u971 {
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:0px;
  4341. height:0px;
  4342. }
  4343. #u972_div {
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:50px;
  4348. height:26px;
  4349. background:inherit;
  4350. background-color:rgba(255, 255, 255, 1);
  4351. box-sizing:border-box;
  4352. border-width:1px;
  4353. border-style:solid;
  4354. border-color:rgba(204, 204, 204, 1);
  4355. border-radius:15px;
  4356. -moz-box-shadow:none;
  4357. -webkit-box-shadow:none;
  4358. box-shadow:none;
  4359. }
  4360. #u972 {
  4361. position:absolute;
  4362. left:744px;
  4363. top:1123px;
  4364. width:50px;
  4365. height:26px;
  4366. }
  4367. #u973 {
  4368. position:absolute;
  4369. left:2px;
  4370. top:5px;
  4371. width:46px;
  4372. visibility:hidden;
  4373. word-wrap:break-word;
  4374. }
  4375. #u974 {
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:0px;
  4380. height:0px;
  4381. }
  4382. #u975_img {
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:3px;
  4387. height:3px;
  4388. }
  4389. #u975 {
  4390. position:absolute;
  4391. left:751px;
  4392. top:1135px;
  4393. width:3px;
  4394. height:3px;
  4395. -webkit-transform:rotate(45deg);
  4396. -moz-transform:rotate(45deg);
  4397. -ms-transform:rotate(45deg);
  4398. transform:rotate(45deg);
  4399. font-family:'MicrosoftYaHei', '微软雅黑';
  4400. font-weight:400;
  4401. font-style:normal;
  4402. font-size:18px;
  4403. }
  4404. #u976 {
  4405. position:absolute;
  4406. left:0px;
  4407. top:-6px;
  4408. width:3px;
  4409. visibility:hidden;
  4410. word-wrap:break-word;
  4411. }
  4412. #u977_img {
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:5px;
  4417. height:5px;
  4418. }
  4419. #u977 {
  4420. position:absolute;
  4421. left:755px;
  4422. top:1134px;
  4423. width:5px;
  4424. height:5px;
  4425. -webkit-transform:rotate(45deg);
  4426. -moz-transform:rotate(45deg);
  4427. -ms-transform:rotate(45deg);
  4428. transform:rotate(45deg);
  4429. font-family:'MicrosoftYaHei', '微软雅黑';
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:18px;
  4433. }
  4434. #u978 {
  4435. position:absolute;
  4436. left:0px;
  4437. top:-6px;
  4438. width:5px;
  4439. visibility:hidden;
  4440. word-wrap:break-word;
  4441. }
  4442. #u979_img {
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:3px;
  4447. height:3px;
  4448. }
  4449. #u979 {
  4450. position:absolute;
  4451. left:761px;
  4452. top:1135px;
  4453. width:3px;
  4454. height:3px;
  4455. -webkit-transform:rotate(45deg);
  4456. -moz-transform:rotate(45deg);
  4457. -ms-transform:rotate(45deg);
  4458. transform:rotate(45deg);
  4459. font-family:'MicrosoftYaHei', '微软雅黑';
  4460. font-weight:400;
  4461. font-style:normal;
  4462. font-size:18px;
  4463. }
  4464. #u980 {
  4465. position:absolute;
  4466. left:0px;
  4467. top:-6px;
  4468. width:3px;
  4469. visibility:hidden;
  4470. word-wrap:break-word;
  4471. }
  4472. #u981_img {
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:2px;
  4477. height:19px;
  4478. }
  4479. #u981 {
  4480. position:absolute;
  4481. left:768px;
  4482. top:1127px;
  4483. width:1px;
  4484. height:18px;
  4485. }
  4486. #u982 {
  4487. position:absolute;
  4488. left:2px;
  4489. top:1px;
  4490. width:1px;
  4491. visibility:hidden;
  4492. word-wrap:break-word;
  4493. }
  4494. #u983_img {
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:14px;
  4499. height:14px;
  4500. }
  4501. #u983 {
  4502. position:absolute;
  4503. left:774px;
  4504. top:1129px;
  4505. width:14px;
  4506. height:14px;
  4507. }
  4508. #u984 {
  4509. position:absolute;
  4510. left:2px;
  4511. top:-1px;
  4512. width:10px;
  4513. visibility:hidden;
  4514. word-wrap:break-word;
  4515. }
  4516. #u985_img {
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:6px;
  4521. height:6px;
  4522. }
  4523. #u985 {
  4524. position:absolute;
  4525. left:778px;
  4526. top:1133px;
  4527. width:6px;
  4528. height:6px;
  4529. }
  4530. #u986 {
  4531. position:absolute;
  4532. left:2px;
  4533. top:-5px;
  4534. width:2px;
  4535. visibility:hidden;
  4536. word-wrap:break-word;
  4537. }
  4538. #u987 {
  4539. position:absolute;
  4540. left:0px;
  4541. top:0px;
  4542. width:0px;
  4543. height:0px;
  4544. }
  4545. #u988_div {
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:318px;
  4550. height:49px;
  4551. background:inherit;
  4552. background-color:rgba(247, 247, 250, 1);
  4553. box-sizing:border-box;
  4554. border-width:1px;
  4555. border-style:solid;
  4556. border-color:rgba(228, 228, 228, 1);
  4557. border-left:0px;
  4558. border-right:0px;
  4559. border-bottom:0px;
  4560. border-radius:0px;
  4561. border-top-left-radius:0px;
  4562. border-top-right-radius:0px;
  4563. border-bottom-right-radius:0px;
  4564. border-bottom-left-radius:0px;
  4565. -moz-box-shadow:none;
  4566. -webkit-box-shadow:none;
  4567. box-shadow:none;
  4568. font-size:16px;
  4569. color:#333333;
  4570. text-align:left;
  4571. }
  4572. #u988 {
  4573. position:absolute;
  4574. left:486px;
  4575. top:1609px;
  4576. width:318px;
  4577. height:49px;
  4578. font-size:16px;
  4579. color:#333333;
  4580. text-align:left;
  4581. }
  4582. #u988_div.selected {
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:318px;
  4587. height:49px;
  4588. background:inherit;
  4589. background-color:rgba(247, 247, 250, 1);
  4590. box-sizing:border-box;
  4591. border-width:1px;
  4592. border-style:solid;
  4593. border-color:rgba(45, 183, 245, 1);
  4594. border-left:0px;
  4595. border-right:0px;
  4596. border-bottom:0px;
  4597. border-radius:0px;
  4598. border-top-left-radius:0px;
  4599. border-top-right-radius:0px;
  4600. border-bottom-right-radius:0px;
  4601. border-bottom-left-radius:0px;
  4602. -moz-box-shadow:none;
  4603. -webkit-box-shadow:none;
  4604. box-shadow:none;
  4605. font-size:16px;
  4606. color:#333333;
  4607. text-align:left;
  4608. }
  4609. #u988.selected {
  4610. }
  4611. #u989 {
  4612. position:absolute;
  4613. left:55px;
  4614. top:16px;
  4615. width:263px;
  4616. visibility:hidden;
  4617. word-wrap:break-word;
  4618. }
  4619. #u990 {
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:0px;
  4624. height:0px;
  4625. }
  4626. #u991_div {
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:70px;
  4631. height:10px;
  4632. background:inherit;
  4633. background-color:rgba(255, 255, 255, 0);
  4634. border:none;
  4635. border-radius:0px;
  4636. -moz-box-shadow:none;
  4637. -webkit-box-shadow:none;
  4638. box-shadow:none;
  4639. font-family:'PingFangSC-Regular', 'PingFang SC';
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:10px;
  4643. color:#666666;
  4644. line-height:10px;
  4645. }
  4646. #u991 {
  4647. position:absolute;
  4648. left:505px;
  4649. top:1644px;
  4650. width:70px;
  4651. height:10px;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC';
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:10px;
  4656. color:#666666;
  4657. line-height:10px;
  4658. }
  4659. #u992 {
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:70px;
  4664. word-wrap:break-word;
  4665. }
  4666. #u993_img {
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:27px;
  4671. height:27px;
  4672. }
  4673. #u993 {
  4674. position:absolute;
  4675. left:526px;
  4676. top:1613px;
  4677. width:27px;
  4678. height:27px;
  4679. }
  4680. #u994 {
  4681. position:absolute;
  4682. left:2px;
  4683. top:6px;
  4684. width:23px;
  4685. visibility:hidden;
  4686. word-wrap:break-word;
  4687. }
  4688. #u995 {
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:0px;
  4693. height:0px;
  4694. }
  4695. #u996_div {
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:70px;
  4700. height:10px;
  4701. background:inherit;
  4702. background-color:rgba(255, 255, 255, 0);
  4703. border:none;
  4704. border-radius:0px;
  4705. -moz-box-shadow:none;
  4706. -webkit-box-shadow:none;
  4707. box-shadow:none;
  4708. font-family:'PingFangSC-Regular', 'PingFang SC';
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:10px;
  4712. color:#7F8389;
  4713. line-height:10px;
  4714. }
  4715. #u996 {
  4716. position:absolute;
  4717. left:610px;
  4718. top:1644px;
  4719. width:70px;
  4720. height:10px;
  4721. font-family:'PingFangSC-Regular', 'PingFang SC';
  4722. font-weight:400;
  4723. font-style:normal;
  4724. font-size:10px;
  4725. color:#7F8389;
  4726. line-height:10px;
  4727. }
  4728. #u997 {
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:70px;
  4733. word-wrap:break-word;
  4734. }
  4735. #u998_img {
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:27px;
  4740. height:27px;
  4741. }
  4742. #u998 {
  4743. position:absolute;
  4744. left:631px;
  4745. top:1613px;
  4746. width:27px;
  4747. height:27px;
  4748. }
  4749. #u999 {
  4750. position:absolute;
  4751. left:2px;
  4752. top:6px;
  4753. width:23px;
  4754. visibility:hidden;
  4755. word-wrap:break-word;
  4756. }
  4757. #u1000 {
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:0px;
  4762. height:0px;
  4763. }
  4764. #u1001_div {
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:70px;
  4769. height:10px;
  4770. background:inherit;
  4771. background-color:rgba(255, 255, 255, 0);
  4772. border:none;
  4773. border-radius:0px;
  4774. -moz-box-shadow:none;
  4775. -webkit-box-shadow:none;
  4776. box-shadow:none;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC';
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:10px;
  4781. color:#009900;
  4782. line-height:10px;
  4783. }
  4784. #u1001 {
  4785. position:absolute;
  4786. left:715px;
  4787. top:1644px;
  4788. width:70px;
  4789. height:10px;
  4790. font-family:'PingFangSC-Regular', 'PingFang SC';
  4791. font-weight:400;
  4792. font-style:normal;
  4793. font-size:10px;
  4794. color:#009900;
  4795. line-height:10px;
  4796. }
  4797. #u1002 {
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:70px;
  4802. word-wrap:break-word;
  4803. }
  4804. #u1003_img {
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:27px;
  4809. height:27px;
  4810. }
  4811. #u1003 {
  4812. position:absolute;
  4813. left:736px;
  4814. top:1613px;
  4815. width:27px;
  4816. height:27px;
  4817. }
  4818. #u1004 {
  4819. position:absolute;
  4820. left:2px;
  4821. top:6px;
  4822. width:23px;
  4823. visibility:hidden;
  4824. word-wrap:break-word;
  4825. }
  4826. #u1005 {
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:0px;
  4831. height:0px;
  4832. }
  4833. #u1006_div {
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:318px;
  4838. height:50px;
  4839. background:inherit;
  4840. background-color:rgba(255, 255, 255, 1);
  4841. box-sizing:border-box;
  4842. border-width:1px;
  4843. border-style:solid;
  4844. border-color:rgba(229, 229, 229, 1);
  4845. border-left:0px;
  4846. border-right:0px;
  4847. border-radius:0px;
  4848. border-top-left-radius:0px;
  4849. border-top-right-radius:0px;
  4850. border-bottom-right-radius:0px;
  4851. border-bottom-left-radius:0px;
  4852. -moz-box-shadow:none;
  4853. -webkit-box-shadow:none;
  4854. box-shadow:none;
  4855. font-size:16px;
  4856. color:#333333;
  4857. text-align:left;
  4858. }
  4859. #u1006 {
  4860. position:absolute;
  4861. left:486px;
  4862. top:1389px;
  4863. width:318px;
  4864. height:50px;
  4865. font-size:16px;
  4866. color:#333333;
  4867. text-align:left;
  4868. }
  4869. #u1006_div.selected {
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:318px;
  4874. height:50px;
  4875. background:inherit;
  4876. background-color:rgba(255, 255, 255, 1);
  4877. box-sizing:border-box;
  4878. border-width:1px;
  4879. border-style:solid;
  4880. border-color:rgba(45, 183, 245, 1);
  4881. border-left:0px;
  4882. border-right:0px;
  4883. border-radius:0px;
  4884. border-top-left-radius:0px;
  4885. border-top-right-radius:0px;
  4886. border-bottom-right-radius:0px;
  4887. border-bottom-left-radius:0px;
  4888. -moz-box-shadow:none;
  4889. -webkit-box-shadow:none;
  4890. box-shadow:none;
  4891. font-size:16px;
  4892. color:#333333;
  4893. text-align:left;
  4894. }
  4895. #u1006.selected {
  4896. }
  4897. #u1007 {
  4898. position:absolute;
  4899. left:10px;
  4900. top:17px;
  4901. width:308px;
  4902. visibility:hidden;
  4903. word-wrap:break-word;
  4904. }
  4905. #u1008_div {
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:300px;
  4910. height:50px;
  4911. background:inherit;
  4912. background-color:rgba(255, 255, 255, 0);
  4913. box-sizing:border-box;
  4914. border-width:1px;
  4915. border-style:solid;
  4916. border-color:rgba(229, 229, 229, 1);
  4917. border-left:0px;
  4918. border-top:0px;
  4919. border-right:0px;
  4920. border-radius:0px;
  4921. border-top-left-radius:0px;
  4922. border-top-right-radius:0px;
  4923. border-bottom-right-radius:0px;
  4924. border-bottom-left-radius:0px;
  4925. -moz-box-shadow:none;
  4926. -webkit-box-shadow:none;
  4927. box-shadow:none;
  4928. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4929. font-weight:200;
  4930. font-style:normal;
  4931. font-size:14px;
  4932. color:#000000;
  4933. text-align:left;
  4934. }
  4935. #u1008 {
  4936. position:absolute;
  4937. left:495px;
  4938. top:1389px;
  4939. width:300px;
  4940. height:50px;
  4941. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4942. font-weight:200;
  4943. font-style:normal;
  4944. font-size:14px;
  4945. color:#000000;
  4946. text-align:left;
  4947. }
  4948. #u1008_div.selected {
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:300px;
  4953. height:50px;
  4954. background:inherit;
  4955. background-color:rgba(255, 255, 255, 0);
  4956. box-sizing:border-box;
  4957. border-width:1px;
  4958. border-style:solid;
  4959. border-color:rgba(45, 183, 245, 1);
  4960. border-left:0px;
  4961. border-top:0px;
  4962. border-right:0px;
  4963. border-radius:0px;
  4964. border-top-left-radius:0px;
  4965. border-top-right-radius:0px;
  4966. border-bottom-right-radius:0px;
  4967. border-bottom-left-radius:0px;
  4968. -moz-box-shadow:none;
  4969. -webkit-box-shadow:none;
  4970. box-shadow:none;
  4971. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4972. font-weight:200;
  4973. font-style:normal;
  4974. font-size:14px;
  4975. color:#000000;
  4976. text-align:left;
  4977. }
  4978. #u1008.selected {
  4979. }
  4980. #u1009 {
  4981. position:absolute;
  4982. left:0px;
  4983. top:15px;
  4984. width:300px;
  4985. word-wrap:break-word;
  4986. }
  4987. #u1010_img {
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:6px;
  4992. height:12px;
  4993. }
  4994. #u1010 {
  4995. position:absolute;
  4996. left:789px;
  4997. top:1409px;
  4998. width:6px;
  4999. height:12px;
  5000. -webkit-transform:rotate(180deg);
  5001. -moz-transform:rotate(180deg);
  5002. -ms-transform:rotate(180deg);
  5003. transform:rotate(180deg);
  5004. }
  5005. #u1011 {
  5006. position:absolute;
  5007. left:2px;
  5008. top:-2px;
  5009. width:2px;
  5010. visibility:hidden;
  5011. word-wrap:break-word;
  5012. }
  5013. #u1012 {
  5014. position:absolute;
  5015. left:0px;
  5016. top:0px;
  5017. width:0px;
  5018. height:0px;
  5019. }
  5020. #u1013_div {
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:318px;
  5025. height:50px;
  5026. background:inherit;
  5027. background-color:rgba(255, 255, 255, 1);
  5028. box-sizing:border-box;
  5029. border-width:1px;
  5030. border-style:solid;
  5031. border-color:rgba(229, 229, 229, 1);
  5032. border-left:0px;
  5033. border-right:0px;
  5034. border-radius:0px;
  5035. border-top-left-radius:0px;
  5036. border-top-right-radius:0px;
  5037. border-bottom-right-radius:0px;
  5038. border-bottom-left-radius:0px;
  5039. -moz-box-shadow:none;
  5040. -webkit-box-shadow:none;
  5041. box-shadow:none;
  5042. font-size:16px;
  5043. color:#333333;
  5044. text-align:left;
  5045. }
  5046. #u1013 {
  5047. position:absolute;
  5048. left:486px;
  5049. top:1443px;
  5050. width:318px;
  5051. height:50px;
  5052. font-size:16px;
  5053. color:#333333;
  5054. text-align:left;
  5055. }
  5056. #u1013_div.selected {
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:318px;
  5061. height:50px;
  5062. background:inherit;
  5063. background-color:rgba(255, 255, 255, 1);
  5064. box-sizing:border-box;
  5065. border-width:1px;
  5066. border-style:solid;
  5067. border-color:rgba(45, 183, 245, 1);
  5068. border-left:0px;
  5069. border-right:0px;
  5070. border-radius:0px;
  5071. border-top-left-radius:0px;
  5072. border-top-right-radius:0px;
  5073. border-bottom-right-radius:0px;
  5074. border-bottom-left-radius:0px;
  5075. -moz-box-shadow:none;
  5076. -webkit-box-shadow:none;
  5077. box-shadow:none;
  5078. font-size:16px;
  5079. color:#333333;
  5080. text-align:left;
  5081. }
  5082. #u1013.selected {
  5083. }
  5084. #u1014 {
  5085. position:absolute;
  5086. left:10px;
  5087. top:17px;
  5088. width:308px;
  5089. visibility:hidden;
  5090. word-wrap:break-word;
  5091. }
  5092. #u1015_div {
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:300px;
  5097. height:50px;
  5098. background:inherit;
  5099. background-color:rgba(255, 255, 255, 0);
  5100. box-sizing:border-box;
  5101. border-width:1px;
  5102. border-style:solid;
  5103. border-color:rgba(229, 229, 229, 1);
  5104. border-left:0px;
  5105. border-top:0px;
  5106. border-right:0px;
  5107. border-radius:0px;
  5108. border-top-left-radius:0px;
  5109. border-top-right-radius:0px;
  5110. border-bottom-right-radius:0px;
  5111. border-bottom-left-radius:0px;
  5112. -moz-box-shadow:none;
  5113. -webkit-box-shadow:none;
  5114. box-shadow:none;
  5115. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5116. font-weight:200;
  5117. font-style:normal;
  5118. font-size:14px;
  5119. color:#000000;
  5120. text-align:left;
  5121. }
  5122. #u1015 {
  5123. position:absolute;
  5124. left:495px;
  5125. top:1443px;
  5126. width:300px;
  5127. height:50px;
  5128. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5129. font-weight:200;
  5130. font-style:normal;
  5131. font-size:14px;
  5132. color:#000000;
  5133. text-align:left;
  5134. }
  5135. #u1015_div.selected {
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:300px;
  5140. height:50px;
  5141. background:inherit;
  5142. background-color:rgba(255, 255, 255, 0);
  5143. box-sizing:border-box;
  5144. border-width:1px;
  5145. border-style:solid;
  5146. border-color:rgba(45, 183, 245, 1);
  5147. border-left:0px;
  5148. border-top:0px;
  5149. border-right:0px;
  5150. border-radius:0px;
  5151. border-top-left-radius:0px;
  5152. border-top-right-radius:0px;
  5153. border-bottom-right-radius:0px;
  5154. border-bottom-left-radius:0px;
  5155. -moz-box-shadow:none;
  5156. -webkit-box-shadow:none;
  5157. box-shadow:none;
  5158. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5159. font-weight:200;
  5160. font-style:normal;
  5161. font-size:14px;
  5162. color:#000000;
  5163. text-align:left;
  5164. }
  5165. #u1015.selected {
  5166. }
  5167. #u1016 {
  5168. position:absolute;
  5169. left:0px;
  5170. top:15px;
  5171. width:300px;
  5172. word-wrap:break-word;
  5173. }
  5174. #u1017_img {
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:6px;
  5179. height:12px;
  5180. }
  5181. #u1017 {
  5182. position:absolute;
  5183. left:789px;
  5184. top:1463px;
  5185. width:6px;
  5186. height:12px;
  5187. -webkit-transform:rotate(180deg);
  5188. -moz-transform:rotate(180deg);
  5189. -ms-transform:rotate(180deg);
  5190. transform:rotate(180deg);
  5191. }
  5192. #u1018 {
  5193. position:absolute;
  5194. left:2px;
  5195. top:-2px;
  5196. width:2px;
  5197. visibility:hidden;
  5198. word-wrap:break-word;
  5199. }
  5200. #u1019 {
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:0px;
  5205. height:0px;
  5206. }
  5207. #u1020_div {
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:318px;
  5212. height:50px;
  5213. background:inherit;
  5214. background-color:rgba(255, 255, 255, 1);
  5215. box-sizing:border-box;
  5216. border-width:1px;
  5217. border-style:solid;
  5218. border-color:rgba(229, 229, 229, 1);
  5219. border-left:0px;
  5220. border-right:0px;
  5221. border-radius:0px;
  5222. border-top-left-radius:0px;
  5223. border-top-right-radius:0px;
  5224. border-bottom-right-radius:0px;
  5225. border-bottom-left-radius:0px;
  5226. -moz-box-shadow:none;
  5227. -webkit-box-shadow:none;
  5228. box-shadow:none;
  5229. font-size:16px;
  5230. color:#333333;
  5231. text-align:left;
  5232. }
  5233. #u1020 {
  5234. position:absolute;
  5235. left:486px;
  5236. top:1340px;
  5237. width:318px;
  5238. height:50px;
  5239. font-size:16px;
  5240. color:#333333;
  5241. text-align:left;
  5242. }
  5243. #u1020_div.selected {
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:318px;
  5248. height:50px;
  5249. background:inherit;
  5250. background-color:rgba(255, 255, 255, 1);
  5251. box-sizing:border-box;
  5252. border-width:1px;
  5253. border-style:solid;
  5254. border-color:rgba(45, 183, 245, 1);
  5255. border-left:0px;
  5256. border-right:0px;
  5257. border-radius:0px;
  5258. border-top-left-radius:0px;
  5259. border-top-right-radius:0px;
  5260. border-bottom-right-radius:0px;
  5261. border-bottom-left-radius:0px;
  5262. -moz-box-shadow:none;
  5263. -webkit-box-shadow:none;
  5264. box-shadow:none;
  5265. font-size:16px;
  5266. color:#333333;
  5267. text-align:left;
  5268. }
  5269. #u1020.selected {
  5270. }
  5271. #u1021 {
  5272. position:absolute;
  5273. left:10px;
  5274. top:17px;
  5275. width:308px;
  5276. visibility:hidden;
  5277. word-wrap:break-word;
  5278. }
  5279. #u1022_div {
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:300px;
  5284. height:50px;
  5285. background:inherit;
  5286. background-color:rgba(255, 255, 255, 0);
  5287. box-sizing:border-box;
  5288. border-width:1px;
  5289. border-style:solid;
  5290. border-color:rgba(229, 229, 229, 1);
  5291. border-left:0px;
  5292. border-top:0px;
  5293. border-right:0px;
  5294. border-radius:0px;
  5295. border-top-left-radius:0px;
  5296. border-top-right-radius:0px;
  5297. border-bottom-right-radius:0px;
  5298. border-bottom-left-radius:0px;
  5299. -moz-box-shadow:none;
  5300. -webkit-box-shadow:none;
  5301. box-shadow:none;
  5302. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5303. font-weight:200;
  5304. font-style:normal;
  5305. font-size:14px;
  5306. color:#000000;
  5307. text-align:left;
  5308. }
  5309. #u1022 {
  5310. position:absolute;
  5311. left:495px;
  5312. top:1340px;
  5313. width:300px;
  5314. height:50px;
  5315. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5316. font-weight:200;
  5317. font-style:normal;
  5318. font-size:14px;
  5319. color:#000000;
  5320. text-align:left;
  5321. }
  5322. #u1022_div.selected {
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:300px;
  5327. height:50px;
  5328. background:inherit;
  5329. background-color:rgba(255, 255, 255, 0);
  5330. box-sizing:border-box;
  5331. border-width:1px;
  5332. border-style:solid;
  5333. border-color:rgba(45, 183, 245, 1);
  5334. border-left:0px;
  5335. border-top:0px;
  5336. border-right:0px;
  5337. border-radius:0px;
  5338. border-top-left-radius:0px;
  5339. border-top-right-radius:0px;
  5340. border-bottom-right-radius:0px;
  5341. border-bottom-left-radius:0px;
  5342. -moz-box-shadow:none;
  5343. -webkit-box-shadow:none;
  5344. box-shadow:none;
  5345. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5346. font-weight:200;
  5347. font-style:normal;
  5348. font-size:14px;
  5349. color:#000000;
  5350. text-align:left;
  5351. }
  5352. #u1022.selected {
  5353. }
  5354. #u1023 {
  5355. position:absolute;
  5356. left:0px;
  5357. top:15px;
  5358. width:300px;
  5359. word-wrap:break-word;
  5360. }
  5361. #u1024_img {
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:6px;
  5366. height:12px;
  5367. }
  5368. #u1024 {
  5369. position:absolute;
  5370. left:789px;
  5371. top:1360px;
  5372. width:6px;
  5373. height:12px;
  5374. -webkit-transform:rotate(180deg);
  5375. -moz-transform:rotate(180deg);
  5376. -ms-transform:rotate(180deg);
  5377. transform:rotate(180deg);
  5378. }
  5379. #u1025 {
  5380. position:absolute;
  5381. left:2px;
  5382. top:-2px;
  5383. width:2px;
  5384. visibility:hidden;
  5385. word-wrap:break-word;
  5386. }
  5387. #u1026 {
  5388. position:absolute;
  5389. left:0px;
  5390. top:0px;
  5391. width:0px;
  5392. height:0px;
  5393. }
  5394. #u1027_div {
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:318px;
  5399. height:50px;
  5400. background:inherit;
  5401. background-color:rgba(255, 255, 255, 1);
  5402. box-sizing:border-box;
  5403. border-width:1px;
  5404. border-style:solid;
  5405. border-color:rgba(229, 229, 229, 1);
  5406. border-left:0px;
  5407. border-right:0px;
  5408. border-radius:0px;
  5409. border-top-left-radius:0px;
  5410. border-top-right-radius:0px;
  5411. border-bottom-right-radius:0px;
  5412. border-bottom-left-radius:0px;
  5413. -moz-box-shadow:none;
  5414. -webkit-box-shadow:none;
  5415. box-shadow:none;
  5416. font-size:16px;
  5417. color:#333333;
  5418. text-align:left;
  5419. }
  5420. #u1027 {
  5421. position:absolute;
  5422. left:486px;
  5423. top:1291px;
  5424. width:318px;
  5425. height:50px;
  5426. font-size:16px;
  5427. color:#333333;
  5428. text-align:left;
  5429. }
  5430. #u1027_div.selected {
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:318px;
  5435. height:50px;
  5436. background:inherit;
  5437. background-color:rgba(255, 255, 255, 1);
  5438. box-sizing:border-box;
  5439. border-width:1px;
  5440. border-style:solid;
  5441. border-color:rgba(45, 183, 245, 1);
  5442. border-left:0px;
  5443. border-right:0px;
  5444. border-radius:0px;
  5445. border-top-left-radius:0px;
  5446. border-top-right-radius:0px;
  5447. border-bottom-right-radius:0px;
  5448. border-bottom-left-radius:0px;
  5449. -moz-box-shadow:none;
  5450. -webkit-box-shadow:none;
  5451. box-shadow:none;
  5452. font-size:16px;
  5453. color:#333333;
  5454. text-align:left;
  5455. }
  5456. #u1027.selected {
  5457. }
  5458. #u1028 {
  5459. position:absolute;
  5460. left:10px;
  5461. top:17px;
  5462. width:308px;
  5463. visibility:hidden;
  5464. word-wrap:break-word;
  5465. }
  5466. #u1029_div {
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:300px;
  5471. height:50px;
  5472. background:inherit;
  5473. background-color:rgba(255, 255, 255, 0);
  5474. box-sizing:border-box;
  5475. border-width:1px;
  5476. border-style:solid;
  5477. border-color:rgba(229, 229, 229, 1);
  5478. border-left:0px;
  5479. border-top:0px;
  5480. border-right:0px;
  5481. border-radius:0px;
  5482. border-top-left-radius:0px;
  5483. border-top-right-radius:0px;
  5484. border-bottom-right-radius:0px;
  5485. border-bottom-left-radius:0px;
  5486. -moz-box-shadow:none;
  5487. -webkit-box-shadow:none;
  5488. box-shadow:none;
  5489. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5490. font-weight:200;
  5491. font-style:normal;
  5492. font-size:14px;
  5493. color:#000000;
  5494. text-align:left;
  5495. }
  5496. #u1029 {
  5497. position:absolute;
  5498. left:495px;
  5499. top:1291px;
  5500. width:300px;
  5501. height:50px;
  5502. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5503. font-weight:200;
  5504. font-style:normal;
  5505. font-size:14px;
  5506. color:#000000;
  5507. text-align:left;
  5508. }
  5509. #u1029_div.selected {
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:300px;
  5514. height:50px;
  5515. background:inherit;
  5516. background-color:rgba(255, 255, 255, 0);
  5517. box-sizing:border-box;
  5518. border-width:1px;
  5519. border-style:solid;
  5520. border-color:rgba(45, 183, 245, 1);
  5521. border-left:0px;
  5522. border-top:0px;
  5523. border-right:0px;
  5524. border-radius:0px;
  5525. border-top-left-radius:0px;
  5526. border-top-right-radius:0px;
  5527. border-bottom-right-radius:0px;
  5528. border-bottom-left-radius:0px;
  5529. -moz-box-shadow:none;
  5530. -webkit-box-shadow:none;
  5531. box-shadow:none;
  5532. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5533. font-weight:200;
  5534. font-style:normal;
  5535. font-size:14px;
  5536. color:#000000;
  5537. text-align:left;
  5538. }
  5539. #u1029.selected {
  5540. }
  5541. #u1030 {
  5542. position:absolute;
  5543. left:0px;
  5544. top:15px;
  5545. width:300px;
  5546. word-wrap:break-word;
  5547. }
  5548. #u1031_img {
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:6px;
  5553. height:12px;
  5554. }
  5555. #u1031 {
  5556. position:absolute;
  5557. left:789px;
  5558. top:1311px;
  5559. width:6px;
  5560. height:12px;
  5561. -webkit-transform:rotate(180deg);
  5562. -moz-transform:rotate(180deg);
  5563. -ms-transform:rotate(180deg);
  5564. transform:rotate(180deg);
  5565. }
  5566. #u1032 {
  5567. position:absolute;
  5568. left:2px;
  5569. top:-2px;
  5570. width:2px;
  5571. visibility:hidden;
  5572. word-wrap:break-word;
  5573. }
  5574. #u1033 {
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:0px;
  5579. height:0px;
  5580. }
  5581. #u1034_div {
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:318px;
  5586. height:50px;
  5587. background:inherit;
  5588. background-color:rgba(255, 255, 255, 1);
  5589. box-sizing:border-box;
  5590. border-width:1px;
  5591. border-style:solid;
  5592. border-color:rgba(229, 229, 229, 1);
  5593. border-left:0px;
  5594. border-right:0px;
  5595. border-radius:0px;
  5596. border-top-left-radius:0px;
  5597. border-top-right-radius:0px;
  5598. border-bottom-right-radius:0px;
  5599. border-bottom-left-radius:0px;
  5600. -moz-box-shadow:none;
  5601. -webkit-box-shadow:none;
  5602. box-shadow:none;
  5603. font-size:16px;
  5604. color:#333333;
  5605. text-align:left;
  5606. }
  5607. #u1034 {
  5608. position:absolute;
  5609. left:486px;
  5610. top:1492px;
  5611. width:318px;
  5612. height:50px;
  5613. font-size:16px;
  5614. color:#333333;
  5615. text-align:left;
  5616. }
  5617. #u1034_div.selected {
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:318px;
  5622. height:50px;
  5623. background:inherit;
  5624. background-color:rgba(255, 255, 255, 1);
  5625. box-sizing:border-box;
  5626. border-width:1px;
  5627. border-style:solid;
  5628. border-color:rgba(45, 183, 245, 1);
  5629. border-left:0px;
  5630. border-right:0px;
  5631. border-radius:0px;
  5632. border-top-left-radius:0px;
  5633. border-top-right-radius:0px;
  5634. border-bottom-right-radius:0px;
  5635. border-bottom-left-radius:0px;
  5636. -moz-box-shadow:none;
  5637. -webkit-box-shadow:none;
  5638. box-shadow:none;
  5639. font-size:16px;
  5640. color:#333333;
  5641. text-align:left;
  5642. }
  5643. #u1034.selected {
  5644. }
  5645. #u1035 {
  5646. position:absolute;
  5647. left:10px;
  5648. top:17px;
  5649. width:308px;
  5650. visibility:hidden;
  5651. word-wrap:break-word;
  5652. }
  5653. #u1036_div {
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:300px;
  5658. height:50px;
  5659. background:inherit;
  5660. background-color:rgba(255, 255, 255, 0);
  5661. box-sizing:border-box;
  5662. border-width:1px;
  5663. border-style:solid;
  5664. border-color:rgba(229, 229, 229, 1);
  5665. border-left:0px;
  5666. border-top:0px;
  5667. border-right:0px;
  5668. border-radius:0px;
  5669. border-top-left-radius:0px;
  5670. border-top-right-radius:0px;
  5671. border-bottom-right-radius:0px;
  5672. border-bottom-left-radius:0px;
  5673. -moz-box-shadow:none;
  5674. -webkit-box-shadow:none;
  5675. box-shadow:none;
  5676. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5677. font-weight:200;
  5678. font-style:normal;
  5679. font-size:14px;
  5680. color:#000000;
  5681. text-align:left;
  5682. }
  5683. #u1036 {
  5684. position:absolute;
  5685. left:495px;
  5686. top:1492px;
  5687. width:300px;
  5688. height:50px;
  5689. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5690. font-weight:200;
  5691. font-style:normal;
  5692. font-size:14px;
  5693. color:#000000;
  5694. text-align:left;
  5695. }
  5696. #u1036_div.selected {
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:300px;
  5701. height:50px;
  5702. background:inherit;
  5703. background-color:rgba(255, 255, 255, 0);
  5704. box-sizing:border-box;
  5705. border-width:1px;
  5706. border-style:solid;
  5707. border-color:rgba(45, 183, 245, 1);
  5708. border-left:0px;
  5709. border-top:0px;
  5710. border-right:0px;
  5711. border-radius:0px;
  5712. border-top-left-radius:0px;
  5713. border-top-right-radius:0px;
  5714. border-bottom-right-radius:0px;
  5715. border-bottom-left-radius:0px;
  5716. -moz-box-shadow:none;
  5717. -webkit-box-shadow:none;
  5718. box-shadow:none;
  5719. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5720. font-weight:200;
  5721. font-style:normal;
  5722. font-size:14px;
  5723. color:#000000;
  5724. text-align:left;
  5725. }
  5726. #u1036.selected {
  5727. }
  5728. #u1037 {
  5729. position:absolute;
  5730. left:0px;
  5731. top:15px;
  5732. width:300px;
  5733. word-wrap:break-word;
  5734. }
  5735. #u1038_img {
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:6px;
  5740. height:12px;
  5741. }
  5742. #u1038 {
  5743. position:absolute;
  5744. left:789px;
  5745. top:1512px;
  5746. width:6px;
  5747. height:12px;
  5748. -webkit-transform:rotate(180deg);
  5749. -moz-transform:rotate(180deg);
  5750. -ms-transform:rotate(180deg);
  5751. transform:rotate(180deg);
  5752. }
  5753. #u1039 {
  5754. position:absolute;
  5755. left:2px;
  5756. top:-2px;
  5757. width:2px;
  5758. visibility:hidden;
  5759. word-wrap:break-word;
  5760. }
  5761. #u1040_div {
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:318px;
  5766. height:86px;
  5767. background:inherit;
  5768. background-color:rgba(208, 225, 125, 1);
  5769. border:none;
  5770. border-radius:0px;
  5771. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5772. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5773. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5774. }
  5775. #u1040 {
  5776. position:absolute;
  5777. left:486px;
  5778. top:1682px;
  5779. width:318px;
  5780. height:86px;
  5781. }
  5782. #u1041 {
  5783. position:absolute;
  5784. left:10px;
  5785. top:10px;
  5786. width:298px;
  5787. word-wrap:break-word;
  5788. }
  5789. #u1042_div {
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:212px;
  5794. height:33px;
  5795. background:inherit;
  5796. background-color:rgba(255, 255, 255, 0);
  5797. border:none;
  5798. border-radius:0px;
  5799. -moz-box-shadow:none;
  5800. -webkit-box-shadow:none;
  5801. box-shadow:none;
  5802. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  5803. font-weight:700;
  5804. font-style:normal;
  5805. }
  5806. #u1042 {
  5807. position:absolute;
  5808. left:919px;
  5809. top:1029px;
  5810. width:212px;
  5811. height:33px;
  5812. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  5813. font-weight:700;
  5814. font-style:normal;
  5815. }
  5816. #u1043 {
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:212px;
  5821. white-space:nowrap;
  5822. }
  5823. #u1044_div {
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:174px;
  5828. height:32px;
  5829. background:inherit;
  5830. background-color:rgba(51, 51, 51, 1);
  5831. box-sizing:border-box;
  5832. border-width:1px;
  5833. border-style:solid;
  5834. border-color:rgba(121, 121, 121, 1);
  5835. border-radius:5px;
  5836. -moz-box-shadow:none;
  5837. -webkit-box-shadow:none;
  5838. box-shadow:none;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC';
  5840. font-weight:400;
  5841. font-style:normal;
  5842. color:#FFFFFF;
  5843. }
  5844. #u1044 {
  5845. position:absolute;
  5846. left:929px;
  5847. top:1775px;
  5848. width:174px;
  5849. height:32px;
  5850. font-family:'PingFangSC-Regular', 'PingFang SC';
  5851. font-weight:400;
  5852. font-style:normal;
  5853. color:#FFFFFF;
  5854. }
  5855. #u1045 {
  5856. position:absolute;
  5857. left:2px;
  5858. top:7px;
  5859. width:170px;
  5860. word-wrap:break-word;
  5861. }
  5862. #u1046 {
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:0px;
  5867. height:0px;
  5868. }
  5869. #u1047_div {
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:320px;
  5874. height:561px;
  5875. background:inherit;
  5876. background-color:rgba(242, 242, 242, 1);
  5877. box-sizing:border-box;
  5878. border-width:1px;
  5879. border-style:solid;
  5880. border-color:rgba(0, 0, 0, 1);
  5881. border-radius:0px;
  5882. -moz-box-shadow:none;
  5883. -webkit-box-shadow:none;
  5884. box-shadow:none;
  5885. }
  5886. #u1047 {
  5887. position:absolute;
  5888. left:919px;
  5889. top:1093px;
  5890. width:320px;
  5891. height:561px;
  5892. }
  5893. #u1048 {
  5894. position:absolute;
  5895. left:2px;
  5896. top:272px;
  5897. width:316px;
  5898. visibility:hidden;
  5899. word-wrap:break-word;
  5900. }
  5901. #u1049 {
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:0px;
  5906. height:0px;
  5907. }
  5908. #u1050_div {
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:318px;
  5913. height:17px;
  5914. background:inherit;
  5915. background-color:rgba(255, 255, 255, 1);
  5916. border:none;
  5917. border-radius:0px;
  5918. -moz-box-shadow:none;
  5919. -webkit-box-shadow:none;
  5920. box-shadow:none;
  5921. }
  5922. #u1050 {
  5923. position:absolute;
  5924. left:920px;
  5925. top:1094px;
  5926. width:318px;
  5927. height:17px;
  5928. }
  5929. #u1051 {
  5930. position:absolute;
  5931. left:2px;
  5932. top:0px;
  5933. width:314px;
  5934. visibility:hidden;
  5935. word-wrap:break-word;
  5936. }
  5937. #u1052_img {
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:318px;
  5942. height:17px;
  5943. }
  5944. #u1052 {
  5945. position:absolute;
  5946. left:920px;
  5947. top:1094px;
  5948. width:318px;
  5949. height:17px;
  5950. }
  5951. #u1053 {
  5952. position:absolute;
  5953. left:2px;
  5954. top:0px;
  5955. width:314px;
  5956. visibility:hidden;
  5957. word-wrap:break-word;
  5958. }
  5959. #u1054 {
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:0px;
  5964. height:0px;
  5965. }
  5966. #u1055_div {
  5967. position:absolute;
  5968. left:0px;
  5969. top:0px;
  5970. width:318px;
  5971. height:40px;
  5972. background:inherit;
  5973. background-color:rgba(255, 255, 255, 1);
  5974. box-sizing:border-box;
  5975. border-width:1px;
  5976. border-style:solid;
  5977. border-color:rgba(228, 228, 228, 1);
  5978. border-left:0px;
  5979. border-top:0px;
  5980. border-right:0px;
  5981. border-radius:0px;
  5982. border-top-left-radius:0px;
  5983. border-top-right-radius:0px;
  5984. border-bottom-right-radius:0px;
  5985. border-bottom-left-radius:0px;
  5986. -moz-box-shadow:none;
  5987. -webkit-box-shadow:none;
  5988. box-shadow:none;
  5989. font-family:'PingFangSC-Regular', 'PingFang SC';
  5990. font-weight:400;
  5991. font-style:normal;
  5992. font-size:14px;
  5993. text-align:left;
  5994. }
  5995. #u1055 {
  5996. position:absolute;
  5997. left:920px;
  5998. top:1111px;
  5999. width:318px;
  6000. height:40px;
  6001. font-family:'PingFangSC-Regular', 'PingFang SC';
  6002. font-weight:400;
  6003. font-style:normal;
  6004. font-size:14px;
  6005. text-align:left;
  6006. }
  6007. #u1056 {
  6008. position:absolute;
  6009. left:0px;
  6010. top:10px;
  6011. width:318px;
  6012. word-wrap:break-word;
  6013. }
  6014. #u1057_img {
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:10px;
  6019. height:16px;
  6020. }
  6021. #u1057 {
  6022. position:absolute;
  6023. left:930px;
  6024. top:1123px;
  6025. width:10px;
  6026. height:16px;
  6027. }
  6028. #u1058 {
  6029. position:absolute;
  6030. left:2px;
  6031. top:0px;
  6032. width:6px;
  6033. visibility:hidden;
  6034. word-wrap:break-word;
  6035. }
  6036. #u1059 {
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:0px;
  6041. height:0px;
  6042. }
  6043. #u1060_div {
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:50px;
  6048. height:26px;
  6049. background:inherit;
  6050. background-color:rgba(255, 255, 255, 1);
  6051. box-sizing:border-box;
  6052. border-width:1px;
  6053. border-style:solid;
  6054. border-color:rgba(204, 204, 204, 1);
  6055. border-radius:15px;
  6056. -moz-box-shadow:none;
  6057. -webkit-box-shadow:none;
  6058. box-shadow:none;
  6059. }
  6060. #u1060 {
  6061. position:absolute;
  6062. left:1178px;
  6063. top:1118px;
  6064. width:50px;
  6065. height:26px;
  6066. }
  6067. #u1061 {
  6068. position:absolute;
  6069. left:2px;
  6070. top:5px;
  6071. width:46px;
  6072. visibility:hidden;
  6073. word-wrap:break-word;
  6074. }
  6075. #u1062 {
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:0px;
  6080. height:0px;
  6081. }
  6082. #u1063_img {
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:3px;
  6087. height:3px;
  6088. }
  6089. #u1063 {
  6090. position:absolute;
  6091. left:1185px;
  6092. top:1130px;
  6093. width:3px;
  6094. height:3px;
  6095. -webkit-transform:rotate(45deg);
  6096. -moz-transform:rotate(45deg);
  6097. -ms-transform:rotate(45deg);
  6098. transform:rotate(45deg);
  6099. font-family:'MicrosoftYaHei', '微软雅黑';
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:18px;
  6103. }
  6104. #u1064 {
  6105. position:absolute;
  6106. left:0px;
  6107. top:-6px;
  6108. width:3px;
  6109. visibility:hidden;
  6110. word-wrap:break-word;
  6111. }
  6112. #u1065_img {
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:5px;
  6117. height:5px;
  6118. }
  6119. #u1065 {
  6120. position:absolute;
  6121. left:1189px;
  6122. top:1129px;
  6123. width:5px;
  6124. height:5px;
  6125. -webkit-transform:rotate(45deg);
  6126. -moz-transform:rotate(45deg);
  6127. -ms-transform:rotate(45deg);
  6128. transform:rotate(45deg);
  6129. font-family:'MicrosoftYaHei', '微软雅黑';
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:18px;
  6133. }
  6134. #u1066 {
  6135. position:absolute;
  6136. left:0px;
  6137. top:-6px;
  6138. width:5px;
  6139. visibility:hidden;
  6140. word-wrap:break-word;
  6141. }
  6142. #u1067_img {
  6143. position:absolute;
  6144. left:0px;
  6145. top:0px;
  6146. width:3px;
  6147. height:3px;
  6148. }
  6149. #u1067 {
  6150. position:absolute;
  6151. left:1195px;
  6152. top:1130px;
  6153. width:3px;
  6154. height:3px;
  6155. -webkit-transform:rotate(45deg);
  6156. -moz-transform:rotate(45deg);
  6157. -ms-transform:rotate(45deg);
  6158. transform:rotate(45deg);
  6159. font-family:'MicrosoftYaHei', '微软雅黑';
  6160. font-weight:400;
  6161. font-style:normal;
  6162. font-size:18px;
  6163. }
  6164. #u1068 {
  6165. position:absolute;
  6166. left:0px;
  6167. top:-6px;
  6168. width:3px;
  6169. visibility:hidden;
  6170. word-wrap:break-word;
  6171. }
  6172. #u1069_img {
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:2px;
  6177. height:19px;
  6178. }
  6179. #u1069 {
  6180. position:absolute;
  6181. left:1202px;
  6182. top:1122px;
  6183. width:1px;
  6184. height:18px;
  6185. }
  6186. #u1070 {
  6187. position:absolute;
  6188. left:2px;
  6189. top:1px;
  6190. width:1px;
  6191. visibility:hidden;
  6192. word-wrap:break-word;
  6193. }
  6194. #u1071_img {
  6195. position:absolute;
  6196. left:0px;
  6197. top:0px;
  6198. width:14px;
  6199. height:14px;
  6200. }
  6201. #u1071 {
  6202. position:absolute;
  6203. left:1208px;
  6204. top:1124px;
  6205. width:14px;
  6206. height:14px;
  6207. }
  6208. #u1072 {
  6209. position:absolute;
  6210. left:2px;
  6211. top:-1px;
  6212. width:10px;
  6213. visibility:hidden;
  6214. word-wrap:break-word;
  6215. }
  6216. #u1073_img {
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:6px;
  6221. height:6px;
  6222. }
  6223. #u1073 {
  6224. position:absolute;
  6225. left:1212px;
  6226. top:1128px;
  6227. width:6px;
  6228. height:6px;
  6229. }
  6230. #u1074 {
  6231. position:absolute;
  6232. left:2px;
  6233. top:-5px;
  6234. width:2px;
  6235. visibility:hidden;
  6236. word-wrap:break-word;
  6237. }
  6238. #u1075 {
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:0px;
  6243. height:0px;
  6244. }
  6245. #u1076_div {
  6246. position:absolute;
  6247. left:0px;
  6248. top:0px;
  6249. width:318px;
  6250. height:49px;
  6251. background:inherit;
  6252. background-color:rgba(247, 247, 250, 1);
  6253. box-sizing:border-box;
  6254. border-width:1px;
  6255. border-style:solid;
  6256. border-color:rgba(228, 228, 228, 1);
  6257. border-left:0px;
  6258. border-right:0px;
  6259. border-bottom:0px;
  6260. border-radius:0px;
  6261. border-top-left-radius:0px;
  6262. border-top-right-radius:0px;
  6263. border-bottom-right-radius:0px;
  6264. border-bottom-left-radius:0px;
  6265. -moz-box-shadow:none;
  6266. -webkit-box-shadow:none;
  6267. box-shadow:none;
  6268. font-size:16px;
  6269. color:#333333;
  6270. text-align:left;
  6271. }
  6272. #u1076 {
  6273. position:absolute;
  6274. left:920px;
  6275. top:1604px;
  6276. width:318px;
  6277. height:49px;
  6278. font-size:16px;
  6279. color:#333333;
  6280. text-align:left;
  6281. }
  6282. #u1076_div.selected {
  6283. position:absolute;
  6284. left:0px;
  6285. top:0px;
  6286. width:318px;
  6287. height:49px;
  6288. background:inherit;
  6289. background-color:rgba(247, 247, 250, 1);
  6290. box-sizing:border-box;
  6291. border-width:1px;
  6292. border-style:solid;
  6293. border-color:rgba(45, 183, 245, 1);
  6294. border-left:0px;
  6295. border-right:0px;
  6296. border-bottom:0px;
  6297. border-radius:0px;
  6298. border-top-left-radius:0px;
  6299. border-top-right-radius:0px;
  6300. border-bottom-right-radius:0px;
  6301. border-bottom-left-radius:0px;
  6302. -moz-box-shadow:none;
  6303. -webkit-box-shadow:none;
  6304. box-shadow:none;
  6305. font-size:16px;
  6306. color:#333333;
  6307. text-align:left;
  6308. }
  6309. #u1076.selected {
  6310. }
  6311. #u1077 {
  6312. position:absolute;
  6313. left:55px;
  6314. top:16px;
  6315. width:263px;
  6316. visibility:hidden;
  6317. word-wrap:break-word;
  6318. }
  6319. #u1078 {
  6320. position:absolute;
  6321. left:0px;
  6322. top:0px;
  6323. width:0px;
  6324. height:0px;
  6325. }
  6326. #u1079_div {
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:70px;
  6331. height:10px;
  6332. background:inherit;
  6333. background-color:rgba(255, 255, 255, 0);
  6334. border:none;
  6335. border-radius:0px;
  6336. -moz-box-shadow:none;
  6337. -webkit-box-shadow:none;
  6338. box-shadow:none;
  6339. font-family:'PingFangSC-Regular', 'PingFang SC';
  6340. font-weight:400;
  6341. font-style:normal;
  6342. font-size:10px;
  6343. color:#666666;
  6344. line-height:10px;
  6345. }
  6346. #u1079 {
  6347. position:absolute;
  6348. left:939px;
  6349. top:1639px;
  6350. width:70px;
  6351. height:10px;
  6352. font-family:'PingFangSC-Regular', 'PingFang SC';
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:10px;
  6356. color:#666666;
  6357. line-height:10px;
  6358. }
  6359. #u1080 {
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:70px;
  6364. word-wrap:break-word;
  6365. }
  6366. #u1081_img {
  6367. position:absolute;
  6368. left:0px;
  6369. top:0px;
  6370. width:27px;
  6371. height:27px;
  6372. }
  6373. #u1081 {
  6374. position:absolute;
  6375. left:960px;
  6376. top:1608px;
  6377. width:27px;
  6378. height:27px;
  6379. }
  6380. #u1082 {
  6381. position:absolute;
  6382. left:2px;
  6383. top:6px;
  6384. width:23px;
  6385. visibility:hidden;
  6386. word-wrap:break-word;
  6387. }
  6388. #u1083 {
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:0px;
  6393. height:0px;
  6394. }
  6395. #u1084_div {
  6396. position:absolute;
  6397. left:0px;
  6398. top:0px;
  6399. width:70px;
  6400. height:10px;
  6401. background:inherit;
  6402. background-color:rgba(255, 255, 255, 0);
  6403. border:none;
  6404. border-radius:0px;
  6405. -moz-box-shadow:none;
  6406. -webkit-box-shadow:none;
  6407. box-shadow:none;
  6408. font-family:'PingFangSC-Regular', 'PingFang SC';
  6409. font-weight:400;
  6410. font-style:normal;
  6411. font-size:10px;
  6412. color:#7F8389;
  6413. line-height:10px;
  6414. }
  6415. #u1084 {
  6416. position:absolute;
  6417. left:1044px;
  6418. top:1639px;
  6419. width:70px;
  6420. height:10px;
  6421. font-family:'PingFangSC-Regular', 'PingFang SC';
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:10px;
  6425. color:#7F8389;
  6426. line-height:10px;
  6427. }
  6428. #u1085 {
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:70px;
  6433. word-wrap:break-word;
  6434. }
  6435. #u1086_img {
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:27px;
  6440. height:27px;
  6441. }
  6442. #u1086 {
  6443. position:absolute;
  6444. left:1065px;
  6445. top:1608px;
  6446. width:27px;
  6447. height:27px;
  6448. }
  6449. #u1087 {
  6450. position:absolute;
  6451. left:2px;
  6452. top:6px;
  6453. width:23px;
  6454. visibility:hidden;
  6455. word-wrap:break-word;
  6456. }
  6457. #u1088 {
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:0px;
  6462. height:0px;
  6463. }
  6464. #u1089_div {
  6465. position:absolute;
  6466. left:0px;
  6467. top:0px;
  6468. width:70px;
  6469. height:10px;
  6470. background:inherit;
  6471. background-color:rgba(255, 255, 255, 0);
  6472. border:none;
  6473. border-radius:0px;
  6474. -moz-box-shadow:none;
  6475. -webkit-box-shadow:none;
  6476. box-shadow:none;
  6477. font-family:'PingFangSC-Regular', 'PingFang SC';
  6478. font-weight:400;
  6479. font-style:normal;
  6480. font-size:10px;
  6481. color:#009900;
  6482. line-height:10px;
  6483. }
  6484. #u1089 {
  6485. position:absolute;
  6486. left:1149px;
  6487. top:1639px;
  6488. width:70px;
  6489. height:10px;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC';
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:10px;
  6494. color:#009900;
  6495. line-height:10px;
  6496. }
  6497. #u1090 {
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:70px;
  6502. word-wrap:break-word;
  6503. }
  6504. #u1091_img {
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:27px;
  6509. height:27px;
  6510. }
  6511. #u1091 {
  6512. position:absolute;
  6513. left:1170px;
  6514. top:1608px;
  6515. width:27px;
  6516. height:27px;
  6517. }
  6518. #u1092 {
  6519. position:absolute;
  6520. left:2px;
  6521. top:6px;
  6522. width:23px;
  6523. visibility:hidden;
  6524. word-wrap:break-word;
  6525. }
  6526. #u1093 {
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:0px;
  6531. height:0px;
  6532. }
  6533. #u1094_div {
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:318px;
  6538. height:50px;
  6539. background:inherit;
  6540. background-color:rgba(255, 255, 255, 1);
  6541. box-sizing:border-box;
  6542. border-width:1px;
  6543. border-style:solid;
  6544. border-color:rgba(229, 229, 229, 1);
  6545. border-left:0px;
  6546. border-right:0px;
  6547. border-radius:0px;
  6548. border-top-left-radius:0px;
  6549. border-top-right-radius:0px;
  6550. border-bottom-right-radius:0px;
  6551. border-bottom-left-radius:0px;
  6552. -moz-box-shadow:none;
  6553. -webkit-box-shadow:none;
  6554. box-shadow:none;
  6555. font-size:16px;
  6556. color:#333333;
  6557. text-align:left;
  6558. }
  6559. #u1094 {
  6560. position:absolute;
  6561. left:920px;
  6562. top:1389px;
  6563. width:318px;
  6564. height:50px;
  6565. font-size:16px;
  6566. color:#333333;
  6567. text-align:left;
  6568. }
  6569. #u1094_div.selected {
  6570. position:absolute;
  6571. left:0px;
  6572. top:0px;
  6573. width:318px;
  6574. height:50px;
  6575. background:inherit;
  6576. background-color:rgba(255, 255, 255, 1);
  6577. box-sizing:border-box;
  6578. border-width:1px;
  6579. border-style:solid;
  6580. border-color:rgba(45, 183, 245, 1);
  6581. border-left:0px;
  6582. border-right:0px;
  6583. border-radius:0px;
  6584. border-top-left-radius:0px;
  6585. border-top-right-radius:0px;
  6586. border-bottom-right-radius:0px;
  6587. border-bottom-left-radius:0px;
  6588. -moz-box-shadow:none;
  6589. -webkit-box-shadow:none;
  6590. box-shadow:none;
  6591. font-size:16px;
  6592. color:#333333;
  6593. text-align:left;
  6594. }
  6595. #u1094.selected {
  6596. }
  6597. #u1095 {
  6598. position:absolute;
  6599. left:10px;
  6600. top:17px;
  6601. width:308px;
  6602. visibility:hidden;
  6603. word-wrap:break-word;
  6604. }
  6605. #u1096_div {
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:300px;
  6610. height:50px;
  6611. background:inherit;
  6612. background-color:rgba(255, 255, 255, 0);
  6613. box-sizing:border-box;
  6614. border-width:1px;
  6615. border-style:solid;
  6616. border-color:rgba(229, 229, 229, 1);
  6617. border-left:0px;
  6618. border-top:0px;
  6619. border-right:0px;
  6620. border-radius:0px;
  6621. border-top-left-radius:0px;
  6622. border-top-right-radius:0px;
  6623. border-bottom-right-radius:0px;
  6624. border-bottom-left-radius:0px;
  6625. -moz-box-shadow:none;
  6626. -webkit-box-shadow:none;
  6627. box-shadow:none;
  6628. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6629. font-weight:200;
  6630. font-style:normal;
  6631. font-size:14px;
  6632. color:#000000;
  6633. text-align:left;
  6634. }
  6635. #u1096 {
  6636. position:absolute;
  6637. left:929px;
  6638. top:1389px;
  6639. width:300px;
  6640. height:50px;
  6641. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6642. font-weight:200;
  6643. font-style:normal;
  6644. font-size:14px;
  6645. color:#000000;
  6646. text-align:left;
  6647. }
  6648. #u1096_div.selected {
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:300px;
  6653. height:50px;
  6654. background:inherit;
  6655. background-color:rgba(255, 255, 255, 0);
  6656. box-sizing:border-box;
  6657. border-width:1px;
  6658. border-style:solid;
  6659. border-color:rgba(45, 183, 245, 1);
  6660. border-left:0px;
  6661. border-top:0px;
  6662. border-right:0px;
  6663. border-radius:0px;
  6664. border-top-left-radius:0px;
  6665. border-top-right-radius:0px;
  6666. border-bottom-right-radius:0px;
  6667. border-bottom-left-radius:0px;
  6668. -moz-box-shadow:none;
  6669. -webkit-box-shadow:none;
  6670. box-shadow:none;
  6671. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6672. font-weight:200;
  6673. font-style:normal;
  6674. font-size:14px;
  6675. color:#000000;
  6676. text-align:left;
  6677. }
  6678. #u1096.selected {
  6679. }
  6680. #u1097 {
  6681. position:absolute;
  6682. left:0px;
  6683. top:15px;
  6684. width:300px;
  6685. word-wrap:break-word;
  6686. }
  6687. #u1098_img {
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:6px;
  6692. height:12px;
  6693. }
  6694. #u1098 {
  6695. position:absolute;
  6696. left:1223px;
  6697. top:1409px;
  6698. width:6px;
  6699. height:12px;
  6700. -webkit-transform:rotate(180deg);
  6701. -moz-transform:rotate(180deg);
  6702. -ms-transform:rotate(180deg);
  6703. transform:rotate(180deg);
  6704. }
  6705. #u1099 {
  6706. position:absolute;
  6707. left:2px;
  6708. top:-2px;
  6709. width:2px;
  6710. visibility:hidden;
  6711. word-wrap:break-word;
  6712. }
  6713. #u1100 {
  6714. position:absolute;
  6715. left:0px;
  6716. top:0px;
  6717. width:0px;
  6718. height:0px;
  6719. }
  6720. #u1101_div {
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:318px;
  6725. height:50px;
  6726. background:inherit;
  6727. background-color:rgba(255, 255, 255, 1);
  6728. box-sizing:border-box;
  6729. border-width:1px;
  6730. border-style:solid;
  6731. border-color:rgba(229, 229, 229, 1);
  6732. border-left:0px;
  6733. border-right:0px;
  6734. border-radius:0px;
  6735. border-top-left-radius:0px;
  6736. border-top-right-radius:0px;
  6737. border-bottom-right-radius:0px;
  6738. border-bottom-left-radius:0px;
  6739. -moz-box-shadow:none;
  6740. -webkit-box-shadow:none;
  6741. box-shadow:none;
  6742. font-size:16px;
  6743. color:#333333;
  6744. text-align:left;
  6745. }
  6746. #u1101 {
  6747. position:absolute;
  6748. left:920px;
  6749. top:1443px;
  6750. width:318px;
  6751. height:50px;
  6752. font-size:16px;
  6753. color:#333333;
  6754. text-align:left;
  6755. }
  6756. #u1101_div.selected {
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:318px;
  6761. height:50px;
  6762. background:inherit;
  6763. background-color:rgba(255, 255, 255, 1);
  6764. box-sizing:border-box;
  6765. border-width:1px;
  6766. border-style:solid;
  6767. border-color:rgba(45, 183, 245, 1);
  6768. border-left:0px;
  6769. border-right:0px;
  6770. border-radius:0px;
  6771. border-top-left-radius:0px;
  6772. border-top-right-radius:0px;
  6773. border-bottom-right-radius:0px;
  6774. border-bottom-left-radius:0px;
  6775. -moz-box-shadow:none;
  6776. -webkit-box-shadow:none;
  6777. box-shadow:none;
  6778. font-size:16px;
  6779. color:#333333;
  6780. text-align:left;
  6781. }
  6782. #u1101.selected {
  6783. }
  6784. #u1102 {
  6785. position:absolute;
  6786. left:10px;
  6787. top:17px;
  6788. width:308px;
  6789. visibility:hidden;
  6790. word-wrap:break-word;
  6791. }
  6792. #u1103_div {
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:300px;
  6797. height:50px;
  6798. background:inherit;
  6799. background-color:rgba(255, 255, 255, 0);
  6800. box-sizing:border-box;
  6801. border-width:1px;
  6802. border-style:solid;
  6803. border-color:rgba(229, 229, 229, 1);
  6804. border-left:0px;
  6805. border-top:0px;
  6806. border-right:0px;
  6807. border-radius:0px;
  6808. border-top-left-radius:0px;
  6809. border-top-right-radius:0px;
  6810. border-bottom-right-radius:0px;
  6811. border-bottom-left-radius:0px;
  6812. -moz-box-shadow:none;
  6813. -webkit-box-shadow:none;
  6814. box-shadow:none;
  6815. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6816. font-weight:200;
  6817. font-style:normal;
  6818. font-size:14px;
  6819. color:#000000;
  6820. text-align:left;
  6821. }
  6822. #u1103 {
  6823. position:absolute;
  6824. left:929px;
  6825. top:1443px;
  6826. width:300px;
  6827. height:50px;
  6828. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6829. font-weight:200;
  6830. font-style:normal;
  6831. font-size:14px;
  6832. color:#000000;
  6833. text-align:left;
  6834. }
  6835. #u1103_div.selected {
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:300px;
  6840. height:50px;
  6841. background:inherit;
  6842. background-color:rgba(255, 255, 255, 0);
  6843. box-sizing:border-box;
  6844. border-width:1px;
  6845. border-style:solid;
  6846. border-color:rgba(45, 183, 245, 1);
  6847. border-left:0px;
  6848. border-top:0px;
  6849. border-right:0px;
  6850. border-radius:0px;
  6851. border-top-left-radius:0px;
  6852. border-top-right-radius:0px;
  6853. border-bottom-right-radius:0px;
  6854. border-bottom-left-radius:0px;
  6855. -moz-box-shadow:none;
  6856. -webkit-box-shadow:none;
  6857. box-shadow:none;
  6858. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6859. font-weight:200;
  6860. font-style:normal;
  6861. font-size:14px;
  6862. color:#000000;
  6863. text-align:left;
  6864. }
  6865. #u1103.selected {
  6866. }
  6867. #u1104 {
  6868. position:absolute;
  6869. left:0px;
  6870. top:15px;
  6871. width:300px;
  6872. word-wrap:break-word;
  6873. }
  6874. #u1105_img {
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:6px;
  6879. height:12px;
  6880. }
  6881. #u1105 {
  6882. position:absolute;
  6883. left:1223px;
  6884. top:1463px;
  6885. width:6px;
  6886. height:12px;
  6887. -webkit-transform:rotate(180deg);
  6888. -moz-transform:rotate(180deg);
  6889. -ms-transform:rotate(180deg);
  6890. transform:rotate(180deg);
  6891. }
  6892. #u1106 {
  6893. position:absolute;
  6894. left:2px;
  6895. top:-2px;
  6896. width:2px;
  6897. visibility:hidden;
  6898. word-wrap:break-word;
  6899. }
  6900. #u1107 {
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:0px;
  6905. height:0px;
  6906. }
  6907. #u1108_div {
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:318px;
  6912. height:50px;
  6913. background:inherit;
  6914. background-color:rgba(255, 255, 255, 1);
  6915. box-sizing:border-box;
  6916. border-width:1px;
  6917. border-style:solid;
  6918. border-color:rgba(229, 229, 229, 1);
  6919. border-left:0px;
  6920. border-right:0px;
  6921. border-radius:0px;
  6922. border-top-left-radius:0px;
  6923. border-top-right-radius:0px;
  6924. border-bottom-right-radius:0px;
  6925. border-bottom-left-radius:0px;
  6926. -moz-box-shadow:none;
  6927. -webkit-box-shadow:none;
  6928. box-shadow:none;
  6929. font-size:16px;
  6930. color:#333333;
  6931. text-align:left;
  6932. }
  6933. #u1108 {
  6934. position:absolute;
  6935. left:920px;
  6936. top:1340px;
  6937. width:318px;
  6938. height:50px;
  6939. font-size:16px;
  6940. color:#333333;
  6941. text-align:left;
  6942. }
  6943. #u1108_div.selected {
  6944. position:absolute;
  6945. left:0px;
  6946. top:0px;
  6947. width:318px;
  6948. height:50px;
  6949. background:inherit;
  6950. background-color:rgba(255, 255, 255, 1);
  6951. box-sizing:border-box;
  6952. border-width:1px;
  6953. border-style:solid;
  6954. border-color:rgba(45, 183, 245, 1);
  6955. border-left:0px;
  6956. border-right:0px;
  6957. border-radius:0px;
  6958. border-top-left-radius:0px;
  6959. border-top-right-radius:0px;
  6960. border-bottom-right-radius:0px;
  6961. border-bottom-left-radius:0px;
  6962. -moz-box-shadow:none;
  6963. -webkit-box-shadow:none;
  6964. box-shadow:none;
  6965. font-size:16px;
  6966. color:#333333;
  6967. text-align:left;
  6968. }
  6969. #u1108.selected {
  6970. }
  6971. #u1109 {
  6972. position:absolute;
  6973. left:10px;
  6974. top:17px;
  6975. width:308px;
  6976. visibility:hidden;
  6977. word-wrap:break-word;
  6978. }
  6979. #u1110_div {
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:300px;
  6984. height:50px;
  6985. background:inherit;
  6986. background-color:rgba(255, 255, 255, 0);
  6987. box-sizing:border-box;
  6988. border-width:1px;
  6989. border-style:solid;
  6990. border-color:rgba(229, 229, 229, 1);
  6991. border-left:0px;
  6992. border-top:0px;
  6993. border-right:0px;
  6994. border-radius:0px;
  6995. border-top-left-radius:0px;
  6996. border-top-right-radius:0px;
  6997. border-bottom-right-radius:0px;
  6998. border-bottom-left-radius:0px;
  6999. -moz-box-shadow:none;
  7000. -webkit-box-shadow:none;
  7001. box-shadow:none;
  7002. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7003. font-weight:200;
  7004. font-style:normal;
  7005. font-size:14px;
  7006. color:#000000;
  7007. text-align:left;
  7008. }
  7009. #u1110 {
  7010. position:absolute;
  7011. left:929px;
  7012. top:1340px;
  7013. width:300px;
  7014. height:50px;
  7015. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7016. font-weight:200;
  7017. font-style:normal;
  7018. font-size:14px;
  7019. color:#000000;
  7020. text-align:left;
  7021. }
  7022. #u1110_div.selected {
  7023. position:absolute;
  7024. left:0px;
  7025. top:0px;
  7026. width:300px;
  7027. height:50px;
  7028. background:inherit;
  7029. background-color:rgba(255, 255, 255, 0);
  7030. box-sizing:border-box;
  7031. border-width:1px;
  7032. border-style:solid;
  7033. border-color:rgba(45, 183, 245, 1);
  7034. border-left:0px;
  7035. border-top:0px;
  7036. border-right:0px;
  7037. border-radius:0px;
  7038. border-top-left-radius:0px;
  7039. border-top-right-radius:0px;
  7040. border-bottom-right-radius:0px;
  7041. border-bottom-left-radius:0px;
  7042. -moz-box-shadow:none;
  7043. -webkit-box-shadow:none;
  7044. box-shadow:none;
  7045. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7046. font-weight:200;
  7047. font-style:normal;
  7048. font-size:14px;
  7049. color:#000000;
  7050. text-align:left;
  7051. }
  7052. #u1110.selected {
  7053. }
  7054. #u1111 {
  7055. position:absolute;
  7056. left:0px;
  7057. top:15px;
  7058. width:300px;
  7059. word-wrap:break-word;
  7060. }
  7061. #u1112_img {
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:6px;
  7066. height:12px;
  7067. }
  7068. #u1112 {
  7069. position:absolute;
  7070. left:1223px;
  7071. top:1360px;
  7072. width:6px;
  7073. height:12px;
  7074. -webkit-transform:rotate(180deg);
  7075. -moz-transform:rotate(180deg);
  7076. -ms-transform:rotate(180deg);
  7077. transform:rotate(180deg);
  7078. }
  7079. #u1113 {
  7080. position:absolute;
  7081. left:2px;
  7082. top:-2px;
  7083. width:2px;
  7084. visibility:hidden;
  7085. word-wrap:break-word;
  7086. }
  7087. #u1114 {
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:0px;
  7092. height:0px;
  7093. }
  7094. #u1115_div {
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:318px;
  7099. height:50px;
  7100. background:inherit;
  7101. background-color:rgba(255, 255, 255, 1);
  7102. box-sizing:border-box;
  7103. border-width:1px;
  7104. border-style:solid;
  7105. border-color:rgba(229, 229, 229, 1);
  7106. border-left:0px;
  7107. border-right:0px;
  7108. border-radius:0px;
  7109. border-top-left-radius:0px;
  7110. border-top-right-radius:0px;
  7111. border-bottom-right-radius:0px;
  7112. border-bottom-left-radius:0px;
  7113. -moz-box-shadow:none;
  7114. -webkit-box-shadow:none;
  7115. box-shadow:none;
  7116. font-size:16px;
  7117. color:#333333;
  7118. text-align:left;
  7119. }
  7120. #u1115 {
  7121. position:absolute;
  7122. left:920px;
  7123. top:1291px;
  7124. width:318px;
  7125. height:50px;
  7126. font-size:16px;
  7127. color:#333333;
  7128. text-align:left;
  7129. }
  7130. #u1115_div.selected {
  7131. position:absolute;
  7132. left:0px;
  7133. top:0px;
  7134. width:318px;
  7135. height:50px;
  7136. background:inherit;
  7137. background-color:rgba(255, 255, 255, 1);
  7138. box-sizing:border-box;
  7139. border-width:1px;
  7140. border-style:solid;
  7141. border-color:rgba(45, 183, 245, 1);
  7142. border-left:0px;
  7143. border-right:0px;
  7144. border-radius:0px;
  7145. border-top-left-radius:0px;
  7146. border-top-right-radius:0px;
  7147. border-bottom-right-radius:0px;
  7148. border-bottom-left-radius:0px;
  7149. -moz-box-shadow:none;
  7150. -webkit-box-shadow:none;
  7151. box-shadow:none;
  7152. font-size:16px;
  7153. color:#333333;
  7154. text-align:left;
  7155. }
  7156. #u1115.selected {
  7157. }
  7158. #u1116 {
  7159. position:absolute;
  7160. left:10px;
  7161. top:17px;
  7162. width:308px;
  7163. visibility:hidden;
  7164. word-wrap:break-word;
  7165. }
  7166. #u1117_div {
  7167. position:absolute;
  7168. left:0px;
  7169. top:0px;
  7170. width:300px;
  7171. height:50px;
  7172. background:inherit;
  7173. background-color:rgba(255, 255, 255, 0);
  7174. box-sizing:border-box;
  7175. border-width:1px;
  7176. border-style:solid;
  7177. border-color:rgba(229, 229, 229, 1);
  7178. border-left:0px;
  7179. border-top:0px;
  7180. border-right:0px;
  7181. border-radius:0px;
  7182. border-top-left-radius:0px;
  7183. border-top-right-radius:0px;
  7184. border-bottom-right-radius:0px;
  7185. border-bottom-left-radius:0px;
  7186. -moz-box-shadow:none;
  7187. -webkit-box-shadow:none;
  7188. box-shadow:none;
  7189. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7190. font-weight:200;
  7191. font-style:normal;
  7192. font-size:14px;
  7193. color:#000000;
  7194. text-align:left;
  7195. }
  7196. #u1117 {
  7197. position:absolute;
  7198. left:929px;
  7199. top:1291px;
  7200. width:300px;
  7201. height:50px;
  7202. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7203. font-weight:200;
  7204. font-style:normal;
  7205. font-size:14px;
  7206. color:#000000;
  7207. text-align:left;
  7208. }
  7209. #u1117_div.selected {
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:300px;
  7214. height:50px;
  7215. background:inherit;
  7216. background-color:rgba(255, 255, 255, 0);
  7217. box-sizing:border-box;
  7218. border-width:1px;
  7219. border-style:solid;
  7220. border-color:rgba(45, 183, 245, 1);
  7221. border-left:0px;
  7222. border-top:0px;
  7223. border-right:0px;
  7224. border-radius:0px;
  7225. border-top-left-radius:0px;
  7226. border-top-right-radius:0px;
  7227. border-bottom-right-radius:0px;
  7228. border-bottom-left-radius:0px;
  7229. -moz-box-shadow:none;
  7230. -webkit-box-shadow:none;
  7231. box-shadow:none;
  7232. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7233. font-weight:200;
  7234. font-style:normal;
  7235. font-size:14px;
  7236. color:#000000;
  7237. text-align:left;
  7238. }
  7239. #u1117.selected {
  7240. }
  7241. #u1118 {
  7242. position:absolute;
  7243. left:0px;
  7244. top:15px;
  7245. width:300px;
  7246. word-wrap:break-word;
  7247. }
  7248. #u1119_img {
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:6px;
  7253. height:12px;
  7254. }
  7255. #u1119 {
  7256. position:absolute;
  7257. left:1223px;
  7258. top:1311px;
  7259. width:6px;
  7260. height:12px;
  7261. -webkit-transform:rotate(180deg);
  7262. -moz-transform:rotate(180deg);
  7263. -ms-transform:rotate(180deg);
  7264. transform:rotate(180deg);
  7265. }
  7266. #u1120 {
  7267. position:absolute;
  7268. left:2px;
  7269. top:-2px;
  7270. width:2px;
  7271. visibility:hidden;
  7272. word-wrap:break-word;
  7273. }
  7274. #u1121 {
  7275. position:absolute;
  7276. left:0px;
  7277. top:0px;
  7278. width:0px;
  7279. height:0px;
  7280. }
  7281. #u1122_div {
  7282. position:absolute;
  7283. left:0px;
  7284. top:0px;
  7285. width:318px;
  7286. height:50px;
  7287. background:inherit;
  7288. background-color:rgba(255, 255, 255, 1);
  7289. box-sizing:border-box;
  7290. border-width:1px;
  7291. border-style:solid;
  7292. border-color:rgba(229, 229, 229, 1);
  7293. border-left:0px;
  7294. border-right:0px;
  7295. border-radius:0px;
  7296. border-top-left-radius:0px;
  7297. border-top-right-radius:0px;
  7298. border-bottom-right-radius:0px;
  7299. border-bottom-left-radius:0px;
  7300. -moz-box-shadow:none;
  7301. -webkit-box-shadow:none;
  7302. box-shadow:none;
  7303. font-size:16px;
  7304. color:#333333;
  7305. text-align:left;
  7306. }
  7307. #u1122 {
  7308. position:absolute;
  7309. left:920px;
  7310. top:1492px;
  7311. width:318px;
  7312. height:50px;
  7313. font-size:16px;
  7314. color:#333333;
  7315. text-align:left;
  7316. }
  7317. #u1122_div.selected {
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:318px;
  7322. height:50px;
  7323. background:inherit;
  7324. background-color:rgba(255, 255, 255, 1);
  7325. box-sizing:border-box;
  7326. border-width:1px;
  7327. border-style:solid;
  7328. border-color:rgba(45, 183, 245, 1);
  7329. border-left:0px;
  7330. border-right:0px;
  7331. border-radius:0px;
  7332. border-top-left-radius:0px;
  7333. border-top-right-radius:0px;
  7334. border-bottom-right-radius:0px;
  7335. border-bottom-left-radius:0px;
  7336. -moz-box-shadow:none;
  7337. -webkit-box-shadow:none;
  7338. box-shadow:none;
  7339. font-size:16px;
  7340. color:#333333;
  7341. text-align:left;
  7342. }
  7343. #u1122.selected {
  7344. }
  7345. #u1123 {
  7346. position:absolute;
  7347. left:10px;
  7348. top:17px;
  7349. width:308px;
  7350. visibility:hidden;
  7351. word-wrap:break-word;
  7352. }
  7353. #u1124_div {
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:300px;
  7358. height:50px;
  7359. background:inherit;
  7360. background-color:rgba(255, 255, 255, 0);
  7361. box-sizing:border-box;
  7362. border-width:1px;
  7363. border-style:solid;
  7364. border-color:rgba(229, 229, 229, 1);
  7365. border-left:0px;
  7366. border-top:0px;
  7367. border-right:0px;
  7368. border-radius:0px;
  7369. border-top-left-radius:0px;
  7370. border-top-right-radius:0px;
  7371. border-bottom-right-radius:0px;
  7372. border-bottom-left-radius:0px;
  7373. -moz-box-shadow:none;
  7374. -webkit-box-shadow:none;
  7375. box-shadow:none;
  7376. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7377. font-weight:200;
  7378. font-style:normal;
  7379. font-size:14px;
  7380. color:#000000;
  7381. text-align:left;
  7382. }
  7383. #u1124 {
  7384. position:absolute;
  7385. left:929px;
  7386. top:1492px;
  7387. width:300px;
  7388. height:50px;
  7389. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7390. font-weight:200;
  7391. font-style:normal;
  7392. font-size:14px;
  7393. color:#000000;
  7394. text-align:left;
  7395. }
  7396. #u1124_div.selected {
  7397. position:absolute;
  7398. left:0px;
  7399. top:0px;
  7400. width:300px;
  7401. height:50px;
  7402. background:inherit;
  7403. background-color:rgba(255, 255, 255, 0);
  7404. box-sizing:border-box;
  7405. border-width:1px;
  7406. border-style:solid;
  7407. border-color:rgba(45, 183, 245, 1);
  7408. border-left:0px;
  7409. border-top:0px;
  7410. border-right:0px;
  7411. border-radius:0px;
  7412. border-top-left-radius:0px;
  7413. border-top-right-radius:0px;
  7414. border-bottom-right-radius:0px;
  7415. border-bottom-left-radius:0px;
  7416. -moz-box-shadow:none;
  7417. -webkit-box-shadow:none;
  7418. box-shadow:none;
  7419. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7420. font-weight:200;
  7421. font-style:normal;
  7422. font-size:14px;
  7423. color:#000000;
  7424. text-align:left;
  7425. }
  7426. #u1124.selected {
  7427. }
  7428. #u1125 {
  7429. position:absolute;
  7430. left:0px;
  7431. top:15px;
  7432. width:300px;
  7433. word-wrap:break-word;
  7434. }
  7435. #u1126_img {
  7436. position:absolute;
  7437. left:0px;
  7438. top:0px;
  7439. width:6px;
  7440. height:12px;
  7441. }
  7442. #u1126 {
  7443. position:absolute;
  7444. left:1223px;
  7445. top:1512px;
  7446. width:6px;
  7447. height:12px;
  7448. -webkit-transform:rotate(180deg);
  7449. -moz-transform:rotate(180deg);
  7450. -ms-transform:rotate(180deg);
  7451. transform:rotate(180deg);
  7452. }
  7453. #u1127 {
  7454. position:absolute;
  7455. left:2px;
  7456. top:-2px;
  7457. width:2px;
  7458. visibility:hidden;
  7459. word-wrap:break-word;
  7460. }
  7461. #u1128_div {
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:310px;
  7466. height:131px;
  7467. background:inherit;
  7468. background-color:rgba(51, 51, 51, 1);
  7469. box-sizing:border-box;
  7470. border-width:1px;
  7471. border-style:solid;
  7472. border-color:rgba(121, 121, 121, 1);
  7473. border-radius:5px;
  7474. -moz-box-shadow:none;
  7475. -webkit-box-shadow:none;
  7476. box-shadow:none;
  7477. font-family:'PingFangSC-Regular', 'PingFang SC';
  7478. font-weight:400;
  7479. font-style:normal;
  7480. color:#FFFFFF;
  7481. }
  7482. #u1128 {
  7483. position:absolute;
  7484. left:924px;
  7485. top:1154px;
  7486. width:310px;
  7487. height:131px;
  7488. font-family:'PingFangSC-Regular', 'PingFang SC';
  7489. font-weight:400;
  7490. font-style:normal;
  7491. color:#FFFFFF;
  7492. }
  7493. #u1129 {
  7494. position:absolute;
  7495. left:2px;
  7496. top:58px;
  7497. width:306px;
  7498. visibility:hidden;
  7499. word-wrap:break-word;
  7500. }
  7501. #u1130_div {
  7502. position:absolute;
  7503. left:0px;
  7504. top:0px;
  7505. width:149px;
  7506. height:17px;
  7507. background:inherit;
  7508. background-color:rgba(255, 255, 255, 0);
  7509. border:none;
  7510. border-radius:0px;
  7511. -moz-box-shadow:none;
  7512. -webkit-box-shadow:none;
  7513. box-shadow:none;
  7514. font-size:12px;
  7515. color:#FFFFFF;
  7516. }
  7517. #u1130 {
  7518. position:absolute;
  7519. left:937px;
  7520. top:1260px;
  7521. width:149px;
  7522. height:17px;
  7523. font-size:12px;
  7524. color:#FFFFFF;
  7525. }
  7526. #u1131 {
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:149px;
  7531. white-space:nowrap;
  7532. }
  7533. #u1132_div {
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:69px;
  7538. height:17px;
  7539. background:inherit;
  7540. background-color:rgba(255, 255, 255, 1);
  7541. box-sizing:border-box;
  7542. border-width:1px;
  7543. border-style:solid;
  7544. border-color:rgba(121, 121, 121, 1);
  7545. border-radius:70px;
  7546. -moz-box-shadow:none;
  7547. -webkit-box-shadow:none;
  7548. box-shadow:none;
  7549. font-family:'PingFangSC-Regular', 'PingFang SC';
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:11px;
  7553. }
  7554. #u1132 {
  7555. position:absolute;
  7556. left:1160px;
  7557. top:1260px;
  7558. width:69px;
  7559. height:17px;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC';
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:11px;
  7564. }
  7565. #u1133 {
  7566. position:absolute;
  7567. left:2px;
  7568. top:0px;
  7569. width:65px;
  7570. word-wrap:break-word;
  7571. }
  7572. #u1134_div {
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:318px;
  7577. height:72px;
  7578. background:inherit;
  7579. background-color:rgba(208, 225, 125, 1);
  7580. border:none;
  7581. border-radius:0px;
  7582. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7583. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7584. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7585. }
  7586. #u1134 {
  7587. position:absolute;
  7588. left:920px;
  7589. top:1682px;
  7590. width:318px;
  7591. height:72px;
  7592. }
  7593. #u1135 {
  7594. position:absolute;
  7595. left:10px;
  7596. top:10px;
  7597. width:298px;
  7598. word-wrap:break-word;
  7599. }
  7600. #u1136_div {
  7601. position:absolute;
  7602. left:0px;
  7603. top:0px;
  7604. width:318px;
  7605. height:309px;
  7606. background:inherit;
  7607. background-color:rgba(208, 225, 125, 1);
  7608. border:none;
  7609. border-radius:0px;
  7610. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7611. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7612. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7613. }
  7614. #u1136 {
  7615. position:absolute;
  7616. left:920px;
  7617. top:1832px;
  7618. width:318px;
  7619. height:309px;
  7620. }
  7621. #u1137 {
  7622. position:absolute;
  7623. left:10px;
  7624. top:10px;
  7625. width:298px;
  7626. word-wrap:break-word;
  7627. }
  7628. #u1138_div {
  7629. position:absolute;
  7630. left:0px;
  7631. top:0px;
  7632. width:84px;
  7633. height:22px;
  7634. background:inherit;
  7635. background-color:rgba(255, 255, 255, 0);
  7636. border:none;
  7637. border-radius:0px;
  7638. -moz-box-shadow:none;
  7639. -webkit-box-shadow:none;
  7640. box-shadow:none;
  7641. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7642. font-weight:200;
  7643. font-style:normal;
  7644. font-size:16px;
  7645. color:#FFFFFF;
  7646. text-align:center;
  7647. }
  7648. #u1138 {
  7649. position:absolute;
  7650. left:998px;
  7651. top:1181px;
  7652. width:84px;
  7653. height:22px;
  7654. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7655. font-weight:200;
  7656. font-style:normal;
  7657. font-size:16px;
  7658. color:#FFFFFF;
  7659. text-align:center;
  7660. }
  7661. #u1139 {
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:84px;
  7666. word-wrap:break-word;
  7667. }
  7668. #u1140 {
  7669. position:absolute;
  7670. left:0px;
  7671. top:0px;
  7672. width:0px;
  7673. height:0px;
  7674. }
  7675. #u1141_div {
  7676. position:absolute;
  7677. left:0px;
  7678. top:0px;
  7679. width:126px;
  7680. height:18px;
  7681. background:inherit;
  7682. background-color:rgba(255, 255, 255, 0);
  7683. border:none;
  7684. border-radius:0px;
  7685. -moz-box-shadow:none;
  7686. -webkit-box-shadow:none;
  7687. box-shadow:none;
  7688. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7689. font-weight:200;
  7690. font-style:normal;
  7691. font-size:13px;
  7692. color:#FFFFFF;
  7693. text-align:center;
  7694. }
  7695. #u1141 {
  7696. position:absolute;
  7697. left:998px;
  7698. top:1219px;
  7699. width:126px;
  7700. height:18px;
  7701. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7702. font-weight:200;
  7703. font-style:normal;
  7704. font-size:13px;
  7705. color:#FFFFFF;
  7706. text-align:center;
  7707. }
  7708. #u1142 {
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:126px;
  7713. word-wrap:break-word;
  7714. }
  7715. #u1143_img {
  7716. position:absolute;
  7717. left:0px;
  7718. top:0px;
  7719. width:56px;
  7720. height:56px;
  7721. }
  7722. #u1143 {
  7723. position:absolute;
  7724. left:938px;
  7725. top:1181px;
  7726. width:56px;
  7727. height:56px;
  7728. }
  7729. #u1144 {
  7730. position:absolute;
  7731. left:2px;
  7732. top:20px;
  7733. width:52px;
  7734. visibility:hidden;
  7735. word-wrap:break-word;
  7736. }
  7737. #u1145_img {
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:18px;
  7742. height:18px;
  7743. }
  7744. #u1145 {
  7745. position:absolute;
  7746. left:1201px;
  7747. top:1166px;
  7748. width:18px;
  7749. height:18px;
  7750. }
  7751. #u1146 {
  7752. position:absolute;
  7753. left:2px;
  7754. top:1px;
  7755. width:14px;
  7756. visibility:hidden;
  7757. word-wrap:break-word;
  7758. }
  7759. #u1147_img {
  7760. position:absolute;
  7761. left:0px;
  7762. top:0px;
  7763. width:23px;
  7764. height:20px;
  7765. }
  7766. #u1147 {
  7767. position:absolute;
  7768. left:968px;
  7769. top:1217px;
  7770. width:23px;
  7771. height:20px;
  7772. }
  7773. #u1148 {
  7774. position:absolute;
  7775. left:2px;
  7776. top:2px;
  7777. width:19px;
  7778. visibility:hidden;
  7779. word-wrap:break-word;
  7780. }
  7781. #u1149_div {
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:310px;
  7786. height:131px;
  7787. background:inherit;
  7788. background-color:rgba(51, 51, 51, 1);
  7789. box-sizing:border-box;
  7790. border-width:1px;
  7791. border-style:solid;
  7792. border-color:rgba(121, 121, 121, 1);
  7793. border-radius:5px;
  7794. -moz-box-shadow:none;
  7795. -webkit-box-shadow:none;
  7796. box-shadow:none;
  7797. font-family:'PingFangSC-Regular', 'PingFang SC';
  7798. font-weight:400;
  7799. font-style:normal;
  7800. color:#FFFFFF;
  7801. }
  7802. #u1149 {
  7803. position:absolute;
  7804. left:490px;
  7805. top:1158px;
  7806. width:310px;
  7807. height:131px;
  7808. font-family:'PingFangSC-Regular', 'PingFang SC';
  7809. font-weight:400;
  7810. font-style:normal;
  7811. color:#FFFFFF;
  7812. }
  7813. #u1150 {
  7814. position:absolute;
  7815. left:2px;
  7816. top:58px;
  7817. width:306px;
  7818. visibility:hidden;
  7819. word-wrap:break-word;
  7820. }
  7821. #u1151_div {
  7822. position:absolute;
  7823. left:0px;
  7824. top:0px;
  7825. width:128px;
  7826. height:17px;
  7827. background:inherit;
  7828. background-color:rgba(255, 255, 255, 0);
  7829. border:none;
  7830. border-radius:0px;
  7831. -moz-box-shadow:none;
  7832. -webkit-box-shadow:none;
  7833. box-shadow:none;
  7834. font-size:12px;
  7835. color:#FFFFFF;
  7836. }
  7837. #u1151 {
  7838. position:absolute;
  7839. left:503px;
  7840. top:1264px;
  7841. width:128px;
  7842. height:17px;
  7843. font-size:12px;
  7844. color:#FFFFFF;
  7845. }
  7846. #u1152 {
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:128px;
  7851. white-space:nowrap;
  7852. }
  7853. #u1153_div {
  7854. position:absolute;
  7855. left:0px;
  7856. top:0px;
  7857. width:69px;
  7858. height:17px;
  7859. background:inherit;
  7860. background-color:rgba(255, 255, 255, 1);
  7861. box-sizing:border-box;
  7862. border-width:1px;
  7863. border-style:solid;
  7864. border-color:rgba(121, 121, 121, 1);
  7865. border-radius:70px;
  7866. -moz-box-shadow:none;
  7867. -webkit-box-shadow:none;
  7868. box-shadow:none;
  7869. font-size:11px;
  7870. }
  7871. #u1153 {
  7872. position:absolute;
  7873. left:726px;
  7874. top:1264px;
  7875. width:69px;
  7876. height:17px;
  7877. font-size:11px;
  7878. }
  7879. #u1154 {
  7880. position:absolute;
  7881. left:2px;
  7882. top:0px;
  7883. width:65px;
  7884. word-wrap:break-word;
  7885. }
  7886. #u1155_div {
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:84px;
  7891. height:22px;
  7892. background:inherit;
  7893. background-color:rgba(255, 255, 255, 0);
  7894. border:none;
  7895. border-radius:0px;
  7896. -moz-box-shadow:none;
  7897. -webkit-box-shadow:none;
  7898. box-shadow:none;
  7899. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7900. font-weight:200;
  7901. font-style:normal;
  7902. font-size:16px;
  7903. color:#FFFFFF;
  7904. text-align:center;
  7905. }
  7906. #u1155 {
  7907. position:absolute;
  7908. left:564px;
  7909. top:1185px;
  7910. width:84px;
  7911. height:22px;
  7912. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7913. font-weight:200;
  7914. font-style:normal;
  7915. font-size:16px;
  7916. color:#FFFFFF;
  7917. text-align:center;
  7918. }
  7919. #u1156 {
  7920. position:absolute;
  7921. left:0px;
  7922. top:0px;
  7923. width:84px;
  7924. word-wrap:break-word;
  7925. }
  7926. #u1157 {
  7927. position:absolute;
  7928. left:0px;
  7929. top:0px;
  7930. width:0px;
  7931. height:0px;
  7932. }
  7933. #u1158_div {
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:126px;
  7938. height:18px;
  7939. background:inherit;
  7940. background-color:rgba(255, 255, 255, 0);
  7941. border:none;
  7942. border-radius:0px;
  7943. -moz-box-shadow:none;
  7944. -webkit-box-shadow:none;
  7945. box-shadow:none;
  7946. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7947. font-weight:200;
  7948. font-style:normal;
  7949. font-size:13px;
  7950. color:#FFFFFF;
  7951. text-align:center;
  7952. }
  7953. #u1158 {
  7954. position:absolute;
  7955. left:564px;
  7956. top:1223px;
  7957. width:126px;
  7958. height:18px;
  7959. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7960. font-weight:200;
  7961. font-style:normal;
  7962. font-size:13px;
  7963. color:#FFFFFF;
  7964. text-align:center;
  7965. }
  7966. #u1159 {
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:126px;
  7971. word-wrap:break-word;
  7972. }
  7973. #u1160_img {
  7974. position:absolute;
  7975. left:0px;
  7976. top:0px;
  7977. width:56px;
  7978. height:56px;
  7979. }
  7980. #u1160 {
  7981. position:absolute;
  7982. left:504px;
  7983. top:1185px;
  7984. width:56px;
  7985. height:56px;
  7986. }
  7987. #u1161 {
  7988. position:absolute;
  7989. left:2px;
  7990. top:20px;
  7991. width:52px;
  7992. visibility:hidden;
  7993. word-wrap:break-word;
  7994. }
  7995. #u1162_img {
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:18px;
  8000. height:18px;
  8001. }
  8002. #u1162 {
  8003. position:absolute;
  8004. left:767px;
  8005. top:1170px;
  8006. width:18px;
  8007. height:18px;
  8008. }
  8009. #u1163 {
  8010. position:absolute;
  8011. left:2px;
  8012. top:1px;
  8013. width:14px;
  8014. visibility:hidden;
  8015. word-wrap:break-word;
  8016. }