styles.css 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:464px;
  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. #u38619_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. #u38619 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u38619 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u38619_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u38620_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. #u38620 {
  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. #u38620 .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. #u38620_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u38621_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. #u38621 {
  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. #u38621 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u38621_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u38622 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u38623_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u38623 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u38623 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u38623_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u38624_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. #u38624 {
  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. #u38624 .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. #u38624_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u38625_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. #u38625 {
  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. #u38625 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u38625_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u38626 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u38627_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. #u38627_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. #u38627_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. #u38627 {
  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. #u38627 .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. #u38627_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. #u38627.disabled {
  356. }
  357. .u38627_input_option {
  358. font-size:14px;
  359. }
  360. #u38628_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u38628 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u38628 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u38628_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u38629_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. #u38629 {
  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. #u38629 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u38629_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u38630_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. #u38630 {
  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. #u38630 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u38630_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u38631 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u38632_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. #u38632 {
  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. #u38632 .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. #u38632_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u38633_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u38633 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u38633 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u38633_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u38634 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u38635_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. #u38635 {
  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. #u38635 .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. #u38635_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u38636_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u38636 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u38636 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u38636_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u38637 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u38638_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. #u38638 {
  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. #u38638 .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. #u38638_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u38639_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u38639 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u38639 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u38639_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u38640 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u38641_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. #u38641 {
  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. #u38641 .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. #u38641_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u38642_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u38642 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u38642 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u38642_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u38643 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u38644_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. #u38644 {
  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. #u38644 .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. #u38644_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u38645_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u38645 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u38645 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u38645_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u38646 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u38647_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. #u38647 {
  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. #u38647 .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. #u38647_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u38648_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u38648 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u38648 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u38648_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u38649 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u38650_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. #u38650 {
  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. #u38650 .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. #u38650_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u38651_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u38651 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u38651 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u38651_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u38652 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u38653_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. #u38653 {
  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. #u38653 .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. #u38653_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u38654_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u38654 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u38654 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u38654_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u38655 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u38656_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. #u38656 {
  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. #u38656 .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. #u38656_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u38657_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u38657 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u38657 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u38657_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u38658 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u38659_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. #u38659 {
  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. #u38659 .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. #u38659_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u38660_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u38660 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u38660 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u38660_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u38661_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. #u38661 {
  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. #u38661 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u38661_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u38662_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u38662 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u38662 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u38662_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u38663_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. #u38663 {
  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. #u38663 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u38663_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u38664_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u38664 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u38664 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u38664_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u38665 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u38666_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. #u38666 {
  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. #u38666 .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. #u38666_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u38667_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u38667 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u38667 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u38667_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u38668 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u38669_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. #u38669 {
  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. #u38669 .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. #u38669_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u38670_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u38670 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u38670 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u38670_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u38671 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u38672_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:200px;
  1652. height:1180px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. }
  1661. #u38672 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:-1136px;
  1665. top:49px;
  1666. width:200px;
  1667. height:1180px;
  1668. display:flex;
  1669. }
  1670. #u38672 .text {
  1671. position:absolute;
  1672. align-self:center;
  1673. padding:2px 2px 2px 2px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u38672_text {
  1678. border-width:0px;
  1679. word-wrap:break-word;
  1680. text-transform:none;
  1681. visibility:hidden;
  1682. }
  1683. #u38673_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:200px;
  1689. height:60px;
  1690. background:inherit;
  1691. background-color:rgba(224, 231, 247, 1);
  1692. border:none;
  1693. border-radius:0px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1698. font-weight:500;
  1699. font-style:normal;
  1700. font-size:18px;
  1701. }
  1702. #u38673 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:-1136px;
  1706. top:49px;
  1707. width:200px;
  1708. height:60px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1711. font-weight:500;
  1712. font-style:normal;
  1713. font-size:18px;
  1714. }
  1715. #u38673 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:0px 0px 0px 20px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u38673_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. }
  1727. #u38674_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:65px;
  1733. height:22px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 0);
  1736. border:none;
  1737. border-radius:0px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:16px;
  1745. color:#1890FF;
  1746. }
  1747. #u38674 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:-1109px;
  1751. top:130px;
  1752. width:65px;
  1753. height:22px;
  1754. display:flex;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:16px;
  1759. color:#1890FF;
  1760. }
  1761. #u38674 .text {
  1762. position:absolute;
  1763. align-self:flex-start;
  1764. padding:0px 0px 0px 0px;
  1765. box-sizing:border-box;
  1766. width:100%;
  1767. }
  1768. #u38674_text {
  1769. border-width:0px;
  1770. white-space:nowrap;
  1771. text-transform:none;
  1772. }
  1773. #u38675_div {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:65px;
  1779. height:22px;
  1780. background:inherit;
  1781. background-color:rgba(255, 255, 255, 0);
  1782. border:none;
  1783. border-radius:0px;
  1784. -moz-box-shadow:none;
  1785. -webkit-box-shadow:none;
  1786. box-shadow:none;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:16px;
  1791. }
  1792. #u38675 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:-1109px;
  1796. top:172px;
  1797. width:65px;
  1798. height:22px;
  1799. display:flex;
  1800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1801. font-weight:400;
  1802. font-style:normal;
  1803. font-size:16px;
  1804. }
  1805. #u38675 .text {
  1806. position:absolute;
  1807. align-self:flex-start;
  1808. padding:0px 0px 0px 0px;
  1809. box-sizing:border-box;
  1810. width:100%;
  1811. }
  1812. #u38675_text {
  1813. border-width:0px;
  1814. white-space:nowrap;
  1815. text-transform:none;
  1816. }
  1817. #u38676_div {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:65px;
  1823. height:22px;
  1824. background:inherit;
  1825. background-color:rgba(255, 255, 255, 0);
  1826. border:none;
  1827. border-radius:0px;
  1828. -moz-box-shadow:none;
  1829. -webkit-box-shadow:none;
  1830. box-shadow:none;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:16px;
  1835. }
  1836. #u38676 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:-1109px;
  1840. top:214px;
  1841. width:65px;
  1842. height:22px;
  1843. display:flex;
  1844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1845. font-weight:400;
  1846. font-style:normal;
  1847. font-size:16px;
  1848. }
  1849. #u38676 .text {
  1850. position:absolute;
  1851. align-self:flex-start;
  1852. padding:0px 0px 0px 0px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u38676_text {
  1857. border-width:0px;
  1858. white-space:nowrap;
  1859. text-transform:none;
  1860. }
  1861. #u38677_div {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:1255px;
  1867. height:1176px;
  1868. background:inherit;
  1869. background-color:rgba(255, 255, 255, 1);
  1870. border:none;
  1871. border-radius:0px;
  1872. -moz-box-shadow:none;
  1873. -webkit-box-shadow:none;
  1874. box-shadow:none;
  1875. }
  1876. #u38677 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:333px;
  1880. top:51px;
  1881. width:1255px;
  1882. height:1176px;
  1883. display:flex;
  1884. }
  1885. #u38677 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:2px 2px 2px 2px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u38677_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. visibility:hidden;
  1897. }
  1898. #u38678 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:0px;
  1904. height:0px;
  1905. }
  1906. #u38679_img {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:993px;
  1912. height:950px;
  1913. }
  1914. #u38679 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:582px;
  1918. top:115px;
  1919. width:993px;
  1920. height:950px;
  1921. display:flex;
  1922. }
  1923. #u38679 .text {
  1924. position:absolute;
  1925. align-self:center;
  1926. padding:2px 2px 2px 2px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u38679_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. visibility:hidden;
  1935. }
  1936. #u38680_div {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:29px;
  1942. height:17px;
  1943. background:inherit;
  1944. background-color:rgba(0, 191, 191, 1);
  1945. border:none;
  1946. border-radius:4px;
  1947. -moz-box-shadow:none;
  1948. -webkit-box-shadow:none;
  1949. box-shadow:none;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:10px;
  1954. color:#FFFFFF;
  1955. }
  1956. #u38680 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:582px;
  1960. top:118px;
  1961. width:29px;
  1962. height:17px;
  1963. display:flex;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:10px;
  1968. color:#FFFFFF;
  1969. }
  1970. #u38680 .text {
  1971. position:absolute;
  1972. align-self:center;
  1973. padding:5px 0px 5px 0px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u38680_text {
  1978. border-width:0px;
  1979. word-wrap:break-word;
  1980. text-transform:none;
  1981. }
  1982. #u38681_div {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:29px;
  1988. height:17px;
  1989. background:inherit;
  1990. background-color:rgba(217, 0, 27, 1);
  1991. border:none;
  1992. border-radius:4px;
  1993. -moz-box-shadow:none;
  1994. -webkit-box-shadow:none;
  1995. box-shadow:none;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:10px;
  2000. color:#FFFFFF;
  2001. }
  2002. #u38681 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:1249px;
  2006. top:115px;
  2007. width:29px;
  2008. height:17px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:10px;
  2014. color:#FFFFFF;
  2015. }
  2016. #u38681 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:5px 0px 5px 0px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u38681_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. }
  2028. #u38682_div {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:29px;
  2034. height:17px;
  2035. background:inherit;
  2036. background-color:rgba(245, 154, 35, 1);
  2037. border:none;
  2038. border-radius:4px;
  2039. -moz-box-shadow:none;
  2040. -webkit-box-shadow:none;
  2041. box-shadow:none;
  2042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:10px;
  2046. color:#FFFFFF;
  2047. }
  2048. #u38682 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:582px;
  2052. top:346px;
  2053. width:29px;
  2054. height:17px;
  2055. display:flex;
  2056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:10px;
  2060. color:#FFFFFF;
  2061. }
  2062. #u38682 .text {
  2063. position:absolute;
  2064. align-self:center;
  2065. padding:5px 0px 5px 0px;
  2066. box-sizing:border-box;
  2067. width:100%;
  2068. }
  2069. #u38682_text {
  2070. border-width:0px;
  2071. word-wrap:break-word;
  2072. text-transform:none;
  2073. }
  2074. #u38683_div {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:29px;
  2080. height:17px;
  2081. background:inherit;
  2082. background-color:rgba(0, 191, 191, 1);
  2083. border:none;
  2084. border-radius:4px;
  2085. -moz-box-shadow:none;
  2086. -webkit-box-shadow:none;
  2087. box-shadow:none;
  2088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:10px;
  2092. color:#FFFFFF;
  2093. }
  2094. #u38683 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:913px;
  2098. top:115px;
  2099. width:29px;
  2100. height:17px;
  2101. display:flex;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:10px;
  2106. color:#FFFFFF;
  2107. }
  2108. #u38683 .text {
  2109. position:absolute;
  2110. align-self:center;
  2111. padding:5px 0px 5px 0px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u38683_text {
  2116. border-width:0px;
  2117. word-wrap:break-word;
  2118. text-transform:none;
  2119. }
  2120. #u38684_div {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:29px;
  2126. height:17px;
  2127. background:inherit;
  2128. background-color:rgba(0, 191, 191, 1);
  2129. border:none;
  2130. border-radius:4px;
  2131. -moz-box-shadow:none;
  2132. -webkit-box-shadow:none;
  2133. box-shadow:none;
  2134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2135. font-weight:400;
  2136. font-style:normal;
  2137. font-size:10px;
  2138. color:#FFFFFF;
  2139. }
  2140. #u38684 {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:913px;
  2144. top:349px;
  2145. width:29px;
  2146. height:17px;
  2147. display:flex;
  2148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2149. font-weight:400;
  2150. font-style:normal;
  2151. font-size:10px;
  2152. color:#FFFFFF;
  2153. }
  2154. #u38684 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:5px 0px 5px 0px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u38684_text {
  2162. border-width:0px;
  2163. word-wrap:break-word;
  2164. text-transform:none;
  2165. }
  2166. #u38685_div {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:0px;
  2170. top:0px;
  2171. width:29px;
  2172. height:17px;
  2173. background:inherit;
  2174. background-color:rgba(0, 191, 191, 1);
  2175. border:none;
  2176. border-radius:4px;
  2177. -moz-box-shadow:none;
  2178. -webkit-box-shadow:none;
  2179. box-shadow:none;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:10px;
  2184. color:#FFFFFF;
  2185. }
  2186. #u38685 {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:1243px;
  2190. top:346px;
  2191. width:29px;
  2192. height:17px;
  2193. display:flex;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:10px;
  2198. color:#FFFFFF;
  2199. }
  2200. #u38685 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:5px 0px 5px 0px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u38685_text {
  2208. border-width:0px;
  2209. word-wrap:break-word;
  2210. text-transform:none;
  2211. }
  2212. #u38686_div {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:29px;
  2218. height:17px;
  2219. background:inherit;
  2220. background-color:rgba(0, 191, 191, 1);
  2221. border:none;
  2222. border-radius:4px;
  2223. -moz-box-shadow:none;
  2224. -webkit-box-shadow:none;
  2225. box-shadow:none;
  2226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2227. font-weight:400;
  2228. font-style:normal;
  2229. font-size:10px;
  2230. color:#FFFFFF;
  2231. }
  2232. #u38686 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:913px;
  2236. top:602px;
  2237. width:29px;
  2238. height:17px;
  2239. display:flex;
  2240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2241. font-weight:400;
  2242. font-style:normal;
  2243. font-size:10px;
  2244. color:#FFFFFF;
  2245. }
  2246. #u38686 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:5px 0px 5px 0px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u38686_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. }
  2258. #u38687_div {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:29px;
  2264. height:17px;
  2265. background:inherit;
  2266. background-color:rgba(0, 191, 191, 1);
  2267. border:none;
  2268. border-radius:4px;
  2269. -moz-box-shadow:none;
  2270. -webkit-box-shadow:none;
  2271. box-shadow:none;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:10px;
  2276. color:#FFFFFF;
  2277. }
  2278. #u38687 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:1243px;
  2282. top:598px;
  2283. width:29px;
  2284. height:17px;
  2285. display:flex;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:10px;
  2290. color:#FFFFFF;
  2291. }
  2292. #u38687 .text {
  2293. position:absolute;
  2294. align-self:center;
  2295. padding:5px 0px 5px 0px;
  2296. box-sizing:border-box;
  2297. width:100%;
  2298. }
  2299. #u38687_text {
  2300. border-width:0px;
  2301. word-wrap:break-word;
  2302. text-transform:none;
  2303. }
  2304. #u38688_div {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:29px;
  2310. height:17px;
  2311. background:inherit;
  2312. background-color:rgba(0, 191, 191, 1);
  2313. border:none;
  2314. border-radius:4px;
  2315. -moz-box-shadow:none;
  2316. -webkit-box-shadow:none;
  2317. box-shadow:none;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:10px;
  2322. color:#FFFFFF;
  2323. }
  2324. #u38688 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:582px;
  2328. top:602px;
  2329. width:29px;
  2330. height:17px;
  2331. display:flex;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:10px;
  2336. color:#FFFFFF;
  2337. }
  2338. #u38688 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:5px 0px 5px 0px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u38688_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. }
  2350. #u38689_div {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:29px;
  2356. height:17px;
  2357. background:inherit;
  2358. background-color:rgba(0, 191, 191, 1);
  2359. border:none;
  2360. border-radius:4px;
  2361. -moz-box-shadow:none;
  2362. -webkit-box-shadow:none;
  2363. box-shadow:none;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:10px;
  2368. color:#FFFFFF;
  2369. }
  2370. #u38689 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:913px;
  2374. top:848px;
  2375. width:29px;
  2376. height:17px;
  2377. display:flex;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:10px;
  2382. color:#FFFFFF;
  2383. }
  2384. #u38689 .text {
  2385. position:absolute;
  2386. align-self:center;
  2387. padding:5px 0px 5px 0px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u38689_text {
  2392. border-width:0px;
  2393. word-wrap:break-word;
  2394. text-transform:none;
  2395. }
  2396. #u38690_div {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:29px;
  2402. height:17px;
  2403. background:inherit;
  2404. background-color:rgba(0, 191, 191, 1);
  2405. border:none;
  2406. border-radius:4px;
  2407. -moz-box-shadow:none;
  2408. -webkit-box-shadow:none;
  2409. box-shadow:none;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:10px;
  2414. color:#FFFFFF;
  2415. }
  2416. #u38690 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:1243px;
  2420. top:845px;
  2421. width:29px;
  2422. height:17px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:10px;
  2428. color:#FFFFFF;
  2429. }
  2430. #u38690 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:5px 0px 5px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u38690_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u38691_div {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:29px;
  2448. height:17px;
  2449. background:inherit;
  2450. background-color:rgba(0, 191, 191, 1);
  2451. border:none;
  2452. border-radius:4px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:10px;
  2460. color:#FFFFFF;
  2461. }
  2462. #u38691 {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:582px;
  2466. top:848px;
  2467. width:29px;
  2468. height:17px;
  2469. display:flex;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:10px;
  2474. color:#FFFFFF;
  2475. }
  2476. #u38691 .text {
  2477. position:absolute;
  2478. align-self:center;
  2479. padding:5px 0px 5px 0px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u38691_text {
  2484. border-width:0px;
  2485. word-wrap:break-word;
  2486. text-transform:none;
  2487. }
  2488. #u38692_div {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:73px;
  2494. height:50px;
  2495. background:inherit;
  2496. background-color:rgba(255, 255, 255, 0);
  2497. border:none;
  2498. border-left:0px;
  2499. border-top:0px;
  2500. border-right:0px;
  2501. border-radius:0px;
  2502. border-bottom-right-radius:0px;
  2503. border-bottom-left-radius:0px;
  2504. -moz-box-shadow:none;
  2505. -webkit-box-shadow:none;
  2506. box-shadow:none;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:18px;
  2511. }
  2512. #u38692 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:352px;
  2516. top:51px;
  2517. width:73px;
  2518. height:50px;
  2519. display:flex;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:18px;
  2524. }
  2525. #u38692 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:0px 0px 0px 0px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u38692_text {
  2533. border-width:0px;
  2534. white-space:nowrap;
  2535. text-transform:none;
  2536. }
  2537. #u38693_div {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:191px;
  2543. height:435px;
  2544. background:inherit;
  2545. background-color:rgba(242, 242, 242, 1);
  2546. border:none;
  2547. border-radius:4px;
  2548. -moz-box-shadow:none;
  2549. -webkit-box-shadow:none;
  2550. box-shadow:none;
  2551. }
  2552. #u38693 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:351px;
  2556. top:321px;
  2557. width:191px;
  2558. height:435px;
  2559. display:flex;
  2560. }
  2561. #u38693 .text {
  2562. position:absolute;
  2563. align-self:center;
  2564. padding:2px 2px 2px 2px;
  2565. box-sizing:border-box;
  2566. width:100%;
  2567. }
  2568. #u38693_text {
  2569. border-width:0px;
  2570. word-wrap:break-word;
  2571. text-transform:none;
  2572. visibility:hidden;
  2573. }
  2574. #u38694_div {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:57px;
  2580. height:30px;
  2581. background:inherit;
  2582. background-color:rgba(255, 255, 255, 0);
  2583. border:none;
  2584. border-radius:0px;
  2585. -moz-box-shadow:none;
  2586. -webkit-box-shadow:none;
  2587. box-shadow:none;
  2588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2589. font-weight:500;
  2590. font-style:normal;
  2591. font-size:14px;
  2592. color:#000000;
  2593. line-height:30px;
  2594. }
  2595. #u38694 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:351px;
  2599. top:99px;
  2600. width:57px;
  2601. height:30px;
  2602. display:flex;
  2603. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2604. font-weight:500;
  2605. font-style:normal;
  2606. font-size:14px;
  2607. color:#000000;
  2608. line-height:30px;
  2609. }
  2610. #u38694 .text {
  2611. position:absolute;
  2612. align-self:flex-start;
  2613. padding:0px 0px 0px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u38694_text {
  2618. border-width:0px;
  2619. white-space:nowrap;
  2620. text-transform:none;
  2621. }
  2622. #u38695 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:0px;
  2628. height:0px;
  2629. }
  2630. #u38696_img {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:18px;
  2636. height:18px;
  2637. }
  2638. #u38696 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:1550px;
  2642. top:67px;
  2643. width:18px;
  2644. height:18px;
  2645. display:flex;
  2646. }
  2647. #u38696 .text {
  2648. position:absolute;
  2649. align-self:center;
  2650. padding:2px 2px 2px 2px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u38696_text {
  2655. border-width:0px;
  2656. word-wrap:break-word;
  2657. text-transform:none;
  2658. visibility:hidden;
  2659. }
  2660. #u38697_img {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:0px;
  2664. top:0px;
  2665. width:2px;
  2666. height:15px;
  2667. }
  2668. #u38697 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:1535px;
  2672. top:69px;
  2673. width:1px;
  2674. height:14px;
  2675. display:flex;
  2676. }
  2677. #u38697 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 2px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u38697_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. visibility:hidden;
  2689. }
  2690. #u38698 {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:0px;
  2696. height:0px;
  2697. }
  2698. #u38699_img {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:9px;
  2704. height:9px;
  2705. }
  2706. #u38699 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:1412px;
  2710. top:66px;
  2711. width:9px;
  2712. height:9px;
  2713. display:flex;
  2714. }
  2715. #u38699 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 2px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u38699_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u38700_img {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:9px;
  2734. height:9px;
  2735. }
  2736. #u38700 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:1424px;
  2740. top:66px;
  2741. width:9px;
  2742. height:9px;
  2743. display:flex;
  2744. }
  2745. #u38700 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 2px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u38700_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u38701_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:9px;
  2764. height:9px;
  2765. }
  2766. #u38701 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:1412px;
  2770. top:78px;
  2771. width:9px;
  2772. height:9px;
  2773. display:flex;
  2774. }
  2775. #u38701 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 2px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u38701_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u38702_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:9px;
  2794. height:9px;
  2795. }
  2796. #u38702 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:1424px;
  2800. top:78px;
  2801. width:9px;
  2802. height:9px;
  2803. display:flex;
  2804. }
  2805. #u38702 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u38702_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u38703 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:0px;
  2824. height:0px;
  2825. }
  2826. #u38704_img {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:6px;
  2832. height:6px;
  2833. }
  2834. #u38704 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:1372px;
  2838. top:66px;
  2839. width:6px;
  2840. height:6px;
  2841. display:flex;
  2842. }
  2843. #u38704 .text {
  2844. position:absolute;
  2845. align-self:center;
  2846. padding:2px 2px 2px 2px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u38704_text {
  2851. border-width:0px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. visibility:hidden;
  2855. }
  2856. #u38705_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:6px;
  2862. height:6px;
  2863. }
  2864. #u38705 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:1379px;
  2868. top:66px;
  2869. width:6px;
  2870. height:6px;
  2871. display:flex;
  2872. }
  2873. #u38705 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:2px 2px 2px 2px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u38705_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. visibility:hidden;
  2885. }
  2886. #u38706_img {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:6px;
  2892. height:6px;
  2893. }
  2894. #u38706 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:1386px;
  2898. top:66px;
  2899. width:6px;
  2900. height:6px;
  2901. display:flex;
  2902. }
  2903. #u38706 .text {
  2904. position:absolute;
  2905. align-self:center;
  2906. padding:2px 2px 2px 2px;
  2907. box-sizing:border-box;
  2908. width:100%;
  2909. }
  2910. #u38706_text {
  2911. border-width:0px;
  2912. word-wrap:break-word;
  2913. text-transform:none;
  2914. visibility:hidden;
  2915. }
  2916. #u38707_img {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:6px;
  2922. height:6px;
  2923. }
  2924. #u38707 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:1372px;
  2928. top:73px;
  2929. width:6px;
  2930. height:6px;
  2931. display:flex;
  2932. }
  2933. #u38707 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 2px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u38707_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u38708_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:6px;
  2952. height:6px;
  2953. }
  2954. #u38708 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:1379px;
  2958. top:73px;
  2959. width:6px;
  2960. height:6px;
  2961. display:flex;
  2962. }
  2963. #u38708 .text {
  2964. position:absolute;
  2965. align-self:center;
  2966. padding:2px 2px 2px 2px;
  2967. box-sizing:border-box;
  2968. width:100%;
  2969. }
  2970. #u38708_text {
  2971. border-width:0px;
  2972. word-wrap:break-word;
  2973. text-transform:none;
  2974. visibility:hidden;
  2975. }
  2976. #u38709_img {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:6px;
  2982. height:6px;
  2983. }
  2984. #u38709 {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:1386px;
  2988. top:73px;
  2989. width:6px;
  2990. height:6px;
  2991. display:flex;
  2992. }
  2993. #u38709 .text {
  2994. position:absolute;
  2995. align-self:center;
  2996. padding:2px 2px 2px 2px;
  2997. box-sizing:border-box;
  2998. width:100%;
  2999. }
  3000. #u38709_text {
  3001. border-width:0px;
  3002. word-wrap:break-word;
  3003. text-transform:none;
  3004. visibility:hidden;
  3005. }
  3006. #u38710_img {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:6px;
  3012. height:6px;
  3013. }
  3014. #u38710 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:1372px;
  3018. top:80px;
  3019. width:6px;
  3020. height:6px;
  3021. display:flex;
  3022. }
  3023. #u38710 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 2px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u38710_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u38711_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:6px;
  3042. height:6px;
  3043. }
  3044. #u38711 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:1379px;
  3048. top:80px;
  3049. width:6px;
  3050. height:6px;
  3051. display:flex;
  3052. }
  3053. #u38711 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 2px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u38711_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. visibility:hidden;
  3065. }
  3066. #u38712_img {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:6px;
  3072. height:6px;
  3073. }
  3074. #u38712 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:1386px;
  3078. top:80px;
  3079. width:6px;
  3080. height:6px;
  3081. display:flex;
  3082. }
  3083. #u38712 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 2px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u38712_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. visibility:hidden;
  3095. }
  3096. #u38713 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:0px;
  3102. height:0px;
  3103. }
  3104. #u38714_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:4px;
  3110. height:4px;
  3111. }
  3112. #u38714 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:1332px;
  3116. top:67px;
  3117. width:4px;
  3118. height:4px;
  3119. display:flex;
  3120. }
  3121. #u38714 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 2px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u38714_text {
  3129. border-width:0px;
  3130. word-wrap:break-word;
  3131. text-transform:none;
  3132. visibility:hidden;
  3133. }
  3134. #u38715_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:4px;
  3140. height:4px;
  3141. }
  3142. #u38715 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:1337px;
  3146. top:67px;
  3147. width:4px;
  3148. height:4px;
  3149. display:flex;
  3150. }
  3151. #u38715 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 2px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u38715_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. visibility:hidden;
  3163. }
  3164. #u38716_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:4px;
  3170. height:4px;
  3171. }
  3172. #u38716 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:1342px;
  3176. top:67px;
  3177. width:4px;
  3178. height:4px;
  3179. display:flex;
  3180. }
  3181. #u38716 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u38716_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u38717_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:4px;
  3200. height:4px;
  3201. }
  3202. #u38717 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:1347px;
  3206. top:67px;
  3207. width:4px;
  3208. height:4px;
  3209. display:flex;
  3210. }
  3211. #u38717 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 2px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u38717_text {
  3219. border-width:0px;
  3220. word-wrap:break-word;
  3221. text-transform:none;
  3222. visibility:hidden;
  3223. }
  3224. #u38718_img {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:4px;
  3230. height:4px;
  3231. }
  3232. #u38718 {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:1332px;
  3236. top:72px;
  3237. width:4px;
  3238. height:4px;
  3239. display:flex;
  3240. }
  3241. #u38718 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:2px 2px 2px 2px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u38718_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. visibility:hidden;
  3253. }
  3254. #u38719_img {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:4px;
  3260. height:4px;
  3261. }
  3262. #u38719 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:1337px;
  3266. top:72px;
  3267. width:4px;
  3268. height:4px;
  3269. display:flex;
  3270. }
  3271. #u38719 .text {
  3272. position:absolute;
  3273. align-self:center;
  3274. padding:2px 2px 2px 2px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u38719_text {
  3279. border-width:0px;
  3280. word-wrap:break-word;
  3281. text-transform:none;
  3282. visibility:hidden;
  3283. }
  3284. #u38720_img {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:4px;
  3290. height:4px;
  3291. }
  3292. #u38720 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:1342px;
  3296. top:72px;
  3297. width:4px;
  3298. height:4px;
  3299. display:flex;
  3300. }
  3301. #u38720 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 2px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u38720_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. visibility:hidden;
  3313. }
  3314. #u38721_img {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:4px;
  3320. height:4px;
  3321. }
  3322. #u38721 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:1347px;
  3326. top:72px;
  3327. width:4px;
  3328. height:4px;
  3329. display:flex;
  3330. }
  3331. #u38721 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 2px 2px 2px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u38721_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u38722_img {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:4px;
  3350. height:4px;
  3351. }
  3352. #u38722 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:1332px;
  3356. top:77px;
  3357. width:4px;
  3358. height:4px;
  3359. display:flex;
  3360. }
  3361. #u38722 .text {
  3362. position:absolute;
  3363. align-self:center;
  3364. padding:2px 2px 2px 2px;
  3365. box-sizing:border-box;
  3366. width:100%;
  3367. }
  3368. #u38722_text {
  3369. border-width:0px;
  3370. word-wrap:break-word;
  3371. text-transform:none;
  3372. visibility:hidden;
  3373. }
  3374. #u38723_img {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:4px;
  3380. height:4px;
  3381. }
  3382. #u38723 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:1337px;
  3386. top:77px;
  3387. width:4px;
  3388. height:4px;
  3389. display:flex;
  3390. }
  3391. #u38723 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 2px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u38723_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. visibility:hidden;
  3403. }
  3404. #u38724_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:4px;
  3410. height:4px;
  3411. }
  3412. #u38724 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:1342px;
  3416. top:77px;
  3417. width:4px;
  3418. height:4px;
  3419. display:flex;
  3420. }
  3421. #u38724 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 2px 2px 2px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u38724_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. visibility:hidden;
  3433. }
  3434. #u38725_img {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:4px;
  3440. height:4px;
  3441. }
  3442. #u38725 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:1347px;
  3446. top:77px;
  3447. width:4px;
  3448. height:4px;
  3449. display:flex;
  3450. }
  3451. #u38725 .text {
  3452. position:absolute;
  3453. align-self:center;
  3454. padding:2px 2px 2px 2px;
  3455. box-sizing:border-box;
  3456. width:100%;
  3457. }
  3458. #u38725_text {
  3459. border-width:0px;
  3460. word-wrap:break-word;
  3461. text-transform:none;
  3462. visibility:hidden;
  3463. }
  3464. #u38726_img {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:0px;
  3468. top:0px;
  3469. width:4px;
  3470. height:4px;
  3471. }
  3472. #u38726 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:1332px;
  3476. top:82px;
  3477. width:4px;
  3478. height:4px;
  3479. display:flex;
  3480. }
  3481. #u38726 .text {
  3482. position:absolute;
  3483. align-self:center;
  3484. padding:2px 2px 2px 2px;
  3485. box-sizing:border-box;
  3486. width:100%;
  3487. }
  3488. #u38726_text {
  3489. border-width:0px;
  3490. word-wrap:break-word;
  3491. text-transform:none;
  3492. visibility:hidden;
  3493. }
  3494. #u38727_img {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:4px;
  3500. height:4px;
  3501. }
  3502. #u38727 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:1337px;
  3506. top:82px;
  3507. width:4px;
  3508. height:4px;
  3509. display:flex;
  3510. }
  3511. #u38727 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 2px 2px 2px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u38727_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. visibility:hidden;
  3523. }
  3524. #u38728_img {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:4px;
  3530. height:4px;
  3531. }
  3532. #u38728 {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:1342px;
  3536. top:82px;
  3537. width:4px;
  3538. height:4px;
  3539. display:flex;
  3540. }
  3541. #u38728 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 2px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u38728_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u38729_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:4px;
  3560. height:4px;
  3561. }
  3562. #u38729 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:1347px;
  3566. top:82px;
  3567. width:4px;
  3568. height:4px;
  3569. display:flex;
  3570. }
  3571. #u38729 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 2px 2px 2px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u38729_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. visibility:hidden;
  3583. }
  3584. #u38730_img {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:20px;
  3590. height:20px;
  3591. }
  3592. #u38730 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:1454px;
  3596. top:66px;
  3597. width:20px;
  3598. height:20px;
  3599. display:flex;
  3600. }
  3601. #u38730 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 2px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u38730_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. visibility:hidden;
  3613. }
  3614. #u38731_img {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:18px;
  3620. height:18px;
  3621. }
  3622. #u38731 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:1503px;
  3626. top:67px;
  3627. width:18px;
  3628. height:18px;
  3629. display:flex;
  3630. }
  3631. #u38731 .text {
  3632. position:absolute;
  3633. align-self:center;
  3634. padding:2px 2px 2px 2px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u38731_text {
  3639. border-width:0px;
  3640. word-wrap:break-word;
  3641. text-transform:none;
  3642. visibility:hidden;
  3643. }
  3644. #u38732_img {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:2px;
  3650. height:15px;
  3651. }
  3652. #u38732 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:1488px;
  3656. top:69px;
  3657. width:1px;
  3658. height:14px;
  3659. display:flex;
  3660. }
  3661. #u38732 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 2px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u38732_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u38733_div {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:43px;
  3680. height:30px;
  3681. background:inherit;
  3682. background-color:rgba(255, 255, 255, 0);
  3683. border:none;
  3684. border-radius:0px;
  3685. -moz-box-shadow:none;
  3686. -webkit-box-shadow:none;
  3687. box-shadow:none;
  3688. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3689. font-weight:500;
  3690. font-style:normal;
  3691. font-size:14px;
  3692. color:#000000;
  3693. line-height:30px;
  3694. }
  3695. #u38733 {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:351px;
  3699. top:291px;
  3700. width:43px;
  3701. height:30px;
  3702. display:flex;
  3703. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3704. font-weight:500;
  3705. font-style:normal;
  3706. font-size:14px;
  3707. color:#000000;
  3708. line-height:30px;
  3709. }
  3710. #u38733 .text {
  3711. position:absolute;
  3712. align-self:flex-start;
  3713. padding:0px 0px 0px 0px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u38733_text {
  3718. border-width:0px;
  3719. white-space:nowrap;
  3720. text-transform:none;
  3721. }
  3722. #u38734 {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:0px;
  3728. height:0px;
  3729. }
  3730. #u38735_div {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:30px;
  3736. height:30px;
  3737. background:inherit;
  3738. background-color:rgba(255, 255, 255, 1);
  3739. box-sizing:border-box;
  3740. border-width:1px;
  3741. border-style:solid;
  3742. border-color:rgba(121, 121, 121, 1);
  3743. border-radius:0px;
  3744. -moz-box-shadow:none;
  3745. -webkit-box-shadow:none;
  3746. box-shadow:none;
  3747. }
  3748. #u38735 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:352px;
  3752. top:134px;
  3753. width:30px;
  3754. height:30px;
  3755. display:flex;
  3756. }
  3757. #u38735 .text {
  3758. position:absolute;
  3759. align-self:center;
  3760. padding:2px 2px 2px 2px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u38735_text {
  3765. border-width:0px;
  3766. word-wrap:break-word;
  3767. text-transform:none;
  3768. visibility:hidden;
  3769. }
  3770. #u38736_img {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:19px;
  3776. height:18px;
  3777. }
  3778. #u38736 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:358px;
  3782. top:140px;
  3783. width:19px;
  3784. height:18px;
  3785. display:flex;
  3786. -webkit-transform:rotate(135deg);
  3787. -moz-transform:rotate(135deg);
  3788. -ms-transform:rotate(135deg);
  3789. transform:rotate(135deg);
  3790. }
  3791. #u38736 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 2px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u38736_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. visibility:hidden;
  3803. }
  3804. #u38737 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:0px;
  3810. height:0px;
  3811. }
  3812. #u38738_div {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:30px;
  3818. height:30px;
  3819. background:inherit;
  3820. background-color:rgba(255, 255, 255, 1);
  3821. box-sizing:border-box;
  3822. border-width:1px;
  3823. border-style:solid;
  3824. border-color:rgba(121, 121, 121, 1);
  3825. border-radius:0px;
  3826. -moz-box-shadow:none;
  3827. -webkit-box-shadow:none;
  3828. box-shadow:none;
  3829. }
  3830. #u38738 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:392px;
  3834. top:134px;
  3835. width:30px;
  3836. height:30px;
  3837. display:flex;
  3838. }
  3839. #u38738 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 2px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u38738_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u38739_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:19px;
  3858. height:18px;
  3859. }
  3860. #u38739 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:398px;
  3864. top:140px;
  3865. width:19px;
  3866. height:18px;
  3867. display:flex;
  3868. -webkit-transform:rotate(180deg);
  3869. -moz-transform:rotate(180deg);
  3870. -ms-transform:rotate(180deg);
  3871. transform:rotate(180deg);
  3872. }
  3873. #u38739 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 2px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u38739_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u38740 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:0px;
  3892. height:0px;
  3893. }
  3894. #u38741_div {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:30px;
  3900. height:30px;
  3901. background:inherit;
  3902. background-color:rgba(255, 255, 255, 1);
  3903. box-sizing:border-box;
  3904. border-width:1px;
  3905. border-style:solid;
  3906. border-color:rgba(121, 121, 121, 1);
  3907. border-radius:0px;
  3908. -moz-box-shadow:none;
  3909. -webkit-box-shadow:none;
  3910. box-shadow:none;
  3911. }
  3912. #u38741 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:432px;
  3916. top:134px;
  3917. width:30px;
  3918. height:30px;
  3919. display:flex;
  3920. }
  3921. #u38741 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 2px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u38741_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u38742_img {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:19px;
  3940. height:18px;
  3941. }
  3942. #u38742 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:438px;
  3946. top:140px;
  3947. width:19px;
  3948. height:18px;
  3949. display:flex;
  3950. -webkit-transform:rotate(225deg);
  3951. -moz-transform:rotate(225deg);
  3952. -ms-transform:rotate(225deg);
  3953. transform:rotate(225deg);
  3954. }
  3955. #u38742 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 2px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u38742_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. visibility:hidden;
  3967. }
  3968. #u38743 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:0px;
  3974. height:0px;
  3975. }
  3976. #u38744_div {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:30px;
  3982. height:30px;
  3983. background:inherit;
  3984. background-color:rgba(255, 255, 255, 1);
  3985. box-sizing:border-box;
  3986. border-width:1px;
  3987. border-style:solid;
  3988. border-color:rgba(121, 121, 121, 1);
  3989. border-radius:0px;
  3990. -moz-box-shadow:none;
  3991. -webkit-box-shadow:none;
  3992. box-shadow:none;
  3993. }
  3994. #u38744 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:352px;
  3998. top:174px;
  3999. width:30px;
  4000. height:30px;
  4001. display:flex;
  4002. }
  4003. #u38744 .text {
  4004. position:absolute;
  4005. align-self:center;
  4006. padding:2px 2px 2px 2px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u38744_text {
  4011. border-width:0px;
  4012. word-wrap:break-word;
  4013. text-transform:none;
  4014. visibility:hidden;
  4015. }
  4016. #u38745_img {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:19px;
  4022. height:18px;
  4023. }
  4024. #u38745 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:358px;
  4028. top:180px;
  4029. width:19px;
  4030. height:18px;
  4031. display:flex;
  4032. -webkit-transform:rotate(90deg);
  4033. -moz-transform:rotate(90deg);
  4034. -ms-transform:rotate(90deg);
  4035. transform:rotate(90deg);
  4036. }
  4037. #u38745 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 2px 2px 2px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u38745_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. visibility:hidden;
  4049. }
  4050. #u38746 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:0px;
  4056. height:0px;
  4057. }
  4058. #u38747_div {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:30px;
  4064. height:30px;
  4065. background:inherit;
  4066. background-color:rgba(255, 255, 255, 1);
  4067. box-sizing:border-box;
  4068. border-width:1px;
  4069. border-style:solid;
  4070. border-color:rgba(121, 121, 121, 1);
  4071. border-radius:0px;
  4072. -moz-box-shadow:none;
  4073. -webkit-box-shadow:none;
  4074. box-shadow:none;
  4075. }
  4076. #u38747 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:432px;
  4080. top:174px;
  4081. width:30px;
  4082. height:30px;
  4083. display:flex;
  4084. }
  4085. #u38747 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 2px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u38747_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u38748_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:19px;
  4104. height:18px;
  4105. }
  4106. #u38748 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:438px;
  4110. top:180px;
  4111. width:19px;
  4112. height:18px;
  4113. display:flex;
  4114. -webkit-transform:rotate(270deg);
  4115. -moz-transform:rotate(270deg);
  4116. -ms-transform:rotate(270deg);
  4117. transform:rotate(270deg);
  4118. }
  4119. #u38748 .text {
  4120. position:absolute;
  4121. align-self:center;
  4122. padding:2px 2px 2px 2px;
  4123. box-sizing:border-box;
  4124. width:100%;
  4125. }
  4126. #u38748_text {
  4127. border-width:0px;
  4128. word-wrap:break-word;
  4129. text-transform:none;
  4130. visibility:hidden;
  4131. }
  4132. #u38749 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:0px;
  4138. height:0px;
  4139. }
  4140. #u38750_div {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:30px;
  4146. height:30px;
  4147. background:inherit;
  4148. background-color:rgba(255, 255, 255, 1);
  4149. box-sizing:border-box;
  4150. border-width:1px;
  4151. border-style:solid;
  4152. border-color:rgba(121, 121, 121, 1);
  4153. border-radius:0px;
  4154. -moz-box-shadow:none;
  4155. -webkit-box-shadow:none;
  4156. box-shadow:none;
  4157. }
  4158. #u38750 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:352px;
  4162. top:214px;
  4163. width:30px;
  4164. height:30px;
  4165. display:flex;
  4166. }
  4167. #u38750 .text {
  4168. position:absolute;
  4169. align-self:center;
  4170. padding:2px 2px 2px 2px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u38750_text {
  4175. border-width:0px;
  4176. word-wrap:break-word;
  4177. text-transform:none;
  4178. visibility:hidden;
  4179. }
  4180. #u38751_img {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:19px;
  4186. height:18px;
  4187. }
  4188. #u38751 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:358px;
  4192. top:220px;
  4193. width:19px;
  4194. height:18px;
  4195. display:flex;
  4196. -webkit-transform:rotate(51deg);
  4197. -moz-transform:rotate(51deg);
  4198. -ms-transform:rotate(51deg);
  4199. transform:rotate(51deg);
  4200. }
  4201. #u38751 .text {
  4202. position:absolute;
  4203. align-self:center;
  4204. padding:2px 2px 2px 2px;
  4205. box-sizing:border-box;
  4206. width:100%;
  4207. }
  4208. #u38751_text {
  4209. border-width:0px;
  4210. word-wrap:break-word;
  4211. text-transform:none;
  4212. visibility:hidden;
  4213. }
  4214. #u38752 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:0px;
  4220. height:0px;
  4221. }
  4222. #u38753_div {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:0px;
  4227. width:30px;
  4228. height:30px;
  4229. background:inherit;
  4230. background-color:rgba(255, 255, 255, 1);
  4231. box-sizing:border-box;
  4232. border-width:1px;
  4233. border-style:solid;
  4234. border-color:rgba(121, 121, 121, 1);
  4235. border-radius:0px;
  4236. -moz-box-shadow:none;
  4237. -webkit-box-shadow:none;
  4238. box-shadow:none;
  4239. }
  4240. #u38753 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:392px;
  4244. top:214px;
  4245. width:30px;
  4246. height:30px;
  4247. display:flex;
  4248. }
  4249. #u38753 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 2px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u38753_text {
  4257. border-width:0px;
  4258. word-wrap:break-word;
  4259. text-transform:none;
  4260. visibility:hidden;
  4261. }
  4262. #u38754_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:19px;
  4268. height:18px;
  4269. }
  4270. #u38754 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:398px;
  4274. top:220px;
  4275. width:19px;
  4276. height:18px;
  4277. display:flex;
  4278. }
  4279. #u38754 .text {
  4280. position:absolute;
  4281. align-self:center;
  4282. padding:2px 2px 2px 2px;
  4283. box-sizing:border-box;
  4284. width:100%;
  4285. }
  4286. #u38754_text {
  4287. border-width:0px;
  4288. word-wrap:break-word;
  4289. text-transform:none;
  4290. visibility:hidden;
  4291. }
  4292. #u38755 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:0px;
  4296. top:0px;
  4297. width:0px;
  4298. height:0px;
  4299. }
  4300. #u38756_div {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:30px;
  4306. height:30px;
  4307. background:inherit;
  4308. background-color:rgba(255, 255, 255, 1);
  4309. box-sizing:border-box;
  4310. border-width:1px;
  4311. border-style:solid;
  4312. border-color:rgba(121, 121, 121, 1);
  4313. border-radius:0px;
  4314. -moz-box-shadow:none;
  4315. -webkit-box-shadow:none;
  4316. box-shadow:none;
  4317. }
  4318. #u38756 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:432px;
  4322. top:214px;
  4323. width:30px;
  4324. height:30px;
  4325. display:flex;
  4326. }
  4327. #u38756 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 2px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u38756_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u38757_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:19px;
  4346. height:18px;
  4347. }
  4348. #u38757 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:438px;
  4352. top:220px;
  4353. width:19px;
  4354. height:18px;
  4355. display:flex;
  4356. -webkit-transform:rotate(300deg);
  4357. -moz-transform:rotate(300deg);
  4358. -ms-transform:rotate(300deg);
  4359. transform:rotate(300deg);
  4360. }
  4361. #u38757 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 2px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u38757_text {
  4369. border-width:0px;
  4370. word-wrap:break-word;
  4371. text-transform:none;
  4372. visibility:hidden;
  4373. }
  4374. #u38758_div {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:30px;
  4380. height:30px;
  4381. background:inherit;
  4382. background-color:rgba(255, 255, 255, 1);
  4383. box-sizing:border-box;
  4384. border-width:1px;
  4385. border-style:solid;
  4386. border-color:rgba(121, 121, 121, 1);
  4387. border-radius:0px;
  4388. -moz-box-shadow:none;
  4389. -webkit-box-shadow:none;
  4390. box-shadow:none;
  4391. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4392. font-weight:700;
  4393. font-style:normal;
  4394. font-size:24px;
  4395. }
  4396. #u38758 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:472px;
  4400. top:134px;
  4401. width:30px;
  4402. height:30px;
  4403. display:flex;
  4404. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4405. font-weight:700;
  4406. font-style:normal;
  4407. font-size:24px;
  4408. }
  4409. #u38758 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 2px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u38758_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. }
  4421. #u38759_div {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:30px;
  4427. height:30px;
  4428. background:inherit;
  4429. background-color:rgba(255, 255, 255, 1);
  4430. box-sizing:border-box;
  4431. border-width:1px;
  4432. border-style:solid;
  4433. border-color:rgba(121, 121, 121, 1);
  4434. border-radius:0px;
  4435. -moz-box-shadow:none;
  4436. -webkit-box-shadow:none;
  4437. box-shadow:none;
  4438. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4439. font-weight:700;
  4440. font-style:normal;
  4441. font-size:24px;
  4442. }
  4443. #u38759 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:472px;
  4447. top:174px;
  4448. width:30px;
  4449. height:30px;
  4450. display:flex;
  4451. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4452. font-weight:700;
  4453. font-style:normal;
  4454. font-size:24px;
  4455. }
  4456. #u38759 .text {
  4457. position:absolute;
  4458. align-self:center;
  4459. padding:2px 2px 2px 2px;
  4460. box-sizing:border-box;
  4461. width:100%;
  4462. }
  4463. #u38759_text {
  4464. border-width:0px;
  4465. word-wrap:break-word;
  4466. text-transform:none;
  4467. }
  4468. #u38760_div {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:30px;
  4474. height:30px;
  4475. background:inherit;
  4476. background-color:rgba(255, 255, 255, 1);
  4477. box-sizing:border-box;
  4478. border-width:1px;
  4479. border-style:solid;
  4480. border-color:rgba(121, 121, 121, 1);
  4481. border-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4486. font-weight:700;
  4487. font-style:normal;
  4488. font-size:24px;
  4489. }
  4490. #u38760 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:472px;
  4494. top:214px;
  4495. width:30px;
  4496. height:30px;
  4497. display:flex;
  4498. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4499. font-weight:700;
  4500. font-style:normal;
  4501. font-size:24px;
  4502. }
  4503. #u38760 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:2px 2px 2px 2px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u38760_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. }
  4515. #u38761 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:0px;
  4521. height:0px;
  4522. }
  4523. #u38762_div {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:30px;
  4529. height:30px;
  4530. background:inherit;
  4531. background-color:rgba(255, 255, 255, 1);
  4532. box-sizing:border-box;
  4533. border-width:1px;
  4534. border-style:solid;
  4535. border-color:rgba(121, 121, 121, 1);
  4536. border-radius:0px;
  4537. -moz-box-shadow:none;
  4538. -webkit-box-shadow:none;
  4539. box-shadow:none;
  4540. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4541. font-weight:700;
  4542. font-style:normal;
  4543. font-size:18px;
  4544. }
  4545. #u38762 {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:512px;
  4549. top:134px;
  4550. width:30px;
  4551. height:30px;
  4552. display:flex;
  4553. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4554. font-weight:700;
  4555. font-style:normal;
  4556. font-size:18px;
  4557. }
  4558. #u38762 .text {
  4559. position:absolute;
  4560. align-self:center;
  4561. padding:2px 2px 2px 2px;
  4562. box-sizing:border-box;
  4563. width:100%;
  4564. }
  4565. #u38762_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. visibility:hidden;
  4570. }
  4571. #u38763_img {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:14px;
  4577. height:14px;
  4578. }
  4579. #u38763 {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:520px;
  4583. top:142px;
  4584. width:14px;
  4585. height:14px;
  4586. display:flex;
  4587. }
  4588. #u38763 .text {
  4589. position:absolute;
  4590. align-self:center;
  4591. padding:2px 2px 2px 2px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u38763_text {
  4596. border-width:0px;
  4597. word-wrap:break-word;
  4598. text-transform:none;
  4599. visibility:hidden;
  4600. }
  4601. #u38764 {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:0px;
  4607. height:0px;
  4608. }
  4609. #u38765_div {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:0px;
  4613. top:0px;
  4614. width:30px;
  4615. height:30px;
  4616. background:inherit;
  4617. background-color:rgba(255, 255, 255, 1);
  4618. box-sizing:border-box;
  4619. border-width:1px;
  4620. border-style:solid;
  4621. border-color:rgba(121, 121, 121, 1);
  4622. border-radius:0px;
  4623. -moz-box-shadow:none;
  4624. -webkit-box-shadow:none;
  4625. box-shadow:none;
  4626. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4627. font-weight:700;
  4628. font-style:normal;
  4629. font-size:18px;
  4630. }
  4631. #u38765 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:512px;
  4635. top:174px;
  4636. width:30px;
  4637. height:30px;
  4638. display:flex;
  4639. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4640. font-weight:700;
  4641. font-style:normal;
  4642. font-size:18px;
  4643. }
  4644. #u38765 .text {
  4645. position:absolute;
  4646. align-self:center;
  4647. padding:2px 2px 2px 2px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u38765_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. visibility:hidden;
  4656. }
  4657. #u38766_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:14px;
  4663. height:14px;
  4664. }
  4665. #u38766 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:520px;
  4669. top:182px;
  4670. width:14px;
  4671. height:14px;
  4672. display:flex;
  4673. }
  4674. #u38766 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 2px 2px 2px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u38766_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. visibility:hidden;
  4686. }
  4687. #u38767 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:0px;
  4693. height:0px;
  4694. }
  4695. #u38768_div {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:30px;
  4701. height:30px;
  4702. background:inherit;
  4703. background-color:rgba(255, 255, 255, 1);
  4704. box-sizing:border-box;
  4705. border-width:1px;
  4706. border-style:solid;
  4707. border-color:rgba(121, 121, 121, 1);
  4708. border-radius:0px;
  4709. -moz-box-shadow:none;
  4710. -webkit-box-shadow:none;
  4711. box-shadow:none;
  4712. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4713. font-weight:700;
  4714. font-style:normal;
  4715. font-size:18px;
  4716. }
  4717. #u38768 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:512px;
  4721. top:214px;
  4722. width:30px;
  4723. height:30px;
  4724. display:flex;
  4725. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4726. font-weight:700;
  4727. font-style:normal;
  4728. font-size:18px;
  4729. }
  4730. #u38768 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 2px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u38768_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. visibility:hidden;
  4742. }
  4743. #u38769_img {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:17px;
  4749. height:11px;
  4750. }
  4751. #u38769 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:519px;
  4755. top:224px;
  4756. width:17px;
  4757. height:11px;
  4758. display:flex;
  4759. }
  4760. #u38769 .text {
  4761. position:absolute;
  4762. align-self:center;
  4763. padding:2px 2px 2px 2px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u38769_text {
  4768. border-width:0px;
  4769. word-wrap:break-word;
  4770. text-transform:none;
  4771. visibility:hidden;
  4772. }
  4773. #u38770 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:0px;
  4779. height:0px;
  4780. }
  4781. #u38771_div {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:84px;
  4787. height:21px;
  4788. background:inherit;
  4789. background-color:rgba(51, 51, 51, 1);
  4790. border:none;
  4791. border-radius:11px;
  4792. -moz-box-shadow:none;
  4793. -webkit-box-shadow:none;
  4794. box-shadow:none;
  4795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4796. font-weight:400;
  4797. font-style:normal;
  4798. font-size:12px;
  4799. color:#FFFFFF;
  4800. text-align:center;
  4801. }
  4802. #u38771 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:443px;
  4806. top:240px;
  4807. width:84px;
  4808. height:21px;
  4809. display:flex;
  4810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. font-size:12px;
  4814. color:#FFFFFF;
  4815. text-align:center;
  4816. }
  4817. #u38771 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:2px 2px 2px 2px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u38771_text {
  4825. border-width:0px;
  4826. white-space:nowrap;
  4827. text-transform:none;
  4828. }
  4829. #u38772_img {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:0px;
  4833. top:0px;
  4834. width:11px;
  4835. height:17px;
  4836. }
  4837. #u38772 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:495px;
  4841. top:271px;
  4842. width:11px;
  4843. height:17px;
  4844. display:flex;
  4845. }
  4846. #u38772 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 2px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u38772_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u38773_div {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:191px;
  4865. height:6px;
  4866. background:inherit;
  4867. background-color:rgba(255, 255, 255, 1);
  4868. box-sizing:border-box;
  4869. border-width:1px;
  4870. border-style:solid;
  4871. border-color:rgba(228, 228, 228, 1);
  4872. border-radius:0px;
  4873. -moz-box-shadow:none;
  4874. -webkit-box-shadow:none;
  4875. box-shadow:none;
  4876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4877. font-weight:400;
  4878. font-style:normal;
  4879. font-size:12px;
  4880. color:#FFFFFF;
  4881. }
  4882. #u38773 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:351px;
  4886. top:268px;
  4887. width:191px;
  4888. height:6px;
  4889. display:flex;
  4890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4891. font-weight:400;
  4892. font-style:normal;
  4893. font-size:12px;
  4894. color:#FFFFFF;
  4895. }
  4896. #u38773 .text {
  4897. position:absolute;
  4898. align-self:center;
  4899. padding:8px 15px 8px 15px;
  4900. box-sizing:border-box;
  4901. width:100%;
  4902. }
  4903. #u38773_text {
  4904. border-width:0px;
  4905. word-wrap:break-word;
  4906. text-transform:none;
  4907. visibility:hidden;
  4908. }
  4909. #u38774_div {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:140px;
  4915. height:6px;
  4916. background:inherit;
  4917. background-color:rgba(51, 153, 255, 1);
  4918. box-sizing:border-box;
  4919. border-width:1px;
  4920. border-style:solid;
  4921. border-color:rgba(228, 228, 228, 1);
  4922. border-radius:0px;
  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. font-size:12px;
  4930. color:#FFFFFF;
  4931. }
  4932. #u38774 {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:351px;
  4936. top:268px;
  4937. width:140px;
  4938. height:6px;
  4939. display:flex;
  4940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4941. font-weight:400;
  4942. font-style:normal;
  4943. font-size:12px;
  4944. color:#FFFFFF;
  4945. }
  4946. #u38774 .text {
  4947. position:absolute;
  4948. align-self:center;
  4949. padding:8px 15px 8px 15px;
  4950. box-sizing:border-box;
  4951. width:100%;
  4952. }
  4953. #u38774_text {
  4954. border-width:0px;
  4955. word-wrap:break-word;
  4956. text-transform:none;
  4957. visibility:hidden;
  4958. }
  4959. #u38775_img {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:-3px;
  4963. top:-3px;
  4964. width:20px;
  4965. height:20px;
  4966. }
  4967. #u38775 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:480px;
  4971. top:264px;
  4972. width:14px;
  4973. height:14px;
  4974. display:flex;
  4975. }
  4976. #u38775 .text {
  4977. position:absolute;
  4978. align-self:center;
  4979. padding:2px 2px 2px 2px;
  4980. box-sizing:border-box;
  4981. width:100%;
  4982. }
  4983. #u38775_text {
  4984. border-width:0px;
  4985. word-wrap:break-word;
  4986. text-transform:none;
  4987. visibility:hidden;
  4988. }
  4989. #u38776 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:358px;
  4993. top:410px;
  4994. width:127px;
  4995. height:240px;
  4996. }
  4997. #u38776_children {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:0px;
  5003. height:0px;
  5004. }
  5005. #u38777 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:80px;
  5011. height:20px;
  5012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. }
  5016. #u38778_img {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:9px;
  5022. height:9px;
  5023. }
  5024. #u38778 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:6px;
  5028. top:6px;
  5029. width:9px;
  5030. height:9px;
  5031. display:flex;
  5032. }
  5033. #u38778 .text {
  5034. position:absolute;
  5035. align-self:center;
  5036. padding:2px 2px 2px 2px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u38778_img.selected {
  5041. }
  5042. #u38778.selected {
  5043. }
  5044. #u38778_text {
  5045. border-width:0px;
  5046. word-wrap:break-word;
  5047. text-transform:none;
  5048. visibility:hidden;
  5049. }
  5050. #u38779_div {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:58px;
  5056. height:20px;
  5057. background:inherit;
  5058. background-color:rgba(255, 255, 255, 0);
  5059. border:none;
  5060. border-radius:0px;
  5061. -moz-box-shadow:none;
  5062. -webkit-box-shadow:none;
  5063. box-shadow:none;
  5064. }
  5065. #u38779 {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:22px;
  5069. top:0px;
  5070. width:58px;
  5071. height:20px;
  5072. display:flex;
  5073. }
  5074. #u38779 .text {
  5075. position:absolute;
  5076. align-self:center;
  5077. padding:2px 2px 2px 3px;
  5078. box-sizing:border-box;
  5079. width:100%;
  5080. }
  5081. #u38779_text {
  5082. border-width:0px;
  5083. white-space:nowrap;
  5084. text-transform:none;
  5085. }
  5086. #u38777_children {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:0px;
  5092. height:0px;
  5093. }
  5094. #u38780 {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:20px;
  5098. top:20px;
  5099. width:87px;
  5100. height:20px;
  5101. }
  5102. #u38781_img {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:9px;
  5108. height:9px;
  5109. }
  5110. #u38781 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:6px;
  5114. top:6px;
  5115. width:9px;
  5116. height:9px;
  5117. display:flex;
  5118. }
  5119. #u38781 .text {
  5120. position:absolute;
  5121. align-self:center;
  5122. padding:2px 2px 2px 2px;
  5123. box-sizing:border-box;
  5124. width:100%;
  5125. }
  5126. #u38781_img.selected {
  5127. }
  5128. #u38781.selected {
  5129. }
  5130. #u38781_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u38782_div {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:65px;
  5142. height:20px;
  5143. background:inherit;
  5144. background-color:rgba(255, 255, 255, 0);
  5145. border:none;
  5146. border-radius:0px;
  5147. -moz-box-shadow:none;
  5148. -webkit-box-shadow:none;
  5149. box-shadow:none;
  5150. }
  5151. #u38782 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:22px;
  5155. top:0px;
  5156. width:65px;
  5157. height:20px;
  5158. display:flex;
  5159. }
  5160. #u38782 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 3px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u38782_text {
  5168. border-width:0px;
  5169. white-space:nowrap;
  5170. text-transform:none;
  5171. }
  5172. #u38780_children {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:0px;
  5178. height:0px;
  5179. }
  5180. #u38783 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:20px;
  5184. top:20px;
  5185. width:87px;
  5186. height:20px;
  5187. }
  5188. #u38784_div {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:65px;
  5194. height:20px;
  5195. background:inherit;
  5196. background-color:rgba(255, 255, 255, 0);
  5197. border:none;
  5198. border-radius:0px;
  5199. -moz-box-shadow:none;
  5200. -webkit-box-shadow:none;
  5201. box-shadow:none;
  5202. }
  5203. #u38784 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:22px;
  5207. top:0px;
  5208. width:65px;
  5209. height:20px;
  5210. display:flex;
  5211. }
  5212. #u38784 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 3px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u38784_text {
  5220. border-width:0px;
  5221. white-space:nowrap;
  5222. text-transform:none;
  5223. }
  5224. #u38785 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:20px;
  5228. top:40px;
  5229. width:87px;
  5230. height:20px;
  5231. }
  5232. #u38786_div {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:0px;
  5236. top:0px;
  5237. width:65px;
  5238. height:20px;
  5239. background:inherit;
  5240. background-color:rgba(255, 255, 255, 0);
  5241. border:none;
  5242. border-radius:0px;
  5243. -moz-box-shadow:none;
  5244. -webkit-box-shadow:none;
  5245. box-shadow:none;
  5246. }
  5247. #u38786 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:22px;
  5251. top:0px;
  5252. width:65px;
  5253. height:20px;
  5254. display:flex;
  5255. }
  5256. #u38786 .text {
  5257. position:absolute;
  5258. align-self:center;
  5259. padding:2px 2px 2px 3px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u38786_text {
  5264. border-width:0px;
  5265. white-space:nowrap;
  5266. text-transform:none;
  5267. }
  5268. #u38787 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:20px;
  5272. top:60px;
  5273. width:54px;
  5274. height:20px;
  5275. }
  5276. #u38788_div {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:32px;
  5282. height:20px;
  5283. background:inherit;
  5284. background-color:rgba(255, 255, 255, 0);
  5285. border:none;
  5286. border-radius:0px;
  5287. -moz-box-shadow:none;
  5288. -webkit-box-shadow:none;
  5289. box-shadow:none;
  5290. }
  5291. #u38788 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:22px;
  5295. top:0px;
  5296. width:32px;
  5297. height:20px;
  5298. display:flex;
  5299. }
  5300. #u38788 .text {
  5301. position:absolute;
  5302. align-self:center;
  5303. padding:2px 2px 2px 3px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u38788_text {
  5308. border-width:0px;
  5309. white-space:nowrap;
  5310. text-transform:none;
  5311. }
  5312. #u38789 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:20px;
  5316. top:100px;
  5317. width:87px;
  5318. height:20px;
  5319. }
  5320. #u38790_img {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:9px;
  5326. height:9px;
  5327. }
  5328. #u38790 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:6px;
  5332. top:6px;
  5333. width:9px;
  5334. height:9px;
  5335. display:flex;
  5336. }
  5337. #u38790 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:2px 2px 2px 2px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u38790_img.selected {
  5345. }
  5346. #u38790.selected {
  5347. }
  5348. #u38790_text {
  5349. border-width:0px;
  5350. word-wrap:break-word;
  5351. text-transform:none;
  5352. visibility:hidden;
  5353. }
  5354. #u38791_div {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:65px;
  5360. height:20px;
  5361. background:inherit;
  5362. background-color:rgba(255, 255, 255, 0);
  5363. border:none;
  5364. border-radius:0px;
  5365. -moz-box-shadow:none;
  5366. -webkit-box-shadow:none;
  5367. box-shadow:none;
  5368. }
  5369. #u38791 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:22px;
  5373. top:0px;
  5374. width:65px;
  5375. height:20px;
  5376. display:flex;
  5377. }
  5378. #u38791 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:2px 2px 2px 3px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u38791_text {
  5386. border-width:0px;
  5387. white-space:nowrap;
  5388. text-transform:none;
  5389. }
  5390. #u38789_children {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:0px;
  5396. height:0px;
  5397. }
  5398. #u38792 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:20px;
  5402. top:20px;
  5403. width:87px;
  5404. height:20px;
  5405. }
  5406. #u38793_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:65px;
  5412. height:20px;
  5413. background:inherit;
  5414. background-color:rgba(255, 255, 255, 0);
  5415. border:none;
  5416. border-radius:0px;
  5417. -moz-box-shadow:none;
  5418. -webkit-box-shadow:none;
  5419. box-shadow:none;
  5420. }
  5421. #u38793 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:22px;
  5425. top:0px;
  5426. width:65px;
  5427. height:20px;
  5428. display:flex;
  5429. }
  5430. #u38793 .text {
  5431. position:absolute;
  5432. align-self:center;
  5433. padding:2px 2px 2px 3px;
  5434. box-sizing:border-box;
  5435. width:100%;
  5436. }
  5437. #u38793_text {
  5438. border-width:0px;
  5439. white-space:nowrap;
  5440. text-transform:none;
  5441. }
  5442. #u38794 {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:20px;
  5446. top:40px;
  5447. width:87px;
  5448. height:20px;
  5449. }
  5450. #u38795_div {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:65px;
  5456. height:20px;
  5457. background:inherit;
  5458. background-color:rgba(255, 255, 255, 0);
  5459. border:none;
  5460. border-radius:0px;
  5461. -moz-box-shadow:none;
  5462. -webkit-box-shadow:none;
  5463. box-shadow:none;
  5464. }
  5465. #u38795 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:22px;
  5469. top:0px;
  5470. width:65px;
  5471. height:20px;
  5472. display:flex;
  5473. }
  5474. #u38795 .text {
  5475. position:absolute;
  5476. align-self:center;
  5477. padding:2px 2px 2px 3px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u38795_text {
  5482. border-width:0px;
  5483. white-space:nowrap;
  5484. text-transform:none;
  5485. }
  5486. #u38796 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:20px;
  5490. top:60px;
  5491. width:54px;
  5492. height:20px;
  5493. }
  5494. #u38797_div {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:32px;
  5500. height:20px;
  5501. background:inherit;
  5502. background-color:rgba(255, 255, 255, 0);
  5503. border:none;
  5504. border-radius:0px;
  5505. -moz-box-shadow:none;
  5506. -webkit-box-shadow:none;
  5507. box-shadow:none;
  5508. }
  5509. #u38797 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:22px;
  5513. top:0px;
  5514. width:32px;
  5515. height:20px;
  5516. display:flex;
  5517. }
  5518. #u38797 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:2px 2px 2px 3px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u38797_text {
  5526. border-width:0px;
  5527. white-space:nowrap;
  5528. text-transform:none;
  5529. }
  5530. #u38798 {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:20px;
  5534. top:180px;
  5535. width:87px;
  5536. height:20px;
  5537. }
  5538. #u38799_img {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:0px;
  5542. top:0px;
  5543. width:9px;
  5544. height:9px;
  5545. }
  5546. #u38799 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:6px;
  5550. top:6px;
  5551. width:9px;
  5552. height:9px;
  5553. display:flex;
  5554. }
  5555. #u38799 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 2px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u38799_img.selected {
  5563. }
  5564. #u38799.selected {
  5565. }
  5566. #u38799_text {
  5567. border-width:0px;
  5568. word-wrap:break-word;
  5569. text-transform:none;
  5570. visibility:hidden;
  5571. }
  5572. #u38800_div {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:65px;
  5578. height:20px;
  5579. background:inherit;
  5580. background-color:rgba(255, 255, 255, 0);
  5581. border:none;
  5582. border-radius:0px;
  5583. -moz-box-shadow:none;
  5584. -webkit-box-shadow:none;
  5585. box-shadow:none;
  5586. }
  5587. #u38800 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:22px;
  5591. top:0px;
  5592. width:65px;
  5593. height:20px;
  5594. display:flex;
  5595. }
  5596. #u38800 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:2px 2px 2px 3px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u38800_text {
  5604. border-width:0px;
  5605. white-space:nowrap;
  5606. text-transform:none;
  5607. }
  5608. #u38798_children {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:0px;
  5614. height:0px;
  5615. }
  5616. #u38801 {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:20px;
  5620. top:20px;
  5621. width:87px;
  5622. height:20px;
  5623. }
  5624. #u38802_div {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:65px;
  5630. height:20px;
  5631. background:inherit;
  5632. background-color:rgba(255, 255, 255, 0);
  5633. border:none;
  5634. border-radius:0px;
  5635. -moz-box-shadow:none;
  5636. -webkit-box-shadow:none;
  5637. box-shadow:none;
  5638. }
  5639. #u38802 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:22px;
  5643. top:0px;
  5644. width:65px;
  5645. height:20px;
  5646. display:flex;
  5647. }
  5648. #u38802 .text {
  5649. position:absolute;
  5650. align-self:center;
  5651. padding:2px 2px 2px 3px;
  5652. box-sizing:border-box;
  5653. width:100%;
  5654. }
  5655. #u38802_text {
  5656. border-width:0px;
  5657. white-space:nowrap;
  5658. text-transform:none;
  5659. }
  5660. #u38803 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:20px;
  5664. top:40px;
  5665. width:54px;
  5666. height:20px;
  5667. }
  5668. #u38804_div {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:32px;
  5674. height:20px;
  5675. background:inherit;
  5676. background-color:rgba(255, 255, 255, 0);
  5677. border:none;
  5678. border-radius:0px;
  5679. -moz-box-shadow:none;
  5680. -webkit-box-shadow:none;
  5681. box-shadow:none;
  5682. }
  5683. #u38804 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:22px;
  5687. top:0px;
  5688. width:32px;
  5689. height:20px;
  5690. display:flex;
  5691. }
  5692. #u38804 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 2px 2px 3px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u38804_text {
  5700. border-width:0px;
  5701. white-space:nowrap;
  5702. text-transform:none;
  5703. }
  5704. #u38805 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:0px;
  5710. height:0px;
  5711. }
  5712. #u38806_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:175px;
  5718. height:30px;
  5719. background:inherit;
  5720. background-color:rgba(255, 255, 255, 1);
  5721. box-sizing:border-box;
  5722. border-width:1px;
  5723. border-style:solid;
  5724. border-color:rgba(201, 201, 201, 1);
  5725. border-radius:4px;
  5726. -moz-box-shadow:none;
  5727. -webkit-box-shadow:none;
  5728. box-shadow:none;
  5729. font-family:'Microsoft YaHei', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:14px;
  5733. color:#CCCCCC;
  5734. text-align:left;
  5735. }
  5736. #u38806 {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:359px;
  5740. top:333px;
  5741. width:175px;
  5742. height:30px;
  5743. display:flex;
  5744. font-family:'Microsoft YaHei', sans-serif;
  5745. font-weight:400;
  5746. font-style:normal;
  5747. font-size:14px;
  5748. color:#CCCCCC;
  5749. text-align:left;
  5750. }
  5751. #u38806 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:2px 8px 2px 8px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u38806_text {
  5759. border-width:0px;
  5760. word-wrap:break-word;
  5761. text-transform:none;
  5762. visibility:hidden;
  5763. }
  5764. #u38807_input {
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:159px;
  5769. height:25px;
  5770. padding:2px 2px 2px 2px;
  5771. font-family:'Microsoft YaHei', sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:10px;
  5775. letter-spacing:normal;
  5776. color:#000000;
  5777. vertical-align:none;
  5778. text-align:left;
  5779. text-transform:none;
  5780. background-color:transparent;
  5781. border-color:transparent;
  5782. }
  5783. #u38807_input.disabled {
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:159px;
  5788. height:25px;
  5789. padding:2px 2px 2px 2px;
  5790. font-family:'Microsoft YaHei', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:10px;
  5794. letter-spacing:normal;
  5795. color:#000000;
  5796. vertical-align:none;
  5797. text-align:left;
  5798. text-transform:none;
  5799. background-color:transparent;
  5800. border-color:transparent;
  5801. }
  5802. #u38807_div {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:159px;
  5808. height:25px;
  5809. background:inherit;
  5810. background-color:rgba(255, 255, 255, 1);
  5811. border:none;
  5812. border-radius:0px;
  5813. -moz-box-shadow:none;
  5814. -webkit-box-shadow:none;
  5815. box-shadow:none;
  5816. font-family:'Microsoft YaHei', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. font-size:10px;
  5820. }
  5821. #u38807 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:369px;
  5825. top:334px;
  5826. width:159px;
  5827. height:25px;
  5828. display:flex;
  5829. font-family:'Microsoft YaHei', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:10px;
  5833. }
  5834. #u38807 .text {
  5835. position:absolute;
  5836. align-self:center;
  5837. padding:2px 2px 2px 2px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u38807_div.disabled {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:159px;
  5847. height:25px;
  5848. background:inherit;
  5849. background-color:rgba(240, 240, 240, 1);
  5850. border:none;
  5851. border-radius:0px;
  5852. -moz-box-shadow:none;
  5853. -webkit-box-shadow:none;
  5854. box-shadow:none;
  5855. font-family:'Microsoft YaHei', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:10px;
  5859. }
  5860. #u38807.disabled {
  5861. }
  5862. #u38808_div {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:25px;
  5868. height:30px;
  5869. background:inherit;
  5870. background-color:rgba(255, 255, 255, 0);
  5871. border:none;
  5872. border-radius:0px;
  5873. -moz-box-shadow:none;
  5874. -webkit-box-shadow:none;
  5875. box-shadow:none;
  5876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:12px;
  5880. color:#3399FF;
  5881. line-height:30px;
  5882. }
  5883. #u38808 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:359px;
  5887. top:372px;
  5888. width:25px;
  5889. height:30px;
  5890. display:flex;
  5891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. font-size:12px;
  5895. color:#3399FF;
  5896. line-height:30px;
  5897. }
  5898. #u38808 .text {
  5899. position:absolute;
  5900. align-self:flex-start;
  5901. padding:0px 0px 0px 0px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u38808_text {
  5906. border-width:0px;
  5907. white-space:nowrap;
  5908. text-transform:none;
  5909. }
  5910. #u38809_div {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:25px;
  5916. height:30px;
  5917. background:inherit;
  5918. background-color:rgba(255, 255, 255, 0);
  5919. border:none;
  5920. border-radius:0px;
  5921. -moz-box-shadow:none;
  5922. -webkit-box-shadow:none;
  5923. box-shadow:none;
  5924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5925. font-weight:400;
  5926. font-style:normal;
  5927. font-size:12px;
  5928. color:#7F7F7F;
  5929. line-height:30px;
  5930. }
  5931. #u38809 {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:396px;
  5935. top:372px;
  5936. width:25px;
  5937. height:30px;
  5938. display:flex;
  5939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:12px;
  5943. color:#7F7F7F;
  5944. line-height:30px;
  5945. }
  5946. #u38809 .text {
  5947. position:absolute;
  5948. align-self:flex-start;
  5949. padding:0px 0px 0px 0px;
  5950. box-sizing:border-box;
  5951. width:100%;
  5952. }
  5953. #u38809_text {
  5954. border-width:0px;
  5955. white-space:nowrap;
  5956. text-transform:none;
  5957. }
  5958. #u38810_div {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:25px;
  5964. height:30px;
  5965. background:inherit;
  5966. background-color:rgba(255, 255, 255, 0);
  5967. border:none;
  5968. border-radius:0px;
  5969. -moz-box-shadow:none;
  5970. -webkit-box-shadow:none;
  5971. box-shadow:none;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:12px;
  5976. color:#7F7F7F;
  5977. line-height:30px;
  5978. }
  5979. #u38810 {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:432px;
  5983. top:372px;
  5984. width:25px;
  5985. height:30px;
  5986. display:flex;
  5987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5988. font-weight:400;
  5989. font-style:normal;
  5990. font-size:12px;
  5991. color:#7F7F7F;
  5992. line-height:30px;
  5993. }
  5994. #u38810 .text {
  5995. position:absolute;
  5996. align-self:flex-start;
  5997. padding:0px 0px 0px 0px;
  5998. box-sizing:border-box;
  5999. width:100%;
  6000. }
  6001. #u38810_text {
  6002. border-width:0px;
  6003. white-space:nowrap;
  6004. text-transform:none;
  6005. }
  6006. #u38811_div {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:25px;
  6012. height:30px;
  6013. background:inherit;
  6014. background-color:rgba(255, 255, 255, 0);
  6015. border:none;
  6016. border-radius:0px;
  6017. -moz-box-shadow:none;
  6018. -webkit-box-shadow:none;
  6019. box-shadow:none;
  6020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:12px;
  6024. color:#7F7F7F;
  6025. line-height:30px;
  6026. }
  6027. #u38811 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:469px;
  6031. top:372px;
  6032. width:25px;
  6033. height:30px;
  6034. display:flex;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:12px;
  6039. color:#7F7F7F;
  6040. line-height:30px;
  6041. }
  6042. #u38811 .text {
  6043. position:absolute;
  6044. align-self:flex-start;
  6045. padding:0px 0px 0px 0px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u38811_text {
  6050. border-width:0px;
  6051. white-space:nowrap;
  6052. text-transform:none;
  6053. }
  6054. #u38812 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:0px;
  6060. height:0px;
  6061. }
  6062. #u38813_div {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:200px;
  6068. height:1187px;
  6069. background:inherit;
  6070. background-color:rgba(255, 255, 255, 1);
  6071. border:none;
  6072. border-radius:0px;
  6073. -moz-box-shadow:none;
  6074. -webkit-box-shadow:none;
  6075. box-shadow:none;
  6076. }
  6077. #u38813 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:120px;
  6081. top:50px;
  6082. width:200px;
  6083. height:1187px;
  6084. display:flex;
  6085. }
  6086. #u38813 .text {
  6087. position:absolute;
  6088. align-self:center;
  6089. padding:2px 2px 2px 2px;
  6090. box-sizing:border-box;
  6091. width:100%;
  6092. }
  6093. #u38813_text {
  6094. border-width:0px;
  6095. word-wrap:break-word;
  6096. text-transform:none;
  6097. visibility:hidden;
  6098. }
  6099. #u38814_div {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:0px;
  6103. top:0px;
  6104. width:200px;
  6105. height:60px;
  6106. background:inherit;
  6107. background-color:rgba(224, 231, 247, 1);
  6108. border:none;
  6109. border-radius:0px;
  6110. -moz-box-shadow:none;
  6111. -webkit-box-shadow:none;
  6112. box-shadow:none;
  6113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6114. font-weight:500;
  6115. font-style:normal;
  6116. font-size:18px;
  6117. }
  6118. #u38814 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:120px;
  6122. top:50px;
  6123. width:200px;
  6124. height:60px;
  6125. display:flex;
  6126. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6127. font-weight:500;
  6128. font-style:normal;
  6129. font-size:18px;
  6130. }
  6131. #u38814 .text {
  6132. position:absolute;
  6133. align-self:center;
  6134. padding:0px 0px 0px 20px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u38814_text {
  6139. border-width:0px;
  6140. word-wrap:break-word;
  6141. text-transform:none;
  6142. }
  6143. #u38815_div {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:65px;
  6149. height:22px;
  6150. background:inherit;
  6151. background-color:rgba(255, 255, 255, 0);
  6152. border:none;
  6153. border-radius:0px;
  6154. -moz-box-shadow:none;
  6155. -webkit-box-shadow:none;
  6156. box-shadow:none;
  6157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:16px;
  6161. }
  6162. #u38815 {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:147px;
  6166. top:204px;
  6167. width:65px;
  6168. height:22px;
  6169. display:flex;
  6170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:16px;
  6174. }
  6175. #u38815 .text {
  6176. position:absolute;
  6177. align-self:flex-start;
  6178. padding:0px 0px 0px 0px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u38815_text {
  6183. border-width:0px;
  6184. white-space:nowrap;
  6185. text-transform:none;
  6186. }
  6187. #u38816_div {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:49px;
  6193. height:17px;
  6194. background:inherit;
  6195. background-color:rgba(255, 255, 255, 0);
  6196. border:none;
  6197. border-radius:0px;
  6198. -moz-box-shadow:none;
  6199. -webkit-box-shadow:none;
  6200. box-shadow:none;
  6201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:12px;
  6205. color:#AAAAAA;
  6206. }
  6207. #u38816 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:147px;
  6211. top:125px;
  6212. width:49px;
  6213. height:17px;
  6214. display:flex;
  6215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6216. font-weight:400;
  6217. font-style:normal;
  6218. font-size:12px;
  6219. color:#AAAAAA;
  6220. }
  6221. #u38816 .text {
  6222. position:absolute;
  6223. align-self:flex-start;
  6224. padding:0px 0px 0px 0px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u38816_text {
  6229. border-width:0px;
  6230. white-space:nowrap;
  6231. text-transform:none;
  6232. }
  6233. #u38817_div {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:49px;
  6239. height:17px;
  6240. background:inherit;
  6241. background-color:rgba(255, 255, 255, 0);
  6242. border:none;
  6243. border-radius:0px;
  6244. -moz-box-shadow:none;
  6245. -webkit-box-shadow:none;
  6246. box-shadow:none;
  6247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:12px;
  6251. color:#AAAAAA;
  6252. }
  6253. #u38817 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:147px;
  6257. top:461px;
  6258. width:49px;
  6259. height:17px;
  6260. display:flex;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:12px;
  6265. color:#AAAAAA;
  6266. }
  6267. #u38817 .text {
  6268. position:absolute;
  6269. align-self:flex-start;
  6270. padding:0px 0px 0px 0px;
  6271. box-sizing:border-box;
  6272. width:100%;
  6273. }
  6274. #u38817_text {
  6275. border-width:0px;
  6276. white-space:nowrap;
  6277. text-transform:none;
  6278. }
  6279. #u38818_img {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:201px;
  6285. height:2px;
  6286. }
  6287. #u38818 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:120px;
  6291. top:439px;
  6292. width:200px;
  6293. height:1px;
  6294. display:flex;
  6295. }
  6296. #u38818 .text {
  6297. position:absolute;
  6298. align-self:center;
  6299. padding:2px 2px 2px 2px;
  6300. box-sizing:border-box;
  6301. width:100%;
  6302. }
  6303. #u38818_text {
  6304. border-width:0px;
  6305. word-wrap:break-word;
  6306. text-transform:none;
  6307. visibility:hidden;
  6308. }
  6309. #u38819_div {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:65px;
  6315. height:22px;
  6316. background:inherit;
  6317. background-color:rgba(255, 255, 255, 0);
  6318. border:none;
  6319. border-radius:0px;
  6320. -moz-box-shadow:none;
  6321. -webkit-box-shadow:none;
  6322. box-shadow:none;
  6323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:16px;
  6327. }
  6328. #u38819 {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:147px;
  6332. top:309px;
  6333. width:65px;
  6334. height:22px;
  6335. display:flex;
  6336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6337. font-weight:400;
  6338. font-style:normal;
  6339. font-size:16px;
  6340. }
  6341. #u38819 .text {
  6342. position:absolute;
  6343. align-self:flex-start;
  6344. padding:0px 0px 0px 0px;
  6345. box-sizing:border-box;
  6346. width:100%;
  6347. }
  6348. #u38819_text {
  6349. border-width:0px;
  6350. white-space:nowrap;
  6351. text-transform:none;
  6352. }
  6353. #u38820_div {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:49px;
  6359. height:17px;
  6360. background:inherit;
  6361. background-color:rgba(255, 255, 255, 0);
  6362. border:none;
  6363. border-radius:0px;
  6364. -moz-box-shadow:none;
  6365. -webkit-box-shadow:none;
  6366. box-shadow:none;
  6367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6368. font-weight:400;
  6369. font-style:normal;
  6370. font-size:12px;
  6371. color:#AAAAAA;
  6372. }
  6373. #u38820 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:147px;
  6377. top:273px;
  6378. width:49px;
  6379. height:17px;
  6380. display:flex;
  6381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6382. font-weight:400;
  6383. font-style:normal;
  6384. font-size:12px;
  6385. color:#AAAAAA;
  6386. }
  6387. #u38820 .text {
  6388. position:absolute;
  6389. align-self:flex-start;
  6390. padding:0px 0px 0px 0px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u38820_text {
  6395. border-width:0px;
  6396. white-space:nowrap;
  6397. text-transform:none;
  6398. }
  6399. #u38821_img {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:201px;
  6405. height:2px;
  6406. }
  6407. #u38821 {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:120px;
  6411. top:251px;
  6412. width:200px;
  6413. height:1px;
  6414. display:flex;
  6415. }
  6416. #u38821 .text {
  6417. position:absolute;
  6418. align-self:center;
  6419. padding:2px 2px 2px 2px;
  6420. box-sizing:border-box;
  6421. width:100%;
  6422. }
  6423. #u38821_text {
  6424. border-width:0px;
  6425. word-wrap:break-word;
  6426. text-transform:none;
  6427. visibility:hidden;
  6428. }
  6429. #u38822_div {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:0px;
  6433. top:0px;
  6434. width:65px;
  6435. height:22px;
  6436. background:inherit;
  6437. background-color:rgba(255, 255, 255, 0);
  6438. border:none;
  6439. border-radius:0px;
  6440. -moz-box-shadow:none;
  6441. -webkit-box-shadow:none;
  6442. box-shadow:none;
  6443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6444. font-weight:400;
  6445. font-style:normal;
  6446. font-size:16px;
  6447. }
  6448. #u38822 {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:147px;
  6452. top:162px;
  6453. width:65px;
  6454. height:22px;
  6455. display:flex;
  6456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6457. font-weight:400;
  6458. font-style:normal;
  6459. font-size:16px;
  6460. }
  6461. #u38822 .text {
  6462. position:absolute;
  6463. align-self:flex-start;
  6464. padding:0px 0px 0px 0px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u38822_text {
  6469. border-width:0px;
  6470. white-space:nowrap;
  6471. text-transform:none;
  6472. }
  6473. #u38823_div {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:65px;
  6479. height:22px;
  6480. background:inherit;
  6481. background-color:rgba(255, 255, 255, 0);
  6482. border:none;
  6483. border-radius:0px;
  6484. -moz-box-shadow:none;
  6485. -webkit-box-shadow:none;
  6486. box-shadow:none;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:16px;
  6491. }
  6492. #u38823 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:148px;
  6496. top:538px;
  6497. width:65px;
  6498. height:22px;
  6499. display:flex;
  6500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6501. font-weight:400;
  6502. font-style:normal;
  6503. font-size:16px;
  6504. }
  6505. #u38823 .text {
  6506. position:absolute;
  6507. align-self:flex-start;
  6508. padding:0px 0px 0px 0px;
  6509. box-sizing:border-box;
  6510. width:100%;
  6511. }
  6512. #u38823_text {
  6513. border-width:0px;
  6514. white-space:nowrap;
  6515. text-transform:none;
  6516. }
  6517. #u38824_div {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:0px;
  6521. top:0px;
  6522. width:65px;
  6523. height:22px;
  6524. background:inherit;
  6525. background-color:rgba(255, 255, 255, 0);
  6526. border:none;
  6527. border-radius:0px;
  6528. -moz-box-shadow:none;
  6529. -webkit-box-shadow:none;
  6530. box-shadow:none;
  6531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6532. font-weight:400;
  6533. font-style:normal;
  6534. font-size:16px;
  6535. }
  6536. #u38824 {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:148px;
  6540. top:496px;
  6541. width:65px;
  6542. height:22px;
  6543. display:flex;
  6544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6545. font-weight:400;
  6546. font-style:normal;
  6547. font-size:16px;
  6548. }
  6549. #u38824 .text {
  6550. position:absolute;
  6551. align-self:flex-start;
  6552. padding:0px 0px 0px 0px;
  6553. box-sizing:border-box;
  6554. width:100%;
  6555. }
  6556. #u38824_text {
  6557. border-width:0px;
  6558. white-space:nowrap;
  6559. text-transform:none;
  6560. }
  6561. #u38825_div {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:65px;
  6567. height:22px;
  6568. background:inherit;
  6569. background-color:rgba(255, 255, 255, 0);
  6570. border:none;
  6571. border-radius:0px;
  6572. -moz-box-shadow:none;
  6573. -webkit-box-shadow:none;
  6574. box-shadow:none;
  6575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:16px;
  6579. }
  6580. #u38825 {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:147px;
  6584. top:351px;
  6585. width:65px;
  6586. height:22px;
  6587. display:flex;
  6588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:16px;
  6592. }
  6593. #u38825 .text {
  6594. position:absolute;
  6595. align-self:flex-start;
  6596. padding:0px 0px 0px 0px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u38825_text {
  6601. border-width:0px;
  6602. white-space:nowrap;
  6603. text-transform:none;
  6604. }
  6605. #u38826_div {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:0px;
  6609. top:0px;
  6610. width:65px;
  6611. height:22px;
  6612. background:inherit;
  6613. background-color:rgba(255, 255, 255, 0);
  6614. border:none;
  6615. border-radius:0px;
  6616. -moz-box-shadow:none;
  6617. -webkit-box-shadow:none;
  6618. box-shadow:none;
  6619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6620. font-weight:400;
  6621. font-style:normal;
  6622. font-size:16px;
  6623. }
  6624. #u38826 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:147px;
  6628. top:393px;
  6629. width:65px;
  6630. height:22px;
  6631. display:flex;
  6632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:16px;
  6636. }
  6637. #u38826 .text {
  6638. position:absolute;
  6639. align-self:flex-start;
  6640. padding:0px 0px 0px 0px;
  6641. box-sizing:border-box;
  6642. width:100%;
  6643. }
  6644. #u38826_text {
  6645. border-width:0px;
  6646. white-space:nowrap;
  6647. text-transform:none;
  6648. }