styles.css 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u64269_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. #u64269 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u64269 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u64269_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u64270_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. #u64270 {
  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. #u64270 .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. #u64270_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u64271_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. #u64271 {
  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. #u64271 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u64271_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u64272 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u64273_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u64273 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u64273 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u64273_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u64274_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. #u64274 {
  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. #u64274 .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. #u64274_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u64275_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. #u64275 {
  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. #u64275 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u64275_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u64276 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u64277_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. #u64277_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. #u64277_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. #u64277 {
  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. #u64277 .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. #u64277_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. #u64277.disabled {
  356. }
  357. .u64277_input_option {
  358. font-size:14px;
  359. }
  360. #u64278_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u64278 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u64278 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u64278_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u64279_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. #u64279 {
  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. #u64279 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u64279_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u64280_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. #u64280 {
  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. #u64280 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u64280_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u64281 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u64282_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. #u64282 {
  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. #u64282 .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. #u64282_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u64283_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u64283 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u64283 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u64283_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u64284 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u64285_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. #u64285 {
  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. #u64285 .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. #u64285_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u64286_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u64286 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u64286 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u64286_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u64287 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u64288_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. #u64288 {
  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. #u64288 .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. #u64288_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u64289_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u64289 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u64289 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u64289_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u64290 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u64291_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. #u64291 {
  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. #u64291 .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. #u64291_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u64292_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u64292 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u64292 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u64292_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u64293 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u64294_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. #u64294 {
  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. #u64294 .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. #u64294_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u64295_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u64295 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u64295 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u64295_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u64296 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u64297_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. #u64297 {
  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. #u64297 .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. #u64297_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u64298_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u64298 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u64298 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u64298_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u64299 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u64300_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. #u64300 {
  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. #u64300 .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. #u64300_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u64301_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u64301 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u64301 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u64301_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u64302 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u64303_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. #u64303 {
  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. #u64303 .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. #u64303_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u64304_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u64304 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u64304 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u64304_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u64305 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u64306_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. #u64306 {
  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. #u64306 .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. #u64306_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u64307_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u64307 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u64307 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u64307_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u64308 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u64309_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. #u64309 {
  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. #u64309 .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. #u64309_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u64310_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u64310 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u64310 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u64310_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u64311_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. #u64311 {
  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. #u64311 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u64311_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u64312_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u64312 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u64312 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u64312_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u64313_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. #u64313 {
  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. #u64313 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u64313_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u64314_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u64314 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u64314 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u64314_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u64315 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u64316_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. #u64316 {
  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. #u64316 .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. #u64316_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u64317_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u64317 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u64317 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u64317_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u64318 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u64319_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. #u64319 {
  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. #u64319 .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. #u64319_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u64320_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u64320 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u64320 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u64320_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u64321 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u64322_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. #u64322 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:122px;
  1665. top:50px;
  1666. width:200px;
  1667. height:1180px;
  1668. display:flex;
  1669. }
  1670. #u64322 .text {
  1671. position:absolute;
  1672. align-self:center;
  1673. padding:2px 2px 2px 2px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u64322_text {
  1678. border-width:0px;
  1679. word-wrap:break-word;
  1680. text-transform:none;
  1681. visibility:hidden;
  1682. }
  1683. #u64323_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. #u64323 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:122px;
  1706. top:50px;
  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. #u64323 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:0px 0px 0px 20px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u64323_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. }
  1727. #u64324_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. }
  1746. #u64324 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:149px;
  1750. top:161px;
  1751. width:65px;
  1752. height:22px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:16px;
  1758. }
  1759. #u64324 .text {
  1760. position:absolute;
  1761. align-self:flex-start;
  1762. padding:0px 0px 0px 0px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u64324_text {
  1767. border-width:0px;
  1768. white-space:nowrap;
  1769. text-transform:none;
  1770. }
  1771. #u64325_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:65px;
  1777. height:22px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-radius:0px;
  1782. -moz-box-shadow:none;
  1783. -webkit-box-shadow:none;
  1784. box-shadow:none;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:16px;
  1789. }
  1790. #u64325 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:149px;
  1794. top:203px;
  1795. width:65px;
  1796. height:22px;
  1797. display:flex;
  1798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:16px;
  1802. }
  1803. #u64325 .text {
  1804. position:absolute;
  1805. align-self:flex-start;
  1806. padding:0px 0px 0px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u64325_text {
  1811. border-width:0px;
  1812. white-space:nowrap;
  1813. text-transform:none;
  1814. }
  1815. #u64326_div {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:81px;
  1821. height:22px;
  1822. background:inherit;
  1823. background-color:rgba(255, 255, 255, 0);
  1824. border:none;
  1825. border-radius:0px;
  1826. -moz-box-shadow:none;
  1827. -webkit-box-shadow:none;
  1828. box-shadow:none;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:16px;
  1833. }
  1834. #u64326 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:149px;
  1838. top:451px;
  1839. width:81px;
  1840. height:22px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:16px;
  1846. }
  1847. #u64326 .text {
  1848. position:absolute;
  1849. align-self:flex-start;
  1850. padding:0px 0px 0px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u64326_text {
  1855. border-width:0px;
  1856. white-space:nowrap;
  1857. text-transform:none;
  1858. }
  1859. #u64327_div {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:81px;
  1865. height:22px;
  1866. background:inherit;
  1867. background-color:rgba(255, 255, 255, 0);
  1868. border:none;
  1869. border-radius:0px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:16px;
  1877. }
  1878. #u64327 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:149px;
  1882. top:493px;
  1883. width:81px;
  1884. height:22px;
  1885. display:flex;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:16px;
  1890. }
  1891. #u64327 .text {
  1892. position:absolute;
  1893. align-self:flex-start;
  1894. padding:0px 0px 0px 0px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u64327_text {
  1899. border-width:0px;
  1900. white-space:nowrap;
  1901. text-transform:none;
  1902. }
  1903. #u64328_div {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:49px;
  1909. height:17px;
  1910. background:inherit;
  1911. background-color:rgba(255, 255, 255, 0);
  1912. border:none;
  1913. border-radius:0px;
  1914. -moz-box-shadow:none;
  1915. -webkit-box-shadow:none;
  1916. box-shadow:none;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. color:#AAAAAA;
  1922. }
  1923. #u64328 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:149px;
  1927. top:125px;
  1928. width:49px;
  1929. height:17px;
  1930. display:flex;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. color:#AAAAAA;
  1936. }
  1937. #u64328 .text {
  1938. position:absolute;
  1939. align-self:flex-start;
  1940. padding:0px 0px 0px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u64328_text {
  1945. border-width:0px;
  1946. white-space:nowrap;
  1947. text-transform:none;
  1948. }
  1949. #u64329_img {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:201px;
  1955. height:2px;
  1956. }
  1957. #u64329 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:122px;
  1961. top:398px;
  1962. width:200px;
  1963. height:1px;
  1964. display:flex;
  1965. }
  1966. #u64329 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:2px 2px 2px 2px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u64329_text {
  1974. border-width:0px;
  1975. word-wrap:break-word;
  1976. text-transform:none;
  1977. visibility:hidden;
  1978. }
  1979. #u64330_div {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:65px;
  1985. height:22px;
  1986. background:inherit;
  1987. background-color:rgba(255, 255, 255, 0);
  1988. border:none;
  1989. border-radius:0px;
  1990. -moz-box-shadow:none;
  1991. -webkit-box-shadow:none;
  1992. box-shadow:none;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:16px;
  1997. }
  1998. #u64330 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:149px;
  2002. top:535px;
  2003. width:65px;
  2004. height:22px;
  2005. display:flex;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:16px;
  2010. }
  2011. #u64330 .text {
  2012. position:absolute;
  2013. align-self:flex-start;
  2014. padding:0px 0px 0px 0px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u64330_text {
  2019. border-width:0px;
  2020. white-space:nowrap;
  2021. text-transform:none;
  2022. }
  2023. #u64331_div {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:65px;
  2029. height:22px;
  2030. background:inherit;
  2031. background-color:rgba(255, 255, 255, 0);
  2032. border:none;
  2033. border-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2038. font-weight:400;
  2039. font-style:normal;
  2040. font-size:16px;
  2041. }
  2042. #u64331 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:149px;
  2046. top:618px;
  2047. width:65px;
  2048. height:22px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:16px;
  2054. }
  2055. #u64331 .text {
  2056. position:absolute;
  2057. align-self:flex-start;
  2058. padding:0px 0px 0px 0px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u64331_text {
  2063. border-width:0px;
  2064. white-space:nowrap;
  2065. text-transform:none;
  2066. }
  2067. #u64332_div {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:65px;
  2073. height:22px;
  2074. background:inherit;
  2075. background-color:rgba(255, 255, 255, 0);
  2076. border:none;
  2077. border-radius:0px;
  2078. -moz-box-shadow:none;
  2079. -webkit-box-shadow:none;
  2080. box-shadow:none;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:16px;
  2085. }
  2086. #u64332 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:149px;
  2090. top:660px;
  2091. width:65px;
  2092. height:22px;
  2093. display:flex;
  2094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2095. font-weight:400;
  2096. font-style:normal;
  2097. font-size:16px;
  2098. }
  2099. #u64332 .text {
  2100. position:absolute;
  2101. align-self:flex-start;
  2102. padding:0px 0px 0px 0px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u64332_text {
  2107. border-width:0px;
  2108. white-space:nowrap;
  2109. text-transform:none;
  2110. }
  2111. #u64333_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:49px;
  2117. height:17px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. border:none;
  2121. border-radius:0px;
  2122. -moz-box-shadow:none;
  2123. -webkit-box-shadow:none;
  2124. box-shadow:none;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. font-size:12px;
  2129. color:#AAAAAA;
  2130. }
  2131. #u64333 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:149px;
  2135. top:418px;
  2136. width:49px;
  2137. height:17px;
  2138. display:flex;
  2139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2140. font-weight:400;
  2141. font-style:normal;
  2142. font-size:12px;
  2143. color:#AAAAAA;
  2144. }
  2145. #u64333 .text {
  2146. position:absolute;
  2147. align-self:flex-start;
  2148. padding:0px 0px 0px 0px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u64333_text {
  2153. border-width:0px;
  2154. white-space:nowrap;
  2155. text-transform:none;
  2156. }
  2157. #u64334_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:65px;
  2163. height:22px;
  2164. background:inherit;
  2165. background-color:rgba(255, 255, 255, 0);
  2166. border:none;
  2167. border-radius:0px;
  2168. -moz-box-shadow:none;
  2169. -webkit-box-shadow:none;
  2170. box-shadow:none;
  2171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2172. font-weight:400;
  2173. font-style:normal;
  2174. font-size:16px;
  2175. color:#1890FF;
  2176. }
  2177. #u64334 {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:149px;
  2181. top:310px;
  2182. width:65px;
  2183. height:22px;
  2184. display:flex;
  2185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2186. font-weight:400;
  2187. font-style:normal;
  2188. font-size:16px;
  2189. color:#1890FF;
  2190. }
  2191. #u64334 .text {
  2192. position:absolute;
  2193. align-self:flex-start;
  2194. padding:0px 0px 0px 0px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u64334_text {
  2199. border-width:0px;
  2200. white-space:nowrap;
  2201. text-transform:none;
  2202. }
  2203. #u64335_div {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:49px;
  2209. height:17px;
  2210. background:inherit;
  2211. background-color:rgba(255, 255, 255, 0);
  2212. border:none;
  2213. border-radius:0px;
  2214. -moz-box-shadow:none;
  2215. -webkit-box-shadow:none;
  2216. box-shadow:none;
  2217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. font-size:12px;
  2221. color:#AAAAAA;
  2222. }
  2223. #u64335 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:149px;
  2227. top:274px;
  2228. width:49px;
  2229. height:17px;
  2230. display:flex;
  2231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2232. font-weight:400;
  2233. font-style:normal;
  2234. font-size:12px;
  2235. color:#AAAAAA;
  2236. }
  2237. #u64335 .text {
  2238. position:absolute;
  2239. align-self:flex-start;
  2240. padding:0px 0px 0px 0px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u64335_text {
  2245. border-width:0px;
  2246. white-space:nowrap;
  2247. text-transform:none;
  2248. }
  2249. #u64336_img {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:201px;
  2255. height:2px;
  2256. }
  2257. #u64336 {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:122px;
  2261. top:252px;
  2262. width:200px;
  2263. height:1px;
  2264. display:flex;
  2265. }
  2266. #u64336 .text {
  2267. position:absolute;
  2268. align-self:center;
  2269. padding:2px 2px 2px 2px;
  2270. box-sizing:border-box;
  2271. width:100%;
  2272. }
  2273. #u64336_text {
  2274. border-width:0px;
  2275. word-wrap:break-word;
  2276. text-transform:none;
  2277. visibility:hidden;
  2278. }
  2279. #u64337_div {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:0px;
  2283. top:0px;
  2284. width:97px;
  2285. height:22px;
  2286. background:inherit;
  2287. background-color:rgba(255, 255, 255, 0);
  2288. border:none;
  2289. border-radius:0px;
  2290. -moz-box-shadow:none;
  2291. -webkit-box-shadow:none;
  2292. box-shadow:none;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:16px;
  2297. }
  2298. #u64337 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:149px;
  2302. top:352px;
  2303. width:97px;
  2304. height:22px;
  2305. display:flex;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:16px;
  2310. }
  2311. #u64337 .text {
  2312. position:absolute;
  2313. align-self:flex-start;
  2314. padding:0px 0px 0px 0px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u64337_text {
  2319. border-width:0px;
  2320. white-space:nowrap;
  2321. text-transform:none;
  2322. }
  2323. #u64338_div {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:65px;
  2329. height:22px;
  2330. background:inherit;
  2331. background-color:rgba(255, 255, 255, 0);
  2332. border:none;
  2333. border-radius:0px;
  2334. -moz-box-shadow:none;
  2335. -webkit-box-shadow:none;
  2336. box-shadow:none;
  2337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2338. font-weight:400;
  2339. font-style:normal;
  2340. font-size:16px;
  2341. }
  2342. #u64338 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:149px;
  2346. top:576px;
  2347. width:65px;
  2348. height:22px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:16px;
  2354. }
  2355. #u64338 .text {
  2356. position:absolute;
  2357. align-self:flex-start;
  2358. padding:0px 0px 0px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u64338_text {
  2363. border-width:0px;
  2364. white-space:nowrap;
  2365. text-transform:none;
  2366. }
  2367. #u64339_div {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:1257px;
  2373. height:1180px;
  2374. background:inherit;
  2375. background-color:rgba(255, 255, 255, 1);
  2376. box-sizing:border-box;
  2377. border-width:1px;
  2378. border-style:solid;
  2379. border-color:rgba(242, 242, 242, 1);
  2380. border-radius:0px;
  2381. -moz-box-shadow:none;
  2382. -webkit-box-shadow:none;
  2383. box-shadow:none;
  2384. }
  2385. #u64339 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:332px;
  2389. top:50px;
  2390. width:1257px;
  2391. height:1180px;
  2392. display:flex;
  2393. }
  2394. #u64339 .text {
  2395. position:absolute;
  2396. align-self:center;
  2397. padding:2px 2px 2px 2px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u64339_text {
  2402. border-width:0px;
  2403. word-wrap:break-word;
  2404. text-transform:none;
  2405. visibility:hidden;
  2406. }
  2407. #u64340_img {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:581px;
  2413. height:413px;
  2414. }
  2415. #u64340 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:987px;
  2419. top:727px;
  2420. width:581px;
  2421. height:413px;
  2422. display:flex;
  2423. }
  2424. #u64340 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:0px 0px 0px 0px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u64340_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. visibility:hidden;
  2436. }
  2437. #u64341_div {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:145px;
  2443. height:25px;
  2444. background:inherit;
  2445. background-color:rgba(255, 255, 255, 0);
  2446. border:none;
  2447. border-radius:0px;
  2448. -moz-box-shadow:none;
  2449. -webkit-box-shadow:none;
  2450. box-shadow:none;
  2451. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2452. font-weight:650;
  2453. font-style:normal;
  2454. }
  2455. #u64341 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:1013px;
  2459. top:750px;
  2460. width:145px;
  2461. height:25px;
  2462. display:flex;
  2463. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2464. font-weight:650;
  2465. font-style:normal;
  2466. }
  2467. #u64341 .text {
  2468. position:absolute;
  2469. align-self:flex-start;
  2470. padding:0px 0px 0px 0px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u64341_text {
  2475. border-width:0px;
  2476. white-space:nowrap;
  2477. text-transform:none;
  2478. }
  2479. #u64342_div {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:53px;
  2485. height:18px;
  2486. background:inherit;
  2487. background-color:rgba(255, 255, 255, 0);
  2488. border:none;
  2489. border-radius:0px;
  2490. -moz-box-shadow:none;
  2491. -webkit-box-shadow:none;
  2492. box-shadow:none;
  2493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:12px;
  2497. color:#555555;
  2498. }
  2499. #u64342 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:1393px;
  2503. top:880px;
  2504. width:53px;
  2505. height:18px;
  2506. display:flex;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:12px;
  2511. color:#555555;
  2512. }
  2513. #u64342 .text {
  2514. position:absolute;
  2515. align-self:flex-start;
  2516. padding:0px 0px 0px 0px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u64342_text {
  2521. border-width:0px;
  2522. word-wrap:break-word;
  2523. text-transform:none;
  2524. }
  2525. #u64343_div {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:56px;
  2531. height:17px;
  2532. background:inherit;
  2533. background-color:rgba(255, 255, 255, 0);
  2534. border:none;
  2535. border-radius:0px;
  2536. -moz-box-shadow:none;
  2537. -webkit-box-shadow:none;
  2538. box-shadow:none;
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:12px;
  2543. color:#555555;
  2544. }
  2545. #u64343 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:1393px;
  2549. top:916px;
  2550. width:56px;
  2551. height:17px;
  2552. display:flex;
  2553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:12px;
  2557. color:#555555;
  2558. }
  2559. #u64343 .text {
  2560. position:absolute;
  2561. align-self:flex-start;
  2562. padding:0px 0px 0px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u64343_text {
  2567. border-width:0px;
  2568. white-space:nowrap;
  2569. text-transform:none;
  2570. }
  2571. #u64344_div {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:66px;
  2577. height:18px;
  2578. background:inherit;
  2579. background-color:rgba(255, 255, 255, 0);
  2580. border:none;
  2581. border-radius:0px;
  2582. -moz-box-shadow:none;
  2583. -webkit-box-shadow:none;
  2584. box-shadow:none;
  2585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. font-size:12px;
  2589. color:#555555;
  2590. }
  2591. #u64344 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:1393px;
  2595. top:951px;
  2596. width:66px;
  2597. height:18px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:12px;
  2603. color:#555555;
  2604. }
  2605. #u64344 .text {
  2606. position:absolute;
  2607. align-self:flex-start;
  2608. padding:0px 0px 0px 0px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u64344_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. }
  2617. #u64345_img {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:9px;
  2623. height:9px;
  2624. }
  2625. #u64345 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:1368px;
  2629. top:884px;
  2630. width:9px;
  2631. height:9px;
  2632. display:flex;
  2633. }
  2634. #u64345 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:0px 0px 0px 0px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u64345_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u64346_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:9px;
  2653. height:9px;
  2654. }
  2655. #u64346 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:1368px;
  2659. top:919px;
  2660. width:9px;
  2661. height:9px;
  2662. display:flex;
  2663. }
  2664. #u64346 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:0px 0px 0px 0px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u64346_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u64347_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:9px;
  2683. height:9px;
  2684. }
  2685. #u64347 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:1368px;
  2689. top:954px;
  2690. width:9px;
  2691. height:9px;
  2692. display:flex;
  2693. }
  2694. #u64347 .text {
  2695. position:absolute;
  2696. align-self:center;
  2697. padding:0px 0px 0px 0px;
  2698. box-sizing:border-box;
  2699. width:100%;
  2700. }
  2701. #u64347_text {
  2702. border-width:0px;
  2703. word-wrap:break-word;
  2704. text-transform:none;
  2705. visibility:hidden;
  2706. }
  2707. #u64348_div {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:73px;
  2713. height:30px;
  2714. background:inherit;
  2715. background-color:rgba(255, 255, 255, 0);
  2716. border:none;
  2717. border-radius:0px;
  2718. -moz-box-shadow:none;
  2719. -webkit-box-shadow:none;
  2720. box-shadow:none;
  2721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2722. font-weight:400;
  2723. font-style:normal;
  2724. font-size:18px;
  2725. color:#000000;
  2726. line-height:30px;
  2727. }
  2728. #u64348 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:354px;
  2732. top:67px;
  2733. width:73px;
  2734. height:30px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:18px;
  2740. color:#000000;
  2741. line-height:30px;
  2742. }
  2743. #u64348 .text {
  2744. position:absolute;
  2745. align-self:flex-start;
  2746. padding:0px 0px 0px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u64348_text {
  2751. border-width:0px;
  2752. white-space:nowrap;
  2753. text-transform:none;
  2754. }
  2755. #u64349 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:0px;
  2761. height:0px;
  2762. }
  2763. #u64350_div {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:29px;
  2769. height:30px;
  2770. background:inherit;
  2771. background-color:rgba(255, 255, 255, 0);
  2772. border:none;
  2773. border-radius:0px;
  2774. -moz-box-shadow:none;
  2775. -webkit-box-shadow:none;
  2776. box-shadow:none;
  2777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2778. font-weight:400;
  2779. font-style:normal;
  2780. font-size:14px;
  2781. color:#1890FF;
  2782. line-height:30px;
  2783. }
  2784. #u64350 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:459px;
  2788. top:67px;
  2789. width:29px;
  2790. height:30px;
  2791. display:flex;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:14px;
  2796. color:#1890FF;
  2797. line-height:30px;
  2798. }
  2799. #u64350 .text {
  2800. position:absolute;
  2801. align-self:flex-start;
  2802. padding:0px 0px 0px 0px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u64350_text {
  2807. border-width:0px;
  2808. white-space:nowrap;
  2809. text-transform:none;
  2810. }
  2811. #u64351_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:14px;
  2817. height:14px;
  2818. }
  2819. #u64351 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:440px;
  2823. top:75px;
  2824. width:14px;
  2825. height:14px;
  2826. display:flex;
  2827. }
  2828. #u64351 .text {
  2829. position:absolute;
  2830. align-self:center;
  2831. padding:2px 2px 2px 2px;
  2832. box-sizing:border-box;
  2833. width:100%;
  2834. }
  2835. #u64351_text {
  2836. border-width:0px;
  2837. word-wrap:break-word;
  2838. text-transform:none;
  2839. visibility:hidden;
  2840. }
  2841. #u64352 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:0px;
  2847. height:0px;
  2848. }
  2849. #u64353_div {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:200px;
  2855. height:30px;
  2856. background:inherit;
  2857. background-color:rgba(255, 255, 255, 1);
  2858. box-sizing:border-box;
  2859. border-width:1px;
  2860. border-style:solid;
  2861. border-color:rgba(215, 215, 215, 1);
  2862. border-radius:0px;
  2863. -moz-box-shadow:none;
  2864. -webkit-box-shadow:none;
  2865. box-shadow:none;
  2866. font-size:11px;
  2867. }
  2868. #u64353 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:1368px;
  2872. top:67px;
  2873. width:200px;
  2874. height:30px;
  2875. display:flex;
  2876. font-size:11px;
  2877. }
  2878. #u64353 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 2px 2px 2px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u64353_text {
  2886. border-width:0px;
  2887. word-wrap:break-word;
  2888. text-transform:none;
  2889. visibility:hidden;
  2890. }
  2891. #u64354_input {
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:171px;
  2896. height:23px;
  2897. padding:2px 2px 2px 2px;
  2898. font-family:'ArialMT', 'Arial', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:11px;
  2902. letter-spacing:normal;
  2903. color:#333333;
  2904. vertical-align:none;
  2905. text-align:left;
  2906. text-transform:none;
  2907. background-color:transparent;
  2908. border-color:transparent;
  2909. }
  2910. #u64354_input.disabled {
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:171px;
  2915. height:23px;
  2916. padding:2px 2px 2px 2px;
  2917. font-family:'ArialMT', 'Arial', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:11px;
  2921. letter-spacing:normal;
  2922. color:#333333;
  2923. vertical-align:none;
  2924. text-align:left;
  2925. text-transform:none;
  2926. background-color:transparent;
  2927. border-color:transparent;
  2928. }
  2929. #u64354_div {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:171px;
  2935. height:23px;
  2936. background:inherit;
  2937. background-color:rgba(255, 255, 255, 1);
  2938. border:none;
  2939. border-radius:0px;
  2940. -moz-box-shadow:none;
  2941. -webkit-box-shadow:none;
  2942. box-shadow:none;
  2943. font-size:11px;
  2944. color:#333333;
  2945. }
  2946. #u64354 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:1378px;
  2950. top:69px;
  2951. width:171px;
  2952. height:23px;
  2953. display:flex;
  2954. font-size:11px;
  2955. color:#333333;
  2956. }
  2957. #u64354 .text {
  2958. position:absolute;
  2959. align-self:flex-start;
  2960. padding:2px 2px 2px 2px;
  2961. box-sizing:border-box;
  2962. width:100%;
  2963. }
  2964. #u64354_div.disabled {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:171px;
  2970. height:23px;
  2971. background:inherit;
  2972. background-color:rgba(240, 240, 240, 1);
  2973. border:none;
  2974. border-radius:0px;
  2975. -moz-box-shadow:none;
  2976. -webkit-box-shadow:none;
  2977. box-shadow:none;
  2978. font-size:11px;
  2979. color:#333333;
  2980. }
  2981. #u64354.disabled {
  2982. }
  2983. .u64354_input_option {
  2984. font-size:11px;
  2985. }
  2986. #u64355_img {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:214px;
  2992. height:214px;
  2993. }
  2994. #u64355 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:1067px;
  2998. top:829px;
  2999. width:214px;
  3000. height:214px;
  3001. display:flex;
  3002. }
  3003. #u64355 .text {
  3004. position:absolute;
  3005. align-self:center;
  3006. padding:55.5px 15.0742521562354px 2px 2px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u64355_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. visibility:hidden;
  3015. }
  3016. #u64356_img {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:214px;
  3022. height:214px;
  3023. }
  3024. #u64356 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:1067px;
  3028. top:829px;
  3029. width:214px;
  3030. height:214px;
  3031. display:flex;
  3032. }
  3033. #u64356 .text {
  3034. position:absolute;
  3035. align-self:center;
  3036. padding:2px 11.1633340121802px 109px 16.1837336290937px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u64356_text {
  3041. border-width:0px;
  3042. word-wrap:break-word;
  3043. text-transform:none;
  3044. visibility:hidden;
  3045. }
  3046. #u64357_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:214px;
  3052. height:214px;
  3053. }
  3054. #u64357 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:1067px;
  3058. top:829px;
  3059. width:214px;
  3060. height:214px;
  3061. display:flex;
  3062. }
  3063. #u64357 .text {
  3064. position:absolute;
  3065. align-self:center;
  3066. padding:65.3267632681052px 2px 57.1893885853986px 109px;
  3067. box-sizing:border-box;
  3068. width:100%;
  3069. }
  3070. #u64357_text {
  3071. border-width:0px;
  3072. word-wrap:break-word;
  3073. text-transform:none;
  3074. visibility:hidden;
  3075. }
  3076. #u64358_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:137px;
  3082. height:137px;
  3083. }
  3084. #u64358 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:1106px;
  3088. top:868px;
  3089. width:137px;
  3090. height:137px;
  3091. display:flex;
  3092. }
  3093. #u64358 .text {
  3094. position:absolute;
  3095. align-self:center;
  3096. padding:2px 2px 2px 2px;
  3097. box-sizing:border-box;
  3098. width:100%;
  3099. }
  3100. #u64358_text {
  3101. border-width:0px;
  3102. word-wrap:break-word;
  3103. text-transform:none;
  3104. }
  3105. #u64359 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:0px;
  3111. height:0px;
  3112. }
  3113. #u64360_div {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:0px;
  3117. top:0px;
  3118. width:303px;
  3119. height:120px;
  3120. background:inherit;
  3121. background-color:rgba(255, 255, 255, 1);
  3122. border:none;
  3123. border-radius:0px;
  3124. -moz-box-shadow:none;
  3125. -webkit-box-shadow:none;
  3126. box-shadow:none;
  3127. font-family:'Microsoft YaHei', sans-serif;
  3128. font-weight:400;
  3129. font-style:normal;
  3130. }
  3131. #u64360 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:354px;
  3135. top:107px;
  3136. width:303px;
  3137. height:120px;
  3138. display:flex;
  3139. font-family:'Microsoft YaHei', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. }
  3143. #u64360 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 2px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u64360_div.selected {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:303px;
  3156. height:120px;
  3157. background:inherit;
  3158. background-color:rgba(255, 255, 255, 1);
  3159. border:none;
  3160. border-radius:0px;
  3161. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3162. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3163. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3164. font-family:'Microsoft YaHei', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. }
  3168. #u64360.selected {
  3169. }
  3170. #u64360_text {
  3171. border-width:0px;
  3172. word-wrap:break-word;
  3173. text-transform:none;
  3174. visibility:hidden;
  3175. }
  3176. #u64361_div {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:112px;
  3182. height:17px;
  3183. background:inherit;
  3184. background-color:rgba(255, 255, 255, 0);
  3185. border:none;
  3186. border-radius:0px;
  3187. -moz-box-shadow:none;
  3188. -webkit-box-shadow:none;
  3189. box-shadow:none;
  3190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3191. font-weight:400;
  3192. font-style:normal;
  3193. font-size:12px;
  3194. color:rgba(51, 51, 51, 0.996078431372549);
  3195. }
  3196. #u64361 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:380px;
  3200. top:117px;
  3201. width:112px;
  3202. height:17px;
  3203. display:flex;
  3204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:12px;
  3208. color:rgba(51, 51, 51, 0.996078431372549);
  3209. }
  3210. #u64361 .text {
  3211. position:absolute;
  3212. align-self:flex-start;
  3213. padding:0px 0px 0px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u64361_text {
  3218. border-width:0px;
  3219. word-wrap:break-word;
  3220. text-transform:none;
  3221. }
  3222. #u64362_div {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:24px;
  3228. height:34px;
  3229. background:inherit;
  3230. background-color:rgba(255, 255, 255, 0);
  3231. border:none;
  3232. border-radius:0px;
  3233. -moz-box-shadow:none;
  3234. -webkit-box-shadow:none;
  3235. box-shadow:none;
  3236. font-size:30px;
  3237. color:rgba(51, 51, 51, 0.996078431372549);
  3238. }
  3239. #u64362 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:380px;
  3243. top:139px;
  3244. width:24px;
  3245. height:34px;
  3246. display:flex;
  3247. font-size:30px;
  3248. color:rgba(51, 51, 51, 0.996078431372549);
  3249. }
  3250. #u64362 .text {
  3251. position:absolute;
  3252. align-self:flex-start;
  3253. padding:0px 0px 0px 0px;
  3254. box-sizing:border-box;
  3255. width:100%;
  3256. }
  3257. #u64362_text {
  3258. border-width:0px;
  3259. word-wrap:break-word;
  3260. text-transform:none;
  3261. }
  3262. #u64363_img {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:14px;
  3268. height:10px;
  3269. }
  3270. #u64363 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:628px;
  3274. top:121px;
  3275. width:14px;
  3276. height:10px;
  3277. display:flex;
  3278. }
  3279. #u64363 .text {
  3280. position:absolute;
  3281. align-self:center;
  3282. padding:2px 2px 2px 2px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u64363_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. visibility:hidden;
  3291. }
  3292. #u64364 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:0px;
  3298. height:0px;
  3299. }
  3300. #u64365_div {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:303px;
  3306. height:120px;
  3307. background:inherit;
  3308. background-color:rgba(255, 255, 255, 1);
  3309. border:none;
  3310. border-radius:0px;
  3311. -moz-box-shadow:none;
  3312. -webkit-box-shadow:none;
  3313. box-shadow:none;
  3314. font-family:'Microsoft YaHei', sans-serif;
  3315. font-weight:400;
  3316. font-style:normal;
  3317. }
  3318. #u64365 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:657px;
  3322. top:107px;
  3323. width:303px;
  3324. height:120px;
  3325. display:flex;
  3326. font-family:'Microsoft YaHei', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. }
  3330. #u64365 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 2px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u64365_div.selected {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:303px;
  3343. height:120px;
  3344. background:inherit;
  3345. background-color:rgba(255, 255, 255, 1);
  3346. border:none;
  3347. border-radius:0px;
  3348. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3349. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3350. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3351. font-family:'Microsoft YaHei', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. }
  3355. #u64365.selected {
  3356. }
  3357. #u64365_text {
  3358. border-width:0px;
  3359. word-wrap:break-word;
  3360. text-transform:none;
  3361. visibility:hidden;
  3362. }
  3363. #u64366_div {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:112px;
  3369. height:17px;
  3370. background:inherit;
  3371. background-color:rgba(255, 255, 255, 0);
  3372. border:none;
  3373. border-radius:0px;
  3374. -moz-box-shadow:none;
  3375. -webkit-box-shadow:none;
  3376. box-shadow:none;
  3377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:12px;
  3381. color:rgba(51, 51, 51, 0.996078431372549);
  3382. }
  3383. #u64366 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:683px;
  3387. top:117px;
  3388. width:112px;
  3389. height:17px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:12px;
  3395. color:rgba(51, 51, 51, 0.996078431372549);
  3396. }
  3397. #u64366 .text {
  3398. position:absolute;
  3399. align-self:flex-start;
  3400. padding:0px 0px 0px 0px;
  3401. box-sizing:border-box;
  3402. width:100%;
  3403. }
  3404. #u64366_text {
  3405. border-width:0px;
  3406. word-wrap:break-word;
  3407. text-transform:none;
  3408. }
  3409. #u64367_div {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:58px;
  3415. height:34px;
  3416. background:inherit;
  3417. background-color:rgba(255, 255, 255, 0);
  3418. border:none;
  3419. border-radius:0px;
  3420. -moz-box-shadow:none;
  3421. -webkit-box-shadow:none;
  3422. box-shadow:none;
  3423. font-size:30px;
  3424. color:rgba(51, 51, 51, 0.996078431372549);
  3425. }
  3426. #u64367 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:683px;
  3430. top:139px;
  3431. width:58px;
  3432. height:34px;
  3433. display:flex;
  3434. font-size:30px;
  3435. color:rgba(51, 51, 51, 0.996078431372549);
  3436. }
  3437. #u64367 .text {
  3438. position:absolute;
  3439. align-self:flex-start;
  3440. padding:0px 0px 0px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u64367_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. }
  3449. #u64368_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:14px;
  3455. height:10px;
  3456. }
  3457. #u64368 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:932px;
  3461. top:121px;
  3462. width:14px;
  3463. height:10px;
  3464. display:flex;
  3465. }
  3466. #u64368 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:2px 2px 2px 2px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u64368_text {
  3474. border-width:0px;
  3475. word-wrap:break-word;
  3476. text-transform:none;
  3477. visibility:hidden;
  3478. }
  3479. #u64369_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:265px;
  3485. height:2px;
  3486. }
  3487. #u64369 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:678px;
  3491. top:196px;
  3492. width:264px;
  3493. height:1px;
  3494. display:flex;
  3495. }
  3496. #u64369 .text {
  3497. position:absolute;
  3498. align-self:center;
  3499. padding:2px 2px 2px 2px;
  3500. box-sizing:border-box;
  3501. width:100%;
  3502. }
  3503. #u64369_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. visibility:hidden;
  3508. }
  3509. #u64370_div {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:73px;
  3515. height:17px;
  3516. background:inherit;
  3517. background-color:rgba(255, 255, 255, 0);
  3518. border:none;
  3519. border-radius:0px;
  3520. -moz-box-shadow:none;
  3521. -webkit-box-shadow:none;
  3522. box-shadow:none;
  3523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:12px;
  3527. color:rgba(127, 127, 127, 0.996078431372549);
  3528. }
  3529. #u64370 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:690px;
  3533. top:204px;
  3534. width:73px;
  3535. height:17px;
  3536. display:flex;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:12px;
  3541. color:rgba(127, 127, 127, 0.996078431372549);
  3542. }
  3543. #u64370 .text {
  3544. position:absolute;
  3545. align-self:flex-start;
  3546. padding:0px 0px 0px 0px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u64370_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. }
  3555. #u64371_div {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:73px;
  3561. height:17px;
  3562. background:inherit;
  3563. background-color:rgba(255, 255, 255, 0);
  3564. border:none;
  3565. border-radius:0px;
  3566. -moz-box-shadow:none;
  3567. -webkit-box-shadow:none;
  3568. box-shadow:none;
  3569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:12px;
  3573. color:rgba(127, 127, 127, 0.996078431372549);
  3574. }
  3575. #u64371 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:845px;
  3579. top:204px;
  3580. width:73px;
  3581. height:17px;
  3582. display:flex;
  3583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3584. font-weight:400;
  3585. font-style:normal;
  3586. font-size:12px;
  3587. color:rgba(127, 127, 127, 0.996078431372549);
  3588. }
  3589. #u64371 .text {
  3590. position:absolute;
  3591. align-self:flex-start;
  3592. padding:0px 0px 0px 0px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u64371_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. }
  3601. #u64372 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:0px;
  3607. height:0px;
  3608. }
  3609. #u64373_div {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:303px;
  3615. height:120px;
  3616. background:inherit;
  3617. background-color:rgba(255, 255, 255, 1);
  3618. border:none;
  3619. border-radius:0px;
  3620. -moz-box-shadow:none;
  3621. -webkit-box-shadow:none;
  3622. box-shadow:none;
  3623. font-family:'Microsoft YaHei', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. }
  3627. #u64373 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:961px;
  3631. top:107px;
  3632. width:303px;
  3633. height:120px;
  3634. display:flex;
  3635. font-family:'Microsoft YaHei', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. }
  3639. #u64373 .text {
  3640. position:absolute;
  3641. align-self:center;
  3642. padding:2px 2px 2px 2px;
  3643. box-sizing:border-box;
  3644. width:100%;
  3645. }
  3646. #u64373_div.selected {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:303px;
  3652. height:120px;
  3653. background:inherit;
  3654. background-color:rgba(255, 255, 255, 1);
  3655. border:none;
  3656. border-radius:0px;
  3657. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3658. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3659. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3660. font-family:'Microsoft YaHei', sans-serif;
  3661. font-weight:400;
  3662. font-style:normal;
  3663. }
  3664. #u64373.selected {
  3665. }
  3666. #u64373_text {
  3667. border-width:0px;
  3668. word-wrap:break-word;
  3669. text-transform:none;
  3670. visibility:hidden;
  3671. }
  3672. #u64374_div {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:112px;
  3678. height:17px;
  3679. background:inherit;
  3680. background-color:rgba(255, 255, 255, 0);
  3681. border:none;
  3682. border-radius:0px;
  3683. -moz-box-shadow:none;
  3684. -webkit-box-shadow:none;
  3685. box-shadow:none;
  3686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3687. font-weight:400;
  3688. font-style:normal;
  3689. font-size:12px;
  3690. color:rgba(51, 51, 51, 0.996078431372549);
  3691. }
  3692. #u64374 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:987px;
  3696. top:117px;
  3697. width:112px;
  3698. height:17px;
  3699. display:flex;
  3700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3701. font-weight:400;
  3702. font-style:normal;
  3703. font-size:12px;
  3704. color:rgba(51, 51, 51, 0.996078431372549);
  3705. }
  3706. #u64374 .text {
  3707. position:absolute;
  3708. align-self:flex-start;
  3709. padding:0px 0px 0px 0px;
  3710. box-sizing:border-box;
  3711. width:100%;
  3712. }
  3713. #u64374_text {
  3714. border-width:0px;
  3715. word-wrap:break-word;
  3716. text-transform:none;
  3717. }
  3718. #u64375_div {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:58px;
  3724. height:34px;
  3725. background:inherit;
  3726. background-color:rgba(255, 255, 255, 0);
  3727. border:none;
  3728. border-radius:0px;
  3729. -moz-box-shadow:none;
  3730. -webkit-box-shadow:none;
  3731. box-shadow:none;
  3732. font-size:30px;
  3733. color:rgba(51, 51, 51, 0.996078431372549);
  3734. }
  3735. #u64375 {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:987px;
  3739. top:139px;
  3740. width:58px;
  3741. height:34px;
  3742. display:flex;
  3743. font-size:30px;
  3744. color:rgba(51, 51, 51, 0.996078431372549);
  3745. }
  3746. #u64375 .text {
  3747. position:absolute;
  3748. align-self:flex-start;
  3749. padding:0px 0px 0px 0px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u64375_text {
  3754. border-width:0px;
  3755. word-wrap:break-word;
  3756. text-transform:none;
  3757. }
  3758. #u64376_img {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:14px;
  3764. height:10px;
  3765. }
  3766. #u64376 {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:1235px;
  3770. top:121px;
  3771. width:14px;
  3772. height:10px;
  3773. display:flex;
  3774. }
  3775. #u64376 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 2px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u64376_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u64377_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:265px;
  3794. height:2px;
  3795. }
  3796. #u64377 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:981px;
  3800. top:196px;
  3801. width:264px;
  3802. height:1px;
  3803. display:flex;
  3804. }
  3805. #u64377 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 2px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u64377_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u64378_div {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:90px;
  3824. height:17px;
  3825. background:inherit;
  3826. background-color:rgba(255, 255, 255, 0);
  3827. border:none;
  3828. border-radius:0px;
  3829. -moz-box-shadow:none;
  3830. -webkit-box-shadow:none;
  3831. box-shadow:none;
  3832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:12px;
  3836. color:rgba(127, 127, 127, 0.996078431372549);
  3837. }
  3838. #u64378 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:993px;
  3842. top:204px;
  3843. width:90px;
  3844. height:17px;
  3845. display:flex;
  3846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3847. font-weight:400;
  3848. font-style:normal;
  3849. font-size:12px;
  3850. color:rgba(127, 127, 127, 0.996078431372549);
  3851. }
  3852. #u64378 .text {
  3853. position:absolute;
  3854. align-self:flex-start;
  3855. padding:0px 0px 0px 0px;
  3856. box-sizing:border-box;
  3857. width:100%;
  3858. }
  3859. #u64378_text {
  3860. border-width:0px;
  3861. word-wrap:break-word;
  3862. text-transform:none;
  3863. }
  3864. #u64379_div {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:90px;
  3870. height:17px;
  3871. background:inherit;
  3872. background-color:rgba(255, 255, 255, 0);
  3873. border:none;
  3874. border-radius:0px;
  3875. -moz-box-shadow:none;
  3876. -webkit-box-shadow:none;
  3877. box-shadow:none;
  3878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3879. font-weight:400;
  3880. font-style:normal;
  3881. font-size:12px;
  3882. }
  3883. #u64379 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:1148px;
  3887. top:204px;
  3888. width:90px;
  3889. height:17px;
  3890. display:flex;
  3891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:12px;
  3895. }
  3896. #u64379 .text {
  3897. position:absolute;
  3898. align-self:flex-start;
  3899. padding:0px 0px 0px 0px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u64379_text {
  3904. border-width:0px;
  3905. word-wrap:break-word;
  3906. text-transform:none;
  3907. }
  3908. #u64380 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:0px;
  3914. height:0px;
  3915. }
  3916. #u64381_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:303px;
  3922. height:120px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 1);
  3925. border:none;
  3926. border-radius:0px;
  3927. -moz-box-shadow:none;
  3928. -webkit-box-shadow:none;
  3929. box-shadow:none;
  3930. font-family:'Microsoft YaHei', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. }
  3934. #u64381 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:1265px;
  3938. top:107px;
  3939. width:303px;
  3940. height:120px;
  3941. display:flex;
  3942. font-family:'Microsoft YaHei', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. }
  3946. #u64381 .text {
  3947. position:absolute;
  3948. align-self:center;
  3949. padding:2px 2px 2px 2px;
  3950. box-sizing:border-box;
  3951. width:100%;
  3952. }
  3953. #u64381_div.selected {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:303px;
  3959. height:120px;
  3960. background:inherit;
  3961. background-color:rgba(255, 255, 255, 1);
  3962. border:none;
  3963. border-radius:0px;
  3964. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3965. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3966. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  3967. font-family:'Microsoft YaHei', sans-serif;
  3968. font-weight:400;
  3969. font-style:normal;
  3970. }
  3971. #u64381.selected {
  3972. }
  3973. #u64381_text {
  3974. border-width:0px;
  3975. word-wrap:break-word;
  3976. text-transform:none;
  3977. visibility:hidden;
  3978. }
  3979. #u64382_div {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:112px;
  3985. height:17px;
  3986. background:inherit;
  3987. background-color:rgba(255, 255, 255, 0);
  3988. border:none;
  3989. border-radius:0px;
  3990. -moz-box-shadow:none;
  3991. -webkit-box-shadow:none;
  3992. box-shadow:none;
  3993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3994. font-weight:400;
  3995. font-style:normal;
  3996. font-size:12px;
  3997. color:rgba(51, 51, 51, 0.996078431372549);
  3998. }
  3999. #u64382 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:1292px;
  4003. top:117px;
  4004. width:112px;
  4005. height:17px;
  4006. display:flex;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:12px;
  4011. color:rgba(51, 51, 51, 0.996078431372549);
  4012. }
  4013. #u64382 .text {
  4014. position:absolute;
  4015. align-self:flex-start;
  4016. padding:0px 0px 0px 0px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u64382_text {
  4021. border-width:0px;
  4022. word-wrap:break-word;
  4023. text-transform:none;
  4024. }
  4025. #u64383_div {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:58px;
  4031. height:34px;
  4032. background:inherit;
  4033. background-color:rgba(255, 255, 255, 0);
  4034. border:none;
  4035. border-radius:0px;
  4036. -moz-box-shadow:none;
  4037. -webkit-box-shadow:none;
  4038. box-shadow:none;
  4039. font-size:30px;
  4040. color:rgba(51, 51, 51, 0.996078431372549);
  4041. }
  4042. #u64383 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:1292px;
  4046. top:139px;
  4047. width:58px;
  4048. height:34px;
  4049. display:flex;
  4050. font-size:30px;
  4051. color:rgba(51, 51, 51, 0.996078431372549);
  4052. }
  4053. #u64383 .text {
  4054. position:absolute;
  4055. align-self:flex-start;
  4056. padding:0px 0px 0px 0px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u64383_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. }
  4065. #u64384_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:14px;
  4071. height:10px;
  4072. }
  4073. #u64384 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:1539px;
  4077. top:121px;
  4078. width:14px;
  4079. height:10px;
  4080. display:flex;
  4081. }
  4082. #u64384 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 2px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u64384_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. visibility:hidden;
  4094. }
  4095. #u64385_img {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:265px;
  4101. height:2px;
  4102. }
  4103. #u64385 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:1285px;
  4107. top:196px;
  4108. width:264px;
  4109. height:1px;
  4110. display:flex;
  4111. }
  4112. #u64385 .text {
  4113. position:absolute;
  4114. align-self:center;
  4115. padding:2px 2px 2px 2px;
  4116. box-sizing:border-box;
  4117. width:100%;
  4118. }
  4119. #u64385_text {
  4120. border-width:0px;
  4121. word-wrap:break-word;
  4122. text-transform:none;
  4123. visibility:hidden;
  4124. }
  4125. #u64386_div {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:90px;
  4131. height:17px;
  4132. background:inherit;
  4133. background-color:rgba(255, 255, 255, 0);
  4134. border:none;
  4135. border-radius:0px;
  4136. -moz-box-shadow:none;
  4137. -webkit-box-shadow:none;
  4138. box-shadow:none;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:12px;
  4143. color:rgba(127, 127, 127, 0.996078431372549);
  4144. }
  4145. #u64386 {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:1298px;
  4149. top:204px;
  4150. width:90px;
  4151. height:17px;
  4152. display:flex;
  4153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:12px;
  4157. color:rgba(127, 127, 127, 0.996078431372549);
  4158. }
  4159. #u64386 .text {
  4160. position:absolute;
  4161. align-self:flex-start;
  4162. padding:0px 0px 0px 0px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u64386_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. }
  4171. #u64387_div {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:90px;
  4177. height:17px;
  4178. background:inherit;
  4179. background-color:rgba(255, 255, 255, 0);
  4180. border:none;
  4181. border-radius:0px;
  4182. -moz-box-shadow:none;
  4183. -webkit-box-shadow:none;
  4184. box-shadow:none;
  4185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4186. font-weight:400;
  4187. font-style:normal;
  4188. font-size:12px;
  4189. }
  4190. #u64387 {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:1452px;
  4194. top:204px;
  4195. width:90px;
  4196. height:17px;
  4197. display:flex;
  4198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4199. font-weight:400;
  4200. font-style:normal;
  4201. font-size:12px;
  4202. }
  4203. #u64387 .text {
  4204. position:absolute;
  4205. align-self:flex-start;
  4206. padding:0px 0px 0px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u64387_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. }
  4215. #u64388_img {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:1214px;
  4221. height:460px;
  4222. }
  4223. #u64388 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:354px;
  4227. top:247px;
  4228. width:1214px;
  4229. height:460px;
  4230. display:flex;
  4231. }
  4232. #u64388 .text {
  4233. position:absolute;
  4234. align-self:center;
  4235. padding:0px 0px 0px 0px;
  4236. box-sizing:border-box;
  4237. width:100%;
  4238. }
  4239. #u64388_text {
  4240. border-width:0px;
  4241. word-wrap:break-word;
  4242. text-transform:none;
  4243. visibility:hidden;
  4244. }
  4245. #u64389 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:0px;
  4250. width:0px;
  4251. height:0px;
  4252. }
  4253. #u64390_img {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:280px;
  4259. height:6px;
  4260. }
  4261. #u64390p000 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:-6px;
  4265. top:-1px;
  4266. width:12px;
  4267. height:6px;
  4268. -webkit-transform:rotate(90deg);
  4269. -moz-transform:rotate(90deg);
  4270. -ms-transform:rotate(90deg);
  4271. transform:rotate(90deg);
  4272. }
  4273. #u64390p000_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:12px;
  4279. height:6px;
  4280. }
  4281. #u64390p001 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:50px;
  4285. top:-1px;
  4286. width:12px;
  4287. height:6px;
  4288. -webkit-transform:rotate(90deg);
  4289. -moz-transform:rotate(90deg);
  4290. -ms-transform:rotate(90deg);
  4291. transform:rotate(90deg);
  4292. }
  4293. #u64390p001_img {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:12px;
  4299. height:6px;
  4300. }
  4301. #u64390p002 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:106px;
  4305. top:-1px;
  4306. width:12px;
  4307. height:6px;
  4308. -webkit-transform:rotate(90deg);
  4309. -moz-transform:rotate(90deg);
  4310. -ms-transform:rotate(90deg);
  4311. transform:rotate(90deg);
  4312. }
  4313. #u64390p002_img {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:12px;
  4319. height:6px;
  4320. }
  4321. #u64390p003 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:162px;
  4325. top:-1px;
  4326. width:10px;
  4327. height:6px;
  4328. -webkit-transform:rotate(90deg);
  4329. -moz-transform:rotate(90deg);
  4330. -ms-transform:rotate(90deg);
  4331. transform:rotate(90deg);
  4332. }
  4333. #u64390p003_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:10px;
  4339. height:6px;
  4340. }
  4341. #u64390p004 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:218px;
  4345. top:-1px;
  4346. width:10px;
  4347. height:6px;
  4348. -webkit-transform:rotate(90deg);
  4349. -moz-transform:rotate(90deg);
  4350. -ms-transform:rotate(90deg);
  4351. transform:rotate(90deg);
  4352. }
  4353. #u64390p004_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:10px;
  4359. height:6px;
  4360. }
  4361. #u64390p005 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:274px;
  4365. top:-1px;
  4366. width:10px;
  4367. height:6px;
  4368. -webkit-transform:rotate(90deg);
  4369. -moz-transform:rotate(90deg);
  4370. -ms-transform:rotate(90deg);
  4371. transform:rotate(90deg);
  4372. }
  4373. #u64390p005_img {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:10px;
  4379. height:6px;
  4380. }
  4381. #u64390.compound {
  4382. width:0px;
  4383. height:0px;
  4384. }
  4385. #u64390 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:442px;
  4389. top:639px;
  4390. width:279px;
  4391. height:5px;
  4392. display:flex;
  4393. opacity:0.619607843137255;
  4394. }
  4395. #u64390 .text {
  4396. position:absolute;
  4397. align-self:center;
  4398. padding:0px 0px 0px 0px;
  4399. box-sizing:border-box;
  4400. width:100%;
  4401. }
  4402. #u64390_text {
  4403. border-width:0px;
  4404. word-wrap:break-word;
  4405. text-transform:none;
  4406. visibility:hidden;
  4407. }
  4408. #u64391_div {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:26px;
  4414. height:16px;
  4415. background:inherit;
  4416. background-color:rgba(255, 255, 255, 0);
  4417. border:none;
  4418. border-radius:0px;
  4419. -moz-box-shadow:none;
  4420. -webkit-box-shadow:none;
  4421. box-shadow:none;
  4422. font-family:'Helvetica', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. font-size:12px;
  4426. color:rgba(0, 0, 0, 0.996078431372549);
  4427. text-align:left;
  4428. }
  4429. #u64391 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:437px;
  4433. top:650px;
  4434. width:26px;
  4435. height:16px;
  4436. display:flex;
  4437. font-family:'Helvetica', sans-serif;
  4438. font-weight:400;
  4439. font-style:normal;
  4440. font-size:12px;
  4441. color:rgba(0, 0, 0, 0.996078431372549);
  4442. text-align:left;
  4443. }
  4444. #u64391 .text {
  4445. position:absolute;
  4446. align-self:flex-start;
  4447. padding:0px 0px 0px 0px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u64391_text {
  4452. border-width:0px;
  4453. word-wrap:break-word;
  4454. text-transform:none;
  4455. }
  4456. #u64392_div {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:26px;
  4462. height:16px;
  4463. background:inherit;
  4464. background-color:rgba(255, 255, 255, 0);
  4465. border:none;
  4466. border-radius:0px;
  4467. -moz-box-shadow:none;
  4468. -webkit-box-shadow:none;
  4469. box-shadow:none;
  4470. font-family:'Helvetica', sans-serif;
  4471. font-weight:400;
  4472. font-style:normal;
  4473. font-size:12px;
  4474. color:rgba(0, 0, 0, 0.996078431372549);
  4475. text-align:left;
  4476. }
  4477. #u64392 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:493px;
  4481. top:650px;
  4482. width:26px;
  4483. height:16px;
  4484. display:flex;
  4485. font-family:'Helvetica', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:12px;
  4489. color:rgba(0, 0, 0, 0.996078431372549);
  4490. text-align:left;
  4491. }
  4492. #u64392 .text {
  4493. position:absolute;
  4494. align-self:flex-start;
  4495. padding:0px 0px 0px 0px;
  4496. box-sizing:border-box;
  4497. width:100%;
  4498. }
  4499. #u64392_text {
  4500. border-width:0px;
  4501. word-wrap:break-word;
  4502. text-transform:none;
  4503. }
  4504. #u64393_div {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:0px;
  4508. top:0px;
  4509. width:26px;
  4510. height:16px;
  4511. background:inherit;
  4512. background-color:rgba(255, 255, 255, 0);
  4513. border:none;
  4514. border-radius:0px;
  4515. -moz-box-shadow:none;
  4516. -webkit-box-shadow:none;
  4517. box-shadow:none;
  4518. font-family:'Helvetica', sans-serif;
  4519. font-weight:400;
  4520. font-style:normal;
  4521. font-size:12px;
  4522. color:rgba(0, 0, 0, 0.996078431372549);
  4523. text-align:left;
  4524. }
  4525. #u64393 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:550px;
  4529. top:650px;
  4530. width:26px;
  4531. height:16px;
  4532. display:flex;
  4533. font-family:'Helvetica', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:12px;
  4537. color:rgba(0, 0, 0, 0.996078431372549);
  4538. text-align:left;
  4539. }
  4540. #u64393 .text {
  4541. position:absolute;
  4542. align-self:flex-start;
  4543. padding:0px 0px 0px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u64393_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. }
  4552. #u64394_div {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:26px;
  4558. height:16px;
  4559. background:inherit;
  4560. background-color:rgba(255, 255, 255, 0);
  4561. border:none;
  4562. border-radius:0px;
  4563. -moz-box-shadow:none;
  4564. -webkit-box-shadow:none;
  4565. box-shadow:none;
  4566. font-family:'Helvetica', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:12px;
  4570. color:rgba(0, 0, 0, 0.996078431372549);
  4571. text-align:left;
  4572. }
  4573. #u64394 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:608px;
  4577. top:650px;
  4578. width:26px;
  4579. height:16px;
  4580. display:flex;
  4581. font-family:'Helvetica', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:12px;
  4585. color:rgba(0, 0, 0, 0.996078431372549);
  4586. text-align:left;
  4587. }
  4588. #u64394 .text {
  4589. position:absolute;
  4590. align-self:flex-start;
  4591. padding:0px 0px 0px 0px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u64394_text {
  4596. border-width:0px;
  4597. word-wrap:break-word;
  4598. text-transform:none;
  4599. }
  4600. #u64395_div {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:26px;
  4606. height:16px;
  4607. background:inherit;
  4608. background-color:rgba(255, 255, 255, 0);
  4609. border:none;
  4610. border-radius:0px;
  4611. -moz-box-shadow:none;
  4612. -webkit-box-shadow:none;
  4613. box-shadow:none;
  4614. font-family:'Helvetica', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:12px;
  4618. color:rgba(0, 0, 0, 0.996078431372549);
  4619. text-align:left;
  4620. }
  4621. #u64395 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:661px;
  4625. top:650px;
  4626. width:26px;
  4627. height:16px;
  4628. display:flex;
  4629. font-family:'Helvetica', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:12px;
  4633. color:rgba(0, 0, 0, 0.996078431372549);
  4634. text-align:left;
  4635. }
  4636. #u64395 .text {
  4637. position:absolute;
  4638. align-self:flex-start;
  4639. padding:0px 0px 0px 0px;
  4640. box-sizing:border-box;
  4641. width:100%;
  4642. }
  4643. #u64395_text {
  4644. border-width:0px;
  4645. word-wrap:break-word;
  4646. text-transform:none;
  4647. }
  4648. #u64396_div {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:26px;
  4654. height:16px;
  4655. background:inherit;
  4656. background-color:rgba(255, 255, 255, 0);
  4657. border:none;
  4658. border-radius:0px;
  4659. -moz-box-shadow:none;
  4660. -webkit-box-shadow:none;
  4661. box-shadow:none;
  4662. font-family:'Helvetica', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:12px;
  4666. color:rgba(0, 0, 0, 0.996078431372549);
  4667. text-align:left;
  4668. }
  4669. #u64396 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:717px;
  4673. top:650px;
  4674. width:26px;
  4675. height:16px;
  4676. display:flex;
  4677. font-family:'Helvetica', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:12px;
  4681. color:rgba(0, 0, 0, 0.996078431372549);
  4682. text-align:left;
  4683. }
  4684. #u64396 .text {
  4685. position:absolute;
  4686. align-self:flex-start;
  4687. padding:0px 0px 0px 0px;
  4688. box-sizing:border-box;
  4689. width:100%;
  4690. }
  4691. #u64396_text {
  4692. border-width:0px;
  4693. word-wrap:break-word;
  4694. text-transform:none;
  4695. }
  4696. #u64397_img {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:719px;
  4702. height:2px;
  4703. }
  4704. #u64397 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:419px;
  4708. top:638px;
  4709. width:718px;
  4710. height:1px;
  4711. display:flex;
  4712. }
  4713. #u64397 .text {
  4714. position:absolute;
  4715. align-self:center;
  4716. padding:0px 0px 0px 0px;
  4717. box-sizing:border-box;
  4718. width:100%;
  4719. }
  4720. #u64397_text {
  4721. border-width:0px;
  4722. word-wrap:break-word;
  4723. text-transform:none;
  4724. visibility:hidden;
  4725. }
  4726. #u64398_img {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:719px;
  4732. height:2px;
  4733. }
  4734. #u64398 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:419px;
  4738. top:578px;
  4739. width:718px;
  4740. height:1px;
  4741. display:flex;
  4742. }
  4743. #u64398 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:0px 0px 0px 0px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u64398_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u64399_img {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:719px;
  4762. height:2px;
  4763. }
  4764. #u64399 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:419px;
  4768. top:516px;
  4769. width:718px;
  4770. height:1px;
  4771. display:flex;
  4772. }
  4773. #u64399 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:0px 0px 0px 0px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u64399_text {
  4781. border-width:0px;
  4782. word-wrap:break-word;
  4783. text-transform:none;
  4784. visibility:hidden;
  4785. }
  4786. #u64400_img {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:719px;
  4792. height:2px;
  4793. }
  4794. #u64400 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:419px;
  4798. top:456px;
  4799. width:718px;
  4800. height:1px;
  4801. display:flex;
  4802. }
  4803. #u64400 .text {
  4804. position:absolute;
  4805. align-self:center;
  4806. padding:0px 0px 0px 0px;
  4807. box-sizing:border-box;
  4808. width:100%;
  4809. }
  4810. #u64400_text {
  4811. border-width:0px;
  4812. word-wrap:break-word;
  4813. text-transform:none;
  4814. visibility:hidden;
  4815. }
  4816. #u64401_img {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:719px;
  4822. height:2px;
  4823. }
  4824. #u64401 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:419px;
  4828. top:396px;
  4829. width:718px;
  4830. height:1px;
  4831. display:flex;
  4832. }
  4833. #u64401 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:0px 0px 0px 0px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u64401_text {
  4841. border-width:0px;
  4842. word-wrap:break-word;
  4843. text-transform:none;
  4844. visibility:hidden;
  4845. }
  4846. #u64402_div {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:5px;
  4852. height:16px;
  4853. background:inherit;
  4854. background-color:rgba(255, 255, 255, 0);
  4855. border:none;
  4856. border-radius:0px;
  4857. -moz-box-shadow:none;
  4858. -webkit-box-shadow:none;
  4859. box-shadow:none;
  4860. font-family:'Helvetica', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:12px;
  4864. color:rgba(0, 0, 0, 0.988235294117647);
  4865. text-align:left;
  4866. }
  4867. #u64402 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:410px;
  4871. top:632px;
  4872. width:5px;
  4873. height:16px;
  4874. display:flex;
  4875. font-family:'Helvetica', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:12px;
  4879. color:rgba(0, 0, 0, 0.988235294117647);
  4880. text-align:left;
  4881. }
  4882. #u64402 .text {
  4883. position:absolute;
  4884. align-self:flex-start;
  4885. padding:0px 0px 0px 0px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u64402_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. }
  4894. #u64403_div {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:14px;
  4900. height:14px;
  4901. background:inherit;
  4902. background-color:rgba(255, 255, 255, 0);
  4903. border:none;
  4904. border-radius:0px;
  4905. -moz-box-shadow:none;
  4906. -webkit-box-shadow:none;
  4907. box-shadow:none;
  4908. font-family:'Helvetica', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:12px;
  4912. color:rgba(0, 0, 0, 0.988235294117647);
  4913. text-align:left;
  4914. }
  4915. #u64403 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:402px;
  4919. top:571px;
  4920. width:14px;
  4921. height:14px;
  4922. display:flex;
  4923. font-family:'Helvetica', sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:12px;
  4927. color:rgba(0, 0, 0, 0.988235294117647);
  4928. text-align:left;
  4929. }
  4930. #u64403 .text {
  4931. position:absolute;
  4932. align-self:flex-start;
  4933. padding:0px 0px 0px 0px;
  4934. box-sizing:border-box;
  4935. width:100%;
  4936. }
  4937. #u64403_text {
  4938. border-width:0px;
  4939. white-space:nowrap;
  4940. text-transform:none;
  4941. }
  4942. #u64404_div {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:21px;
  4948. height:14px;
  4949. background:inherit;
  4950. background-color:rgba(255, 255, 255, 0);
  4951. border:none;
  4952. border-radius:0px;
  4953. -moz-box-shadow:none;
  4954. -webkit-box-shadow:none;
  4955. box-shadow:none;
  4956. font-family:'Helvetica', sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. font-size:12px;
  4960. color:rgba(0, 0, 0, 0.988235294117647);
  4961. text-align:left;
  4962. }
  4963. #u64404 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:402px;
  4967. top:511px;
  4968. width:21px;
  4969. height:14px;
  4970. display:flex;
  4971. font-family:'Helvetica', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:12px;
  4975. color:rgba(0, 0, 0, 0.988235294117647);
  4976. text-align:left;
  4977. }
  4978. #u64404 .text {
  4979. position:absolute;
  4980. align-self:flex-start;
  4981. padding:0px 0px 0px 0px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u64404_text {
  4986. border-width:0px;
  4987. white-space:nowrap;
  4988. text-transform:none;
  4989. }
  4990. #u64405_div {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:21px;
  4996. height:14px;
  4997. background:inherit;
  4998. background-color:rgba(255, 255, 255, 0);
  4999. border:none;
  5000. border-radius:0px;
  5001. -moz-box-shadow:none;
  5002. -webkit-box-shadow:none;
  5003. box-shadow:none;
  5004. font-family:'Helvetica', sans-serif;
  5005. font-weight:400;
  5006. font-style:normal;
  5007. font-size:12px;
  5008. color:rgba(0, 0, 0, 0.988235294117647);
  5009. text-align:left;
  5010. }
  5011. #u64405 {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:402px;
  5015. top:449px;
  5016. width:21px;
  5017. height:14px;
  5018. display:flex;
  5019. font-family:'Helvetica', sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:12px;
  5023. color:rgba(0, 0, 0, 0.988235294117647);
  5024. text-align:left;
  5025. }
  5026. #u64405 .text {
  5027. position:absolute;
  5028. align-self:flex-start;
  5029. padding:0px 0px 0px 0px;
  5030. box-sizing:border-box;
  5031. width:100%;
  5032. }
  5033. #u64405_text {
  5034. border-width:0px;
  5035. white-space:nowrap;
  5036. text-transform:none;
  5037. }
  5038. #u64406_div {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:21px;
  5044. height:14px;
  5045. background:inherit;
  5046. background-color:rgba(255, 255, 255, 0);
  5047. border:none;
  5048. border-radius:0px;
  5049. -moz-box-shadow:none;
  5050. -webkit-box-shadow:none;
  5051. box-shadow:none;
  5052. font-family:'Helvetica', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:12px;
  5056. color:rgba(0, 0, 0, 0.988235294117647);
  5057. text-align:left;
  5058. }
  5059. #u64406 {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:399px;
  5063. top:389px;
  5064. width:21px;
  5065. height:14px;
  5066. display:flex;
  5067. font-family:'Helvetica', sans-serif;
  5068. font-weight:400;
  5069. font-style:normal;
  5070. font-size:12px;
  5071. color:rgba(0, 0, 0, 0.988235294117647);
  5072. text-align:left;
  5073. }
  5074. #u64406 .text {
  5075. position:absolute;
  5076. align-self:flex-start;
  5077. padding:0px 0px 0px 0px;
  5078. box-sizing:border-box;
  5079. width:100%;
  5080. }
  5081. #u64406_text {
  5082. border-width:0px;
  5083. white-space:nowrap;
  5084. text-transform:none;
  5085. }
  5086. #u64407_img {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:321px;
  5092. height:7px;
  5093. }
  5094. #u64407p000 {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:-6px;
  5098. top:0px;
  5099. width:12px;
  5100. height:6px;
  5101. -webkit-transform:rotate(90deg);
  5102. -moz-transform:rotate(90deg);
  5103. -ms-transform:rotate(90deg);
  5104. transform:rotate(90deg);
  5105. }
  5106. #u64407p000_img {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:12px;
  5112. height:6px;
  5113. }
  5114. #u64407p001 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:58px;
  5118. top:0px;
  5119. width:12px;
  5120. height:6px;
  5121. -webkit-transform:rotate(90deg);
  5122. -moz-transform:rotate(90deg);
  5123. -ms-transform:rotate(90deg);
  5124. transform:rotate(90deg);
  5125. }
  5126. #u64407p001_img {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:12px;
  5132. height:6px;
  5133. }
  5134. #u64407p002 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:122px;
  5138. top:0px;
  5139. width:12px;
  5140. height:6px;
  5141. -webkit-transform:rotate(90deg);
  5142. -moz-transform:rotate(90deg);
  5143. -ms-transform:rotate(90deg);
  5144. transform:rotate(90deg);
  5145. }
  5146. #u64407p002_img {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:12px;
  5152. height:6px;
  5153. }
  5154. #u64407p003 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:186px;
  5158. top:0px;
  5159. width:12px;
  5160. height:6px;
  5161. -webkit-transform:rotate(90deg);
  5162. -moz-transform:rotate(90deg);
  5163. -ms-transform:rotate(90deg);
  5164. transform:rotate(90deg);
  5165. }
  5166. #u64407p003_img {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:12px;
  5172. height:6px;
  5173. }
  5174. #u64407p004 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:250px;
  5178. top:0px;
  5179. width:12px;
  5180. height:6px;
  5181. -webkit-transform:rotate(90deg);
  5182. -moz-transform:rotate(90deg);
  5183. -ms-transform:rotate(90deg);
  5184. transform:rotate(90deg);
  5185. }
  5186. #u64407p004_img {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:12px;
  5192. height:6px;
  5193. }
  5194. #u64407p005 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:314px;
  5198. top:0px;
  5199. width:12px;
  5200. height:6px;
  5201. -webkit-transform:rotate(90deg);
  5202. -moz-transform:rotate(90deg);
  5203. -ms-transform:rotate(90deg);
  5204. transform:rotate(90deg);
  5205. }
  5206. #u64407p005_img {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:12px;
  5212. height:6px;
  5213. }
  5214. #u64407.compound {
  5215. width:0px;
  5216. height:0px;
  5217. }
  5218. #u64407 {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:778px;
  5222. top:638px;
  5223. width:320px;
  5224. height:6px;
  5225. display:flex;
  5226. opacity:0.2;
  5227. }
  5228. #u64407 .text {
  5229. position:absolute;
  5230. align-self:center;
  5231. padding:0px 0px 0px 0px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u64407_text {
  5236. border-width:0px;
  5237. word-wrap:break-word;
  5238. text-transform:none;
  5239. visibility:hidden;
  5240. }
  5241. #u64408_div {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:26px;
  5247. height:16px;
  5248. background:inherit;
  5249. background-color:rgba(255, 255, 255, 0);
  5250. border:none;
  5251. border-radius:0px;
  5252. -moz-box-shadow:none;
  5253. -webkit-box-shadow:none;
  5254. box-shadow:none;
  5255. font-family:'Helvetica', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. font-size:12px;
  5259. color:rgba(0, 0, 0, 0.996078431372549);
  5260. text-align:left;
  5261. }
  5262. #u64408 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:775px;
  5266. top:650px;
  5267. width:26px;
  5268. height:16px;
  5269. display:flex;
  5270. font-family:'Helvetica', sans-serif;
  5271. font-weight:400;
  5272. font-style:normal;
  5273. font-size:12px;
  5274. color:rgba(0, 0, 0, 0.996078431372549);
  5275. text-align:left;
  5276. }
  5277. #u64408 .text {
  5278. position:absolute;
  5279. align-self:flex-start;
  5280. padding:0px 0px 0px 0px;
  5281. box-sizing:border-box;
  5282. width:100%;
  5283. }
  5284. #u64408_text {
  5285. border-width:0px;
  5286. word-wrap:break-word;
  5287. text-transform:none;
  5288. }
  5289. #u64409_div {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:26px;
  5295. height:16px;
  5296. background:inherit;
  5297. background-color:rgba(255, 255, 255, 0);
  5298. border:none;
  5299. border-radius:0px;
  5300. -moz-box-shadow:none;
  5301. -webkit-box-shadow:none;
  5302. box-shadow:none;
  5303. font-family:'Helvetica', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:12px;
  5307. color:rgba(0, 0, 0, 0.996078431372549);
  5308. text-align:left;
  5309. }
  5310. #u64409 {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:837px;
  5314. top:650px;
  5315. width:26px;
  5316. height:16px;
  5317. display:flex;
  5318. font-family:'Helvetica', sans-serif;
  5319. font-weight:400;
  5320. font-style:normal;
  5321. font-size:12px;
  5322. color:rgba(0, 0, 0, 0.996078431372549);
  5323. text-align:left;
  5324. }
  5325. #u64409 .text {
  5326. position:absolute;
  5327. align-self:flex-start;
  5328. padding:0px 0px 0px 0px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u64409_text {
  5333. border-width:0px;
  5334. word-wrap:break-word;
  5335. text-transform:none;
  5336. }
  5337. #u64410_div {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:26px;
  5343. height:16px;
  5344. background:inherit;
  5345. background-color:rgba(255, 255, 255, 0);
  5346. border:none;
  5347. border-radius:0px;
  5348. -moz-box-shadow:none;
  5349. -webkit-box-shadow:none;
  5350. box-shadow:none;
  5351. font-family:'Helvetica', sans-serif;
  5352. font-weight:400;
  5353. font-style:normal;
  5354. font-size:12px;
  5355. color:rgba(0, 0, 0, 0.996078431372549);
  5356. text-align:left;
  5357. }
  5358. #u64410 {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:898px;
  5362. top:650px;
  5363. width:26px;
  5364. height:16px;
  5365. display:flex;
  5366. font-family:'Helvetica', sans-serif;
  5367. font-weight:400;
  5368. font-style:normal;
  5369. font-size:12px;
  5370. color:rgba(0, 0, 0, 0.996078431372549);
  5371. text-align:left;
  5372. }
  5373. #u64410 .text {
  5374. position:absolute;
  5375. align-self:flex-start;
  5376. padding:0px 0px 0px 0px;
  5377. box-sizing:border-box;
  5378. width:100%;
  5379. }
  5380. #u64410_text {
  5381. border-width:0px;
  5382. word-wrap:break-word;
  5383. text-transform:none;
  5384. }
  5385. #u64411_div {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:26px;
  5391. height:16px;
  5392. background:inherit;
  5393. background-color:rgba(255, 255, 255, 0);
  5394. border:none;
  5395. border-radius:0px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. font-family:'Helvetica', sans-serif;
  5400. font-weight:400;
  5401. font-style:normal;
  5402. font-size:12px;
  5403. color:rgba(0, 0, 0, 0.996078431372549);
  5404. text-align:left;
  5405. }
  5406. #u64411 {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:964px;
  5410. top:650px;
  5411. width:26px;
  5412. height:16px;
  5413. display:flex;
  5414. font-family:'Helvetica', sans-serif;
  5415. font-weight:400;
  5416. font-style:normal;
  5417. font-size:12px;
  5418. color:rgba(0, 0, 0, 0.996078431372549);
  5419. text-align:left;
  5420. }
  5421. #u64411 .text {
  5422. position:absolute;
  5423. align-self:flex-start;
  5424. padding:0px 0px 0px 0px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. #u64411_text {
  5429. border-width:0px;
  5430. word-wrap:break-word;
  5431. text-transform:none;
  5432. }
  5433. #u64412_div {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:26px;
  5439. height:16px;
  5440. background:inherit;
  5441. background-color:rgba(255, 255, 255, 0);
  5442. border:none;
  5443. border-radius:0px;
  5444. -moz-box-shadow:none;
  5445. -webkit-box-shadow:none;
  5446. box-shadow:none;
  5447. font-family:'Helvetica', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:12px;
  5451. color:rgba(0, 0, 0, 0.996078431372549);
  5452. text-align:left;
  5453. }
  5454. #u64412 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:1026px;
  5458. top:650px;
  5459. width:26px;
  5460. height:16px;
  5461. display:flex;
  5462. font-family:'Helvetica', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:12px;
  5466. color:rgba(0, 0, 0, 0.996078431372549);
  5467. text-align:left;
  5468. }
  5469. #u64412 .text {
  5470. position:absolute;
  5471. align-self:flex-start;
  5472. padding:0px 0px 0px 0px;
  5473. box-sizing:border-box;
  5474. width:100%;
  5475. }
  5476. #u64412_text {
  5477. border-width:0px;
  5478. word-wrap:break-word;
  5479. text-transform:none;
  5480. }
  5481. #u64413_div {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:26px;
  5487. height:16px;
  5488. background:inherit;
  5489. background-color:rgba(255, 255, 255, 0);
  5490. border:none;
  5491. border-radius:0px;
  5492. -moz-box-shadow:none;
  5493. -webkit-box-shadow:none;
  5494. box-shadow:none;
  5495. font-family:'Helvetica', sans-serif;
  5496. font-weight:400;
  5497. font-style:normal;
  5498. font-size:12px;
  5499. color:rgba(0, 0, 0, 0.996078431372549);
  5500. text-align:left;
  5501. }
  5502. #u64413 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:1090px;
  5506. top:650px;
  5507. width:26px;
  5508. height:16px;
  5509. display:flex;
  5510. font-family:'Helvetica', sans-serif;
  5511. font-weight:400;
  5512. font-style:normal;
  5513. font-size:12px;
  5514. color:rgba(0, 0, 0, 0.996078431372549);
  5515. text-align:left;
  5516. }
  5517. #u64413 .text {
  5518. position:absolute;
  5519. align-self:flex-start;
  5520. padding:0px 0px 0px 0px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u64413_text {
  5525. border-width:0px;
  5526. word-wrap:break-word;
  5527. text-transform:none;
  5528. }
  5529. #u64414 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:0px;
  5535. height:0px;
  5536. }
  5537. #u64415_img {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:2px;
  5543. height:254px;
  5544. }
  5545. #u64415 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:666px;
  5549. top:381px;
  5550. width:1px;
  5551. height:253px;
  5552. display:flex;
  5553. }
  5554. #u64415 .text {
  5555. position:absolute;
  5556. align-self:center;
  5557. padding:2px 2px 2px 2px;
  5558. box-sizing:border-box;
  5559. width:100%;
  5560. }
  5561. #u64415_text {
  5562. border-width:0px;
  5563. word-wrap:break-word;
  5564. text-transform:none;
  5565. visibility:hidden;
  5566. }
  5567. #u64416_div {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:73px;
  5573. height:17px;
  5574. background:inherit;
  5575. background-color:rgba(255, 255, 255, 0);
  5576. border:none;
  5577. border-radius:0px;
  5578. -moz-box-shadow:none;
  5579. -webkit-box-shadow:none;
  5580. box-shadow:none;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:12px;
  5585. color:#555555;
  5586. text-align:left;
  5587. }
  5588. #u64416 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:394px;
  5592. top:335px;
  5593. width:73px;
  5594. height:17px;
  5595. display:flex;
  5596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:12px;
  5600. color:#555555;
  5601. text-align:left;
  5602. }
  5603. #u64416 .text {
  5604. position:absolute;
  5605. align-self:flex-start;
  5606. padding:0px 0px 0px 0px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u64416_text {
  5611. border-width:0px;
  5612. white-space:nowrap;
  5613. text-transform:none;
  5614. }
  5615. #u64417 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:0px;
  5621. height:0px;
  5622. }
  5623. #u64418_img {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:-2px;
  5627. top:-2px;
  5628. width:74px;
  5629. height:54px;
  5630. }
  5631. #u64418 {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:662px;
  5635. top:481px;
  5636. width:64px;
  5637. height:44px;
  5638. display:flex;
  5639. font-family:'微软雅黑', sans-serif;
  5640. font-weight:400;
  5641. font-style:normal;
  5642. font-size:12px;
  5643. color:#4B4D53;
  5644. }
  5645. #u64418 .text {
  5646. position:absolute;
  5647. align-self:center;
  5648. padding:2px 2px 2px 2px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u64418_text {
  5653. border-width:0px;
  5654. word-wrap:break-word;
  5655. text-transform:none;
  5656. visibility:hidden;
  5657. }
  5658. #u64419_div {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:52px;
  5664. height:17px;
  5665. background:inherit;
  5666. background-color:rgba(255, 255, 255, 0);
  5667. border:none;
  5668. border-radius:0px;
  5669. -moz-box-shadow:none;
  5670. -webkit-box-shadow:none;
  5671. box-shadow:none;
  5672. font-size:12px;
  5673. color:#4B4D53;
  5674. }
  5675. #u64419 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:670px;
  5679. top:492px;
  5680. width:52px;
  5681. height:17px;
  5682. display:flex;
  5683. font-size:12px;
  5684. color:#4B4D53;
  5685. }
  5686. #u64419 .text {
  5687. position:absolute;
  5688. align-self:flex-start;
  5689. padding:0px 0px 0px 0px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u64419_text {
  5694. border-width:0px;
  5695. white-space:nowrap;
  5696. text-transform:none;
  5697. }
  5698. #u64420 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:0px;
  5702. top:0px;
  5703. width:0px;
  5704. height:0px;
  5705. }
  5706. #u64421_img {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:9px;
  5712. height:10px;
  5713. }
  5714. #u64421 {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:839px;
  5718. top:356px;
  5719. width:9px;
  5720. height:10px;
  5721. display:flex;
  5722. }
  5723. #u64421 .text {
  5724. position:absolute;
  5725. align-self:center;
  5726. padding:2px 2px 2px 2px;
  5727. box-sizing:border-box;
  5728. width:100%;
  5729. }
  5730. #u64421_text {
  5731. border-width:0px;
  5732. word-wrap:break-word;
  5733. text-transform:none;
  5734. visibility:hidden;
  5735. }
  5736. #u64422_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:61px;
  5742. height:17px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 0);
  5745. border:none;
  5746. border-radius:0px;
  5747. -moz-box-shadow:none;
  5748. -webkit-box-shadow:none;
  5749. box-shadow:none;
  5750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:12px;
  5754. color:#4B4D53;
  5755. }
  5756. #u64422 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:855px;
  5760. top:351px;
  5761. width:61px;
  5762. height:17px;
  5763. display:flex;
  5764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:12px;
  5768. color:#4B4D53;
  5769. }
  5770. #u64422 .text {
  5771. position:absolute;
  5772. align-self:flex-start;
  5773. padding:0px 0px 0px 0px;
  5774. box-sizing:border-box;
  5775. width:100%;
  5776. }
  5777. #u64422_text {
  5778. border-width:0px;
  5779. white-space:nowrap;
  5780. text-transform:none;
  5781. }
  5782. #u64423 {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:0px;
  5788. height:0px;
  5789. }
  5790. #u64424_img {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:0px;
  5794. top:0px;
  5795. width:9px;
  5796. height:10px;
  5797. }
  5798. #u64424 {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:929px;
  5802. top:356px;
  5803. width:9px;
  5804. height:10px;
  5805. display:flex;
  5806. }
  5807. #u64424 .text {
  5808. position:absolute;
  5809. align-self:center;
  5810. padding:2px 2px 2px 2px;
  5811. box-sizing:border-box;
  5812. width:100%;
  5813. }
  5814. #u64424_text {
  5815. border-width:0px;
  5816. word-wrap:break-word;
  5817. text-transform:none;
  5818. visibility:hidden;
  5819. }
  5820. #u64425_div {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:49px;
  5826. height:17px;
  5827. background:inherit;
  5828. background-color:rgba(255, 255, 255, 0);
  5829. border:none;
  5830. border-radius:0px;
  5831. -moz-box-shadow:none;
  5832. -webkit-box-shadow:none;
  5833. box-shadow:none;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:12px;
  5838. color:#4B4D53;
  5839. }
  5840. #u64425 {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:945px;
  5844. top:351px;
  5845. width:49px;
  5846. height:17px;
  5847. display:flex;
  5848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5849. font-weight:400;
  5850. font-style:normal;
  5851. font-size:12px;
  5852. color:#4B4D53;
  5853. }
  5854. #u64425 .text {
  5855. position:absolute;
  5856. align-self:flex-start;
  5857. padding:0px 0px 0px 0px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u64425_text {
  5862. border-width:0px;
  5863. white-space:nowrap;
  5864. text-transform:none;
  5865. }
  5866. #u64426 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:0px;
  5872. height:0px;
  5873. }
  5874. #u64427_img {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:9px;
  5880. height:10px;
  5881. }
  5882. #u64427 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:1008px;
  5886. top:356px;
  5887. width:9px;
  5888. height:10px;
  5889. display:flex;
  5890. }
  5891. #u64427 .text {
  5892. position:absolute;
  5893. align-self:center;
  5894. padding:2px 2px 2px 2px;
  5895. box-sizing:border-box;
  5896. width:100%;
  5897. }
  5898. #u64427_text {
  5899. border-width:0px;
  5900. word-wrap:break-word;
  5901. text-transform:none;
  5902. visibility:hidden;
  5903. }
  5904. #u64428_div {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:49px;
  5910. height:17px;
  5911. background:inherit;
  5912. background-color:rgba(255, 255, 255, 0);
  5913. border:none;
  5914. border-radius:0px;
  5915. -moz-box-shadow:none;
  5916. -webkit-box-shadow:none;
  5917. box-shadow:none;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:12px;
  5922. color:#4B4D53;
  5923. }
  5924. #u64428 {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:1024px;
  5928. top:351px;
  5929. width:49px;
  5930. height:17px;
  5931. display:flex;
  5932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:12px;
  5936. color:#4B4D53;
  5937. }
  5938. #u64428 .text {
  5939. position:absolute;
  5940. align-self:flex-start;
  5941. padding:0px 0px 0px 0px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u64428_text {
  5946. border-width:0px;
  5947. white-space:nowrap;
  5948. text-transform:none;
  5949. }
  5950. #u64429_div {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:0px;
  5955. width:7px;
  5956. height:139px;
  5957. background:inherit;
  5958. background-color:rgba(245, 197, 35, 1);
  5959. border:none;
  5960. border-radius:0px;
  5961. -moz-box-shadow:none;
  5962. -webkit-box-shadow:none;
  5963. box-shadow:none;
  5964. }
  5965. #u64429 {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:439px;
  5969. top:501px;
  5970. width:7px;
  5971. height:139px;
  5972. display:flex;
  5973. }
  5974. #u64429 .text {
  5975. position:absolute;
  5976. align-self:center;
  5977. padding:2px 2px 2px 2px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u64429_text {
  5982. border-width:0px;
  5983. word-wrap:break-word;
  5984. text-transform:none;
  5985. visibility:hidden;
  5986. }
  5987. #u64430 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:0px;
  5993. height:0px;
  5994. }
  5995. #u64431_img {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:0px;
  5999. top:0px;
  6000. width:9px;
  6001. height:10px;
  6002. }
  6003. #u64431 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:1087px;
  6007. top:356px;
  6008. width:9px;
  6009. height:10px;
  6010. display:flex;
  6011. }
  6012. #u64431 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:2px 2px 2px 2px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u64431_text {
  6020. border-width:0px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. visibility:hidden;
  6024. }
  6025. #u64432_div {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:37px;
  6031. height:17px;
  6032. background:inherit;
  6033. background-color:rgba(255, 255, 255, 0);
  6034. border:none;
  6035. border-radius:0px;
  6036. -moz-box-shadow:none;
  6037. -webkit-box-shadow:none;
  6038. box-shadow:none;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#4B4D53;
  6044. }
  6045. #u64432 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:1103px;
  6049. top:351px;
  6050. width:37px;
  6051. height:17px;
  6052. display:flex;
  6053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:12px;
  6057. color:#4B4D53;
  6058. }
  6059. #u64432 .text {
  6060. position:absolute;
  6061. align-self:flex-start;
  6062. padding:0px 0px 0px 0px;
  6063. box-sizing:border-box;
  6064. width:100%;
  6065. }
  6066. #u64432_text {
  6067. border-width:0px;
  6068. white-space:nowrap;
  6069. text-transform:none;
  6070. }
  6071. #u64433_div {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:60px;
  6077. height:30px;
  6078. background:inherit;
  6079. background-color:rgba(51, 51, 51, 1);
  6080. box-sizing:border-box;
  6081. border-width:1px;
  6082. border-style:solid;
  6083. border-color:rgba(215, 215, 215, 1);
  6084. border-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:14px;
  6092. color:#FFFFFF;
  6093. text-align:center;
  6094. line-height:30px;
  6095. }
  6096. #u64433 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:1358px;
  6100. top:268px;
  6101. width:60px;
  6102. height:30px;
  6103. display:flex;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:14px;
  6108. color:#FFFFFF;
  6109. text-align:center;
  6110. line-height:30px;
  6111. }
  6112. #u64433 .text {
  6113. position:absolute;
  6114. align-self:flex-start;
  6115. padding:0px 0px 0px 0px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u64433_text {
  6120. border-width:0px;
  6121. word-wrap:break-word;
  6122. text-transform:none;
  6123. }
  6124. #u64434_div {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:60px;
  6130. height:30px;
  6131. background:inherit;
  6132. background-color:rgba(255, 255, 255, 0);
  6133. box-sizing:border-box;
  6134. border-width:1px;
  6135. border-style:solid;
  6136. border-color:rgba(215, 215, 215, 1);
  6137. border-radius:0px;
  6138. -moz-box-shadow:none;
  6139. -webkit-box-shadow:none;
  6140. box-shadow:none;
  6141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6142. font-weight:400;
  6143. font-style:normal;
  6144. font-size:14px;
  6145. text-align:center;
  6146. line-height:30px;
  6147. }
  6148. #u64434 {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:1299px;
  6152. top:268px;
  6153. width:60px;
  6154. height:30px;
  6155. display:flex;
  6156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6157. font-weight:400;
  6158. font-style:normal;
  6159. font-size:14px;
  6160. text-align:center;
  6161. line-height:30px;
  6162. }
  6163. #u64434 .text {
  6164. position:absolute;
  6165. align-self:flex-start;
  6166. padding:0px 0px 0px 0px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u64434_text {
  6171. border-width:0px;
  6172. word-wrap:break-word;
  6173. text-transform:none;
  6174. }
  6175. #u64435 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:0px;
  6181. height:0px;
  6182. }
  6183. #u64436_div {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:0px;
  6187. top:0px;
  6188. width:140px;
  6189. height:30px;
  6190. background:inherit;
  6191. background-color:rgba(255, 255, 255, 1);
  6192. box-sizing:border-box;
  6193. border-width:1px;
  6194. border-style:solid;
  6195. border-color:rgba(201, 201, 201, 1);
  6196. border-radius:0px;
  6197. -moz-box-shadow:none;
  6198. -webkit-box-shadow:none;
  6199. box-shadow:none;
  6200. font-family:'Microsoft YaHei', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:14px;
  6204. color:#CCCCCC;
  6205. text-align:left;
  6206. }
  6207. #u64436 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:1428px;
  6211. top:268px;
  6212. width:140px;
  6213. height:30px;
  6214. display:flex;
  6215. font-family:'Microsoft YaHei', sans-serif;
  6216. font-weight:400;
  6217. font-style:normal;
  6218. font-size:14px;
  6219. color:#CCCCCC;
  6220. text-align:left;
  6221. }
  6222. #u64436 .text {
  6223. position:absolute;
  6224. align-self:center;
  6225. padding:2px 8px 2px 8px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u64436_text {
  6230. border-width:0px;
  6231. word-wrap:break-word;
  6232. text-transform:none;
  6233. visibility:hidden;
  6234. }
  6235. #u64437_input {
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:113px;
  6240. height:27px;
  6241. padding:2px 2px 2px 2px;
  6242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6243. font-weight:400;
  6244. font-style:normal;
  6245. font-size:12px;
  6246. letter-spacing:normal;
  6247. color:#000000;
  6248. vertical-align:none;
  6249. text-align:left;
  6250. text-transform:none;
  6251. background-color:transparent;
  6252. border-color:transparent;
  6253. }
  6254. #u64437_input.disabled {
  6255. position:absolute;
  6256. left:0px;
  6257. top:0px;
  6258. width:113px;
  6259. height:27px;
  6260. padding:2px 2px 2px 2px;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:12px;
  6265. letter-spacing:normal;
  6266. color:#000000;
  6267. vertical-align:none;
  6268. text-align:left;
  6269. text-transform:none;
  6270. background-color:transparent;
  6271. border-color:transparent;
  6272. }
  6273. #u64437_div {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:113px;
  6279. height:27px;
  6280. background:inherit;
  6281. background-color:rgba(255, 255, 255, 1);
  6282. border:none;
  6283. border-radius:0px;
  6284. -moz-box-shadow:none;
  6285. -webkit-box-shadow:none;
  6286. box-shadow:none;
  6287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:12px;
  6291. }
  6292. #u64437 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:1433px;
  6296. top:269px;
  6297. width:113px;
  6298. height:27px;
  6299. display:flex;
  6300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6301. font-weight:400;
  6302. font-style:normal;
  6303. font-size:12px;
  6304. }
  6305. #u64437 .text {
  6306. position:absolute;
  6307. align-self:center;
  6308. padding:2px 2px 2px 2px;
  6309. box-sizing:border-box;
  6310. width:100%;
  6311. }
  6312. #u64437_div.disabled {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:0px;
  6316. top:0px;
  6317. width:113px;
  6318. height:27px;
  6319. background:inherit;
  6320. background-color:rgba(240, 240, 240, 1);
  6321. border:none;
  6322. border-radius:0px;
  6323. -moz-box-shadow:none;
  6324. -webkit-box-shadow:none;
  6325. box-shadow:none;
  6326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6327. font-weight:400;
  6328. font-style:normal;
  6329. font-size:12px;
  6330. }
  6331. #u64437.disabled {
  6332. }
  6333. #u64438_img {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:13px;
  6339. height:13px;
  6340. }
  6341. #u64438 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:1549px;
  6345. top:277px;
  6346. width:13px;
  6347. height:13px;
  6348. display:flex;
  6349. }
  6350. #u64438 .text {
  6351. position:absolute;
  6352. align-self:center;
  6353. padding:2px 2px 2px 2px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u64438_text {
  6358. border-width:0px;
  6359. word-wrap:break-word;
  6360. text-transform:none;
  6361. visibility:hidden;
  6362. }
  6363. #u64439_div {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:109px;
  6369. height:25px;
  6370. background:inherit;
  6371. background-color:rgba(255, 255, 255, 0);
  6372. border:none;
  6373. border-radius:0px;
  6374. -moz-box-shadow:none;
  6375. -webkit-box-shadow:none;
  6376. box-shadow:none;
  6377. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6378. font-weight:650;
  6379. font-style:normal;
  6380. }
  6381. #u64439 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:380px;
  6385. top:268px;
  6386. width:109px;
  6387. height:25px;
  6388. display:flex;
  6389. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6390. font-weight:650;
  6391. font-style:normal;
  6392. }
  6393. #u64439 .text {
  6394. position:absolute;
  6395. align-self:flex-start;
  6396. padding:0px 0px 0px 0px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u64439_text {
  6401. border-width:0px;
  6402. white-space:nowrap;
  6403. text-transform:none;
  6404. }
  6405. #u64440_img {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:1215px;
  6411. height:2px;
  6412. }
  6413. #u64440 {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:354px;
  6417. top:308px;
  6418. width:1214px;
  6419. height:1px;
  6420. display:flex;
  6421. }
  6422. #u64440 .text {
  6423. position:absolute;
  6424. align-self:center;
  6425. padding:2px 2px 2px 2px;
  6426. box-sizing:border-box;
  6427. width:100%;
  6428. }
  6429. #u64440_text {
  6430. border-width:0px;
  6431. word-wrap:break-word;
  6432. text-transform:none;
  6433. visibility:hidden;
  6434. }
  6435. #u64441_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:145px;
  6441. height:25px;
  6442. background:inherit;
  6443. background-color:rgba(255, 255, 255, 0);
  6444. border:none;
  6445. border-radius:0px;
  6446. -moz-box-shadow:none;
  6447. -webkit-box-shadow:none;
  6448. box-shadow:none;
  6449. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6450. font-weight:650;
  6451. font-style:normal;
  6452. }
  6453. #u64441 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:1182px;
  6457. top:345px;
  6458. width:145px;
  6459. height:25px;
  6460. display:flex;
  6461. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6462. font-weight:650;
  6463. font-style:normal;
  6464. }
  6465. #u64441 .text {
  6466. position:absolute;
  6467. align-self:flex-start;
  6468. padding:0px 0px 0px 0px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u64441_text {
  6473. border-width:0px;
  6474. white-space:nowrap;
  6475. text-transform:none;
  6476. }
  6477. #u64442 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:0px;
  6483. height:0px;
  6484. }
  6485. #u64443_div {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:382px;
  6491. height:50px;
  6492. background:inherit;
  6493. background-color:rgba(255, 255, 255, 1);
  6494. box-sizing:border-box;
  6495. border-width:1px;
  6496. border-style:solid;
  6497. border-color:rgba(215, 215, 215, 1);
  6498. border-left:0px;
  6499. border-right:0px;
  6500. border-radius:0px;
  6501. border-top-left-radius:0px;
  6502. border-top-right-radius:0px;
  6503. border-bottom-right-radius:0px;
  6504. border-bottom-left-radius:0px;
  6505. -moz-box-shadow:none;
  6506. -webkit-box-shadow:none;
  6507. box-shadow:none;
  6508. font-family:'Microsoft YaHei', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. }
  6512. #u64443 {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:1186px;
  6516. top:382px;
  6517. width:382px;
  6518. height:50px;
  6519. display:flex;
  6520. font-family:'Microsoft YaHei', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. }
  6524. #u64443 .text {
  6525. position:absolute;
  6526. align-self:center;
  6527. padding:2px 2px 2px 2px;
  6528. box-sizing:border-box;
  6529. width:100%;
  6530. }
  6531. #u64443_div.selected {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:382px;
  6537. height:50px;
  6538. background:inherit;
  6539. background-color:rgba(255, 255, 255, 1);
  6540. box-sizing:border-box;
  6541. border-width:1px;
  6542. border-style:solid;
  6543. border-color:rgba(24, 144, 255, 1);
  6544. border-left:0px;
  6545. border-right:0px;
  6546. border-radius:0px;
  6547. border-top-left-radius:0px;
  6548. border-top-right-radius:0px;
  6549. border-bottom-right-radius:0px;
  6550. border-bottom-left-radius:0px;
  6551. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6552. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6553. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6554. font-family:'Microsoft YaHei', sans-serif;
  6555. font-weight:400;
  6556. font-style:normal;
  6557. }
  6558. #u64443.selected {
  6559. }
  6560. #u64443_text {
  6561. border-width:0px;
  6562. word-wrap:break-word;
  6563. text-transform:none;
  6564. visibility:hidden;
  6565. }
  6566. #u64444_div {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:0px;
  6570. top:0px;
  6571. width:37px;
  6572. height:25px;
  6573. background:inherit;
  6574. background-color:rgba(255, 255, 255, 0);
  6575. border:none;
  6576. border-radius:0px;
  6577. -moz-box-shadow:none;
  6578. -webkit-box-shadow:none;
  6579. box-shadow:none;
  6580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6581. font-weight:400;
  6582. font-style:normal;
  6583. }
  6584. #u64444 {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:1244px;
  6588. top:394px;
  6589. width:37px;
  6590. height:25px;
  6591. display:flex;
  6592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. }
  6596. #u64444 .text {
  6597. position:absolute;
  6598. align-self:flex-start;
  6599. padding:0px 0px 0px 0px;
  6600. box-sizing:border-box;
  6601. width:100%;
  6602. }
  6603. #u64444_text {
  6604. border-width:0px;
  6605. white-space:nowrap;
  6606. text-transform:none;
  6607. }
  6608. #u64445_img {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:20px;
  6614. height:20px;
  6615. }
  6616. #u64445 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:1203px;
  6620. top:397px;
  6621. width:20px;
  6622. height:20px;
  6623. display:flex;
  6624. font-size:12px;
  6625. color:#FFFFFF;
  6626. }
  6627. #u64445 .text {
  6628. position:absolute;
  6629. align-self:center;
  6630. padding:2px 2px 2px 2px;
  6631. box-sizing:border-box;
  6632. width:100%;
  6633. }
  6634. #u64445_text {
  6635. border-width:0px;
  6636. word-wrap:break-word;
  6637. text-transform:none;
  6638. }
  6639. #u64446_div {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:0px;
  6643. top:0px;
  6644. width:23px;
  6645. height:25px;
  6646. background:inherit;
  6647. background-color:rgba(255, 255, 255, 0);
  6648. border:none;
  6649. border-radius:0px;
  6650. -moz-box-shadow:none;
  6651. -webkit-box-shadow:none;
  6652. box-shadow:none;
  6653. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6654. font-weight:500;
  6655. font-style:normal;
  6656. }
  6657. #u64446 {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:1334px;
  6661. top:394px;
  6662. width:23px;
  6663. height:25px;
  6664. display:flex;
  6665. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6666. font-weight:500;
  6667. font-style:normal;
  6668. }
  6669. #u64446 .text {
  6670. position:absolute;
  6671. align-self:flex-start;
  6672. padding:0px 0px 0px 0px;
  6673. box-sizing:border-box;
  6674. width:100%;
  6675. }
  6676. #u64446_text {
  6677. border-width:0px;
  6678. white-space:nowrap;
  6679. text-transform:none;
  6680. }
  6681. #u64447 {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:0px;
  6687. height:0px;
  6688. }
  6689. #u64448_div {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:0px;
  6693. top:0px;
  6694. width:382px;
  6695. height:50px;
  6696. background:inherit;
  6697. background-color:rgba(255, 255, 255, 1);
  6698. box-sizing:border-box;
  6699. border-width:1px;
  6700. border-style:solid;
  6701. border-color:rgba(215, 215, 215, 1);
  6702. border-left:0px;
  6703. border-right:0px;
  6704. border-radius:0px;
  6705. border-top-left-radius:0px;
  6706. border-top-right-radius:0px;
  6707. border-bottom-right-radius:0px;
  6708. border-bottom-left-radius:0px;
  6709. -moz-box-shadow:none;
  6710. -webkit-box-shadow:none;
  6711. box-shadow:none;
  6712. font-family:'Microsoft YaHei', sans-serif;
  6713. font-weight:400;
  6714. font-style:normal;
  6715. }
  6716. #u64448 {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:1186px;
  6720. top:431px;
  6721. width:382px;
  6722. height:50px;
  6723. display:flex;
  6724. font-family:'Microsoft YaHei', sans-serif;
  6725. font-weight:400;
  6726. font-style:normal;
  6727. }
  6728. #u64448 .text {
  6729. position:absolute;
  6730. align-self:center;
  6731. padding:2px 2px 2px 2px;
  6732. box-sizing:border-box;
  6733. width:100%;
  6734. }
  6735. #u64448_div.selected {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:382px;
  6741. height:50px;
  6742. background:inherit;
  6743. background-color:rgba(255, 255, 255, 1);
  6744. box-sizing:border-box;
  6745. border-width:1px;
  6746. border-style:solid;
  6747. border-color:rgba(24, 144, 255, 1);
  6748. border-left:0px;
  6749. border-right:0px;
  6750. border-radius:0px;
  6751. border-top-left-radius:0px;
  6752. border-top-right-radius:0px;
  6753. border-bottom-right-radius:0px;
  6754. border-bottom-left-radius:0px;
  6755. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6756. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6757. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6758. font-family:'Microsoft YaHei', sans-serif;
  6759. font-weight:400;
  6760. font-style:normal;
  6761. }
  6762. #u64448.selected {
  6763. }
  6764. #u64448_text {
  6765. border-width:0px;
  6766. word-wrap:break-word;
  6767. text-transform:none;
  6768. visibility:hidden;
  6769. }
  6770. #u64449_div {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:55px;
  6776. height:25px;
  6777. background:inherit;
  6778. background-color:rgba(255, 255, 255, 0);
  6779. border:none;
  6780. border-radius:0px;
  6781. -moz-box-shadow:none;
  6782. -webkit-box-shadow:none;
  6783. box-shadow:none;
  6784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. }
  6788. #u64449 {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:1244px;
  6792. top:443px;
  6793. width:55px;
  6794. height:25px;
  6795. display:flex;
  6796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6797. font-weight:400;
  6798. font-style:normal;
  6799. }
  6800. #u64449 .text {
  6801. position:absolute;
  6802. align-self:flex-start;
  6803. padding:0px 0px 0px 0px;
  6804. box-sizing:border-box;
  6805. width:100%;
  6806. }
  6807. #u64449_text {
  6808. border-width:0px;
  6809. white-space:nowrap;
  6810. text-transform:none;
  6811. }
  6812. #u64450_img {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:20px;
  6818. height:20px;
  6819. }
  6820. #u64450 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:1203px;
  6824. top:446px;
  6825. width:20px;
  6826. height:20px;
  6827. display:flex;
  6828. font-size:12px;
  6829. color:#FFFFFF;
  6830. }
  6831. #u64450 .text {
  6832. position:absolute;
  6833. align-self:center;
  6834. padding:2px 2px 2px 2px;
  6835. box-sizing:border-box;
  6836. width:100%;
  6837. }
  6838. #u64450_text {
  6839. border-width:0px;
  6840. word-wrap:break-word;
  6841. text-transform:none;
  6842. }
  6843. #u64451_div {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:0px;
  6847. top:0px;
  6848. width:19px;
  6849. height:25px;
  6850. background:inherit;
  6851. background-color:rgba(255, 255, 255, 0);
  6852. border:none;
  6853. border-radius:0px;
  6854. -moz-box-shadow:none;
  6855. -webkit-box-shadow:none;
  6856. box-shadow:none;
  6857. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6858. font-weight:500;
  6859. font-style:normal;
  6860. }
  6861. #u64451 {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:1334px;
  6865. top:443px;
  6866. width:19px;
  6867. height:25px;
  6868. display:flex;
  6869. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6870. font-weight:500;
  6871. font-style:normal;
  6872. }
  6873. #u64451 .text {
  6874. position:absolute;
  6875. align-self:flex-start;
  6876. padding:0px 0px 0px 0px;
  6877. box-sizing:border-box;
  6878. width:100%;
  6879. }
  6880. #u64451_text {
  6881. border-width:0px;
  6882. white-space:nowrap;
  6883. text-transform:none;
  6884. }
  6885. #u64452 {
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:0px;
  6889. top:0px;
  6890. width:0px;
  6891. height:0px;
  6892. }
  6893. #u64453_div {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:382px;
  6899. height:50px;
  6900. background:inherit;
  6901. background-color:rgba(255, 255, 255, 1);
  6902. box-sizing:border-box;
  6903. border-width:1px;
  6904. border-style:solid;
  6905. border-color:rgba(215, 215, 215, 1);
  6906. border-left:0px;
  6907. border-right:0px;
  6908. border-radius:0px;
  6909. border-top-left-radius:0px;
  6910. border-top-right-radius:0px;
  6911. border-bottom-right-radius:0px;
  6912. border-bottom-left-radius:0px;
  6913. -moz-box-shadow:none;
  6914. -webkit-box-shadow:none;
  6915. box-shadow:none;
  6916. font-family:'Microsoft YaHei', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. }
  6920. #u64453 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:1186px;
  6924. top:480px;
  6925. width:382px;
  6926. height:50px;
  6927. display:flex;
  6928. font-family:'Microsoft YaHei', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. }
  6932. #u64453 .text {
  6933. position:absolute;
  6934. align-self:center;
  6935. padding:2px 2px 2px 2px;
  6936. box-sizing:border-box;
  6937. width:100%;
  6938. }
  6939. #u64453_div.selected {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:0px;
  6943. top:0px;
  6944. width:382px;
  6945. height:50px;
  6946. background:inherit;
  6947. background-color:rgba(255, 255, 255, 1);
  6948. box-sizing:border-box;
  6949. border-width:1px;
  6950. border-style:solid;
  6951. border-color:rgba(24, 144, 255, 1);
  6952. border-left:0px;
  6953. border-right:0px;
  6954. border-radius:0px;
  6955. border-top-left-radius:0px;
  6956. border-top-right-radius:0px;
  6957. border-bottom-right-radius:0px;
  6958. border-bottom-left-radius:0px;
  6959. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6960. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6961. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  6962. font-family:'Microsoft YaHei', sans-serif;
  6963. font-weight:400;
  6964. font-style:normal;
  6965. }
  6966. #u64453.selected {
  6967. }
  6968. #u64453_text {
  6969. border-width:0px;
  6970. word-wrap:break-word;
  6971. text-transform:none;
  6972. visibility:hidden;
  6973. }
  6974. #u64454_div {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:55px;
  6980. height:25px;
  6981. background:inherit;
  6982. background-color:rgba(255, 255, 255, 0);
  6983. border:none;
  6984. border-radius:0px;
  6985. -moz-box-shadow:none;
  6986. -webkit-box-shadow:none;
  6987. box-shadow:none;
  6988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6989. font-weight:400;
  6990. font-style:normal;
  6991. }
  6992. #u64454 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:1244px;
  6996. top:492px;
  6997. width:55px;
  6998. height:25px;
  6999. display:flex;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. }
  7004. #u64454 .text {
  7005. position:absolute;
  7006. align-self:flex-start;
  7007. padding:0px 0px 0px 0px;
  7008. box-sizing:border-box;
  7009. width:100%;
  7010. }
  7011. #u64454_text {
  7012. border-width:0px;
  7013. white-space:nowrap;
  7014. text-transform:none;
  7015. }
  7016. #u64455_img {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:20px;
  7022. height:20px;
  7023. }
  7024. #u64455 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:1203px;
  7028. top:495px;
  7029. width:20px;
  7030. height:20px;
  7031. display:flex;
  7032. font-size:12px;
  7033. color:#FFFFFF;
  7034. }
  7035. #u64455 .text {
  7036. position:absolute;
  7037. align-self:center;
  7038. padding:2px 2px 2px 2px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u64455_text {
  7043. border-width:0px;
  7044. word-wrap:break-word;
  7045. text-transform:none;
  7046. }
  7047. #u64456_div {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:18px;
  7053. height:25px;
  7054. background:inherit;
  7055. background-color:rgba(255, 255, 255, 0);
  7056. border:none;
  7057. border-radius:0px;
  7058. -moz-box-shadow:none;
  7059. -webkit-box-shadow:none;
  7060. box-shadow:none;
  7061. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7062. font-weight:500;
  7063. font-style:normal;
  7064. }
  7065. #u64456 {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:1334px;
  7069. top:492px;
  7070. width:18px;
  7071. height:25px;
  7072. display:flex;
  7073. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7074. font-weight:500;
  7075. font-style:normal;
  7076. }
  7077. #u64456 .text {
  7078. position:absolute;
  7079. align-self:flex-start;
  7080. padding:0px 0px 0px 0px;
  7081. box-sizing:border-box;
  7082. width:100%;
  7083. }
  7084. #u64456_text {
  7085. border-width:0px;
  7086. white-space:nowrap;
  7087. text-transform:none;
  7088. }
  7089. #u64457 {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:0px;
  7095. height:0px;
  7096. }
  7097. #u64458_div {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:382px;
  7103. height:50px;
  7104. background:inherit;
  7105. background-color:rgba(255, 255, 255, 1);
  7106. box-sizing:border-box;
  7107. border-width:1px;
  7108. border-style:solid;
  7109. border-color:rgba(215, 215, 215, 1);
  7110. border-left:0px;
  7111. border-right:0px;
  7112. border-radius:0px;
  7113. border-top-left-radius:0px;
  7114. border-top-right-radius:0px;
  7115. border-bottom-right-radius:0px;
  7116. border-bottom-left-radius:0px;
  7117. -moz-box-shadow:none;
  7118. -webkit-box-shadow:none;
  7119. box-shadow:none;
  7120. font-family:'Microsoft YaHei', sans-serif;
  7121. font-weight:400;
  7122. font-style:normal;
  7123. }
  7124. #u64458 {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:1186px;
  7128. top:530px;
  7129. width:382px;
  7130. height:50px;
  7131. display:flex;
  7132. font-family:'Microsoft YaHei', sans-serif;
  7133. font-weight:400;
  7134. font-style:normal;
  7135. }
  7136. #u64458 .text {
  7137. position:absolute;
  7138. align-self:center;
  7139. padding:2px 2px 2px 2px;
  7140. box-sizing:border-box;
  7141. width:100%;
  7142. }
  7143. #u64458_div.selected {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:382px;
  7149. height:50px;
  7150. background:inherit;
  7151. background-color:rgba(255, 255, 255, 1);
  7152. box-sizing:border-box;
  7153. border-width:1px;
  7154. border-style:solid;
  7155. border-color:rgba(24, 144, 255, 1);
  7156. border-left:0px;
  7157. border-right:0px;
  7158. border-radius:0px;
  7159. border-top-left-radius:0px;
  7160. border-top-right-radius:0px;
  7161. border-bottom-right-radius:0px;
  7162. border-bottom-left-radius:0px;
  7163. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  7164. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  7165. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  7166. font-family:'Microsoft YaHei', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. }
  7170. #u64458.selected {
  7171. }
  7172. #u64458_text {
  7173. border-width:0px;
  7174. word-wrap:break-word;
  7175. text-transform:none;
  7176. visibility:hidden;
  7177. }
  7178. #u64459_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:55px;
  7184. height:25px;
  7185. background:inherit;
  7186. background-color:rgba(255, 255, 255, 0);
  7187. border:none;
  7188. border-radius:0px;
  7189. -moz-box-shadow:none;
  7190. -webkit-box-shadow:none;
  7191. box-shadow:none;
  7192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. }
  7196. #u64459 {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:1244px;
  7200. top:542px;
  7201. width:55px;
  7202. height:25px;
  7203. display:flex;
  7204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7205. font-weight:400;
  7206. font-style:normal;
  7207. }
  7208. #u64459 .text {
  7209. position:absolute;
  7210. align-self:flex-start;
  7211. padding:0px 0px 0px 0px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u64459_text {
  7216. border-width:0px;
  7217. white-space:nowrap;
  7218. text-transform:none;
  7219. }
  7220. #u64460_img {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:20px;
  7226. height:20px;
  7227. }
  7228. #u64460 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:1203px;
  7232. top:545px;
  7233. width:20px;
  7234. height:20px;
  7235. display:flex;
  7236. font-size:12px;
  7237. color:#FFFFFF;
  7238. }
  7239. #u64460 .text {
  7240. position:absolute;
  7241. align-self:center;
  7242. padding:2px 2px 2px 2px;
  7243. box-sizing:border-box;
  7244. width:100%;
  7245. }
  7246. #u64460_text {
  7247. border-width:0px;
  7248. word-wrap:break-word;
  7249. text-transform:none;
  7250. }
  7251. #u64461_div {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:19px;
  7257. height:25px;
  7258. background:inherit;
  7259. background-color:rgba(255, 255, 255, 0);
  7260. border:none;
  7261. border-radius:0px;
  7262. -moz-box-shadow:none;
  7263. -webkit-box-shadow:none;
  7264. box-shadow:none;
  7265. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7266. font-weight:500;
  7267. font-style:normal;
  7268. }
  7269. #u64461 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:1334px;
  7273. top:542px;
  7274. width:19px;
  7275. height:25px;
  7276. display:flex;
  7277. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7278. font-weight:500;
  7279. font-style:normal;
  7280. }
  7281. #u64461 .text {
  7282. position:absolute;
  7283. align-self:flex-start;
  7284. padding:0px 0px 0px 0px;
  7285. box-sizing:border-box;
  7286. width:100%;
  7287. }
  7288. #u64461_text {
  7289. border-width:0px;
  7290. white-space:nowrap;
  7291. text-transform:none;
  7292. }
  7293. #u64462 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:0px;
  7299. height:0px;
  7300. }
  7301. #u64463_div {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:382px;
  7307. height:50px;
  7308. background:inherit;
  7309. background-color:rgba(255, 255, 255, 1);
  7310. box-sizing:border-box;
  7311. border-width:1px;
  7312. border-style:solid;
  7313. border-color:rgba(215, 215, 215, 1);
  7314. border-left:0px;
  7315. border-right:0px;
  7316. border-radius:0px;
  7317. border-top-left-radius:0px;
  7318. border-top-right-radius:0px;
  7319. border-bottom-right-radius:0px;
  7320. border-bottom-left-radius:0px;
  7321. -moz-box-shadow:none;
  7322. -webkit-box-shadow:none;
  7323. box-shadow:none;
  7324. font-family:'Microsoft YaHei', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. }
  7328. #u64463 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:1186px;
  7332. top:580px;
  7333. width:382px;
  7334. height:50px;
  7335. display:flex;
  7336. font-family:'Microsoft YaHei', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. }
  7340. #u64463 .text {
  7341. position:absolute;
  7342. align-self:center;
  7343. padding:2px 2px 2px 2px;
  7344. box-sizing:border-box;
  7345. width:100%;
  7346. }
  7347. #u64463_div.selected {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:0px;
  7351. top:0px;
  7352. width:382px;
  7353. height:50px;
  7354. background:inherit;
  7355. background-color:rgba(255, 255, 255, 1);
  7356. box-sizing:border-box;
  7357. border-width:1px;
  7358. border-style:solid;
  7359. border-color:rgba(24, 144, 255, 1);
  7360. border-left:0px;
  7361. border-right:0px;
  7362. border-radius:0px;
  7363. border-top-left-radius:0px;
  7364. border-top-right-radius:0px;
  7365. border-bottom-right-radius:0px;
  7366. border-bottom-left-radius:0px;
  7367. -moz-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  7368. -webkit-box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  7369. box-shadow:3px 3px 3px rgba(24, 144, 255, 0.52156862745098);
  7370. font-family:'Microsoft YaHei', sans-serif;
  7371. font-weight:400;
  7372. font-style:normal;
  7373. }
  7374. #u64463.selected {
  7375. }
  7376. #u64463_text {
  7377. border-width:0px;
  7378. word-wrap:break-word;
  7379. text-transform:none;
  7380. visibility:hidden;
  7381. }
  7382. #u64464_div {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:37px;
  7388. height:25px;
  7389. background:inherit;
  7390. background-color:rgba(255, 255, 255, 0);
  7391. border:none;
  7392. border-radius:0px;
  7393. -moz-box-shadow:none;
  7394. -webkit-box-shadow:none;
  7395. box-shadow:none;
  7396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. }
  7400. #u64464 {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:1244px;
  7404. top:592px;
  7405. width:37px;
  7406. height:25px;
  7407. display:flex;
  7408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7409. font-weight:400;
  7410. font-style:normal;
  7411. }
  7412. #u64464 .text {
  7413. position:absolute;
  7414. align-self:flex-start;
  7415. padding:0px 0px 0px 0px;
  7416. box-sizing:border-box;
  7417. width:100%;
  7418. }
  7419. #u64464_text {
  7420. border-width:0px;
  7421. white-space:nowrap;
  7422. text-transform:none;
  7423. }
  7424. #u64465_img {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:0px;
  7428. top:0px;
  7429. width:20px;
  7430. height:20px;
  7431. }
  7432. #u64465 {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:1203px;
  7436. top:595px;
  7437. width:20px;
  7438. height:20px;
  7439. display:flex;
  7440. font-size:12px;
  7441. color:#FFFFFF;
  7442. }
  7443. #u64465 .text {
  7444. position:absolute;
  7445. align-self:center;
  7446. padding:2px 2px 2px 2px;
  7447. box-sizing:border-box;
  7448. width:100%;
  7449. }
  7450. #u64465_text {
  7451. border-width:0px;
  7452. word-wrap:break-word;
  7453. text-transform:none;
  7454. }
  7455. #u64466_div {
  7456. border-width:0px;
  7457. position:absolute;
  7458. left:0px;
  7459. top:0px;
  7460. width:19px;
  7461. height:25px;
  7462. background:inherit;
  7463. background-color:rgba(255, 255, 255, 0);
  7464. border:none;
  7465. border-radius:0px;
  7466. -moz-box-shadow:none;
  7467. -webkit-box-shadow:none;
  7468. box-shadow:none;
  7469. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7470. font-weight:500;
  7471. font-style:normal;
  7472. }
  7473. #u64466 {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:1334px;
  7477. top:592px;
  7478. width:19px;
  7479. height:25px;
  7480. display:flex;
  7481. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7482. font-weight:500;
  7483. font-style:normal;
  7484. }
  7485. #u64466 .text {
  7486. position:absolute;
  7487. align-self:flex-start;
  7488. padding:0px 0px 0px 0px;
  7489. box-sizing:border-box;
  7490. width:100%;
  7491. }
  7492. #u64466_text {
  7493. border-width:0px;
  7494. white-space:nowrap;
  7495. text-transform:none;
  7496. }
  7497. #u64467 {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:0px;
  7503. height:0px;
  7504. }
  7505. #u64468 {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:0px;
  7509. top:0px;
  7510. width:0px;
  7511. height:0px;
  7512. }
  7513. #u64469_div {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:0px;
  7517. top:0px;
  7518. width:31px;
  7519. height:30px;
  7520. background:inherit;
  7521. background-color:rgba(255, 255, 255, 1);
  7522. box-sizing:border-box;
  7523. border-width:1px;
  7524. border-style:solid;
  7525. border-color:rgba(228, 228, 228, 1);
  7526. border-radius:4px;
  7527. -moz-box-shadow:none;
  7528. -webkit-box-shadow:none;
  7529. box-shadow:none;
  7530. font-family:'Microsoft YaHei', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:12px;
  7534. }
  7535. #u64469 {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:1497px;
  7539. top:645px;
  7540. width:31px;
  7541. height:30px;
  7542. display:flex;
  7543. font-family:'Microsoft YaHei', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:12px;
  7547. }
  7548. #u64469 .text {
  7549. position:absolute;
  7550. align-self:center;
  7551. padding:2px 2px 2px 2px;
  7552. box-sizing:border-box;
  7553. width:100%;
  7554. }
  7555. #u64469_text {
  7556. border-width:0px;
  7557. word-wrap:break-word;
  7558. text-transform:none;
  7559. visibility:hidden;
  7560. }
  7561. #u64470_img {
  7562. border-width:0px;
  7563. position:absolute;
  7564. left:0px;
  7565. top:0px;
  7566. width:8px;
  7567. height:14px;
  7568. }
  7569. #u64470 {
  7570. border-width:0px;
  7571. position:absolute;
  7572. left:1509px;
  7573. top:653px;
  7574. width:8px;
  7575. height:14px;
  7576. display:flex;
  7577. font-family:'Microsoft YaHei', sans-serif;
  7578. font-weight:400;
  7579. font-style:normal;
  7580. font-size:12px;
  7581. }
  7582. #u64470 .text {
  7583. position:absolute;
  7584. align-self:center;
  7585. padding:2px 2px 2px 2px;
  7586. box-sizing:border-box;
  7587. width:100%;
  7588. }
  7589. #u64470_text {
  7590. border-width:0px;
  7591. word-wrap:break-word;
  7592. text-transform:none;
  7593. visibility:hidden;
  7594. }
  7595. #u64471 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:0px;
  7599. top:0px;
  7600. width:0px;
  7601. height:0px;
  7602. }
  7603. #u64472_div {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:0px;
  7607. top:0px;
  7608. width:31px;
  7609. height:30px;
  7610. background:inherit;
  7611. background-color:rgba(255, 255, 255, 1);
  7612. box-sizing:border-box;
  7613. border-width:1px;
  7614. border-style:solid;
  7615. border-color:rgba(228, 228, 228, 1);
  7616. border-radius:4px;
  7617. -moz-box-shadow:none;
  7618. -webkit-box-shadow:none;
  7619. box-shadow:none;
  7620. font-family:'Microsoft YaHei', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. font-size:12px;
  7624. }
  7625. #u64472 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:1537px;
  7629. top:645px;
  7630. width:31px;
  7631. height:30px;
  7632. display:flex;
  7633. font-family:'Microsoft YaHei', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:12px;
  7637. }
  7638. #u64472 .text {
  7639. position:absolute;
  7640. align-self:center;
  7641. padding:2px 2px 2px 2px;
  7642. box-sizing:border-box;
  7643. width:100%;
  7644. }
  7645. #u64472_text {
  7646. border-width:0px;
  7647. word-wrap:break-word;
  7648. text-transform:none;
  7649. visibility:hidden;
  7650. }
  7651. #u64473_img {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:0px;
  7655. top:0px;
  7656. width:8px;
  7657. height:14px;
  7658. }
  7659. #u64473 {
  7660. border-width:0px;
  7661. position:absolute;
  7662. left:1550px;
  7663. top:653px;
  7664. width:8px;
  7665. height:14px;
  7666. display:flex;
  7667. font-family:'Microsoft YaHei', sans-serif;
  7668. font-weight:400;
  7669. font-style:normal;
  7670. font-size:12px;
  7671. }
  7672. #u64473 .text {
  7673. position:absolute;
  7674. align-self:center;
  7675. padding:2px 2px 2px 2px;
  7676. box-sizing:border-box;
  7677. width:100%;
  7678. }
  7679. #u64473_text {
  7680. border-width:0px;
  7681. word-wrap:break-word;
  7682. text-transform:none;
  7683. visibility:hidden;
  7684. }
  7685. #u64474_img {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:0px;
  7689. top:0px;
  7690. width:596px;
  7691. height:413px;
  7692. }
  7693. #u64474 {
  7694. border-width:0px;
  7695. position:absolute;
  7696. left:354px;
  7697. top:727px;
  7698. width:596px;
  7699. height:413px;
  7700. display:flex;
  7701. }
  7702. #u64474 .text {
  7703. position:absolute;
  7704. align-self:center;
  7705. padding:0px 0px 0px 0px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u64474_text {
  7710. border-width:0px;
  7711. word-wrap:break-word;
  7712. text-transform:none;
  7713. visibility:hidden;
  7714. }
  7715. #u64475_div {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:0px;
  7719. top:0px;
  7720. width:163px;
  7721. height:25px;
  7722. background:inherit;
  7723. background-color:rgba(255, 255, 255, 0);
  7724. border:none;
  7725. border-radius:0px;
  7726. -moz-box-shadow:none;
  7727. -webkit-box-shadow:none;
  7728. box-shadow:none;
  7729. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7730. font-weight:650;
  7731. font-style:normal;
  7732. }
  7733. #u64475 {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:380px;
  7737. top:750px;
  7738. width:163px;
  7739. height:25px;
  7740. display:flex;
  7741. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7742. font-weight:650;
  7743. font-style:normal;
  7744. }
  7745. #u64475 .text {
  7746. position:absolute;
  7747. align-self:flex-start;
  7748. padding:0px 0px 0px 0px;
  7749. box-sizing:border-box;
  7750. width:100%;
  7751. }
  7752. #u64475_text {
  7753. border-width:0px;
  7754. white-space:nowrap;
  7755. text-transform:none;
  7756. }
  7757. #u64476 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:380px;
  7761. top:795px;
  7762. width:544px;
  7763. height:300px;
  7764. }
  7765. #u64477_img {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:124px;
  7771. height:50px;
  7772. }
  7773. #u64477 {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:0px;
  7777. top:0px;
  7778. width:124px;
  7779. height:50px;
  7780. display:flex;
  7781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7782. font-weight:400;
  7783. font-style:normal;
  7784. font-size:18px;
  7785. color:#FFFFFF;
  7786. }
  7787. #u64477 .text {
  7788. position:absolute;
  7789. align-self:center;
  7790. padding:2px 2px 2px 2px;
  7791. box-sizing:border-box;
  7792. width:100%;
  7793. }
  7794. #u64477_text {
  7795. border-width:0px;
  7796. word-wrap:break-word;
  7797. text-transform:none;
  7798. }
  7799. #u64478_img {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:0px;
  7803. top:0px;
  7804. width:231px;
  7805. height:50px;
  7806. }
  7807. #u64478 {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:124px;
  7811. top:0px;
  7812. width:231px;
  7813. height:50px;
  7814. display:flex;
  7815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7816. font-weight:400;
  7817. font-style:normal;
  7818. font-size:18px;
  7819. color:#FFFFFF;
  7820. }
  7821. #u64478 .text {
  7822. position:absolute;
  7823. align-self:center;
  7824. padding:2px 2px 2px 2px;
  7825. box-sizing:border-box;
  7826. width:100%;
  7827. }
  7828. #u64478_text {
  7829. border-width:0px;
  7830. word-wrap:break-word;
  7831. text-transform:none;
  7832. }
  7833. #u64479_img {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:0px;
  7837. top:0px;
  7838. width:189px;
  7839. height:50px;
  7840. }
  7841. #u64479 {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:355px;
  7845. top:0px;
  7846. width:189px;
  7847. height:50px;
  7848. display:flex;
  7849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7850. font-weight:400;
  7851. font-style:normal;
  7852. font-size:18px;
  7853. color:#FFFFFF;
  7854. }
  7855. #u64479 .text {
  7856. position:absolute;
  7857. align-self:center;
  7858. padding:2px 2px 2px 2px;
  7859. box-sizing:border-box;
  7860. width:100%;
  7861. }
  7862. #u64479_text {
  7863. border-width:0px;
  7864. word-wrap:break-word;
  7865. text-transform:none;
  7866. }
  7867. #u64480_img {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:0px;
  7871. top:0px;
  7872. width:124px;
  7873. height:50px;
  7874. }
  7875. #u64480 {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:0px;
  7879. top:50px;
  7880. width:124px;
  7881. height:50px;
  7882. display:flex;
  7883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7884. font-weight:400;
  7885. font-style:normal;
  7886. font-size:18px;
  7887. }
  7888. #u64480 .text {
  7889. position:absolute;
  7890. align-self:center;
  7891. padding:2px 2px 2px 2px;
  7892. box-sizing:border-box;
  7893. width:100%;
  7894. }
  7895. #u64480_text {
  7896. border-width:0px;
  7897. word-wrap:break-word;
  7898. text-transform:none;
  7899. visibility:hidden;
  7900. }
  7901. #u64481_img {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:0px;
  7905. top:0px;
  7906. width:231px;
  7907. height:50px;
  7908. }
  7909. #u64481 {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:124px;
  7913. top:50px;
  7914. width:231px;
  7915. height:50px;
  7916. display:flex;
  7917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7918. font-weight:400;
  7919. font-style:normal;
  7920. font-size:18px;
  7921. }
  7922. #u64481 .text {
  7923. position:absolute;
  7924. align-self:center;
  7925. padding:2px 2px 2px 2px;
  7926. box-sizing:border-box;
  7927. width:100%;
  7928. }
  7929. #u64481_text {
  7930. border-width:0px;
  7931. word-wrap:break-word;
  7932. text-transform:none;
  7933. visibility:hidden;
  7934. }
  7935. #u64482_img {
  7936. border-width:0px;
  7937. position:absolute;
  7938. left:0px;
  7939. top:0px;
  7940. width:189px;
  7941. height:50px;
  7942. }
  7943. #u64482 {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:355px;
  7947. top:50px;
  7948. width:189px;
  7949. height:50px;
  7950. display:flex;
  7951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7952. font-weight:400;
  7953. font-style:normal;
  7954. font-size:18px;
  7955. }
  7956. #u64482 .text {
  7957. position:absolute;
  7958. align-self:center;
  7959. padding:2px 2px 2px 2px;
  7960. box-sizing:border-box;
  7961. width:100%;
  7962. }
  7963. #u64482_text {
  7964. border-width:0px;
  7965. word-wrap:break-word;
  7966. text-transform:none;
  7967. visibility:hidden;
  7968. }
  7969. #u64483_img {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:0px;
  7973. top:0px;
  7974. width:124px;
  7975. height:50px;
  7976. }
  7977. #u64483 {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:0px;
  7981. top:100px;
  7982. width:124px;
  7983. height:50px;
  7984. display:flex;
  7985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:18px;
  7989. }
  7990. #u64483 .text {
  7991. position:absolute;
  7992. align-self:center;
  7993. padding:2px 2px 2px 2px;
  7994. box-sizing:border-box;
  7995. width:100%;
  7996. }
  7997. #u64483_text {
  7998. border-width:0px;
  7999. word-wrap:break-word;
  8000. text-transform:none;
  8001. visibility:hidden;
  8002. }
  8003. #u64484_img {
  8004. border-width:0px;
  8005. position:absolute;
  8006. left:0px;
  8007. top:0px;
  8008. width:231px;
  8009. height:50px;
  8010. }
  8011. #u64484 {
  8012. border-width:0px;
  8013. position:absolute;
  8014. left:124px;
  8015. top:100px;
  8016. width:231px;
  8017. height:50px;
  8018. display:flex;
  8019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8020. font-weight:400;
  8021. font-style:normal;
  8022. font-size:18px;
  8023. }
  8024. #u64484 .text {
  8025. position:absolute;
  8026. align-self:center;
  8027. padding:2px 2px 2px 2px;
  8028. box-sizing:border-box;
  8029. width:100%;
  8030. }
  8031. #u64484_text {
  8032. border-width:0px;
  8033. word-wrap:break-word;
  8034. text-transform:none;
  8035. visibility:hidden;
  8036. }
  8037. #u64485_img {
  8038. border-width:0px;
  8039. position:absolute;
  8040. left:0px;
  8041. top:0px;
  8042. width:189px;
  8043. height:50px;
  8044. }
  8045. #u64485 {
  8046. border-width:0px;
  8047. position:absolute;
  8048. left:355px;
  8049. top:100px;
  8050. width:189px;
  8051. height:50px;
  8052. display:flex;
  8053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8054. font-weight:400;
  8055. font-style:normal;
  8056. font-size:18px;
  8057. }
  8058. #u64485 .text {
  8059. position:absolute;
  8060. align-self:center;
  8061. padding:2px 2px 2px 2px;
  8062. box-sizing:border-box;
  8063. width:100%;
  8064. }
  8065. #u64485_text {
  8066. border-width:0px;
  8067. word-wrap:break-word;
  8068. text-transform:none;
  8069. visibility:hidden;
  8070. }
  8071. #u64486_img {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:0px;
  8075. top:0px;
  8076. width:124px;
  8077. height:50px;
  8078. }
  8079. #u64486 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:0px;
  8083. top:150px;
  8084. width:124px;
  8085. height:50px;
  8086. display:flex;
  8087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8088. font-weight:400;
  8089. font-style:normal;
  8090. font-size:18px;
  8091. }
  8092. #u64486 .text {
  8093. position:absolute;
  8094. align-self:center;
  8095. padding:2px 2px 2px 2px;
  8096. box-sizing:border-box;
  8097. width:100%;
  8098. }
  8099. #u64486_text {
  8100. border-width:0px;
  8101. word-wrap:break-word;
  8102. text-transform:none;
  8103. visibility:hidden;
  8104. }
  8105. #u64487_img {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:0px;
  8109. top:0px;
  8110. width:231px;
  8111. height:50px;
  8112. }
  8113. #u64487 {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:124px;
  8117. top:150px;
  8118. width:231px;
  8119. height:50px;
  8120. display:flex;
  8121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:18px;
  8125. }
  8126. #u64487 .text {
  8127. position:absolute;
  8128. align-self:center;
  8129. padding:2px 2px 2px 2px;
  8130. box-sizing:border-box;
  8131. width:100%;
  8132. }
  8133. #u64487_text {
  8134. border-width:0px;
  8135. word-wrap:break-word;
  8136. text-transform:none;
  8137. visibility:hidden;
  8138. }
  8139. #u64488_img {
  8140. border-width:0px;
  8141. position:absolute;
  8142. left:0px;
  8143. top:0px;
  8144. width:189px;
  8145. height:50px;
  8146. }
  8147. #u64488 {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:355px;
  8151. top:150px;
  8152. width:189px;
  8153. height:50px;
  8154. display:flex;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:18px;
  8159. }
  8160. #u64488 .text {
  8161. position:absolute;
  8162. align-self:center;
  8163. padding:2px 2px 2px 2px;
  8164. box-sizing:border-box;
  8165. width:100%;
  8166. }
  8167. #u64488_text {
  8168. border-width:0px;
  8169. word-wrap:break-word;
  8170. text-transform:none;
  8171. visibility:hidden;
  8172. }
  8173. #u64489_img {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:0px;
  8177. top:0px;
  8178. width:124px;
  8179. height:50px;
  8180. }
  8181. #u64489 {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:0px;
  8185. top:200px;
  8186. width:124px;
  8187. height:50px;
  8188. display:flex;
  8189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8190. font-weight:400;
  8191. font-style:normal;
  8192. font-size:18px;
  8193. }
  8194. #u64489 .text {
  8195. position:absolute;
  8196. align-self:center;
  8197. padding:2px 2px 2px 2px;
  8198. box-sizing:border-box;
  8199. width:100%;
  8200. }
  8201. #u64489_text {
  8202. border-width:0px;
  8203. word-wrap:break-word;
  8204. text-transform:none;
  8205. visibility:hidden;
  8206. }
  8207. #u64490_img {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:231px;
  8213. height:50px;
  8214. }
  8215. #u64490 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:124px;
  8219. top:200px;
  8220. width:231px;
  8221. height:50px;
  8222. display:flex;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:18px;
  8227. }
  8228. #u64490 .text {
  8229. position:absolute;
  8230. align-self:center;
  8231. padding:2px 2px 2px 2px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u64490_text {
  8236. border-width:0px;
  8237. word-wrap:break-word;
  8238. text-transform:none;
  8239. visibility:hidden;
  8240. }
  8241. #u64491_img {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:189px;
  8247. height:50px;
  8248. }
  8249. #u64491 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:355px;
  8253. top:200px;
  8254. width:189px;
  8255. height:50px;
  8256. display:flex;
  8257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:18px;
  8261. }
  8262. #u64491 .text {
  8263. position:absolute;
  8264. align-self:center;
  8265. padding:2px 2px 2px 2px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u64491_text {
  8270. border-width:0px;
  8271. word-wrap:break-word;
  8272. text-transform:none;
  8273. visibility:hidden;
  8274. }
  8275. #u64492_img {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:124px;
  8281. height:50px;
  8282. }
  8283. #u64492 {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:0px;
  8287. top:250px;
  8288. width:124px;
  8289. height:50px;
  8290. display:flex;
  8291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. font-size:18px;
  8295. }
  8296. #u64492 .text {
  8297. position:absolute;
  8298. align-self:center;
  8299. padding:2px 2px 2px 2px;
  8300. box-sizing:border-box;
  8301. width:100%;
  8302. }
  8303. #u64492_text {
  8304. border-width:0px;
  8305. word-wrap:break-word;
  8306. text-transform:none;
  8307. visibility:hidden;
  8308. }
  8309. #u64493_img {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:231px;
  8315. height:50px;
  8316. }
  8317. #u64493 {
  8318. border-width:0px;
  8319. position:absolute;
  8320. left:124px;
  8321. top:250px;
  8322. width:231px;
  8323. height:50px;
  8324. display:flex;
  8325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8326. font-weight:400;
  8327. font-style:normal;
  8328. font-size:18px;
  8329. }
  8330. #u64493 .text {
  8331. position:absolute;
  8332. align-self:center;
  8333. padding:2px 2px 2px 2px;
  8334. box-sizing:border-box;
  8335. width:100%;
  8336. }
  8337. #u64493_text {
  8338. border-width:0px;
  8339. word-wrap:break-word;
  8340. text-transform:none;
  8341. visibility:hidden;
  8342. }
  8343. #u64494_img {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:0px;
  8347. top:0px;
  8348. width:189px;
  8349. height:50px;
  8350. }
  8351. #u64494 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:355px;
  8355. top:250px;
  8356. width:189px;
  8357. height:50px;
  8358. display:flex;
  8359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8360. font-weight:400;
  8361. font-style:normal;
  8362. font-size:18px;
  8363. }
  8364. #u64494 .text {
  8365. position:absolute;
  8366. align-self:center;
  8367. padding:2px 2px 2px 2px;
  8368. box-sizing:border-box;
  8369. width:100%;
  8370. }
  8371. #u64494_text {
  8372. border-width:0px;
  8373. word-wrap:break-word;
  8374. text-transform:none;
  8375. visibility:hidden;
  8376. }