styles.css 118 KB

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