styles.css 171 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3258px;
  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. #u41733_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u41733 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u41733 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u41733_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u41734_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u41734 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u41734 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u41734_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u41735_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u41735 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u41735 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u41735_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u41736 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u41737_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u41737 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u41737 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u41737_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u41738_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u41738 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u41738 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u41738_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u41739_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u41739 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u41739 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u41739_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u41740 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u41741_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u41741_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u41741_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u41741 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u41741 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u41741_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u41741.disabled {
  356. }
  357. .u41741_input_option {
  358. font-size:14px;
  359. }
  360. #u41742_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u41742 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u41742 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u41742_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u41743_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u41743 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u41743 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u41743_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u41744_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u41744 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u41744 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u41744_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u41745 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u41746_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u41746 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u41746 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u41746_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u41747_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u41747 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u41747 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u41747_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u41748 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u41749_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u41749 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u41749 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u41749_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u41750_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u41750 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u41750 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u41750_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u41751 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u41752_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u41752 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u41752 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u41752_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u41753_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u41753 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u41753 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u41753_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u41754 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u41755_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u41755 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u41755 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u41755_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u41756_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u41756 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u41756 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u41756_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u41757 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u41758_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u41758 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u41758 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u41758_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u41759_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u41759 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u41759 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u41759_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u41760 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u41761_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u41761 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u41761 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u41761_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u41762_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u41762 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u41762 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u41762_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u41763 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u41764_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u41764 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u41764 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u41764_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u41765_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u41765 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u41765 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u41765_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u41766 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u41767_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u41767 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u41767 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u41767_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u41768_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u41768 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u41768 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u41768_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u41769 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u41770_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u41770 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u41770 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u41770_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u41771_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u41771 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u41771 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u41771_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u41772 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u41773_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u41773 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u41773 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u41773_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u41774_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u41774 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u41774 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u41774_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u41775_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u41775 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u41775 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u41775_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u41776_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u41776 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u41776 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u41776_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u41777_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u41777 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u41777 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u41777_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u41778_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u41778 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u41778 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u41778_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u41779 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u41780_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u41780 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u41780 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u41780_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u41781_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u41781 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u41781 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u41781_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u41782 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u41783_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u41783 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u41783 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u41783_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u41784_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u41784 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u41784 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u41784_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u41785_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1255px;
  1644. height:1189px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:12px;
  1656. color:#FFFFFF;
  1657. text-align:left;
  1658. }
  1659. #u41785 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:333px;
  1663. top:51px;
  1664. width:1255px;
  1665. height:1189px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. text-align:left;
  1673. }
  1674. #u41785 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 50px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u41785_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u41786 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:0px;
  1693. height:0px;
  1694. }
  1695. #u41787_img {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:899px;
  1701. height:836px;
  1702. }
  1703. #u41787 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:352px;
  1707. top:192px;
  1708. width:899px;
  1709. height:836px;
  1710. display:flex;
  1711. }
  1712. #u41787 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:2px 2px 2px 2px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u41787_text {
  1720. border-width:0px;
  1721. word-wrap:break-word;
  1722. text-transform:none;
  1723. }
  1724. #u41788_img {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:19px;
  1730. height:29px;
  1731. }
  1732. #u41788 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:498px;
  1736. top:226px;
  1737. width:19px;
  1738. height:29px;
  1739. display:flex;
  1740. }
  1741. #u41788 .text {
  1742. position:absolute;
  1743. align-self:center;
  1744. padding:2px 2px 2px 2px;
  1745. box-sizing:border-box;
  1746. width:100%;
  1747. }
  1748. #u41788_text {
  1749. border-width:0px;
  1750. word-wrap:break-word;
  1751. text-transform:none;
  1752. visibility:hidden;
  1753. }
  1754. #u41789_img {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:19px;
  1760. height:29px;
  1761. }
  1762. #u41789 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:412px;
  1766. top:431px;
  1767. width:19px;
  1768. height:29px;
  1769. display:flex;
  1770. }
  1771. #u41789 .text {
  1772. position:absolute;
  1773. align-self:center;
  1774. padding:2px 2px 2px 2px;
  1775. box-sizing:border-box;
  1776. width:100%;
  1777. }
  1778. #u41789_text {
  1779. border-width:0px;
  1780. word-wrap:break-word;
  1781. text-transform:none;
  1782. visibility:hidden;
  1783. }
  1784. #u41790_img {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:0px;
  1788. top:0px;
  1789. width:19px;
  1790. height:29px;
  1791. }
  1792. #u41790 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:692px;
  1796. top:582px;
  1797. width:19px;
  1798. height:29px;
  1799. display:flex;
  1800. }
  1801. #u41790 .text {
  1802. position:absolute;
  1803. align-self:center;
  1804. padding:2px 2px 2px 2px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u41790_text {
  1809. border-width:0px;
  1810. word-wrap:break-word;
  1811. text-transform:none;
  1812. visibility:hidden;
  1813. }
  1814. #u41791_img {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:19px;
  1820. height:29px;
  1821. }
  1822. #u41791 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:1092px;
  1826. top:554px;
  1827. width:19px;
  1828. height:29px;
  1829. display:flex;
  1830. }
  1831. #u41791 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:2px 2px 2px 2px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u41791_text {
  1839. border-width:0px;
  1840. word-wrap:break-word;
  1841. text-transform:none;
  1842. visibility:hidden;
  1843. }
  1844. #u41792_img {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:19px;
  1850. height:29px;
  1851. }
  1852. #u41792 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:1180px;
  1856. top:241px;
  1857. width:19px;
  1858. height:29px;
  1859. display:flex;
  1860. }
  1861. #u41792 .text {
  1862. position:absolute;
  1863. align-self:center;
  1864. padding:2px 2px 2px 2px;
  1865. box-sizing:border-box;
  1866. width:100%;
  1867. }
  1868. #u41792_text {
  1869. border-width:0px;
  1870. word-wrap:break-word;
  1871. text-transform:none;
  1872. visibility:hidden;
  1873. }
  1874. #u41793_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:19px;
  1880. height:29px;
  1881. }
  1882. #u41793 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:654px;
  1886. top:795px;
  1887. width:19px;
  1888. height:29px;
  1889. display:flex;
  1890. }
  1891. #u41793 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 2px 2px 2px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u41793_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. visibility:hidden;
  1903. }
  1904. #u41794 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:0px;
  1910. height:0px;
  1911. }
  1912. #u41795_div {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:10px;
  1918. height:44px;
  1919. background:inherit;
  1920. background-color:rgba(255, 255, 255, 0);
  1921. border:none;
  1922. border-left:0px;
  1923. border-top:0px;
  1924. border-right:0px;
  1925. border-radius:0px;
  1926. border-bottom-right-radius:0px;
  1927. border-bottom-left-radius:0px;
  1928. -moz-box-shadow:none;
  1929. -webkit-box-shadow:none;
  1930. box-shadow:none;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:18px;
  1935. color:#D9001B;
  1936. }
  1937. #u41795 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:455px;
  1941. top:402px;
  1942. width:10px;
  1943. height:44px;
  1944. display:flex;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:18px;
  1949. color:#D9001B;
  1950. }
  1951. #u41795 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:0px 0px 0px 0px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u41795_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. }
  1963. #u41796_img {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:17px;
  1969. height:15px;
  1970. }
  1971. #u41796 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:431px;
  1975. top:416px;
  1976. width:17px;
  1977. height:15px;
  1978. display:flex;
  1979. }
  1980. #u41796 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 2px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u41796_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. visibility:hidden;
  1992. }
  1993. #u41797_div {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:103px;
  1999. height:25px;
  2000. background:inherit;
  2001. background-color:rgba(255, 255, 255, 0);
  2002. border:none;
  2003. border-left:0px;
  2004. border-top:0px;
  2005. border-right:0px;
  2006. border-radius:0px;
  2007. border-bottom-right-radius:0px;
  2008. border-bottom-left-radius:0px;
  2009. -moz-box-shadow:none;
  2010. -webkit-box-shadow:none;
  2011. box-shadow:none;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:18px;
  2016. text-align:right;
  2017. }
  2018. #u41797 {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:1148px;
  2022. top:1038px;
  2023. width:103px;
  2024. height:25px;
  2025. display:flex;
  2026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. font-size:18px;
  2030. text-align:right;
  2031. }
  2032. #u41797 .text {
  2033. position:absolute;
  2034. align-self:center;
  2035. padding:0px 0px 0px 0px;
  2036. box-sizing:border-box;
  2037. width:100%;
  2038. }
  2039. #u41797_text {
  2040. border-width:0px;
  2041. white-space:nowrap;
  2042. text-transform:none;
  2043. }
  2044. #u41798_div {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:6px;
  2050. height:19px;
  2051. background:inherit;
  2052. background-color:rgba(242, 242, 242, 1);
  2053. border:none;
  2054. border-radius:0px;
  2055. -moz-box-shadow:none;
  2056. -webkit-box-shadow:none;
  2057. box-shadow:none;
  2058. }
  2059. #u41798 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:865px;
  2063. top:419px;
  2064. width:6px;
  2065. height:19px;
  2066. display:flex;
  2067. }
  2068. #u41798 .text {
  2069. position:absolute;
  2070. align-self:center;
  2071. padding:2px 2px 2px 2px;
  2072. box-sizing:border-box;
  2073. width:100%;
  2074. }
  2075. #u41798_text {
  2076. border-width:0px;
  2077. word-wrap:break-word;
  2078. text-transform:none;
  2079. visibility:hidden;
  2080. }
  2081. #u41799_div {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:131px;
  2087. height:44px;
  2088. background:inherit;
  2089. background-color:rgba(255, 255, 255, 1);
  2090. box-sizing:border-box;
  2091. border-width:1px;
  2092. border-style:solid;
  2093. border-color:rgba(215, 215, 215, 1);
  2094. border-radius:4px;
  2095. -moz-box-shadow:none;
  2096. -webkit-box-shadow:none;
  2097. box-shadow:none;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. text-align:left;
  2102. }
  2103. #u41799 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:523px;
  2107. top:202px;
  2108. width:131px;
  2109. height:44px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. text-align:left;
  2115. }
  2116. #u41799 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 10px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u41799_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. }
  2128. #u41800 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:0px;
  2134. height:0px;
  2135. }
  2136. #u41801_div {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:300px;
  2142. height:1189px;
  2143. background:inherit;
  2144. background-color:rgba(255, 255, 255, 1);
  2145. box-sizing:border-box;
  2146. border-width:1px;
  2147. border-style:solid;
  2148. border-color:rgba(121, 121, 121, 1);
  2149. border-radius:0px;
  2150. -moz-box-shadow:none;
  2151. -webkit-box-shadow:none;
  2152. box-shadow:none;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:12px;
  2157. color:#FFFFFF;
  2158. text-align:left;
  2159. }
  2160. #u41801 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:1290px;
  2164. top:51px;
  2165. width:300px;
  2166. height:1189px;
  2167. display:flex;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:12px;
  2172. color:#FFFFFF;
  2173. text-align:left;
  2174. }
  2175. #u41801 .text {
  2176. position:absolute;
  2177. align-self:center;
  2178. padding:2px 2px 2px 50px;
  2179. box-sizing:border-box;
  2180. width:100%;
  2181. }
  2182. #u41801_text {
  2183. border-width:0px;
  2184. word-wrap:break-word;
  2185. text-transform:none;
  2186. visibility:hidden;
  2187. }
  2188. #u41802_div {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:73px;
  2194. height:50px;
  2195. background:inherit;
  2196. background-color:rgba(255, 255, 255, 0);
  2197. border:none;
  2198. border-left:0px;
  2199. border-top:0px;
  2200. border-right:0px;
  2201. border-radius:0px;
  2202. border-bottom-right-radius:0px;
  2203. border-bottom-left-radius:0px;
  2204. -moz-box-shadow:none;
  2205. -webkit-box-shadow:none;
  2206. box-shadow:none;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:18px;
  2211. }
  2212. #u41802 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:1310px;
  2216. top:61px;
  2217. width:73px;
  2218. height:50px;
  2219. display:flex;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:18px;
  2224. }
  2225. #u41802 .text {
  2226. position:absolute;
  2227. align-self:center;
  2228. padding:0px 0px 0px 0px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u41802_text {
  2233. border-width:0px;
  2234. white-space:nowrap;
  2235. text-transform:none;
  2236. }
  2237. #u41803_div {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:73px;
  2243. height:50px;
  2244. background:inherit;
  2245. background-color:rgba(255, 255, 255, 0);
  2246. border:none;
  2247. border-left:0px;
  2248. border-top:0px;
  2249. border-right:0px;
  2250. border-radius:0px;
  2251. border-bottom-right-radius:0px;
  2252. border-bottom-left-radius:0px;
  2253. -moz-box-shadow:none;
  2254. -webkit-box-shadow:none;
  2255. box-shadow:none;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:18px;
  2260. }
  2261. #u41803 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:1310px;
  2265. top:313px;
  2266. width:73px;
  2267. height:50px;
  2268. display:flex;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:18px;
  2273. }
  2274. #u41803 .text {
  2275. position:absolute;
  2276. align-self:center;
  2277. padding:0px 0px 0px 0px;
  2278. box-sizing:border-box;
  2279. width:100%;
  2280. }
  2281. #u41803_text {
  2282. border-width:0px;
  2283. white-space:nowrap;
  2284. text-transform:none;
  2285. }
  2286. #u41804_div {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:73px;
  2292. height:50px;
  2293. background:inherit;
  2294. background-color:rgba(255, 255, 255, 0);
  2295. border:none;
  2296. border-left:0px;
  2297. border-top:0px;
  2298. border-right:0px;
  2299. border-radius:0px;
  2300. border-bottom-right-radius:0px;
  2301. border-bottom-left-radius:0px;
  2302. -moz-box-shadow:none;
  2303. -webkit-box-shadow:none;
  2304. box-shadow:none;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:18px;
  2309. }
  2310. #u41804 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:1310px;
  2314. top:612px;
  2315. width:73px;
  2316. height:50px;
  2317. display:flex;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:18px;
  2322. }
  2323. #u41804 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:0px 0px 0px 0px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u41804_text {
  2331. border-width:0px;
  2332. white-space:nowrap;
  2333. text-transform:none;
  2334. }
  2335. #u41805_img {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:260px;
  2341. height:118px;
  2342. }
  2343. #u41805 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:1310px;
  2347. top:363px;
  2348. width:260px;
  2349. height:118px;
  2350. display:flex;
  2351. }
  2352. #u41805 .text {
  2353. position:absolute;
  2354. align-self:center;
  2355. padding:2px 2px 2px 2px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u41805_text {
  2360. border-width:0px;
  2361. word-wrap:break-word;
  2362. text-transform:none;
  2363. visibility:hidden;
  2364. }
  2365. #u41806_img {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:260px;
  2371. height:118px;
  2372. }
  2373. #u41806 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:1310px;
  2377. top:662px;
  2378. width:260px;
  2379. height:118px;
  2380. display:flex;
  2381. }
  2382. #u41806 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 2px 2px 2px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u41806_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. visibility:hidden;
  2394. }
  2395. #u41807_img {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:260px;
  2401. height:118px;
  2402. }
  2403. #u41807 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:1310px;
  2407. top:785px;
  2408. width:260px;
  2409. height:118px;
  2410. display:flex;
  2411. }
  2412. #u41807 .text {
  2413. position:absolute;
  2414. align-self:center;
  2415. padding:2px 2px 2px 2px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u41807_text {
  2420. border-width:0px;
  2421. word-wrap:break-word;
  2422. text-transform:none;
  2423. visibility:hidden;
  2424. }
  2425. #u41808_img {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:260px;
  2431. height:118px;
  2432. }
  2433. #u41808 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:1310px;
  2437. top:908px;
  2438. width:260px;
  2439. height:118px;
  2440. display:flex;
  2441. }
  2442. #u41808 .text {
  2443. position:absolute;
  2444. align-self:center;
  2445. padding:2px 2px 2px 2px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u41808_text {
  2450. border-width:0px;
  2451. word-wrap:break-word;
  2452. text-transform:none;
  2453. visibility:hidden;
  2454. }
  2455. #u41809_img {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:260px;
  2461. height:118px;
  2462. }
  2463. #u41809 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:1310px;
  2467. top:1031px;
  2468. width:260px;
  2469. height:118px;
  2470. display:flex;
  2471. }
  2472. #u41809 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 2px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u41809_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. visibility:hidden;
  2484. }
  2485. #u41810_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:71px;
  2491. height:180px;
  2492. background:inherit;
  2493. background-color:rgba(255, 255, 255, 0);
  2494. border:none;
  2495. border-left:0px;
  2496. border-top:0px;
  2497. border-right:0px;
  2498. border-radius:0px;
  2499. border-bottom-right-radius:0px;
  2500. border-bottom-left-radius:0px;
  2501. -moz-box-shadow:none;
  2502. -webkit-box-shadow:none;
  2503. box-shadow:none;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:14px;
  2508. line-height:30px;
  2509. }
  2510. #u41810 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:1321px;
  2514. top:111px;
  2515. width:71px;
  2516. height:180px;
  2517. display:flex;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:14px;
  2522. line-height:30px;
  2523. }
  2524. #u41810 .text {
  2525. position:absolute;
  2526. align-self:flex-start;
  2527. padding:0px 0px 0px 0px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u41810_text {
  2532. border-width:0px;
  2533. white-space:nowrap;
  2534. text-transform:none;
  2535. }
  2536. #u41811_img {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:260px;
  2542. height:118px;
  2543. }
  2544. #u41811 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:1310px;
  2548. top:486px;
  2549. width:260px;
  2550. height:118px;
  2551. display:flex;
  2552. }
  2553. #u41811 .text {
  2554. position:absolute;
  2555. align-self:center;
  2556. padding:2px 2px 2px 2px;
  2557. box-sizing:border-box;
  2558. width:100%;
  2559. }
  2560. #u41811_text {
  2561. border-width:0px;
  2562. word-wrap:break-word;
  2563. text-transform:none;
  2564. visibility:hidden;
  2565. }
  2566. #u41812_div {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:0px;
  2570. top:0px;
  2571. width:10px;
  2572. height:206px;
  2573. background:inherit;
  2574. background-color:rgba(51, 51, 51, 1);
  2575. box-sizing:border-box;
  2576. border-width:1px;
  2577. border-style:solid;
  2578. border-color:rgba(170, 170, 170, 1);
  2579. border-radius:5px;
  2580. -moz-box-shadow:none;
  2581. -webkit-box-shadow:none;
  2582. box-shadow:none;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:12px;
  2587. color:#555555;
  2588. }
  2589. #u41812 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:1573px;
  2593. top:730px;
  2594. width:10px;
  2595. height:206px;
  2596. display:flex;
  2597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:12px;
  2601. color:#555555;
  2602. }
  2603. #u41812 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:5px 15px 5px 15px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u41812_text {
  2611. border-width:0px;
  2612. word-wrap:break-word;
  2613. text-transform:none;
  2614. visibility:hidden;
  2615. }
  2616. #u41813_div {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:29px;
  2622. height:50px;
  2623. background:inherit;
  2624. background-color:rgba(255, 255, 255, 0);
  2625. border:none;
  2626. border-left:0px;
  2627. border-top:0px;
  2628. border-right:0px;
  2629. border-radius:0px;
  2630. border-bottom-right-radius:0px;
  2631. border-bottom-left-radius:0px;
  2632. -moz-box-shadow:none;
  2633. -webkit-box-shadow:none;
  2634. box-shadow:none;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:14px;
  2639. color:#1890FF;
  2640. }
  2641. #u41813 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:1541px;
  2645. top:612px;
  2646. width:29px;
  2647. height:50px;
  2648. display:flex;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. font-size:14px;
  2653. color:#1890FF;
  2654. }
  2655. #u41813 .text {
  2656. position:absolute;
  2657. align-self:center;
  2658. padding:0px 0px 0px 0px;
  2659. box-sizing:border-box;
  2660. width:100%;
  2661. }
  2662. #u41813_text {
  2663. border-width:0px;
  2664. white-space:nowrap;
  2665. text-transform:none;
  2666. }
  2667. #u41814_div {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:29px;
  2673. height:50px;
  2674. background:inherit;
  2675. background-color:rgba(255, 255, 255, 0);
  2676. border:none;
  2677. border-left:0px;
  2678. border-top:0px;
  2679. border-right:0px;
  2680. border-radius:0px;
  2681. border-bottom-right-radius:0px;
  2682. border-bottom-left-radius:0px;
  2683. -moz-box-shadow:none;
  2684. -webkit-box-shadow:none;
  2685. box-shadow:none;
  2686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2687. font-weight:400;
  2688. font-style:normal;
  2689. font-size:14px;
  2690. color:#1890FF;
  2691. }
  2692. #u41814 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:1541px;
  2696. top:315px;
  2697. width:29px;
  2698. height:50px;
  2699. display:flex;
  2700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2701. font-weight:400;
  2702. font-style:normal;
  2703. font-size:14px;
  2704. color:#1890FF;
  2705. }
  2706. #u41814 .text {
  2707. position:absolute;
  2708. align-self:center;
  2709. padding:0px 0px 0px 0px;
  2710. box-sizing:border-box;
  2711. width:100%;
  2712. }
  2713. #u41814_text {
  2714. border-width:0px;
  2715. white-space:nowrap;
  2716. text-transform:none;
  2717. }
  2718. #u41815_div {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:73px;
  2724. height:50px;
  2725. background:inherit;
  2726. background-color:rgba(255, 255, 255, 0);
  2727. border:none;
  2728. border-left:0px;
  2729. border-top:0px;
  2730. border-right:0px;
  2731. border-radius:0px;
  2732. border-bottom-right-radius:0px;
  2733. border-bottom-left-radius:0px;
  2734. -moz-box-shadow:none;
  2735. -webkit-box-shadow:none;
  2736. box-shadow:none;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:18px;
  2741. }
  2742. #u41815 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:352px;
  2746. top:52px;
  2747. width:73px;
  2748. height:50px;
  2749. display:flex;
  2750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2751. font-weight:400;
  2752. font-style:normal;
  2753. font-size:18px;
  2754. }
  2755. #u41815 .text {
  2756. position:absolute;
  2757. align-self:center;
  2758. padding:0px 0px 0px 0px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u41815_text {
  2763. border-width:0px;
  2764. white-space:nowrap;
  2765. text-transform:none;
  2766. }
  2767. #u41816 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:0px;
  2773. height:0px;
  2774. }
  2775. #u41817_div {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:140px;
  2781. height:30px;
  2782. background:inherit;
  2783. background-color:rgba(255, 255, 255, 1);
  2784. box-sizing:border-box;
  2785. border-width:1px;
  2786. border-style:solid;
  2787. border-color:rgba(201, 201, 201, 1);
  2788. border-radius:4px;
  2789. -moz-box-shadow:none;
  2790. -webkit-box-shadow:none;
  2791. box-shadow:none;
  2792. font-family:'Microsoft YaHei', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:14px;
  2796. color:#CCCCCC;
  2797. text-align:left;
  2798. }
  2799. #u41817 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:652px;
  2803. top:103px;
  2804. width:140px;
  2805. height:30px;
  2806. display:flex;
  2807. font-family:'Microsoft YaHei', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:14px;
  2811. color:#CCCCCC;
  2812. text-align:left;
  2813. }
  2814. #u41817 .text {
  2815. position:absolute;
  2816. align-self:center;
  2817. padding:2px 8px 2px 8px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u41817_text {
  2822. border-width:0px;
  2823. word-wrap:break-word;
  2824. text-transform:none;
  2825. visibility:hidden;
  2826. }
  2827. #u41818_input {
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:127px;
  2832. height:25px;
  2833. padding:2px 2px 2px 2px;
  2834. font-family:'Microsoft YaHei', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:10px;
  2838. letter-spacing:normal;
  2839. color:#000000;
  2840. vertical-align:none;
  2841. text-align:left;
  2842. text-transform:none;
  2843. background-color:transparent;
  2844. border-color:transparent;
  2845. }
  2846. #u41818_input.disabled {
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:127px;
  2851. height:25px;
  2852. padding:2px 2px 2px 2px;
  2853. font-family:'Microsoft YaHei', sans-serif;
  2854. font-weight:400;
  2855. font-style:normal;
  2856. font-size:10px;
  2857. letter-spacing:normal;
  2858. color:#000000;
  2859. vertical-align:none;
  2860. text-align:left;
  2861. text-transform:none;
  2862. background-color:transparent;
  2863. border-color:transparent;
  2864. }
  2865. #u41818_div {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:127px;
  2871. height:25px;
  2872. background:inherit;
  2873. background-color:rgba(255, 255, 255, 1);
  2874. border:none;
  2875. border-radius:0px;
  2876. -moz-box-shadow:none;
  2877. -webkit-box-shadow:none;
  2878. box-shadow:none;
  2879. font-family:'Microsoft YaHei', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:10px;
  2883. }
  2884. #u41818 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:660px;
  2888. top:104px;
  2889. width:127px;
  2890. height:25px;
  2891. display:flex;
  2892. font-family:'Microsoft YaHei', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:10px;
  2896. }
  2897. #u41818 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 2px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u41818_div.disabled {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:127px;
  2910. height:25px;
  2911. background:inherit;
  2912. background-color:rgba(240, 240, 240, 1);
  2913. border:none;
  2914. border-radius:0px;
  2915. -moz-box-shadow:none;
  2916. -webkit-box-shadow:none;
  2917. box-shadow:none;
  2918. font-family:'Microsoft YaHei', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:10px;
  2922. }
  2923. #u41818.disabled {
  2924. }
  2925. #u41819 {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:0px;
  2931. height:0px;
  2932. }
  2933. #u41820_div {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:140px;
  2939. height:30px;
  2940. background:inherit;
  2941. background-color:rgba(255, 255, 255, 1);
  2942. box-sizing:border-box;
  2943. border-width:1px;
  2944. border-style:solid;
  2945. border-color:rgba(215, 215, 215, 1);
  2946. border-radius:4px;
  2947. -moz-box-shadow:none;
  2948. -webkit-box-shadow:none;
  2949. box-shadow:none;
  2950. font-size:11px;
  2951. }
  2952. #u41820 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:352px;
  2956. top:102px;
  2957. width:140px;
  2958. height:30px;
  2959. display:flex;
  2960. font-size:11px;
  2961. }
  2962. #u41820 .text {
  2963. position:absolute;
  2964. align-self:center;
  2965. padding:2px 2px 2px 2px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u41820_text {
  2970. border-width:0px;
  2971. word-wrap:break-word;
  2972. text-transform:none;
  2973. visibility:hidden;
  2974. }
  2975. #u41821_input {
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:126px;
  2980. height:23px;
  2981. padding:2px 2px 2px 2px;
  2982. font-family:'ArialMT', 'Arial', sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:11px;
  2986. letter-spacing:normal;
  2987. color:#AAAAAA;
  2988. vertical-align:none;
  2989. text-align:left;
  2990. text-transform:none;
  2991. background-color:transparent;
  2992. border-color:transparent;
  2993. }
  2994. #u41821_input.disabled {
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:126px;
  2999. height:23px;
  3000. padding:2px 2px 2px 2px;
  3001. font-family:'ArialMT', 'Arial', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:11px;
  3005. letter-spacing:normal;
  3006. color:#AAAAAA;
  3007. vertical-align:none;
  3008. text-align:left;
  3009. text-transform:none;
  3010. background-color:transparent;
  3011. border-color:transparent;
  3012. }
  3013. #u41821_div {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:126px;
  3019. height:23px;
  3020. background:inherit;
  3021. background-color:rgba(255, 255, 255, 1);
  3022. border:none;
  3023. border-radius:0px;
  3024. -moz-box-shadow:none;
  3025. -webkit-box-shadow:none;
  3026. box-shadow:none;
  3027. font-size:11px;
  3028. color:#AAAAAA;
  3029. }
  3030. #u41821 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:359px;
  3034. top:104px;
  3035. width:126px;
  3036. height:23px;
  3037. display:flex;
  3038. font-size:11px;
  3039. color:#AAAAAA;
  3040. }
  3041. #u41821 .text {
  3042. position:absolute;
  3043. align-self:flex-start;
  3044. padding:2px 2px 2px 2px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u41821_div.disabled {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:126px;
  3054. height:23px;
  3055. background:inherit;
  3056. background-color:rgba(240, 240, 240, 1);
  3057. border:none;
  3058. border-radius:0px;
  3059. -moz-box-shadow:none;
  3060. -webkit-box-shadow:none;
  3061. box-shadow:none;
  3062. font-size:11px;
  3063. color:#AAAAAA;
  3064. }
  3065. #u41821.disabled {
  3066. }
  3067. .u41821_input_option {
  3068. font-size:11px;
  3069. }
  3070. #u41822 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:0px;
  3076. height:0px;
  3077. }
  3078. #u41823_div {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:0px;
  3082. top:0px;
  3083. width:59px;
  3084. height:30px;
  3085. background:inherit;
  3086. background-color:rgba(24, 144, 255, 1);
  3087. box-sizing:border-box;
  3088. border-width:1px;
  3089. border-style:solid;
  3090. border-color:rgba(0, 153, 255, 1);
  3091. border-radius:4px;
  3092. -moz-box-shadow:none;
  3093. -webkit-box-shadow:none;
  3094. box-shadow:none;
  3095. font-family:'Microsoft YaHei', sans-serif;
  3096. font-weight:400;
  3097. font-style:normal;
  3098. font-size:14px;
  3099. color:#FFFFFF;
  3100. }
  3101. #u41823 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:952px;
  3105. top:105px;
  3106. width:59px;
  3107. height:30px;
  3108. display:flex;
  3109. font-family:'Microsoft YaHei', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:14px;
  3113. color:#FFFFFF;
  3114. }
  3115. #u41823 .text {
  3116. position:absolute;
  3117. align-self:center;
  3118. padding:5px 15px 5px 15px;
  3119. box-sizing:border-box;
  3120. width:100%;
  3121. }
  3122. #u41823_text {
  3123. border-width:0px;
  3124. white-space:nowrap;
  3125. text-transform:none;
  3126. }
  3127. #u41824_div {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:55px;
  3133. height:30px;
  3134. background:inherit;
  3135. background-color:rgba(255, 255, 255, 1);
  3136. box-sizing:border-box;
  3137. border-width:1px;
  3138. border-style:solid;
  3139. border-color:rgba(170, 170, 170, 1);
  3140. border-radius:4px;
  3141. -moz-box-shadow:none;
  3142. -webkit-box-shadow:none;
  3143. box-shadow:none;
  3144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. font-size:12px;
  3148. color:#555555;
  3149. }
  3150. #u41824 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:1021px;
  3154. top:105px;
  3155. width:55px;
  3156. height:30px;
  3157. display:flex;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:12px;
  3162. color:#555555;
  3163. }
  3164. #u41824 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:5px 15px 5px 15px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u41824_text {
  3172. border-width:0px;
  3173. white-space:nowrap;
  3174. text-transform:none;
  3175. }
  3176. #u41825 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:0px;
  3182. height:0px;
  3183. }
  3184. #u41826_div {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:140px;
  3190. height:30px;
  3191. background:inherit;
  3192. background-color:rgba(255, 255, 255, 1);
  3193. box-sizing:border-box;
  3194. border-width:1px;
  3195. border-style:solid;
  3196. border-color:rgba(215, 215, 215, 1);
  3197. border-radius:4px;
  3198. -moz-box-shadow:none;
  3199. -webkit-box-shadow:none;
  3200. box-shadow:none;
  3201. font-size:11px;
  3202. }
  3203. #u41826 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:802px;
  3207. top:104px;
  3208. width:140px;
  3209. height:30px;
  3210. display:flex;
  3211. font-size:11px;
  3212. }
  3213. #u41826 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 2px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u41826_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. visibility:hidden;
  3225. }
  3226. #u41827_input {
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:126px;
  3231. height:23px;
  3232. padding:2px 2px 2px 2px;
  3233. font-family:'ArialMT', 'Arial', sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:11px;
  3237. letter-spacing:normal;
  3238. color:#AAAAAA;
  3239. vertical-align:none;
  3240. text-align:left;
  3241. text-transform:none;
  3242. background-color:transparent;
  3243. border-color:transparent;
  3244. }
  3245. #u41827_input.disabled {
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:126px;
  3250. height:23px;
  3251. padding:2px 2px 2px 2px;
  3252. font-family:'ArialMT', 'Arial', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:11px;
  3256. letter-spacing:normal;
  3257. color:#AAAAAA;
  3258. vertical-align:none;
  3259. text-align:left;
  3260. text-transform:none;
  3261. background-color:transparent;
  3262. border-color:transparent;
  3263. }
  3264. #u41827_div {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:126px;
  3270. height:23px;
  3271. background:inherit;
  3272. background-color:rgba(255, 255, 255, 1);
  3273. border:none;
  3274. border-radius:0px;
  3275. -moz-box-shadow:none;
  3276. -webkit-box-shadow:none;
  3277. box-shadow:none;
  3278. font-size:11px;
  3279. color:#AAAAAA;
  3280. }
  3281. #u41827 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:809px;
  3285. top:106px;
  3286. width:126px;
  3287. height:23px;
  3288. display:flex;
  3289. font-size:11px;
  3290. color:#AAAAAA;
  3291. }
  3292. #u41827 .text {
  3293. position:absolute;
  3294. align-self:flex-start;
  3295. padding:2px 2px 2px 2px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u41827_div.disabled {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:126px;
  3305. height:23px;
  3306. background:inherit;
  3307. background-color:rgba(240, 240, 240, 1);
  3308. border:none;
  3309. border-radius:0px;
  3310. -moz-box-shadow:none;
  3311. -webkit-box-shadow:none;
  3312. box-shadow:none;
  3313. font-size:11px;
  3314. color:#AAAAAA;
  3315. }
  3316. #u41827.disabled {
  3317. }
  3318. .u41827_input_option {
  3319. font-size:11px;
  3320. }
  3321. #u41828_div {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:60px;
  3327. height:30px;
  3328. background:inherit;
  3329. background-color:rgba(24, 144, 255, 1);
  3330. box-sizing:border-box;
  3331. border-width:1px;
  3332. border-style:solid;
  3333. border-color:rgba(215, 215, 215, 1);
  3334. border-radius:4px;
  3335. -moz-box-shadow:none;
  3336. -webkit-box-shadow:none;
  3337. box-shadow:none;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:11px;
  3342. color:#FFFFFF;
  3343. }
  3344. #u41828 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:352px;
  3348. top:152px;
  3349. width:60px;
  3350. height:30px;
  3351. display:flex;
  3352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:11px;
  3356. color:#FFFFFF;
  3357. }
  3358. #u41828 .text {
  3359. position:absolute;
  3360. align-self:center;
  3361. padding:2px 2px 2px 2px;
  3362. box-sizing:border-box;
  3363. width:100%;
  3364. }
  3365. #u41828_text {
  3366. border-width:0px;
  3367. word-wrap:break-word;
  3368. text-transform:none;
  3369. }
  3370. #u41829 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:0px;
  3376. height:0px;
  3377. }
  3378. #u41830_div {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:140px;
  3384. height:30px;
  3385. background:inherit;
  3386. background-color:rgba(255, 255, 255, 1);
  3387. box-sizing:border-box;
  3388. border-width:1px;
  3389. border-style:solid;
  3390. border-color:rgba(215, 215, 215, 1);
  3391. border-radius:4px;
  3392. -moz-box-shadow:none;
  3393. -webkit-box-shadow:none;
  3394. box-shadow:none;
  3395. font-size:11px;
  3396. }
  3397. #u41830 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:502px;
  3401. top:102px;
  3402. width:140px;
  3403. height:30px;
  3404. display:flex;
  3405. font-size:11px;
  3406. }
  3407. #u41830 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 2px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u41830_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u41831_input {
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:126px;
  3425. height:23px;
  3426. padding:2px 2px 2px 2px;
  3427. font-family:'ArialMT', 'Arial', sans-serif;
  3428. font-weight:400;
  3429. font-style:normal;
  3430. font-size:11px;
  3431. letter-spacing:normal;
  3432. color:#AAAAAA;
  3433. vertical-align:none;
  3434. text-align:left;
  3435. text-transform:none;
  3436. background-color:transparent;
  3437. border-color:transparent;
  3438. }
  3439. #u41831_input.disabled {
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:126px;
  3444. height:23px;
  3445. padding:2px 2px 2px 2px;
  3446. font-family:'ArialMT', 'Arial', sans-serif;
  3447. font-weight:400;
  3448. font-style:normal;
  3449. font-size:11px;
  3450. letter-spacing:normal;
  3451. color:#AAAAAA;
  3452. vertical-align:none;
  3453. text-align:left;
  3454. text-transform:none;
  3455. background-color:transparent;
  3456. border-color:transparent;
  3457. }
  3458. #u41831_div {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:126px;
  3464. height:23px;
  3465. background:inherit;
  3466. background-color:rgba(255, 255, 255, 1);
  3467. border:none;
  3468. border-radius:0px;
  3469. -moz-box-shadow:none;
  3470. -webkit-box-shadow:none;
  3471. box-shadow:none;
  3472. font-size:11px;
  3473. color:#AAAAAA;
  3474. }
  3475. #u41831 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:509px;
  3479. top:104px;
  3480. width:126px;
  3481. height:23px;
  3482. display:flex;
  3483. font-size:11px;
  3484. color:#AAAAAA;
  3485. }
  3486. #u41831 .text {
  3487. position:absolute;
  3488. align-self:flex-start;
  3489. padding:2px 2px 2px 2px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u41831_div.disabled {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:126px;
  3499. height:23px;
  3500. background:inherit;
  3501. background-color:rgba(240, 240, 240, 1);
  3502. border:none;
  3503. border-radius:0px;
  3504. -moz-box-shadow:none;
  3505. -webkit-box-shadow:none;
  3506. box-shadow:none;
  3507. font-size:11px;
  3508. color:#AAAAAA;
  3509. }
  3510. #u41831.disabled {
  3511. }
  3512. .u41831_input_option {
  3513. font-size:11px;
  3514. }
  3515. #u41832_div {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:60px;
  3521. height:30px;
  3522. background:inherit;
  3523. background-color:rgba(255, 255, 255, 1);
  3524. box-sizing:border-box;
  3525. border-width:1px;
  3526. border-style:solid;
  3527. border-color:rgba(215, 215, 215, 1);
  3528. border-radius:4px;
  3529. -moz-box-shadow:none;
  3530. -webkit-box-shadow:none;
  3531. box-shadow:none;
  3532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:11px;
  3536. }
  3537. #u41832 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:422px;
  3541. top:152px;
  3542. width:60px;
  3543. height:30px;
  3544. display:flex;
  3545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:11px;
  3549. }
  3550. #u41832 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 2px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u41832_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. }
  3562. #u41833_div {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:60px;
  3568. height:30px;
  3569. background:inherit;
  3570. background-color:rgba(255, 255, 255, 1);
  3571. box-sizing:border-box;
  3572. border-width:1px;
  3573. border-style:solid;
  3574. border-color:rgba(215, 215, 215, 1);
  3575. border-radius:4px;
  3576. -moz-box-shadow:none;
  3577. -webkit-box-shadow:none;
  3578. box-shadow:none;
  3579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:11px;
  3583. }
  3584. #u41833 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:492px;
  3588. top:152px;
  3589. width:60px;
  3590. height:30px;
  3591. display:flex;
  3592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:11px;
  3596. }
  3597. #u41833 .text {
  3598. position:absolute;
  3599. align-self:center;
  3600. padding:2px 2px 2px 2px;
  3601. box-sizing:border-box;
  3602. width:100%;
  3603. }
  3604. #u41833_text {
  3605. border-width:0px;
  3606. word-wrap:break-word;
  3607. text-transform:none;
  3608. }
  3609. #u41835_div {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:1480px;
  3615. height:1200px;
  3616. background:inherit;
  3617. background-color:rgba(242, 242, 242, 1);
  3618. border:none;
  3619. border-radius:0px;
  3620. -moz-box-shadow:none;
  3621. -webkit-box-shadow:none;
  3622. box-shadow:none;
  3623. }
  3624. #u41835 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:1778px;
  3628. top:50px;
  3629. width:1480px;
  3630. height:1200px;
  3631. display:flex;
  3632. }
  3633. #u41835 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:2px 2px 2px 2px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u41835_text {
  3641. border-width:0px;
  3642. word-wrap:break-word;
  3643. text-transform:none;
  3644. visibility:hidden;
  3645. }
  3646. #u41836_div {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:129px;
  3652. height:22px;
  3653. background:inherit;
  3654. background-color:rgba(255, 255, 255, 0);
  3655. border:none;
  3656. border-radius:0px;
  3657. -moz-box-shadow:none;
  3658. -webkit-box-shadow:none;
  3659. box-shadow:none;
  3660. font-size:16px;
  3661. color:#FFFFFF;
  3662. }
  3663. #u41836 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:1707px;
  3667. top:14px;
  3668. width:129px;
  3669. height:22px;
  3670. display:flex;
  3671. font-size:16px;
  3672. color:#FFFFFF;
  3673. }
  3674. #u41836 .text {
  3675. position:absolute;
  3676. align-self:flex-start;
  3677. padding:0px 0px 0px 0px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u41836_text {
  3682. border-width:0px;
  3683. white-space:nowrap;
  3684. text-transform:none;
  3685. }
  3686. #u41837_div {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:1600px;
  3692. height:50px;
  3693. background:inherit;
  3694. background-color:rgba(30, 42, 68, 1);
  3695. border:none;
  3696. border-radius:0px;
  3697. -moz-box-shadow:none;
  3698. -webkit-box-shadow:none;
  3699. box-shadow:none;
  3700. color:#AFB3B6;
  3701. }
  3702. #u41837 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:1658px;
  3706. top:0px;
  3707. width:1600px;
  3708. height:50px;
  3709. display:flex;
  3710. color:#AFB3B6;
  3711. }
  3712. #u41837 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 2px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u41837_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. visibility:hidden;
  3724. }
  3725. #u41838 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:0px;
  3731. height:0px;
  3732. }
  3733. #u41839_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:31px;
  3739. height:31px;
  3740. }
  3741. #u41839 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:1677px;
  3745. top:10px;
  3746. width:31px;
  3747. height:31px;
  3748. display:flex;
  3749. }
  3750. #u41839 .text {
  3751. position:absolute;
  3752. align-self:center;
  3753. padding:2px 2px 2px 2px;
  3754. box-sizing:border-box;
  3755. width:100%;
  3756. }
  3757. #u41839_text {
  3758. border-width:0px;
  3759. word-wrap:break-word;
  3760. text-transform:none;
  3761. }
  3762. #u41840_div {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:161px;
  3768. height:22px;
  3769. background:inherit;
  3770. background-color:rgba(255, 255, 255, 0);
  3771. border:none;
  3772. border-radius:0px;
  3773. -moz-box-shadow:none;
  3774. -webkit-box-shadow:none;
  3775. box-shadow:none;
  3776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. font-size:16px;
  3780. color:#FFFFFF;
  3781. }
  3782. #u41840 {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:1720px;
  3786. top:14px;
  3787. width:161px;
  3788. height:22px;
  3789. display:flex;
  3790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3791. font-weight:400;
  3792. font-style:normal;
  3793. font-size:16px;
  3794. color:#FFFFFF;
  3795. }
  3796. #u41840 .text {
  3797. position:absolute;
  3798. align-self:flex-start;
  3799. padding:0px 0px 0px 0px;
  3800. box-sizing:border-box;
  3801. width:100%;
  3802. }
  3803. #u41840_text {
  3804. border-width:0px;
  3805. white-space:nowrap;
  3806. text-transform:none;
  3807. }
  3808. #u41841_div {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:120px;
  3814. height:1200px;
  3815. background:inherit;
  3816. background-color:rgba(30, 42, 68, 1);
  3817. border:none;
  3818. border-radius:0px;
  3819. -moz-box-shadow:none;
  3820. -webkit-box-shadow:none;
  3821. box-shadow:none;
  3822. color:#AFB3B6;
  3823. }
  3824. #u41841 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:1658px;
  3828. top:47px;
  3829. width:120px;
  3830. height:1200px;
  3831. display:flex;
  3832. color:#AFB3B6;
  3833. }
  3834. #u41841 .text {
  3835. position:absolute;
  3836. align-self:center;
  3837. padding:2px 2px 2px 2px;
  3838. box-sizing:border-box;
  3839. width:100%;
  3840. }
  3841. #u41841_text {
  3842. border-width:0px;
  3843. word-wrap:break-word;
  3844. text-transform:none;
  3845. visibility:hidden;
  3846. }
  3847. #u41842 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:0px;
  3853. height:0px;
  3854. }
  3855. #u41843_input {
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:214px;
  3860. height:27px;
  3861. padding:2px 2px 2px 2px;
  3862. font-family:'ArialMT', 'Arial', sans-serif;
  3863. font-weight:400;
  3864. font-style:normal;
  3865. font-size:14px;
  3866. letter-spacing:normal;
  3867. color:#FFFFFF;
  3868. vertical-align:none;
  3869. text-align:left;
  3870. text-transform:none;
  3871. background-color:transparent;
  3872. border-color:transparent;
  3873. }
  3874. #u41843_input.disabled {
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:214px;
  3879. height:27px;
  3880. padding:2px 2px 2px 2px;
  3881. font-family:'ArialMT', 'Arial', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:14px;
  3885. letter-spacing:normal;
  3886. color:#FFFFFF;
  3887. vertical-align:none;
  3888. text-align:left;
  3889. text-transform:none;
  3890. background-color:transparent;
  3891. border-color:transparent;
  3892. }
  3893. #u41843_div {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:0px;
  3897. top:0px;
  3898. width:214px;
  3899. height:27px;
  3900. background:inherit;
  3901. background-color:rgba(255, 255, 255, 0);
  3902. border:none;
  3903. border-radius:0px;
  3904. -moz-box-shadow:none;
  3905. -webkit-box-shadow:none;
  3906. box-shadow:none;
  3907. font-size:14px;
  3908. color:#FFFFFF;
  3909. }
  3910. #u41843 {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:2747px;
  3914. top:10px;
  3915. width:214px;
  3916. height:27px;
  3917. display:flex;
  3918. font-size:14px;
  3919. color:#FFFFFF;
  3920. }
  3921. #u41843 .text {
  3922. position:absolute;
  3923. align-self:flex-start;
  3924. padding:2px 2px 2px 2px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u41843_div.disabled {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:0px;
  3932. top:0px;
  3933. width:214px;
  3934. height:27px;
  3935. background:inherit;
  3936. background-color:rgba(240, 240, 240, 1);
  3937. border:none;
  3938. border-radius:0px;
  3939. -moz-box-shadow:none;
  3940. -webkit-box-shadow:none;
  3941. box-shadow:none;
  3942. font-size:14px;
  3943. color:#FFFFFF;
  3944. }
  3945. #u41843.disabled {
  3946. }
  3947. .u41843_input_option {
  3948. font-size:14px;
  3949. }
  3950. #u41844_img {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:22px;
  3956. height:22px;
  3957. }
  3958. #u41844 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:2720px;
  3962. top:15px;
  3963. width:22px;
  3964. height:22px;
  3965. display:flex;
  3966. }
  3967. #u41844 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:2px 2px 2px 2px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u41844_text {
  3975. border-width:0px;
  3976. word-wrap:break-word;
  3977. text-transform:none;
  3978. visibility:hidden;
  3979. }
  3980. #u41845_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:100px;
  3986. height:24px;
  3987. background:inherit;
  3988. background-color:rgba(242, 242, 242, 0.2);
  3989. border:none;
  3990. border-radius:25px;
  3991. -moz-box-shadow:none;
  3992. -webkit-box-shadow:none;
  3993. box-shadow:none;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. color:#FFFFFF;
  3998. text-align:center;
  3999. }
  4000. #u41845 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:3008px;
  4004. top:12px;
  4005. width:100px;
  4006. height:24px;
  4007. display:flex;
  4008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. color:#FFFFFF;
  4012. text-align:center;
  4013. }
  4014. #u41845 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:0px 0px 0px 0px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u41845_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. }
  4026. #u41846_div {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:120px;
  4032. height:24px;
  4033. background:inherit;
  4034. background-color:rgba(242, 242, 242, 0.2);
  4035. border:none;
  4036. border-radius:25px;
  4037. -moz-box-shadow:none;
  4038. -webkit-box-shadow:none;
  4039. box-shadow:none;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. color:#FFFFFF;
  4044. text-align:center;
  4045. }
  4046. #u41846 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:3118px;
  4050. top:12px;
  4051. width:120px;
  4052. height:24px;
  4053. display:flex;
  4054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. color:#FFFFFF;
  4058. text-align:center;
  4059. }
  4060. #u41846 .text {
  4061. position:absolute;
  4062. align-self:center;
  4063. padding:0px 0px 0px 0px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u41846_text {
  4068. border-width:0px;
  4069. word-wrap:break-word;
  4070. text-transform:none;
  4071. }
  4072. #u41847 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:0px;
  4076. top:0px;
  4077. width:0px;
  4078. height:0px;
  4079. }
  4080. #u41848_div {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:33px;
  4086. height:22px;
  4087. background:inherit;
  4088. background-color:rgba(255, 255, 255, 0);
  4089. border:none;
  4090. border-radius:0px;
  4091. -moz-box-shadow:none;
  4092. -webkit-box-shadow:none;
  4093. box-shadow:none;
  4094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:16px;
  4098. color:#FFFFFF;
  4099. }
  4100. #u41848 {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:1697px;
  4104. top:71px;
  4105. width:33px;
  4106. height:22px;
  4107. display:flex;
  4108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. font-size:16px;
  4112. color:#FFFFFF;
  4113. }
  4114. #u41848 .text {
  4115. position:absolute;
  4116. align-self:flex-start;
  4117. padding:0px 0px 0px 0px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u41848_text {
  4122. border-width:0px;
  4123. white-space:nowrap;
  4124. text-transform:none;
  4125. }
  4126. #u41849_img {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:14px;
  4132. height:14px;
  4133. }
  4134. #u41849 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:1678px;
  4138. top:75px;
  4139. width:14px;
  4140. height:14px;
  4141. display:flex;
  4142. }
  4143. #u41849 .text {
  4144. position:absolute;
  4145. align-self:center;
  4146. padding:2px 2px 2px 2px;
  4147. box-sizing:border-box;
  4148. width:100%;
  4149. }
  4150. #u41849_text {
  4151. border-width:0px;
  4152. word-wrap:break-word;
  4153. text-transform:none;
  4154. visibility:hidden;
  4155. }
  4156. #u41850 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:0px;
  4160. top:0px;
  4161. width:0px;
  4162. height:0px;
  4163. }
  4164. #u41851_div {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:33px;
  4170. height:22px;
  4171. background:inherit;
  4172. background-color:rgba(255, 255, 255, 0);
  4173. border:none;
  4174. border-radius:0px;
  4175. -moz-box-shadow:none;
  4176. -webkit-box-shadow:none;
  4177. box-shadow:none;
  4178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:16px;
  4182. color:#FFFFFF;
  4183. }
  4184. #u41851 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:1697px;
  4188. top:147px;
  4189. width:33px;
  4190. height:22px;
  4191. display:flex;
  4192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:16px;
  4196. color:#FFFFFF;
  4197. }
  4198. #u41851 .text {
  4199. position:absolute;
  4200. align-self:flex-start;
  4201. padding:0px 0px 0px 0px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u41851_text {
  4206. border-width:0px;
  4207. white-space:nowrap;
  4208. text-transform:none;
  4209. }
  4210. #u41852_img {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:14px;
  4216. height:14px;
  4217. }
  4218. #u41852 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:1678px;
  4222. top:151px;
  4223. width:14px;
  4224. height:14px;
  4225. display:flex;
  4226. }
  4227. #u41852 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 2px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u41852_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. visibility:hidden;
  4239. }
  4240. #u41853 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:0px;
  4246. height:0px;
  4247. }
  4248. #u41854_div {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:33px;
  4254. height:22px;
  4255. background:inherit;
  4256. background-color:rgba(255, 255, 255, 0);
  4257. border:none;
  4258. border-radius:0px;
  4259. -moz-box-shadow:none;
  4260. -webkit-box-shadow:none;
  4261. box-shadow:none;
  4262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4263. font-weight:400;
  4264. font-style:normal;
  4265. font-size:16px;
  4266. color:#FFFFFF;
  4267. }
  4268. #u41854 {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:1697px;
  4272. top:399px;
  4273. width:33px;
  4274. height:22px;
  4275. display:flex;
  4276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4277. font-weight:400;
  4278. font-style:normal;
  4279. font-size:16px;
  4280. color:#FFFFFF;
  4281. }
  4282. #u41854 .text {
  4283. position:absolute;
  4284. align-self:flex-start;
  4285. padding:0px 0px 0px 0px;
  4286. box-sizing:border-box;
  4287. width:100%;
  4288. }
  4289. #u41854_text {
  4290. border-width:0px;
  4291. white-space:nowrap;
  4292. text-transform:none;
  4293. }
  4294. #u41855_img {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:14px;
  4300. height:14px;
  4301. }
  4302. #u41855 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:1678px;
  4306. top:403px;
  4307. width:14px;
  4308. height:14px;
  4309. display:flex;
  4310. }
  4311. #u41855 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 2px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u41855_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. visibility:hidden;
  4323. }
  4324. #u41856 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:0px;
  4330. height:0px;
  4331. }
  4332. #u41857_div {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:49px;
  4338. height:22px;
  4339. background:inherit;
  4340. background-color:rgba(255, 255, 255, 0);
  4341. border:none;
  4342. border-radius:0px;
  4343. -moz-box-shadow:none;
  4344. -webkit-box-shadow:none;
  4345. box-shadow:none;
  4346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4347. font-weight:400;
  4348. font-style:normal;
  4349. font-size:16px;
  4350. color:#FFFFFF;
  4351. }
  4352. #u41857 {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:1697px;
  4356. top:109px;
  4357. width:49px;
  4358. height:22px;
  4359. display:flex;
  4360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:16px;
  4364. color:#FFFFFF;
  4365. }
  4366. #u41857 .text {
  4367. position:absolute;
  4368. align-self:flex-start;
  4369. padding:0px 0px 0px 0px;
  4370. box-sizing:border-box;
  4371. width:100%;
  4372. }
  4373. #u41857_text {
  4374. border-width:0px;
  4375. white-space:nowrap;
  4376. text-transform:none;
  4377. }
  4378. #u41858_img {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:14px;
  4384. height:14px;
  4385. }
  4386. #u41858 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:1678px;
  4390. top:113px;
  4391. width:14px;
  4392. height:14px;
  4393. display:flex;
  4394. }
  4395. #u41858 .text {
  4396. position:absolute;
  4397. align-self:center;
  4398. padding:2px 2px 2px 2px;
  4399. box-sizing:border-box;
  4400. width:100%;
  4401. }
  4402. #u41858_text {
  4403. border-width:0px;
  4404. word-wrap:break-word;
  4405. text-transform:none;
  4406. visibility:hidden;
  4407. }
  4408. #u41859 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:0px;
  4414. height:0px;
  4415. }
  4416. #u41860_div {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:33px;
  4422. height:22px;
  4423. background:inherit;
  4424. background-color:rgba(255, 255, 255, 0);
  4425. border:none;
  4426. border-radius:0px;
  4427. -moz-box-shadow:none;
  4428. -webkit-box-shadow:none;
  4429. box-shadow:none;
  4430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:16px;
  4434. color:#FFFFFF;
  4435. }
  4436. #u41860 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:1697px;
  4440. top:441px;
  4441. width:33px;
  4442. height:22px;
  4443. display:flex;
  4444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:16px;
  4448. color:#FFFFFF;
  4449. }
  4450. #u41860 .text {
  4451. position:absolute;
  4452. align-self:flex-start;
  4453. padding:0px 0px 0px 0px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u41860_text {
  4458. border-width:0px;
  4459. white-space:nowrap;
  4460. text-transform:none;
  4461. }
  4462. #u41861_img {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:14px;
  4468. height:14px;
  4469. }
  4470. #u41861 {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:1678px;
  4474. top:445px;
  4475. width:14px;
  4476. height:14px;
  4477. display:flex;
  4478. }
  4479. #u41861 .text {
  4480. position:absolute;
  4481. align-self:center;
  4482. padding:2px 2px 2px 2px;
  4483. box-sizing:border-box;
  4484. width:100%;
  4485. }
  4486. #u41861_text {
  4487. border-width:0px;
  4488. word-wrap:break-word;
  4489. text-transform:none;
  4490. visibility:hidden;
  4491. }
  4492. #u41862 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:0px;
  4498. height:0px;
  4499. }
  4500. #u41863_div {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:33px;
  4506. height:22px;
  4507. background:inherit;
  4508. background-color:rgba(255, 255, 255, 0);
  4509. border:none;
  4510. border-radius:0px;
  4511. -moz-box-shadow:none;
  4512. -webkit-box-shadow:none;
  4513. box-shadow:none;
  4514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:16px;
  4518. color:#FFFFFF;
  4519. }
  4520. #u41863 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:1697px;
  4524. top:315px;
  4525. width:33px;
  4526. height:22px;
  4527. display:flex;
  4528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4529. font-weight:400;
  4530. font-style:normal;
  4531. font-size:16px;
  4532. color:#FFFFFF;
  4533. }
  4534. #u41863 .text {
  4535. position:absolute;
  4536. align-self:flex-start;
  4537. padding:0px 0px 0px 0px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u41863_text {
  4542. border-width:0px;
  4543. white-space:nowrap;
  4544. text-transform:none;
  4545. }
  4546. #u41864_img {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:14px;
  4552. height:14px;
  4553. }
  4554. #u41864 {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:1678px;
  4558. top:319px;
  4559. width:14px;
  4560. height:14px;
  4561. display:flex;
  4562. }
  4563. #u41864 .text {
  4564. position:absolute;
  4565. align-self:center;
  4566. padding:2px 2px 2px 2px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u41864_text {
  4571. border-width:0px;
  4572. word-wrap:break-word;
  4573. text-transform:none;
  4574. visibility:hidden;
  4575. }
  4576. #u41865 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:0px;
  4582. height:0px;
  4583. }
  4584. #u41866_div {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:33px;
  4590. height:22px;
  4591. background:inherit;
  4592. background-color:rgba(255, 255, 255, 0);
  4593. border:none;
  4594. border-radius:0px;
  4595. -moz-box-shadow:none;
  4596. -webkit-box-shadow:none;
  4597. box-shadow:none;
  4598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:16px;
  4602. color:#FFFFFF;
  4603. }
  4604. #u41866 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:1697px;
  4608. top:189px;
  4609. width:33px;
  4610. height:22px;
  4611. display:flex;
  4612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4613. font-weight:400;
  4614. font-style:normal;
  4615. font-size:16px;
  4616. color:#FFFFFF;
  4617. }
  4618. #u41866 .text {
  4619. position:absolute;
  4620. align-self:flex-start;
  4621. padding:0px 0px 0px 0px;
  4622. box-sizing:border-box;
  4623. width:100%;
  4624. }
  4625. #u41866_text {
  4626. border-width:0px;
  4627. white-space:nowrap;
  4628. text-transform:none;
  4629. }
  4630. #u41867_img {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:14px;
  4636. height:14px;
  4637. }
  4638. #u41867 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:1678px;
  4642. top:193px;
  4643. width:14px;
  4644. height:14px;
  4645. display:flex;
  4646. }
  4647. #u41867 .text {
  4648. position:absolute;
  4649. align-self:center;
  4650. padding:2px 2px 2px 2px;
  4651. box-sizing:border-box;
  4652. width:100%;
  4653. }
  4654. #u41867_text {
  4655. border-width:0px;
  4656. word-wrap:break-word;
  4657. text-transform:none;
  4658. visibility:hidden;
  4659. }
  4660. #u41868 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:0px;
  4666. height:0px;
  4667. }
  4668. #u41869_div {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:33px;
  4674. height:22px;
  4675. background:inherit;
  4676. background-color:rgba(255, 255, 255, 0);
  4677. border:none;
  4678. border-radius:0px;
  4679. -moz-box-shadow:none;
  4680. -webkit-box-shadow:none;
  4681. box-shadow:none;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. font-size:16px;
  4686. color:#FFFFFF;
  4687. }
  4688. #u41869 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:1697px;
  4692. top:357px;
  4693. width:33px;
  4694. height:22px;
  4695. display:flex;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:16px;
  4700. color:#FFFFFF;
  4701. }
  4702. #u41869 .text {
  4703. position:absolute;
  4704. align-self:flex-start;
  4705. padding:0px 0px 0px 0px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u41869_text {
  4710. border-width:0px;
  4711. white-space:nowrap;
  4712. text-transform:none;
  4713. }
  4714. #u41870_img {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:14px;
  4720. height:14px;
  4721. }
  4722. #u41870 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:1678px;
  4726. top:361px;
  4727. width:14px;
  4728. height:14px;
  4729. display:flex;
  4730. }
  4731. #u41870 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:2px 2px 2px 2px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u41870_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. visibility:hidden;
  4743. }
  4744. #u41871 {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:0px;
  4749. width:0px;
  4750. height:0px;
  4751. }
  4752. #u41872_div {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:33px;
  4758. height:22px;
  4759. background:inherit;
  4760. background-color:rgba(255, 255, 255, 0);
  4761. border:none;
  4762. border-radius:0px;
  4763. -moz-box-shadow:none;
  4764. -webkit-box-shadow:none;
  4765. box-shadow:none;
  4766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:16px;
  4770. color:#FFFFFF;
  4771. }
  4772. #u41872 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:1697px;
  4776. top:483px;
  4777. width:33px;
  4778. height:22px;
  4779. display:flex;
  4780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4781. font-weight:400;
  4782. font-style:normal;
  4783. font-size:16px;
  4784. color:#FFFFFF;
  4785. }
  4786. #u41872 .text {
  4787. position:absolute;
  4788. align-self:flex-start;
  4789. padding:0px 0px 0px 0px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u41872_text {
  4794. border-width:0px;
  4795. white-space:nowrap;
  4796. text-transform:none;
  4797. }
  4798. #u41873_img {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:14px;
  4804. height:14px;
  4805. }
  4806. #u41873 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:1678px;
  4810. top:487px;
  4811. width:14px;
  4812. height:14px;
  4813. display:flex;
  4814. }
  4815. #u41873 .text {
  4816. position:absolute;
  4817. align-self:center;
  4818. padding:2px 2px 2px 2px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u41873_text {
  4823. border-width:0px;
  4824. word-wrap:break-word;
  4825. text-transform:none;
  4826. visibility:hidden;
  4827. }
  4828. #u41874 {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:0px;
  4832. top:0px;
  4833. width:0px;
  4834. height:0px;
  4835. }
  4836. #u41875_div {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:33px;
  4842. height:22px;
  4843. background:inherit;
  4844. background-color:rgba(255, 255, 255, 0);
  4845. border:none;
  4846. border-radius:0px;
  4847. -moz-box-shadow:none;
  4848. -webkit-box-shadow:none;
  4849. box-shadow:none;
  4850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. font-size:16px;
  4854. color:#FFFFFF;
  4855. }
  4856. #u41875 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:1697px;
  4860. top:525px;
  4861. width:33px;
  4862. height:22px;
  4863. display:flex;
  4864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:16px;
  4868. color:#FFFFFF;
  4869. }
  4870. #u41875 .text {
  4871. position:absolute;
  4872. align-self:flex-start;
  4873. padding:0px 0px 0px 0px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u41875_text {
  4878. border-width:0px;
  4879. white-space:nowrap;
  4880. text-transform:none;
  4881. }
  4882. #u41876_img {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:14px;
  4888. height:14px;
  4889. }
  4890. #u41876 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:1678px;
  4894. top:529px;
  4895. width:14px;
  4896. height:14px;
  4897. display:flex;
  4898. }
  4899. #u41876 .text {
  4900. position:absolute;
  4901. align-self:center;
  4902. padding:2px 2px 2px 2px;
  4903. box-sizing:border-box;
  4904. width:100%;
  4905. }
  4906. #u41876_text {
  4907. border-width:0px;
  4908. word-wrap:break-word;
  4909. text-transform:none;
  4910. visibility:hidden;
  4911. }
  4912. #u41877_div {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:29px;
  4918. height:20px;
  4919. background:inherit;
  4920. background-color:rgba(255, 255, 255, 0);
  4921. border:none;
  4922. border-radius:25px;
  4923. -moz-box-shadow:none;
  4924. -webkit-box-shadow:none;
  4925. box-shadow:none;
  4926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. color:#FFFFFF;
  4930. }
  4931. #u41877 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:1710px;
  4935. top:1145px;
  4936. width:29px;
  4937. height:20px;
  4938. display:flex;
  4939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4940. font-weight:400;
  4941. font-style:normal;
  4942. color:#FFFFFF;
  4943. }
  4944. #u41877 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:0px 0px 0px 0px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u41877_text {
  4952. border-width:0px;
  4953. white-space:nowrap;
  4954. text-transform:none;
  4955. }
  4956. #u41878_img {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:22px;
  4962. height:22px;
  4963. }
  4964. #u41878 {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:1678px;
  4968. top:1144px;
  4969. width:22px;
  4970. height:22px;
  4971. display:flex;
  4972. }
  4973. #u41878 .text {
  4974. position:absolute;
  4975. align-self:center;
  4976. padding:2px 2px 2px 2px;
  4977. box-sizing:border-box;
  4978. width:100%;
  4979. }
  4980. #u41878_text {
  4981. border-width:0px;
  4982. word-wrap:break-word;
  4983. text-transform:none;
  4984. visibility:hidden;
  4985. }
  4986. #u41879_div {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:29px;
  4992. height:20px;
  4993. background:inherit;
  4994. background-color:rgba(255, 255, 255, 0);
  4995. border:none;
  4996. border-radius:25px;
  4997. -moz-box-shadow:none;
  4998. -webkit-box-shadow:none;
  4999. box-shadow:none;
  5000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5001. font-weight:400;
  5002. font-style:normal;
  5003. color:#FFFFFF;
  5004. }
  5005. #u41879 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:1710px;
  5009. top:1187px;
  5010. width:29px;
  5011. height:20px;
  5012. display:flex;
  5013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. color:#FFFFFF;
  5017. }
  5018. #u41879 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:0px 0px 0px 0px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u41879_text {
  5026. border-width:0px;
  5027. white-space:nowrap;
  5028. text-transform:none;
  5029. }
  5030. #u41880_img {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:22px;
  5036. height:22px;
  5037. }
  5038. #u41880 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:1678px;
  5042. top:1186px;
  5043. width:22px;
  5044. height:22px;
  5045. display:flex;
  5046. }
  5047. #u41880 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 2px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u41880_text {
  5055. border-width:0px;
  5056. word-wrap:break-word;
  5057. text-transform:none;
  5058. visibility:hidden;
  5059. }
  5060. #u41881 {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:0px;
  5066. height:0px;
  5067. }
  5068. #u41882_div {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:33px;
  5074. height:22px;
  5075. background:inherit;
  5076. background-color:rgba(255, 255, 255, 0);
  5077. border:none;
  5078. border-radius:0px;
  5079. -moz-box-shadow:none;
  5080. -webkit-box-shadow:none;
  5081. box-shadow:none;
  5082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:16px;
  5086. color:#FFFFFF;
  5087. }
  5088. #u41882 {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:1697px;
  5092. top:231px;
  5093. width:33px;
  5094. height:22px;
  5095. display:flex;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:16px;
  5100. color:#FFFFFF;
  5101. }
  5102. #u41882 .text {
  5103. position:absolute;
  5104. align-self:flex-start;
  5105. padding:0px 0px 0px 0px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u41882_text {
  5110. border-width:0px;
  5111. white-space:nowrap;
  5112. text-transform:none;
  5113. }
  5114. #u41883_img {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:14px;
  5120. height:14px;
  5121. }
  5122. #u41883 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:1678px;
  5126. top:235px;
  5127. width:14px;
  5128. height:14px;
  5129. display:flex;
  5130. }
  5131. #u41883 .text {
  5132. position:absolute;
  5133. align-self:center;
  5134. padding:2px 2px 2px 2px;
  5135. box-sizing:border-box;
  5136. width:100%;
  5137. }
  5138. #u41883_text {
  5139. border-width:0px;
  5140. word-wrap:break-word;
  5141. text-transform:none;
  5142. visibility:hidden;
  5143. }
  5144. #u41884 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:0px;
  5150. height:0px;
  5151. }
  5152. #u41885_div {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:33px;
  5158. height:22px;
  5159. background:inherit;
  5160. background-color:rgba(255, 255, 255, 0);
  5161. border:none;
  5162. border-radius:0px;
  5163. -moz-box-shadow:none;
  5164. -webkit-box-shadow:none;
  5165. box-shadow:none;
  5166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. font-size:16px;
  5170. color:#FFFFFF;
  5171. }
  5172. #u41885 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:1697px;
  5176. top:273px;
  5177. width:33px;
  5178. height:22px;
  5179. display:flex;
  5180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:16px;
  5184. color:#FFFFFF;
  5185. }
  5186. #u41885 .text {
  5187. position:absolute;
  5188. align-self:flex-start;
  5189. padding:0px 0px 0px 0px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u41885_text {
  5194. border-width:0px;
  5195. white-space:nowrap;
  5196. text-transform:none;
  5197. }
  5198. #u41886_img {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:14px;
  5204. height:14px;
  5205. }
  5206. #u41886 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:1678px;
  5210. top:277px;
  5211. width:14px;
  5212. height:14px;
  5213. display:flex;
  5214. }
  5215. #u41886 .text {
  5216. position:absolute;
  5217. align-self:center;
  5218. padding:2px 2px 2px 2px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u41886_text {
  5223. border-width:0px;
  5224. word-wrap:break-word;
  5225. text-transform:none;
  5226. visibility:hidden;
  5227. }
  5228. #u41887_div {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:200px;
  5234. height:1187px;
  5235. background:inherit;
  5236. background-color:rgba(255, 255, 255, 1);
  5237. border:none;
  5238. border-radius:0px;
  5239. -moz-box-shadow:none;
  5240. -webkit-box-shadow:none;
  5241. box-shadow:none;
  5242. }
  5243. #u41887 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:1781px;
  5247. top:53px;
  5248. width:200px;
  5249. height:1187px;
  5250. display:flex;
  5251. }
  5252. #u41887 .text {
  5253. position:absolute;
  5254. align-self:center;
  5255. padding:2px 2px 2px 2px;
  5256. box-sizing:border-box;
  5257. width:100%;
  5258. }
  5259. #u41887_text {
  5260. border-width:0px;
  5261. word-wrap:break-word;
  5262. text-transform:none;
  5263. visibility:hidden;
  5264. }
  5265. #u41888_div {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:0px;
  5269. top:0px;
  5270. width:200px;
  5271. height:60px;
  5272. background:inherit;
  5273. background-color:rgba(224, 231, 247, 1);
  5274. border:none;
  5275. border-radius:0px;
  5276. -moz-box-shadow:none;
  5277. -webkit-box-shadow:none;
  5278. box-shadow:none;
  5279. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5280. font-weight:500;
  5281. font-style:normal;
  5282. font-size:18px;
  5283. }
  5284. #u41888 {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:1781px;
  5288. top:53px;
  5289. width:200px;
  5290. height:60px;
  5291. display:flex;
  5292. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5293. font-weight:500;
  5294. font-style:normal;
  5295. font-size:18px;
  5296. }
  5297. #u41888 .text {
  5298. position:absolute;
  5299. align-self:center;
  5300. padding:0px 0px 0px 20px;
  5301. box-sizing:border-box;
  5302. width:100%;
  5303. }
  5304. #u41888_text {
  5305. border-width:0px;
  5306. word-wrap:break-word;
  5307. text-transform:none;
  5308. }
  5309. #u41889_div {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:65px;
  5315. height:22px;
  5316. background:inherit;
  5317. background-color:rgba(255, 255, 255, 0);
  5318. border:none;
  5319. border-radius:0px;
  5320. -moz-box-shadow:none;
  5321. -webkit-box-shadow:none;
  5322. box-shadow:none;
  5323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5324. font-weight:400;
  5325. font-style:normal;
  5326. font-size:16px;
  5327. color:#1890FF;
  5328. }
  5329. #u41889 {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:1808px;
  5333. top:164px;
  5334. width:65px;
  5335. height:22px;
  5336. display:flex;
  5337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:16px;
  5341. color:#1890FF;
  5342. }
  5343. #u41889 .text {
  5344. position:absolute;
  5345. align-self:flex-start;
  5346. padding:0px 0px 0px 0px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u41889_text {
  5351. border-width:0px;
  5352. white-space:nowrap;
  5353. text-transform:none;
  5354. }
  5355. #u41890_div {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:65px;
  5361. height:22px;
  5362. background:inherit;
  5363. background-color:rgba(255, 255, 255, 0);
  5364. border:none;
  5365. border-radius:0px;
  5366. -moz-box-shadow:none;
  5367. -webkit-box-shadow:none;
  5368. box-shadow:none;
  5369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:16px;
  5373. }
  5374. #u41890 {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:1808px;
  5378. top:208px;
  5379. width:65px;
  5380. height:22px;
  5381. display:flex;
  5382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:16px;
  5386. }
  5387. #u41890 .text {
  5388. position:absolute;
  5389. align-self:flex-start;
  5390. padding:0px 0px 0px 0px;
  5391. box-sizing:border-box;
  5392. width:100%;
  5393. }
  5394. #u41890_text {
  5395. border-width:0px;
  5396. white-space:nowrap;
  5397. text-transform:none;
  5398. }
  5399. #u41891_div {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:0px;
  5403. top:0px;
  5404. width:65px;
  5405. height:22px;
  5406. background:inherit;
  5407. background-color:rgba(255, 255, 255, 0);
  5408. border:none;
  5409. border-radius:0px;
  5410. -moz-box-shadow:none;
  5411. -webkit-box-shadow:none;
  5412. box-shadow:none;
  5413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:16px;
  5417. }
  5418. #u41891 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:1808px;
  5422. top:250px;
  5423. width:65px;
  5424. height:22px;
  5425. display:flex;
  5426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:16px;
  5430. }
  5431. #u41891 .text {
  5432. position:absolute;
  5433. align-self:flex-start;
  5434. padding:0px 0px 0px 0px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u41891_text {
  5439. border-width:0px;
  5440. white-space:nowrap;
  5441. text-transform:none;
  5442. }
  5443. #u41892_div {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:49px;
  5449. height:17px;
  5450. background:inherit;
  5451. background-color:rgba(255, 255, 255, 0);
  5452. border:none;
  5453. border-radius:0px;
  5454. -moz-box-shadow:none;
  5455. -webkit-box-shadow:none;
  5456. box-shadow:none;
  5457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5458. font-weight:400;
  5459. font-style:normal;
  5460. font-size:12px;
  5461. color:#AAAAAA;
  5462. }
  5463. #u41892 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:1808px;
  5467. top:128px;
  5468. width:49px;
  5469. height:17px;
  5470. display:flex;
  5471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5472. font-weight:400;
  5473. font-style:normal;
  5474. font-size:12px;
  5475. color:#AAAAAA;
  5476. }
  5477. #u41892 .text {
  5478. position:absolute;
  5479. align-self:flex-start;
  5480. padding:0px 0px 0px 0px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u41892_text {
  5485. border-width:0px;
  5486. white-space:nowrap;
  5487. text-transform:none;
  5488. }
  5489. #u41893_div {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:65px;
  5495. height:22px;
  5496. background:inherit;
  5497. background-color:rgba(255, 255, 255, 0);
  5498. border:none;
  5499. border-radius:0px;
  5500. -moz-box-shadow:none;
  5501. -webkit-box-shadow:none;
  5502. box-shadow:none;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:16px;
  5507. }
  5508. #u41893 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:1808px;
  5512. top:490px;
  5513. width:65px;
  5514. height:22px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:16px;
  5520. }
  5521. #u41893 .text {
  5522. position:absolute;
  5523. align-self:flex-start;
  5524. padding:0px 0px 0px 0px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u41893_text {
  5529. border-width:0px;
  5530. white-space:nowrap;
  5531. text-transform:none;
  5532. }
  5533. #u41894_div {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:49px;
  5539. height:17px;
  5540. background:inherit;
  5541. background-color:rgba(255, 255, 255, 0);
  5542. border:none;
  5543. border-radius:0px;
  5544. -moz-box-shadow:none;
  5545. -webkit-box-shadow:none;
  5546. box-shadow:none;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:12px;
  5551. color:#AAAAAA;
  5552. }
  5553. #u41894 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:1808px;
  5557. top:454px;
  5558. width:49px;
  5559. height:17px;
  5560. display:flex;
  5561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:12px;
  5565. color:#AAAAAA;
  5566. }
  5567. #u41894 .text {
  5568. position:absolute;
  5569. align-self:flex-start;
  5570. padding:0px 0px 0px 0px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u41894_text {
  5575. border-width:0px;
  5576. white-space:nowrap;
  5577. text-transform:none;
  5578. }
  5579. #u41895_img {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:201px;
  5585. height:2px;
  5586. }
  5587. #u41895 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:1778px;
  5591. top:432px;
  5592. width:200px;
  5593. height:1px;
  5594. display:flex;
  5595. }
  5596. #u41895 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:2px 2px 2px 2px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u41895_text {
  5604. border-width:0px;
  5605. word-wrap:break-word;
  5606. text-transform:none;
  5607. visibility:hidden;
  5608. }
  5609. #u41896_div {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:65px;
  5615. height:22px;
  5616. background:inherit;
  5617. background-color:rgba(255, 255, 255, 0);
  5618. border:none;
  5619. border-radius:0px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:16px;
  5627. }
  5628. #u41896 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:1808px;
  5632. top:392px;
  5633. width:65px;
  5634. height:22px;
  5635. display:flex;
  5636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:16px;
  5640. }
  5641. #u41896 .text {
  5642. position:absolute;
  5643. align-self:flex-start;
  5644. padding:0px 0px 0px 0px;
  5645. box-sizing:border-box;
  5646. width:100%;
  5647. }
  5648. #u41896_text {
  5649. border-width:0px;
  5650. white-space:nowrap;
  5651. text-transform:none;
  5652. }
  5653. #u41897_div {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:49px;
  5659. height:17px;
  5660. background:inherit;
  5661. background-color:rgba(255, 255, 255, 0);
  5662. border:none;
  5663. border-radius:0px;
  5664. -moz-box-shadow:none;
  5665. -webkit-box-shadow:none;
  5666. box-shadow:none;
  5667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:12px;
  5671. color:#AAAAAA;
  5672. }
  5673. #u41897 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:1808px;
  5677. top:356px;
  5678. width:49px;
  5679. height:17px;
  5680. display:flex;
  5681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5682. font-weight:400;
  5683. font-style:normal;
  5684. font-size:12px;
  5685. color:#AAAAAA;
  5686. }
  5687. #u41897 .text {
  5688. position:absolute;
  5689. align-self:flex-start;
  5690. padding:0px 0px 0px 0px;
  5691. box-sizing:border-box;
  5692. width:100%;
  5693. }
  5694. #u41897_text {
  5695. border-width:0px;
  5696. white-space:nowrap;
  5697. text-transform:none;
  5698. }
  5699. #u41898_img {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:201px;
  5705. height:2px;
  5706. }
  5707. #u41898 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:1778px;
  5711. top:334px;
  5712. width:200px;
  5713. height:1px;
  5714. display:flex;
  5715. }
  5716. #u41898 .text {
  5717. position:absolute;
  5718. align-self:center;
  5719. padding:2px 2px 2px 2px;
  5720. box-sizing:border-box;
  5721. width:100%;
  5722. }
  5723. #u41898_text {
  5724. border-width:0px;
  5725. word-wrap:break-word;
  5726. text-transform:none;
  5727. visibility:hidden;
  5728. }
  5729. #u41899_div {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:65px;
  5735. height:22px;
  5736. background:inherit;
  5737. background-color:rgba(255, 255, 255, 0);
  5738. border:none;
  5739. border-radius:0px;
  5740. -moz-box-shadow:none;
  5741. -webkit-box-shadow:none;
  5742. box-shadow:none;
  5743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5744. font-weight:400;
  5745. font-style:normal;
  5746. font-size:16px;
  5747. }
  5748. #u41899 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:1808px;
  5752. top:292px;
  5753. width:65px;
  5754. height:22px;
  5755. display:flex;
  5756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:16px;
  5760. }
  5761. #u41899 .text {
  5762. position:absolute;
  5763. align-self:flex-start;
  5764. padding:0px 0px 0px 0px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u41899_text {
  5769. border-width:0px;
  5770. white-space:nowrap;
  5771. text-transform:none;
  5772. }
  5773. #u41900_div {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:1255px;
  5779. height:1189px;
  5780. background:inherit;
  5781. background-color:rgba(255, 255, 255, 1);
  5782. border:none;
  5783. border-radius:0px;
  5784. -moz-box-shadow:none;
  5785. -webkit-box-shadow:none;
  5786. box-shadow:none;
  5787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:12px;
  5791. color:#FFFFFF;
  5792. text-align:left;
  5793. }
  5794. #u41900 {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:1991px;
  5798. top:51px;
  5799. width:1255px;
  5800. height:1189px;
  5801. display:flex;
  5802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:12px;
  5806. color:#FFFFFF;
  5807. text-align:left;
  5808. }
  5809. #u41900 .text {
  5810. position:absolute;
  5811. align-self:center;
  5812. padding:2px 2px 2px 50px;
  5813. box-sizing:border-box;
  5814. width:100%;
  5815. }
  5816. #u41900_text {
  5817. border-width:0px;
  5818. word-wrap:break-word;
  5819. text-transform:none;
  5820. visibility:hidden;
  5821. }
  5822. #u41901_div {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:300px;
  5828. height:1189px;
  5829. background:inherit;
  5830. background-color:rgba(255, 255, 255, 1);
  5831. box-sizing:border-box;
  5832. border-width:1px;
  5833. border-style:solid;
  5834. border-color:rgba(121, 121, 121, 1);
  5835. border-radius:0px;
  5836. -moz-box-shadow:none;
  5837. -webkit-box-shadow:none;
  5838. box-shadow:none;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:12px;
  5843. color:#FFFFFF;
  5844. text-align:left;
  5845. }
  5846. #u41901 {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:2948px;
  5850. top:51px;
  5851. width:300px;
  5852. height:1189px;
  5853. display:flex;
  5854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5855. font-weight:400;
  5856. font-style:normal;
  5857. font-size:12px;
  5858. color:#FFFFFF;
  5859. text-align:left;
  5860. }
  5861. #u41901 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:2px 2px 2px 50px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u41901_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. visibility:hidden;
  5873. }
  5874. #u41902_div {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:73px;
  5880. height:50px;
  5881. background:inherit;
  5882. background-color:rgba(255, 255, 255, 0);
  5883. border:none;
  5884. border-left:0px;
  5885. border-top:0px;
  5886. border-right:0px;
  5887. border-radius:0px;
  5888. border-bottom-right-radius:0px;
  5889. border-bottom-left-radius:0px;
  5890. -moz-box-shadow:none;
  5891. -webkit-box-shadow:none;
  5892. box-shadow:none;
  5893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5894. font-weight:400;
  5895. font-style:normal;
  5896. font-size:18px;
  5897. }
  5898. #u41902 {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:2010px;
  5902. top:52px;
  5903. width:73px;
  5904. height:50px;
  5905. display:flex;
  5906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5907. font-weight:400;
  5908. font-style:normal;
  5909. font-size:18px;
  5910. }
  5911. #u41902 .text {
  5912. position:absolute;
  5913. align-self:center;
  5914. padding:0px 0px 0px 0px;
  5915. box-sizing:border-box;
  5916. width:100%;
  5917. }
  5918. #u41902_text {
  5919. border-width:0px;
  5920. white-space:nowrap;
  5921. text-transform:none;
  5922. }
  5923. #u41903_div {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:0px;
  5927. top:0px;
  5928. width:73px;
  5929. height:50px;
  5930. background:inherit;
  5931. background-color:rgba(255, 255, 255, 0);
  5932. border:none;
  5933. border-left:0px;
  5934. border-top:0px;
  5935. border-right:0px;
  5936. border-radius:0px;
  5937. border-bottom-right-radius:0px;
  5938. border-bottom-left-radius:0px;
  5939. -moz-box-shadow:none;
  5940. -webkit-box-shadow:none;
  5941. box-shadow:none;
  5942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:18px;
  5946. }
  5947. #u41903 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:2968px;
  5951. top:61px;
  5952. width:73px;
  5953. height:50px;
  5954. display:flex;
  5955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5956. font-weight:400;
  5957. font-style:normal;
  5958. font-size:18px;
  5959. }
  5960. #u41903 .text {
  5961. position:absolute;
  5962. align-self:center;
  5963. padding:0px 0px 0px 0px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u41903_text {
  5968. border-width:0px;
  5969. white-space:nowrap;
  5970. text-transform:none;
  5971. }
  5972. #u41904 {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:0px;
  5978. height:0px;
  5979. }
  5980. #u41905_div {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:140px;
  5986. height:30px;
  5987. background:inherit;
  5988. background-color:rgba(255, 255, 255, 1);
  5989. box-sizing:border-box;
  5990. border-width:1px;
  5991. border-style:solid;
  5992. border-color:rgba(201, 201, 201, 1);
  5993. border-radius:4px;
  5994. -moz-box-shadow:none;
  5995. -webkit-box-shadow:none;
  5996. box-shadow:none;
  5997. font-family:'Microsoft YaHei', sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. font-size:14px;
  6001. color:#CCCCCC;
  6002. text-align:left;
  6003. }
  6004. #u41905 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:2460px;
  6008. top:103px;
  6009. width:140px;
  6010. height:30px;
  6011. display:flex;
  6012. font-family:'Microsoft YaHei', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:14px;
  6016. color:#CCCCCC;
  6017. text-align:left;
  6018. }
  6019. #u41905 .text {
  6020. position:absolute;
  6021. align-self:center;
  6022. padding:2px 8px 2px 8px;
  6023. box-sizing:border-box;
  6024. width:100%;
  6025. }
  6026. #u41905_text {
  6027. border-width:0px;
  6028. word-wrap:break-word;
  6029. text-transform:none;
  6030. visibility:hidden;
  6031. }
  6032. #u41906_input {
  6033. position:absolute;
  6034. left:0px;
  6035. top:0px;
  6036. width:127px;
  6037. height:25px;
  6038. padding:2px 2px 2px 2px;
  6039. font-family:'Microsoft YaHei', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:10px;
  6043. letter-spacing:normal;
  6044. color:#000000;
  6045. vertical-align:none;
  6046. text-align:left;
  6047. text-transform:none;
  6048. background-color:transparent;
  6049. border-color:transparent;
  6050. }
  6051. #u41906_input.disabled {
  6052. position:absolute;
  6053. left:0px;
  6054. top:0px;
  6055. width:127px;
  6056. height:25px;
  6057. padding:2px 2px 2px 2px;
  6058. font-family:'Microsoft YaHei', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:10px;
  6062. letter-spacing:normal;
  6063. color:#000000;
  6064. vertical-align:none;
  6065. text-align:left;
  6066. text-transform:none;
  6067. background-color:transparent;
  6068. border-color:transparent;
  6069. }
  6070. #u41906_div {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:0px;
  6074. top:0px;
  6075. width:127px;
  6076. height:25px;
  6077. background:inherit;
  6078. background-color:rgba(255, 255, 255, 1);
  6079. border:none;
  6080. border-radius:0px;
  6081. -moz-box-shadow:none;
  6082. -webkit-box-shadow:none;
  6083. box-shadow:none;
  6084. font-family:'Microsoft YaHei', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:10px;
  6088. }
  6089. #u41906 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:2468px;
  6093. top:104px;
  6094. width:127px;
  6095. height:25px;
  6096. display:flex;
  6097. font-family:'Microsoft YaHei', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:10px;
  6101. }
  6102. #u41906 .text {
  6103. position:absolute;
  6104. align-self:center;
  6105. padding:2px 2px 2px 2px;
  6106. box-sizing:border-box;
  6107. width:100%;
  6108. }
  6109. #u41906_div.disabled {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:0px;
  6113. top:0px;
  6114. width:127px;
  6115. height:25px;
  6116. background:inherit;
  6117. background-color:rgba(240, 240, 240, 1);
  6118. border:none;
  6119. border-radius:0px;
  6120. -moz-box-shadow:none;
  6121. -webkit-box-shadow:none;
  6122. box-shadow:none;
  6123. font-family:'Microsoft YaHei', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:10px;
  6127. }
  6128. #u41906.disabled {
  6129. }
  6130. #u41907 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:0px;
  6136. height:0px;
  6137. }
  6138. #u41908_div {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:0px;
  6142. top:0px;
  6143. width:140px;
  6144. height:30px;
  6145. background:inherit;
  6146. background-color:rgba(255, 255, 255, 1);
  6147. box-sizing:border-box;
  6148. border-width:1px;
  6149. border-style:solid;
  6150. border-color:rgba(215, 215, 215, 1);
  6151. border-radius:4px;
  6152. -moz-box-shadow:none;
  6153. -webkit-box-shadow:none;
  6154. box-shadow:none;
  6155. font-size:11px;
  6156. }
  6157. #u41908 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:2160px;
  6161. top:102px;
  6162. width:140px;
  6163. height:30px;
  6164. display:flex;
  6165. font-size:11px;
  6166. }
  6167. #u41908 .text {
  6168. position:absolute;
  6169. align-self:center;
  6170. padding:2px 2px 2px 2px;
  6171. box-sizing:border-box;
  6172. width:100%;
  6173. }
  6174. #u41908_text {
  6175. border-width:0px;
  6176. word-wrap:break-word;
  6177. text-transform:none;
  6178. visibility:hidden;
  6179. }
  6180. #u41909_input {
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:126px;
  6185. height:23px;
  6186. padding:2px 2px 2px 2px;
  6187. font-family:'ArialMT', 'Arial', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. font-size:11px;
  6191. letter-spacing:normal;
  6192. color:#AAAAAA;
  6193. vertical-align:none;
  6194. text-align:left;
  6195. text-transform:none;
  6196. background-color:transparent;
  6197. border-color:transparent;
  6198. }
  6199. #u41909_input.disabled {
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:126px;
  6204. height:23px;
  6205. padding:2px 2px 2px 2px;
  6206. font-family:'ArialMT', 'Arial', sans-serif;
  6207. font-weight:400;
  6208. font-style:normal;
  6209. font-size:11px;
  6210. letter-spacing:normal;
  6211. color:#AAAAAA;
  6212. vertical-align:none;
  6213. text-align:left;
  6214. text-transform:none;
  6215. background-color:transparent;
  6216. border-color:transparent;
  6217. }
  6218. #u41909_div {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:126px;
  6224. height:23px;
  6225. background:inherit;
  6226. background-color:rgba(255, 255, 255, 1);
  6227. border:none;
  6228. border-radius:0px;
  6229. -moz-box-shadow:none;
  6230. -webkit-box-shadow:none;
  6231. box-shadow:none;
  6232. font-size:11px;
  6233. color:#AAAAAA;
  6234. }
  6235. #u41909 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:2167px;
  6239. top:104px;
  6240. width:126px;
  6241. height:23px;
  6242. display:flex;
  6243. font-size:11px;
  6244. color:#AAAAAA;
  6245. }
  6246. #u41909 .text {
  6247. position:absolute;
  6248. align-self:flex-start;
  6249. padding:2px 2px 2px 2px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u41909_div.disabled {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:0px;
  6257. top:0px;
  6258. width:126px;
  6259. height:23px;
  6260. background:inherit;
  6261. background-color:rgba(240, 240, 240, 1);
  6262. border:none;
  6263. border-radius:0px;
  6264. -moz-box-shadow:none;
  6265. -webkit-box-shadow:none;
  6266. box-shadow:none;
  6267. font-size:11px;
  6268. color:#AAAAAA;
  6269. }
  6270. #u41909.disabled {
  6271. }
  6272. .u41909_input_option {
  6273. font-size:11px;
  6274. }
  6275. #u41910 {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:0px;
  6281. height:0px;
  6282. }
  6283. #u41911_div {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:140px;
  6289. height:30px;
  6290. background:inherit;
  6291. background-color:rgba(255, 255, 255, 1);
  6292. box-sizing:border-box;
  6293. border-width:1px;
  6294. border-style:solid;
  6295. border-color:rgba(215, 215, 215, 1);
  6296. border-radius:4px;
  6297. -moz-box-shadow:none;
  6298. -webkit-box-shadow:none;
  6299. box-shadow:none;
  6300. font-size:11px;
  6301. }
  6302. #u41911 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:2010px;
  6306. top:102px;
  6307. width:140px;
  6308. height:30px;
  6309. display:flex;
  6310. font-size:11px;
  6311. }
  6312. #u41911 .text {
  6313. position:absolute;
  6314. align-self:center;
  6315. padding:2px 2px 2px 2px;
  6316. box-sizing:border-box;
  6317. width:100%;
  6318. }
  6319. #u41911_text {
  6320. border-width:0px;
  6321. word-wrap:break-word;
  6322. text-transform:none;
  6323. visibility:hidden;
  6324. }
  6325. #u41912_input {
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:126px;
  6330. height:23px;
  6331. padding:2px 2px 2px 2px;
  6332. font-family:'ArialMT', 'Arial', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:11px;
  6336. letter-spacing:normal;
  6337. color:#AAAAAA;
  6338. vertical-align:none;
  6339. text-align:left;
  6340. text-transform:none;
  6341. background-color:transparent;
  6342. border-color:transparent;
  6343. }
  6344. #u41912_input.disabled {
  6345. position:absolute;
  6346. left:0px;
  6347. top:0px;
  6348. width:126px;
  6349. height:23px;
  6350. padding:2px 2px 2px 2px;
  6351. font-family:'ArialMT', 'Arial', sans-serif;
  6352. font-weight:400;
  6353. font-style:normal;
  6354. font-size:11px;
  6355. letter-spacing:normal;
  6356. color:#AAAAAA;
  6357. vertical-align:none;
  6358. text-align:left;
  6359. text-transform:none;
  6360. background-color:transparent;
  6361. border-color:transparent;
  6362. }
  6363. #u41912_div {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:126px;
  6369. height:23px;
  6370. background:inherit;
  6371. background-color:rgba(255, 255, 255, 1);
  6372. border:none;
  6373. border-radius:0px;
  6374. -moz-box-shadow:none;
  6375. -webkit-box-shadow:none;
  6376. box-shadow:none;
  6377. font-size:11px;
  6378. color:#AAAAAA;
  6379. }
  6380. #u41912 {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:2017px;
  6384. top:104px;
  6385. width:126px;
  6386. height:23px;
  6387. display:flex;
  6388. font-size:11px;
  6389. color:#AAAAAA;
  6390. }
  6391. #u41912 .text {
  6392. position:absolute;
  6393. align-self:flex-start;
  6394. padding:2px 2px 2px 2px;
  6395. box-sizing:border-box;
  6396. width:100%;
  6397. }
  6398. #u41912_div.disabled {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:0px;
  6402. top:0px;
  6403. width:126px;
  6404. height:23px;
  6405. background:inherit;
  6406. background-color:rgba(240, 240, 240, 1);
  6407. border:none;
  6408. border-radius:0px;
  6409. -moz-box-shadow:none;
  6410. -webkit-box-shadow:none;
  6411. box-shadow:none;
  6412. font-size:11px;
  6413. color:#AAAAAA;
  6414. }
  6415. #u41912.disabled {
  6416. }
  6417. .u41912_input_option {
  6418. font-size:11px;
  6419. }
  6420. #u41913 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:0px;
  6426. height:0px;
  6427. }
  6428. #u41914_div {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:0px;
  6432. top:0px;
  6433. width:59px;
  6434. height:30px;
  6435. background:inherit;
  6436. background-color:rgba(24, 144, 255, 1);
  6437. box-sizing:border-box;
  6438. border-width:1px;
  6439. border-style:solid;
  6440. border-color:rgba(0, 153, 255, 1);
  6441. border-radius:4px;
  6442. -moz-box-shadow:none;
  6443. -webkit-box-shadow:none;
  6444. box-shadow:none;
  6445. font-family:'Microsoft YaHei', sans-serif;
  6446. font-weight:400;
  6447. font-style:normal;
  6448. font-size:14px;
  6449. color:#FFFFFF;
  6450. }
  6451. #u41914 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:2760px;
  6455. top:105px;
  6456. width:59px;
  6457. height:30px;
  6458. display:flex;
  6459. font-family:'Microsoft YaHei', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:14px;
  6463. color:#FFFFFF;
  6464. }
  6465. #u41914 .text {
  6466. position:absolute;
  6467. align-self:center;
  6468. padding:5px 15px 5px 15px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u41914_text {
  6473. border-width:0px;
  6474. white-space:nowrap;
  6475. text-transform:none;
  6476. }
  6477. #u41915_div {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:55px;
  6483. height:30px;
  6484. background:inherit;
  6485. background-color:rgba(255, 255, 255, 1);
  6486. box-sizing:border-box;
  6487. border-width:1px;
  6488. border-style:solid;
  6489. border-color:rgba(170, 170, 170, 1);
  6490. border-radius:4px;
  6491. -moz-box-shadow:none;
  6492. -webkit-box-shadow:none;
  6493. box-shadow:none;
  6494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:12px;
  6498. color:#555555;
  6499. }
  6500. #u41915 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:2829px;
  6504. top:105px;
  6505. width:55px;
  6506. height:30px;
  6507. display:flex;
  6508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:12px;
  6512. color:#555555;
  6513. }
  6514. #u41915 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:5px 15px 5px 15px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u41915_text {
  6522. border-width:0px;
  6523. white-space:nowrap;
  6524. text-transform:none;
  6525. }
  6526. #u41916_div {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:73px;
  6532. height:50px;
  6533. background:inherit;
  6534. background-color:rgba(255, 255, 255, 0);
  6535. border:none;
  6536. border-left:0px;
  6537. border-top:0px;
  6538. border-right:0px;
  6539. border-radius:0px;
  6540. border-bottom-right-radius:0px;
  6541. border-bottom-left-radius:0px;
  6542. -moz-box-shadow:none;
  6543. -webkit-box-shadow:none;
  6544. box-shadow:none;
  6545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. font-size:18px;
  6549. }
  6550. #u41916 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:2968px;
  6554. top:313px;
  6555. width:73px;
  6556. height:50px;
  6557. display:flex;
  6558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6559. font-weight:400;
  6560. font-style:normal;
  6561. font-size:18px;
  6562. }
  6563. #u41916 .text {
  6564. position:absolute;
  6565. align-self:center;
  6566. padding:0px 0px 0px 0px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u41916_text {
  6571. border-width:0px;
  6572. white-space:nowrap;
  6573. text-transform:none;
  6574. }
  6575. #u41917_div {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:73px;
  6581. height:50px;
  6582. background:inherit;
  6583. background-color:rgba(255, 255, 255, 0);
  6584. border:none;
  6585. border-left:0px;
  6586. border-top:0px;
  6587. border-right:0px;
  6588. border-radius:0px;
  6589. border-bottom-right-radius:0px;
  6590. border-bottom-left-radius:0px;
  6591. -moz-box-shadow:none;
  6592. -webkit-box-shadow:none;
  6593. box-shadow:none;
  6594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6595. font-weight:400;
  6596. font-style:normal;
  6597. font-size:18px;
  6598. }
  6599. #u41917 {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:2968px;
  6603. top:612px;
  6604. width:73px;
  6605. height:50px;
  6606. display:flex;
  6607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6608. font-weight:400;
  6609. font-style:normal;
  6610. font-size:18px;
  6611. }
  6612. #u41917 .text {
  6613. position:absolute;
  6614. align-self:center;
  6615. padding:0px 0px 0px 0px;
  6616. box-sizing:border-box;
  6617. width:100%;
  6618. }
  6619. #u41917_text {
  6620. border-width:0px;
  6621. white-space:nowrap;
  6622. text-transform:none;
  6623. }
  6624. #u41918_img {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:0px;
  6628. top:0px;
  6629. width:260px;
  6630. height:118px;
  6631. }
  6632. #u41918 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:2968px;
  6636. top:363px;
  6637. width:260px;
  6638. height:118px;
  6639. display:flex;
  6640. }
  6641. #u41918 .text {
  6642. position:absolute;
  6643. align-self:center;
  6644. padding:2px 2px 2px 2px;
  6645. box-sizing:border-box;
  6646. width:100%;
  6647. }
  6648. #u41918_text {
  6649. border-width:0px;
  6650. word-wrap:break-word;
  6651. text-transform:none;
  6652. visibility:hidden;
  6653. }
  6654. #u41919_img {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:0px;
  6658. top:0px;
  6659. width:260px;
  6660. height:118px;
  6661. }
  6662. #u41919 {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:2968px;
  6666. top:662px;
  6667. width:260px;
  6668. height:118px;
  6669. display:flex;
  6670. }
  6671. #u41919 .text {
  6672. position:absolute;
  6673. align-self:center;
  6674. padding:2px 2px 2px 2px;
  6675. box-sizing:border-box;
  6676. width:100%;
  6677. }
  6678. #u41919_text {
  6679. border-width:0px;
  6680. word-wrap:break-word;
  6681. text-transform:none;
  6682. visibility:hidden;
  6683. }
  6684. #u41920_img {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:0px;
  6688. top:0px;
  6689. width:260px;
  6690. height:118px;
  6691. }
  6692. #u41920 {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:2968px;
  6696. top:785px;
  6697. width:260px;
  6698. height:118px;
  6699. display:flex;
  6700. }
  6701. #u41920 .text {
  6702. position:absolute;
  6703. align-self:center;
  6704. padding:2px 2px 2px 2px;
  6705. box-sizing:border-box;
  6706. width:100%;
  6707. }
  6708. #u41920_text {
  6709. border-width:0px;
  6710. word-wrap:break-word;
  6711. text-transform:none;
  6712. visibility:hidden;
  6713. }
  6714. #u41921_img {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:0px;
  6718. top:0px;
  6719. width:260px;
  6720. height:118px;
  6721. }
  6722. #u41921 {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:2968px;
  6726. top:908px;
  6727. width:260px;
  6728. height:118px;
  6729. display:flex;
  6730. }
  6731. #u41921 .text {
  6732. position:absolute;
  6733. align-self:center;
  6734. padding:2px 2px 2px 2px;
  6735. box-sizing:border-box;
  6736. width:100%;
  6737. }
  6738. #u41921_text {
  6739. border-width:0px;
  6740. word-wrap:break-word;
  6741. text-transform:none;
  6742. visibility:hidden;
  6743. }
  6744. #u41922_img {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:0px;
  6748. top:0px;
  6749. width:260px;
  6750. height:118px;
  6751. }
  6752. #u41922 {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:2968px;
  6756. top:1031px;
  6757. width:260px;
  6758. height:118px;
  6759. display:flex;
  6760. }
  6761. #u41922 .text {
  6762. position:absolute;
  6763. align-self:center;
  6764. padding:2px 2px 2px 2px;
  6765. box-sizing:border-box;
  6766. width:100%;
  6767. }
  6768. #u41922_text {
  6769. border-width:0px;
  6770. word-wrap:break-word;
  6771. text-transform:none;
  6772. visibility:hidden;
  6773. }
  6774. #u41923_div {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:71px;
  6780. height:180px;
  6781. background:inherit;
  6782. background-color:rgba(255, 255, 255, 0);
  6783. border:none;
  6784. border-left:0px;
  6785. border-top:0px;
  6786. border-right:0px;
  6787. border-radius:0px;
  6788. border-bottom-right-radius:0px;
  6789. border-bottom-left-radius:0px;
  6790. -moz-box-shadow:none;
  6791. -webkit-box-shadow:none;
  6792. box-shadow:none;
  6793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6794. font-weight:400;
  6795. font-style:normal;
  6796. font-size:14px;
  6797. line-height:30px;
  6798. }
  6799. #u41923 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:2979px;
  6803. top:111px;
  6804. width:71px;
  6805. height:180px;
  6806. display:flex;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:14px;
  6811. line-height:30px;
  6812. }
  6813. #u41923 .text {
  6814. position:absolute;
  6815. align-self:flex-start;
  6816. padding:0px 0px 0px 0px;
  6817. box-sizing:border-box;
  6818. width:100%;
  6819. }
  6820. #u41923_text {
  6821. border-width:0px;
  6822. white-space:nowrap;
  6823. text-transform:none;
  6824. }
  6825. #u41924_img {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:0px;
  6829. top:0px;
  6830. width:260px;
  6831. height:118px;
  6832. }
  6833. #u41924 {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:2968px;
  6837. top:486px;
  6838. width:260px;
  6839. height:118px;
  6840. display:flex;
  6841. }
  6842. #u41924 .text {
  6843. position:absolute;
  6844. align-self:center;
  6845. padding:2px 2px 2px 2px;
  6846. box-sizing:border-box;
  6847. width:100%;
  6848. }
  6849. #u41924_text {
  6850. border-width:0px;
  6851. word-wrap:break-word;
  6852. text-transform:none;
  6853. visibility:hidden;
  6854. }
  6855. #u41925_div {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:0px;
  6859. top:0px;
  6860. width:10px;
  6861. height:206px;
  6862. background:inherit;
  6863. background-color:rgba(51, 51, 51, 1);
  6864. box-sizing:border-box;
  6865. border-width:1px;
  6866. border-style:solid;
  6867. border-color:rgba(170, 170, 170, 1);
  6868. border-radius:5px;
  6869. -moz-box-shadow:none;
  6870. -webkit-box-shadow:none;
  6871. box-shadow:none;
  6872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6873. font-weight:400;
  6874. font-style:normal;
  6875. font-size:12px;
  6876. color:#555555;
  6877. }
  6878. #u41925 {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:3231px;
  6882. top:730px;
  6883. width:10px;
  6884. height:206px;
  6885. display:flex;
  6886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6887. font-weight:400;
  6888. font-style:normal;
  6889. font-size:12px;
  6890. color:#555555;
  6891. }
  6892. #u41925 .text {
  6893. position:absolute;
  6894. align-self:center;
  6895. padding:5px 15px 5px 15px;
  6896. box-sizing:border-box;
  6897. width:100%;
  6898. }
  6899. #u41925_text {
  6900. border-width:0px;
  6901. word-wrap:break-word;
  6902. text-transform:none;
  6903. visibility:hidden;
  6904. }
  6905. #u41926 {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:0px;
  6909. top:0px;
  6910. width:0px;
  6911. height:0px;
  6912. }
  6913. #u41927_div {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:0px;
  6917. top:0px;
  6918. width:140px;
  6919. height:30px;
  6920. background:inherit;
  6921. background-color:rgba(255, 255, 255, 1);
  6922. box-sizing:border-box;
  6923. border-width:1px;
  6924. border-style:solid;
  6925. border-color:rgba(215, 215, 215, 1);
  6926. border-radius:4px;
  6927. -moz-box-shadow:none;
  6928. -webkit-box-shadow:none;
  6929. box-shadow:none;
  6930. font-size:11px;
  6931. }
  6932. #u41927 {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:2610px;
  6936. top:104px;
  6937. width:140px;
  6938. height:30px;
  6939. display:flex;
  6940. font-size:11px;
  6941. }
  6942. #u41927 .text {
  6943. position:absolute;
  6944. align-self:center;
  6945. padding:2px 2px 2px 2px;
  6946. box-sizing:border-box;
  6947. width:100%;
  6948. }
  6949. #u41927_text {
  6950. border-width:0px;
  6951. word-wrap:break-word;
  6952. text-transform:none;
  6953. visibility:hidden;
  6954. }
  6955. #u41928_input {
  6956. position:absolute;
  6957. left:0px;
  6958. top:0px;
  6959. width:126px;
  6960. height:23px;
  6961. padding:2px 2px 2px 2px;
  6962. font-family:'ArialMT', 'Arial', sans-serif;
  6963. font-weight:400;
  6964. font-style:normal;
  6965. font-size:11px;
  6966. letter-spacing:normal;
  6967. color:#AAAAAA;
  6968. vertical-align:none;
  6969. text-align:left;
  6970. text-transform:none;
  6971. background-color:transparent;
  6972. border-color:transparent;
  6973. }
  6974. #u41928_input.disabled {
  6975. position:absolute;
  6976. left:0px;
  6977. top:0px;
  6978. width:126px;
  6979. height:23px;
  6980. padding:2px 2px 2px 2px;
  6981. font-family:'ArialMT', 'Arial', sans-serif;
  6982. font-weight:400;
  6983. font-style:normal;
  6984. font-size:11px;
  6985. letter-spacing:normal;
  6986. color:#AAAAAA;
  6987. vertical-align:none;
  6988. text-align:left;
  6989. text-transform:none;
  6990. background-color:transparent;
  6991. border-color:transparent;
  6992. }
  6993. #u41928_div {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:0px;
  6997. top:0px;
  6998. width:126px;
  6999. height:23px;
  7000. background:inherit;
  7001. background-color:rgba(255, 255, 255, 1);
  7002. border:none;
  7003. border-radius:0px;
  7004. -moz-box-shadow:none;
  7005. -webkit-box-shadow:none;
  7006. box-shadow:none;
  7007. font-size:11px;
  7008. color:#AAAAAA;
  7009. }
  7010. #u41928 {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:2617px;
  7014. top:106px;
  7015. width:126px;
  7016. height:23px;
  7017. display:flex;
  7018. font-size:11px;
  7019. color:#AAAAAA;
  7020. }
  7021. #u41928 .text {
  7022. position:absolute;
  7023. align-self:flex-start;
  7024. padding:2px 2px 2px 2px;
  7025. box-sizing:border-box;
  7026. width:100%;
  7027. }
  7028. #u41928_div.disabled {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:126px;
  7034. height:23px;
  7035. background:inherit;
  7036. background-color:rgba(240, 240, 240, 1);
  7037. border:none;
  7038. border-radius:0px;
  7039. -moz-box-shadow:none;
  7040. -webkit-box-shadow:none;
  7041. box-shadow:none;
  7042. font-size:11px;
  7043. color:#AAAAAA;
  7044. }
  7045. #u41928.disabled {
  7046. }
  7047. .u41928_input_option {
  7048. font-size:11px;
  7049. }
  7050. #u41929_div {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:0px;
  7054. top:0px;
  7055. width:60px;
  7056. height:30px;
  7057. background:inherit;
  7058. background-color:rgba(24, 144, 255, 1);
  7059. box-sizing:border-box;
  7060. border-width:1px;
  7061. border-style:solid;
  7062. border-color:rgba(215, 215, 215, 1);
  7063. border-radius:4px;
  7064. -moz-box-shadow:none;
  7065. -webkit-box-shadow:none;
  7066. box-shadow:none;
  7067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:11px;
  7071. color:#FFFFFF;
  7072. }
  7073. #u41929 {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:2010px;
  7077. top:152px;
  7078. width:60px;
  7079. height:30px;
  7080. display:flex;
  7081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7082. font-weight:400;
  7083. font-style:normal;
  7084. font-size:11px;
  7085. color:#FFFFFF;
  7086. }
  7087. #u41929 .text {
  7088. position:absolute;
  7089. align-self:center;
  7090. padding:2px 2px 2px 2px;
  7091. box-sizing:border-box;
  7092. width:100%;
  7093. }
  7094. #u41929_text {
  7095. border-width:0px;
  7096. word-wrap:break-word;
  7097. text-transform:none;
  7098. }
  7099. #u41930 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:0px;
  7103. top:0px;
  7104. width:0px;
  7105. height:0px;
  7106. }
  7107. #u41931_div {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:140px;
  7113. height:30px;
  7114. background:inherit;
  7115. background-color:rgba(255, 255, 255, 1);
  7116. box-sizing:border-box;
  7117. border-width:1px;
  7118. border-style:solid;
  7119. border-color:rgba(215, 215, 215, 1);
  7120. border-radius:4px;
  7121. -moz-box-shadow:none;
  7122. -webkit-box-shadow:none;
  7123. box-shadow:none;
  7124. font-size:11px;
  7125. }
  7126. #u41931 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:2310px;
  7130. top:102px;
  7131. width:140px;
  7132. height:30px;
  7133. display:flex;
  7134. font-size:11px;
  7135. }
  7136. #u41931 .text {
  7137. position:absolute;
  7138. align-self:center;
  7139. padding:2px 2px 2px 2px;
  7140. box-sizing:border-box;
  7141. width:100%;
  7142. }
  7143. #u41931_text {
  7144. border-width:0px;
  7145. word-wrap:break-word;
  7146. text-transform:none;
  7147. visibility:hidden;
  7148. }
  7149. #u41932_input {
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:126px;
  7154. height:23px;
  7155. padding:2px 2px 2px 2px;
  7156. font-family:'ArialMT', 'Arial', sans-serif;
  7157. font-weight:400;
  7158. font-style:normal;
  7159. font-size:11px;
  7160. letter-spacing:normal;
  7161. color:#AAAAAA;
  7162. vertical-align:none;
  7163. text-align:left;
  7164. text-transform:none;
  7165. background-color:transparent;
  7166. border-color:transparent;
  7167. }
  7168. #u41932_input.disabled {
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:126px;
  7173. height:23px;
  7174. padding:2px 2px 2px 2px;
  7175. font-family:'ArialMT', 'Arial', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:11px;
  7179. letter-spacing:normal;
  7180. color:#AAAAAA;
  7181. vertical-align:none;
  7182. text-align:left;
  7183. text-transform:none;
  7184. background-color:transparent;
  7185. border-color:transparent;
  7186. }
  7187. #u41932_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:126px;
  7193. height:23px;
  7194. background:inherit;
  7195. background-color:rgba(255, 255, 255, 1);
  7196. border:none;
  7197. border-radius:0px;
  7198. -moz-box-shadow:none;
  7199. -webkit-box-shadow:none;
  7200. box-shadow:none;
  7201. font-size:11px;
  7202. color:#AAAAAA;
  7203. }
  7204. #u41932 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:2317px;
  7208. top:104px;
  7209. width:126px;
  7210. height:23px;
  7211. display:flex;
  7212. font-size:11px;
  7213. color:#AAAAAA;
  7214. }
  7215. #u41932 .text {
  7216. position:absolute;
  7217. align-self:flex-start;
  7218. padding:2px 2px 2px 2px;
  7219. box-sizing:border-box;
  7220. width:100%;
  7221. }
  7222. #u41932_div.disabled {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:0px;
  7226. top:0px;
  7227. width:126px;
  7228. height:23px;
  7229. background:inherit;
  7230. background-color:rgba(240, 240, 240, 1);
  7231. border:none;
  7232. border-radius:0px;
  7233. -moz-box-shadow:none;
  7234. -webkit-box-shadow:none;
  7235. box-shadow:none;
  7236. font-size:11px;
  7237. color:#AAAAAA;
  7238. }
  7239. #u41932.disabled {
  7240. }
  7241. .u41932_input_option {
  7242. font-size:11px;
  7243. }
  7244. #u41933_div {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:0px;
  7248. top:0px;
  7249. width:60px;
  7250. height:30px;
  7251. background:inherit;
  7252. background-color:rgba(255, 255, 255, 1);
  7253. box-sizing:border-box;
  7254. border-width:1px;
  7255. border-style:solid;
  7256. border-color:rgba(215, 215, 215, 1);
  7257. border-radius:4px;
  7258. -moz-box-shadow:none;
  7259. -webkit-box-shadow:none;
  7260. box-shadow:none;
  7261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7262. font-weight:400;
  7263. font-style:normal;
  7264. font-size:11px;
  7265. }
  7266. #u41933 {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:2080px;
  7270. top:152px;
  7271. width:60px;
  7272. height:30px;
  7273. display:flex;
  7274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7275. font-weight:400;
  7276. font-style:normal;
  7277. font-size:11px;
  7278. }
  7279. #u41933 .text {
  7280. position:absolute;
  7281. align-self:center;
  7282. padding:2px 2px 2px 2px;
  7283. box-sizing:border-box;
  7284. width:100%;
  7285. }
  7286. #u41933_text {
  7287. border-width:0px;
  7288. word-wrap:break-word;
  7289. text-transform:none;
  7290. }
  7291. #u41934_div {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:60px;
  7297. height:30px;
  7298. background:inherit;
  7299. background-color:rgba(255, 255, 255, 1);
  7300. box-sizing:border-box;
  7301. border-width:1px;
  7302. border-style:solid;
  7303. border-color:rgba(215, 215, 215, 1);
  7304. border-radius:4px;
  7305. -moz-box-shadow:none;
  7306. -webkit-box-shadow:none;
  7307. box-shadow:none;
  7308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. font-size:11px;
  7312. }
  7313. #u41934 {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:2150px;
  7317. top:152px;
  7318. width:60px;
  7319. height:30px;
  7320. display:flex;
  7321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7322. font-weight:400;
  7323. font-style:normal;
  7324. font-size:11px;
  7325. }
  7326. #u41934 .text {
  7327. position:absolute;
  7328. align-self:center;
  7329. padding:2px 2px 2px 2px;
  7330. box-sizing:border-box;
  7331. width:100%;
  7332. }
  7333. #u41934_text {
  7334. border-width:0px;
  7335. word-wrap:break-word;
  7336. text-transform:none;
  7337. }
  7338. #u41935_div {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:65px;
  7344. height:22px;
  7345. background:inherit;
  7346. background-color:rgba(255, 255, 255, 0);
  7347. border:none;
  7348. border-radius:0px;
  7349. -moz-box-shadow:none;
  7350. -webkit-box-shadow:none;
  7351. box-shadow:none;
  7352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7353. font-weight:400;
  7354. font-style:normal;
  7355. font-size:16px;
  7356. }
  7357. #u41935 {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:1808px;
  7361. top:532px;
  7362. width:65px;
  7363. height:22px;
  7364. display:flex;
  7365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. font-size:16px;
  7369. }
  7370. #u41935 .text {
  7371. position:absolute;
  7372. align-self:flex-start;
  7373. padding:0px 0px 0px 0px;
  7374. box-sizing:border-box;
  7375. width:100%;
  7376. }
  7377. #u41935_text {
  7378. border-width:0px;
  7379. white-space:nowrap;
  7380. text-transform:none;
  7381. }
  7382. #u41936 {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:0px;
  7388. height:0px;
  7389. }
  7390. #u41937_img {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:16px;
  7396. height:16px;
  7397. }
  7398. #u41937 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:2203px;
  7402. top:1045px;
  7403. width:16px;
  7404. height:16px;
  7405. display:flex;
  7406. }
  7407. #u41937 .text {
  7408. position:absolute;
  7409. align-self:center;
  7410. padding:2px 2px 2px 2px;
  7411. box-sizing:border-box;
  7412. width:100%;
  7413. }
  7414. #u41937_text {
  7415. border-width:0px;
  7416. word-wrap:break-word;
  7417. text-transform:none;
  7418. visibility:hidden;
  7419. }
  7420. #u41938_img {
  7421. border-width:0px;
  7422. position:absolute;
  7423. left:0px;
  7424. top:0px;
  7425. width:2px;
  7426. height:13px;
  7427. }
  7428. #u41938 {
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:2189px;
  7432. top:1047px;
  7433. width:1px;
  7434. height:12px;
  7435. display:flex;
  7436. }
  7437. #u41938 .text {
  7438. position:absolute;
  7439. align-self:center;
  7440. padding:2px 2px 2px 2px;
  7441. box-sizing:border-box;
  7442. width:100%;
  7443. }
  7444. #u41938_text {
  7445. border-width:0px;
  7446. word-wrap:break-word;
  7447. text-transform:none;
  7448. visibility:hidden;
  7449. }
  7450. #u41939 {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:0px;
  7454. top:0px;
  7455. width:0px;
  7456. height:0px;
  7457. }
  7458. #u41940_img {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:8px;
  7464. height:8px;
  7465. }
  7466. #u41940 {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:2081px;
  7470. top:1044px;
  7471. width:8px;
  7472. height:8px;
  7473. display:flex;
  7474. }
  7475. #u41940 .text {
  7476. position:absolute;
  7477. align-self:center;
  7478. padding:2px 2px 2px 2px;
  7479. box-sizing:border-box;
  7480. width:100%;
  7481. }
  7482. #u41940_text {
  7483. border-width:0px;
  7484. word-wrap:break-word;
  7485. text-transform:none;
  7486. visibility:hidden;
  7487. }
  7488. #u41941_img {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:0px;
  7492. top:0px;
  7493. width:8px;
  7494. height:8px;
  7495. }
  7496. #u41941 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:2091px;
  7500. top:1044px;
  7501. width:8px;
  7502. height:8px;
  7503. display:flex;
  7504. }
  7505. #u41941 .text {
  7506. position:absolute;
  7507. align-self:center;
  7508. padding:2px 2px 2px 2px;
  7509. box-sizing:border-box;
  7510. width:100%;
  7511. }
  7512. #u41941_text {
  7513. border-width:0px;
  7514. word-wrap:break-word;
  7515. text-transform:none;
  7516. visibility:hidden;
  7517. }
  7518. #u41942_img {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:0px;
  7522. top:0px;
  7523. width:8px;
  7524. height:8px;
  7525. }
  7526. #u41942 {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:2081px;
  7530. top:1055px;
  7531. width:8px;
  7532. height:8px;
  7533. display:flex;
  7534. }
  7535. #u41942 .text {
  7536. position:absolute;
  7537. align-self:center;
  7538. padding:2px 2px 2px 2px;
  7539. box-sizing:border-box;
  7540. width:100%;
  7541. }
  7542. #u41942_text {
  7543. border-width:0px;
  7544. word-wrap:break-word;
  7545. text-transform:none;
  7546. visibility:hidden;
  7547. }
  7548. #u41943_img {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:0px;
  7552. top:0px;
  7553. width:8px;
  7554. height:8px;
  7555. }
  7556. #u41943 {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:2091px;
  7560. top:1055px;
  7561. width:8px;
  7562. height:8px;
  7563. display:flex;
  7564. }
  7565. #u41943 .text {
  7566. position:absolute;
  7567. align-self:center;
  7568. padding:2px 2px 2px 2px;
  7569. box-sizing:border-box;
  7570. width:100%;
  7571. }
  7572. #u41943_text {
  7573. border-width:0px;
  7574. word-wrap:break-word;
  7575. text-transform:none;
  7576. visibility:hidden;
  7577. }
  7578. #u41944 {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:0px;
  7584. height:0px;
  7585. }
  7586. #u41945_img {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:5px;
  7592. height:5px;
  7593. }
  7594. #u41945 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:2045px;
  7598. top:1044px;
  7599. width:5px;
  7600. height:5px;
  7601. display:flex;
  7602. }
  7603. #u41945 .text {
  7604. position:absolute;
  7605. align-self:center;
  7606. padding:2px 2px 2px 2px;
  7607. box-sizing:border-box;
  7608. width:100%;
  7609. }
  7610. #u41945_text {
  7611. border-width:0px;
  7612. word-wrap:break-word;
  7613. text-transform:none;
  7614. visibility:hidden;
  7615. }
  7616. #u41946_img {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:5px;
  7622. height:5px;
  7623. }
  7624. #u41946 {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:2052px;
  7628. top:1044px;
  7629. width:5px;
  7630. height:5px;
  7631. display:flex;
  7632. }
  7633. #u41946 .text {
  7634. position:absolute;
  7635. align-self:center;
  7636. padding:2px 2px 2px 2px;
  7637. box-sizing:border-box;
  7638. width:100%;
  7639. }
  7640. #u41946_text {
  7641. border-width:0px;
  7642. word-wrap:break-word;
  7643. text-transform:none;
  7644. visibility:hidden;
  7645. }
  7646. #u41947_img {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:0px;
  7650. top:0px;
  7651. width:5px;
  7652. height:5px;
  7653. }
  7654. #u41947 {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:2058px;
  7658. top:1044px;
  7659. width:5px;
  7660. height:5px;
  7661. display:flex;
  7662. }
  7663. #u41947 .text {
  7664. position:absolute;
  7665. align-self:center;
  7666. padding:2px 2px 2px 2px;
  7667. box-sizing:border-box;
  7668. width:100%;
  7669. }
  7670. #u41947_text {
  7671. border-width:0px;
  7672. word-wrap:break-word;
  7673. text-transform:none;
  7674. visibility:hidden;
  7675. }
  7676. #u41948_img {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:0px;
  7680. top:0px;
  7681. width:5px;
  7682. height:5px;
  7683. }
  7684. #u41948 {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:2045px;
  7688. top:1051px;
  7689. width:5px;
  7690. height:5px;
  7691. display:flex;
  7692. }
  7693. #u41948 .text {
  7694. position:absolute;
  7695. align-self:center;
  7696. padding:2px 2px 2px 2px;
  7697. box-sizing:border-box;
  7698. width:100%;
  7699. }
  7700. #u41948_text {
  7701. border-width:0px;
  7702. word-wrap:break-word;
  7703. text-transform:none;
  7704. visibility:hidden;
  7705. }
  7706. #u41949_img {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:0px;
  7710. top:0px;
  7711. width:5px;
  7712. height:5px;
  7713. }
  7714. #u41949 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:2052px;
  7718. top:1051px;
  7719. width:5px;
  7720. height:5px;
  7721. display:flex;
  7722. }
  7723. #u41949 .text {
  7724. position:absolute;
  7725. align-self:center;
  7726. padding:2px 2px 2px 2px;
  7727. box-sizing:border-box;
  7728. width:100%;
  7729. }
  7730. #u41949_text {
  7731. border-width:0px;
  7732. word-wrap:break-word;
  7733. text-transform:none;
  7734. visibility:hidden;
  7735. }
  7736. #u41950_img {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:5px;
  7742. height:5px;
  7743. }
  7744. #u41950 {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:2058px;
  7748. top:1051px;
  7749. width:5px;
  7750. height:5px;
  7751. display:flex;
  7752. }
  7753. #u41950 .text {
  7754. position:absolute;
  7755. align-self:center;
  7756. padding:2px 2px 2px 2px;
  7757. box-sizing:border-box;
  7758. width:100%;
  7759. }
  7760. #u41950_text {
  7761. border-width:0px;
  7762. word-wrap:break-word;
  7763. text-transform:none;
  7764. visibility:hidden;
  7765. }
  7766. #u41951_img {
  7767. border-width:0px;
  7768. position:absolute;
  7769. left:0px;
  7770. top:0px;
  7771. width:5px;
  7772. height:5px;
  7773. }
  7774. #u41951 {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:2045px;
  7778. top:1057px;
  7779. width:5px;
  7780. height:5px;
  7781. display:flex;
  7782. }
  7783. #u41951 .text {
  7784. position:absolute;
  7785. align-self:center;
  7786. padding:2px 2px 2px 2px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u41951_text {
  7791. border-width:0px;
  7792. word-wrap:break-word;
  7793. text-transform:none;
  7794. visibility:hidden;
  7795. }
  7796. #u41952_img {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:5px;
  7802. height:5px;
  7803. }
  7804. #u41952 {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:2052px;
  7808. top:1057px;
  7809. width:5px;
  7810. height:5px;
  7811. display:flex;
  7812. }
  7813. #u41952 .text {
  7814. position:absolute;
  7815. align-self:center;
  7816. padding:2px 2px 2px 2px;
  7817. box-sizing:border-box;
  7818. width:100%;
  7819. }
  7820. #u41952_text {
  7821. border-width:0px;
  7822. word-wrap:break-word;
  7823. text-transform:none;
  7824. visibility:hidden;
  7825. }
  7826. #u41953_img {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:0px;
  7830. top:0px;
  7831. width:5px;
  7832. height:5px;
  7833. }
  7834. #u41953 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:2058px;
  7838. top:1057px;
  7839. width:5px;
  7840. height:5px;
  7841. display:flex;
  7842. }
  7843. #u41953 .text {
  7844. position:absolute;
  7845. align-self:center;
  7846. padding:2px 2px 2px 2px;
  7847. box-sizing:border-box;
  7848. width:100%;
  7849. }
  7850. #u41953_text {
  7851. border-width:0px;
  7852. word-wrap:break-word;
  7853. text-transform:none;
  7854. visibility:hidden;
  7855. }
  7856. #u41954 {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:0px;
  7860. top:0px;
  7861. width:0px;
  7862. height:0px;
  7863. }
  7864. #u41955_img {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:0px;
  7868. top:0px;
  7869. width:4px;
  7870. height:4px;
  7871. }
  7872. #u41955 {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:2010px;
  7876. top:1045px;
  7877. width:4px;
  7878. height:4px;
  7879. display:flex;
  7880. }
  7881. #u41955 .text {
  7882. position:absolute;
  7883. align-self:center;
  7884. padding:2px 2px 2px 2px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u41955_text {
  7889. border-width:0px;
  7890. word-wrap:break-word;
  7891. text-transform:none;
  7892. visibility:hidden;
  7893. }
  7894. #u41956_img {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:0px;
  7898. top:0px;
  7899. width:4px;
  7900. height:4px;
  7901. }
  7902. #u41956 {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:2014px;
  7906. top:1045px;
  7907. width:4px;
  7908. height:4px;
  7909. display:flex;
  7910. }
  7911. #u41956 .text {
  7912. position:absolute;
  7913. align-self:center;
  7914. padding:2px 2px 2px 2px;
  7915. box-sizing:border-box;
  7916. width:100%;
  7917. }
  7918. #u41956_text {
  7919. border-width:0px;
  7920. word-wrap:break-word;
  7921. text-transform:none;
  7922. visibility:hidden;
  7923. }
  7924. #u41957_img {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:0px;
  7928. top:0px;
  7929. width:4px;
  7930. height:4px;
  7931. }
  7932. #u41957 {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:2019px;
  7936. top:1045px;
  7937. width:4px;
  7938. height:4px;
  7939. display:flex;
  7940. }
  7941. #u41957 .text {
  7942. position:absolute;
  7943. align-self:center;
  7944. padding:2px 2px 2px 2px;
  7945. box-sizing:border-box;
  7946. width:100%;
  7947. }
  7948. #u41957_text {
  7949. border-width:0px;
  7950. word-wrap:break-word;
  7951. text-transform:none;
  7952. visibility:hidden;
  7953. }
  7954. #u41958_img {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:0px;
  7958. top:0px;
  7959. width:4px;
  7960. height:4px;
  7961. }
  7962. #u41958 {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:2023px;
  7966. top:1045px;
  7967. width:4px;
  7968. height:4px;
  7969. display:flex;
  7970. }
  7971. #u41958 .text {
  7972. position:absolute;
  7973. align-self:center;
  7974. padding:2px 2px 2px 2px;
  7975. box-sizing:border-box;
  7976. width:100%;
  7977. }
  7978. #u41958_text {
  7979. border-width:0px;
  7980. word-wrap:break-word;
  7981. text-transform:none;
  7982. visibility:hidden;
  7983. }
  7984. #u41959_img {
  7985. border-width:0px;
  7986. position:absolute;
  7987. left:0px;
  7988. top:0px;
  7989. width:4px;
  7990. height:4px;
  7991. }
  7992. #u41959 {
  7993. border-width:0px;
  7994. position:absolute;
  7995. left:2010px;
  7996. top:1050px;
  7997. width:4px;
  7998. height:4px;
  7999. display:flex;
  8000. }
  8001. #u41959 .text {
  8002. position:absolute;
  8003. align-self:center;
  8004. padding:2px 2px 2px 2px;
  8005. box-sizing:border-box;
  8006. width:100%;
  8007. }
  8008. #u41959_text {
  8009. border-width:0px;
  8010. word-wrap:break-word;
  8011. text-transform:none;
  8012. visibility:hidden;
  8013. }
  8014. #u41960_img {
  8015. border-width:0px;
  8016. position:absolute;
  8017. left:0px;
  8018. top:0px;
  8019. width:4px;
  8020. height:4px;
  8021. }
  8022. #u41960 {
  8023. border-width:0px;
  8024. position:absolute;
  8025. left:2014px;
  8026. top:1050px;
  8027. width:4px;
  8028. height:4px;
  8029. display:flex;
  8030. }
  8031. #u41960 .text {
  8032. position:absolute;
  8033. align-self:center;
  8034. padding:2px 2px 2px 2px;
  8035. box-sizing:border-box;
  8036. width:100%;
  8037. }
  8038. #u41960_text {
  8039. border-width:0px;
  8040. word-wrap:break-word;
  8041. text-transform:none;
  8042. visibility:hidden;
  8043. }
  8044. #u41961_img {
  8045. border-width:0px;
  8046. position:absolute;
  8047. left:0px;
  8048. top:0px;
  8049. width:4px;
  8050. height:4px;
  8051. }
  8052. #u41961 {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:2019px;
  8056. top:1050px;
  8057. width:4px;
  8058. height:4px;
  8059. display:flex;
  8060. }
  8061. #u41961 .text {
  8062. position:absolute;
  8063. align-self:center;
  8064. padding:2px 2px 2px 2px;
  8065. box-sizing:border-box;
  8066. width:100%;
  8067. }
  8068. #u41961_text {
  8069. border-width:0px;
  8070. word-wrap:break-word;
  8071. text-transform:none;
  8072. visibility:hidden;
  8073. }
  8074. #u41962_img {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:0px;
  8078. top:0px;
  8079. width:4px;
  8080. height:4px;
  8081. }
  8082. #u41962 {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:2023px;
  8086. top:1050px;
  8087. width:4px;
  8088. height:4px;
  8089. display:flex;
  8090. }
  8091. #u41962 .text {
  8092. position:absolute;
  8093. align-self:center;
  8094. padding:2px 2px 2px 2px;
  8095. box-sizing:border-box;
  8096. width:100%;
  8097. }
  8098. #u41962_text {
  8099. border-width:0px;
  8100. word-wrap:break-word;
  8101. text-transform:none;
  8102. visibility:hidden;
  8103. }
  8104. #u41963_img {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:0px;
  8108. top:0px;
  8109. width:4px;
  8110. height:4px;
  8111. }
  8112. #u41963 {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:2010px;
  8116. top:1054px;
  8117. width:4px;
  8118. height:4px;
  8119. display:flex;
  8120. }
  8121. #u41963 .text {
  8122. position:absolute;
  8123. align-self:center;
  8124. padding:2px 2px 2px 2px;
  8125. box-sizing:border-box;
  8126. width:100%;
  8127. }
  8128. #u41963_text {
  8129. border-width:0px;
  8130. word-wrap:break-word;
  8131. text-transform:none;
  8132. visibility:hidden;
  8133. }
  8134. #u41964_img {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:0px;
  8138. top:0px;
  8139. width:4px;
  8140. height:4px;
  8141. }
  8142. #u41964 {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:2014px;
  8146. top:1054px;
  8147. width:4px;
  8148. height:4px;
  8149. display:flex;
  8150. }
  8151. #u41964 .text {
  8152. position:absolute;
  8153. align-self:center;
  8154. padding:2px 2px 2px 2px;
  8155. box-sizing:border-box;
  8156. width:100%;
  8157. }
  8158. #u41964_text {
  8159. border-width:0px;
  8160. word-wrap:break-word;
  8161. text-transform:none;
  8162. visibility:hidden;
  8163. }
  8164. #u41965_img {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:0px;
  8168. top:0px;
  8169. width:4px;
  8170. height:4px;
  8171. }
  8172. #u41965 {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:2019px;
  8176. top:1054px;
  8177. width:4px;
  8178. height:4px;
  8179. display:flex;
  8180. }
  8181. #u41965 .text {
  8182. position:absolute;
  8183. align-self:center;
  8184. padding:2px 2px 2px 2px;
  8185. box-sizing:border-box;
  8186. width:100%;
  8187. }
  8188. #u41965_text {
  8189. border-width:0px;
  8190. word-wrap:break-word;
  8191. text-transform:none;
  8192. visibility:hidden;
  8193. }
  8194. #u41966_img {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:0px;
  8198. top:0px;
  8199. width:4px;
  8200. height:4px;
  8201. }
  8202. #u41966 {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:2023px;
  8206. top:1054px;
  8207. width:4px;
  8208. height:4px;
  8209. display:flex;
  8210. }
  8211. #u41966 .text {
  8212. position:absolute;
  8213. align-self:center;
  8214. padding:2px 2px 2px 2px;
  8215. box-sizing:border-box;
  8216. width:100%;
  8217. }
  8218. #u41966_text {
  8219. border-width:0px;
  8220. word-wrap:break-word;
  8221. text-transform:none;
  8222. visibility:hidden;
  8223. }
  8224. #u41967_img {
  8225. border-width:0px;
  8226. position:absolute;
  8227. left:0px;
  8228. top:0px;
  8229. width:4px;
  8230. height:4px;
  8231. }
  8232. #u41967 {
  8233. border-width:0px;
  8234. position:absolute;
  8235. left:2010px;
  8236. top:1059px;
  8237. width:4px;
  8238. height:4px;
  8239. display:flex;
  8240. }
  8241. #u41967 .text {
  8242. position:absolute;
  8243. align-self:center;
  8244. padding:2px 2px 2px 2px;
  8245. box-sizing:border-box;
  8246. width:100%;
  8247. }
  8248. #u41967_text {
  8249. border-width:0px;
  8250. word-wrap:break-word;
  8251. text-transform:none;
  8252. visibility:hidden;
  8253. }
  8254. #u41968_img {
  8255. border-width:0px;
  8256. position:absolute;
  8257. left:0px;
  8258. top:0px;
  8259. width:4px;
  8260. height:4px;
  8261. }
  8262. #u41968 {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:2014px;
  8266. top:1059px;
  8267. width:4px;
  8268. height:4px;
  8269. display:flex;
  8270. }
  8271. #u41968 .text {
  8272. position:absolute;
  8273. align-self:center;
  8274. padding:2px 2px 2px 2px;
  8275. box-sizing:border-box;
  8276. width:100%;
  8277. }
  8278. #u41968_text {
  8279. border-width:0px;
  8280. word-wrap:break-word;
  8281. text-transform:none;
  8282. visibility:hidden;
  8283. }
  8284. #u41969_img {
  8285. border-width:0px;
  8286. position:absolute;
  8287. left:0px;
  8288. top:0px;
  8289. width:4px;
  8290. height:4px;
  8291. }
  8292. #u41969 {
  8293. border-width:0px;
  8294. position:absolute;
  8295. left:2019px;
  8296. top:1059px;
  8297. width:4px;
  8298. height:4px;
  8299. display:flex;
  8300. }
  8301. #u41969 .text {
  8302. position:absolute;
  8303. align-self:center;
  8304. padding:2px 2px 2px 2px;
  8305. box-sizing:border-box;
  8306. width:100%;
  8307. }
  8308. #u41969_text {
  8309. border-width:0px;
  8310. word-wrap:break-word;
  8311. text-transform:none;
  8312. visibility:hidden;
  8313. }
  8314. #u41970_img {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:0px;
  8318. top:0px;
  8319. width:4px;
  8320. height:4px;
  8321. }
  8322. #u41970 {
  8323. border-width:0px;
  8324. position:absolute;
  8325. left:2023px;
  8326. top:1059px;
  8327. width:4px;
  8328. height:4px;
  8329. display:flex;
  8330. }
  8331. #u41970 .text {
  8332. position:absolute;
  8333. align-self:center;
  8334. padding:2px 2px 2px 2px;
  8335. box-sizing:border-box;
  8336. width:100%;
  8337. }
  8338. #u41970_text {
  8339. border-width:0px;
  8340. word-wrap:break-word;
  8341. text-transform:none;
  8342. visibility:hidden;
  8343. }
  8344. #u41971_img {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:0px;
  8348. top:0px;
  8349. width:18px;
  8350. height:18px;
  8351. }
  8352. #u41971 {
  8353. border-width:0px;
  8354. position:absolute;
  8355. left:2118px;
  8356. top:1044px;
  8357. width:18px;
  8358. height:18px;
  8359. display:flex;
  8360. }
  8361. #u41971 .text {
  8362. position:absolute;
  8363. align-self:center;
  8364. padding:2px 2px 2px 2px;
  8365. box-sizing:border-box;
  8366. width:100%;
  8367. }
  8368. #u41971_text {
  8369. border-width:0px;
  8370. word-wrap:break-word;
  8371. text-transform:none;
  8372. visibility:hidden;
  8373. }
  8374. #u41972_img {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:0px;
  8378. top:0px;
  8379. width:16px;
  8380. height:16px;
  8381. }
  8382. #u41972 {
  8383. border-width:0px;
  8384. position:absolute;
  8385. left:2161px;
  8386. top:1045px;
  8387. width:16px;
  8388. height:16px;
  8389. display:flex;
  8390. }
  8391. #u41972 .text {
  8392. position:absolute;
  8393. align-self:center;
  8394. padding:2px 2px 2px 2px;
  8395. box-sizing:border-box;
  8396. width:100%;
  8397. }
  8398. #u41972_text {
  8399. border-width:0px;
  8400. word-wrap:break-word;
  8401. text-transform:none;
  8402. visibility:hidden;
  8403. }
  8404. #u41973_img {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:2px;
  8410. height:13px;
  8411. }
  8412. #u41973 {
  8413. border-width:0px;
  8414. position:absolute;
  8415. left:2148px;
  8416. top:1047px;
  8417. width:1px;
  8418. height:12px;
  8419. display:flex;
  8420. }
  8421. #u41973 .text {
  8422. position:absolute;
  8423. align-self:center;
  8424. padding:2px 2px 2px 2px;
  8425. box-sizing:border-box;
  8426. width:100%;
  8427. }
  8428. #u41973_text {
  8429. border-width:0px;
  8430. word-wrap:break-word;
  8431. text-transform:none;
  8432. visibility:hidden;
  8433. }
  8434. #u41974_img {
  8435. border-width:0px;
  8436. position:absolute;
  8437. left:0px;
  8438. top:0px;
  8439. width:9px;
  8440. height:9px;
  8441. }
  8442. #u41974 {
  8443. border-width:0px;
  8444. position:absolute;
  8445. left:2127px;
  8446. top:1054px;
  8447. width:9px;
  8448. height:9px;
  8449. display:flex;
  8450. }
  8451. #u41974 .text {
  8452. position:absolute;
  8453. align-self:center;
  8454. padding:2px 2px 2px 2px;
  8455. box-sizing:border-box;
  8456. width:100%;
  8457. }
  8458. #u41974_text {
  8459. border-width:0px;
  8460. word-wrap:break-word;
  8461. text-transform:none;
  8462. visibility:hidden;
  8463. }
  8464. #u41975 {
  8465. border-width:0px;
  8466. position:absolute;
  8467. left:0px;
  8468. top:0px;
  8469. width:0px;
  8470. height:0px;
  8471. }
  8472. #u41976_img {
  8473. border-width:0px;
  8474. position:absolute;
  8475. left:0px;
  8476. top:0px;
  8477. width:905px;
  8478. height:827px;
  8479. }
  8480. #u41976 {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:2010px;
  8484. top:192px;
  8485. width:905px;
  8486. height:827px;
  8487. display:flex;
  8488. }
  8489. #u41976 .text {
  8490. position:absolute;
  8491. align-self:center;
  8492. padding:2px 2px 2px 2px;
  8493. box-sizing:border-box;
  8494. width:100%;
  8495. }
  8496. #u41976_text {
  8497. border-width:0px;
  8498. word-wrap:break-word;
  8499. text-transform:none;
  8500. visibility:hidden;
  8501. }
  8502. #u41977_div {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:0px;
  8506. top:0px;
  8507. width:27px;
  8508. height:15px;
  8509. background:inherit;
  8510. background-color:rgba(0, 191, 191, 1);
  8511. border:none;
  8512. border-radius:4px;
  8513. -moz-box-shadow:none;
  8514. -webkit-box-shadow:none;
  8515. box-shadow:none;
  8516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8517. font-weight:400;
  8518. font-style:normal;
  8519. font-size:10px;
  8520. color:#FFFFFF;
  8521. }
  8522. #u41977 {
  8523. border-width:0px;
  8524. position:absolute;
  8525. left:2010px;
  8526. top:195px;
  8527. width:27px;
  8528. height:15px;
  8529. display:flex;
  8530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8531. font-weight:400;
  8532. font-style:normal;
  8533. font-size:10px;
  8534. color:#FFFFFF;
  8535. }
  8536. #u41977 .text {
  8537. position:absolute;
  8538. align-self:center;
  8539. padding:5px 0px 5px 0px;
  8540. box-sizing:border-box;
  8541. width:100%;
  8542. }
  8543. #u41977_text {
  8544. border-width:0px;
  8545. word-wrap:break-word;
  8546. text-transform:none;
  8547. }
  8548. #u41978_div {
  8549. border-width:0px;
  8550. position:absolute;
  8551. left:0px;
  8552. top:0px;
  8553. width:27px;
  8554. height:15px;
  8555. background:inherit;
  8556. background-color:rgba(217, 0, 27, 1);
  8557. border:none;
  8558. border-radius:4px;
  8559. -moz-box-shadow:none;
  8560. -webkit-box-shadow:none;
  8561. box-shadow:none;
  8562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8563. font-weight:400;
  8564. font-style:normal;
  8565. font-size:10px;
  8566. color:#FFFFFF;
  8567. }
  8568. #u41978 {
  8569. border-width:0px;
  8570. position:absolute;
  8571. left:2618px;
  8572. top:192px;
  8573. width:27px;
  8574. height:15px;
  8575. display:flex;
  8576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8577. font-weight:400;
  8578. font-style:normal;
  8579. font-size:10px;
  8580. color:#FFFFFF;
  8581. }
  8582. #u41978 .text {
  8583. position:absolute;
  8584. align-self:center;
  8585. padding:5px 0px 5px 0px;
  8586. box-sizing:border-box;
  8587. width:100%;
  8588. }
  8589. #u41978_text {
  8590. border-width:0px;
  8591. word-wrap:break-word;
  8592. text-transform:none;
  8593. }
  8594. #u41979_div {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:0px;
  8598. top:0px;
  8599. width:27px;
  8600. height:15px;
  8601. background:inherit;
  8602. background-color:rgba(245, 154, 35, 1);
  8603. border:none;
  8604. border-radius:4px;
  8605. -moz-box-shadow:none;
  8606. -webkit-box-shadow:none;
  8607. box-shadow:none;
  8608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8609. font-weight:400;
  8610. font-style:normal;
  8611. font-size:10px;
  8612. color:#FFFFFF;
  8613. }
  8614. #u41979 {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:2010px;
  8618. top:393px;
  8619. width:27px;
  8620. height:15px;
  8621. display:flex;
  8622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8623. font-weight:400;
  8624. font-style:normal;
  8625. font-size:10px;
  8626. color:#FFFFFF;
  8627. }
  8628. #u41979 .text {
  8629. position:absolute;
  8630. align-self:center;
  8631. padding:5px 0px 5px 0px;
  8632. box-sizing:border-box;
  8633. width:100%;
  8634. }
  8635. #u41979_text {
  8636. border-width:0px;
  8637. word-wrap:break-word;
  8638. text-transform:none;
  8639. }
  8640. #u41980_div {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:0px;
  8644. top:0px;
  8645. width:27px;
  8646. height:15px;
  8647. background:inherit;
  8648. background-color:rgba(0, 191, 191, 1);
  8649. border:none;
  8650. border-radius:4px;
  8651. -moz-box-shadow:none;
  8652. -webkit-box-shadow:none;
  8653. box-shadow:none;
  8654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8655. font-weight:400;
  8656. font-style:normal;
  8657. font-size:10px;
  8658. color:#FFFFFF;
  8659. }
  8660. #u41980 {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:2311px;
  8664. top:192px;
  8665. width:27px;
  8666. height:15px;
  8667. display:flex;
  8668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8669. font-weight:400;
  8670. font-style:normal;
  8671. font-size:10px;
  8672. color:#FFFFFF;
  8673. }
  8674. #u41980 .text {
  8675. position:absolute;
  8676. align-self:center;
  8677. padding:5px 0px 5px 0px;
  8678. box-sizing:border-box;
  8679. width:100%;
  8680. }
  8681. #u41980_text {
  8682. border-width:0px;
  8683. word-wrap:break-word;
  8684. text-transform:none;
  8685. }
  8686. #u41981_div {
  8687. border-width:0px;
  8688. position:absolute;
  8689. left:0px;
  8690. top:0px;
  8691. width:27px;
  8692. height:15px;
  8693. background:inherit;
  8694. background-color:rgba(0, 191, 191, 1);
  8695. border:none;
  8696. border-radius:4px;
  8697. -moz-box-shadow:none;
  8698. -webkit-box-shadow:none;
  8699. box-shadow:none;
  8700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8701. font-weight:400;
  8702. font-style:normal;
  8703. font-size:10px;
  8704. color:#FFFFFF;
  8705. }
  8706. #u41981 {
  8707. border-width:0px;
  8708. position:absolute;
  8709. left:2311px;
  8710. top:396px;
  8711. width:27px;
  8712. height:15px;
  8713. display:flex;
  8714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8715. font-weight:400;
  8716. font-style:normal;
  8717. font-size:10px;
  8718. color:#FFFFFF;
  8719. }
  8720. #u41981 .text {
  8721. position:absolute;
  8722. align-self:center;
  8723. padding:5px 0px 5px 0px;
  8724. box-sizing:border-box;
  8725. width:100%;
  8726. }
  8727. #u41981_text {
  8728. border-width:0px;
  8729. word-wrap:break-word;
  8730. text-transform:none;
  8731. }
  8732. #u41982_div {
  8733. border-width:0px;
  8734. position:absolute;
  8735. left:0px;
  8736. top:0px;
  8737. width:27px;
  8738. height:15px;
  8739. background:inherit;
  8740. background-color:rgba(0, 191, 191, 1);
  8741. border:none;
  8742. border-radius:4px;
  8743. -moz-box-shadow:none;
  8744. -webkit-box-shadow:none;
  8745. box-shadow:none;
  8746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8747. font-weight:400;
  8748. font-style:normal;
  8749. font-size:10px;
  8750. color:#FFFFFF;
  8751. }
  8752. #u41982 {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:2612px;
  8756. top:393px;
  8757. width:27px;
  8758. height:15px;
  8759. display:flex;
  8760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8761. font-weight:400;
  8762. font-style:normal;
  8763. font-size:10px;
  8764. color:#FFFFFF;
  8765. }
  8766. #u41982 .text {
  8767. position:absolute;
  8768. align-self:center;
  8769. padding:5px 0px 5px 0px;
  8770. box-sizing:border-box;
  8771. width:100%;
  8772. }
  8773. #u41982_text {
  8774. border-width:0px;
  8775. word-wrap:break-word;
  8776. text-transform:none;
  8777. }
  8778. #u41983_div {
  8779. border-width:0px;
  8780. position:absolute;
  8781. left:0px;
  8782. top:0px;
  8783. width:27px;
  8784. height:15px;
  8785. background:inherit;
  8786. background-color:rgba(0, 191, 191, 1);
  8787. border:none;
  8788. border-radius:4px;
  8789. -moz-box-shadow:none;
  8790. -webkit-box-shadow:none;
  8791. box-shadow:none;
  8792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8793. font-weight:400;
  8794. font-style:normal;
  8795. font-size:10px;
  8796. color:#FFFFFF;
  8797. }
  8798. #u41983 {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:2311px;
  8802. top:616px;
  8803. width:27px;
  8804. height:15px;
  8805. display:flex;
  8806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8807. font-weight:400;
  8808. font-style:normal;
  8809. font-size:10px;
  8810. color:#FFFFFF;
  8811. }
  8812. #u41983 .text {
  8813. position:absolute;
  8814. align-self:center;
  8815. padding:5px 0px 5px 0px;
  8816. box-sizing:border-box;
  8817. width:100%;
  8818. }
  8819. #u41983_text {
  8820. border-width:0px;
  8821. word-wrap:break-word;
  8822. text-transform:none;
  8823. }
  8824. #u41984_div {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:0px;
  8828. top:0px;
  8829. width:27px;
  8830. height:15px;
  8831. background:inherit;
  8832. background-color:rgba(0, 191, 191, 1);
  8833. border:none;
  8834. border-radius:4px;
  8835. -moz-box-shadow:none;
  8836. -webkit-box-shadow:none;
  8837. box-shadow:none;
  8838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8839. font-weight:400;
  8840. font-style:normal;
  8841. font-size:10px;
  8842. color:#FFFFFF;
  8843. }
  8844. #u41984 {
  8845. border-width:0px;
  8846. position:absolute;
  8847. left:2612px;
  8848. top:612px;
  8849. width:27px;
  8850. height:15px;
  8851. display:flex;
  8852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8853. font-weight:400;
  8854. font-style:normal;
  8855. font-size:10px;
  8856. color:#FFFFFF;
  8857. }
  8858. #u41984 .text {
  8859. position:absolute;
  8860. align-self:center;
  8861. padding:5px 0px 5px 0px;
  8862. box-sizing:border-box;
  8863. width:100%;
  8864. }
  8865. #u41984_text {
  8866. border-width:0px;
  8867. word-wrap:break-word;
  8868. text-transform:none;
  8869. }
  8870. #u41985_div {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:0px;
  8874. top:0px;
  8875. width:27px;
  8876. height:15px;
  8877. background:inherit;
  8878. background-color:rgba(0, 191, 191, 1);
  8879. border:none;
  8880. border-radius:4px;
  8881. -moz-box-shadow:none;
  8882. -webkit-box-shadow:none;
  8883. box-shadow:none;
  8884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8885. font-weight:400;
  8886. font-style:normal;
  8887. font-size:10px;
  8888. color:#FFFFFF;
  8889. }
  8890. #u41985 {
  8891. border-width:0px;
  8892. position:absolute;
  8893. left:2010px;
  8894. top:616px;
  8895. width:27px;
  8896. height:15px;
  8897. display:flex;
  8898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8899. font-weight:400;
  8900. font-style:normal;
  8901. font-size:10px;
  8902. color:#FFFFFF;
  8903. }
  8904. #u41985 .text {
  8905. position:absolute;
  8906. align-self:center;
  8907. padding:5px 0px 5px 0px;
  8908. box-sizing:border-box;
  8909. width:100%;
  8910. }
  8911. #u41985_text {
  8912. border-width:0px;
  8913. word-wrap:break-word;
  8914. text-transform:none;
  8915. }
  8916. #u41986_div {
  8917. border-width:0px;
  8918. position:absolute;
  8919. left:0px;
  8920. top:0px;
  8921. width:27px;
  8922. height:15px;
  8923. background:inherit;
  8924. background-color:rgba(0, 191, 191, 1);
  8925. border:none;
  8926. border-radius:4px;
  8927. -moz-box-shadow:none;
  8928. -webkit-box-shadow:none;
  8929. box-shadow:none;
  8930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8931. font-weight:400;
  8932. font-style:normal;
  8933. font-size:10px;
  8934. color:#FFFFFF;
  8935. }
  8936. #u41986 {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:2311px;
  8940. top:831px;
  8941. width:27px;
  8942. height:15px;
  8943. display:flex;
  8944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8945. font-weight:400;
  8946. font-style:normal;
  8947. font-size:10px;
  8948. color:#FFFFFF;
  8949. }
  8950. #u41986 .text {
  8951. position:absolute;
  8952. align-self:center;
  8953. padding:5px 0px 5px 0px;
  8954. box-sizing:border-box;
  8955. width:100%;
  8956. }
  8957. #u41986_text {
  8958. border-width:0px;
  8959. word-wrap:break-word;
  8960. text-transform:none;
  8961. }
  8962. #u41987_div {
  8963. border-width:0px;
  8964. position:absolute;
  8965. left:0px;
  8966. top:0px;
  8967. width:27px;
  8968. height:15px;
  8969. background:inherit;
  8970. background-color:rgba(0, 191, 191, 1);
  8971. border:none;
  8972. border-radius:4px;
  8973. -moz-box-shadow:none;
  8974. -webkit-box-shadow:none;
  8975. box-shadow:none;
  8976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8977. font-weight:400;
  8978. font-style:normal;
  8979. font-size:10px;
  8980. color:#FFFFFF;
  8981. }
  8982. #u41987 {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:2612px;
  8986. top:827px;
  8987. width:27px;
  8988. height:15px;
  8989. display:flex;
  8990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8991. font-weight:400;
  8992. font-style:normal;
  8993. font-size:10px;
  8994. color:#FFFFFF;
  8995. }
  8996. #u41987 .text {
  8997. position:absolute;
  8998. align-self:center;
  8999. padding:5px 0px 5px 0px;
  9000. box-sizing:border-box;
  9001. width:100%;
  9002. }
  9003. #u41987_text {
  9004. border-width:0px;
  9005. word-wrap:break-word;
  9006. text-transform:none;
  9007. }
  9008. #u41988_div {
  9009. border-width:0px;
  9010. position:absolute;
  9011. left:0px;
  9012. top:0px;
  9013. width:27px;
  9014. height:15px;
  9015. background:inherit;
  9016. background-color:rgba(0, 191, 191, 1);
  9017. border:none;
  9018. border-radius:4px;
  9019. -moz-box-shadow:none;
  9020. -webkit-box-shadow:none;
  9021. box-shadow:none;
  9022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:10px;
  9026. color:#FFFFFF;
  9027. }
  9028. #u41988 {
  9029. border-width:0px;
  9030. position:absolute;
  9031. left:2010px;
  9032. top:831px;
  9033. width:27px;
  9034. height:15px;
  9035. display:flex;
  9036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9037. font-weight:400;
  9038. font-style:normal;
  9039. font-size:10px;
  9040. color:#FFFFFF;
  9041. }
  9042. #u41988 .text {
  9043. position:absolute;
  9044. align-self:center;
  9045. padding:5px 0px 5px 0px;
  9046. box-sizing:border-box;
  9047. width:100%;
  9048. }
  9049. #u41988_text {
  9050. border-width:0px;
  9051. word-wrap:break-word;
  9052. text-transform:none;
  9053. }
  9054. #u41989_div {
  9055. border-width:0px;
  9056. position:absolute;
  9057. left:0px;
  9058. top:0px;
  9059. width:103px;
  9060. height:50px;
  9061. background:inherit;
  9062. background-color:rgba(255, 255, 255, 0);
  9063. border:none;
  9064. border-left:0px;
  9065. border-top:0px;
  9066. border-right:0px;
  9067. border-radius:0px;
  9068. border-bottom-right-radius:0px;
  9069. border-bottom-left-radius:0px;
  9070. -moz-box-shadow:none;
  9071. -webkit-box-shadow:none;
  9072. box-shadow:none;
  9073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9074. font-weight:400;
  9075. font-style:normal;
  9076. font-size:18px;
  9077. text-align:right;
  9078. }
  9079. #u41989 {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:2812px;
  9083. top:1029px;
  9084. width:103px;
  9085. height:50px;
  9086. display:flex;
  9087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9088. font-weight:400;
  9089. font-style:normal;
  9090. font-size:18px;
  9091. text-align:right;
  9092. }
  9093. #u41989 .text {
  9094. position:absolute;
  9095. align-self:center;
  9096. padding:0px 0px 0px 0px;
  9097. box-sizing:border-box;
  9098. width:100%;
  9099. }
  9100. #u41989_text {
  9101. border-width:0px;
  9102. white-space:nowrap;
  9103. text-transform:none;
  9104. }
  9105. #u41990_div {
  9106. border-width:0px;
  9107. position:absolute;
  9108. left:0px;
  9109. top:0px;
  9110. width:763px;
  9111. height:66px;
  9112. background:inherit;
  9113. background-color:rgba(255, 255, 255, 0);
  9114. border:none;
  9115. border-radius:0px;
  9116. -moz-box-shadow:none;
  9117. -webkit-box-shadow:none;
  9118. box-shadow:none;
  9119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9120. font-weight:400;
  9121. font-style:normal;
  9122. font-size:16px;
  9123. color:#D9001B;
  9124. }
  9125. #u41990 {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:382px;
  9129. top:1073px;
  9130. width:763px;
  9131. height:66px;
  9132. display:flex;
  9133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9134. font-weight:400;
  9135. font-style:normal;
  9136. font-size:16px;
  9137. color:#D9001B;
  9138. }
  9139. #u41990 .text {
  9140. position:absolute;
  9141. align-self:flex-start;
  9142. padding:0px 0px 0px 0px;
  9143. box-sizing:border-box;
  9144. width:100%;
  9145. }
  9146. #u41990_text {
  9147. border-width:0px;
  9148. white-space:nowrap;
  9149. text-transform:none;
  9150. }
  9151. #u41991_div {
  9152. border-width:0px;
  9153. position:absolute;
  9154. left:0px;
  9155. top:0px;
  9156. width:29px;
  9157. height:50px;
  9158. background:inherit;
  9159. background-color:rgba(255, 255, 255, 0);
  9160. border:none;
  9161. border-left:0px;
  9162. border-top:0px;
  9163. border-right:0px;
  9164. border-radius:0px;
  9165. border-bottom-right-radius:0px;
  9166. border-bottom-left-radius:0px;
  9167. -moz-box-shadow:none;
  9168. -webkit-box-shadow:none;
  9169. box-shadow:none;
  9170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9171. font-weight:400;
  9172. font-style:normal;
  9173. font-size:14px;
  9174. color:#1890FF;
  9175. }
  9176. #u41991 {
  9177. border-width:0px;
  9178. position:absolute;
  9179. left:3199px;
  9180. top:612px;
  9181. width:29px;
  9182. height:50px;
  9183. display:flex;
  9184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9185. font-weight:400;
  9186. font-style:normal;
  9187. font-size:14px;
  9188. color:#1890FF;
  9189. }
  9190. #u41991 .text {
  9191. position:absolute;
  9192. align-self:center;
  9193. padding:0px 0px 0px 0px;
  9194. box-sizing:border-box;
  9195. width:100%;
  9196. }
  9197. #u41991_text {
  9198. border-width:0px;
  9199. white-space:nowrap;
  9200. text-transform:none;
  9201. }
  9202. #u41992_div {
  9203. border-width:0px;
  9204. position:absolute;
  9205. left:0px;
  9206. top:0px;
  9207. width:29px;
  9208. height:50px;
  9209. background:inherit;
  9210. background-color:rgba(255, 255, 255, 0);
  9211. border:none;
  9212. border-left:0px;
  9213. border-top:0px;
  9214. border-right:0px;
  9215. border-radius:0px;
  9216. border-bottom-right-radius:0px;
  9217. border-bottom-left-radius:0px;
  9218. -moz-box-shadow:none;
  9219. -webkit-box-shadow:none;
  9220. box-shadow:none;
  9221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9222. font-weight:400;
  9223. font-style:normal;
  9224. font-size:14px;
  9225. color:#1890FF;
  9226. }
  9227. #u41992 {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:3199px;
  9231. top:315px;
  9232. width:29px;
  9233. height:50px;
  9234. display:flex;
  9235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9236. font-weight:400;
  9237. font-style:normal;
  9238. font-size:14px;
  9239. color:#1890FF;
  9240. }
  9241. #u41992 .text {
  9242. position:absolute;
  9243. align-self:center;
  9244. padding:0px 0px 0px 0px;
  9245. box-sizing:border-box;
  9246. width:100%;
  9247. }
  9248. #u41992_text {
  9249. border-width:0px;
  9250. white-space:nowrap;
  9251. text-transform:none;
  9252. }
  9253. #u41993 {
  9254. border-width:0px;
  9255. position:absolute;
  9256. left:0px;
  9257. top:0px;
  9258. width:0px;
  9259. height:0px;
  9260. }
  9261. #u41994_div {
  9262. border-width:0px;
  9263. position:absolute;
  9264. left:0px;
  9265. top:0px;
  9266. width:200px;
  9267. height:1187px;
  9268. background:inherit;
  9269. background-color:rgba(255, 255, 255, 1);
  9270. border:none;
  9271. border-radius:0px;
  9272. -moz-box-shadow:none;
  9273. -webkit-box-shadow:none;
  9274. box-shadow:none;
  9275. }
  9276. #u41994 {
  9277. border-width:0px;
  9278. position:absolute;
  9279. left:120px;
  9280. top:50px;
  9281. width:200px;
  9282. height:1187px;
  9283. display:flex;
  9284. }
  9285. #u41994 .text {
  9286. position:absolute;
  9287. align-self:center;
  9288. padding:2px 2px 2px 2px;
  9289. box-sizing:border-box;
  9290. width:100%;
  9291. }
  9292. #u41994_text {
  9293. border-width:0px;
  9294. word-wrap:break-word;
  9295. text-transform:none;
  9296. visibility:hidden;
  9297. }
  9298. #u41995_div {
  9299. border-width:0px;
  9300. position:absolute;
  9301. left:0px;
  9302. top:0px;
  9303. width:200px;
  9304. height:60px;
  9305. background:inherit;
  9306. background-color:rgba(224, 231, 247, 1);
  9307. border:none;
  9308. border-radius:0px;
  9309. -moz-box-shadow:none;
  9310. -webkit-box-shadow:none;
  9311. box-shadow:none;
  9312. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9313. font-weight:500;
  9314. font-style:normal;
  9315. font-size:18px;
  9316. }
  9317. #u41995 {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:120px;
  9321. top:50px;
  9322. width:200px;
  9323. height:60px;
  9324. display:flex;
  9325. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9326. font-weight:500;
  9327. font-style:normal;
  9328. font-size:18px;
  9329. }
  9330. #u41995 .text {
  9331. position:absolute;
  9332. align-self:center;
  9333. padding:0px 0px 0px 20px;
  9334. box-sizing:border-box;
  9335. width:100%;
  9336. }
  9337. #u41995_text {
  9338. border-width:0px;
  9339. word-wrap:break-word;
  9340. text-transform:none;
  9341. }
  9342. #u41996_div {
  9343. border-width:0px;
  9344. position:absolute;
  9345. left:0px;
  9346. top:0px;
  9347. width:65px;
  9348. height:22px;
  9349. background:inherit;
  9350. background-color:rgba(255, 255, 255, 0);
  9351. border:none;
  9352. border-radius:0px;
  9353. -moz-box-shadow:none;
  9354. -webkit-box-shadow:none;
  9355. box-shadow:none;
  9356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9357. font-weight:400;
  9358. font-style:normal;
  9359. font-size:16px;
  9360. }
  9361. #u41996 {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:147px;
  9365. top:204px;
  9366. width:65px;
  9367. height:22px;
  9368. display:flex;
  9369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9370. font-weight:400;
  9371. font-style:normal;
  9372. font-size:16px;
  9373. }
  9374. #u41996 .text {
  9375. position:absolute;
  9376. align-self:flex-start;
  9377. padding:0px 0px 0px 0px;
  9378. box-sizing:border-box;
  9379. width:100%;
  9380. }
  9381. #u41996_text {
  9382. border-width:0px;
  9383. white-space:nowrap;
  9384. text-transform:none;
  9385. }
  9386. #u41997_div {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:0px;
  9390. top:0px;
  9391. width:49px;
  9392. height:17px;
  9393. background:inherit;
  9394. background-color:rgba(255, 255, 255, 0);
  9395. border:none;
  9396. border-radius:0px;
  9397. -moz-box-shadow:none;
  9398. -webkit-box-shadow:none;
  9399. box-shadow:none;
  9400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9401. font-weight:400;
  9402. font-style:normal;
  9403. font-size:12px;
  9404. color:#AAAAAA;
  9405. }
  9406. #u41997 {
  9407. border-width:0px;
  9408. position:absolute;
  9409. left:147px;
  9410. top:125px;
  9411. width:49px;
  9412. height:17px;
  9413. display:flex;
  9414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9415. font-weight:400;
  9416. font-style:normal;
  9417. font-size:12px;
  9418. color:#AAAAAA;
  9419. }
  9420. #u41997 .text {
  9421. position:absolute;
  9422. align-self:flex-start;
  9423. padding:0px 0px 0px 0px;
  9424. box-sizing:border-box;
  9425. width:100%;
  9426. }
  9427. #u41997_text {
  9428. border-width:0px;
  9429. white-space:nowrap;
  9430. text-transform:none;
  9431. }
  9432. #u41998_div {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:0px;
  9436. top:0px;
  9437. width:49px;
  9438. height:17px;
  9439. background:inherit;
  9440. background-color:rgba(255, 255, 255, 0);
  9441. border:none;
  9442. border-radius:0px;
  9443. -moz-box-shadow:none;
  9444. -webkit-box-shadow:none;
  9445. box-shadow:none;
  9446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9447. font-weight:400;
  9448. font-style:normal;
  9449. font-size:12px;
  9450. color:#AAAAAA;
  9451. }
  9452. #u41998 {
  9453. border-width:0px;
  9454. position:absolute;
  9455. left:147px;
  9456. top:371px;
  9457. width:49px;
  9458. height:17px;
  9459. display:flex;
  9460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9461. font-weight:400;
  9462. font-style:normal;
  9463. font-size:12px;
  9464. color:#AAAAAA;
  9465. }
  9466. #u41998 .text {
  9467. position:absolute;
  9468. align-self:flex-start;
  9469. padding:0px 0px 0px 0px;
  9470. box-sizing:border-box;
  9471. width:100%;
  9472. }
  9473. #u41998_text {
  9474. border-width:0px;
  9475. white-space:nowrap;
  9476. text-transform:none;
  9477. }
  9478. #u41999_img {
  9479. border-width:0px;
  9480. position:absolute;
  9481. left:0px;
  9482. top:0px;
  9483. width:201px;
  9484. height:2px;
  9485. }
  9486. #u41999 {
  9487. border-width:0px;
  9488. position:absolute;
  9489. left:120px;
  9490. top:349px;
  9491. width:200px;
  9492. height:1px;
  9493. display:flex;
  9494. }
  9495. #u41999 .text {
  9496. position:absolute;
  9497. align-self:center;
  9498. padding:2px 2px 2px 2px;
  9499. box-sizing:border-box;
  9500. width:100%;
  9501. }
  9502. #u41999_text {
  9503. border-width:0px;
  9504. word-wrap:break-word;
  9505. text-transform:none;
  9506. visibility:hidden;
  9507. }
  9508. #u42000_div {
  9509. border-width:0px;
  9510. position:absolute;
  9511. left:0px;
  9512. top:0px;
  9513. width:65px;
  9514. height:22px;
  9515. background:inherit;
  9516. background-color:rgba(255, 255, 255, 0);
  9517. border:none;
  9518. border-radius:0px;
  9519. -moz-box-shadow:none;
  9520. -webkit-box-shadow:none;
  9521. box-shadow:none;
  9522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9523. font-weight:400;
  9524. font-style:normal;
  9525. font-size:16px;
  9526. }
  9527. #u42000 {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:147px;
  9531. top:309px;
  9532. width:65px;
  9533. height:22px;
  9534. display:flex;
  9535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9536. font-weight:400;
  9537. font-style:normal;
  9538. font-size:16px;
  9539. }
  9540. #u42000 .text {
  9541. position:absolute;
  9542. align-self:flex-start;
  9543. padding:0px 0px 0px 0px;
  9544. box-sizing:border-box;
  9545. width:100%;
  9546. }
  9547. #u42000_text {
  9548. border-width:0px;
  9549. white-space:nowrap;
  9550. text-transform:none;
  9551. }
  9552. #u42001_div {
  9553. border-width:0px;
  9554. position:absolute;
  9555. left:0px;
  9556. top:0px;
  9557. width:49px;
  9558. height:17px;
  9559. background:inherit;
  9560. background-color:rgba(255, 255, 255, 0);
  9561. border:none;
  9562. border-radius:0px;
  9563. -moz-box-shadow:none;
  9564. -webkit-box-shadow:none;
  9565. box-shadow:none;
  9566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9567. font-weight:400;
  9568. font-style:normal;
  9569. font-size:12px;
  9570. color:#AAAAAA;
  9571. }
  9572. #u42001 {
  9573. border-width:0px;
  9574. position:absolute;
  9575. left:147px;
  9576. top:273px;
  9577. width:49px;
  9578. height:17px;
  9579. display:flex;
  9580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9581. font-weight:400;
  9582. font-style:normal;
  9583. font-size:12px;
  9584. color:#AAAAAA;
  9585. }
  9586. #u42001 .text {
  9587. position:absolute;
  9588. align-self:flex-start;
  9589. padding:0px 0px 0px 0px;
  9590. box-sizing:border-box;
  9591. width:100%;
  9592. }
  9593. #u42001_text {
  9594. border-width:0px;
  9595. white-space:nowrap;
  9596. text-transform:none;
  9597. }
  9598. #u42002_img {
  9599. border-width:0px;
  9600. position:absolute;
  9601. left:0px;
  9602. top:0px;
  9603. width:201px;
  9604. height:2px;
  9605. }
  9606. #u42002 {
  9607. border-width:0px;
  9608. position:absolute;
  9609. left:120px;
  9610. top:251px;
  9611. width:200px;
  9612. height:1px;
  9613. display:flex;
  9614. }
  9615. #u42002 .text {
  9616. position:absolute;
  9617. align-self:center;
  9618. padding:2px 2px 2px 2px;
  9619. box-sizing:border-box;
  9620. width:100%;
  9621. }
  9622. #u42002_text {
  9623. border-width:0px;
  9624. word-wrap:break-word;
  9625. text-transform:none;
  9626. visibility:hidden;
  9627. }
  9628. #u42003_div {
  9629. border-width:0px;
  9630. position:absolute;
  9631. left:0px;
  9632. top:0px;
  9633. width:65px;
  9634. height:22px;
  9635. background:inherit;
  9636. background-color:rgba(255, 255, 255, 0);
  9637. border:none;
  9638. border-radius:0px;
  9639. -moz-box-shadow:none;
  9640. -webkit-box-shadow:none;
  9641. box-shadow:none;
  9642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9643. font-weight:400;
  9644. font-style:normal;
  9645. font-size:16px;
  9646. }
  9647. #u42003 {
  9648. border-width:0px;
  9649. position:absolute;
  9650. left:147px;
  9651. top:162px;
  9652. width:65px;
  9653. height:22px;
  9654. display:flex;
  9655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9656. font-weight:400;
  9657. font-style:normal;
  9658. font-size:16px;
  9659. }
  9660. #u42003 .text {
  9661. position:absolute;
  9662. align-self:flex-start;
  9663. padding:0px 0px 0px 0px;
  9664. box-sizing:border-box;
  9665. width:100%;
  9666. }
  9667. #u42003_text {
  9668. border-width:0px;
  9669. white-space:nowrap;
  9670. text-transform:none;
  9671. }
  9672. #u42004_div {
  9673. border-width:0px;
  9674. position:absolute;
  9675. left:0px;
  9676. top:0px;
  9677. width:65px;
  9678. height:22px;
  9679. background:inherit;
  9680. background-color:rgba(255, 255, 255, 0);
  9681. border:none;
  9682. border-radius:0px;
  9683. -moz-box-shadow:none;
  9684. -webkit-box-shadow:none;
  9685. box-shadow:none;
  9686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9687. font-weight:400;
  9688. font-style:normal;
  9689. font-size:16px;
  9690. }
  9691. #u42004 {
  9692. border-width:0px;
  9693. position:absolute;
  9694. left:148px;
  9695. top:448px;
  9696. width:65px;
  9697. height:22px;
  9698. display:flex;
  9699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9700. font-weight:400;
  9701. font-style:normal;
  9702. font-size:16px;
  9703. }
  9704. #u42004 .text {
  9705. position:absolute;
  9706. align-self:flex-start;
  9707. padding:0px 0px 0px 0px;
  9708. box-sizing:border-box;
  9709. width:100%;
  9710. }
  9711. #u42004_text {
  9712. border-width:0px;
  9713. white-space:nowrap;
  9714. text-transform:none;
  9715. }
  9716. #u42005_div {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:0px;
  9720. top:0px;
  9721. width:65px;
  9722. height:22px;
  9723. background:inherit;
  9724. background-color:rgba(255, 255, 255, 0);
  9725. border:none;
  9726. border-radius:0px;
  9727. -moz-box-shadow:none;
  9728. -webkit-box-shadow:none;
  9729. box-shadow:none;
  9730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9731. font-weight:400;
  9732. font-style:normal;
  9733. font-size:16px;
  9734. }
  9735. #u42005 {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:148px;
  9739. top:406px;
  9740. width:65px;
  9741. height:22px;
  9742. display:flex;
  9743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9744. font-weight:400;
  9745. font-style:normal;
  9746. font-size:16px;
  9747. }
  9748. #u42005 .text {
  9749. position:absolute;
  9750. align-self:flex-start;
  9751. padding:0px 0px 0px 0px;
  9752. box-sizing:border-box;
  9753. width:100%;
  9754. }
  9755. #u42005_text {
  9756. border-width:0px;
  9757. white-space:nowrap;
  9758. text-transform:none;
  9759. }