styles.css 119 KB

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