styles.css 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1962px;
  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. #u119776_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. #u119776 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u119776 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u119776_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u119777_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. #u119777 {
  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. #u119777 .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. #u119777_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u119778_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. #u119778 {
  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. #u119778 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u119778_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u119779 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u119780_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u119780 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u119780 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u119780_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u119781_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. #u119781 {
  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. #u119781 .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. #u119781_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u119782_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. #u119782 {
  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. #u119782 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u119782_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u119783 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u119784_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. #u119784_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. #u119784_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. #u119784 {
  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. #u119784 .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. #u119784_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. #u119784.disabled {
  356. }
  357. .u119784_input_option {
  358. font-size:14px;
  359. }
  360. #u119785_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u119785 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u119785 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u119785_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u119786_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. #u119786 {
  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. #u119786 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u119786_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u119787_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. #u119787 {
  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. #u119787 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u119787_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u119788 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u119789_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. #u119789 {
  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. #u119789 .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. #u119789_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u119790_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u119790 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u119790 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u119790_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u119791 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u119792_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. #u119792 {
  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. #u119792 .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. #u119792_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u119793_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u119793 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u119793 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u119793_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u119794 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u119795_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. #u119795 {
  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. #u119795 .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. #u119795_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u119796_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u119796 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u119796 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u119796_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u119797 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u119798_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. #u119798 {
  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. #u119798 .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. #u119798_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u119799_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u119799 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u119799 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u119799_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u119800 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u119801_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. #u119801 {
  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. #u119801 .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. #u119801_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u119802_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u119802 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u119802 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u119802_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u119803 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u119804_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. #u119804 {
  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. #u119804 .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. #u119804_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u119805_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u119805 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u119805 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u119805_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u119806 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u119807_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. #u119807 {
  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. #u119807 .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. #u119807_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u119808_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u119808 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u119808 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u119808_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u119809 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u119810_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. #u119810 {
  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. #u119810 .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. #u119810_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u119811_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u119811 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u119811 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u119811_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u119812 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u119813_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. #u119813 {
  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. #u119813 .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. #u119813_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u119814_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u119814 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u119814 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u119814_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u119815 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u119816_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. #u119816 {
  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. #u119816 .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. #u119816_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u119817_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u119817 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u119817 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u119817_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u119818_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. #u119818 {
  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. #u119818 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u119818_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u119819_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u119819 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u119819 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u119819_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u119820_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. #u119820 {
  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. #u119820 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u119820_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u119821_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u119821 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u119821 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u119821_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u119822 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u119823_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. #u119823 {
  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. #u119823 .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. #u119823_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u119824_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u119824 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u119824 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u119824_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u119825 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u119826_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. #u119826 {
  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. #u119826 .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. #u119826_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u119827_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u119827 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u119827 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u119827_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u119828_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  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:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u119828 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u119828 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u119828_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u119829_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:109px;
  1681. height:50px;
  1682. background:inherit;
  1683. background-color:rgba(224, 231, 247, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1690. font-weight:500;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u119829 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:350px;
  1698. top:50px;
  1699. width:109px;
  1700. height:50px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1703. font-weight:500;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u119829 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u119829_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u119830 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:350px;
  1723. top:210px;
  1724. width:1612px;
  1725. height:190px;
  1726. }
  1727. #u119831_img {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:80px;
  1733. height:38px;
  1734. }
  1735. #u119831 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:80px;
  1741. height:38px;
  1742. display:flex;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:14px;
  1747. color:#FFFFFF;
  1748. line-height:30px;
  1749. }
  1750. #u119831 .text {
  1751. position:absolute;
  1752. align-self:center;
  1753. padding:2px 0px 2px 0px;
  1754. box-sizing:border-box;
  1755. width:100%;
  1756. }
  1757. #u119831_text {
  1758. border-width:0px;
  1759. word-wrap:break-word;
  1760. text-transform:none;
  1761. }
  1762. #u119832_img {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:80px;
  1768. height:38px;
  1769. }
  1770. #u119832 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:80px;
  1774. top:0px;
  1775. width:80px;
  1776. height:38px;
  1777. display:flex;
  1778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1779. font-weight:400;
  1780. font-style:normal;
  1781. font-size:14px;
  1782. color:#FFFFFF;
  1783. line-height:30px;
  1784. }
  1785. #u119832 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 0px 2px 0px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u119832_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. }
  1797. #u119833_img {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:80px;
  1803. height:38px;
  1804. }
  1805. #u119833 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:160px;
  1809. top:0px;
  1810. width:80px;
  1811. height:38px;
  1812. display:flex;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:14px;
  1817. color:#FFFFFF;
  1818. line-height:30px;
  1819. }
  1820. #u119833 .text {
  1821. position:absolute;
  1822. align-self:center;
  1823. padding:2px 0px 2px 0px;
  1824. box-sizing:border-box;
  1825. width:100%;
  1826. }
  1827. #u119833_text {
  1828. border-width:0px;
  1829. word-wrap:break-word;
  1830. text-transform:none;
  1831. }
  1832. #u119834_img {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:90px;
  1838. height:38px;
  1839. }
  1840. #u119834 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:240px;
  1844. top:0px;
  1845. width:90px;
  1846. height:38px;
  1847. display:flex;
  1848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1849. font-weight:400;
  1850. font-style:normal;
  1851. font-size:14px;
  1852. color:#FFFFFF;
  1853. line-height:30px;
  1854. }
  1855. #u119834 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:2px 0px 2px 0px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u119834_text {
  1863. border-width:0px;
  1864. word-wrap:break-word;
  1865. text-transform:none;
  1866. }
  1867. #u119835_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:90px;
  1873. height:38px;
  1874. }
  1875. #u119835 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:330px;
  1879. top:0px;
  1880. width:90px;
  1881. height:38px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:14px;
  1887. color:#FFFFFF;
  1888. line-height:30px;
  1889. }
  1890. #u119835 .text {
  1891. position:absolute;
  1892. align-self:center;
  1893. padding:2px 0px 2px 0px;
  1894. box-sizing:border-box;
  1895. width:100%;
  1896. }
  1897. #u119835_text {
  1898. border-width:0px;
  1899. word-wrap:break-word;
  1900. text-transform:none;
  1901. }
  1902. #u119836_img {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:90px;
  1908. height:38px;
  1909. }
  1910. #u119836 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:420px;
  1914. top:0px;
  1915. width:90px;
  1916. height:38px;
  1917. display:flex;
  1918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:14px;
  1922. color:#FFFFFF;
  1923. line-height:30px;
  1924. }
  1925. #u119836 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 0px 2px 0px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u119836_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. }
  1937. #u119837_img {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:122px;
  1943. height:38px;
  1944. }
  1945. #u119837 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:510px;
  1949. top:0px;
  1950. width:122px;
  1951. height:38px;
  1952. display:flex;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:14px;
  1957. color:#FFFFFF;
  1958. line-height:30px;
  1959. }
  1960. #u119837 .text {
  1961. position:absolute;
  1962. align-self:center;
  1963. padding:2px 0px 2px 0px;
  1964. box-sizing:border-box;
  1965. width:100%;
  1966. }
  1967. #u119837_text {
  1968. border-width:0px;
  1969. word-wrap:break-word;
  1970. text-transform:none;
  1971. }
  1972. #u119838_img {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:100px;
  1978. height:38px;
  1979. }
  1980. #u119838 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:632px;
  1984. top:0px;
  1985. width:100px;
  1986. height:38px;
  1987. display:flex;
  1988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:14px;
  1992. color:#FFFFFF;
  1993. line-height:30px;
  1994. }
  1995. #u119838 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:2px 0px 2px 0px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u119838_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. }
  2007. #u119839_img {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:80px;
  2013. height:38px;
  2014. }
  2015. #u119839 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:732px;
  2019. top:0px;
  2020. width:80px;
  2021. height:38px;
  2022. display:flex;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:14px;
  2027. color:#FFFFFF;
  2028. line-height:30px;
  2029. }
  2030. #u119839 .text {
  2031. position:absolute;
  2032. align-self:center;
  2033. padding:2px 0px 2px 0px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u119839_text {
  2038. border-width:0px;
  2039. word-wrap:break-word;
  2040. text-transform:none;
  2041. }
  2042. #u119840_img {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:100px;
  2048. height:38px;
  2049. }
  2050. #u119840 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:812px;
  2054. top:0px;
  2055. width:100px;
  2056. height:38px;
  2057. display:flex;
  2058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2059. font-weight:400;
  2060. font-style:normal;
  2061. font-size:14px;
  2062. color:#FFFFFF;
  2063. line-height:30px;
  2064. }
  2065. #u119840 .text {
  2066. position:absolute;
  2067. align-self:center;
  2068. padding:2px 0px 2px 0px;
  2069. box-sizing:border-box;
  2070. width:100%;
  2071. }
  2072. #u119840_text {
  2073. border-width:0px;
  2074. word-wrap:break-word;
  2075. text-transform:none;
  2076. }
  2077. #u119841_img {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:80px;
  2083. height:38px;
  2084. }
  2085. #u119841 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:912px;
  2089. top:0px;
  2090. width:80px;
  2091. height:38px;
  2092. display:flex;
  2093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2094. font-weight:400;
  2095. font-style:normal;
  2096. font-size:14px;
  2097. color:#FFFFFF;
  2098. line-height:30px;
  2099. }
  2100. #u119841 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 0px 2px 0px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u119841_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. }
  2112. #u119842_img {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:80px;
  2118. height:38px;
  2119. }
  2120. #u119842 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:992px;
  2124. top:0px;
  2125. width:80px;
  2126. height:38px;
  2127. display:flex;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:14px;
  2132. color:#FFFFFF;
  2133. line-height:30px;
  2134. }
  2135. #u119842 .text {
  2136. position:absolute;
  2137. align-self:center;
  2138. padding:2px 0px 2px 0px;
  2139. box-sizing:border-box;
  2140. width:100%;
  2141. }
  2142. #u119842_text {
  2143. border-width:0px;
  2144. word-wrap:break-word;
  2145. text-transform:none;
  2146. }
  2147. #u119843_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:80px;
  2153. height:38px;
  2154. }
  2155. #u119843 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:1072px;
  2159. top:0px;
  2160. width:80px;
  2161. height:38px;
  2162. display:flex;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. color:#FFFFFF;
  2168. line-height:30px;
  2169. }
  2170. #u119843 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 0px 2px 0px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u119843_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. }
  2182. #u119844_img {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:80px;
  2188. height:38px;
  2189. }
  2190. #u119844 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:1152px;
  2194. top:0px;
  2195. width:80px;
  2196. height:38px;
  2197. display:flex;
  2198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2199. font-weight:400;
  2200. font-style:normal;
  2201. font-size:14px;
  2202. color:#FFFFFF;
  2203. line-height:30px;
  2204. }
  2205. #u119844 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 0px 2px 0px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u119844_text {
  2213. border-width:0px;
  2214. word-wrap:break-word;
  2215. text-transform:none;
  2216. }
  2217. #u119845_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:100px;
  2223. height:38px;
  2224. }
  2225. #u119845 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:1232px;
  2229. top:0px;
  2230. width:100px;
  2231. height:38px;
  2232. display:flex;
  2233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. font-size:14px;
  2237. color:#FFFFFF;
  2238. line-height:30px;
  2239. }
  2240. #u119845 .text {
  2241. position:absolute;
  2242. align-self:center;
  2243. padding:2px 0px 2px 0px;
  2244. box-sizing:border-box;
  2245. width:100%;
  2246. }
  2247. #u119845_text {
  2248. border-width:0px;
  2249. word-wrap:break-word;
  2250. text-transform:none;
  2251. }
  2252. #u119846_img {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:0px;
  2256. top:0px;
  2257. width:80px;
  2258. height:38px;
  2259. }
  2260. #u119846 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:1332px;
  2264. top:0px;
  2265. width:80px;
  2266. height:38px;
  2267. display:flex;
  2268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:14px;
  2272. color:#FFFFFF;
  2273. line-height:30px;
  2274. }
  2275. #u119846 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 0px 2px 0px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u119846_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. }
  2287. #u119847_img {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:200px;
  2293. height:38px;
  2294. }
  2295. #u119847 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:1412px;
  2299. top:0px;
  2300. width:200px;
  2301. height:38px;
  2302. display:flex;
  2303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2304. font-weight:400;
  2305. font-style:normal;
  2306. font-size:14px;
  2307. color:#FFFFFF;
  2308. line-height:30px;
  2309. }
  2310. #u119847 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 0px 2px 0px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u119847_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. }
  2322. #u119848_img {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:80px;
  2328. height:38px;
  2329. }
  2330. #u119848 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:38px;
  2335. width:80px;
  2336. height:38px;
  2337. display:flex;
  2338. font-size:14px;
  2339. line-height:30px;
  2340. }
  2341. #u119848 .text {
  2342. position:absolute;
  2343. align-self:center;
  2344. padding:2px 0px 2px 0px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u119848_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. visibility:hidden;
  2353. }
  2354. #u119849_img {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:80px;
  2360. height:38px;
  2361. }
  2362. #u119849 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:80px;
  2366. top:38px;
  2367. width:80px;
  2368. height:38px;
  2369. display:flex;
  2370. font-size:14px;
  2371. line-height:30px;
  2372. }
  2373. #u119849 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 0px 2px 0px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u119849_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. visibility:hidden;
  2385. }
  2386. #u119850_img {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:80px;
  2392. height:38px;
  2393. }
  2394. #u119850 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:160px;
  2398. top:38px;
  2399. width:80px;
  2400. height:38px;
  2401. display:flex;
  2402. font-size:14px;
  2403. line-height:30px;
  2404. }
  2405. #u119850 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:2px 0px 2px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u119850_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. visibility:hidden;
  2417. }
  2418. #u119851_img {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:90px;
  2424. height:38px;
  2425. }
  2426. #u119851 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:240px;
  2430. top:38px;
  2431. width:90px;
  2432. height:38px;
  2433. display:flex;
  2434. font-size:14px;
  2435. line-height:30px;
  2436. }
  2437. #u119851 .text {
  2438. position:absolute;
  2439. align-self:center;
  2440. padding:2px 0px 2px 0px;
  2441. box-sizing:border-box;
  2442. width:100%;
  2443. }
  2444. #u119851_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. visibility:hidden;
  2449. }
  2450. #u119852_img {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:90px;
  2456. height:38px;
  2457. }
  2458. #u119852 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:330px;
  2462. top:38px;
  2463. width:90px;
  2464. height:38px;
  2465. display:flex;
  2466. font-size:14px;
  2467. line-height:30px;
  2468. }
  2469. #u119852 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 0px 2px 0px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u119852_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. visibility:hidden;
  2481. }
  2482. #u119853_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:90px;
  2488. height:38px;
  2489. }
  2490. #u119853 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:420px;
  2494. top:38px;
  2495. width:90px;
  2496. height:38px;
  2497. display:flex;
  2498. font-size:14px;
  2499. line-height:30px;
  2500. }
  2501. #u119853 .text {
  2502. position:absolute;
  2503. align-self:center;
  2504. padding:2px 0px 2px 0px;
  2505. box-sizing:border-box;
  2506. width:100%;
  2507. }
  2508. #u119853_text {
  2509. border-width:0px;
  2510. word-wrap:break-word;
  2511. text-transform:none;
  2512. visibility:hidden;
  2513. }
  2514. #u119854_img {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:122px;
  2520. height:38px;
  2521. }
  2522. #u119854 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:510px;
  2526. top:38px;
  2527. width:122px;
  2528. height:38px;
  2529. display:flex;
  2530. font-size:14px;
  2531. line-height:30px;
  2532. }
  2533. #u119854 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 0px 2px 0px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u119854_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. visibility:hidden;
  2545. }
  2546. #u119855_img {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:100px;
  2552. height:38px;
  2553. }
  2554. #u119855 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:632px;
  2558. top:38px;
  2559. width:100px;
  2560. height:38px;
  2561. display:flex;
  2562. font-size:14px;
  2563. line-height:30px;
  2564. }
  2565. #u119855 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 0px 2px 0px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u119855_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. visibility:hidden;
  2577. }
  2578. #u119856_img {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:80px;
  2584. height:38px;
  2585. }
  2586. #u119856 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:732px;
  2590. top:38px;
  2591. width:80px;
  2592. height:38px;
  2593. display:flex;
  2594. font-size:14px;
  2595. line-height:30px;
  2596. }
  2597. #u119856 .text {
  2598. position:absolute;
  2599. align-self:center;
  2600. padding:2px 0px 2px 0px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u119856_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. visibility:hidden;
  2609. }
  2610. #u119857_img {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:100px;
  2616. height:38px;
  2617. }
  2618. #u119857 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:812px;
  2622. top:38px;
  2623. width:100px;
  2624. height:38px;
  2625. display:flex;
  2626. font-size:14px;
  2627. line-height:30px;
  2628. }
  2629. #u119857 .text {
  2630. position:absolute;
  2631. align-self:center;
  2632. padding:2px 0px 2px 0px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u119857_text {
  2637. border-width:0px;
  2638. word-wrap:break-word;
  2639. text-transform:none;
  2640. visibility:hidden;
  2641. }
  2642. #u119858_img {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:80px;
  2648. height:38px;
  2649. }
  2650. #u119858 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:912px;
  2654. top:38px;
  2655. width:80px;
  2656. height:38px;
  2657. display:flex;
  2658. font-size:14px;
  2659. line-height:30px;
  2660. }
  2661. #u119858 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:2px 0px 2px 0px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u119858_text {
  2669. border-width:0px;
  2670. word-wrap:break-word;
  2671. text-transform:none;
  2672. visibility:hidden;
  2673. }
  2674. #u119859_img {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:80px;
  2680. height:38px;
  2681. }
  2682. #u119859 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:992px;
  2686. top:38px;
  2687. width:80px;
  2688. height:38px;
  2689. display:flex;
  2690. font-size:14px;
  2691. line-height:30px;
  2692. }
  2693. #u119859 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 0px 2px 0px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u119859_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u119860_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:80px;
  2712. height:38px;
  2713. }
  2714. #u119860 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:1072px;
  2718. top:38px;
  2719. width:80px;
  2720. height:38px;
  2721. display:flex;
  2722. font-size:14px;
  2723. line-height:30px;
  2724. }
  2725. #u119860 .text {
  2726. position:absolute;
  2727. align-self:center;
  2728. padding:2px 0px 2px 0px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u119860_text {
  2733. border-width:0px;
  2734. word-wrap:break-word;
  2735. text-transform:none;
  2736. visibility:hidden;
  2737. }
  2738. #u119861_img {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:80px;
  2744. height:38px;
  2745. }
  2746. #u119861 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:1152px;
  2750. top:38px;
  2751. width:80px;
  2752. height:38px;
  2753. display:flex;
  2754. font-size:14px;
  2755. line-height:30px;
  2756. }
  2757. #u119861 .text {
  2758. position:absolute;
  2759. align-self:center;
  2760. padding:2px 0px 2px 0px;
  2761. box-sizing:border-box;
  2762. width:100%;
  2763. }
  2764. #u119861_text {
  2765. border-width:0px;
  2766. word-wrap:break-word;
  2767. text-transform:none;
  2768. visibility:hidden;
  2769. }
  2770. #u119862_img {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:100px;
  2776. height:38px;
  2777. }
  2778. #u119862 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:1232px;
  2782. top:38px;
  2783. width:100px;
  2784. height:38px;
  2785. display:flex;
  2786. font-size:14px;
  2787. line-height:30px;
  2788. }
  2789. #u119862 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 0px 2px 0px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u119862_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. visibility:hidden;
  2801. }
  2802. #u119863_img {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:80px;
  2808. height:38px;
  2809. }
  2810. #u119863 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:1332px;
  2814. top:38px;
  2815. width:80px;
  2816. height:38px;
  2817. display:flex;
  2818. font-size:14px;
  2819. line-height:30px;
  2820. }
  2821. #u119863 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:2px 0px 2px 0px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u119863_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. visibility:hidden;
  2833. }
  2834. #u119864_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:200px;
  2840. height:38px;
  2841. }
  2842. #u119864 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:1412px;
  2846. top:38px;
  2847. width:200px;
  2848. height:38px;
  2849. display:flex;
  2850. font-size:14px;
  2851. line-height:30px;
  2852. }
  2853. #u119864 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 0px 2px 0px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u119864_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. }
  2865. #u119865_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:80px;
  2871. height:38px;
  2872. }
  2873. #u119865 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:76px;
  2878. width:80px;
  2879. height:38px;
  2880. display:flex;
  2881. font-size:14px;
  2882. line-height:30px;
  2883. }
  2884. #u119865 .text {
  2885. position:absolute;
  2886. align-self:center;
  2887. padding:2px 0px 2px 0px;
  2888. box-sizing:border-box;
  2889. width:100%;
  2890. }
  2891. #u119865_text {
  2892. border-width:0px;
  2893. word-wrap:break-word;
  2894. text-transform:none;
  2895. visibility:hidden;
  2896. }
  2897. #u119866_img {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:80px;
  2903. height:38px;
  2904. }
  2905. #u119866 {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:80px;
  2909. top:76px;
  2910. width:80px;
  2911. height:38px;
  2912. display:flex;
  2913. font-size:14px;
  2914. line-height:30px;
  2915. }
  2916. #u119866 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 0px 2px 0px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u119866_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u119867_img {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:80px;
  2935. height:38px;
  2936. }
  2937. #u119867 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:160px;
  2941. top:76px;
  2942. width:80px;
  2943. height:38px;
  2944. display:flex;
  2945. font-size:14px;
  2946. line-height:30px;
  2947. }
  2948. #u119867 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 0px 2px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u119867_text {
  2956. border-width:0px;
  2957. word-wrap:break-word;
  2958. text-transform:none;
  2959. visibility:hidden;
  2960. }
  2961. #u119868_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:90px;
  2967. height:38px;
  2968. }
  2969. #u119868 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:240px;
  2973. top:76px;
  2974. width:90px;
  2975. height:38px;
  2976. display:flex;
  2977. font-size:14px;
  2978. line-height:30px;
  2979. }
  2980. #u119868 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 0px 2px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u119868_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. visibility:hidden;
  2992. }
  2993. #u119869_img {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:90px;
  2999. height:38px;
  3000. }
  3001. #u119869 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:330px;
  3005. top:76px;
  3006. width:90px;
  3007. height:38px;
  3008. display:flex;
  3009. font-size:14px;
  3010. line-height:30px;
  3011. }
  3012. #u119869 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:2px 0px 2px 0px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u119869_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. visibility:hidden;
  3024. }
  3025. #u119870_img {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:0px;
  3029. top:0px;
  3030. width:90px;
  3031. height:38px;
  3032. }
  3033. #u119870 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:420px;
  3037. top:76px;
  3038. width:90px;
  3039. height:38px;
  3040. display:flex;
  3041. font-size:14px;
  3042. line-height:30px;
  3043. }
  3044. #u119870 .text {
  3045. position:absolute;
  3046. align-self:center;
  3047. padding:2px 0px 2px 0px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u119870_text {
  3052. border-width:0px;
  3053. word-wrap:break-word;
  3054. text-transform:none;
  3055. visibility:hidden;
  3056. }
  3057. #u119871_img {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:122px;
  3063. height:38px;
  3064. }
  3065. #u119871 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:510px;
  3069. top:76px;
  3070. width:122px;
  3071. height:38px;
  3072. display:flex;
  3073. font-size:14px;
  3074. line-height:30px;
  3075. }
  3076. #u119871 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 0px 2px 0px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u119871_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u119872_img {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:100px;
  3095. height:38px;
  3096. }
  3097. #u119872 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:632px;
  3101. top:76px;
  3102. width:100px;
  3103. height:38px;
  3104. display:flex;
  3105. font-size:14px;
  3106. line-height:30px;
  3107. }
  3108. #u119872 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 0px 2px 0px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u119872_text {
  3116. border-width:0px;
  3117. word-wrap:break-word;
  3118. text-transform:none;
  3119. visibility:hidden;
  3120. }
  3121. #u119873_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:80px;
  3127. height:38px;
  3128. }
  3129. #u119873 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:732px;
  3133. top:76px;
  3134. width:80px;
  3135. height:38px;
  3136. display:flex;
  3137. font-size:14px;
  3138. line-height:30px;
  3139. }
  3140. #u119873 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 0px 2px 0px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u119873_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. visibility:hidden;
  3152. }
  3153. #u119874_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:100px;
  3159. height:38px;
  3160. }
  3161. #u119874 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:812px;
  3165. top:76px;
  3166. width:100px;
  3167. height:38px;
  3168. display:flex;
  3169. font-size:14px;
  3170. line-height:30px;
  3171. }
  3172. #u119874 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 0px 2px 0px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u119874_text {
  3180. border-width:0px;
  3181. word-wrap:break-word;
  3182. text-transform:none;
  3183. visibility:hidden;
  3184. }
  3185. #u119875_img {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:80px;
  3191. height:38px;
  3192. }
  3193. #u119875 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:912px;
  3197. top:76px;
  3198. width:80px;
  3199. height:38px;
  3200. display:flex;
  3201. font-size:14px;
  3202. line-height:30px;
  3203. }
  3204. #u119875 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:2px 0px 2px 0px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u119875_text {
  3212. border-width:0px;
  3213. word-wrap:break-word;
  3214. text-transform:none;
  3215. visibility:hidden;
  3216. }
  3217. #u119876_img {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:80px;
  3223. height:38px;
  3224. }
  3225. #u119876 {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:992px;
  3229. top:76px;
  3230. width:80px;
  3231. height:38px;
  3232. display:flex;
  3233. font-size:14px;
  3234. line-height:30px;
  3235. }
  3236. #u119876 .text {
  3237. position:absolute;
  3238. align-self:center;
  3239. padding:2px 0px 2px 0px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u119876_text {
  3244. border-width:0px;
  3245. word-wrap:break-word;
  3246. text-transform:none;
  3247. visibility:hidden;
  3248. }
  3249. #u119877_img {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:80px;
  3255. height:38px;
  3256. }
  3257. #u119877 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:1072px;
  3261. top:76px;
  3262. width:80px;
  3263. height:38px;
  3264. display:flex;
  3265. font-size:14px;
  3266. line-height:30px;
  3267. }
  3268. #u119877 .text {
  3269. position:absolute;
  3270. align-self:center;
  3271. padding:2px 0px 2px 0px;
  3272. box-sizing:border-box;
  3273. width:100%;
  3274. }
  3275. #u119877_text {
  3276. border-width:0px;
  3277. word-wrap:break-word;
  3278. text-transform:none;
  3279. visibility:hidden;
  3280. }
  3281. #u119878_img {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:0px;
  3285. top:0px;
  3286. width:80px;
  3287. height:38px;
  3288. }
  3289. #u119878 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:1152px;
  3293. top:76px;
  3294. width:80px;
  3295. height:38px;
  3296. display:flex;
  3297. font-size:14px;
  3298. line-height:30px;
  3299. }
  3300. #u119878 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 0px 2px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u119878_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u119879_img {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:100px;
  3319. height:38px;
  3320. }
  3321. #u119879 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:1232px;
  3325. top:76px;
  3326. width:100px;
  3327. height:38px;
  3328. display:flex;
  3329. font-size:14px;
  3330. line-height:30px;
  3331. }
  3332. #u119879 .text {
  3333. position:absolute;
  3334. align-self:center;
  3335. padding:2px 0px 2px 0px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u119879_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u119880_img {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:80px;
  3351. height:38px;
  3352. }
  3353. #u119880 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:1332px;
  3357. top:76px;
  3358. width:80px;
  3359. height:38px;
  3360. display:flex;
  3361. font-size:14px;
  3362. line-height:30px;
  3363. }
  3364. #u119880 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 0px 2px 0px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u119880_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. visibility:hidden;
  3376. }
  3377. #u119881_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:200px;
  3383. height:38px;
  3384. }
  3385. #u119881 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:1412px;
  3389. top:76px;
  3390. width:200px;
  3391. height:38px;
  3392. display:flex;
  3393. font-size:14px;
  3394. color:#1890FF;
  3395. line-height:30px;
  3396. }
  3397. #u119881 .text {
  3398. position:absolute;
  3399. align-self:center;
  3400. padding:2px 0px 2px 0px;
  3401. box-sizing:border-box;
  3402. width:100%;
  3403. }
  3404. #u119881_text {
  3405. border-width:0px;
  3406. word-wrap:break-word;
  3407. text-transform:none;
  3408. }
  3409. #u119882_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:80px;
  3415. height:38px;
  3416. }
  3417. #u119882 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:114px;
  3422. width:80px;
  3423. height:38px;
  3424. display:flex;
  3425. font-size:14px;
  3426. line-height:30px;
  3427. }
  3428. #u119882 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 0px 2px 0px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u119882_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. visibility:hidden;
  3440. }
  3441. #u119883_img {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:80px;
  3447. height:38px;
  3448. }
  3449. #u119883 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:80px;
  3453. top:114px;
  3454. width:80px;
  3455. height:38px;
  3456. display:flex;
  3457. font-size:14px;
  3458. line-height:30px;
  3459. }
  3460. #u119883 .text {
  3461. position:absolute;
  3462. align-self:center;
  3463. padding:2px 0px 2px 0px;
  3464. box-sizing:border-box;
  3465. width:100%;
  3466. }
  3467. #u119883_text {
  3468. border-width:0px;
  3469. word-wrap:break-word;
  3470. text-transform:none;
  3471. visibility:hidden;
  3472. }
  3473. #u119884_img {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:80px;
  3479. height:38px;
  3480. }
  3481. #u119884 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:160px;
  3485. top:114px;
  3486. width:80px;
  3487. height:38px;
  3488. display:flex;
  3489. font-size:14px;
  3490. line-height:30px;
  3491. }
  3492. #u119884 .text {
  3493. position:absolute;
  3494. align-self:center;
  3495. padding:2px 0px 2px 0px;
  3496. box-sizing:border-box;
  3497. width:100%;
  3498. }
  3499. #u119884_text {
  3500. border-width:0px;
  3501. word-wrap:break-word;
  3502. text-transform:none;
  3503. visibility:hidden;
  3504. }
  3505. #u119885_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:90px;
  3511. height:38px;
  3512. }
  3513. #u119885 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:240px;
  3517. top:114px;
  3518. width:90px;
  3519. height:38px;
  3520. display:flex;
  3521. font-size:14px;
  3522. line-height:30px;
  3523. }
  3524. #u119885 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 0px 2px 0px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u119885_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u119886_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:90px;
  3543. height:38px;
  3544. }
  3545. #u119886 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:330px;
  3549. top:114px;
  3550. width:90px;
  3551. height:38px;
  3552. display:flex;
  3553. font-size:14px;
  3554. line-height:30px;
  3555. }
  3556. #u119886 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 0px 2px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u119886_text {
  3564. border-width:0px;
  3565. word-wrap:break-word;
  3566. text-transform:none;
  3567. visibility:hidden;
  3568. }
  3569. #u119887_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:90px;
  3575. height:38px;
  3576. }
  3577. #u119887 {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:420px;
  3581. top:114px;
  3582. width:90px;
  3583. height:38px;
  3584. display:flex;
  3585. font-size:14px;
  3586. line-height:30px;
  3587. }
  3588. #u119887 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 0px 2px 0px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u119887_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u119888_img {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:122px;
  3607. height:38px;
  3608. }
  3609. #u119888 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:510px;
  3613. top:114px;
  3614. width:122px;
  3615. height:38px;
  3616. display:flex;
  3617. font-size:14px;
  3618. line-height:30px;
  3619. }
  3620. #u119888 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 0px 2px 0px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u119888_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. visibility:hidden;
  3632. }
  3633. #u119889_img {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:100px;
  3639. height:38px;
  3640. }
  3641. #u119889 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:632px;
  3645. top:114px;
  3646. width:100px;
  3647. height:38px;
  3648. display:flex;
  3649. font-size:14px;
  3650. line-height:30px;
  3651. }
  3652. #u119889 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 0px 2px 0px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u119889_text {
  3660. border-width:0px;
  3661. word-wrap:break-word;
  3662. text-transform:none;
  3663. visibility:hidden;
  3664. }
  3665. #u119890_img {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:80px;
  3671. height:38px;
  3672. }
  3673. #u119890 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:732px;
  3677. top:114px;
  3678. width:80px;
  3679. height:38px;
  3680. display:flex;
  3681. font-size:14px;
  3682. line-height:30px;
  3683. }
  3684. #u119890 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 0px 2px 0px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u119890_text {
  3692. border-width:0px;
  3693. word-wrap:break-word;
  3694. text-transform:none;
  3695. visibility:hidden;
  3696. }
  3697. #u119891_img {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:100px;
  3703. height:38px;
  3704. }
  3705. #u119891 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:812px;
  3709. top:114px;
  3710. width:100px;
  3711. height:38px;
  3712. display:flex;
  3713. font-size:14px;
  3714. line-height:30px;
  3715. }
  3716. #u119891 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 0px 2px 0px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u119891_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u119892_img {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:80px;
  3735. height:38px;
  3736. }
  3737. #u119892 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:912px;
  3741. top:114px;
  3742. width:80px;
  3743. height:38px;
  3744. display:flex;
  3745. font-size:14px;
  3746. line-height:30px;
  3747. }
  3748. #u119892 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:2px 0px 2px 0px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u119892_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u119893_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:80px;
  3767. height:38px;
  3768. }
  3769. #u119893 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:992px;
  3773. top:114px;
  3774. width:80px;
  3775. height:38px;
  3776. display:flex;
  3777. font-size:14px;
  3778. line-height:30px;
  3779. }
  3780. #u119893 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 0px 2px 0px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u119893_text {
  3788. border-width:0px;
  3789. word-wrap:break-word;
  3790. text-transform:none;
  3791. visibility:hidden;
  3792. }
  3793. #u119894_img {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:80px;
  3799. height:38px;
  3800. }
  3801. #u119894 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:1072px;
  3805. top:114px;
  3806. width:80px;
  3807. height:38px;
  3808. display:flex;
  3809. font-size:14px;
  3810. line-height:30px;
  3811. }
  3812. #u119894 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:2px 0px 2px 0px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u119894_text {
  3820. border-width:0px;
  3821. word-wrap:break-word;
  3822. text-transform:none;
  3823. visibility:hidden;
  3824. }
  3825. #u119895_img {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:80px;
  3831. height:38px;
  3832. }
  3833. #u119895 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:1152px;
  3837. top:114px;
  3838. width:80px;
  3839. height:38px;
  3840. display:flex;
  3841. font-size:14px;
  3842. line-height:30px;
  3843. }
  3844. #u119895 .text {
  3845. position:absolute;
  3846. align-self:center;
  3847. padding:2px 0px 2px 0px;
  3848. box-sizing:border-box;
  3849. width:100%;
  3850. }
  3851. #u119895_text {
  3852. border-width:0px;
  3853. word-wrap:break-word;
  3854. text-transform:none;
  3855. visibility:hidden;
  3856. }
  3857. #u119896_img {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:100px;
  3863. height:38px;
  3864. }
  3865. #u119896 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:1232px;
  3869. top:114px;
  3870. width:100px;
  3871. height:38px;
  3872. display:flex;
  3873. font-size:14px;
  3874. line-height:30px;
  3875. }
  3876. #u119896 .text {
  3877. position:absolute;
  3878. align-self:center;
  3879. padding:2px 0px 2px 0px;
  3880. box-sizing:border-box;
  3881. width:100%;
  3882. }
  3883. #u119896_text {
  3884. border-width:0px;
  3885. word-wrap:break-word;
  3886. text-transform:none;
  3887. visibility:hidden;
  3888. }
  3889. #u119897_img {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:0px;
  3893. top:0px;
  3894. width:80px;
  3895. height:38px;
  3896. }
  3897. #u119897 {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:1332px;
  3901. top:114px;
  3902. width:80px;
  3903. height:38px;
  3904. display:flex;
  3905. font-size:14px;
  3906. line-height:30px;
  3907. }
  3908. #u119897 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 0px 2px 0px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u119897_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u119898_img {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:200px;
  3927. height:38px;
  3928. }
  3929. #u119898 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:1412px;
  3933. top:114px;
  3934. width:200px;
  3935. height:38px;
  3936. display:flex;
  3937. font-size:14px;
  3938. color:#1890FF;
  3939. line-height:30px;
  3940. }
  3941. #u119898 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:2px 0px 2px 0px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u119898_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. }
  3953. #u119899_img {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:80px;
  3959. height:38px;
  3960. }
  3961. #u119899 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:152px;
  3966. width:80px;
  3967. height:38px;
  3968. display:flex;
  3969. font-size:14px;
  3970. line-height:30px;
  3971. }
  3972. #u119899 .text {
  3973. position:absolute;
  3974. align-self:center;
  3975. padding:2px 0px 2px 0px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u119899_text {
  3980. border-width:0px;
  3981. word-wrap:break-word;
  3982. text-transform:none;
  3983. visibility:hidden;
  3984. }
  3985. #u119900_img {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:0px;
  3989. top:0px;
  3990. width:80px;
  3991. height:38px;
  3992. }
  3993. #u119900 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:80px;
  3997. top:152px;
  3998. width:80px;
  3999. height:38px;
  4000. display:flex;
  4001. font-size:14px;
  4002. line-height:30px;
  4003. }
  4004. #u119900 .text {
  4005. position:absolute;
  4006. align-self:center;
  4007. padding:2px 0px 2px 0px;
  4008. box-sizing:border-box;
  4009. width:100%;
  4010. }
  4011. #u119900_text {
  4012. border-width:0px;
  4013. word-wrap:break-word;
  4014. text-transform:none;
  4015. visibility:hidden;
  4016. }
  4017. #u119901_img {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:80px;
  4023. height:38px;
  4024. }
  4025. #u119901 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:160px;
  4029. top:152px;
  4030. width:80px;
  4031. height:38px;
  4032. display:flex;
  4033. font-size:14px;
  4034. line-height:30px;
  4035. }
  4036. #u119901 .text {
  4037. position:absolute;
  4038. align-self:center;
  4039. padding:2px 0px 2px 0px;
  4040. box-sizing:border-box;
  4041. width:100%;
  4042. }
  4043. #u119901_text {
  4044. border-width:0px;
  4045. word-wrap:break-word;
  4046. text-transform:none;
  4047. visibility:hidden;
  4048. }
  4049. #u119902_img {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:90px;
  4055. height:38px;
  4056. }
  4057. #u119902 {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:240px;
  4061. top:152px;
  4062. width:90px;
  4063. height:38px;
  4064. display:flex;
  4065. font-size:14px;
  4066. line-height:30px;
  4067. }
  4068. #u119902 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 0px 2px 0px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u119902_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u119903_img {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:90px;
  4087. height:38px;
  4088. }
  4089. #u119903 {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:330px;
  4093. top:152px;
  4094. width:90px;
  4095. height:38px;
  4096. display:flex;
  4097. font-size:14px;
  4098. line-height:30px;
  4099. }
  4100. #u119903 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 0px 2px 0px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u119903_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. visibility:hidden;
  4112. }
  4113. #u119904_img {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:90px;
  4119. height:38px;
  4120. }
  4121. #u119904 {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:420px;
  4125. top:152px;
  4126. width:90px;
  4127. height:38px;
  4128. display:flex;
  4129. font-size:14px;
  4130. line-height:30px;
  4131. }
  4132. #u119904 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:2px 0px 2px 0px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u119904_text {
  4140. border-width:0px;
  4141. word-wrap:break-word;
  4142. text-transform:none;
  4143. visibility:hidden;
  4144. }
  4145. #u119905_img {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:0px;
  4149. top:0px;
  4150. width:122px;
  4151. height:38px;
  4152. }
  4153. #u119905 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:510px;
  4157. top:152px;
  4158. width:122px;
  4159. height:38px;
  4160. display:flex;
  4161. font-size:14px;
  4162. line-height:30px;
  4163. }
  4164. #u119905 .text {
  4165. position:absolute;
  4166. align-self:center;
  4167. padding:2px 0px 2px 0px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u119905_text {
  4172. border-width:0px;
  4173. word-wrap:break-word;
  4174. text-transform:none;
  4175. visibility:hidden;
  4176. }
  4177. #u119906_img {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:100px;
  4183. height:38px;
  4184. }
  4185. #u119906 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:632px;
  4189. top:152px;
  4190. width:100px;
  4191. height:38px;
  4192. display:flex;
  4193. font-size:14px;
  4194. line-height:30px;
  4195. }
  4196. #u119906 .text {
  4197. position:absolute;
  4198. align-self:center;
  4199. padding:2px 0px 2px 0px;
  4200. box-sizing:border-box;
  4201. width:100%;
  4202. }
  4203. #u119906_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. visibility:hidden;
  4208. }
  4209. #u119907_img {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:80px;
  4215. height:38px;
  4216. }
  4217. #u119907 {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:732px;
  4221. top:152px;
  4222. width:80px;
  4223. height:38px;
  4224. display:flex;
  4225. font-size:14px;
  4226. line-height:30px;
  4227. }
  4228. #u119907 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 0px 2px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u119907_text {
  4236. border-width:0px;
  4237. word-wrap:break-word;
  4238. text-transform:none;
  4239. visibility:hidden;
  4240. }
  4241. #u119908_img {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:100px;
  4247. height:38px;
  4248. }
  4249. #u119908 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:812px;
  4253. top:152px;
  4254. width:100px;
  4255. height:38px;
  4256. display:flex;
  4257. font-size:14px;
  4258. line-height:30px;
  4259. }
  4260. #u119908 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 0px 2px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u119908_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. visibility:hidden;
  4272. }
  4273. #u119909_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:80px;
  4279. height:38px;
  4280. }
  4281. #u119909 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:912px;
  4285. top:152px;
  4286. width:80px;
  4287. height:38px;
  4288. display:flex;
  4289. font-size:14px;
  4290. line-height:30px;
  4291. }
  4292. #u119909 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 0px 2px 0px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u119909_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u119910_img {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:80px;
  4311. height:38px;
  4312. }
  4313. #u119910 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:992px;
  4317. top:152px;
  4318. width:80px;
  4319. height:38px;
  4320. display:flex;
  4321. font-size:14px;
  4322. line-height:30px;
  4323. }
  4324. #u119910 .text {
  4325. position:absolute;
  4326. align-self:center;
  4327. padding:2px 0px 2px 0px;
  4328. box-sizing:border-box;
  4329. width:100%;
  4330. }
  4331. #u119910_text {
  4332. border-width:0px;
  4333. word-wrap:break-word;
  4334. text-transform:none;
  4335. visibility:hidden;
  4336. }
  4337. #u119911_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:80px;
  4343. height:38px;
  4344. }
  4345. #u119911 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:1072px;
  4349. top:152px;
  4350. width:80px;
  4351. height:38px;
  4352. display:flex;
  4353. font-size:14px;
  4354. line-height:30px;
  4355. }
  4356. #u119911 .text {
  4357. position:absolute;
  4358. align-self:center;
  4359. padding:2px 0px 2px 0px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u119911_text {
  4364. border-width:0px;
  4365. word-wrap:break-word;
  4366. text-transform:none;
  4367. visibility:hidden;
  4368. }
  4369. #u119912_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:80px;
  4375. height:38px;
  4376. }
  4377. #u119912 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:1152px;
  4381. top:152px;
  4382. width:80px;
  4383. height:38px;
  4384. display:flex;
  4385. font-size:14px;
  4386. line-height:30px;
  4387. }
  4388. #u119912 .text {
  4389. position:absolute;
  4390. align-self:center;
  4391. padding:2px 0px 2px 0px;
  4392. box-sizing:border-box;
  4393. width:100%;
  4394. }
  4395. #u119912_text {
  4396. border-width:0px;
  4397. word-wrap:break-word;
  4398. text-transform:none;
  4399. visibility:hidden;
  4400. }
  4401. #u119913_img {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:100px;
  4407. height:38px;
  4408. }
  4409. #u119913 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:1232px;
  4413. top:152px;
  4414. width:100px;
  4415. height:38px;
  4416. display:flex;
  4417. font-size:14px;
  4418. line-height:30px;
  4419. }
  4420. #u119913 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 0px 2px 0px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u119913_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. visibility:hidden;
  4432. }
  4433. #u119914_img {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:80px;
  4439. height:38px;
  4440. }
  4441. #u119914 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:1332px;
  4445. top:152px;
  4446. width:80px;
  4447. height:38px;
  4448. display:flex;
  4449. font-size:14px;
  4450. line-height:30px;
  4451. }
  4452. #u119914 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 0px 2px 0px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u119914_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u119915_img {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:200px;
  4471. height:38px;
  4472. }
  4473. #u119915 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:1412px;
  4477. top:152px;
  4478. width:200px;
  4479. height:38px;
  4480. display:flex;
  4481. font-size:14px;
  4482. color:#1890FF;
  4483. line-height:30px;
  4484. }
  4485. #u119915 .text {
  4486. position:absolute;
  4487. align-self:center;
  4488. padding:2px 0px 2px 0px;
  4489. box-sizing:border-box;
  4490. width:100%;
  4491. }
  4492. #u119915_text {
  4493. border-width:0px;
  4494. word-wrap:break-word;
  4495. text-transform:none;
  4496. }
  4497. #u119916 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:0px;
  4503. height:0px;
  4504. }
  4505. #u119917_div {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:61px;
  4511. height:32px;
  4512. background:inherit;
  4513. background-color:rgba(24, 144, 255, 1);
  4514. border:none;
  4515. border-radius:4px;
  4516. -moz-box-shadow:none;
  4517. -webkit-box-shadow:none;
  4518. box-shadow:none;
  4519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4520. font-weight:400;
  4521. font-style:normal;
  4522. font-size:14px;
  4523. color:#FFFFFF;
  4524. }
  4525. #u119917 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:975px;
  4529. top:111px;
  4530. width:61px;
  4531. height:32px;
  4532. display:flex;
  4533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:14px;
  4537. color:#FFFFFF;
  4538. }
  4539. #u119917 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 16px 2px 16px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u119917_text {
  4547. border-width:0px;
  4548. white-space:nowrap;
  4549. text-transform:none;
  4550. }
  4551. #u119918_div {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:61px;
  4557. height:32px;
  4558. background:inherit;
  4559. background-color:rgba(255, 255, 255, 1);
  4560. box-sizing:border-box;
  4561. border-width:1px;
  4562. border-style:solid;
  4563. border-color:rgba(217, 217, 217, 1);
  4564. border-radius:4px;
  4565. -moz-box-shadow:none;
  4566. -webkit-box-shadow:none;
  4567. box-shadow:none;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:14px;
  4572. color:rgba(0, 0, 0, 0.647058823529412);
  4573. line-height:21px;
  4574. }
  4575. #u119918 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:1046px;
  4579. top:111px;
  4580. width:61px;
  4581. height:32px;
  4582. display:flex;
  4583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4584. font-weight:400;
  4585. font-style:normal;
  4586. font-size:14px;
  4587. color:rgba(0, 0, 0, 0.647058823529412);
  4588. line-height:21px;
  4589. }
  4590. #u119918 .text {
  4591. position:absolute;
  4592. align-self:center;
  4593. padding:2px 16px 2px 16px;
  4594. box-sizing:border-box;
  4595. width:100%;
  4596. }
  4597. #u119918_text {
  4598. border-width:0px;
  4599. white-space:nowrap;
  4600. text-transform:none;
  4601. }
  4602. #u119919 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:0px;
  4608. height:0px;
  4609. }
  4610. #u119920 {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:0px;
  4616. height:0px;
  4617. }
  4618. #u119921_div {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:140px;
  4624. height:30px;
  4625. background:inherit;
  4626. background-color:rgba(255, 255, 255, 1);
  4627. box-sizing:border-box;
  4628. border-width:1px;
  4629. border-style:solid;
  4630. border-color:rgba(215, 215, 215, 1);
  4631. border-radius:4px;
  4632. -moz-box-shadow:none;
  4633. -webkit-box-shadow:none;
  4634. box-shadow:none;
  4635. font-size:14px;
  4636. }
  4637. #u119921 {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:423px;
  4641. top:112px;
  4642. width:140px;
  4643. height:30px;
  4644. display:flex;
  4645. font-size:14px;
  4646. }
  4647. #u119921 .text {
  4648. position:absolute;
  4649. align-self:center;
  4650. padding:2px 2px 2px 2px;
  4651. box-sizing:border-box;
  4652. width:100%;
  4653. }
  4654. #u119921_text {
  4655. border-width:0px;
  4656. word-wrap:break-word;
  4657. text-transform:none;
  4658. visibility:hidden;
  4659. }
  4660. #u119922_input {
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:134px;
  4665. height:23px;
  4666. padding:2px 2px 2px 2px;
  4667. font-family:'ArialMT', 'Arial', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:14px;
  4671. letter-spacing:normal;
  4672. color:#AAAAAA;
  4673. vertical-align:none;
  4674. text-align:left;
  4675. text-transform:none;
  4676. background-color:transparent;
  4677. border-color:transparent;
  4678. }
  4679. #u119922_input.disabled {
  4680. position:absolute;
  4681. left:0px;
  4682. top:0px;
  4683. width:134px;
  4684. height:23px;
  4685. padding:2px 2px 2px 2px;
  4686. font-family:'ArialMT', 'Arial', sans-serif;
  4687. font-weight:400;
  4688. font-style:normal;
  4689. font-size:14px;
  4690. letter-spacing:normal;
  4691. color:#AAAAAA;
  4692. vertical-align:none;
  4693. text-align:left;
  4694. text-transform:none;
  4695. background-color:transparent;
  4696. border-color:transparent;
  4697. }
  4698. #u119922_div {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:134px;
  4704. height:23px;
  4705. background:inherit;
  4706. background-color:rgba(255, 255, 255, 1);
  4707. border:none;
  4708. border-radius:0px;
  4709. -moz-box-shadow:none;
  4710. -webkit-box-shadow:none;
  4711. box-shadow:none;
  4712. font-size:14px;
  4713. color:#AAAAAA;
  4714. }
  4715. #u119922 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:427px;
  4719. top:114px;
  4720. width:134px;
  4721. height:23px;
  4722. display:flex;
  4723. font-size:14px;
  4724. color:#AAAAAA;
  4725. }
  4726. #u119922 .text {
  4727. position:absolute;
  4728. align-self:flex-start;
  4729. padding:2px 2px 2px 2px;
  4730. box-sizing:border-box;
  4731. width:100%;
  4732. }
  4733. #u119922_div.disabled {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:134px;
  4739. height:23px;
  4740. background:inherit;
  4741. background-color:rgba(240, 240, 240, 1);
  4742. border:none;
  4743. border-radius:0px;
  4744. -moz-box-shadow:none;
  4745. -webkit-box-shadow:none;
  4746. box-shadow:none;
  4747. font-size:14px;
  4748. color:#AAAAAA;
  4749. }
  4750. #u119922.disabled {
  4751. }
  4752. .u119922_input_option {
  4753. font-size:14px;
  4754. }
  4755. #u119923_div {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:0px;
  4759. top:0px;
  4760. width:71px;
  4761. height:20px;
  4762. background:inherit;
  4763. background-color:rgba(224, 231, 247, 0);
  4764. border:none;
  4765. border-radius:0px;
  4766. -moz-box-shadow:none;
  4767. -webkit-box-shadow:none;
  4768. box-shadow:none;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. }
  4773. #u119923 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:356px;
  4777. top:117px;
  4778. width:71px;
  4779. height:20px;
  4780. display:flex;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. }
  4785. #u119923 .text {
  4786. position:absolute;
  4787. align-self:center;
  4788. padding:0px 0px 0px 0px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u119923_text {
  4793. border-width:0px;
  4794. white-space:nowrap;
  4795. text-transform:none;
  4796. }
  4797. #u119924 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:0px;
  4803. height:0px;
  4804. }
  4805. #u119925_div {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:140px;
  4811. height:30px;
  4812. background:inherit;
  4813. background-color:rgba(255, 255, 255, 1);
  4814. box-sizing:border-box;
  4815. border-width:1px;
  4816. border-style:solid;
  4817. border-color:rgba(215, 215, 215, 1);
  4818. border-radius:4px;
  4819. -moz-box-shadow:none;
  4820. -webkit-box-shadow:none;
  4821. box-shadow:none;
  4822. font-size:14px;
  4823. }
  4824. #u119925 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:588px;
  4828. top:112px;
  4829. width:140px;
  4830. height:30px;
  4831. display:flex;
  4832. font-size:14px;
  4833. }
  4834. #u119925 .text {
  4835. position:absolute;
  4836. align-self:center;
  4837. padding:2px 2px 2px 2px;
  4838. box-sizing:border-box;
  4839. width:100%;
  4840. }
  4841. #u119925_text {
  4842. border-width:0px;
  4843. word-wrap:break-word;
  4844. text-transform:none;
  4845. visibility:hidden;
  4846. }
  4847. #u119926_input {
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:134px;
  4852. height:23px;
  4853. padding:2px 2px 2px 2px;
  4854. font-family:'ArialMT', 'Arial', sans-serif;
  4855. font-weight:400;
  4856. font-style:normal;
  4857. font-size:14px;
  4858. letter-spacing:normal;
  4859. color:#AAAAAA;
  4860. vertical-align:none;
  4861. text-align:left;
  4862. text-transform:none;
  4863. background-color:transparent;
  4864. border-color:transparent;
  4865. }
  4866. #u119926_input.disabled {
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:134px;
  4871. height:23px;
  4872. padding:2px 2px 2px 2px;
  4873. font-family:'ArialMT', 'Arial', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. letter-spacing:normal;
  4878. color:#AAAAAA;
  4879. vertical-align:none;
  4880. text-align:left;
  4881. text-transform:none;
  4882. background-color:transparent;
  4883. border-color:transparent;
  4884. }
  4885. #u119926_div {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:134px;
  4891. height:23px;
  4892. background:inherit;
  4893. background-color:rgba(255, 255, 255, 1);
  4894. border:none;
  4895. border-radius:0px;
  4896. -moz-box-shadow:none;
  4897. -webkit-box-shadow:none;
  4898. box-shadow:none;
  4899. font-size:14px;
  4900. color:#AAAAAA;
  4901. }
  4902. #u119926 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:592px;
  4906. top:114px;
  4907. width:134px;
  4908. height:23px;
  4909. display:flex;
  4910. font-size:14px;
  4911. color:#AAAAAA;
  4912. }
  4913. #u119926 .text {
  4914. position:absolute;
  4915. align-self:flex-start;
  4916. padding:2px 2px 2px 2px;
  4917. box-sizing:border-box;
  4918. width:100%;
  4919. }
  4920. #u119926_div.disabled {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:134px;
  4926. height:23px;
  4927. background:inherit;
  4928. background-color:rgba(240, 240, 240, 1);
  4929. border:none;
  4930. border-radius:0px;
  4931. -moz-box-shadow:none;
  4932. -webkit-box-shadow:none;
  4933. box-shadow:none;
  4934. font-size:14px;
  4935. color:#AAAAAA;
  4936. }
  4937. #u119926.disabled {
  4938. }
  4939. .u119926_input_option {
  4940. font-size:14px;
  4941. }
  4942. #u119927_div {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:15px;
  4948. height:20px;
  4949. background:inherit;
  4950. background-color:rgba(224, 231, 247, 0);
  4951. border:none;
  4952. border-radius:0px;
  4953. -moz-box-shadow:none;
  4954. -webkit-box-shadow:none;
  4955. box-shadow:none;
  4956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. }
  4960. #u119927 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:568px;
  4964. top:117px;
  4965. width:15px;
  4966. height:20px;
  4967. display:flex;
  4968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. }
  4972. #u119927 .text {
  4973. position:absolute;
  4974. align-self:center;
  4975. padding:0px 0px 0px 0px;
  4976. box-sizing:border-box;
  4977. width:100%;
  4978. }
  4979. #u119927_text {
  4980. border-width:0px;
  4981. white-space:nowrap;
  4982. text-transform:none;
  4983. }
  4984. #u119928_img {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:-5px;
  4988. top:-5px;
  4989. width:263px;
  4990. height:212px;
  4991. }
  4992. #u119928 {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:367px;
  4996. top:461px;
  4997. width:253px;
  4998. height:202px;
  4999. display:flex;
  5000. }
  5001. #u119928 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:2px 2px 2px 2px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u119928_text {
  5009. border-width:0px;
  5010. word-wrap:break-word;
  5011. text-transform:none;
  5012. visibility:hidden;
  5013. }
  5014. #u119929 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:0px;
  5020. height:0px;
  5021. }
  5022. #u119930 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:0px;
  5028. height:0px;
  5029. }
  5030. #u119931_div {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:140px;
  5036. height:30px;
  5037. background:inherit;
  5038. background-color:rgba(255, 255, 255, 1);
  5039. box-sizing:border-box;
  5040. border-width:1px;
  5041. border-style:solid;
  5042. border-color:rgba(215, 215, 215, 1);
  5043. border-radius:4px;
  5044. -moz-box-shadow:none;
  5045. -webkit-box-shadow:none;
  5046. box-shadow:none;
  5047. font-size:14px;
  5048. }
  5049. #u119931 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:825px;
  5053. top:112px;
  5054. width:140px;
  5055. height:30px;
  5056. display:flex;
  5057. font-size:14px;
  5058. }
  5059. #u119931 .text {
  5060. position:absolute;
  5061. align-self:center;
  5062. padding:2px 2px 2px 2px;
  5063. box-sizing:border-box;
  5064. width:100%;
  5065. }
  5066. #u119931_text {
  5067. border-width:0px;
  5068. word-wrap:break-word;
  5069. text-transform:none;
  5070. visibility:hidden;
  5071. }
  5072. #u119932_input {
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:134px;
  5077. height:23px;
  5078. padding:2px 2px 2px 2px;
  5079. font-family:'ArialMT', 'Arial', sans-serif;
  5080. font-weight:400;
  5081. font-style:normal;
  5082. font-size:14px;
  5083. letter-spacing:normal;
  5084. color:#AAAAAA;
  5085. vertical-align:none;
  5086. text-align:left;
  5087. text-transform:none;
  5088. background-color:transparent;
  5089. border-color:transparent;
  5090. }
  5091. #u119932_input.disabled {
  5092. position:absolute;
  5093. left:0px;
  5094. top:0px;
  5095. width:134px;
  5096. height:23px;
  5097. padding:2px 2px 2px 2px;
  5098. font-family:'ArialMT', 'Arial', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. font-size:14px;
  5102. letter-spacing:normal;
  5103. color:#AAAAAA;
  5104. vertical-align:none;
  5105. text-align:left;
  5106. text-transform:none;
  5107. background-color:transparent;
  5108. border-color:transparent;
  5109. }
  5110. #u119932_div {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:134px;
  5116. height:23px;
  5117. background:inherit;
  5118. background-color:rgba(255, 255, 255, 1);
  5119. border:none;
  5120. border-radius:0px;
  5121. -moz-box-shadow:none;
  5122. -webkit-box-shadow:none;
  5123. box-shadow:none;
  5124. font-size:14px;
  5125. color:#AAAAAA;
  5126. }
  5127. #u119932 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:829px;
  5131. top:114px;
  5132. width:134px;
  5133. height:23px;
  5134. display:flex;
  5135. font-size:14px;
  5136. color:#AAAAAA;
  5137. }
  5138. #u119932 .text {
  5139. position:absolute;
  5140. align-self:flex-start;
  5141. padding:2px 2px 2px 2px;
  5142. box-sizing:border-box;
  5143. width:100%;
  5144. }
  5145. #u119932_div.disabled {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:134px;
  5151. height:23px;
  5152. background:inherit;
  5153. background-color:rgba(240, 240, 240, 1);
  5154. border:none;
  5155. border-radius:0px;
  5156. -moz-box-shadow:none;
  5157. -webkit-box-shadow:none;
  5158. box-shadow:none;
  5159. font-size:14px;
  5160. color:#AAAAAA;
  5161. }
  5162. #u119932.disabled {
  5163. }
  5164. .u119932_input_option {
  5165. font-size:14px;
  5166. }
  5167. #u119933_div {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:71px;
  5173. height:20px;
  5174. background:inherit;
  5175. background-color:rgba(224, 231, 247, 0);
  5176. border:none;
  5177. border-radius:0px;
  5178. -moz-box-shadow:none;
  5179. -webkit-box-shadow:none;
  5180. box-shadow:none;
  5181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. }
  5185. #u119933 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:758px;
  5189. top:117px;
  5190. width:71px;
  5191. height:20px;
  5192. display:flex;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. }
  5197. #u119933 .text {
  5198. position:absolute;
  5199. align-self:center;
  5200. padding:0px 0px 0px 0px;
  5201. box-sizing:border-box;
  5202. width:100%;
  5203. }
  5204. #u119933_text {
  5205. border-width:0px;
  5206. white-space:nowrap;
  5207. text-transform:none;
  5208. }
  5209. #u119934 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:0px;
  5215. height:0px;
  5216. }
  5217. #u119935_div {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:640px;
  5223. height:493px;
  5224. background:inherit;
  5225. background-color:rgba(255, 255, 255, 1);
  5226. border:none;
  5227. border-radius:4px;
  5228. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5229. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5230. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5231. font-family:'Microsoft YaHei', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. }
  5235. #u119935 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:658px;
  5239. top:449px;
  5240. width:640px;
  5241. height:493px;
  5242. display:flex;
  5243. font-family:'Microsoft YaHei', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. }
  5247. #u119935 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:2px 2px 2px 2px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u119935_text {
  5255. border-width:0px;
  5256. word-wrap:break-word;
  5257. text-transform:none;
  5258. visibility:hidden;
  5259. }
  5260. #u119936 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:682px;
  5264. top:509px;
  5265. width:592px;
  5266. height:360px;
  5267. }
  5268. #u119936_state0 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:592px;
  5274. height:360px;
  5275. overflow:auto;
  5276. -webkit-overflow-scrolling:touch;
  5277. -ms-overflow-x:hidden;
  5278. overflow-x:hidden;
  5279. background-image:none;
  5280. border:none;
  5281. border-radius:0px;
  5282. -moz-box-shadow:none;
  5283. -webkit-box-shadow:none;
  5284. box-shadow:none;
  5285. }
  5286. #u119936_state0_content {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:1px;
  5292. height:1px;
  5293. }
  5294. #u119937_div {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:562px;
  5300. height:147px;
  5301. background:inherit;
  5302. background-color:rgba(255, 255, 255, 0);
  5303. border:none;
  5304. border-radius:0px;
  5305. -moz-box-shadow:none;
  5306. -webkit-box-shadow:none;
  5307. box-shadow:none;
  5308. }
  5309. #u119937 {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:562px;
  5315. height:147px;
  5316. display:flex;
  5317. }
  5318. #u119937 .text {
  5319. position:absolute;
  5320. align-self:flex-start;
  5321. padding:0px 0px 0px 0px;
  5322. box-sizing:border-box;
  5323. width:100%;
  5324. }
  5325. #u119937_text {
  5326. border-width:0px;
  5327. word-wrap:break-word;
  5328. text-transform:none;
  5329. }
  5330. #u119938_div {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:109px;
  5336. height:21px;
  5337. background:inherit;
  5338. background-color:rgba(255, 255, 255, 0);
  5339. border:none;
  5340. border-radius:0px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5345. font-weight:650;
  5346. font-style:normal;
  5347. font-size:18px;
  5348. color:#000000;
  5349. line-height:22px;
  5350. }
  5351. #u119938 {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:672px;
  5355. top:474px;
  5356. width:109px;
  5357. height:21px;
  5358. display:flex;
  5359. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5360. font-weight:650;
  5361. font-style:normal;
  5362. font-size:18px;
  5363. color:#000000;
  5364. line-height:22px;
  5365. }
  5366. #u119938 .text {
  5367. position:absolute;
  5368. align-self:flex-start;
  5369. padding:0px 0px 0px 0px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u119938_text {
  5374. border-width:0px;
  5375. white-space:nowrap;
  5376. text-transform:none;
  5377. }
  5378. #u119939_div {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:0px;
  5382. top:0px;
  5383. width:61px;
  5384. height:32px;
  5385. background:inherit;
  5386. background-color:rgba(24, 144, 255, 1);
  5387. border:none;
  5388. border-radius:4px;
  5389. -moz-box-shadow:none;
  5390. -webkit-box-shadow:none;
  5391. box-shadow:none;
  5392. font-family:'Microsoft YaHei', sans-serif;
  5393. font-weight:400;
  5394. font-style:normal;
  5395. font-size:14px;
  5396. color:#FFFFFF;
  5397. }
  5398. #u119939 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:948px;
  5402. top:890px;
  5403. width:61px;
  5404. height:32px;
  5405. display:flex;
  5406. font-family:'Microsoft YaHei', sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:14px;
  5410. color:#FFFFFF;
  5411. }
  5412. #u119939 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:2px 16px 2px 16px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u119939_text {
  5420. border-width:0px;
  5421. white-space:nowrap;
  5422. text-transform:none;
  5423. }
  5424. #u119940 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:0px;
  5430. height:0px;
  5431. }
  5432. #u119941_div {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:233px;
  5438. height:50px;
  5439. background:inherit;
  5440. background-color:rgba(224, 231, 247, 0);
  5441. border:none;
  5442. border-radius:0px;
  5443. -moz-box-shadow:none;
  5444. -webkit-box-shadow:none;
  5445. box-shadow:none;
  5446. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5447. font-style:normal;
  5448. }
  5449. #u119941 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:350px;
  5453. top:160px;
  5454. width:233px;
  5455. height:50px;
  5456. display:flex;
  5457. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5458. font-style:normal;
  5459. }
  5460. #u119941 .text {
  5461. position:absolute;
  5462. align-self:center;
  5463. padding:0px 0px 0px 0px;
  5464. box-sizing:border-box;
  5465. width:100%;
  5466. }
  5467. #u119941_text {
  5468. border-width:0px;
  5469. white-space:nowrap;
  5470. text-transform:none;
  5471. }
  5472. #u119942_img {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:15px;
  5478. height:15px;
  5479. }
  5480. #u119942 {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:581px;
  5484. top:178px;
  5485. width:15px;
  5486. height:15px;
  5487. display:flex;
  5488. }
  5489. #u119942 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:2px 2px 2px 2px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u119942_text {
  5497. border-width:0px;
  5498. word-wrap:break-word;
  5499. text-transform:none;
  5500. visibility:hidden;
  5501. }
  5502. #u119943 {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:0px;
  5508. height:0px;
  5509. }
  5510. #u119944_div {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:440px;
  5516. height:320px;
  5517. background:inherit;
  5518. background-color:rgba(255, 255, 255, 1);
  5519. border:none;
  5520. border-radius:4px;
  5521. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5522. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5523. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5524. font-family:'Microsoft YaHei', sans-serif;
  5525. font-weight:400;
  5526. font-style:normal;
  5527. }
  5528. #u119944 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:1381px;
  5532. top:682px;
  5533. width:440px;
  5534. height:320px;
  5535. display:flex;
  5536. font-family:'Microsoft YaHei', sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. }
  5540. #u119944 .text {
  5541. position:absolute;
  5542. align-self:center;
  5543. padding:2px 2px 2px 2px;
  5544. box-sizing:border-box;
  5545. width:100%;
  5546. }
  5547. #u119944_text {
  5548. border-width:0px;
  5549. word-wrap:break-word;
  5550. text-transform:none;
  5551. visibility:hidden;
  5552. }
  5553. #u119945_div {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:71px;
  5559. height:22px;
  5560. background:inherit;
  5561. background-color:rgba(255, 255, 255, 0);
  5562. border:none;
  5563. border-radius:0px;
  5564. -moz-box-shadow:none;
  5565. -webkit-box-shadow:none;
  5566. box-shadow:none;
  5567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:14px;
  5571. color:#666666;
  5572. line-height:22px;
  5573. }
  5574. #u119945 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:1408px;
  5578. top:753px;
  5579. width:71px;
  5580. height:22px;
  5581. display:flex;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:14px;
  5586. color:#666666;
  5587. line-height:22px;
  5588. }
  5589. #u119945 .text {
  5590. position:absolute;
  5591. align-self:flex-start;
  5592. padding:0px 0px 0px 0px;
  5593. box-sizing:border-box;
  5594. width:100%;
  5595. }
  5596. #u119945_text {
  5597. border-width:0px;
  5598. white-space:nowrap;
  5599. text-transform:none;
  5600. }
  5601. #u119946_div {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:73px;
  5607. height:21px;
  5608. background:inherit;
  5609. background-color:rgba(255, 255, 255, 0);
  5610. border:none;
  5611. border-radius:0px;
  5612. -moz-box-shadow:none;
  5613. -webkit-box-shadow:none;
  5614. box-shadow:none;
  5615. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5616. font-weight:650;
  5617. font-style:normal;
  5618. font-size:18px;
  5619. color:#000000;
  5620. line-height:22px;
  5621. }
  5622. #u119946 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:1408px;
  5626. top:707px;
  5627. width:73px;
  5628. height:21px;
  5629. display:flex;
  5630. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5631. font-weight:650;
  5632. font-style:normal;
  5633. font-size:18px;
  5634. color:#000000;
  5635. line-height:22px;
  5636. }
  5637. #u119946 .text {
  5638. position:absolute;
  5639. align-self:flex-start;
  5640. padding:0px 0px 0px 0px;
  5641. box-sizing:border-box;
  5642. width:100%;
  5643. }
  5644. #u119946_text {
  5645. border-width:0px;
  5646. white-space:nowrap;
  5647. text-transform:none;
  5648. }
  5649. #u119947_div {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:61px;
  5655. height:32px;
  5656. background:inherit;
  5657. background-color:rgba(24, 144, 255, 1);
  5658. border:none;
  5659. border-radius:4px;
  5660. -moz-box-shadow:none;
  5661. -webkit-box-shadow:none;
  5662. box-shadow:none;
  5663. font-family:'Microsoft YaHei', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:14px;
  5667. color:#FFFFFF;
  5668. }
  5669. #u119947 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:1740px;
  5673. top:949px;
  5674. width:61px;
  5675. height:32px;
  5676. display:flex;
  5677. font-family:'Microsoft YaHei', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:14px;
  5681. color:#FFFFFF;
  5682. }
  5683. #u119947 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 16px 2px 16px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u119947_text {
  5691. border-width:0px;
  5692. white-space:nowrap;
  5693. text-transform:none;
  5694. }
  5695. #u119948_div {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:66px;
  5701. height:32px;
  5702. background:inherit;
  5703. background-color:rgba(255, 255, 255, 1);
  5704. box-sizing:border-box;
  5705. border-width:1px;
  5706. border-style:solid;
  5707. border-color:rgba(217, 217, 217, 1);
  5708. border-radius:4px;
  5709. -moz-box-shadow:none;
  5710. -webkit-box-shadow:none;
  5711. box-shadow:none;
  5712. font-family:'Microsoft YaHei', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:14px;
  5716. color:rgba(0, 0, 0, 0.647058823529412);
  5717. line-height:21px;
  5718. }
  5719. #u119948 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:1658px;
  5723. top:949px;
  5724. width:66px;
  5725. height:32px;
  5726. display:flex;
  5727. font-family:'Microsoft YaHei', sans-serif;
  5728. font-weight:400;
  5729. font-style:normal;
  5730. font-size:14px;
  5731. color:rgba(0, 0, 0, 0.647058823529412);
  5732. line-height:21px;
  5733. }
  5734. #u119948 .text {
  5735. position:absolute;
  5736. align-self:center;
  5737. padding:2px 16px 2px 16px;
  5738. box-sizing:border-box;
  5739. width:100%;
  5740. }
  5741. #u119948_text {
  5742. border-width:0px;
  5743. white-space:nowrap;
  5744. text-transform:none;
  5745. }
  5746. #u119949_div {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:0px;
  5750. top:0px;
  5751. width:71px;
  5752. height:22px;
  5753. background:inherit;
  5754. background-color:rgba(255, 255, 255, 0);
  5755. border:none;
  5756. border-radius:0px;
  5757. -moz-box-shadow:none;
  5758. -webkit-box-shadow:none;
  5759. box-shadow:none;
  5760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5761. font-weight:400;
  5762. font-style:normal;
  5763. font-size:14px;
  5764. color:#666666;
  5765. line-height:22px;
  5766. }
  5767. #u119949 {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:1408px;
  5771. top:794px;
  5772. width:71px;
  5773. height:22px;
  5774. display:flex;
  5775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5776. font-weight:400;
  5777. font-style:normal;
  5778. font-size:14px;
  5779. color:#666666;
  5780. line-height:22px;
  5781. }
  5782. #u119949 .text {
  5783. position:absolute;
  5784. align-self:flex-start;
  5785. padding:0px 0px 0px 0px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u119949_text {
  5790. border-width:0px;
  5791. white-space:nowrap;
  5792. text-transform:none;
  5793. }
  5794. #u119950 label {
  5795. left:0px;
  5796. width:100%;
  5797. }
  5798. #u119950_img {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:4px;
  5803. width:12px;
  5804. height:12px;
  5805. }
  5806. #u119950 {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:1483px;
  5810. top:795px;
  5811. width:100px;
  5812. height:20px;
  5813. display:flex;
  5814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:14px;
  5818. }
  5819. #u119950 .text {
  5820. position:absolute;
  5821. align-self:center;
  5822. padding:0px 2px 0px 2px;
  5823. box-sizing:border-box;
  5824. }
  5825. #u119950_img.selected {
  5826. }
  5827. #u119950.selected {
  5828. }
  5829. #u119950_img.disabled {
  5830. }
  5831. #u119950.disabled {
  5832. }
  5833. #u119950_img.selectedDisabled {
  5834. }
  5835. #u119950.selectedDisabled {
  5836. }
  5837. #u119950_text {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:14px;
  5841. top:0px;
  5842. width:84px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. }
  5846. #u119950_input {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:0px;
  5852. height:0px;
  5853. opacity:0;
  5854. }
  5855. #u119951 label {
  5856. left:0px;
  5857. width:100%;
  5858. }
  5859. #u119951_img {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:0px;
  5863. top:4px;
  5864. width:12px;
  5865. height:12px;
  5866. }
  5867. #u119951 {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:1583px;
  5871. top:795px;
  5872. width:100px;
  5873. height:20px;
  5874. display:flex;
  5875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:14px;
  5879. }
  5880. #u119951 .text {
  5881. position:absolute;
  5882. align-self:center;
  5883. padding:0px 2px 0px 2px;
  5884. box-sizing:border-box;
  5885. }
  5886. #u119951_img.selected {
  5887. }
  5888. #u119951.selected {
  5889. }
  5890. #u119951_img.disabled {
  5891. }
  5892. #u119951.disabled {
  5893. }
  5894. #u119951_img.selectedDisabled {
  5895. }
  5896. #u119951.selectedDisabled {
  5897. }
  5898. #u119951_text {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:14px;
  5902. top:0px;
  5903. width:84px;
  5904. word-wrap:break-word;
  5905. text-transform:none;
  5906. }
  5907. #u119951_input {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:0px;
  5913. height:0px;
  5914. opacity:0;
  5915. }
  5916. #u119952_div {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:0px;
  5921. width:71px;
  5922. height:22px;
  5923. background:inherit;
  5924. background-color:rgba(255, 255, 255, 0);
  5925. border:none;
  5926. border-radius:0px;
  5927. -moz-box-shadow:none;
  5928. -webkit-box-shadow:none;
  5929. box-shadow:none;
  5930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5931. font-weight:400;
  5932. font-style:normal;
  5933. font-size:14px;
  5934. color:#666666;
  5935. line-height:22px;
  5936. }
  5937. #u119952 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:1408px;
  5941. top:835px;
  5942. width:71px;
  5943. height:22px;
  5944. display:flex;
  5945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:14px;
  5949. color:#666666;
  5950. line-height:22px;
  5951. }
  5952. #u119952 .text {
  5953. position:absolute;
  5954. align-self:flex-start;
  5955. padding:0px 0px 0px 0px;
  5956. box-sizing:border-box;
  5957. width:100%;
  5958. }
  5959. #u119952_text {
  5960. border-width:0px;
  5961. white-space:nowrap;
  5962. text-transform:none;
  5963. }
  5964. #u119953 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:0px;
  5970. height:0px;
  5971. }
  5972. #u119954_div {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:280px;
  5978. height:30px;
  5979. background:inherit;
  5980. background-color:rgba(255, 255, 255, 1);
  5981. box-sizing:border-box;
  5982. border-width:1px;
  5983. border-style:solid;
  5984. border-color:rgba(215, 215, 215, 1);
  5985. border-radius:4px;
  5986. -moz-box-shadow:none;
  5987. -webkit-box-shadow:none;
  5988. box-shadow:none;
  5989. font-size:14px;
  5990. }
  5991. #u119954 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:1483px;
  5995. top:831px;
  5996. width:280px;
  5997. height:30px;
  5998. display:flex;
  5999. font-size:14px;
  6000. }
  6001. #u119954 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:2px 2px 2px 2px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u119954_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. visibility:hidden;
  6013. }
  6014. #u119955_div {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:61px;
  6020. height:22px;
  6021. background:inherit;
  6022. background-color:rgba(255, 255, 255, 0);
  6023. border:none;
  6024. border-radius:0px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:14px;
  6032. color:#666666;
  6033. line-height:22px;
  6034. }
  6035. #u119955 {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:1483px;
  6039. top:754px;
  6040. width:61px;
  6041. height:22px;
  6042. display:flex;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:14px;
  6047. color:#666666;
  6048. line-height:22px;
  6049. }
  6050. #u119955 .text {
  6051. position:absolute;
  6052. align-self:flex-start;
  6053. padding:0px 0px 0px 0px;
  6054. box-sizing:border-box;
  6055. width:100%;
  6056. }
  6057. #u119955_text {
  6058. border-width:0px;
  6059. white-space:nowrap;
  6060. text-transform:none;
  6061. }
  6062. #u119956_div {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:71px;
  6068. height:22px;
  6069. background:inherit;
  6070. background-color:rgba(255, 255, 255, 0);
  6071. border:none;
  6072. border-radius:0px;
  6073. -moz-box-shadow:none;
  6074. -webkit-box-shadow:none;
  6075. box-shadow:none;
  6076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6077. font-weight:400;
  6078. font-style:normal;
  6079. font-size:14px;
  6080. color:#666666;
  6081. line-height:22px;
  6082. }
  6083. #u119956 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:1408px;
  6087. top:875px;
  6088. width:71px;
  6089. height:22px;
  6090. display:flex;
  6091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6092. font-weight:400;
  6093. font-style:normal;
  6094. font-size:14px;
  6095. color:#666666;
  6096. line-height:22px;
  6097. }
  6098. #u119956 .text {
  6099. position:absolute;
  6100. align-self:flex-start;
  6101. padding:0px 0px 0px 0px;
  6102. box-sizing:border-box;
  6103. width:100%;
  6104. }
  6105. #u119956_text {
  6106. border-width:0px;
  6107. white-space:nowrap;
  6108. text-transform:none;
  6109. }
  6110. #u119957 {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:0px;
  6116. height:0px;
  6117. }
  6118. #u119958_div {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:280px;
  6124. height:60px;
  6125. background:inherit;
  6126. background-color:rgba(255, 255, 255, 1);
  6127. box-sizing:border-box;
  6128. border-width:1px;
  6129. border-style:solid;
  6130. border-color:rgba(215, 215, 215, 1);
  6131. border-radius:4px;
  6132. -moz-box-shadow:none;
  6133. -webkit-box-shadow:none;
  6134. box-shadow:none;
  6135. font-size:14px;
  6136. }
  6137. #u119958 {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:1483px;
  6141. top:871px;
  6142. width:280px;
  6143. height:60px;
  6144. display:flex;
  6145. font-size:14px;
  6146. }
  6147. #u119958 .text {
  6148. position:absolute;
  6149. align-self:center;
  6150. padding:2px 2px 2px 2px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u119958_text {
  6155. border-width:0px;
  6156. word-wrap:break-word;
  6157. text-transform:none;
  6158. visibility:hidden;
  6159. }
  6160. #u119959 {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:0px;
  6166. height:0px;
  6167. }
  6168. #u119960_div {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:440px;
  6174. height:200px;
  6175. background:inherit;
  6176. background-color:rgba(255, 255, 255, 1);
  6177. border:none;
  6178. border-radius:4px;
  6179. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6180. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6181. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6182. font-family:'Microsoft YaHei', sans-serif;
  6183. font-weight:400;
  6184. font-style:normal;
  6185. }
  6186. #u119960 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:1381px;
  6190. top:459px;
  6191. width:440px;
  6192. height:200px;
  6193. display:flex;
  6194. font-family:'Microsoft YaHei', sans-serif;
  6195. font-weight:400;
  6196. font-style:normal;
  6197. }
  6198. #u119960 .text {
  6199. position:absolute;
  6200. align-self:center;
  6201. padding:2px 2px 2px 2px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u119960_text {
  6206. border-width:0px;
  6207. word-wrap:break-word;
  6208. text-transform:none;
  6209. visibility:hidden;
  6210. }
  6211. #u119961_div {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:0px;
  6215. top:0px;
  6216. width:71px;
  6217. height:22px;
  6218. background:inherit;
  6219. background-color:rgba(255, 255, 255, 0);
  6220. border:none;
  6221. border-radius:0px;
  6222. -moz-box-shadow:none;
  6223. -webkit-box-shadow:none;
  6224. box-shadow:none;
  6225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6226. font-weight:400;
  6227. font-style:normal;
  6228. font-size:14px;
  6229. color:#666666;
  6230. line-height:22px;
  6231. }
  6232. #u119961 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:1408px;
  6236. top:530px;
  6237. width:71px;
  6238. height:22px;
  6239. display:flex;
  6240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:14px;
  6244. color:#666666;
  6245. line-height:22px;
  6246. }
  6247. #u119961 .text {
  6248. position:absolute;
  6249. align-self:flex-start;
  6250. padding:0px 0px 0px 0px;
  6251. box-sizing:border-box;
  6252. width:100%;
  6253. }
  6254. #u119961_text {
  6255. border-width:0px;
  6256. white-space:nowrap;
  6257. text-transform:none;
  6258. }
  6259. #u119962_div {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:73px;
  6265. height:21px;
  6266. background:inherit;
  6267. background-color:rgba(255, 255, 255, 0);
  6268. border:none;
  6269. border-radius:0px;
  6270. -moz-box-shadow:none;
  6271. -webkit-box-shadow:none;
  6272. box-shadow:none;
  6273. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6274. font-weight:650;
  6275. font-style:normal;
  6276. font-size:18px;
  6277. color:#000000;
  6278. line-height:22px;
  6279. }
  6280. #u119962 {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:1408px;
  6284. top:484px;
  6285. width:73px;
  6286. height:21px;
  6287. display:flex;
  6288. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6289. font-weight:650;
  6290. font-style:normal;
  6291. font-size:18px;
  6292. color:#000000;
  6293. line-height:22px;
  6294. }
  6295. #u119962 .text {
  6296. position:absolute;
  6297. align-self:flex-start;
  6298. padding:0px 0px 0px 0px;
  6299. box-sizing:border-box;
  6300. width:100%;
  6301. }
  6302. #u119962_text {
  6303. border-width:0px;
  6304. white-space:nowrap;
  6305. text-transform:none;
  6306. }
  6307. #u119963_div {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:0px;
  6311. top:0px;
  6312. width:61px;
  6313. height:32px;
  6314. background:inherit;
  6315. background-color:rgba(24, 144, 255, 1);
  6316. border:none;
  6317. border-radius:4px;
  6318. -moz-box-shadow:none;
  6319. -webkit-box-shadow:none;
  6320. box-shadow:none;
  6321. font-family:'Microsoft YaHei', sans-serif;
  6322. font-weight:400;
  6323. font-style:normal;
  6324. font-size:14px;
  6325. color:#FFFFFF;
  6326. }
  6327. #u119963 {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:1740px;
  6331. top:609px;
  6332. width:61px;
  6333. height:32px;
  6334. display:flex;
  6335. font-family:'Microsoft YaHei', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:14px;
  6339. color:#FFFFFF;
  6340. }
  6341. #u119963 .text {
  6342. position:absolute;
  6343. align-self:center;
  6344. padding:2px 16px 2px 16px;
  6345. box-sizing:border-box;
  6346. width:100%;
  6347. }
  6348. #u119963_text {
  6349. border-width:0px;
  6350. white-space:nowrap;
  6351. text-transform:none;
  6352. }
  6353. #u119964_div {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:66px;
  6359. height:32px;
  6360. background:inherit;
  6361. background-color:rgba(255, 255, 255, 1);
  6362. box-sizing:border-box;
  6363. border-width:1px;
  6364. border-style:solid;
  6365. border-color:rgba(217, 217, 217, 1);
  6366. border-radius:4px;
  6367. -moz-box-shadow:none;
  6368. -webkit-box-shadow:none;
  6369. box-shadow:none;
  6370. font-family:'Microsoft YaHei', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:14px;
  6374. color:rgba(0, 0, 0, 0.647058823529412);
  6375. line-height:21px;
  6376. }
  6377. #u119964 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:1658px;
  6381. top:609px;
  6382. width:66px;
  6383. height:32px;
  6384. display:flex;
  6385. font-family:'Microsoft YaHei', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:14px;
  6389. color:rgba(0, 0, 0, 0.647058823529412);
  6390. line-height:21px;
  6391. }
  6392. #u119964 .text {
  6393. position:absolute;
  6394. align-self:center;
  6395. padding:2px 16px 2px 16px;
  6396. box-sizing:border-box;
  6397. width:100%;
  6398. }
  6399. #u119964_text {
  6400. border-width:0px;
  6401. white-space:nowrap;
  6402. text-transform:none;
  6403. }
  6404. #u119965_div {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:71px;
  6410. height:22px;
  6411. background:inherit;
  6412. background-color:rgba(255, 255, 255, 0);
  6413. border:none;
  6414. border-radius:0px;
  6415. -moz-box-shadow:none;
  6416. -webkit-box-shadow:none;
  6417. box-shadow:none;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:14px;
  6422. color:#666666;
  6423. line-height:22px;
  6424. }
  6425. #u119965 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:1408px;
  6429. top:571px;
  6430. width:71px;
  6431. height:22px;
  6432. display:flex;
  6433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:14px;
  6437. color:#666666;
  6438. line-height:22px;
  6439. }
  6440. #u119965 .text {
  6441. position:absolute;
  6442. align-self:flex-start;
  6443. padding:0px 0px 0px 0px;
  6444. box-sizing:border-box;
  6445. width:100%;
  6446. }
  6447. #u119965_text {
  6448. border-width:0px;
  6449. white-space:nowrap;
  6450. text-transform:none;
  6451. }
  6452. #u119966 label {
  6453. left:0px;
  6454. width:100%;
  6455. }
  6456. #u119966_img {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:4px;
  6461. width:12px;
  6462. height:12px;
  6463. }
  6464. #u119966 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:1483px;
  6468. top:572px;
  6469. width:100px;
  6470. height:20px;
  6471. display:flex;
  6472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6473. font-weight:400;
  6474. font-style:normal;
  6475. font-size:14px;
  6476. }
  6477. #u119966 .text {
  6478. position:absolute;
  6479. align-self:center;
  6480. padding:0px 2px 0px 2px;
  6481. box-sizing:border-box;
  6482. }
  6483. #u119966_img.selected {
  6484. }
  6485. #u119966.selected {
  6486. }
  6487. #u119966_img.disabled {
  6488. }
  6489. #u119966.disabled {
  6490. }
  6491. #u119966_img.selectedDisabled {
  6492. }
  6493. #u119966.selectedDisabled {
  6494. }
  6495. #u119966_text {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:14px;
  6499. top:0px;
  6500. width:84px;
  6501. word-wrap:break-word;
  6502. text-transform:none;
  6503. }
  6504. #u119966_input {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:0px;
  6510. height:0px;
  6511. opacity:0;
  6512. }
  6513. #u119967 label {
  6514. left:0px;
  6515. width:100%;
  6516. }
  6517. #u119967_img {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:0px;
  6521. top:4px;
  6522. width:12px;
  6523. height:12px;
  6524. }
  6525. #u119967 {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:1583px;
  6529. top:572px;
  6530. width:100px;
  6531. height:20px;
  6532. display:flex;
  6533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:14px;
  6537. }
  6538. #u119967 .text {
  6539. position:absolute;
  6540. align-self:center;
  6541. padding:0px 2px 0px 2px;
  6542. box-sizing:border-box;
  6543. }
  6544. #u119967_img.selected {
  6545. }
  6546. #u119967.selected {
  6547. }
  6548. #u119967_img.disabled {
  6549. }
  6550. #u119967.disabled {
  6551. }
  6552. #u119967_img.selectedDisabled {
  6553. }
  6554. #u119967.selectedDisabled {
  6555. }
  6556. #u119967_text {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:14px;
  6560. top:0px;
  6561. width:84px;
  6562. word-wrap:break-word;
  6563. text-transform:none;
  6564. }
  6565. #u119967_input {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:0px;
  6569. top:0px;
  6570. width:0px;
  6571. height:0px;
  6572. opacity:0;
  6573. }
  6574. #u119968_div {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:61px;
  6580. height:22px;
  6581. background:inherit;
  6582. background-color:rgba(255, 255, 255, 0);
  6583. border:none;
  6584. border-radius:0px;
  6585. -moz-box-shadow:none;
  6586. -webkit-box-shadow:none;
  6587. box-shadow:none;
  6588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:14px;
  6592. color:#666666;
  6593. line-height:22px;
  6594. }
  6595. #u119968 {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:1483px;
  6599. top:531px;
  6600. width:61px;
  6601. height:22px;
  6602. display:flex;
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:14px;
  6607. color:#666666;
  6608. line-height:22px;
  6609. }
  6610. #u119968 .text {
  6611. position:absolute;
  6612. align-self:flex-start;
  6613. padding:0px 0px 0px 0px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u119968_text {
  6618. border-width:0px;
  6619. white-space:nowrap;
  6620. text-transform:none;
  6621. }
  6622. #u119969 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:0px;
  6628. height:0px;
  6629. }
  6630. #u119970_div {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:200px;
  6636. height:1180px;
  6637. background:inherit;
  6638. background-color:rgba(255, 255, 255, 1);
  6639. border:none;
  6640. border-radius:0px;
  6641. -moz-box-shadow:none;
  6642. -webkit-box-shadow:none;
  6643. box-shadow:none;
  6644. }
  6645. #u119970 {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:120px;
  6649. top:50px;
  6650. width:200px;
  6651. height:1180px;
  6652. display:flex;
  6653. }
  6654. #u119970 .text {
  6655. position:absolute;
  6656. align-self:center;
  6657. padding:2px 2px 2px 2px;
  6658. box-sizing:border-box;
  6659. width:100%;
  6660. }
  6661. #u119970_text {
  6662. border-width:0px;
  6663. word-wrap:break-word;
  6664. text-transform:none;
  6665. visibility:hidden;
  6666. }
  6667. #u119971_div {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:200px;
  6673. height:60px;
  6674. background:inherit;
  6675. background-color:rgba(224, 231, 247, 1);
  6676. border:none;
  6677. border-radius:0px;
  6678. -moz-box-shadow:none;
  6679. -webkit-box-shadow:none;
  6680. box-shadow:none;
  6681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6682. font-weight:500;
  6683. font-style:normal;
  6684. font-size:18px;
  6685. }
  6686. #u119971 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:120px;
  6690. top:50px;
  6691. width:200px;
  6692. height:60px;
  6693. display:flex;
  6694. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6695. font-weight:500;
  6696. font-style:normal;
  6697. font-size:18px;
  6698. }
  6699. #u119971 .text {
  6700. position:absolute;
  6701. align-self:center;
  6702. padding:0px 0px 0px 20px;
  6703. box-sizing:border-box;
  6704. width:100%;
  6705. }
  6706. #u119971_text {
  6707. border-width:0px;
  6708. word-wrap:break-word;
  6709. text-transform:none;
  6710. }
  6711. #u119972_div {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:65px;
  6717. height:22px;
  6718. background:inherit;
  6719. background-color:rgba(255, 255, 255, 0);
  6720. border:none;
  6721. border-radius:0px;
  6722. -moz-box-shadow:none;
  6723. -webkit-box-shadow:none;
  6724. box-shadow:none;
  6725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6726. font-weight:400;
  6727. font-style:normal;
  6728. font-size:16px;
  6729. }
  6730. #u119972 {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:146px;
  6734. top:167px;
  6735. width:65px;
  6736. height:22px;
  6737. display:flex;
  6738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6739. font-weight:400;
  6740. font-style:normal;
  6741. font-size:16px;
  6742. }
  6743. #u119972 .text {
  6744. position:absolute;
  6745. align-self:flex-start;
  6746. padding:0px 0px 0px 0px;
  6747. box-sizing:border-box;
  6748. width:100%;
  6749. }
  6750. #u119972_text {
  6751. border-width:0px;
  6752. white-space:nowrap;
  6753. text-transform:none;
  6754. }
  6755. #u119973_div {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:65px;
  6761. height:22px;
  6762. background:inherit;
  6763. background-color:rgba(255, 255, 255, 0);
  6764. border:none;
  6765. border-radius:0px;
  6766. -moz-box-shadow:none;
  6767. -webkit-box-shadow:none;
  6768. box-shadow:none;
  6769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6770. font-weight:400;
  6771. font-style:normal;
  6772. font-size:16px;
  6773. }
  6774. #u119973 {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:146px;
  6778. top:209px;
  6779. width:65px;
  6780. height:22px;
  6781. display:flex;
  6782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:16px;
  6786. }
  6787. #u119973 .text {
  6788. position:absolute;
  6789. align-self:flex-start;
  6790. padding:0px 0px 0px 0px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u119973_text {
  6795. border-width:0px;
  6796. white-space:nowrap;
  6797. text-transform:none;
  6798. }
  6799. #u119974_div {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:49px;
  6805. height:17px;
  6806. background:inherit;
  6807. background-color:rgba(255, 255, 255, 0);
  6808. border:none;
  6809. border-radius:0px;
  6810. -moz-box-shadow:none;
  6811. -webkit-box-shadow:none;
  6812. box-shadow:none;
  6813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6814. font-weight:400;
  6815. font-style:normal;
  6816. font-size:12px;
  6817. color:#AAAAAA;
  6818. }
  6819. #u119974 {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:146px;
  6823. top:130px;
  6824. width:49px;
  6825. height:17px;
  6826. display:flex;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:12px;
  6831. color:#AAAAAA;
  6832. }
  6833. #u119974 .text {
  6834. position:absolute;
  6835. align-self:flex-start;
  6836. padding:0px 0px 0px 0px;
  6837. box-sizing:border-box;
  6838. width:100%;
  6839. }
  6840. #u119974_text {
  6841. border-width:0px;
  6842. white-space:nowrap;
  6843. text-transform:none;
  6844. }
  6845. #u119975_div {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:49px;
  6851. height:17px;
  6852. background:inherit;
  6853. background-color:rgba(255, 255, 255, 0);
  6854. border:none;
  6855. border-radius:0px;
  6856. -moz-box-shadow:none;
  6857. -webkit-box-shadow:none;
  6858. box-shadow:none;
  6859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6860. font-weight:400;
  6861. font-style:normal;
  6862. font-size:12px;
  6863. color:#AAAAAA;
  6864. }
  6865. #u119975 {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:146px;
  6869. top:585px;
  6870. width:49px;
  6871. height:17px;
  6872. display:flex;
  6873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6874. font-weight:400;
  6875. font-style:normal;
  6876. font-size:12px;
  6877. color:#AAAAAA;
  6878. }
  6879. #u119975 .text {
  6880. position:absolute;
  6881. align-self:flex-start;
  6882. padding:0px 0px 0px 0px;
  6883. box-sizing:border-box;
  6884. width:100%;
  6885. }
  6886. #u119975_text {
  6887. border-width:0px;
  6888. white-space:nowrap;
  6889. text-transform:none;
  6890. }
  6891. #u119976_img {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:201px;
  6897. height:2px;
  6898. }
  6899. #u119976 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:120px;
  6903. top:563px;
  6904. width:200px;
  6905. height:1px;
  6906. display:flex;
  6907. }
  6908. #u119976 .text {
  6909. position:absolute;
  6910. align-self:center;
  6911. padding:2px 2px 2px 2px;
  6912. box-sizing:border-box;
  6913. width:100%;
  6914. }
  6915. #u119976_text {
  6916. border-width:0px;
  6917. word-wrap:break-word;
  6918. text-transform:none;
  6919. visibility:hidden;
  6920. }
  6921. #u119977_div {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:0px;
  6925. top:0px;
  6926. width:65px;
  6927. height:22px;
  6928. background:inherit;
  6929. background-color:rgba(255, 255, 255, 0);
  6930. border:none;
  6931. border-radius:0px;
  6932. -moz-box-shadow:none;
  6933. -webkit-box-shadow:none;
  6934. box-shadow:none;
  6935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6936. font-weight:400;
  6937. font-style:normal;
  6938. font-size:16px;
  6939. }
  6940. #u119977 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:146px;
  6944. top:623px;
  6945. width:65px;
  6946. height:22px;
  6947. display:flex;
  6948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6949. font-weight:400;
  6950. font-style:normal;
  6951. font-size:16px;
  6952. }
  6953. #u119977 .text {
  6954. position:absolute;
  6955. align-self:flex-start;
  6956. padding:0px 0px 0px 0px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u119977_text {
  6961. border-width:0px;
  6962. white-space:nowrap;
  6963. text-transform:none;
  6964. }
  6965. #u119978_div {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:97px;
  6971. height:22px;
  6972. background:inherit;
  6973. background-color:rgba(255, 255, 255, 0);
  6974. border:none;
  6975. border-radius:0px;
  6976. -moz-box-shadow:none;
  6977. -webkit-box-shadow:none;
  6978. box-shadow:none;
  6979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:16px;
  6983. }
  6984. #u119978 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:146px;
  6988. top:665px;
  6989. width:97px;
  6990. height:22px;
  6991. display:flex;
  6992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6993. font-weight:400;
  6994. font-style:normal;
  6995. font-size:16px;
  6996. }
  6997. #u119978 .text {
  6998. position:absolute;
  6999. align-self:flex-start;
  7000. padding:0px 0px 0px 0px;
  7001. box-sizing:border-box;
  7002. width:100%;
  7003. }
  7004. #u119978_text {
  7005. border-width:0px;
  7006. white-space:nowrap;
  7007. text-transform:none;
  7008. }
  7009. #u119979_div {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:0px;
  7013. top:0px;
  7014. width:97px;
  7015. height:22px;
  7016. background:inherit;
  7017. background-color:rgba(255, 255, 255, 0);
  7018. border:none;
  7019. border-radius:0px;
  7020. -moz-box-shadow:none;
  7021. -webkit-box-shadow:none;
  7022. box-shadow:none;
  7023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7024. font-weight:400;
  7025. font-style:normal;
  7026. font-size:16px;
  7027. }
  7028. #u119979 {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:146px;
  7032. top:707px;
  7033. width:97px;
  7034. height:22px;
  7035. display:flex;
  7036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7037. font-weight:400;
  7038. font-style:normal;
  7039. font-size:16px;
  7040. }
  7041. #u119979 .text {
  7042. position:absolute;
  7043. align-self:flex-start;
  7044. padding:0px 0px 0px 0px;
  7045. box-sizing:border-box;
  7046. width:100%;
  7047. }
  7048. #u119979_text {
  7049. border-width:0px;
  7050. white-space:nowrap;
  7051. text-transform:none;
  7052. }
  7053. #u119980_div {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:97px;
  7059. height:22px;
  7060. background:inherit;
  7061. background-color:rgba(255, 255, 255, 0);
  7062. border:none;
  7063. border-radius:0px;
  7064. -moz-box-shadow:none;
  7065. -webkit-box-shadow:none;
  7066. box-shadow:none;
  7067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:16px;
  7071. }
  7072. #u119980 {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:146px;
  7076. top:749px;
  7077. width:97px;
  7078. height:22px;
  7079. display:flex;
  7080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7081. font-weight:400;
  7082. font-style:normal;
  7083. font-size:16px;
  7084. }
  7085. #u119980 .text {
  7086. position:absolute;
  7087. align-self:flex-start;
  7088. padding:0px 0px 0px 0px;
  7089. box-sizing:border-box;
  7090. width:100%;
  7091. }
  7092. #u119980_text {
  7093. border-width:0px;
  7094. white-space:nowrap;
  7095. text-transform:none;
  7096. }
  7097. #u119981_div {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:97px;
  7103. height:22px;
  7104. background:inherit;
  7105. background-color:rgba(255, 255, 255, 0);
  7106. border:none;
  7107. border-radius:0px;
  7108. -moz-box-shadow:none;
  7109. -webkit-box-shadow:none;
  7110. box-shadow:none;
  7111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7112. font-weight:400;
  7113. font-style:normal;
  7114. font-size:16px;
  7115. }
  7116. #u119981 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:146px;
  7120. top:791px;
  7121. width:97px;
  7122. height:22px;
  7123. display:flex;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:16px;
  7128. }
  7129. #u119981 .text {
  7130. position:absolute;
  7131. align-self:flex-start;
  7132. padding:0px 0px 0px 0px;
  7133. box-sizing:border-box;
  7134. width:100%;
  7135. }
  7136. #u119981_text {
  7137. border-width:0px;
  7138. white-space:nowrap;
  7139. text-transform:none;
  7140. }
  7141. #u119982_div {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:49px;
  7147. height:17px;
  7148. background:inherit;
  7149. background-color:rgba(255, 255, 255, 0);
  7150. border:none;
  7151. border-radius:0px;
  7152. -moz-box-shadow:none;
  7153. -webkit-box-shadow:none;
  7154. box-shadow:none;
  7155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7156. font-weight:400;
  7157. font-style:normal;
  7158. font-size:12px;
  7159. color:#AAAAAA;
  7160. }
  7161. #u119982 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:146px;
  7165. top:858px;
  7166. width:49px;
  7167. height:17px;
  7168. display:flex;
  7169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:12px;
  7173. color:#AAAAAA;
  7174. }
  7175. #u119982 .text {
  7176. position:absolute;
  7177. align-self:flex-start;
  7178. padding:0px 0px 0px 0px;
  7179. box-sizing:border-box;
  7180. width:100%;
  7181. }
  7182. #u119982_text {
  7183. border-width:0px;
  7184. white-space:nowrap;
  7185. text-transform:none;
  7186. }
  7187. #u119983_img {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:201px;
  7193. height:2px;
  7194. }
  7195. #u119983 {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:120px;
  7199. top:836px;
  7200. width:200px;
  7201. height:1px;
  7202. display:flex;
  7203. }
  7204. #u119983 .text {
  7205. position:absolute;
  7206. align-self:center;
  7207. padding:2px 2px 2px 2px;
  7208. box-sizing:border-box;
  7209. width:100%;
  7210. }
  7211. #u119983_text {
  7212. border-width:0px;
  7213. word-wrap:break-word;
  7214. text-transform:none;
  7215. visibility:hidden;
  7216. }
  7217. #u119984_div {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:97px;
  7223. height:22px;
  7224. background:inherit;
  7225. background-color:rgba(255, 255, 255, 0);
  7226. border:none;
  7227. border-radius:0px;
  7228. -moz-box-shadow:none;
  7229. -webkit-box-shadow:none;
  7230. box-shadow:none;
  7231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:16px;
  7235. }
  7236. #u119984 {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:146px;
  7240. top:896px;
  7241. width:97px;
  7242. height:22px;
  7243. display:flex;
  7244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7245. font-weight:400;
  7246. font-style:normal;
  7247. font-size:16px;
  7248. }
  7249. #u119984 .text {
  7250. position:absolute;
  7251. align-self:flex-start;
  7252. padding:0px 0px 0px 0px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u119984_text {
  7257. border-width:0px;
  7258. white-space:nowrap;
  7259. text-transform:none;
  7260. }
  7261. #u119985_div {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:97px;
  7267. height:22px;
  7268. background:inherit;
  7269. background-color:rgba(255, 255, 255, 0);
  7270. border:none;
  7271. border-radius:0px;
  7272. -moz-box-shadow:none;
  7273. -webkit-box-shadow:none;
  7274. box-shadow:none;
  7275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7276. font-weight:400;
  7277. font-style:normal;
  7278. font-size:16px;
  7279. }
  7280. #u119985 {
  7281. border-width:0px;
  7282. position:absolute;
  7283. left:146px;
  7284. top:938px;
  7285. width:97px;
  7286. height:22px;
  7287. display:flex;
  7288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:16px;
  7292. }
  7293. #u119985 .text {
  7294. position:absolute;
  7295. align-self:flex-start;
  7296. padding:0px 0px 0px 0px;
  7297. box-sizing:border-box;
  7298. width:100%;
  7299. }
  7300. #u119985_text {
  7301. border-width:0px;
  7302. white-space:nowrap;
  7303. text-transform:none;
  7304. }
  7305. #u119986_div {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:0px;
  7309. top:0px;
  7310. width:65px;
  7311. height:22px;
  7312. background:inherit;
  7313. background-color:rgba(255, 255, 255, 0);
  7314. border:none;
  7315. border-radius:0px;
  7316. -moz-box-shadow:none;
  7317. -webkit-box-shadow:none;
  7318. box-shadow:none;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:16px;
  7323. }
  7324. #u119986 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:146px;
  7328. top:437px;
  7329. width:65px;
  7330. height:22px;
  7331. display:flex;
  7332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7333. font-weight:400;
  7334. font-style:normal;
  7335. font-size:16px;
  7336. }
  7337. #u119986 .text {
  7338. position:absolute;
  7339. align-self:flex-start;
  7340. padding:0px 0px 0px 0px;
  7341. box-sizing:border-box;
  7342. width:100%;
  7343. }
  7344. #u119986_text {
  7345. border-width:0px;
  7346. white-space:nowrap;
  7347. text-transform:none;
  7348. }
  7349. #u119987_div {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:49px;
  7355. height:17px;
  7356. background:inherit;
  7357. background-color:rgba(255, 255, 255, 0);
  7358. border:none;
  7359. border-radius:0px;
  7360. -moz-box-shadow:none;
  7361. -webkit-box-shadow:none;
  7362. box-shadow:none;
  7363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:12px;
  7367. color:#AAAAAA;
  7368. }
  7369. #u119987 {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:146px;
  7373. top:400px;
  7374. width:49px;
  7375. height:17px;
  7376. display:flex;
  7377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:12px;
  7381. color:#AAAAAA;
  7382. }
  7383. #u119987 .text {
  7384. position:absolute;
  7385. align-self:flex-start;
  7386. padding:0px 0px 0px 0px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u119987_text {
  7391. border-width:0px;
  7392. white-space:nowrap;
  7393. text-transform:none;
  7394. }
  7395. #u119988_img {
  7396. border-width:0px;
  7397. position:absolute;
  7398. left:0px;
  7399. top:0px;
  7400. width:201px;
  7401. height:2px;
  7402. }
  7403. #u119988 {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:120px;
  7407. top:380px;
  7408. width:200px;
  7409. height:1px;
  7410. display:flex;
  7411. }
  7412. #u119988 .text {
  7413. position:absolute;
  7414. align-self:center;
  7415. padding:2px 2px 2px 2px;
  7416. box-sizing:border-box;
  7417. width:100%;
  7418. }
  7419. #u119988_text {
  7420. border-width:0px;
  7421. word-wrap:break-word;
  7422. text-transform:none;
  7423. visibility:hidden;
  7424. }
  7425. #u119989_div {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:65px;
  7431. height:22px;
  7432. background:inherit;
  7433. background-color:rgba(255, 255, 255, 0);
  7434. border:none;
  7435. border-radius:0px;
  7436. -moz-box-shadow:none;
  7437. -webkit-box-shadow:none;
  7438. box-shadow:none;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:16px;
  7443. }
  7444. #u119989 {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:146px;
  7448. top:479px;
  7449. width:65px;
  7450. height:22px;
  7451. display:flex;
  7452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:16px;
  7456. }
  7457. #u119989 .text {
  7458. position:absolute;
  7459. align-self:flex-start;
  7460. padding:0px 0px 0px 0px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u119989_text {
  7465. border-width:0px;
  7466. white-space:nowrap;
  7467. text-transform:none;
  7468. }
  7469. #u119990_div {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:65px;
  7475. height:22px;
  7476. background:inherit;
  7477. background-color:rgba(255, 255, 255, 0);
  7478. border:none;
  7479. border-radius:0px;
  7480. -moz-box-shadow:none;
  7481. -webkit-box-shadow:none;
  7482. box-shadow:none;
  7483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7484. font-weight:400;
  7485. font-style:normal;
  7486. font-size:16px;
  7487. }
  7488. #u119990 {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:146px;
  7492. top:521px;
  7493. width:65px;
  7494. height:22px;
  7495. display:flex;
  7496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:16px;
  7500. }
  7501. #u119990 .text {
  7502. position:absolute;
  7503. align-self:flex-start;
  7504. padding:0px 0px 0px 0px;
  7505. box-sizing:border-box;
  7506. width:100%;
  7507. }
  7508. #u119990_text {
  7509. border-width:0px;
  7510. white-space:nowrap;
  7511. text-transform:none;
  7512. }
  7513. #u119991_div {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:0px;
  7517. top:0px;
  7518. width:65px;
  7519. height:22px;
  7520. background:inherit;
  7521. background-color:rgba(255, 255, 255, 0);
  7522. border:none;
  7523. border-radius:0px;
  7524. -moz-box-shadow:none;
  7525. -webkit-box-shadow:none;
  7526. box-shadow:none;
  7527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7528. font-weight:400;
  7529. font-style:normal;
  7530. font-size:16px;
  7531. }
  7532. #u119991 {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:146px;
  7536. top:334px;
  7537. width:65px;
  7538. height:22px;
  7539. display:flex;
  7540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:16px;
  7544. }
  7545. #u119991 .text {
  7546. position:absolute;
  7547. align-self:flex-start;
  7548. padding:0px 0px 0px 0px;
  7549. box-sizing:border-box;
  7550. width:100%;
  7551. }
  7552. #u119991_text {
  7553. border-width:0px;
  7554. white-space:nowrap;
  7555. text-transform:none;
  7556. }
  7557. #u119992_div {
  7558. border-width:0px;
  7559. position:absolute;
  7560. left:0px;
  7561. top:0px;
  7562. width:65px;
  7563. height:22px;
  7564. background:inherit;
  7565. background-color:rgba(255, 255, 255, 0);
  7566. border:none;
  7567. border-radius:0px;
  7568. -moz-box-shadow:none;
  7569. -webkit-box-shadow:none;
  7570. box-shadow:none;
  7571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7572. font-weight:400;
  7573. font-style:normal;
  7574. font-size:16px;
  7575. }
  7576. #u119992 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:146px;
  7580. top:251px;
  7581. width:65px;
  7582. height:22px;
  7583. display:flex;
  7584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:16px;
  7588. }
  7589. #u119992 .text {
  7590. position:absolute;
  7591. align-self:flex-start;
  7592. padding:0px 0px 0px 0px;
  7593. box-sizing:border-box;
  7594. width:100%;
  7595. }
  7596. #u119992_text {
  7597. border-width:0px;
  7598. white-space:nowrap;
  7599. text-transform:none;
  7600. }
  7601. #u119993_div {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:65px;
  7607. height:22px;
  7608. background:inherit;
  7609. background-color:rgba(255, 255, 255, 0);
  7610. border:none;
  7611. border-radius:0px;
  7612. -moz-box-shadow:none;
  7613. -webkit-box-shadow:none;
  7614. box-shadow:none;
  7615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7616. font-weight:400;
  7617. font-style:normal;
  7618. font-size:16px;
  7619. }
  7620. #u119993 {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:146px;
  7624. top:293px;
  7625. width:65px;
  7626. height:22px;
  7627. display:flex;
  7628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7629. font-weight:400;
  7630. font-style:normal;
  7631. font-size:16px;
  7632. }
  7633. #u119993 .text {
  7634. position:absolute;
  7635. align-self:flex-start;
  7636. padding:0px 0px 0px 0px;
  7637. box-sizing:border-box;
  7638. width:100%;
  7639. }
  7640. #u119993_text {
  7641. border-width:0px;
  7642. white-space:nowrap;
  7643. text-transform:none;
  7644. }