styles.css 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-63px;
  6. width:4067px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u113957 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u113958_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u113958 {
  53. border-width:0px;
  54. position:absolute;
  55. left:63px;
  56. top:49px;
  57. width:1000px;
  58. height:1201px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u113958 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u113958_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u113959_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:200px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(215, 215, 215, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u113959 {
  107. border-width:0px;
  108. position:absolute;
  109. left:63px;
  110. top:49px;
  111. width:1000px;
  112. height:200px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u113959 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u113959_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u113960_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:83px;
  141. height:35px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-top:0px;
  146. border-right:0px;
  147. border-bottom:0px;
  148. border-radius:0px;
  149. border-top-left-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  155. font-weight:500;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u113960 {
  160. border-width:0px;
  161. position:absolute;
  162. left:83px;
  163. top:67px;
  164. width:83px;
  165. height:35px;
  166. display:flex;
  167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  168. font-weight:500;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u113960 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u113960_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u113961 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u113962_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:40px;
  198. height:40px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 0);
  201. border:none;
  202. border-top:0px;
  203. border-right:0px;
  204. border-bottom:0px;
  205. border-radius:0px;
  206. border-top-left-radius:0px;
  207. border-bottom-left-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  212. font-weight:500;
  213. font-style:normal;
  214. font-size:14px;
  215. text-align:center;
  216. }
  217. #u113962 {
  218. border-width:0px;
  219. position:absolute;
  220. left:1023px;
  221. top:49px;
  222. width:40px;
  223. height:40px;
  224. display:flex;
  225. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  226. font-weight:500;
  227. font-style:normal;
  228. font-size:14px;
  229. text-align:center;
  230. }
  231. #u113962 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:5px 10px 5px 0px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u113962_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. }
  243. #u113963_img {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:13px;
  249. height:13px;
  250. }
  251. #u113963 {
  252. border-width:0px;
  253. position:absolute;
  254. left:1011px;
  255. top:65px;
  256. width:13px;
  257. height:13px;
  258. display:flex;
  259. font-size:14px;
  260. }
  261. #u113963 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:2px 2px 2px 2px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u113963_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. visibility:hidden;
  273. }
  274. #u113964_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:227px;
  280. height:43px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border:none;
  284. border-top:0px;
  285. border-right:0px;
  286. border-bottom:0px;
  287. border-radius:0px;
  288. border-top-left-radius:0px;
  289. border-bottom-left-radius:0px;
  290. -moz-box-shadow:none;
  291. -webkit-box-shadow:none;
  292. box-shadow:none;
  293. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  294. font-weight:500;
  295. font-style:normal;
  296. font-size:24px;
  297. }
  298. #u113964 {
  299. border-width:0px;
  300. position:absolute;
  301. left:93px;
  302. top:118px;
  303. width:227px;
  304. height:43px;
  305. display:flex;
  306. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  307. font-weight:500;
  308. font-style:normal;
  309. font-size:24px;
  310. }
  311. #u113964 .text {
  312. position:absolute;
  313. align-self:center;
  314. padding:5px 10px 5px 0px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u113964_text {
  319. border-width:0px;
  320. white-space:nowrap;
  321. text-transform:none;
  322. }
  323. #u113965_div {
  324. border-width:0px;
  325. position:absolute;
  326. left:0px;
  327. top:0px;
  328. width:325px;
  329. height:60px;
  330. background:inherit;
  331. background-color:rgba(255, 255, 255, 0);
  332. border:none;
  333. border-left:0px;
  334. border-top:0px;
  335. border-right:0px;
  336. border-radius:0px;
  337. border-bottom-right-radius:0px;
  338. border-bottom-left-radius:0px;
  339. -moz-box-shadow:none;
  340. -webkit-box-shadow:none;
  341. box-shadow:none;
  342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  343. font-weight:400;
  344. font-style:normal;
  345. font-size:14px;
  346. line-height:30px;
  347. }
  348. #u113965 {
  349. border-width:0px;
  350. position:absolute;
  351. left:93px;
  352. top:171px;
  353. width:325px;
  354. height:60px;
  355. display:flex;
  356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  357. font-weight:400;
  358. font-style:normal;
  359. font-size:14px;
  360. line-height:30px;
  361. }
  362. #u113965 .text {
  363. position:absolute;
  364. align-self:flex-start;
  365. padding:0px 0px 0px 0px;
  366. box-sizing:border-box;
  367. width:100%;
  368. }
  369. #u113965_text {
  370. border-width:0px;
  371. word-wrap:break-word;
  372. text-transform:none;
  373. }
  374. #u113966_div {
  375. border-width:0px;
  376. position:absolute;
  377. left:0px;
  378. top:0px;
  379. width:97px;
  380. height:25px;
  381. background:inherit;
  382. background-color:rgba(255, 255, 255, 0);
  383. border:none;
  384. border-radius:0px;
  385. -moz-box-shadow:none;
  386. -webkit-box-shadow:none;
  387. box-shadow:none;
  388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  389. font-weight:400;
  390. font-style:normal;
  391. font-size:12px;
  392. color:#B8741A;
  393. line-height:25px;
  394. }
  395. #u113966 {
  396. border-width:0px;
  397. position:absolute;
  398. left:772px;
  399. top:206px;
  400. width:97px;
  401. height:25px;
  402. display:flex;
  403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  404. font-weight:400;
  405. font-style:normal;
  406. font-size:12px;
  407. color:#B8741A;
  408. line-height:25px;
  409. }
  410. #u113966 .text {
  411. position:absolute;
  412. align-self:flex-start;
  413. padding:0px 0px 0px 0px;
  414. box-sizing:border-box;
  415. width:100%;
  416. }
  417. #u113966_text {
  418. border-width:0px;
  419. white-space:nowrap;
  420. text-transform:none;
  421. }
  422. #u113967_div {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:1000px;
  428. height:336px;
  429. background:inherit;
  430. background-color:rgba(255, 255, 255, 1);
  431. box-sizing:border-box;
  432. border-width:1px;
  433. border-style:solid;
  434. border-color:rgba(215, 215, 215, 1);
  435. border-radius:0px;
  436. -moz-box-shadow:none;
  437. -webkit-box-shadow:none;
  438. box-shadow:none;
  439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  440. font-weight:400;
  441. font-style:normal;
  442. font-size:14px;
  443. color:#AAAAAA;
  444. text-align:center;
  445. line-height:30px;
  446. }
  447. #u113967 {
  448. border-width:0px;
  449. position:absolute;
  450. left:63px;
  451. top:259px;
  452. width:1000px;
  453. height:336px;
  454. display:flex;
  455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  456. font-weight:400;
  457. font-style:normal;
  458. font-size:14px;
  459. color:#AAAAAA;
  460. text-align:center;
  461. line-height:30px;
  462. }
  463. #u113967 .text {
  464. position:absolute;
  465. align-self:center;
  466. padding:5px 10px 5px 10px;
  467. box-sizing:border-box;
  468. width:100%;
  469. }
  470. #u113967_text {
  471. border-width:0px;
  472. word-wrap:break-word;
  473. text-transform:none;
  474. visibility:hidden;
  475. }
  476. #u113968_div {
  477. border-width:0px;
  478. position:absolute;
  479. left:0px;
  480. top:0px;
  481. width:320px;
  482. height:90px;
  483. background:inherit;
  484. background-color:rgba(255, 255, 255, 0);
  485. border:none;
  486. border-left:0px;
  487. border-top:0px;
  488. border-right:0px;
  489. border-radius:0px;
  490. border-bottom-right-radius:0px;
  491. border-bottom-left-radius:0px;
  492. -moz-box-shadow:none;
  493. -webkit-box-shadow:none;
  494. box-shadow:none;
  495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  496. font-weight:400;
  497. font-style:normal;
  498. font-size:14px;
  499. line-height:30px;
  500. }
  501. #u113968 {
  502. border-width:0px;
  503. position:absolute;
  504. left:93px;
  505. top:292px;
  506. width:320px;
  507. height:90px;
  508. display:flex;
  509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  510. font-weight:400;
  511. font-style:normal;
  512. font-size:14px;
  513. line-height:30px;
  514. }
  515. #u113968 .text {
  516. position:absolute;
  517. align-self:flex-start;
  518. padding:0px 0px 0px 0px;
  519. box-sizing:border-box;
  520. width:100%;
  521. }
  522. #u113968_text {
  523. border-width:0px;
  524. word-wrap:break-word;
  525. text-transform:none;
  526. }
  527. #u113969 {
  528. border-width:0px;
  529. position:absolute;
  530. left:0px;
  531. top:0px;
  532. width:0px;
  533. height:0px;
  534. }
  535. #u113970_div {
  536. border-width:0px;
  537. position:absolute;
  538. left:0px;
  539. top:0px;
  540. width:1000px;
  541. height:645px;
  542. background:inherit;
  543. background-color:rgba(255, 255, 255, 1);
  544. box-sizing:border-box;
  545. border-width:1px;
  546. border-style:solid;
  547. border-color:rgba(215, 215, 215, 1);
  548. border-radius:0px;
  549. -moz-box-shadow:none;
  550. -webkit-box-shadow:none;
  551. box-shadow:none;
  552. }
  553. #u113970 {
  554. border-width:0px;
  555. position:absolute;
  556. left:63px;
  557. top:605px;
  558. width:1000px;
  559. height:645px;
  560. display:flex;
  561. }
  562. #u113970 .text {
  563. position:absolute;
  564. align-self:center;
  565. padding:2px 2px 2px 2px;
  566. box-sizing:border-box;
  567. width:100%;
  568. }
  569. #u113970_text {
  570. border-width:0px;
  571. word-wrap:break-word;
  572. text-transform:none;
  573. visibility:hidden;
  574. }
  575. #u113971_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:103px;
  581. height:24px;
  582. background:inherit;
  583. background-color:rgba(255, 255, 255, 0);
  584. border:none;
  585. border-top:0px;
  586. border-right:0px;
  587. border-bottom:0px;
  588. border-radius:0px;
  589. border-top-left-radius:0px;
  590. border-bottom-left-radius:0px;
  591. -moz-box-shadow:none;
  592. -webkit-box-shadow:none;
  593. box-shadow:none;
  594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  595. font-weight:400;
  596. font-style:normal;
  597. font-size:10px;
  598. color:#AAAAAA;
  599. }
  600. #u113971 {
  601. border-width:0px;
  602. position:absolute;
  603. left:318px;
  604. top:678px;
  605. width:103px;
  606. height:24px;
  607. display:flex;
  608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  609. font-weight:400;
  610. font-style:normal;
  611. font-size:10px;
  612. color:#AAAAAA;
  613. }
  614. #u113971 .text {
  615. position:absolute;
  616. align-self:flex-start;
  617. padding:5px 0px 5px 0px;
  618. box-sizing:border-box;
  619. width:100%;
  620. }
  621. #u113971_text {
  622. border-width:0px;
  623. white-space:nowrap;
  624. text-transform:none;
  625. }
  626. #u113972 {
  627. border-width:0px;
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:0px;
  632. height:0px;
  633. }
  634. #u113973_div {
  635. border-width:0px;
  636. position:absolute;
  637. left:0px;
  638. top:0px;
  639. width:43px;
  640. height:30px;
  641. background:inherit;
  642. background-color:rgba(255, 255, 255, 0);
  643. border:none;
  644. border-top:0px;
  645. border-right:0px;
  646. border-bottom:0px;
  647. border-radius:0px;
  648. border-top-left-radius:0px;
  649. border-bottom-left-radius:0px;
  650. -moz-box-shadow:none;
  651. -webkit-box-shadow:none;
  652. box-shadow:none;
  653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  654. font-weight:400;
  655. font-style:normal;
  656. font-size:14px;
  657. }
  658. #u113973 {
  659. border-width:0px;
  660. position:absolute;
  661. left:151px;
  662. top:680px;
  663. width:43px;
  664. height:30px;
  665. display:flex;
  666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  667. font-weight:400;
  668. font-style:normal;
  669. font-size:14px;
  670. }
  671. #u113973 .text {
  672. position:absolute;
  673. align-self:flex-start;
  674. padding:0px 0px 0px 0px;
  675. box-sizing:border-box;
  676. width:100%;
  677. }
  678. #u113973_text {
  679. border-width:0px;
  680. white-space:nowrap;
  681. text-transform:none;
  682. }
  683. #u113974_div {
  684. border-width:0px;
  685. position:absolute;
  686. left:0px;
  687. top:0px;
  688. width:12px;
  689. height:16px;
  690. background:inherit;
  691. background-color:rgba(255, 255, 255, 0);
  692. border:none;
  693. border-top:0px;
  694. border-right:0px;
  695. border-bottom:0px;
  696. border-radius:0px;
  697. border-top-left-radius:0px;
  698. border-bottom-left-radius:0px;
  699. -moz-box-shadow:none;
  700. -webkit-box-shadow:none;
  701. box-shadow:none;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:11px;
  706. color:#AAAAAA;
  707. }
  708. #u113974 {
  709. border-width:0px;
  710. position:absolute;
  711. left:151px;
  712. top:708px;
  713. width:12px;
  714. height:16px;
  715. display:flex;
  716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  717. font-weight:400;
  718. font-style:normal;
  719. font-size:11px;
  720. color:#AAAAAA;
  721. }
  722. #u113974 .text {
  723. position:absolute;
  724. align-self:flex-start;
  725. padding:0px 0px 0px 0px;
  726. box-sizing:border-box;
  727. width:100%;
  728. }
  729. #u113974_text {
  730. border-width:0px;
  731. white-space:nowrap;
  732. text-transform:none;
  733. }
  734. #u113975_div {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:43px;
  740. height:20px;
  741. background:inherit;
  742. background-color:rgba(255, 255, 255, 0);
  743. border:none;
  744. border-top:0px;
  745. border-right:0px;
  746. border-bottom:0px;
  747. border-radius:0px;
  748. border-top-left-radius:0px;
  749. border-bottom-left-radius:0px;
  750. -moz-box-shadow:none;
  751. -webkit-box-shadow:none;
  752. box-shadow:none;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. }
  758. #u113975 {
  759. border-width:0px;
  760. position:absolute;
  761. left:151px;
  762. top:750px;
  763. width:43px;
  764. height:20px;
  765. display:flex;
  766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  767. font-weight:400;
  768. font-style:normal;
  769. font-size:14px;
  770. }
  771. #u113975 .text {
  772. position:absolute;
  773. align-self:flex-start;
  774. padding:0px 0px 0px 0px;
  775. box-sizing:border-box;
  776. width:100%;
  777. }
  778. #u113975_text {
  779. border-width:0px;
  780. white-space:nowrap;
  781. text-transform:none;
  782. }
  783. #u113976_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:91px;
  789. height:16px;
  790. background:inherit;
  791. background-color:rgba(255, 255, 255, 0);
  792. border:none;
  793. border-top:0px;
  794. border-right:0px;
  795. border-bottom:0px;
  796. border-radius:0px;
  797. border-top-left-radius:0px;
  798. border-bottom-left-radius:0px;
  799. -moz-box-shadow:none;
  800. -webkit-box-shadow:none;
  801. box-shadow:none;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:11px;
  806. color:#AAAAAA;
  807. }
  808. #u113976 {
  809. border-width:0px;
  810. position:absolute;
  811. left:151px;
  812. top:778px;
  813. width:91px;
  814. height:16px;
  815. display:flex;
  816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  817. font-weight:400;
  818. font-style:normal;
  819. font-size:11px;
  820. color:#AAAAAA;
  821. }
  822. #u113976 .text {
  823. position:absolute;
  824. align-self:flex-start;
  825. padding:0px 0px 0px 0px;
  826. box-sizing:border-box;
  827. width:100%;
  828. }
  829. #u113976_text {
  830. border-width:0px;
  831. white-space:nowrap;
  832. text-transform:none;
  833. }
  834. #u113977_div {
  835. border-width:0px;
  836. position:absolute;
  837. left:0px;
  838. top:0px;
  839. width:37px;
  840. height:35px;
  841. background:inherit;
  842. background-color:rgba(255, 255, 255, 0);
  843. border:none;
  844. border-top:0px;
  845. border-right:0px;
  846. border-bottom:0px;
  847. border-radius:0px;
  848. border-top-left-radius:0px;
  849. border-bottom-left-radius:0px;
  850. -moz-box-shadow:none;
  851. -webkit-box-shadow:none;
  852. box-shadow:none;
  853. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  854. font-weight:500;
  855. font-style:normal;
  856. font-size:18px;
  857. }
  858. #u113977 {
  859. border-width:0px;
  860. position:absolute;
  861. left:89px;
  862. top:623px;
  863. width:37px;
  864. height:35px;
  865. display:flex;
  866. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  867. font-weight:500;
  868. font-style:normal;
  869. font-size:18px;
  870. }
  871. #u113977 .text {
  872. position:absolute;
  873. align-self:flex-start;
  874. padding:5px 0px 5px 0px;
  875. box-sizing:border-box;
  876. width:100%;
  877. }
  878. #u113977_text {
  879. border-width:0px;
  880. white-space:nowrap;
  881. text-transform:none;
  882. }
  883. #u113978 {
  884. border-width:0px;
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:0px;
  889. height:0px;
  890. }
  891. #u113979_img {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:2px;
  897. height:32px;
  898. }
  899. #u113979 {
  900. border-width:0px;
  901. position:absolute;
  902. left:128px;
  903. top:714px;
  904. width:1px;
  905. height:31px;
  906. display:flex;
  907. }
  908. #u113979 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u113979_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u113980 {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:0px;
  927. height:0px;
  928. }
  929. #u113981_div {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:30px;
  935. height:30px;
  936. background:inherit;
  937. background-color:rgba(24, 144, 255, 1);
  938. border:none;
  939. border-radius:4px;
  940. -moz-box-shadow:none;
  941. -webkit-box-shadow:none;
  942. box-shadow:none;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:10px;
  947. color:#FFFFFF;
  948. }
  949. #u113981 {
  950. border-width:0px;
  951. position:absolute;
  952. left:113px;
  953. top:750px;
  954. width:30px;
  955. height:30px;
  956. display:flex;
  957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  958. font-weight:400;
  959. font-style:normal;
  960. font-size:10px;
  961. color:#FFFFFF;
  962. }
  963. #u113981 .text {
  964. position:absolute;
  965. align-self:center;
  966. padding:2px 2px 2px 2px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u113981_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. }
  975. #u113982 {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:0px;
  981. height:0px;
  982. }
  983. #u113983_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:9px;
  989. height:9px;
  990. }
  991. #u113983 {
  992. border-width:0px;
  993. position:absolute;
  994. left:135px;
  995. top:772px;
  996. width:9px;
  997. height:9px;
  998. display:flex;
  999. }
  1000. #u113983 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u113983_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u113984_img {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:5px;
  1019. height:1px;
  1020. }
  1021. #u113984 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:137px;
  1025. top:776px;
  1026. width:5px;
  1027. height:1px;
  1028. display:flex;
  1029. }
  1030. #u113984 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u113984_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u113985 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:0px;
  1049. height:0px;
  1050. }
  1051. #u113986_div {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:30px;
  1057. height:30px;
  1058. background:inherit;
  1059. background-color:rgba(24, 144, 255, 1);
  1060. border:none;
  1061. border-radius:4px;
  1062. -moz-box-shadow:none;
  1063. -webkit-box-shadow:none;
  1064. box-shadow:none;
  1065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1066. font-weight:400;
  1067. font-style:normal;
  1068. font-size:12px;
  1069. color:#FFFFFF;
  1070. }
  1071. #u113986 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:113px;
  1075. top:680px;
  1076. width:30px;
  1077. height:30px;
  1078. display:flex;
  1079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1080. font-weight:400;
  1081. font-style:normal;
  1082. font-size:12px;
  1083. color:#FFFFFF;
  1084. }
  1085. #u113986 .text {
  1086. position:absolute;
  1087. align-self:center;
  1088. padding:2px 2px 2px 2px;
  1089. box-sizing:border-box;
  1090. width:100%;
  1091. }
  1092. #u113986_text {
  1093. border-width:0px;
  1094. word-wrap:break-word;
  1095. text-transform:none;
  1096. }
  1097. #u113987 {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:0px;
  1103. height:0px;
  1104. }
  1105. #u113988_img {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:9px;
  1111. height:9px;
  1112. }
  1113. #u113988 {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:135px;
  1117. top:702px;
  1118. width:9px;
  1119. height:9px;
  1120. display:flex;
  1121. }
  1122. #u113988 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 2px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u113988_text {
  1130. border-width:0px;
  1131. word-wrap:break-word;
  1132. text-transform:none;
  1133. visibility:hidden;
  1134. }
  1135. #u113989_img {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:5px;
  1141. height:4px;
  1142. }
  1143. #u113989 {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:137px;
  1147. top:705px;
  1148. width:5px;
  1149. height:4px;
  1150. display:flex;
  1151. }
  1152. #u113989 .text {
  1153. position:absolute;
  1154. align-self:center;
  1155. padding:2px 2px 2px 2px;
  1156. box-sizing:border-box;
  1157. width:100%;
  1158. }
  1159. #u113989_text {
  1160. border-width:0px;
  1161. word-wrap:break-word;
  1162. text-transform:none;
  1163. visibility:hidden;
  1164. }
  1165. #u113990_div {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:0px;
  1169. top:0px;
  1170. width:320px;
  1171. height:90px;
  1172. background:inherit;
  1173. background-color:rgba(255, 255, 255, 0);
  1174. border:none;
  1175. border-left:0px;
  1176. border-top:0px;
  1177. border-right:0px;
  1178. border-radius:0px;
  1179. border-bottom-right-radius:0px;
  1180. border-bottom-left-radius:0px;
  1181. -moz-box-shadow:none;
  1182. -webkit-box-shadow:none;
  1183. box-shadow:none;
  1184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1185. font-weight:400;
  1186. font-style:normal;
  1187. font-size:14px;
  1188. line-height:30px;
  1189. }
  1190. #u113990 {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:413px;
  1194. top:292px;
  1195. width:320px;
  1196. height:90px;
  1197. display:flex;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:14px;
  1202. line-height:30px;
  1203. }
  1204. #u113990 .text {
  1205. position:absolute;
  1206. align-self:flex-start;
  1207. padding:0px 0px 0px 0px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u113990_text {
  1212. border-width:0px;
  1213. word-wrap:break-word;
  1214. text-transform:none;
  1215. }
  1216. #u113991_div {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:320px;
  1222. height:60px;
  1223. background:inherit;
  1224. background-color:rgba(255, 255, 255, 0);
  1225. border:none;
  1226. border-left:0px;
  1227. border-top:0px;
  1228. border-right:0px;
  1229. border-radius:0px;
  1230. border-bottom-right-radius:0px;
  1231. border-bottom-left-radius:0px;
  1232. -moz-box-shadow:none;
  1233. -webkit-box-shadow:none;
  1234. box-shadow:none;
  1235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1236. font-weight:400;
  1237. font-style:normal;
  1238. font-size:14px;
  1239. line-height:30px;
  1240. }
  1241. #u113991 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:733px;
  1245. top:292px;
  1246. width:320px;
  1247. height:60px;
  1248. display:flex;
  1249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1250. font-weight:400;
  1251. font-style:normal;
  1252. font-size:14px;
  1253. line-height:30px;
  1254. }
  1255. #u113991 .text {
  1256. position:absolute;
  1257. align-self:flex-start;
  1258. padding:0px 0px 0px 0px;
  1259. box-sizing:border-box;
  1260. width:100%;
  1261. }
  1262. #u113991_text {
  1263. border-width:0px;
  1264. word-wrap:break-word;
  1265. text-transform:none;
  1266. }
  1267. #u113992_div {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:320px;
  1273. height:30px;
  1274. background:inherit;
  1275. background-color:rgba(255, 255, 255, 0);
  1276. border:none;
  1277. border-left:0px;
  1278. border-top:0px;
  1279. border-right:0px;
  1280. border-radius:0px;
  1281. border-bottom-right-radius:0px;
  1282. border-bottom-left-radius:0px;
  1283. -moz-box-shadow:none;
  1284. -webkit-box-shadow:none;
  1285. box-shadow:none;
  1286. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1287. font-weight:500;
  1288. font-style:normal;
  1289. font-size:18px;
  1290. line-height:30px;
  1291. }
  1292. #u113992 {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:93px;
  1296. top:402px;
  1297. width:320px;
  1298. height:30px;
  1299. display:flex;
  1300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1301. font-weight:500;
  1302. font-style:normal;
  1303. font-size:18px;
  1304. line-height:30px;
  1305. }
  1306. #u113992 .text {
  1307. position:absolute;
  1308. align-self:flex-start;
  1309. padding:0px 0px 0px 0px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u113992_text {
  1314. border-width:0px;
  1315. word-wrap:break-word;
  1316. text-transform:none;
  1317. }
  1318. #u113993_img {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:0px;
  1322. top:0px;
  1323. width:108px;
  1324. height:108px;
  1325. }
  1326. #u113993 {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:913px;
  1330. top:119px;
  1331. width:108px;
  1332. height:108px;
  1333. display:flex;
  1334. -webkit-transform:rotate(315deg);
  1335. -moz-transform:rotate(315deg);
  1336. -ms-transform:rotate(315deg);
  1337. transform:rotate(315deg);
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:28px;
  1342. color:#F59A23;
  1343. }
  1344. #u113993 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:2px 2px 2px 2px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u113993_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u113994 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:93px;
  1360. top:442px;
  1361. width:853px;
  1362. height:118px;
  1363. }
  1364. #u113995_img {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:171px;
  1370. height:38px;
  1371. }
  1372. #u113995 {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:0px;
  1376. top:0px;
  1377. width:171px;
  1378. height:38px;
  1379. display:flex;
  1380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1381. font-weight:400;
  1382. font-style:normal;
  1383. font-size:12px;
  1384. color:#FFFFFF;
  1385. }
  1386. #u113995 .text {
  1387. position:absolute;
  1388. align-self:center;
  1389. padding:2px 2px 2px 0px;
  1390. box-sizing:border-box;
  1391. width:100%;
  1392. }
  1393. #u113995_text {
  1394. border-width:0px;
  1395. word-wrap:break-word;
  1396. text-transform:none;
  1397. }
  1398. #u113996_img {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:0px;
  1402. top:0px;
  1403. width:171px;
  1404. height:38px;
  1405. }
  1406. #u113996 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:171px;
  1410. top:0px;
  1411. width:171px;
  1412. height:38px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:12px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u113996 .text {
  1421. position:absolute;
  1422. align-self:center;
  1423. padding:2px 2px 2px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u113996_text {
  1428. border-width:0px;
  1429. word-wrap:break-word;
  1430. text-transform:none;
  1431. }
  1432. #u113997_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:171px;
  1438. height:38px;
  1439. }
  1440. #u113997 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:342px;
  1444. top:0px;
  1445. width:171px;
  1446. height:38px;
  1447. display:flex;
  1448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1449. font-weight:400;
  1450. font-style:normal;
  1451. font-size:12px;
  1452. color:#FFFFFF;
  1453. }
  1454. #u113997 .text {
  1455. position:absolute;
  1456. align-self:center;
  1457. padding:2px 2px 2px 0px;
  1458. box-sizing:border-box;
  1459. width:100%;
  1460. }
  1461. #u113997_text {
  1462. border-width:0px;
  1463. word-wrap:break-word;
  1464. text-transform:none;
  1465. }
  1466. #u113998_img {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:171px;
  1472. height:38px;
  1473. }
  1474. #u113998 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:513px;
  1478. top:0px;
  1479. width:171px;
  1480. height:38px;
  1481. display:flex;
  1482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1483. font-weight:400;
  1484. font-style:normal;
  1485. font-size:12px;
  1486. color:#FFFFFF;
  1487. }
  1488. #u113998 .text {
  1489. position:absolute;
  1490. align-self:center;
  1491. padding:2px 2px 2px 0px;
  1492. box-sizing:border-box;
  1493. width:100%;
  1494. }
  1495. #u113998_text {
  1496. border-width:0px;
  1497. word-wrap:break-word;
  1498. text-transform:none;
  1499. }
  1500. #u113999_img {
  1501. border-width:0px;
  1502. position:absolute;
  1503. left:0px;
  1504. top:0px;
  1505. width:169px;
  1506. height:38px;
  1507. }
  1508. #u113999 {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:684px;
  1512. top:0px;
  1513. width:169px;
  1514. height:38px;
  1515. display:flex;
  1516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1517. font-weight:400;
  1518. font-style:normal;
  1519. font-size:12px;
  1520. color:#FFFFFF;
  1521. }
  1522. #u113999 .text {
  1523. position:absolute;
  1524. align-self:center;
  1525. padding:2px 2px 2px 0px;
  1526. box-sizing:border-box;
  1527. width:100%;
  1528. }
  1529. #u113999_text {
  1530. border-width:0px;
  1531. word-wrap:break-word;
  1532. text-transform:none;
  1533. }
  1534. #u114000_img {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:171px;
  1540. height:40px;
  1541. }
  1542. #u114000 {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:38px;
  1547. width:171px;
  1548. height:40px;
  1549. display:flex;
  1550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1551. font-weight:400;
  1552. font-style:normal;
  1553. font-size:12px;
  1554. color:#333333;
  1555. }
  1556. #u114000 .text {
  1557. position:absolute;
  1558. align-self:center;
  1559. padding:2px 2px 2px 0px;
  1560. box-sizing:border-box;
  1561. width:100%;
  1562. }
  1563. #u114000_text {
  1564. border-width:0px;
  1565. word-wrap:break-word;
  1566. text-transform:none;
  1567. visibility:hidden;
  1568. }
  1569. #u114001_img {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:0px;
  1573. top:0px;
  1574. width:171px;
  1575. height:40px;
  1576. }
  1577. #u114001 {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:171px;
  1581. top:38px;
  1582. width:171px;
  1583. height:40px;
  1584. display:flex;
  1585. font-family:'ArialMT', 'Arial', sans-serif;
  1586. font-weight:400;
  1587. font-style:normal;
  1588. font-size:12px;
  1589. color:#AAAAAA;
  1590. text-align:left;
  1591. }
  1592. #u114001 .text {
  1593. position:absolute;
  1594. align-self:center;
  1595. padding:2px 2px 2px 0px;
  1596. box-sizing:border-box;
  1597. width:100%;
  1598. }
  1599. #u114001_text {
  1600. border-width:0px;
  1601. word-wrap:break-word;
  1602. text-transform:none;
  1603. visibility:hidden;
  1604. }
  1605. #u114002_img {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:171px;
  1611. height:40px;
  1612. }
  1613. #u114002 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:342px;
  1617. top:38px;
  1618. width:171px;
  1619. height:40px;
  1620. display:flex;
  1621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1622. font-weight:400;
  1623. font-style:normal;
  1624. font-size:12px;
  1625. color:#333333;
  1626. }
  1627. #u114002 .text {
  1628. position:absolute;
  1629. align-self:center;
  1630. padding:2px 2px 2px 0px;
  1631. box-sizing:border-box;
  1632. width:100%;
  1633. }
  1634. #u114002_text {
  1635. border-width:0px;
  1636. word-wrap:break-word;
  1637. text-transform:none;
  1638. visibility:hidden;
  1639. }
  1640. #u114003_img {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:171px;
  1646. height:40px;
  1647. }
  1648. #u114003 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:513px;
  1652. top:38px;
  1653. width:171px;
  1654. height:40px;
  1655. display:flex;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. color:#333333;
  1661. }
  1662. #u114003 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 0px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u114003_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u114004_img {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:169px;
  1681. height:40px;
  1682. }
  1683. #u114004 {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:684px;
  1687. top:38px;
  1688. width:169px;
  1689. height:40px;
  1690. display:flex;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:12px;
  1695. color:#333333;
  1696. }
  1697. #u114004 .text {
  1698. position:absolute;
  1699. align-self:center;
  1700. padding:2px 2px 2px 0px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u114004_text {
  1705. border-width:0px;
  1706. word-wrap:break-word;
  1707. text-transform:none;
  1708. }
  1709. #u114005_img {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:171px;
  1715. height:40px;
  1716. }
  1717. #u114005 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:78px;
  1722. width:171px;
  1723. height:40px;
  1724. display:flex;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:12px;
  1729. color:#333333;
  1730. }
  1731. #u114005 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 0px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u114005_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. visibility:hidden;
  1743. }
  1744. #u114006_img {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:171px;
  1750. height:40px;
  1751. }
  1752. #u114006 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:171px;
  1756. top:78px;
  1757. width:171px;
  1758. height:40px;
  1759. display:flex;
  1760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:12px;
  1764. color:#333333;
  1765. }
  1766. #u114006 .text {
  1767. position:absolute;
  1768. align-self:center;
  1769. padding:2px 2px 2px 0px;
  1770. box-sizing:border-box;
  1771. width:100%;
  1772. }
  1773. #u114006_text {
  1774. border-width:0px;
  1775. word-wrap:break-word;
  1776. text-transform:none;
  1777. visibility:hidden;
  1778. }
  1779. #u114007_img {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:171px;
  1785. height:40px;
  1786. }
  1787. #u114007 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:342px;
  1791. top:78px;
  1792. width:171px;
  1793. height:40px;
  1794. display:flex;
  1795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:12px;
  1799. color:#333333;
  1800. }
  1801. #u114007 .text {
  1802. position:absolute;
  1803. align-self:center;
  1804. padding:2px 2px 2px 0px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u114007_text {
  1809. border-width:0px;
  1810. word-wrap:break-word;
  1811. text-transform:none;
  1812. visibility:hidden;
  1813. }
  1814. #u114008_img {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:171px;
  1820. height:40px;
  1821. }
  1822. #u114008 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:513px;
  1826. top:78px;
  1827. width:171px;
  1828. height:40px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:12px;
  1834. color:#333333;
  1835. }
  1836. #u114008 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:2px 2px 2px 0px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u114008_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. visibility:hidden;
  1848. }
  1849. #u114009_img {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:169px;
  1855. height:40px;
  1856. }
  1857. #u114009 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:684px;
  1861. top:78px;
  1862. width:169px;
  1863. height:40px;
  1864. display:flex;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:12px;
  1869. color:#333333;
  1870. }
  1871. #u114009 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 0px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u114009_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. }
  1883. #u114010 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:0px;
  1889. height:0px;
  1890. }
  1891. #u114011_div {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:1000px;
  1897. height:60px;
  1898. background:inherit;
  1899. background-color:rgba(255, 255, 255, 1);
  1900. box-sizing:border-box;
  1901. border-width:1px;
  1902. border-style:solid;
  1903. border-color:rgba(215, 215, 215, 1);
  1904. border-radius:0px;
  1905. -moz-box-shadow:none;
  1906. -webkit-box-shadow:none;
  1907. box-shadow:none;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:14px;
  1912. color:#AAAAAA;
  1913. text-align:center;
  1914. line-height:30px;
  1915. }
  1916. #u114011 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:63px;
  1920. top:1190px;
  1921. width:1000px;
  1922. height:60px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:14px;
  1928. color:#AAAAAA;
  1929. text-align:center;
  1930. line-height:30px;
  1931. }
  1932. #u114011 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:5px 10px 5px 10px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u114011_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. visibility:hidden;
  1944. }
  1945. #u114012_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:80px;
  1951. height:30px;
  1952. background:inherit;
  1953. background-color:rgba(24, 144, 255, 1);
  1954. border:none;
  1955. border-radius:4px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:14px;
  1963. color:#FFFFFF;
  1964. }
  1965. #u114012 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:957px;
  1969. top:1205px;
  1970. width:80px;
  1971. height:30px;
  1972. display:flex;
  1973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1974. font-weight:400;
  1975. font-style:normal;
  1976. font-size:14px;
  1977. color:#FFFFFF;
  1978. }
  1979. #u114012 .text {
  1980. position:absolute;
  1981. align-self:center;
  1982. padding:2px 2px 2px 2px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u114012_text {
  1987. border-width:0px;
  1988. word-wrap:break-word;
  1989. text-transform:none;
  1990. }
  1991. #u114013_div {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:80px;
  1997. height:30px;
  1998. background:inherit;
  1999. background-color:rgba(245, 154, 35, 1);
  2000. border:none;
  2001. border-radius:4px;
  2002. -moz-box-shadow:none;
  2003. -webkit-box-shadow:none;
  2004. box-shadow:none;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:14px;
  2009. color:#FFFFFF;
  2010. }
  2011. #u114013 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:867px;
  2015. top:1205px;
  2016. width:80px;
  2017. height:30px;
  2018. display:flex;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:14px;
  2023. color:#FFFFFF;
  2024. }
  2025. #u114013 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u114013_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. }
  2037. #u114014_div {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:80px;
  2043. height:30px;
  2044. background:inherit;
  2045. background-color:rgba(255, 255, 255, 1);
  2046. box-sizing:border-box;
  2047. border-width:1px;
  2048. border-style:solid;
  2049. border-color:rgba(170, 170, 170, 1);
  2050. border-radius:4px;
  2051. -moz-box-shadow:none;
  2052. -webkit-box-shadow:none;
  2053. box-shadow:none;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:14px;
  2058. }
  2059. #u114014 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:777px;
  2063. top:1205px;
  2064. width:80px;
  2065. height:30px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:14px;
  2071. }
  2072. #u114014 .text {
  2073. position:absolute;
  2074. align-self:center;
  2075. padding:2px 2px 2px 2px;
  2076. box-sizing:border-box;
  2077. width:100%;
  2078. }
  2079. #u114014_text {
  2080. border-width:0px;
  2081. word-wrap:break-word;
  2082. text-transform:none;
  2083. }
  2084. #u114015 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:0px;
  2090. height:0px;
  2091. }
  2092. #u114016_div {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:0px;
  2096. top:0px;
  2097. width:1000px;
  2098. height:1201px;
  2099. background:inherit;
  2100. background-color:rgba(242, 242, 242, 1);
  2101. box-sizing:border-box;
  2102. border-width:1px;
  2103. border-style:solid;
  2104. border-color:rgba(215, 215, 215, 1);
  2105. border-radius:0px;
  2106. -moz-box-shadow:none;
  2107. -webkit-box-shadow:none;
  2108. box-shadow:none;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:14px;
  2113. color:#AAAAAA;
  2114. text-align:center;
  2115. line-height:30px;
  2116. }
  2117. #u114016 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:1100px;
  2121. top:49px;
  2122. width:1000px;
  2123. height:1201px;
  2124. display:flex;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. font-size:14px;
  2129. color:#AAAAAA;
  2130. text-align:center;
  2131. line-height:30px;
  2132. }
  2133. #u114016 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:5px 10px 5px 10px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u114016_text {
  2141. border-width:0px;
  2142. word-wrap:break-word;
  2143. text-transform:none;
  2144. visibility:hidden;
  2145. }
  2146. #u114017_div {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:1000px;
  2152. height:200px;
  2153. background:inherit;
  2154. background-color:rgba(255, 255, 255, 1);
  2155. box-sizing:border-box;
  2156. border-width:1px;
  2157. border-style:solid;
  2158. border-color:rgba(215, 215, 215, 1);
  2159. border-radius:0px;
  2160. -moz-box-shadow:none;
  2161. -webkit-box-shadow:none;
  2162. box-shadow:none;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. color:#AAAAAA;
  2168. text-align:center;
  2169. line-height:30px;
  2170. }
  2171. #u114017 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:1100px;
  2175. top:49px;
  2176. width:1000px;
  2177. height:200px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:14px;
  2183. color:#AAAAAA;
  2184. text-align:center;
  2185. line-height:30px;
  2186. }
  2187. #u114017 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:5px 10px 5px 10px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u114017_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. visibility:hidden;
  2199. }
  2200. #u114018_div {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:83px;
  2206. height:35px;
  2207. background:inherit;
  2208. background-color:rgba(255, 255, 255, 0);
  2209. border:none;
  2210. border-top:0px;
  2211. border-right:0px;
  2212. border-bottom:0px;
  2213. border-radius:0px;
  2214. border-top-left-radius:0px;
  2215. border-bottom-left-radius:0px;
  2216. -moz-box-shadow:none;
  2217. -webkit-box-shadow:none;
  2218. box-shadow:none;
  2219. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2220. font-weight:500;
  2221. font-style:normal;
  2222. font-size:18px;
  2223. }
  2224. #u114018 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:1120px;
  2228. top:67px;
  2229. width:83px;
  2230. height:35px;
  2231. display:flex;
  2232. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2233. font-weight:500;
  2234. font-style:normal;
  2235. font-size:18px;
  2236. }
  2237. #u114018 .text {
  2238. position:absolute;
  2239. align-self:center;
  2240. padding:5px 10px 5px 0px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u114018_text {
  2245. border-width:0px;
  2246. white-space:nowrap;
  2247. text-transform:none;
  2248. }
  2249. #u114019 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:0px;
  2255. height:0px;
  2256. }
  2257. #u114020_div {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:40px;
  2263. height:40px;
  2264. background:inherit;
  2265. background-color:rgba(255, 255, 255, 0);
  2266. border:none;
  2267. border-top:0px;
  2268. border-right:0px;
  2269. border-bottom:0px;
  2270. border-radius:0px;
  2271. border-top-left-radius:0px;
  2272. border-bottom-left-radius:0px;
  2273. -moz-box-shadow:none;
  2274. -webkit-box-shadow:none;
  2275. box-shadow:none;
  2276. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2277. font-weight:500;
  2278. font-style:normal;
  2279. font-size:14px;
  2280. text-align:center;
  2281. }
  2282. #u114020 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:2060px;
  2286. top:49px;
  2287. width:40px;
  2288. height:40px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2291. font-weight:500;
  2292. font-style:normal;
  2293. font-size:14px;
  2294. text-align:center;
  2295. }
  2296. #u114020 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:5px 10px 5px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u114020_text {
  2304. border-width:0px;
  2305. word-wrap:break-word;
  2306. text-transform:none;
  2307. }
  2308. #u114021_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:13px;
  2314. height:13px;
  2315. }
  2316. #u114021 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:2048px;
  2320. top:65px;
  2321. width:13px;
  2322. height:13px;
  2323. display:flex;
  2324. font-size:14px;
  2325. }
  2326. #u114021 .text {
  2327. position:absolute;
  2328. align-self:center;
  2329. padding:2px 2px 2px 2px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u114021_text {
  2334. border-width:0px;
  2335. word-wrap:break-word;
  2336. text-transform:none;
  2337. visibility:hidden;
  2338. }
  2339. #u114022_div {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:227px;
  2345. height:43px;
  2346. background:inherit;
  2347. background-color:rgba(255, 255, 255, 0);
  2348. border:none;
  2349. border-top:0px;
  2350. border-right:0px;
  2351. border-bottom:0px;
  2352. border-radius:0px;
  2353. border-top-left-radius:0px;
  2354. border-bottom-left-radius:0px;
  2355. -moz-box-shadow:none;
  2356. -webkit-box-shadow:none;
  2357. box-shadow:none;
  2358. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2359. font-weight:500;
  2360. font-style:normal;
  2361. font-size:24px;
  2362. }
  2363. #u114022 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:1130px;
  2367. top:118px;
  2368. width:227px;
  2369. height:43px;
  2370. display:flex;
  2371. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2372. font-weight:500;
  2373. font-style:normal;
  2374. font-size:24px;
  2375. }
  2376. #u114022 .text {
  2377. position:absolute;
  2378. align-self:center;
  2379. padding:5px 10px 5px 0px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u114022_text {
  2384. border-width:0px;
  2385. white-space:nowrap;
  2386. text-transform:none;
  2387. }
  2388. #u114023_div {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:325px;
  2394. height:60px;
  2395. background:inherit;
  2396. background-color:rgba(255, 255, 255, 0);
  2397. border:none;
  2398. border-left:0px;
  2399. border-top:0px;
  2400. border-right:0px;
  2401. border-radius:0px;
  2402. border-bottom-right-radius:0px;
  2403. border-bottom-left-radius:0px;
  2404. -moz-box-shadow:none;
  2405. -webkit-box-shadow:none;
  2406. box-shadow:none;
  2407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:14px;
  2411. line-height:30px;
  2412. }
  2413. #u114023 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:1130px;
  2417. top:171px;
  2418. width:325px;
  2419. height:60px;
  2420. display:flex;
  2421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:14px;
  2425. line-height:30px;
  2426. }
  2427. #u114023 .text {
  2428. position:absolute;
  2429. align-self:flex-start;
  2430. padding:0px 0px 0px 0px;
  2431. box-sizing:border-box;
  2432. width:100%;
  2433. }
  2434. #u114023_text {
  2435. border-width:0px;
  2436. word-wrap:break-word;
  2437. text-transform:none;
  2438. }
  2439. #u114024_div {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:1000px;
  2445. height:336px;
  2446. background:inherit;
  2447. background-color:rgba(255, 255, 255, 1);
  2448. box-sizing:border-box;
  2449. border-width:1px;
  2450. border-style:solid;
  2451. border-color:rgba(215, 215, 215, 1);
  2452. border-radius:0px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:14px;
  2460. color:#AAAAAA;
  2461. text-align:center;
  2462. line-height:30px;
  2463. }
  2464. #u114024 {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:1100px;
  2468. top:259px;
  2469. width:1000px;
  2470. height:336px;
  2471. display:flex;
  2472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:14px;
  2476. color:#AAAAAA;
  2477. text-align:center;
  2478. line-height:30px;
  2479. }
  2480. #u114024 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:5px 10px 5px 10px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u114024_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. visibility:hidden;
  2492. }
  2493. #u114025_div {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:320px;
  2499. height:90px;
  2500. background:inherit;
  2501. background-color:rgba(255, 255, 255, 0);
  2502. border:none;
  2503. border-left:0px;
  2504. border-top:0px;
  2505. border-right:0px;
  2506. border-radius:0px;
  2507. border-bottom-right-radius:0px;
  2508. border-bottom-left-radius:0px;
  2509. -moz-box-shadow:none;
  2510. -webkit-box-shadow:none;
  2511. box-shadow:none;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:14px;
  2516. line-height:30px;
  2517. }
  2518. #u114025 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:1130px;
  2522. top:292px;
  2523. width:320px;
  2524. height:90px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:14px;
  2530. line-height:30px;
  2531. }
  2532. #u114025 .text {
  2533. position:absolute;
  2534. align-self:flex-start;
  2535. padding:0px 0px 0px 0px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u114025_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. }
  2544. #u114026 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:0px;
  2550. height:0px;
  2551. }
  2552. #u114027_div {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:1000px;
  2558. height:645px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 1);
  2561. box-sizing:border-box;
  2562. border-width:1px;
  2563. border-style:solid;
  2564. border-color:rgba(215, 215, 215, 1);
  2565. border-radius:0px;
  2566. -moz-box-shadow:none;
  2567. -webkit-box-shadow:none;
  2568. box-shadow:none;
  2569. }
  2570. #u114027 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:1100px;
  2574. top:605px;
  2575. width:1000px;
  2576. height:645px;
  2577. display:flex;
  2578. }
  2579. #u114027 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 2px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u114027_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. visibility:hidden;
  2591. }
  2592. #u114028_div {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:103px;
  2598. height:24px;
  2599. background:inherit;
  2600. background-color:rgba(255, 255, 255, 0);
  2601. border:none;
  2602. border-top:0px;
  2603. border-right:0px;
  2604. border-bottom:0px;
  2605. border-radius:0px;
  2606. border-top-left-radius:0px;
  2607. border-bottom-left-radius:0px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:10px;
  2615. color:#AAAAAA;
  2616. }
  2617. #u114028 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:1355px;
  2621. top:678px;
  2622. width:103px;
  2623. height:24px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:10px;
  2629. color:#AAAAAA;
  2630. }
  2631. #u114028 .text {
  2632. position:absolute;
  2633. align-self:flex-start;
  2634. padding:5px 0px 5px 0px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u114028_text {
  2639. border-width:0px;
  2640. white-space:nowrap;
  2641. text-transform:none;
  2642. }
  2643. #u114029 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:0px;
  2649. height:0px;
  2650. }
  2651. #u114030_div {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:43px;
  2657. height:30px;
  2658. background:inherit;
  2659. background-color:rgba(255, 255, 255, 0);
  2660. border:none;
  2661. border-top:0px;
  2662. border-right:0px;
  2663. border-bottom:0px;
  2664. border-radius:0px;
  2665. border-top-left-radius:0px;
  2666. border-bottom-left-radius:0px;
  2667. -moz-box-shadow:none;
  2668. -webkit-box-shadow:none;
  2669. box-shadow:none;
  2670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2671. font-weight:400;
  2672. font-style:normal;
  2673. font-size:14px;
  2674. }
  2675. #u114030 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:1188px;
  2679. top:680px;
  2680. width:43px;
  2681. height:30px;
  2682. display:flex;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:14px;
  2687. }
  2688. #u114030 .text {
  2689. position:absolute;
  2690. align-self:flex-start;
  2691. padding:0px 0px 0px 0px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u114030_text {
  2696. border-width:0px;
  2697. white-space:nowrap;
  2698. text-transform:none;
  2699. }
  2700. #u114031_div {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:23px;
  2706. height:16px;
  2707. background:inherit;
  2708. background-color:rgba(255, 255, 255, 0);
  2709. border:none;
  2710. border-top:0px;
  2711. border-right:0px;
  2712. border-bottom:0px;
  2713. border-radius:0px;
  2714. border-top-left-radius:0px;
  2715. border-bottom-left-radius:0px;
  2716. -moz-box-shadow:none;
  2717. -webkit-box-shadow:none;
  2718. box-shadow:none;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:11px;
  2723. color:#AAAAAA;
  2724. }
  2725. #u114031 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:1188px;
  2729. top:708px;
  2730. width:23px;
  2731. height:16px;
  2732. display:flex;
  2733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:11px;
  2737. color:#AAAAAA;
  2738. }
  2739. #u114031 .text {
  2740. position:absolute;
  2741. align-self:flex-start;
  2742. padding:0px 0px 0px 0px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u114031_text {
  2747. border-width:0px;
  2748. white-space:nowrap;
  2749. text-transform:none;
  2750. }
  2751. #u114032_div {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:43px;
  2757. height:20px;
  2758. background:inherit;
  2759. background-color:rgba(255, 255, 255, 0);
  2760. border:none;
  2761. border-top:0px;
  2762. border-right:0px;
  2763. border-bottom:0px;
  2764. border-radius:0px;
  2765. border-top-left-radius:0px;
  2766. border-bottom-left-radius:0px;
  2767. -moz-box-shadow:none;
  2768. -webkit-box-shadow:none;
  2769. box-shadow:none;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:14px;
  2774. }
  2775. #u114032 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:1188px;
  2779. top:750px;
  2780. width:43px;
  2781. height:20px;
  2782. display:flex;
  2783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:14px;
  2787. }
  2788. #u114032 .text {
  2789. position:absolute;
  2790. align-self:flex-start;
  2791. padding:0px 0px 0px 0px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u114032_text {
  2796. border-width:0px;
  2797. white-space:nowrap;
  2798. text-transform:none;
  2799. }
  2800. #u114033_div {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:63px;
  2806. height:16px;
  2807. background:inherit;
  2808. background-color:rgba(255, 255, 255, 0);
  2809. border:none;
  2810. border-top:0px;
  2811. border-right:0px;
  2812. border-bottom:0px;
  2813. border-radius:0px;
  2814. border-top-left-radius:0px;
  2815. border-bottom-left-radius:0px;
  2816. -moz-box-shadow:none;
  2817. -webkit-box-shadow:none;
  2818. box-shadow:none;
  2819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2820. font-weight:400;
  2821. font-style:normal;
  2822. font-size:11px;
  2823. color:#AAAAAA;
  2824. }
  2825. #u114033 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:1188px;
  2829. top:778px;
  2830. width:63px;
  2831. height:16px;
  2832. display:flex;
  2833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. font-size:11px;
  2837. color:#AAAAAA;
  2838. }
  2839. #u114033 .text {
  2840. position:absolute;
  2841. align-self:flex-start;
  2842. padding:0px 0px 0px 0px;
  2843. box-sizing:border-box;
  2844. width:100%;
  2845. }
  2846. #u114033_text {
  2847. border-width:0px;
  2848. white-space:nowrap;
  2849. text-transform:none;
  2850. }
  2851. #u114034_div {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:37px;
  2857. height:35px;
  2858. background:inherit;
  2859. background-color:rgba(255, 255, 255, 0);
  2860. border:none;
  2861. border-top:0px;
  2862. border-right:0px;
  2863. border-bottom:0px;
  2864. border-radius:0px;
  2865. border-top-left-radius:0px;
  2866. border-bottom-left-radius:0px;
  2867. -moz-box-shadow:none;
  2868. -webkit-box-shadow:none;
  2869. box-shadow:none;
  2870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2871. font-weight:500;
  2872. font-style:normal;
  2873. font-size:18px;
  2874. }
  2875. #u114034 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:1126px;
  2879. top:623px;
  2880. width:37px;
  2881. height:35px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2884. font-weight:500;
  2885. font-style:normal;
  2886. font-size:18px;
  2887. }
  2888. #u114034 .text {
  2889. position:absolute;
  2890. align-self:flex-start;
  2891. padding:5px 0px 5px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u114034_text {
  2896. border-width:0px;
  2897. white-space:nowrap;
  2898. text-transform:none;
  2899. }
  2900. #u114035 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:0px;
  2906. height:0px;
  2907. }
  2908. #u114036_img {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:0px;
  2912. top:0px;
  2913. width:2px;
  2914. height:32px;
  2915. }
  2916. #u114036 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:1165px;
  2920. top:714px;
  2921. width:1px;
  2922. height:31px;
  2923. display:flex;
  2924. }
  2925. #u114036 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 2px 2px 2px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u114036_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u114037 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:0px;
  2944. height:0px;
  2945. }
  2946. #u114038_div {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:30px;
  2952. height:30px;
  2953. background:inherit;
  2954. background-color:rgba(24, 144, 255, 1);
  2955. border:none;
  2956. border-radius:4px;
  2957. -moz-box-shadow:none;
  2958. -webkit-box-shadow:none;
  2959. box-shadow:none;
  2960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:10px;
  2964. color:#FFFFFF;
  2965. }
  2966. #u114038 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:1150px;
  2970. top:750px;
  2971. width:30px;
  2972. height:30px;
  2973. display:flex;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:10px;
  2978. color:#FFFFFF;
  2979. }
  2980. #u114038 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 2px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u114038_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. }
  2992. #u114039 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:0px;
  2998. height:0px;
  2999. }
  3000. #u114040_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:9px;
  3006. height:9px;
  3007. }
  3008. #u114040 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:1171px;
  3012. top:772px;
  3013. width:9px;
  3014. height:9px;
  3015. display:flex;
  3016. }
  3017. #u114040 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 2px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u114040_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u114041_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:5px;
  3036. height:4px;
  3037. }
  3038. #u114041 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:1173px;
  3042. top:775px;
  3043. width:5px;
  3044. height:4px;
  3045. display:flex;
  3046. }
  3047. #u114041 .text {
  3048. position:absolute;
  3049. align-self:center;
  3050. padding:2px 2px 2px 2px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u114041_text {
  3055. border-width:0px;
  3056. word-wrap:break-word;
  3057. text-transform:none;
  3058. visibility:hidden;
  3059. }
  3060. #u114042 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:0px;
  3066. height:0px;
  3067. }
  3068. #u114043_div {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:30px;
  3074. height:30px;
  3075. background:inherit;
  3076. background-color:rgba(24, 144, 255, 1);
  3077. border:none;
  3078. border-radius:4px;
  3079. -moz-box-shadow:none;
  3080. -webkit-box-shadow:none;
  3081. box-shadow:none;
  3082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:12px;
  3086. color:#FFFFFF;
  3087. }
  3088. #u114043 {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:1150px;
  3092. top:680px;
  3093. width:30px;
  3094. height:30px;
  3095. display:flex;
  3096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3097. font-weight:400;
  3098. font-style:normal;
  3099. font-size:12px;
  3100. color:#FFFFFF;
  3101. }
  3102. #u114043 .text {
  3103. position:absolute;
  3104. align-self:center;
  3105. padding:2px 2px 2px 2px;
  3106. box-sizing:border-box;
  3107. width:100%;
  3108. }
  3109. #u114043_text {
  3110. border-width:0px;
  3111. word-wrap:break-word;
  3112. text-transform:none;
  3113. }
  3114. #u114044 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:0px;
  3120. height:0px;
  3121. }
  3122. #u114045_img {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:9px;
  3128. height:9px;
  3129. }
  3130. #u114045 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:1172px;
  3134. top:702px;
  3135. width:9px;
  3136. height:9px;
  3137. display:flex;
  3138. }
  3139. #u114045 .text {
  3140. position:absolute;
  3141. align-self:center;
  3142. padding:2px 2px 2px 2px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u114045_text {
  3147. border-width:0px;
  3148. word-wrap:break-word;
  3149. text-transform:none;
  3150. visibility:hidden;
  3151. }
  3152. #u114046_img {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:5px;
  3158. height:4px;
  3159. }
  3160. #u114046 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:1174px;
  3164. top:705px;
  3165. width:5px;
  3166. height:4px;
  3167. display:flex;
  3168. }
  3169. #u114046 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 2px 2px 2px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u114046_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. visibility:hidden;
  3181. }
  3182. #u114047_div {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:103px;
  3188. height:24px;
  3189. background:inherit;
  3190. background-color:rgba(255, 255, 255, 0);
  3191. border:none;
  3192. border-top:0px;
  3193. border-right:0px;
  3194. border-bottom:0px;
  3195. border-radius:0px;
  3196. border-top-left-radius:0px;
  3197. border-bottom-left-radius:0px;
  3198. -moz-box-shadow:none;
  3199. -webkit-box-shadow:none;
  3200. box-shadow:none;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:10px;
  3205. color:#AAAAAA;
  3206. }
  3207. #u114047 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:1355px;
  3211. top:748px;
  3212. width:103px;
  3213. height:24px;
  3214. display:flex;
  3215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3216. font-weight:400;
  3217. font-style:normal;
  3218. font-size:10px;
  3219. color:#AAAAAA;
  3220. }
  3221. #u114047 .text {
  3222. position:absolute;
  3223. align-self:flex-start;
  3224. padding:5px 0px 5px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u114047_text {
  3229. border-width:0px;
  3230. white-space:nowrap;
  3231. text-transform:none;
  3232. }
  3233. #u114048_div {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:320px;
  3239. height:90px;
  3240. background:inherit;
  3241. background-color:rgba(255, 255, 255, 0);
  3242. border:none;
  3243. border-left:0px;
  3244. border-top:0px;
  3245. border-right:0px;
  3246. border-radius:0px;
  3247. border-bottom-right-radius:0px;
  3248. border-bottom-left-radius:0px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:14px;
  3256. line-height:30px;
  3257. }
  3258. #u114048 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:1450px;
  3262. top:292px;
  3263. width:320px;
  3264. height:90px;
  3265. display:flex;
  3266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. font-size:14px;
  3270. line-height:30px;
  3271. }
  3272. #u114048 .text {
  3273. position:absolute;
  3274. align-self:flex-start;
  3275. padding:0px 0px 0px 0px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u114048_text {
  3280. border-width:0px;
  3281. word-wrap:break-word;
  3282. text-transform:none;
  3283. }
  3284. #u114049_div {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:320px;
  3290. height:60px;
  3291. background:inherit;
  3292. background-color:rgba(255, 255, 255, 0);
  3293. border:none;
  3294. border-left:0px;
  3295. border-top:0px;
  3296. border-right:0px;
  3297. border-radius:0px;
  3298. border-bottom-right-radius:0px;
  3299. border-bottom-left-radius:0px;
  3300. -moz-box-shadow:none;
  3301. -webkit-box-shadow:none;
  3302. box-shadow:none;
  3303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3304. font-weight:400;
  3305. font-style:normal;
  3306. font-size:14px;
  3307. line-height:30px;
  3308. }
  3309. #u114049 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:1770px;
  3313. top:292px;
  3314. width:320px;
  3315. height:60px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:14px;
  3321. line-height:30px;
  3322. }
  3323. #u114049 .text {
  3324. position:absolute;
  3325. align-self:flex-start;
  3326. padding:0px 0px 0px 0px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u114049_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. }
  3335. #u114050_div {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:320px;
  3341. height:30px;
  3342. background:inherit;
  3343. background-color:rgba(255, 255, 255, 0);
  3344. border:none;
  3345. border-left:0px;
  3346. border-top:0px;
  3347. border-right:0px;
  3348. border-radius:0px;
  3349. border-bottom-right-radius:0px;
  3350. border-bottom-left-radius:0px;
  3351. -moz-box-shadow:none;
  3352. -webkit-box-shadow:none;
  3353. box-shadow:none;
  3354. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3355. font-weight:500;
  3356. font-style:normal;
  3357. font-size:18px;
  3358. line-height:30px;
  3359. }
  3360. #u114050 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:1130px;
  3364. top:402px;
  3365. width:320px;
  3366. height:30px;
  3367. display:flex;
  3368. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3369. font-weight:500;
  3370. font-style:normal;
  3371. font-size:18px;
  3372. line-height:30px;
  3373. }
  3374. #u114050 .text {
  3375. position:absolute;
  3376. align-self:flex-start;
  3377. padding:0px 0px 0px 0px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u114050_text {
  3382. border-width:0px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. }
  3386. #u114051_img {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:108px;
  3392. height:108px;
  3393. }
  3394. #u114051 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:1944px;
  3398. top:119px;
  3399. width:108px;
  3400. height:108px;
  3401. display:flex;
  3402. -webkit-transform:rotate(315deg);
  3403. -moz-transform:rotate(315deg);
  3404. -ms-transform:rotate(315deg);
  3405. transform:rotate(315deg);
  3406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3407. font-weight:400;
  3408. font-style:normal;
  3409. font-size:28px;
  3410. color:#00BFBF;
  3411. }
  3412. #u114051 .text {
  3413. position:absolute;
  3414. align-self:center;
  3415. padding:2px 2px 2px 2px;
  3416. box-sizing:border-box;
  3417. width:100%;
  3418. }
  3419. #u114051_text {
  3420. border-width:0px;
  3421. word-wrap:break-word;
  3422. text-transform:none;
  3423. }
  3424. #u114052 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:1130px;
  3428. top:442px;
  3429. width:853px;
  3430. height:118px;
  3431. }
  3432. #u114053_img {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:0px;
  3436. top:0px;
  3437. width:171px;
  3438. height:38px;
  3439. }
  3440. #u114053 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:171px;
  3446. height:38px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:12px;
  3452. color:#FFFFFF;
  3453. }
  3454. #u114053 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 0px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u114053_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. }
  3466. #u114054_img {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:171px;
  3472. height:38px;
  3473. }
  3474. #u114054 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:171px;
  3478. top:0px;
  3479. width:171px;
  3480. height:38px;
  3481. display:flex;
  3482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3483. font-weight:400;
  3484. font-style:normal;
  3485. font-size:12px;
  3486. color:#FFFFFF;
  3487. }
  3488. #u114054 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 2px 2px 0px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u114054_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. }
  3500. #u114055_img {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:171px;
  3506. height:38px;
  3507. }
  3508. #u114055 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:342px;
  3512. top:0px;
  3513. width:171px;
  3514. height:38px;
  3515. display:flex;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:12px;
  3520. color:#FFFFFF;
  3521. }
  3522. #u114055 .text {
  3523. position:absolute;
  3524. align-self:center;
  3525. padding:2px 2px 2px 0px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u114055_text {
  3530. border-width:0px;
  3531. word-wrap:break-word;
  3532. text-transform:none;
  3533. }
  3534. #u114056_img {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:171px;
  3540. height:38px;
  3541. }
  3542. #u114056 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:513px;
  3546. top:0px;
  3547. width:171px;
  3548. height:38px;
  3549. display:flex;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:12px;
  3554. color:#FFFFFF;
  3555. }
  3556. #u114056 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u114056_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. }
  3568. #u114057_img {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:169px;
  3574. height:38px;
  3575. }
  3576. #u114057 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:684px;
  3580. top:0px;
  3581. width:169px;
  3582. height:38px;
  3583. display:flex;
  3584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3585. font-weight:400;
  3586. font-style:normal;
  3587. font-size:12px;
  3588. color:#FFFFFF;
  3589. }
  3590. #u114057 .text {
  3591. position:absolute;
  3592. align-self:center;
  3593. padding:2px 2px 2px 0px;
  3594. box-sizing:border-box;
  3595. width:100%;
  3596. }
  3597. #u114057_text {
  3598. border-width:0px;
  3599. word-wrap:break-word;
  3600. text-transform:none;
  3601. }
  3602. #u114058_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:171px;
  3608. height:40px;
  3609. }
  3610. #u114058 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:38px;
  3615. width:171px;
  3616. height:40px;
  3617. display:flex;
  3618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. font-size:12px;
  3622. color:#333333;
  3623. }
  3624. #u114058 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 2px 2px 0px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u114058_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. visibility:hidden;
  3636. }
  3637. #u114059_img {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:171px;
  3643. height:40px;
  3644. }
  3645. #u114059 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:171px;
  3649. top:38px;
  3650. width:171px;
  3651. height:40px;
  3652. display:flex;
  3653. font-family:'ArialMT', 'Arial', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:12px;
  3657. color:#AAAAAA;
  3658. text-align:left;
  3659. }
  3660. #u114059 .text {
  3661. position:absolute;
  3662. align-self:center;
  3663. padding:2px 2px 2px 0px;
  3664. box-sizing:border-box;
  3665. width:100%;
  3666. }
  3667. #u114059_text {
  3668. border-width:0px;
  3669. word-wrap:break-word;
  3670. text-transform:none;
  3671. visibility:hidden;
  3672. }
  3673. #u114060_img {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:0px;
  3677. top:0px;
  3678. width:171px;
  3679. height:40px;
  3680. }
  3681. #u114060 {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:342px;
  3685. top:38px;
  3686. width:171px;
  3687. height:40px;
  3688. display:flex;
  3689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3690. font-weight:400;
  3691. font-style:normal;
  3692. font-size:12px;
  3693. color:#333333;
  3694. }
  3695. #u114060 .text {
  3696. position:absolute;
  3697. align-self:center;
  3698. padding:2px 2px 2px 0px;
  3699. box-sizing:border-box;
  3700. width:100%;
  3701. }
  3702. #u114060_text {
  3703. border-width:0px;
  3704. word-wrap:break-word;
  3705. text-transform:none;
  3706. visibility:hidden;
  3707. }
  3708. #u114061_img {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:0px;
  3712. top:0px;
  3713. width:171px;
  3714. height:40px;
  3715. }
  3716. #u114061 {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:513px;
  3720. top:38px;
  3721. width:171px;
  3722. height:40px;
  3723. display:flex;
  3724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3725. font-weight:400;
  3726. font-style:normal;
  3727. font-size:12px;
  3728. color:#333333;
  3729. }
  3730. #u114061 .text {
  3731. position:absolute;
  3732. align-self:center;
  3733. padding:2px 2px 2px 0px;
  3734. box-sizing:border-box;
  3735. width:100%;
  3736. }
  3737. #u114061_text {
  3738. border-width:0px;
  3739. word-wrap:break-word;
  3740. text-transform:none;
  3741. visibility:hidden;
  3742. }
  3743. #u114062_img {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:169px;
  3749. height:40px;
  3750. }
  3751. #u114062 {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:684px;
  3755. top:38px;
  3756. width:169px;
  3757. height:40px;
  3758. display:flex;
  3759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3760. font-weight:400;
  3761. font-style:normal;
  3762. font-size:12px;
  3763. color:#333333;
  3764. }
  3765. #u114062 .text {
  3766. position:absolute;
  3767. align-self:center;
  3768. padding:2px 2px 2px 0px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u114062_text {
  3773. border-width:0px;
  3774. word-wrap:break-word;
  3775. text-transform:none;
  3776. }
  3777. #u114063_img {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:171px;
  3783. height:40px;
  3784. }
  3785. #u114063 {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:78px;
  3790. width:171px;
  3791. height:40px;
  3792. display:flex;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:12px;
  3797. color:#333333;
  3798. }
  3799. #u114063 .text {
  3800. position:absolute;
  3801. align-self:center;
  3802. padding:2px 2px 2px 0px;
  3803. box-sizing:border-box;
  3804. width:100%;
  3805. }
  3806. #u114063_text {
  3807. border-width:0px;
  3808. word-wrap:break-word;
  3809. text-transform:none;
  3810. visibility:hidden;
  3811. }
  3812. #u114064_img {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:171px;
  3818. height:40px;
  3819. }
  3820. #u114064 {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:171px;
  3824. top:78px;
  3825. width:171px;
  3826. height:40px;
  3827. display:flex;
  3828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3829. font-weight:400;
  3830. font-style:normal;
  3831. font-size:12px;
  3832. color:#333333;
  3833. }
  3834. #u114064 .text {
  3835. position:absolute;
  3836. align-self:center;
  3837. padding:2px 2px 2px 0px;
  3838. box-sizing:border-box;
  3839. width:100%;
  3840. }
  3841. #u114064_text {
  3842. border-width:0px;
  3843. word-wrap:break-word;
  3844. text-transform:none;
  3845. visibility:hidden;
  3846. }
  3847. #u114065_img {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:171px;
  3853. height:40px;
  3854. }
  3855. #u114065 {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:342px;
  3859. top:78px;
  3860. width:171px;
  3861. height:40px;
  3862. display:flex;
  3863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:12px;
  3867. color:#333333;
  3868. }
  3869. #u114065 .text {
  3870. position:absolute;
  3871. align-self:center;
  3872. padding:2px 2px 2px 0px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u114065_text {
  3877. border-width:0px;
  3878. word-wrap:break-word;
  3879. text-transform:none;
  3880. visibility:hidden;
  3881. }
  3882. #u114066_img {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:171px;
  3888. height:40px;
  3889. }
  3890. #u114066 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:513px;
  3894. top:78px;
  3895. width:171px;
  3896. height:40px;
  3897. display:flex;
  3898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3899. font-weight:400;
  3900. font-style:normal;
  3901. font-size:12px;
  3902. color:#333333;
  3903. }
  3904. #u114066 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:2px 2px 2px 0px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u114066_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. visibility:hidden;
  3916. }
  3917. #u114067_img {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:169px;
  3923. height:40px;
  3924. }
  3925. #u114067 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:684px;
  3929. top:78px;
  3930. width:169px;
  3931. height:40px;
  3932. display:flex;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:12px;
  3937. color:#333333;
  3938. }
  3939. #u114067 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:2px 2px 2px 0px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u114067_text {
  3947. border-width:0px;
  3948. word-wrap:break-word;
  3949. text-transform:none;
  3950. }
  3951. #u114068 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:0px;
  3957. height:0px;
  3958. }
  3959. #u114069_div {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:1000px;
  3965. height:60px;
  3966. background:inherit;
  3967. background-color:rgba(255, 255, 255, 1);
  3968. box-sizing:border-box;
  3969. border-width:1px;
  3970. border-style:solid;
  3971. border-color:rgba(215, 215, 215, 1);
  3972. border-radius:0px;
  3973. -moz-box-shadow:none;
  3974. -webkit-box-shadow:none;
  3975. box-shadow:none;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:14px;
  3980. color:#AAAAAA;
  3981. text-align:center;
  3982. line-height:30px;
  3983. }
  3984. #u114069 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:1100px;
  3988. top:1190px;
  3989. width:1000px;
  3990. height:60px;
  3991. display:flex;
  3992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:14px;
  3996. color:#AAAAAA;
  3997. text-align:center;
  3998. line-height:30px;
  3999. }
  4000. #u114069 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:5px 10px 5px 10px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u114069_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. visibility:hidden;
  4012. }
  4013. #u114070_div {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:80px;
  4019. height:30px;
  4020. background:inherit;
  4021. background-color:rgba(255, 255, 255, 1);
  4022. box-sizing:border-box;
  4023. border-width:1px;
  4024. border-style:solid;
  4025. border-color:rgba(170, 170, 170, 1);
  4026. border-radius:4px;
  4027. -moz-box-shadow:none;
  4028. -webkit-box-shadow:none;
  4029. box-shadow:none;
  4030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4031. font-weight:400;
  4032. font-style:normal;
  4033. font-size:14px;
  4034. }
  4035. #u114070 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:1994px;
  4039. top:1205px;
  4040. width:80px;
  4041. height:30px;
  4042. display:flex;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:14px;
  4047. }
  4048. #u114070 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 2px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u114070_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. }
  4060. #u114071 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:0px;
  4066. height:0px;
  4067. }
  4068. #u114072_div {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:1000px;
  4074. height:1201px;
  4075. background:inherit;
  4076. background-color:rgba(242, 242, 242, 1);
  4077. box-sizing:border-box;
  4078. border-width:1px;
  4079. border-style:solid;
  4080. border-color:rgba(215, 215, 215, 1);
  4081. border-radius:0px;
  4082. -moz-box-shadow:none;
  4083. -webkit-box-shadow:none;
  4084. box-shadow:none;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:14px;
  4089. color:#AAAAAA;
  4090. text-align:center;
  4091. line-height:30px;
  4092. }
  4093. #u114072 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:2140px;
  4097. top:49px;
  4098. width:1000px;
  4099. height:1201px;
  4100. display:flex;
  4101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:14px;
  4105. color:#AAAAAA;
  4106. text-align:center;
  4107. line-height:30px;
  4108. }
  4109. #u114072 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:5px 10px 5px 10px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u114072_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. visibility:hidden;
  4121. }
  4122. #u114073_div {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:1000px;
  4128. height:200px;
  4129. background:inherit;
  4130. background-color:rgba(255, 255, 255, 1);
  4131. box-sizing:border-box;
  4132. border-width:1px;
  4133. border-style:solid;
  4134. border-color:rgba(215, 215, 215, 1);
  4135. border-radius:0px;
  4136. -moz-box-shadow:none;
  4137. -webkit-box-shadow:none;
  4138. box-shadow:none;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:14px;
  4143. color:#AAAAAA;
  4144. text-align:center;
  4145. line-height:30px;
  4146. }
  4147. #u114073 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:2140px;
  4151. top:49px;
  4152. width:1000px;
  4153. height:200px;
  4154. display:flex;
  4155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4156. font-weight:400;
  4157. font-style:normal;
  4158. font-size:14px;
  4159. color:#AAAAAA;
  4160. text-align:center;
  4161. line-height:30px;
  4162. }
  4163. #u114073 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:5px 10px 5px 10px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u114073_text {
  4171. border-width:0px;
  4172. word-wrap:break-word;
  4173. text-transform:none;
  4174. visibility:hidden;
  4175. }
  4176. #u114074_div {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:83px;
  4182. height:35px;
  4183. background:inherit;
  4184. background-color:rgba(255, 255, 255, 0);
  4185. border:none;
  4186. border-top:0px;
  4187. border-right:0px;
  4188. border-bottom:0px;
  4189. border-radius:0px;
  4190. border-top-left-radius:0px;
  4191. border-bottom-left-radius:0px;
  4192. -moz-box-shadow:none;
  4193. -webkit-box-shadow:none;
  4194. box-shadow:none;
  4195. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4196. font-weight:500;
  4197. font-style:normal;
  4198. font-size:18px;
  4199. }
  4200. #u114074 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:2160px;
  4204. top:67px;
  4205. width:83px;
  4206. height:35px;
  4207. display:flex;
  4208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4209. font-weight:500;
  4210. font-style:normal;
  4211. font-size:18px;
  4212. }
  4213. #u114074 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:5px 10px 5px 0px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u114074_text {
  4221. border-width:0px;
  4222. white-space:nowrap;
  4223. text-transform:none;
  4224. }
  4225. #u114075 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:0px;
  4231. height:0px;
  4232. }
  4233. #u114076_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:40px;
  4239. height:40px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 0);
  4242. border:none;
  4243. border-top:0px;
  4244. border-right:0px;
  4245. border-bottom:0px;
  4246. border-radius:0px;
  4247. border-top-left-radius:0px;
  4248. border-bottom-left-radius:0px;
  4249. -moz-box-shadow:none;
  4250. -webkit-box-shadow:none;
  4251. box-shadow:none;
  4252. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4253. font-weight:500;
  4254. font-style:normal;
  4255. font-size:14px;
  4256. text-align:center;
  4257. }
  4258. #u114076 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:3100px;
  4262. top:49px;
  4263. width:40px;
  4264. height:40px;
  4265. display:flex;
  4266. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4267. font-weight:500;
  4268. font-style:normal;
  4269. font-size:14px;
  4270. text-align:center;
  4271. }
  4272. #u114076 .text {
  4273. position:absolute;
  4274. align-self:center;
  4275. padding:5px 10px 5px 0px;
  4276. box-sizing:border-box;
  4277. width:100%;
  4278. }
  4279. #u114076_text {
  4280. border-width:0px;
  4281. word-wrap:break-word;
  4282. text-transform:none;
  4283. }
  4284. #u114077_img {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:13px;
  4290. height:13px;
  4291. }
  4292. #u114077 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:3088px;
  4296. top:65px;
  4297. width:13px;
  4298. height:13px;
  4299. display:flex;
  4300. font-size:14px;
  4301. }
  4302. #u114077 .text {
  4303. position:absolute;
  4304. align-self:center;
  4305. padding:2px 2px 2px 2px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u114077_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. visibility:hidden;
  4314. }
  4315. #u114078_div {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:227px;
  4321. height:43px;
  4322. background:inherit;
  4323. background-color:rgba(255, 255, 255, 0);
  4324. border:none;
  4325. border-top:0px;
  4326. border-right:0px;
  4327. border-bottom:0px;
  4328. border-radius:0px;
  4329. border-top-left-radius:0px;
  4330. border-bottom-left-radius:0px;
  4331. -moz-box-shadow:none;
  4332. -webkit-box-shadow:none;
  4333. box-shadow:none;
  4334. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4335. font-weight:500;
  4336. font-style:normal;
  4337. font-size:24px;
  4338. }
  4339. #u114078 {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:2170px;
  4343. top:118px;
  4344. width:227px;
  4345. height:43px;
  4346. display:flex;
  4347. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4348. font-weight:500;
  4349. font-style:normal;
  4350. font-size:24px;
  4351. }
  4352. #u114078 .text {
  4353. position:absolute;
  4354. align-self:center;
  4355. padding:5px 10px 5px 0px;
  4356. box-sizing:border-box;
  4357. width:100%;
  4358. }
  4359. #u114078_text {
  4360. border-width:0px;
  4361. white-space:nowrap;
  4362. text-transform:none;
  4363. }
  4364. #u114079_div {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:325px;
  4370. height:60px;
  4371. background:inherit;
  4372. background-color:rgba(255, 255, 255, 0);
  4373. border:none;
  4374. border-left:0px;
  4375. border-top:0px;
  4376. border-right:0px;
  4377. border-radius:0px;
  4378. border-bottom-right-radius:0px;
  4379. border-bottom-left-radius:0px;
  4380. -moz-box-shadow:none;
  4381. -webkit-box-shadow:none;
  4382. box-shadow:none;
  4383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:14px;
  4387. line-height:30px;
  4388. }
  4389. #u114079 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:2170px;
  4393. top:171px;
  4394. width:325px;
  4395. height:60px;
  4396. display:flex;
  4397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:14px;
  4401. line-height:30px;
  4402. }
  4403. #u114079 .text {
  4404. position:absolute;
  4405. align-self:flex-start;
  4406. padding:0px 0px 0px 0px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u114079_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. }
  4415. #u114080_div {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:1000px;
  4421. height:336px;
  4422. background:inherit;
  4423. background-color:rgba(255, 255, 255, 1);
  4424. box-sizing:border-box;
  4425. border-width:1px;
  4426. border-style:solid;
  4427. border-color:rgba(215, 215, 215, 1);
  4428. border-radius:0px;
  4429. -moz-box-shadow:none;
  4430. -webkit-box-shadow:none;
  4431. box-shadow:none;
  4432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:14px;
  4436. color:#AAAAAA;
  4437. text-align:center;
  4438. line-height:30px;
  4439. }
  4440. #u114080 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:2140px;
  4444. top:259px;
  4445. width:1000px;
  4446. height:336px;
  4447. display:flex;
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:14px;
  4452. color:#AAAAAA;
  4453. text-align:center;
  4454. line-height:30px;
  4455. }
  4456. #u114080 .text {
  4457. position:absolute;
  4458. align-self:center;
  4459. padding:5px 10px 5px 10px;
  4460. box-sizing:border-box;
  4461. width:100%;
  4462. }
  4463. #u114080_text {
  4464. border-width:0px;
  4465. word-wrap:break-word;
  4466. text-transform:none;
  4467. visibility:hidden;
  4468. }
  4469. #u114081_div {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:320px;
  4475. height:90px;
  4476. background:inherit;
  4477. background-color:rgba(255, 255, 255, 0);
  4478. border:none;
  4479. border-left:0px;
  4480. border-top:0px;
  4481. border-right:0px;
  4482. border-radius:0px;
  4483. border-bottom-right-radius:0px;
  4484. border-bottom-left-radius:0px;
  4485. -moz-box-shadow:none;
  4486. -webkit-box-shadow:none;
  4487. box-shadow:none;
  4488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:14px;
  4492. line-height:30px;
  4493. }
  4494. #u114081 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:2170px;
  4498. top:292px;
  4499. width:320px;
  4500. height:90px;
  4501. display:flex;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:14px;
  4506. line-height:30px;
  4507. }
  4508. #u114081 .text {
  4509. position:absolute;
  4510. align-self:flex-start;
  4511. padding:0px 0px 0px 0px;
  4512. box-sizing:border-box;
  4513. width:100%;
  4514. }
  4515. #u114081_text {
  4516. border-width:0px;
  4517. word-wrap:break-word;
  4518. text-transform:none;
  4519. }
  4520. #u114082 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:0px;
  4526. height:0px;
  4527. }
  4528. #u114083_div {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:1000px;
  4534. height:645px;
  4535. background:inherit;
  4536. background-color:rgba(255, 255, 255, 1);
  4537. box-sizing:border-box;
  4538. border-width:1px;
  4539. border-style:solid;
  4540. border-color:rgba(215, 215, 215, 1);
  4541. border-radius:0px;
  4542. -moz-box-shadow:none;
  4543. -webkit-box-shadow:none;
  4544. box-shadow:none;
  4545. }
  4546. #u114083 {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:2140px;
  4550. top:605px;
  4551. width:1000px;
  4552. height:645px;
  4553. display:flex;
  4554. }
  4555. #u114083 .text {
  4556. position:absolute;
  4557. align-self:center;
  4558. padding:2px 2px 2px 2px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u114083_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. visibility:hidden;
  4567. }
  4568. #u114084_div {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:103px;
  4574. height:24px;
  4575. background:inherit;
  4576. background-color:rgba(255, 255, 255, 0);
  4577. border:none;
  4578. border-top:0px;
  4579. border-right:0px;
  4580. border-bottom:0px;
  4581. border-radius:0px;
  4582. border-top-left-radius:0px;
  4583. border-bottom-left-radius:0px;
  4584. -moz-box-shadow:none;
  4585. -webkit-box-shadow:none;
  4586. box-shadow:none;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:10px;
  4591. color:#AAAAAA;
  4592. }
  4593. #u114084 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:2395px;
  4597. top:678px;
  4598. width:103px;
  4599. height:24px;
  4600. display:flex;
  4601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:10px;
  4605. color:#AAAAAA;
  4606. }
  4607. #u114084 .text {
  4608. position:absolute;
  4609. align-self:flex-start;
  4610. padding:5px 0px 5px 0px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u114084_text {
  4615. border-width:0px;
  4616. white-space:nowrap;
  4617. text-transform:none;
  4618. }
  4619. #u114085 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:0px;
  4625. height:0px;
  4626. }
  4627. #u114086_div {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:43px;
  4633. height:30px;
  4634. background:inherit;
  4635. background-color:rgba(255, 255, 255, 0);
  4636. border:none;
  4637. border-top:0px;
  4638. border-right:0px;
  4639. border-bottom:0px;
  4640. border-radius:0px;
  4641. border-top-left-radius:0px;
  4642. border-bottom-left-radius:0px;
  4643. -moz-box-shadow:none;
  4644. -webkit-box-shadow:none;
  4645. box-shadow:none;
  4646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:14px;
  4650. }
  4651. #u114086 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:2228px;
  4655. top:680px;
  4656. width:43px;
  4657. height:30px;
  4658. display:flex;
  4659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. font-size:14px;
  4663. }
  4664. #u114086 .text {
  4665. position:absolute;
  4666. align-self:flex-start;
  4667. padding:0px 0px 0px 0px;
  4668. box-sizing:border-box;
  4669. width:100%;
  4670. }
  4671. #u114086_text {
  4672. border-width:0px;
  4673. white-space:nowrap;
  4674. text-transform:none;
  4675. }
  4676. #u114087_div {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:23px;
  4682. height:16px;
  4683. background:inherit;
  4684. background-color:rgba(255, 255, 255, 0);
  4685. border:none;
  4686. border-top:0px;
  4687. border-right:0px;
  4688. border-bottom:0px;
  4689. border-radius:0px;
  4690. border-top-left-radius:0px;
  4691. border-bottom-left-radius:0px;
  4692. -moz-box-shadow:none;
  4693. -webkit-box-shadow:none;
  4694. box-shadow:none;
  4695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4696. font-weight:400;
  4697. font-style:normal;
  4698. font-size:11px;
  4699. color:#AAAAAA;
  4700. }
  4701. #u114087 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:2228px;
  4705. top:708px;
  4706. width:23px;
  4707. height:16px;
  4708. display:flex;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:11px;
  4713. color:#AAAAAA;
  4714. }
  4715. #u114087 .text {
  4716. position:absolute;
  4717. align-self:flex-start;
  4718. padding:0px 0px 0px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u114087_text {
  4723. border-width:0px;
  4724. white-space:nowrap;
  4725. text-transform:none;
  4726. }
  4727. #u114088_div {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:43px;
  4733. height:20px;
  4734. background:inherit;
  4735. background-color:rgba(255, 255, 255, 0);
  4736. border:none;
  4737. border-top:0px;
  4738. border-right:0px;
  4739. border-bottom:0px;
  4740. border-radius:0px;
  4741. border-top-left-radius:0px;
  4742. border-bottom-left-radius:0px;
  4743. -moz-box-shadow:none;
  4744. -webkit-box-shadow:none;
  4745. box-shadow:none;
  4746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4747. font-weight:400;
  4748. font-style:normal;
  4749. font-size:14px;
  4750. }
  4751. #u114088 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:2228px;
  4755. top:750px;
  4756. width:43px;
  4757. height:20px;
  4758. display:flex;
  4759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:14px;
  4763. }
  4764. #u114088 .text {
  4765. position:absolute;
  4766. align-self:flex-start;
  4767. padding:0px 0px 0px 0px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u114088_text {
  4772. border-width:0px;
  4773. white-space:nowrap;
  4774. text-transform:none;
  4775. }
  4776. #u114089_div {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:63px;
  4782. height:16px;
  4783. background:inherit;
  4784. background-color:rgba(255, 255, 255, 0);
  4785. border:none;
  4786. border-top:0px;
  4787. border-right:0px;
  4788. border-bottom:0px;
  4789. border-radius:0px;
  4790. border-top-left-radius:0px;
  4791. border-bottom-left-radius:0px;
  4792. -moz-box-shadow:none;
  4793. -webkit-box-shadow:none;
  4794. box-shadow:none;
  4795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4796. font-weight:400;
  4797. font-style:normal;
  4798. font-size:11px;
  4799. color:#AAAAAA;
  4800. }
  4801. #u114089 {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:2228px;
  4805. top:778px;
  4806. width:63px;
  4807. height:16px;
  4808. display:flex;
  4809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4810. font-weight:400;
  4811. font-style:normal;
  4812. font-size:11px;
  4813. color:#AAAAAA;
  4814. }
  4815. #u114089 .text {
  4816. position:absolute;
  4817. align-self:flex-start;
  4818. padding:0px 0px 0px 0px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u114089_text {
  4823. border-width:0px;
  4824. white-space:nowrap;
  4825. text-transform:none;
  4826. }
  4827. #u114090_div {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:37px;
  4833. height:35px;
  4834. background:inherit;
  4835. background-color:rgba(255, 255, 255, 0);
  4836. border:none;
  4837. border-top:0px;
  4838. border-right:0px;
  4839. border-bottom:0px;
  4840. border-radius:0px;
  4841. border-top-left-radius:0px;
  4842. border-bottom-left-radius:0px;
  4843. -moz-box-shadow:none;
  4844. -webkit-box-shadow:none;
  4845. box-shadow:none;
  4846. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4847. font-weight:500;
  4848. font-style:normal;
  4849. font-size:18px;
  4850. }
  4851. #u114090 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:2166px;
  4855. top:623px;
  4856. width:37px;
  4857. height:35px;
  4858. display:flex;
  4859. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4860. font-weight:500;
  4861. font-style:normal;
  4862. font-size:18px;
  4863. }
  4864. #u114090 .text {
  4865. position:absolute;
  4866. align-self:flex-start;
  4867. padding:5px 0px 5px 0px;
  4868. box-sizing:border-box;
  4869. width:100%;
  4870. }
  4871. #u114090_text {
  4872. border-width:0px;
  4873. white-space:nowrap;
  4874. text-transform:none;
  4875. }
  4876. #u114091 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:0px;
  4882. height:0px;
  4883. }
  4884. #u114092_img {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:2px;
  4890. height:32px;
  4891. }
  4892. #u114092 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:2205px;
  4896. top:714px;
  4897. width:1px;
  4898. height:31px;
  4899. display:flex;
  4900. }
  4901. #u114092 .text {
  4902. position:absolute;
  4903. align-self:center;
  4904. padding:2px 2px 2px 2px;
  4905. box-sizing:border-box;
  4906. width:100%;
  4907. }
  4908. #u114092_text {
  4909. border-width:0px;
  4910. word-wrap:break-word;
  4911. text-transform:none;
  4912. visibility:hidden;
  4913. }
  4914. #u114093 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:0px;
  4920. height:0px;
  4921. }
  4922. #u114094_div {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:30px;
  4928. height:30px;
  4929. background:inherit;
  4930. background-color:rgba(24, 144, 255, 1);
  4931. border:none;
  4932. border-radius:4px;
  4933. -moz-box-shadow:none;
  4934. -webkit-box-shadow:none;
  4935. box-shadow:none;
  4936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:10px;
  4940. color:#FFFFFF;
  4941. }
  4942. #u114094 {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:2190px;
  4946. top:750px;
  4947. width:30px;
  4948. height:30px;
  4949. display:flex;
  4950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4951. font-weight:400;
  4952. font-style:normal;
  4953. font-size:10px;
  4954. color:#FFFFFF;
  4955. }
  4956. #u114094 .text {
  4957. position:absolute;
  4958. align-self:center;
  4959. padding:2px 2px 2px 2px;
  4960. box-sizing:border-box;
  4961. width:100%;
  4962. }
  4963. #u114094_text {
  4964. border-width:0px;
  4965. word-wrap:break-word;
  4966. text-transform:none;
  4967. }
  4968. #u114095 {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:0px;
  4974. height:0px;
  4975. }
  4976. #u114096_img {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:9px;
  4982. height:9px;
  4983. }
  4984. #u114096 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:2211px;
  4988. top:772px;
  4989. width:9px;
  4990. height:9px;
  4991. display:flex;
  4992. }
  4993. #u114096 .text {
  4994. position:absolute;
  4995. align-self:center;
  4996. padding:2px 2px 2px 2px;
  4997. box-sizing:border-box;
  4998. width:100%;
  4999. }
  5000. #u114096_text {
  5001. border-width:0px;
  5002. word-wrap:break-word;
  5003. text-transform:none;
  5004. visibility:hidden;
  5005. }
  5006. #u114097_img {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:3px;
  5012. height:3px;
  5013. }
  5014. #u114097 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:2214px;
  5018. top:775px;
  5019. width:3px;
  5020. height:3px;
  5021. display:flex;
  5022. }
  5023. #u114097 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:2px 2px 2px 2px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u114097_text {
  5031. border-width:0px;
  5032. word-wrap:break-word;
  5033. text-transform:none;
  5034. visibility:hidden;
  5035. }
  5036. #u114098 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:0px;
  5042. height:0px;
  5043. }
  5044. #u114099_div {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:30px;
  5050. height:30px;
  5051. background:inherit;
  5052. background-color:rgba(24, 144, 255, 1);
  5053. border:none;
  5054. border-radius:4px;
  5055. -moz-box-shadow:none;
  5056. -webkit-box-shadow:none;
  5057. box-shadow:none;
  5058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5059. font-weight:400;
  5060. font-style:normal;
  5061. font-size:12px;
  5062. color:#FFFFFF;
  5063. }
  5064. #u114099 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:2190px;
  5068. top:680px;
  5069. width:30px;
  5070. height:30px;
  5071. display:flex;
  5072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:12px;
  5076. color:#FFFFFF;
  5077. }
  5078. #u114099 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 2px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u114099_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. }
  5090. #u114100 {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:0px;
  5094. top:0px;
  5095. width:0px;
  5096. height:0px;
  5097. }
  5098. #u114101_img {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:0px;
  5103. width:9px;
  5104. height:9px;
  5105. }
  5106. #u114101 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:2212px;
  5110. top:702px;
  5111. width:9px;
  5112. height:9px;
  5113. display:flex;
  5114. }
  5115. #u114101 .text {
  5116. position:absolute;
  5117. align-self:center;
  5118. padding:2px 2px 2px 2px;
  5119. box-sizing:border-box;
  5120. width:100%;
  5121. }
  5122. #u114101_text {
  5123. border-width:0px;
  5124. word-wrap:break-word;
  5125. text-transform:none;
  5126. visibility:hidden;
  5127. }
  5128. #u114102_img {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:5px;
  5134. height:4px;
  5135. }
  5136. #u114102 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:2214px;
  5140. top:705px;
  5141. width:5px;
  5142. height:4px;
  5143. display:flex;
  5144. }
  5145. #u114102 .text {
  5146. position:absolute;
  5147. align-self:center;
  5148. padding:2px 2px 2px 2px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u114102_text {
  5153. border-width:0px;
  5154. word-wrap:break-word;
  5155. text-transform:none;
  5156. visibility:hidden;
  5157. }
  5158. #u114103_div {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:103px;
  5164. height:24px;
  5165. background:inherit;
  5166. background-color:rgba(255, 255, 255, 0);
  5167. border:none;
  5168. border-top:0px;
  5169. border-right:0px;
  5170. border-bottom:0px;
  5171. border-radius:0px;
  5172. border-top-left-radius:0px;
  5173. border-bottom-left-radius:0px;
  5174. -moz-box-shadow:none;
  5175. -webkit-box-shadow:none;
  5176. box-shadow:none;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:10px;
  5181. color:#AAAAAA;
  5182. }
  5183. #u114103 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:2395px;
  5187. top:748px;
  5188. width:103px;
  5189. height:24px;
  5190. display:flex;
  5191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5192. font-weight:400;
  5193. font-style:normal;
  5194. font-size:10px;
  5195. color:#AAAAAA;
  5196. }
  5197. #u114103 .text {
  5198. position:absolute;
  5199. align-self:flex-start;
  5200. padding:5px 0px 5px 0px;
  5201. box-sizing:border-box;
  5202. width:100%;
  5203. }
  5204. #u114103_text {
  5205. border-width:0px;
  5206. white-space:nowrap;
  5207. text-transform:none;
  5208. }
  5209. #u114104_div {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:320px;
  5215. height:90px;
  5216. background:inherit;
  5217. background-color:rgba(255, 255, 255, 0);
  5218. border:none;
  5219. border-left:0px;
  5220. border-top:0px;
  5221. border-right:0px;
  5222. border-radius:0px;
  5223. border-bottom-right-radius:0px;
  5224. border-bottom-left-radius:0px;
  5225. -moz-box-shadow:none;
  5226. -webkit-box-shadow:none;
  5227. box-shadow:none;
  5228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:14px;
  5232. line-height:30px;
  5233. }
  5234. #u114104 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:2490px;
  5238. top:292px;
  5239. width:320px;
  5240. height:90px;
  5241. display:flex;
  5242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5243. font-weight:400;
  5244. font-style:normal;
  5245. font-size:14px;
  5246. line-height:30px;
  5247. }
  5248. #u114104 .text {
  5249. position:absolute;
  5250. align-self:flex-start;
  5251. padding:0px 0px 0px 0px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u114104_text {
  5256. border-width:0px;
  5257. word-wrap:break-word;
  5258. text-transform:none;
  5259. }
  5260. #u114105_div {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:320px;
  5266. height:60px;
  5267. background:inherit;
  5268. background-color:rgba(255, 255, 255, 0);
  5269. border:none;
  5270. border-left:0px;
  5271. border-top:0px;
  5272. border-right:0px;
  5273. border-radius:0px;
  5274. border-bottom-right-radius:0px;
  5275. border-bottom-left-radius:0px;
  5276. -moz-box-shadow:none;
  5277. -webkit-box-shadow:none;
  5278. box-shadow:none;
  5279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:14px;
  5283. line-height:30px;
  5284. }
  5285. #u114105 {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:2810px;
  5289. top:292px;
  5290. width:320px;
  5291. height:60px;
  5292. display:flex;
  5293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5294. font-weight:400;
  5295. font-style:normal;
  5296. font-size:14px;
  5297. line-height:30px;
  5298. }
  5299. #u114105 .text {
  5300. position:absolute;
  5301. align-self:flex-start;
  5302. padding:0px 0px 0px 0px;
  5303. box-sizing:border-box;
  5304. width:100%;
  5305. }
  5306. #u114105_text {
  5307. border-width:0px;
  5308. word-wrap:break-word;
  5309. text-transform:none;
  5310. }
  5311. #u114106_div {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:320px;
  5317. height:30px;
  5318. background:inherit;
  5319. background-color:rgba(255, 255, 255, 0);
  5320. border:none;
  5321. border-left:0px;
  5322. border-top:0px;
  5323. border-right:0px;
  5324. border-radius:0px;
  5325. border-bottom-right-radius:0px;
  5326. border-bottom-left-radius:0px;
  5327. -moz-box-shadow:none;
  5328. -webkit-box-shadow:none;
  5329. box-shadow:none;
  5330. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5331. font-weight:500;
  5332. font-style:normal;
  5333. font-size:18px;
  5334. line-height:30px;
  5335. }
  5336. #u114106 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:2170px;
  5340. top:402px;
  5341. width:320px;
  5342. height:30px;
  5343. display:flex;
  5344. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5345. font-weight:500;
  5346. font-style:normal;
  5347. font-size:18px;
  5348. line-height:30px;
  5349. }
  5350. #u114106 .text {
  5351. position:absolute;
  5352. align-self:flex-start;
  5353. padding:0px 0px 0px 0px;
  5354. box-sizing:border-box;
  5355. width:100%;
  5356. }
  5357. #u114106_text {
  5358. border-width:0px;
  5359. word-wrap:break-word;
  5360. text-transform:none;
  5361. }
  5362. #u114107_img {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:108px;
  5368. height:108px;
  5369. }
  5370. #u114107 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:2984px;
  5374. top:119px;
  5375. width:108px;
  5376. height:108px;
  5377. display:flex;
  5378. -webkit-transform:rotate(315deg);
  5379. -moz-transform:rotate(315deg);
  5380. -ms-transform:rotate(315deg);
  5381. transform:rotate(315deg);
  5382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:28px;
  5386. color:#D9001B;
  5387. }
  5388. #u114107 .text {
  5389. position:absolute;
  5390. align-self:center;
  5391. padding:2px 2px 2px 2px;
  5392. box-sizing:border-box;
  5393. width:100%;
  5394. }
  5395. #u114107_text {
  5396. border-width:0px;
  5397. word-wrap:break-word;
  5398. text-transform:none;
  5399. }
  5400. #u114108 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:2170px;
  5404. top:442px;
  5405. width:853px;
  5406. height:118px;
  5407. }
  5408. #u114109_img {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:0px;
  5412. top:0px;
  5413. width:171px;
  5414. height:38px;
  5415. }
  5416. #u114109 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:171px;
  5422. height:38px;
  5423. display:flex;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:12px;
  5428. color:#FFFFFF;
  5429. }
  5430. #u114109 .text {
  5431. position:absolute;
  5432. align-self:center;
  5433. padding:2px 2px 2px 0px;
  5434. box-sizing:border-box;
  5435. width:100%;
  5436. }
  5437. #u114109_text {
  5438. border-width:0px;
  5439. word-wrap:break-word;
  5440. text-transform:none;
  5441. }
  5442. #u114110_img {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:171px;
  5448. height:38px;
  5449. }
  5450. #u114110 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:171px;
  5454. top:0px;
  5455. width:171px;
  5456. height:38px;
  5457. display:flex;
  5458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:12px;
  5462. color:#FFFFFF;
  5463. }
  5464. #u114110 .text {
  5465. position:absolute;
  5466. align-self:center;
  5467. padding:2px 2px 2px 0px;
  5468. box-sizing:border-box;
  5469. width:100%;
  5470. }
  5471. #u114110_text {
  5472. border-width:0px;
  5473. word-wrap:break-word;
  5474. text-transform:none;
  5475. }
  5476. #u114111_img {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:171px;
  5482. height:38px;
  5483. }
  5484. #u114111 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:342px;
  5488. top:0px;
  5489. width:171px;
  5490. height:38px;
  5491. display:flex;
  5492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:12px;
  5496. color:#FFFFFF;
  5497. }
  5498. #u114111 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 2px 2px 0px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u114111_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. }
  5510. #u114112_img {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:171px;
  5516. height:38px;
  5517. }
  5518. #u114112 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:513px;
  5522. top:0px;
  5523. width:171px;
  5524. height:38px;
  5525. display:flex;
  5526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5527. font-weight:400;
  5528. font-style:normal;
  5529. font-size:12px;
  5530. color:#FFFFFF;
  5531. }
  5532. #u114112 .text {
  5533. position:absolute;
  5534. align-self:center;
  5535. padding:2px 2px 2px 0px;
  5536. box-sizing:border-box;
  5537. width:100%;
  5538. }
  5539. #u114112_text {
  5540. border-width:0px;
  5541. word-wrap:break-word;
  5542. text-transform:none;
  5543. }
  5544. #u114113_img {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:0px;
  5548. top:0px;
  5549. width:169px;
  5550. height:38px;
  5551. }
  5552. #u114113 {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:684px;
  5556. top:0px;
  5557. width:169px;
  5558. height:38px;
  5559. display:flex;
  5560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5561. font-weight:400;
  5562. font-style:normal;
  5563. font-size:12px;
  5564. color:#FFFFFF;
  5565. }
  5566. #u114113 .text {
  5567. position:absolute;
  5568. align-self:center;
  5569. padding:2px 2px 2px 0px;
  5570. box-sizing:border-box;
  5571. width:100%;
  5572. }
  5573. #u114113_text {
  5574. border-width:0px;
  5575. word-wrap:break-word;
  5576. text-transform:none;
  5577. }
  5578. #u114114_img {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:171px;
  5584. height:40px;
  5585. }
  5586. #u114114 {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:38px;
  5591. width:171px;
  5592. height:40px;
  5593. display:flex;
  5594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:12px;
  5598. color:#333333;
  5599. }
  5600. #u114114 .text {
  5601. position:absolute;
  5602. align-self:center;
  5603. padding:2px 2px 2px 0px;
  5604. box-sizing:border-box;
  5605. width:100%;
  5606. }
  5607. #u114114_text {
  5608. border-width:0px;
  5609. word-wrap:break-word;
  5610. text-transform:none;
  5611. visibility:hidden;
  5612. }
  5613. #u114115_img {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:171px;
  5619. height:40px;
  5620. }
  5621. #u114115 {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:171px;
  5625. top:38px;
  5626. width:171px;
  5627. height:40px;
  5628. display:flex;
  5629. font-family:'ArialMT', 'Arial', sans-serif;
  5630. font-weight:400;
  5631. font-style:normal;
  5632. font-size:12px;
  5633. color:#AAAAAA;
  5634. text-align:left;
  5635. }
  5636. #u114115 .text {
  5637. position:absolute;
  5638. align-self:center;
  5639. padding:2px 2px 2px 0px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u114115_text {
  5644. border-width:0px;
  5645. word-wrap:break-word;
  5646. text-transform:none;
  5647. visibility:hidden;
  5648. }
  5649. #u114116_img {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:171px;
  5655. height:40px;
  5656. }
  5657. #u114116 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:342px;
  5661. top:38px;
  5662. width:171px;
  5663. height:40px;
  5664. display:flex;
  5665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5666. font-weight:400;
  5667. font-style:normal;
  5668. font-size:12px;
  5669. color:#333333;
  5670. }
  5671. #u114116 .text {
  5672. position:absolute;
  5673. align-self:center;
  5674. padding:2px 2px 2px 0px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u114116_text {
  5679. border-width:0px;
  5680. word-wrap:break-word;
  5681. text-transform:none;
  5682. visibility:hidden;
  5683. }
  5684. #u114117_img {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:171px;
  5690. height:40px;
  5691. }
  5692. #u114117 {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:513px;
  5696. top:38px;
  5697. width:171px;
  5698. height:40px;
  5699. display:flex;
  5700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5701. font-weight:400;
  5702. font-style:normal;
  5703. font-size:12px;
  5704. color:#333333;
  5705. }
  5706. #u114117 .text {
  5707. position:absolute;
  5708. align-self:center;
  5709. padding:2px 2px 2px 0px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u114117_text {
  5714. border-width:0px;
  5715. word-wrap:break-word;
  5716. text-transform:none;
  5717. visibility:hidden;
  5718. }
  5719. #u114118_img {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:169px;
  5725. height:40px;
  5726. }
  5727. #u114118 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:684px;
  5731. top:38px;
  5732. width:169px;
  5733. height:40px;
  5734. display:flex;
  5735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5736. font-weight:400;
  5737. font-style:normal;
  5738. font-size:12px;
  5739. color:#333333;
  5740. }
  5741. #u114118 .text {
  5742. position:absolute;
  5743. align-self:center;
  5744. padding:2px 2px 2px 0px;
  5745. box-sizing:border-box;
  5746. width:100%;
  5747. }
  5748. #u114118_text {
  5749. border-width:0px;
  5750. word-wrap:break-word;
  5751. text-transform:none;
  5752. }
  5753. #u114119_img {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:171px;
  5759. height:40px;
  5760. }
  5761. #u114119 {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:78px;
  5766. width:171px;
  5767. height:40px;
  5768. display:flex;
  5769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:12px;
  5773. color:#333333;
  5774. }
  5775. #u114119 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:2px 2px 2px 0px;
  5779. box-sizing:border-box;
  5780. width:100%;
  5781. }
  5782. #u114119_text {
  5783. border-width:0px;
  5784. word-wrap:break-word;
  5785. text-transform:none;
  5786. visibility:hidden;
  5787. }
  5788. #u114120_img {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:171px;
  5794. height:40px;
  5795. }
  5796. #u114120 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:171px;
  5800. top:78px;
  5801. width:171px;
  5802. height:40px;
  5803. display:flex;
  5804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5805. font-weight:400;
  5806. font-style:normal;
  5807. font-size:12px;
  5808. color:#333333;
  5809. }
  5810. #u114120 .text {
  5811. position:absolute;
  5812. align-self:center;
  5813. padding:2px 2px 2px 0px;
  5814. box-sizing:border-box;
  5815. width:100%;
  5816. }
  5817. #u114120_text {
  5818. border-width:0px;
  5819. word-wrap:break-word;
  5820. text-transform:none;
  5821. visibility:hidden;
  5822. }
  5823. #u114121_img {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:171px;
  5829. height:40px;
  5830. }
  5831. #u114121 {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:342px;
  5835. top:78px;
  5836. width:171px;
  5837. height:40px;
  5838. display:flex;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:12px;
  5843. color:#333333;
  5844. }
  5845. #u114121 .text {
  5846. position:absolute;
  5847. align-self:center;
  5848. padding:2px 2px 2px 0px;
  5849. box-sizing:border-box;
  5850. width:100%;
  5851. }
  5852. #u114121_text {
  5853. border-width:0px;
  5854. word-wrap:break-word;
  5855. text-transform:none;
  5856. visibility:hidden;
  5857. }
  5858. #u114122_img {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:171px;
  5864. height:40px;
  5865. }
  5866. #u114122 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:513px;
  5870. top:78px;
  5871. width:171px;
  5872. height:40px;
  5873. display:flex;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:12px;
  5878. color:#333333;
  5879. }
  5880. #u114122 .text {
  5881. position:absolute;
  5882. align-self:center;
  5883. padding:2px 2px 2px 0px;
  5884. box-sizing:border-box;
  5885. width:100%;
  5886. }
  5887. #u114122_text {
  5888. border-width:0px;
  5889. word-wrap:break-word;
  5890. text-transform:none;
  5891. visibility:hidden;
  5892. }
  5893. #u114123_img {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:0px;
  5897. top:0px;
  5898. width:169px;
  5899. height:40px;
  5900. }
  5901. #u114123 {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:684px;
  5905. top:78px;
  5906. width:169px;
  5907. height:40px;
  5908. display:flex;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:12px;
  5913. color:#333333;
  5914. }
  5915. #u114123 .text {
  5916. position:absolute;
  5917. align-self:center;
  5918. padding:2px 2px 2px 0px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u114123_text {
  5923. border-width:0px;
  5924. word-wrap:break-word;
  5925. text-transform:none;
  5926. }
  5927. #u114124 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:0px;
  5933. height:0px;
  5934. }
  5935. #u114125_div {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:1000px;
  5941. height:60px;
  5942. background:inherit;
  5943. background-color:rgba(255, 255, 255, 1);
  5944. box-sizing:border-box;
  5945. border-width:1px;
  5946. border-style:solid;
  5947. border-color:rgba(215, 215, 215, 1);
  5948. border-radius:0px;
  5949. -moz-box-shadow:none;
  5950. -webkit-box-shadow:none;
  5951. box-shadow:none;
  5952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5953. font-weight:400;
  5954. font-style:normal;
  5955. font-size:14px;
  5956. color:#AAAAAA;
  5957. text-align:center;
  5958. line-height:30px;
  5959. }
  5960. #u114125 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:2140px;
  5964. top:1190px;
  5965. width:1000px;
  5966. height:60px;
  5967. display:flex;
  5968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. font-size:14px;
  5972. color:#AAAAAA;
  5973. text-align:center;
  5974. line-height:30px;
  5975. }
  5976. #u114125 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:5px 10px 5px 10px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u114125_text {
  5984. border-width:0px;
  5985. word-wrap:break-word;
  5986. text-transform:none;
  5987. visibility:hidden;
  5988. }
  5989. #u114126_div {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:80px;
  5995. height:30px;
  5996. background:inherit;
  5997. background-color:rgba(255, 255, 255, 1);
  5998. box-sizing:border-box;
  5999. border-width:1px;
  6000. border-style:solid;
  6001. border-color:rgba(170, 170, 170, 1);
  6002. border-radius:4px;
  6003. -moz-box-shadow:none;
  6004. -webkit-box-shadow:none;
  6005. box-shadow:none;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:14px;
  6010. }
  6011. #u114126 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:3034px;
  6015. top:1205px;
  6016. width:80px;
  6017. height:30px;
  6018. display:flex;
  6019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6020. font-weight:400;
  6021. font-style:normal;
  6022. font-size:14px;
  6023. }
  6024. #u114126 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:2px 2px 2px 2px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u114126_text {
  6032. border-width:0px;
  6033. word-wrap:break-word;
  6034. text-transform:none;
  6035. }
  6036. #u114127 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:0px;
  6042. height:0px;
  6043. }
  6044. #u114128_div {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:1000px;
  6050. height:1201px;
  6051. background:inherit;
  6052. background-color:rgba(242, 242, 242, 1);
  6053. box-sizing:border-box;
  6054. border-width:1px;
  6055. border-style:solid;
  6056. border-color:rgba(215, 215, 215, 1);
  6057. border-radius:0px;
  6058. -moz-box-shadow:none;
  6059. -webkit-box-shadow:none;
  6060. box-shadow:none;
  6061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6062. font-weight:400;
  6063. font-style:normal;
  6064. font-size:14px;
  6065. color:#AAAAAA;
  6066. text-align:center;
  6067. line-height:30px;
  6068. }
  6069. #u114128 {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:3130px;
  6073. top:49px;
  6074. width:1000px;
  6075. height:1201px;
  6076. display:flex;
  6077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6078. font-weight:400;
  6079. font-style:normal;
  6080. font-size:14px;
  6081. color:#AAAAAA;
  6082. text-align:center;
  6083. line-height:30px;
  6084. }
  6085. #u114128 .text {
  6086. position:absolute;
  6087. align-self:center;
  6088. padding:5px 10px 5px 10px;
  6089. box-sizing:border-box;
  6090. width:100%;
  6091. }
  6092. #u114128_text {
  6093. border-width:0px;
  6094. word-wrap:break-word;
  6095. text-transform:none;
  6096. visibility:hidden;
  6097. }
  6098. #u114129_div {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:1000px;
  6104. height:200px;
  6105. background:inherit;
  6106. background-color:rgba(255, 255, 255, 1);
  6107. box-sizing:border-box;
  6108. border-width:1px;
  6109. border-style:solid;
  6110. border-color:rgba(215, 215, 215, 1);
  6111. border-radius:0px;
  6112. -moz-box-shadow:none;
  6113. -webkit-box-shadow:none;
  6114. box-shadow:none;
  6115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6116. font-weight:400;
  6117. font-style:normal;
  6118. font-size:14px;
  6119. color:#AAAAAA;
  6120. text-align:center;
  6121. line-height:30px;
  6122. }
  6123. #u114129 {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:3130px;
  6127. top:49px;
  6128. width:1000px;
  6129. height:200px;
  6130. display:flex;
  6131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6132. font-weight:400;
  6133. font-style:normal;
  6134. font-size:14px;
  6135. color:#AAAAAA;
  6136. text-align:center;
  6137. line-height:30px;
  6138. }
  6139. #u114129 .text {
  6140. position:absolute;
  6141. align-self:center;
  6142. padding:5px 10px 5px 10px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u114129_text {
  6147. border-width:0px;
  6148. word-wrap:break-word;
  6149. text-transform:none;
  6150. visibility:hidden;
  6151. }
  6152. #u114130_div {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:83px;
  6158. height:35px;
  6159. background:inherit;
  6160. background-color:rgba(255, 255, 255, 0);
  6161. border:none;
  6162. border-top:0px;
  6163. border-right:0px;
  6164. border-bottom:0px;
  6165. border-radius:0px;
  6166. border-top-left-radius:0px;
  6167. border-bottom-left-radius:0px;
  6168. -moz-box-shadow:none;
  6169. -webkit-box-shadow:none;
  6170. box-shadow:none;
  6171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6172. font-weight:500;
  6173. font-style:normal;
  6174. font-size:18px;
  6175. }
  6176. #u114130 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:3150px;
  6180. top:67px;
  6181. width:83px;
  6182. height:35px;
  6183. display:flex;
  6184. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6185. font-weight:500;
  6186. font-style:normal;
  6187. font-size:18px;
  6188. }
  6189. #u114130 .text {
  6190. position:absolute;
  6191. align-self:center;
  6192. padding:5px 10px 5px 0px;
  6193. box-sizing:border-box;
  6194. width:100%;
  6195. }
  6196. #u114130_text {
  6197. border-width:0px;
  6198. white-space:nowrap;
  6199. text-transform:none;
  6200. }
  6201. #u114131 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:0px;
  6207. height:0px;
  6208. }
  6209. #u114132_div {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:40px;
  6215. height:40px;
  6216. background:inherit;
  6217. background-color:rgba(255, 255, 255, 0);
  6218. border:none;
  6219. border-top:0px;
  6220. border-right:0px;
  6221. border-bottom:0px;
  6222. border-radius:0px;
  6223. border-top-left-radius:0px;
  6224. border-bottom-left-radius:0px;
  6225. -moz-box-shadow:none;
  6226. -webkit-box-shadow:none;
  6227. box-shadow:none;
  6228. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6229. font-weight:500;
  6230. font-style:normal;
  6231. font-size:14px;
  6232. text-align:center;
  6233. }
  6234. #u114132 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:4090px;
  6238. top:49px;
  6239. width:40px;
  6240. height:40px;
  6241. display:flex;
  6242. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6243. font-weight:500;
  6244. font-style:normal;
  6245. font-size:14px;
  6246. text-align:center;
  6247. }
  6248. #u114132 .text {
  6249. position:absolute;
  6250. align-self:center;
  6251. padding:5px 10px 5px 0px;
  6252. box-sizing:border-box;
  6253. width:100%;
  6254. }
  6255. #u114132_text {
  6256. border-width:0px;
  6257. word-wrap:break-word;
  6258. text-transform:none;
  6259. }
  6260. #u114133_img {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:0px;
  6264. top:0px;
  6265. width:13px;
  6266. height:13px;
  6267. }
  6268. #u114133 {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:4078px;
  6272. top:65px;
  6273. width:13px;
  6274. height:13px;
  6275. display:flex;
  6276. font-size:14px;
  6277. }
  6278. #u114133 .text {
  6279. position:absolute;
  6280. align-self:center;
  6281. padding:2px 2px 2px 2px;
  6282. box-sizing:border-box;
  6283. width:100%;
  6284. }
  6285. #u114133_text {
  6286. border-width:0px;
  6287. word-wrap:break-word;
  6288. text-transform:none;
  6289. visibility:hidden;
  6290. }
  6291. #u114134_div {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:227px;
  6297. height:43px;
  6298. background:inherit;
  6299. background-color:rgba(255, 255, 255, 0);
  6300. border:none;
  6301. border-top:0px;
  6302. border-right:0px;
  6303. border-bottom:0px;
  6304. border-radius:0px;
  6305. border-top-left-radius:0px;
  6306. border-bottom-left-radius:0px;
  6307. -moz-box-shadow:none;
  6308. -webkit-box-shadow:none;
  6309. box-shadow:none;
  6310. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6311. font-weight:500;
  6312. font-style:normal;
  6313. font-size:24px;
  6314. }
  6315. #u114134 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:3160px;
  6319. top:118px;
  6320. width:227px;
  6321. height:43px;
  6322. display:flex;
  6323. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6324. font-weight:500;
  6325. font-style:normal;
  6326. font-size:24px;
  6327. }
  6328. #u114134 .text {
  6329. position:absolute;
  6330. align-self:center;
  6331. padding:5px 10px 5px 0px;
  6332. box-sizing:border-box;
  6333. width:100%;
  6334. }
  6335. #u114134_text {
  6336. border-width:0px;
  6337. white-space:nowrap;
  6338. text-transform:none;
  6339. }
  6340. #u114135_div {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:325px;
  6346. height:60px;
  6347. background:inherit;
  6348. background-color:rgba(255, 255, 255, 0);
  6349. border:none;
  6350. border-left:0px;
  6351. border-top:0px;
  6352. border-right:0px;
  6353. border-radius:0px;
  6354. border-bottom-right-radius:0px;
  6355. border-bottom-left-radius:0px;
  6356. -moz-box-shadow:none;
  6357. -webkit-box-shadow:none;
  6358. box-shadow:none;
  6359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6360. font-weight:400;
  6361. font-style:normal;
  6362. font-size:14px;
  6363. line-height:30px;
  6364. }
  6365. #u114135 {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:3160px;
  6369. top:171px;
  6370. width:325px;
  6371. height:60px;
  6372. display:flex;
  6373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:14px;
  6377. line-height:30px;
  6378. }
  6379. #u114135 .text {
  6380. position:absolute;
  6381. align-self:flex-start;
  6382. padding:0px 0px 0px 0px;
  6383. box-sizing:border-box;
  6384. width:100%;
  6385. }
  6386. #u114135_text {
  6387. border-width:0px;
  6388. word-wrap:break-word;
  6389. text-transform:none;
  6390. }
  6391. #u114136_div {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:0px;
  6395. top:0px;
  6396. width:1000px;
  6397. height:336px;
  6398. background:inherit;
  6399. background-color:rgba(255, 255, 255, 1);
  6400. box-sizing:border-box;
  6401. border-width:1px;
  6402. border-style:solid;
  6403. border-color:rgba(215, 215, 215, 1);
  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', sans-serif;
  6409. font-weight:400;
  6410. font-style:normal;
  6411. font-size:14px;
  6412. color:#AAAAAA;
  6413. text-align:center;
  6414. line-height:30px;
  6415. }
  6416. #u114136 {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:3130px;
  6420. top:259px;
  6421. width:1000px;
  6422. height:336px;
  6423. display:flex;
  6424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:14px;
  6428. color:#AAAAAA;
  6429. text-align:center;
  6430. line-height:30px;
  6431. }
  6432. #u114136 .text {
  6433. position:absolute;
  6434. align-self:center;
  6435. padding:5px 10px 5px 10px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u114136_text {
  6440. border-width:0px;
  6441. word-wrap:break-word;
  6442. text-transform:none;
  6443. visibility:hidden;
  6444. }
  6445. #u114137_div {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:0px;
  6449. top:0px;
  6450. width:320px;
  6451. height:90px;
  6452. background:inherit;
  6453. background-color:rgba(255, 255, 255, 0);
  6454. border:none;
  6455. border-left:0px;
  6456. border-top:0px;
  6457. border-right:0px;
  6458. border-radius:0px;
  6459. border-bottom-right-radius:0px;
  6460. border-bottom-left-radius:0px;
  6461. -moz-box-shadow:none;
  6462. -webkit-box-shadow:none;
  6463. box-shadow:none;
  6464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6465. font-weight:400;
  6466. font-style:normal;
  6467. font-size:14px;
  6468. line-height:30px;
  6469. }
  6470. #u114137 {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:3160px;
  6474. top:292px;
  6475. width:320px;
  6476. height:90px;
  6477. display:flex;
  6478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6479. font-weight:400;
  6480. font-style:normal;
  6481. font-size:14px;
  6482. line-height:30px;
  6483. }
  6484. #u114137 .text {
  6485. position:absolute;
  6486. align-self:flex-start;
  6487. padding:0px 0px 0px 0px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u114137_text {
  6492. border-width:0px;
  6493. word-wrap:break-word;
  6494. text-transform:none;
  6495. }
  6496. #u114138 {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:0px;
  6502. height:0px;
  6503. }
  6504. #u114139_div {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:1000px;
  6510. height:645px;
  6511. background:inherit;
  6512. background-color:rgba(255, 255, 255, 1);
  6513. box-sizing:border-box;
  6514. border-width:1px;
  6515. border-style:solid;
  6516. border-color:rgba(215, 215, 215, 1);
  6517. border-radius:0px;
  6518. -moz-box-shadow:none;
  6519. -webkit-box-shadow:none;
  6520. box-shadow:none;
  6521. }
  6522. #u114139 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:3130px;
  6526. top:605px;
  6527. width:1000px;
  6528. height:645px;
  6529. display:flex;
  6530. }
  6531. #u114139 .text {
  6532. position:absolute;
  6533. align-self:center;
  6534. padding:2px 2px 2px 2px;
  6535. box-sizing:border-box;
  6536. width:100%;
  6537. }
  6538. #u114139_text {
  6539. border-width:0px;
  6540. word-wrap:break-word;
  6541. text-transform:none;
  6542. visibility:hidden;
  6543. }
  6544. #u114140_div {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:103px;
  6550. height:24px;
  6551. background:inherit;
  6552. background-color:rgba(255, 255, 255, 0);
  6553. border:none;
  6554. border-top:0px;
  6555. border-right:0px;
  6556. border-bottom:0px;
  6557. border-radius:0px;
  6558. border-top-left-radius:0px;
  6559. border-bottom-left-radius:0px;
  6560. -moz-box-shadow:none;
  6561. -webkit-box-shadow:none;
  6562. box-shadow:none;
  6563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:10px;
  6567. color:#AAAAAA;
  6568. }
  6569. #u114140 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:3385px;
  6573. top:678px;
  6574. width:103px;
  6575. height:24px;
  6576. display:flex;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:10px;
  6581. color:#AAAAAA;
  6582. }
  6583. #u114140 .text {
  6584. position:absolute;
  6585. align-self:flex-start;
  6586. padding:5px 0px 5px 0px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u114140_text {
  6591. border-width:0px;
  6592. white-space:nowrap;
  6593. text-transform:none;
  6594. }
  6595. #u114141 {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:0px;
  6601. height:0px;
  6602. }
  6603. #u114142_div {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:0px;
  6607. top:0px;
  6608. width:43px;
  6609. height:30px;
  6610. background:inherit;
  6611. background-color:rgba(255, 255, 255, 0);
  6612. border:none;
  6613. border-top:0px;
  6614. border-right:0px;
  6615. border-bottom:0px;
  6616. border-radius:0px;
  6617. border-top-left-radius:0px;
  6618. border-bottom-left-radius:0px;
  6619. -moz-box-shadow:none;
  6620. -webkit-box-shadow:none;
  6621. box-shadow:none;
  6622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6623. font-weight:400;
  6624. font-style:normal;
  6625. font-size:14px;
  6626. }
  6627. #u114142 {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:3218px;
  6631. top:680px;
  6632. width:43px;
  6633. height:30px;
  6634. display:flex;
  6635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6636. font-weight:400;
  6637. font-style:normal;
  6638. font-size:14px;
  6639. }
  6640. #u114142 .text {
  6641. position:absolute;
  6642. align-self:flex-start;
  6643. padding:0px 0px 0px 0px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u114142_text {
  6648. border-width:0px;
  6649. white-space:nowrap;
  6650. text-transform:none;
  6651. }
  6652. #u114143_div {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:23px;
  6658. height:16px;
  6659. background:inherit;
  6660. background-color:rgba(255, 255, 255, 0);
  6661. border:none;
  6662. border-top:0px;
  6663. border-right:0px;
  6664. border-bottom:0px;
  6665. border-radius:0px;
  6666. border-top-left-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-Regular', 'PingFang SC', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. font-size:11px;
  6675. color:#AAAAAA;
  6676. }
  6677. #u114143 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:3218px;
  6681. top:708px;
  6682. width:23px;
  6683. height:16px;
  6684. display:flex;
  6685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:11px;
  6689. color:#AAAAAA;
  6690. }
  6691. #u114143 .text {
  6692. position:absolute;
  6693. align-self:flex-start;
  6694. padding:0px 0px 0px 0px;
  6695. box-sizing:border-box;
  6696. width:100%;
  6697. }
  6698. #u114143_text {
  6699. border-width:0px;
  6700. white-space:nowrap;
  6701. text-transform:none;
  6702. }
  6703. #u114144_div {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:0px;
  6707. top:0px;
  6708. width:43px;
  6709. height:20px;
  6710. background:inherit;
  6711. background-color:rgba(255, 255, 255, 0);
  6712. border:none;
  6713. border-top:0px;
  6714. border-right:0px;
  6715. border-bottom:0px;
  6716. border-radius:0px;
  6717. border-top-left-radius:0px;
  6718. border-bottom-left-radius:0px;
  6719. -moz-box-shadow:none;
  6720. -webkit-box-shadow:none;
  6721. box-shadow:none;
  6722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6723. font-weight:400;
  6724. font-style:normal;
  6725. font-size:14px;
  6726. }
  6727. #u114144 {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:3218px;
  6731. top:750px;
  6732. width:43px;
  6733. height:20px;
  6734. display:flex;
  6735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6736. font-weight:400;
  6737. font-style:normal;
  6738. font-size:14px;
  6739. }
  6740. #u114144 .text {
  6741. position:absolute;
  6742. align-self:flex-start;
  6743. padding:0px 0px 0px 0px;
  6744. box-sizing:border-box;
  6745. width:100%;
  6746. }
  6747. #u114144_text {
  6748. border-width:0px;
  6749. white-space:nowrap;
  6750. text-transform:none;
  6751. }
  6752. #u114145_div {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:0px;
  6756. top:0px;
  6757. width:75px;
  6758. height:16px;
  6759. background:inherit;
  6760. background-color:rgba(255, 255, 255, 0);
  6761. border:none;
  6762. border-top:0px;
  6763. border-right:0px;
  6764. border-bottom:0px;
  6765. border-radius:0px;
  6766. border-top-left-radius:0px;
  6767. border-bottom-left-radius:0px;
  6768. -moz-box-shadow:none;
  6769. -webkit-box-shadow:none;
  6770. box-shadow:none;
  6771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:11px;
  6775. color:#AAAAAA;
  6776. }
  6777. #u114145 {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:3218px;
  6781. top:778px;
  6782. width:75px;
  6783. height:16px;
  6784. display:flex;
  6785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:11px;
  6789. color:#AAAAAA;
  6790. }
  6791. #u114145 .text {
  6792. position:absolute;
  6793. align-self:flex-start;
  6794. padding:0px 0px 0px 0px;
  6795. box-sizing:border-box;
  6796. width:100%;
  6797. }
  6798. #u114145_text {
  6799. border-width:0px;
  6800. white-space:nowrap;
  6801. text-transform:none;
  6802. }
  6803. #u114146_div {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:0px;
  6807. top:0px;
  6808. width:37px;
  6809. height:35px;
  6810. background:inherit;
  6811. background-color:rgba(255, 255, 255, 0);
  6812. border:none;
  6813. border-top:0px;
  6814. border-right:0px;
  6815. border-bottom:0px;
  6816. border-radius:0px;
  6817. border-top-left-radius:0px;
  6818. border-bottom-left-radius:0px;
  6819. -moz-box-shadow:none;
  6820. -webkit-box-shadow:none;
  6821. box-shadow:none;
  6822. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6823. font-weight:500;
  6824. font-style:normal;
  6825. font-size:18px;
  6826. }
  6827. #u114146 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:3156px;
  6831. top:623px;
  6832. width:37px;
  6833. height:35px;
  6834. display:flex;
  6835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6836. font-weight:500;
  6837. font-style:normal;
  6838. font-size:18px;
  6839. }
  6840. #u114146 .text {
  6841. position:absolute;
  6842. align-self:flex-start;
  6843. padding:5px 0px 5px 0px;
  6844. box-sizing:border-box;
  6845. width:100%;
  6846. }
  6847. #u114146_text {
  6848. border-width:0px;
  6849. white-space:nowrap;
  6850. text-transform:none;
  6851. }
  6852. #u114147 {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:0px;
  6858. height:0px;
  6859. }
  6860. #u114148_img {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:0px;
  6864. top:0px;
  6865. width:2px;
  6866. height:32px;
  6867. }
  6868. #u114148 {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:3195px;
  6872. top:714px;
  6873. width:1px;
  6874. height:31px;
  6875. display:flex;
  6876. }
  6877. #u114148 .text {
  6878. position:absolute;
  6879. align-self:center;
  6880. padding:2px 2px 2px 2px;
  6881. box-sizing:border-box;
  6882. width:100%;
  6883. }
  6884. #u114148_text {
  6885. border-width:0px;
  6886. word-wrap:break-word;
  6887. text-transform:none;
  6888. visibility:hidden;
  6889. }
  6890. #u114149 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:0px;
  6894. top:0px;
  6895. width:0px;
  6896. height:0px;
  6897. }
  6898. #u114150_div {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:30px;
  6904. height:30px;
  6905. background:inherit;
  6906. background-color:rgba(24, 144, 255, 1);
  6907. border:none;
  6908. border-radius:4px;
  6909. -moz-box-shadow:none;
  6910. -webkit-box-shadow:none;
  6911. box-shadow:none;
  6912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:10px;
  6916. color:#FFFFFF;
  6917. }
  6918. #u114150 {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:3180px;
  6922. top:750px;
  6923. width:30px;
  6924. height:30px;
  6925. display:flex;
  6926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:10px;
  6930. color:#FFFFFF;
  6931. }
  6932. #u114150 .text {
  6933. position:absolute;
  6934. align-self:center;
  6935. padding:2px 2px 2px 2px;
  6936. box-sizing:border-box;
  6937. width:100%;
  6938. }
  6939. #u114150_text {
  6940. border-width:0px;
  6941. word-wrap:break-word;
  6942. text-transform:none;
  6943. }
  6944. #u114151 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:0px;
  6950. height:0px;
  6951. }
  6952. #u114152_div {
  6953. border-width:0px;
  6954. position:absolute;
  6955. left:0px;
  6956. top:0px;
  6957. width:30px;
  6958. height:30px;
  6959. background:inherit;
  6960. background-color:rgba(24, 144, 255, 1);
  6961. border:none;
  6962. border-radius:4px;
  6963. -moz-box-shadow:none;
  6964. -webkit-box-shadow:none;
  6965. box-shadow:none;
  6966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:12px;
  6970. color:#FFFFFF;
  6971. }
  6972. #u114152 {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:3180px;
  6976. top:680px;
  6977. width:30px;
  6978. height:30px;
  6979. display:flex;
  6980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. font-size:12px;
  6984. color:#FFFFFF;
  6985. }
  6986. #u114152 .text {
  6987. position:absolute;
  6988. align-self:center;
  6989. padding:2px 2px 2px 2px;
  6990. box-sizing:border-box;
  6991. width:100%;
  6992. }
  6993. #u114152_text {
  6994. border-width:0px;
  6995. word-wrap:break-word;
  6996. text-transform:none;
  6997. }
  6998. #u114153 {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:0px;
  7004. height:0px;
  7005. }
  7006. #u114154_img {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:9px;
  7012. height:9px;
  7013. }
  7014. #u114154 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:3202px;
  7018. top:702px;
  7019. width:9px;
  7020. height:9px;
  7021. display:flex;
  7022. }
  7023. #u114154 .text {
  7024. position:absolute;
  7025. align-self:center;
  7026. padding:2px 2px 2px 2px;
  7027. box-sizing:border-box;
  7028. width:100%;
  7029. }
  7030. #u114154_text {
  7031. border-width:0px;
  7032. word-wrap:break-word;
  7033. text-transform:none;
  7034. visibility:hidden;
  7035. }
  7036. #u114155_img {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:5px;
  7042. height:4px;
  7043. }
  7044. #u114155 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:3204px;
  7048. top:705px;
  7049. width:5px;
  7050. height:4px;
  7051. display:flex;
  7052. }
  7053. #u114155 .text {
  7054. position:absolute;
  7055. align-self:center;
  7056. padding:2px 2px 2px 2px;
  7057. box-sizing:border-box;
  7058. width:100%;
  7059. }
  7060. #u114155_text {
  7061. border-width:0px;
  7062. word-wrap:break-word;
  7063. text-transform:none;
  7064. visibility:hidden;
  7065. }
  7066. #u114156_img {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:2px;
  7072. height:32px;
  7073. }
  7074. #u114156 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:3195px;
  7078. top:790px;
  7079. width:1px;
  7080. height:31px;
  7081. display:flex;
  7082. }
  7083. #u114156 .text {
  7084. position:absolute;
  7085. align-self:center;
  7086. padding:2px 2px 2px 2px;
  7087. box-sizing:border-box;
  7088. width:100%;
  7089. }
  7090. #u114156_text {
  7091. border-width:0px;
  7092. word-wrap:break-word;
  7093. text-transform:none;
  7094. visibility:hidden;
  7095. }
  7096. #u114157 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:0px;
  7102. height:0px;
  7103. }
  7104. #u114158_div {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:30px;
  7110. height:30px;
  7111. background:inherit;
  7112. background-color:rgba(24, 144, 255, 1);
  7113. border:none;
  7114. border-radius:4px;
  7115. -moz-box-shadow:none;
  7116. -webkit-box-shadow:none;
  7117. box-shadow:none;
  7118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. font-size:10px;
  7122. color:#FFFFFF;
  7123. }
  7124. #u114158 {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:3180px;
  7128. top:826px;
  7129. width:30px;
  7130. height:30px;
  7131. display:flex;
  7132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7133. font-weight:400;
  7134. font-style:normal;
  7135. font-size:10px;
  7136. color:#FFFFFF;
  7137. }
  7138. #u114158 .text {
  7139. position:absolute;
  7140. align-self:center;
  7141. padding:2px 2px 2px 2px;
  7142. box-sizing:border-box;
  7143. width:100%;
  7144. }
  7145. #u114158_text {
  7146. border-width:0px;
  7147. word-wrap:break-word;
  7148. text-transform:none;
  7149. }
  7150. #u114159_div {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:0px;
  7154. top:0px;
  7155. width:103px;
  7156. height:24px;
  7157. background:inherit;
  7158. background-color:rgba(255, 255, 255, 0);
  7159. border:none;
  7160. border-top:0px;
  7161. border-right:0px;
  7162. border-bottom:0px;
  7163. border-radius:0px;
  7164. border-top-left-radius:0px;
  7165. border-bottom-left-radius:0px;
  7166. -moz-box-shadow:none;
  7167. -webkit-box-shadow:none;
  7168. box-shadow:none;
  7169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:10px;
  7173. color:#AAAAAA;
  7174. }
  7175. #u114159 {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:3385px;
  7179. top:748px;
  7180. width:103px;
  7181. height:24px;
  7182. display:flex;
  7183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7184. font-weight:400;
  7185. font-style:normal;
  7186. font-size:10px;
  7187. color:#AAAAAA;
  7188. }
  7189. #u114159 .text {
  7190. position:absolute;
  7191. align-self:flex-start;
  7192. padding:5px 0px 5px 0px;
  7193. box-sizing:border-box;
  7194. width:100%;
  7195. }
  7196. #u114159_text {
  7197. border-width:0px;
  7198. white-space:nowrap;
  7199. text-transform:none;
  7200. }
  7201. #u114160_div {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:78px;
  7207. height:16px;
  7208. background:inherit;
  7209. background-color:rgba(255, 255, 255, 0);
  7210. border:none;
  7211. border-top:0px;
  7212. border-right:0px;
  7213. border-bottom:0px;
  7214. border-radius:0px;
  7215. border-top-left-radius:0px;
  7216. border-bottom-left-radius:0px;
  7217. -moz-box-shadow:none;
  7218. -webkit-box-shadow:none;
  7219. box-shadow:none;
  7220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7221. font-weight:400;
  7222. font-style:normal;
  7223. font-size:11px;
  7224. color:#AAAAAA;
  7225. }
  7226. #u114160 {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:3218px;
  7230. top:826px;
  7231. width:78px;
  7232. height:16px;
  7233. display:flex;
  7234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7235. font-weight:400;
  7236. font-style:normal;
  7237. font-size:11px;
  7238. color:#AAAAAA;
  7239. }
  7240. #u114160 .text {
  7241. position:absolute;
  7242. align-self:flex-start;
  7243. padding:0px 0px 0px 0px;
  7244. box-sizing:border-box;
  7245. width:100%;
  7246. }
  7247. #u114160_text {
  7248. border-width:0px;
  7249. white-space:nowrap;
  7250. text-transform:none;
  7251. }
  7252. #u114161_div {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:103px;
  7258. height:24px;
  7259. background:inherit;
  7260. background-color:rgba(255, 255, 255, 0);
  7261. border:none;
  7262. border-top:0px;
  7263. border-right:0px;
  7264. border-bottom:0px;
  7265. border-radius:0px;
  7266. border-top-left-radius:0px;
  7267. border-bottom-left-radius:0px;
  7268. -moz-box-shadow:none;
  7269. -webkit-box-shadow:none;
  7270. box-shadow:none;
  7271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7272. font-weight:400;
  7273. font-style:normal;
  7274. font-size:10px;
  7275. color:#AAAAAA;
  7276. }
  7277. #u114161 {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:3385px;
  7281. top:822px;
  7282. width:103px;
  7283. height:24px;
  7284. display:flex;
  7285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7286. font-weight:400;
  7287. font-style:normal;
  7288. font-size:10px;
  7289. color:#AAAAAA;
  7290. }
  7291. #u114161 .text {
  7292. position:absolute;
  7293. align-self:flex-start;
  7294. padding:5px 0px 5px 0px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u114161_text {
  7299. border-width:0px;
  7300. white-space:nowrap;
  7301. text-transform:none;
  7302. }
  7303. #u114162_div {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:320px;
  7309. height:90px;
  7310. background:inherit;
  7311. background-color:rgba(255, 255, 255, 0);
  7312. border:none;
  7313. border-left:0px;
  7314. border-top:0px;
  7315. border-right:0px;
  7316. border-radius:0px;
  7317. border-bottom-right-radius:0px;
  7318. border-bottom-left-radius:0px;
  7319. -moz-box-shadow:none;
  7320. -webkit-box-shadow:none;
  7321. box-shadow:none;
  7322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7323. font-weight:400;
  7324. font-style:normal;
  7325. font-size:14px;
  7326. line-height:30px;
  7327. }
  7328. #u114162 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:3480px;
  7332. top:292px;
  7333. width:320px;
  7334. height:90px;
  7335. display:flex;
  7336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:14px;
  7340. line-height:30px;
  7341. }
  7342. #u114162 .text {
  7343. position:absolute;
  7344. align-self:flex-start;
  7345. padding:0px 0px 0px 0px;
  7346. box-sizing:border-box;
  7347. width:100%;
  7348. }
  7349. #u114162_text {
  7350. border-width:0px;
  7351. word-wrap:break-word;
  7352. text-transform:none;
  7353. }
  7354. #u114163_div {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:0px;
  7358. top:0px;
  7359. width:320px;
  7360. height:60px;
  7361. background:inherit;
  7362. background-color:rgba(255, 255, 255, 0);
  7363. border:none;
  7364. border-left:0px;
  7365. border-top:0px;
  7366. border-right:0px;
  7367. border-radius:0px;
  7368. border-bottom-right-radius:0px;
  7369. border-bottom-left-radius:0px;
  7370. -moz-box-shadow:none;
  7371. -webkit-box-shadow:none;
  7372. box-shadow:none;
  7373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7374. font-weight:400;
  7375. font-style:normal;
  7376. font-size:14px;
  7377. line-height:30px;
  7378. }
  7379. #u114163 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:3800px;
  7383. top:292px;
  7384. width:320px;
  7385. height:60px;
  7386. display:flex;
  7387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:14px;
  7391. line-height:30px;
  7392. }
  7393. #u114163 .text {
  7394. position:absolute;
  7395. align-self:flex-start;
  7396. padding:0px 0px 0px 0px;
  7397. box-sizing:border-box;
  7398. width:100%;
  7399. }
  7400. #u114163_text {
  7401. border-width:0px;
  7402. word-wrap:break-word;
  7403. text-transform:none;
  7404. }
  7405. #u114164_div {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:0px;
  7409. top:0px;
  7410. width:320px;
  7411. height:30px;
  7412. background:inherit;
  7413. background-color:rgba(255, 255, 255, 0);
  7414. border:none;
  7415. border-left:0px;
  7416. border-top:0px;
  7417. border-right:0px;
  7418. border-radius:0px;
  7419. border-bottom-right-radius:0px;
  7420. border-bottom-left-radius:0px;
  7421. -moz-box-shadow:none;
  7422. -webkit-box-shadow:none;
  7423. box-shadow:none;
  7424. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7425. font-weight:500;
  7426. font-style:normal;
  7427. font-size:18px;
  7428. line-height:30px;
  7429. }
  7430. #u114164 {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:3160px;
  7434. top:402px;
  7435. width:320px;
  7436. height:30px;
  7437. display:flex;
  7438. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7439. font-weight:500;
  7440. font-style:normal;
  7441. font-size:18px;
  7442. line-height:30px;
  7443. }
  7444. #u114164 .text {
  7445. position:absolute;
  7446. align-self:flex-start;
  7447. padding:0px 0px 0px 0px;
  7448. box-sizing:border-box;
  7449. width:100%;
  7450. }
  7451. #u114164_text {
  7452. border-width:0px;
  7453. word-wrap:break-word;
  7454. text-transform:none;
  7455. }
  7456. #u114165_img {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:108px;
  7462. height:108px;
  7463. }
  7464. #u114165 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:3974px;
  7468. top:119px;
  7469. width:108px;
  7470. height:108px;
  7471. display:flex;
  7472. -webkit-transform:rotate(315deg);
  7473. -moz-transform:rotate(315deg);
  7474. -ms-transform:rotate(315deg);
  7475. transform:rotate(315deg);
  7476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7477. font-weight:400;
  7478. font-style:normal;
  7479. font-size:28px;
  7480. }
  7481. #u114165 .text {
  7482. position:absolute;
  7483. align-self:center;
  7484. padding:2px 2px 2px 2px;
  7485. box-sizing:border-box;
  7486. width:100%;
  7487. }
  7488. #u114165_text {
  7489. border-width:0px;
  7490. word-wrap:break-word;
  7491. text-transform:none;
  7492. }
  7493. #u114166 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:3160px;
  7497. top:442px;
  7498. width:853px;
  7499. height:118px;
  7500. }
  7501. #u114167_img {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:0px;
  7505. top:0px;
  7506. width:171px;
  7507. height:38px;
  7508. }
  7509. #u114167 {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:0px;
  7513. top:0px;
  7514. width:171px;
  7515. height:38px;
  7516. display:flex;
  7517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7518. font-weight:400;
  7519. font-style:normal;
  7520. font-size:12px;
  7521. color:#FFFFFF;
  7522. }
  7523. #u114167 .text {
  7524. position:absolute;
  7525. align-self:center;
  7526. padding:2px 2px 2px 0px;
  7527. box-sizing:border-box;
  7528. width:100%;
  7529. }
  7530. #u114167_text {
  7531. border-width:0px;
  7532. word-wrap:break-word;
  7533. text-transform:none;
  7534. }
  7535. #u114168_img {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:0px;
  7539. top:0px;
  7540. width:171px;
  7541. height:38px;
  7542. }
  7543. #u114168 {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:171px;
  7547. top:0px;
  7548. width:171px;
  7549. height:38px;
  7550. display:flex;
  7551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7552. font-weight:400;
  7553. font-style:normal;
  7554. font-size:12px;
  7555. color:#FFFFFF;
  7556. }
  7557. #u114168 .text {
  7558. position:absolute;
  7559. align-self:center;
  7560. padding:2px 2px 2px 0px;
  7561. box-sizing:border-box;
  7562. width:100%;
  7563. }
  7564. #u114168_text {
  7565. border-width:0px;
  7566. word-wrap:break-word;
  7567. text-transform:none;
  7568. }
  7569. #u114169_img {
  7570. border-width:0px;
  7571. position:absolute;
  7572. left:0px;
  7573. top:0px;
  7574. width:171px;
  7575. height:38px;
  7576. }
  7577. #u114169 {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:342px;
  7581. top:0px;
  7582. width:171px;
  7583. height:38px;
  7584. display:flex;
  7585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7586. font-weight:400;
  7587. font-style:normal;
  7588. font-size:12px;
  7589. color:#FFFFFF;
  7590. }
  7591. #u114169 .text {
  7592. position:absolute;
  7593. align-self:center;
  7594. padding:2px 2px 2px 0px;
  7595. box-sizing:border-box;
  7596. width:100%;
  7597. }
  7598. #u114169_text {
  7599. border-width:0px;
  7600. word-wrap:break-word;
  7601. text-transform:none;
  7602. }
  7603. #u114170_img {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:0px;
  7607. top:0px;
  7608. width:171px;
  7609. height:38px;
  7610. }
  7611. #u114170 {
  7612. border-width:0px;
  7613. position:absolute;
  7614. left:513px;
  7615. top:0px;
  7616. width:171px;
  7617. height:38px;
  7618. display:flex;
  7619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7620. font-weight:400;
  7621. font-style:normal;
  7622. font-size:12px;
  7623. color:#FFFFFF;
  7624. }
  7625. #u114170 .text {
  7626. position:absolute;
  7627. align-self:center;
  7628. padding:2px 2px 2px 0px;
  7629. box-sizing:border-box;
  7630. width:100%;
  7631. }
  7632. #u114170_text {
  7633. border-width:0px;
  7634. word-wrap:break-word;
  7635. text-transform:none;
  7636. }
  7637. #u114171_img {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:0px;
  7641. top:0px;
  7642. width:169px;
  7643. height:38px;
  7644. }
  7645. #u114171 {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:684px;
  7649. top:0px;
  7650. width:169px;
  7651. height:38px;
  7652. display:flex;
  7653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7654. font-weight:400;
  7655. font-style:normal;
  7656. font-size:12px;
  7657. color:#FFFFFF;
  7658. }
  7659. #u114171 .text {
  7660. position:absolute;
  7661. align-self:center;
  7662. padding:2px 2px 2px 0px;
  7663. box-sizing:border-box;
  7664. width:100%;
  7665. }
  7666. #u114171_text {
  7667. border-width:0px;
  7668. word-wrap:break-word;
  7669. text-transform:none;
  7670. }
  7671. #u114172_img {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:171px;
  7677. height:40px;
  7678. }
  7679. #u114172 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:38px;
  7684. width:171px;
  7685. height:40px;
  7686. display:flex;
  7687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:12px;
  7691. color:#333333;
  7692. }
  7693. #u114172 .text {
  7694. position:absolute;
  7695. align-self:center;
  7696. padding:2px 2px 2px 0px;
  7697. box-sizing:border-box;
  7698. width:100%;
  7699. }
  7700. #u114172_text {
  7701. border-width:0px;
  7702. word-wrap:break-word;
  7703. text-transform:none;
  7704. visibility:hidden;
  7705. }
  7706. #u114173_img {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:0px;
  7710. top:0px;
  7711. width:171px;
  7712. height:40px;
  7713. }
  7714. #u114173 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:171px;
  7718. top:38px;
  7719. width:171px;
  7720. height:40px;
  7721. display:flex;
  7722. font-family:'ArialMT', 'Arial', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:12px;
  7726. color:#AAAAAA;
  7727. text-align:left;
  7728. }
  7729. #u114173 .text {
  7730. position:absolute;
  7731. align-self:center;
  7732. padding:2px 2px 2px 0px;
  7733. box-sizing:border-box;
  7734. width:100%;
  7735. }
  7736. #u114173_text {
  7737. border-width:0px;
  7738. word-wrap:break-word;
  7739. text-transform:none;
  7740. visibility:hidden;
  7741. }
  7742. #u114174_img {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:0px;
  7746. top:0px;
  7747. width:171px;
  7748. height:40px;
  7749. }
  7750. #u114174 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:342px;
  7754. top:38px;
  7755. width:171px;
  7756. height:40px;
  7757. display:flex;
  7758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7759. font-weight:400;
  7760. font-style:normal;
  7761. font-size:12px;
  7762. color:#333333;
  7763. }
  7764. #u114174 .text {
  7765. position:absolute;
  7766. align-self:center;
  7767. padding:2px 2px 2px 0px;
  7768. box-sizing:border-box;
  7769. width:100%;
  7770. }
  7771. #u114174_text {
  7772. border-width:0px;
  7773. word-wrap:break-word;
  7774. text-transform:none;
  7775. visibility:hidden;
  7776. }
  7777. #u114175_img {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:171px;
  7783. height:40px;
  7784. }
  7785. #u114175 {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:513px;
  7789. top:38px;
  7790. width:171px;
  7791. height:40px;
  7792. display:flex;
  7793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7794. font-weight:400;
  7795. font-style:normal;
  7796. font-size:12px;
  7797. color:#333333;
  7798. }
  7799. #u114175 .text {
  7800. position:absolute;
  7801. align-self:center;
  7802. padding:2px 2px 2px 0px;
  7803. box-sizing:border-box;
  7804. width:100%;
  7805. }
  7806. #u114175_text {
  7807. border-width:0px;
  7808. word-wrap:break-word;
  7809. text-transform:none;
  7810. visibility:hidden;
  7811. }
  7812. #u114176_img {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:0px;
  7816. top:0px;
  7817. width:169px;
  7818. height:40px;
  7819. }
  7820. #u114176 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:684px;
  7824. top:38px;
  7825. width:169px;
  7826. height:40px;
  7827. display:flex;
  7828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:12px;
  7832. color:#333333;
  7833. }
  7834. #u114176 .text {
  7835. position:absolute;
  7836. align-self:center;
  7837. padding:2px 2px 2px 0px;
  7838. box-sizing:border-box;
  7839. width:100%;
  7840. }
  7841. #u114176_text {
  7842. border-width:0px;
  7843. word-wrap:break-word;
  7844. text-transform:none;
  7845. }
  7846. #u114177_img {
  7847. border-width:0px;
  7848. position:absolute;
  7849. left:0px;
  7850. top:0px;
  7851. width:171px;
  7852. height:40px;
  7853. }
  7854. #u114177 {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:78px;
  7859. width:171px;
  7860. height:40px;
  7861. display:flex;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:12px;
  7866. color:#333333;
  7867. }
  7868. #u114177 .text {
  7869. position:absolute;
  7870. align-self:center;
  7871. padding:2px 2px 2px 0px;
  7872. box-sizing:border-box;
  7873. width:100%;
  7874. }
  7875. #u114177_text {
  7876. border-width:0px;
  7877. word-wrap:break-word;
  7878. text-transform:none;
  7879. visibility:hidden;
  7880. }
  7881. #u114178_img {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:0px;
  7885. top:0px;
  7886. width:171px;
  7887. height:40px;
  7888. }
  7889. #u114178 {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:171px;
  7893. top:78px;
  7894. width:171px;
  7895. height:40px;
  7896. display:flex;
  7897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:12px;
  7901. color:#333333;
  7902. }
  7903. #u114178 .text {
  7904. position:absolute;
  7905. align-self:center;
  7906. padding:2px 2px 2px 0px;
  7907. box-sizing:border-box;
  7908. width:100%;
  7909. }
  7910. #u114178_text {
  7911. border-width:0px;
  7912. word-wrap:break-word;
  7913. text-transform:none;
  7914. visibility:hidden;
  7915. }
  7916. #u114179_img {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:0px;
  7920. top:0px;
  7921. width:171px;
  7922. height:40px;
  7923. }
  7924. #u114179 {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:342px;
  7928. top:78px;
  7929. width:171px;
  7930. height:40px;
  7931. display:flex;
  7932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. font-size:12px;
  7936. color:#333333;
  7937. }
  7938. #u114179 .text {
  7939. position:absolute;
  7940. align-self:center;
  7941. padding:2px 2px 2px 0px;
  7942. box-sizing:border-box;
  7943. width:100%;
  7944. }
  7945. #u114179_text {
  7946. border-width:0px;
  7947. word-wrap:break-word;
  7948. text-transform:none;
  7949. visibility:hidden;
  7950. }
  7951. #u114180_img {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:0px;
  7955. top:0px;
  7956. width:171px;
  7957. height:40px;
  7958. }
  7959. #u114180 {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:513px;
  7963. top:78px;
  7964. width:171px;
  7965. height:40px;
  7966. display:flex;
  7967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:12px;
  7971. color:#333333;
  7972. }
  7973. #u114180 .text {
  7974. position:absolute;
  7975. align-self:center;
  7976. padding:2px 2px 2px 0px;
  7977. box-sizing:border-box;
  7978. width:100%;
  7979. }
  7980. #u114180_text {
  7981. border-width:0px;
  7982. word-wrap:break-word;
  7983. text-transform:none;
  7984. visibility:hidden;
  7985. }
  7986. #u114181_img {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:0px;
  7990. top:0px;
  7991. width:169px;
  7992. height:40px;
  7993. }
  7994. #u114181 {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:684px;
  7998. top:78px;
  7999. width:169px;
  8000. height:40px;
  8001. display:flex;
  8002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:12px;
  8006. color:#333333;
  8007. }
  8008. #u114181 .text {
  8009. position:absolute;
  8010. align-self:center;
  8011. padding:2px 2px 2px 0px;
  8012. box-sizing:border-box;
  8013. width:100%;
  8014. }
  8015. #u114181_text {
  8016. border-width:0px;
  8017. word-wrap:break-word;
  8018. text-transform:none;
  8019. }
  8020. #u114182 {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:0px;
  8026. height:0px;
  8027. }
  8028. #u114183_div {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:0px;
  8032. top:0px;
  8033. width:1000px;
  8034. height:60px;
  8035. background:inherit;
  8036. background-color:rgba(255, 255, 255, 1);
  8037. box-sizing:border-box;
  8038. border-width:1px;
  8039. border-style:solid;
  8040. border-color:rgba(215, 215, 215, 1);
  8041. border-radius:0px;
  8042. -moz-box-shadow:none;
  8043. -webkit-box-shadow:none;
  8044. box-shadow:none;
  8045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8046. font-weight:400;
  8047. font-style:normal;
  8048. font-size:14px;
  8049. color:#AAAAAA;
  8050. text-align:center;
  8051. line-height:30px;
  8052. }
  8053. #u114183 {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:3130px;
  8057. top:1190px;
  8058. width:1000px;
  8059. height:60px;
  8060. display:flex;
  8061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8062. font-weight:400;
  8063. font-style:normal;
  8064. font-size:14px;
  8065. color:#AAAAAA;
  8066. text-align:center;
  8067. line-height:30px;
  8068. }
  8069. #u114183 .text {
  8070. position:absolute;
  8071. align-self:center;
  8072. padding:5px 10px 5px 10px;
  8073. box-sizing:border-box;
  8074. width:100%;
  8075. }
  8076. #u114183_text {
  8077. border-width:0px;
  8078. word-wrap:break-word;
  8079. text-transform:none;
  8080. visibility:hidden;
  8081. }
  8082. #u114184_div {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:0px;
  8086. top:0px;
  8087. width:80px;
  8088. height:30px;
  8089. background:inherit;
  8090. background-color:rgba(255, 255, 255, 1);
  8091. box-sizing:border-box;
  8092. border-width:1px;
  8093. border-style:solid;
  8094. border-color:rgba(170, 170, 170, 1);
  8095. border-radius:4px;
  8096. -moz-box-shadow:none;
  8097. -webkit-box-shadow:none;
  8098. box-shadow:none;
  8099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8100. font-weight:400;
  8101. font-style:normal;
  8102. font-size:14px;
  8103. }
  8104. #u114184 {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:4024px;
  8108. top:1205px;
  8109. width:80px;
  8110. height:30px;
  8111. display:flex;
  8112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8113. font-weight:400;
  8114. font-style:normal;
  8115. font-size:14px;
  8116. }
  8117. #u114184 .text {
  8118. position:absolute;
  8119. align-self:center;
  8120. padding:2px 2px 2px 2px;
  8121. box-sizing:border-box;
  8122. width:100%;
  8123. }
  8124. #u114184_text {
  8125. border-width:0px;
  8126. word-wrap:break-word;
  8127. text-transform:none;
  8128. }
  8129. #u114185_div {
  8130. border-width:0px;
  8131. position:absolute;
  8132. left:0px;
  8133. top:0px;
  8134. width:337px;
  8135. height:100px;
  8136. background:inherit;
  8137. background-color:rgba(255, 255, 255, 0);
  8138. border:none;
  8139. border-top:0px;
  8140. border-right:0px;
  8141. border-bottom:0px;
  8142. border-radius:0px;
  8143. border-top-left-radius:0px;
  8144. border-bottom-left-radius:0px;
  8145. -moz-box-shadow:none;
  8146. -webkit-box-shadow:none;
  8147. box-shadow:none;
  8148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8149. font-weight:400;
  8150. font-style:normal;
  8151. font-size:14px;
  8152. color:#D9001B;
  8153. line-height:30px;
  8154. }
  8155. #u114185 {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:706px;
  8159. top:1258px;
  8160. width:337px;
  8161. height:100px;
  8162. display:flex;
  8163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8164. font-weight:400;
  8165. font-style:normal;
  8166. font-size:14px;
  8167. color:#D9001B;
  8168. line-height:30px;
  8169. }
  8170. #u114185 .text {
  8171. position:absolute;
  8172. align-self:flex-start;
  8173. padding:5px 10px 5px 0px;
  8174. box-sizing:border-box;
  8175. width:100%;
  8176. }
  8177. #u114185_text {
  8178. border-width:0px;
  8179. word-wrap:break-word;
  8180. text-transform:none;
  8181. }
  8182. #u114186 {
  8183. border-width:0px;
  8184. position:absolute;
  8185. left:0px;
  8186. top:0px;
  8187. width:0px;
  8188. height:0px;
  8189. }
  8190. #u114187_img {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:-5px;
  8194. top:-5px;
  8195. width:370px;
  8196. height:200px;
  8197. }
  8198. #u114187 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:647px;
  8202. top:946px;
  8203. width:360px;
  8204. height:190px;
  8205. display:flex;
  8206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8207. font-weight:400;
  8208. font-style:normal;
  8209. font-size:12px;
  8210. color:#FFFFFF;
  8211. }
  8212. #u114187 .text {
  8213. position:absolute;
  8214. align-self:center;
  8215. padding:2px 2px 2px 2px;
  8216. box-sizing:border-box;
  8217. width:100%;
  8218. }
  8219. #u114187_text {
  8220. border-width:0px;
  8221. word-wrap:break-word;
  8222. text-transform:none;
  8223. visibility:hidden;
  8224. }
  8225. #u114188_div {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:37px;
  8231. height:25px;
  8232. background:inherit;
  8233. background-color:rgba(255, 255, 255, 0);
  8234. border:none;
  8235. border-radius:0px;
  8236. -moz-box-shadow:none;
  8237. -webkit-box-shadow:none;
  8238. box-shadow:none;
  8239. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8240. font-weight:500;
  8241. font-style:normal;
  8242. font-size:18px;
  8243. }
  8244. #u114188 {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:670px;
  8248. top:962px;
  8249. width:37px;
  8250. height:25px;
  8251. display:flex;
  8252. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8253. font-weight:500;
  8254. font-style:normal;
  8255. font-size:18px;
  8256. }
  8257. #u114188 .text {
  8258. position:absolute;
  8259. align-self:flex-start;
  8260. padding:0px 0px 0px 0px;
  8261. box-sizing:border-box;
  8262. width:100%;
  8263. }
  8264. #u114188_text {
  8265. border-width:0px;
  8266. white-space:nowrap;
  8267. text-transform:none;
  8268. }
  8269. #u114189_img {
  8270. border-width:0px;
  8271. position:absolute;
  8272. left:0px;
  8273. top:0px;
  8274. width:8px;
  8275. height:8px;
  8276. }
  8277. #u114189 {
  8278. border-width:0px;
  8279. position:absolute;
  8280. left:984px;
  8281. top:958px;
  8282. width:8px;
  8283. height:8px;
  8284. display:flex;
  8285. opacity:0.5;
  8286. }
  8287. #u114189 .text {
  8288. position:absolute;
  8289. align-self:center;
  8290. padding:2px 2px 2px 2px;
  8291. box-sizing:border-box;
  8292. width:100%;
  8293. }
  8294. #u114189_text {
  8295. border-width:0px;
  8296. word-wrap:break-word;
  8297. text-transform:none;
  8298. visibility:hidden;
  8299. }
  8300. #u114190_div {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:0px;
  8304. top:0px;
  8305. width:80px;
  8306. height:30px;
  8307. background:inherit;
  8308. background-color:rgba(51, 153, 255, 1);
  8309. border:none;
  8310. border-radius:4px;
  8311. -moz-box-shadow:none;
  8312. -webkit-box-shadow:none;
  8313. box-shadow:none;
  8314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8315. font-weight:400;
  8316. font-style:normal;
  8317. font-size:14px;
  8318. color:#FFFFFF;
  8319. }
  8320. #u114190 {
  8321. border-width:0px;
  8322. position:absolute;
  8323. left:912px;
  8324. top:1090px;
  8325. width:80px;
  8326. height:30px;
  8327. display:flex;
  8328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8329. font-weight:400;
  8330. font-style:normal;
  8331. font-size:14px;
  8332. color:#FFFFFF;
  8333. }
  8334. #u114190 .text {
  8335. position:absolute;
  8336. align-self:center;
  8337. padding:8px 0px 8px 0px;
  8338. box-sizing:border-box;
  8339. width:100%;
  8340. }
  8341. #u114190_text {
  8342. border-width:0px;
  8343. word-wrap:break-word;
  8344. text-transform:none;
  8345. }
  8346. #u114191_div {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:0px;
  8350. top:0px;
  8351. width:322px;
  8352. height:80px;
  8353. background:inherit;
  8354. background-color:rgba(255, 255, 255, 1);
  8355. box-sizing:border-box;
  8356. border-width:1px;
  8357. border-style:solid;
  8358. border-color:rgba(51, 153, 255, 1);
  8359. border-radius:2px;
  8360. -moz-box-shadow:none;
  8361. -webkit-box-shadow:none;
  8362. box-shadow:none;
  8363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8364. font-weight:400;
  8365. font-style:normal;
  8366. font-size:12px;
  8367. color:#FFFFFF;
  8368. text-align:left;
  8369. }
  8370. #u114191 {
  8371. border-width:0px;
  8372. position:absolute;
  8373. left:670px;
  8374. top:997px;
  8375. width:322px;
  8376. height:80px;
  8377. display:flex;
  8378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8379. font-weight:400;
  8380. font-style:normal;
  8381. font-size:12px;
  8382. color:#FFFFFF;
  8383. text-align:left;
  8384. }
  8385. #u114191 .text {
  8386. position:absolute;
  8387. align-self:center;
  8388. padding:8px 15px 8px 15px;
  8389. box-sizing:border-box;
  8390. width:100%;
  8391. }
  8392. #u114191_text {
  8393. border-width:0px;
  8394. word-wrap:break-word;
  8395. text-transform:none;
  8396. }
  8397. #u114192_div {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:0px;
  8401. top:0px;
  8402. width:99px;
  8403. height:20px;
  8404. background:inherit;
  8405. background-color:rgba(255, 255, 255, 0);
  8406. border:none;
  8407. border-radius:0px;
  8408. -moz-box-shadow:none;
  8409. -webkit-box-shadow:none;
  8410. box-shadow:none;
  8411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8412. font-weight:400;
  8413. font-style:normal;
  8414. color:#D7D7D7;
  8415. }
  8416. #u114192 {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:681px;
  8420. top:1008px;
  8421. width:99px;
  8422. height:20px;
  8423. display:flex;
  8424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8425. font-weight:400;
  8426. font-style:normal;
  8427. color:#D7D7D7;
  8428. }
  8429. #u114192 .text {
  8430. position:absolute;
  8431. align-self:flex-start;
  8432. padding:0px 0px 0px 0px;
  8433. box-sizing:border-box;
  8434. width:100%;
  8435. }
  8436. #u114192_text {
  8437. border-width:0px;
  8438. white-space:nowrap;
  8439. text-transform:none;
  8440. }
  8441. #u114193_div {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:0px;
  8445. top:0px;
  8446. width:60px;
  8447. height:30px;
  8448. background:inherit;
  8449. background-color:rgba(255, 255, 255, 1);
  8450. box-sizing:border-box;
  8451. border-width:1px;
  8452. border-style:solid;
  8453. border-color:rgba(170, 170, 170, 1);
  8454. border-radius:4px;
  8455. -moz-box-shadow:none;
  8456. -webkit-box-shadow:none;
  8457. box-shadow:none;
  8458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8459. font-weight:400;
  8460. font-style:normal;
  8461. font-size:14px;
  8462. }
  8463. #u114193 {
  8464. border-width:0px;
  8465. position:absolute;
  8466. left:842px;
  8467. top:1090px;
  8468. width:60px;
  8469. height:30px;
  8470. display:flex;
  8471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8472. font-weight:400;
  8473. font-style:normal;
  8474. font-size:14px;
  8475. }
  8476. #u114193 .text {
  8477. position:absolute;
  8478. align-self:center;
  8479. padding:2px 2px 2px 2px;
  8480. box-sizing:border-box;
  8481. width:100%;
  8482. }
  8483. #u114193_text {
  8484. border-width:0px;
  8485. word-wrap:break-word;
  8486. text-transform:none;
  8487. }
  8488. #u114194 {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:0px;
  8494. height:0px;
  8495. }
  8496. #u114195_img {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:-5px;
  8500. top:-5px;
  8501. width:370px;
  8502. height:200px;
  8503. }
  8504. #u114195 {
  8505. border-width:0px;
  8506. position:absolute;
  8507. left:256px;
  8508. top:946px;
  8509. width:360px;
  8510. height:190px;
  8511. display:flex;
  8512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8513. font-weight:400;
  8514. font-style:normal;
  8515. font-size:12px;
  8516. color:#FFFFFF;
  8517. }
  8518. #u114195 .text {
  8519. position:absolute;
  8520. align-self:center;
  8521. padding:2px 2px 2px 2px;
  8522. box-sizing:border-box;
  8523. width:100%;
  8524. }
  8525. #u114195_text {
  8526. border-width:0px;
  8527. word-wrap:break-word;
  8528. text-transform:none;
  8529. visibility:hidden;
  8530. }
  8531. #u114196_div {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:0px;
  8535. top:0px;
  8536. width:37px;
  8537. height:25px;
  8538. background:inherit;
  8539. background-color:rgba(255, 255, 255, 0);
  8540. border:none;
  8541. border-radius:0px;
  8542. -moz-box-shadow:none;
  8543. -webkit-box-shadow:none;
  8544. box-shadow:none;
  8545. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8546. font-weight:500;
  8547. font-style:normal;
  8548. font-size:18px;
  8549. }
  8550. #u114196 {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:279px;
  8554. top:962px;
  8555. width:37px;
  8556. height:25px;
  8557. display:flex;
  8558. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8559. font-weight:500;
  8560. font-style:normal;
  8561. font-size:18px;
  8562. }
  8563. #u114196 .text {
  8564. position:absolute;
  8565. align-self:flex-start;
  8566. padding:0px 0px 0px 0px;
  8567. box-sizing:border-box;
  8568. width:100%;
  8569. }
  8570. #u114196_text {
  8571. border-width:0px;
  8572. white-space:nowrap;
  8573. text-transform:none;
  8574. }
  8575. #u114197_img {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:0px;
  8579. top:0px;
  8580. width:8px;
  8581. height:8px;
  8582. }
  8583. #u114197 {
  8584. border-width:0px;
  8585. position:absolute;
  8586. left:593px;
  8587. top:958px;
  8588. width:8px;
  8589. height:8px;
  8590. display:flex;
  8591. opacity:0.5;
  8592. }
  8593. #u114197 .text {
  8594. position:absolute;
  8595. align-self:center;
  8596. padding:2px 2px 2px 2px;
  8597. box-sizing:border-box;
  8598. width:100%;
  8599. }
  8600. #u114197_text {
  8601. border-width:0px;
  8602. word-wrap:break-word;
  8603. text-transform:none;
  8604. visibility:hidden;
  8605. }
  8606. #u114198_div {
  8607. border-width:0px;
  8608. position:absolute;
  8609. left:0px;
  8610. top:0px;
  8611. width:80px;
  8612. height:30px;
  8613. background:inherit;
  8614. background-color:rgba(51, 153, 255, 1);
  8615. border:none;
  8616. border-radius:4px;
  8617. -moz-box-shadow:none;
  8618. -webkit-box-shadow:none;
  8619. box-shadow:none;
  8620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8621. font-weight:400;
  8622. font-style:normal;
  8623. font-size:14px;
  8624. color:#FFFFFF;
  8625. }
  8626. #u114198 {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:521px;
  8630. top:1090px;
  8631. width:80px;
  8632. height:30px;
  8633. display:flex;
  8634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:14px;
  8638. color:#FFFFFF;
  8639. }
  8640. #u114198 .text {
  8641. position:absolute;
  8642. align-self:center;
  8643. padding:8px 0px 8px 0px;
  8644. box-sizing:border-box;
  8645. width:100%;
  8646. }
  8647. #u114198_text {
  8648. border-width:0px;
  8649. word-wrap:break-word;
  8650. text-transform:none;
  8651. }
  8652. #u114199_div {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:322px;
  8658. height:80px;
  8659. background:inherit;
  8660. background-color:rgba(255, 255, 255, 1);
  8661. box-sizing:border-box;
  8662. border-width:1px;
  8663. border-style:solid;
  8664. border-color:rgba(51, 153, 255, 1);
  8665. border-radius:2px;
  8666. -moz-box-shadow:none;
  8667. -webkit-box-shadow:none;
  8668. box-shadow:none;
  8669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8670. font-weight:400;
  8671. font-style:normal;
  8672. font-size:12px;
  8673. color:#FFFFFF;
  8674. text-align:left;
  8675. }
  8676. #u114199 {
  8677. border-width:0px;
  8678. position:absolute;
  8679. left:279px;
  8680. top:997px;
  8681. width:322px;
  8682. height:80px;
  8683. display:flex;
  8684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8685. font-weight:400;
  8686. font-style:normal;
  8687. font-size:12px;
  8688. color:#FFFFFF;
  8689. text-align:left;
  8690. }
  8691. #u114199 .text {
  8692. position:absolute;
  8693. align-self:center;
  8694. padding:8px 15px 8px 15px;
  8695. box-sizing:border-box;
  8696. width:100%;
  8697. }
  8698. #u114199_text {
  8699. border-width:0px;
  8700. word-wrap:break-word;
  8701. text-transform:none;
  8702. }
  8703. #u114200_div {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:0px;
  8707. top:0px;
  8708. width:99px;
  8709. height:20px;
  8710. background:inherit;
  8711. background-color:rgba(255, 255, 255, 0);
  8712. border:none;
  8713. border-radius:0px;
  8714. -moz-box-shadow:none;
  8715. -webkit-box-shadow:none;
  8716. box-shadow:none;
  8717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8718. font-weight:400;
  8719. font-style:normal;
  8720. color:#D7D7D7;
  8721. }
  8722. #u114200 {
  8723. border-width:0px;
  8724. position:absolute;
  8725. left:290px;
  8726. top:1008px;
  8727. width:99px;
  8728. height:20px;
  8729. display:flex;
  8730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8731. font-weight:400;
  8732. font-style:normal;
  8733. color:#D7D7D7;
  8734. }
  8735. #u114200 .text {
  8736. position:absolute;
  8737. align-self:flex-start;
  8738. padding:0px 0px 0px 0px;
  8739. box-sizing:border-box;
  8740. width:100%;
  8741. }
  8742. #u114200_text {
  8743. border-width:0px;
  8744. white-space:nowrap;
  8745. text-transform:none;
  8746. }
  8747. #u114201_div {
  8748. border-width:0px;
  8749. position:absolute;
  8750. left:0px;
  8751. top:0px;
  8752. width:60px;
  8753. height:30px;
  8754. background:inherit;
  8755. background-color:rgba(255, 255, 255, 1);
  8756. box-sizing:border-box;
  8757. border-width:1px;
  8758. border-style:solid;
  8759. border-color:rgba(170, 170, 170, 1);
  8760. border-radius:4px;
  8761. -moz-box-shadow:none;
  8762. -webkit-box-shadow:none;
  8763. box-shadow:none;
  8764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8765. font-weight:400;
  8766. font-style:normal;
  8767. font-size:14px;
  8768. }
  8769. #u114201 {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:451px;
  8773. top:1090px;
  8774. width:60px;
  8775. height:30px;
  8776. display:flex;
  8777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:14px;
  8781. }
  8782. #u114201 .text {
  8783. position:absolute;
  8784. align-self:center;
  8785. padding:2px 2px 2px 2px;
  8786. box-sizing:border-box;
  8787. width:100%;
  8788. }
  8789. #u114201_text {
  8790. border-width:0px;
  8791. word-wrap:break-word;
  8792. text-transform:none;
  8793. }