styles.css 242 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3279px;
  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. #u126990_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. #u126990 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u126990 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u126990_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u126991_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. #u126991 {
  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. #u126991 .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. #u126991_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u126992_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. #u126992 {
  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. #u126992 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u126992_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u126993 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u126994_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u126994 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u126994 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u126994_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u126995_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. #u126995 {
  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. #u126995 .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. #u126995_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u126996_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. #u126996 {
  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. #u126996 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u126996_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u126997 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u126998_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u126998 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u126998 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u126998_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u126999_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u126999 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u126999 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u126999_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u127000 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u127001_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u127001 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u127001 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u127001_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u127002_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u127002 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u127002 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u127002_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u127003 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u127004_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u127004 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u127004 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u127004_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u127005_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u127005 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u127005 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u127005_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u127006 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u127007_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u127007 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u127007 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u127007_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u127008_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u127008 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u127008 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u127008_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u127009 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u127010_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u127010 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u127010 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u127010_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u127011_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u127011 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u127011 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u127011_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u127012 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u127013_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u127013 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u127013 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u127013_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u127014_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u127014 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u127014 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u127014_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u127015 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u127016_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u127016 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u127016 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u127016_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u127017_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u127017 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u127017 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u127017_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u127018 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u127019_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u127019 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u127019 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u127019_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u127020_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u127020 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u127020 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u127020_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u127021 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u127022_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u127022 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u127022 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u127022_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u127023_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u127023 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u127023 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u127023_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u127024_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u127024 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u127024 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u127024_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u127025_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u127025 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u127025 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u127025_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u127026_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u127026 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u127026 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u127026_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u127027_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u127027 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u127027 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u127027_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u127028 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u127029_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u127029 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u127029 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u127029_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u127030_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u127030 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u127030 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u127030_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u127031 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u127032_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u127032 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u127032 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u127032_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u127033_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u127033 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u127033 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u127033_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u127034 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u127035_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u127035_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u127035_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u127035 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u127035 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u127035_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u127035.disabled {
  1428. }
  1429. .u127035_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u127036_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u127036 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u127036 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u127036_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u127037_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u127037 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u127037 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u127037_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u127038_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u127038 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u127038 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u127038_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u127039_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u127039 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u127039 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u127039_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u127040_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:109px;
  1581. height:50px;
  1582. background:inherit;
  1583. background-color:rgba(224, 231, 247, 0);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1590. font-weight:500;
  1591. font-style:normal;
  1592. font-size:18px;
  1593. }
  1594. #u127040 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:350px;
  1598. top:50px;
  1599. width:109px;
  1600. height:50px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1603. font-weight:500;
  1604. font-style:normal;
  1605. font-size:18px;
  1606. }
  1607. #u127040 .text {
  1608. position:absolute;
  1609. align-self:center;
  1610. padding:0px 0px 0px 0px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u127040_text {
  1615. border-width:0px;
  1616. white-space:nowrap;
  1617. text-transform:none;
  1618. }
  1619. #u127041 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:351px;
  1623. top:210px;
  1624. width:1216px;
  1625. height:220px;
  1626. }
  1627. #u127042_img {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:40px;
  1633. height:38px;
  1634. }
  1635. #u127042 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:40px;
  1641. height:38px;
  1642. display:flex;
  1643. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. font-size:12px;
  1647. color:#FFFFFF;
  1648. }
  1649. #u127042 .text {
  1650. position:absolute;
  1651. align-self:center;
  1652. padding:2px 2px 2px 0px;
  1653. box-sizing:border-box;
  1654. width:100%;
  1655. }
  1656. #u127042_text {
  1657. border-width:0px;
  1658. word-wrap:break-word;
  1659. text-transform:none;
  1660. }
  1661. #u127043_img {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:160px;
  1667. height:38px;
  1668. }
  1669. #u127043 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:40px;
  1673. top:0px;
  1674. width:160px;
  1675. height:38px;
  1676. display:flex;
  1677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1678. font-weight:400;
  1679. font-style:normal;
  1680. font-size:12px;
  1681. color:#FFFFFF;
  1682. }
  1683. #u127043 .text {
  1684. position:absolute;
  1685. align-self:center;
  1686. padding:2px 2px 2px 0px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u127043_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. }
  1695. #u127044_img {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:152px;
  1701. height:38px;
  1702. }
  1703. #u127044 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:200px;
  1707. top:0px;
  1708. width:152px;
  1709. height:38px;
  1710. display:flex;
  1711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:12px;
  1715. color:#FFFFFF;
  1716. }
  1717. #u127044 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 2px 2px 0px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u127044_text {
  1725. border-width:0px;
  1726. word-wrap:break-word;
  1727. text-transform:none;
  1728. }
  1729. #u127045_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:135px;
  1735. height:38px;
  1736. }
  1737. #u127045 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:352px;
  1741. top:0px;
  1742. width:135px;
  1743. height:38px;
  1744. display:flex;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:12px;
  1749. color:#FFFFFF;
  1750. }
  1751. #u127045 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u127045_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u127046_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:135px;
  1769. height:38px;
  1770. }
  1771. #u127046 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:487px;
  1775. top:0px;
  1776. width:135px;
  1777. height:38px;
  1778. display:flex;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:12px;
  1783. color:#FFFFFF;
  1784. }
  1785. #u127046 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 0px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u127046_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. }
  1797. #u127047_img {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:152px;
  1803. height:38px;
  1804. }
  1805. #u127047 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:622px;
  1809. top:0px;
  1810. width:152px;
  1811. height:38px;
  1812. display:flex;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:12px;
  1817. color:#FFFFFF;
  1818. }
  1819. #u127047 .text {
  1820. position:absolute;
  1821. align-self:center;
  1822. padding:2px 2px 2px 0px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u127047_text {
  1827. border-width:0px;
  1828. word-wrap:break-word;
  1829. text-transform:none;
  1830. }
  1831. #u127048_img {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:160px;
  1837. height:38px;
  1838. }
  1839. #u127048 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:774px;
  1843. top:0px;
  1844. width:160px;
  1845. height:38px;
  1846. display:flex;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:12px;
  1851. color:#FFFFFF;
  1852. }
  1853. #u127048 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:2px 2px 2px 0px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u127048_text {
  1861. border-width:0px;
  1862. word-wrap:break-word;
  1863. text-transform:none;
  1864. }
  1865. #u127049_img {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:160px;
  1871. height:38px;
  1872. }
  1873. #u127049 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:934px;
  1877. top:0px;
  1878. width:160px;
  1879. height:38px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:12px;
  1885. color:#FFFFFF;
  1886. }
  1887. #u127049 .text {
  1888. position:absolute;
  1889. align-self:center;
  1890. padding:2px 2px 2px 0px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u127049_text {
  1895. border-width:0px;
  1896. word-wrap:break-word;
  1897. text-transform:none;
  1898. }
  1899. #u127050_img {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:121px;
  1905. height:38px;
  1906. }
  1907. #u127050 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:1094px;
  1911. top:0px;
  1912. width:121px;
  1913. height:38px;
  1914. display:flex;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:12px;
  1919. color:#FFFFFF;
  1920. }
  1921. #u127050 .text {
  1922. position:absolute;
  1923. align-self:center;
  1924. padding:2px 2px 2px 0px;
  1925. box-sizing:border-box;
  1926. width:100%;
  1927. }
  1928. #u127050_text {
  1929. border-width:0px;
  1930. word-wrap:break-word;
  1931. text-transform:none;
  1932. }
  1933. #u127051_img {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:40px;
  1939. height:39px;
  1940. }
  1941. #u127051 {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:38px;
  1946. width:40px;
  1947. height:39px;
  1948. display:flex;
  1949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1950. font-weight:400;
  1951. font-style:normal;
  1952. font-size:12px;
  1953. }
  1954. #u127051 .text {
  1955. position:absolute;
  1956. align-self:center;
  1957. padding:2px 2px 2px 0px;
  1958. box-sizing:border-box;
  1959. width:100%;
  1960. }
  1961. #u127051_text {
  1962. border-width:0px;
  1963. word-wrap:break-word;
  1964. text-transform:none;
  1965. }
  1966. #u127052_img {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:160px;
  1972. height:39px;
  1973. }
  1974. #u127052 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:40px;
  1978. top:38px;
  1979. width:160px;
  1980. height:39px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:12px;
  1986. color:#AAAAAA;
  1987. }
  1988. #u127052 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 0px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u127052_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. visibility:hidden;
  2000. }
  2001. #u127053_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:152px;
  2007. height:39px;
  2008. }
  2009. #u127053 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:200px;
  2013. top:38px;
  2014. width:152px;
  2015. height:39px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:12px;
  2021. color:#AAAAAA;
  2022. }
  2023. #u127053 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u127053_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. visibility:hidden;
  2035. }
  2036. #u127054_img {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:0px;
  2040. top:0px;
  2041. width:135px;
  2042. height:39px;
  2043. }
  2044. #u127054 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:352px;
  2048. top:38px;
  2049. width:135px;
  2050. height:39px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:12px;
  2056. color:#AAAAAA;
  2057. }
  2058. #u127054 .text {
  2059. position:absolute;
  2060. align-self:center;
  2061. padding:2px 2px 2px 0px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u127054_text {
  2066. border-width:0px;
  2067. word-wrap:break-word;
  2068. text-transform:none;
  2069. visibility:hidden;
  2070. }
  2071. #u127055_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:135px;
  2077. height:39px;
  2078. }
  2079. #u127055 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:487px;
  2083. top:38px;
  2084. width:135px;
  2085. height:39px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:12px;
  2091. color:#333333;
  2092. }
  2093. #u127055 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u127055_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. }
  2105. #u127056_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:152px;
  2111. height:39px;
  2112. }
  2113. #u127056 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:622px;
  2117. top:38px;
  2118. width:152px;
  2119. height:39px;
  2120. display:flex;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:12px;
  2125. }
  2126. #u127056 .text {
  2127. position:absolute;
  2128. align-self:center;
  2129. padding:2px 2px 2px 0px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u127056_text {
  2134. border-width:0px;
  2135. word-wrap:break-word;
  2136. text-transform:none;
  2137. }
  2138. #u127057_img {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:160px;
  2144. height:39px;
  2145. }
  2146. #u127057 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:774px;
  2150. top:38px;
  2151. width:160px;
  2152. height:39px;
  2153. display:flex;
  2154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2155. font-weight:400;
  2156. font-style:normal;
  2157. font-size:12px;
  2158. }
  2159. #u127057 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 2px 2px 0px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u127057_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. }
  2171. #u127058_img {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:160px;
  2177. height:39px;
  2178. }
  2179. #u127058 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:934px;
  2183. top:38px;
  2184. width:160px;
  2185. height:39px;
  2186. display:flex;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:12px;
  2191. }
  2192. #u127058 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:2px 2px 2px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u127058_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. }
  2204. #u127059_img {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:121px;
  2210. height:39px;
  2211. }
  2212. #u127059 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:1094px;
  2216. top:38px;
  2217. width:121px;
  2218. height:39px;
  2219. display:flex;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:12px;
  2224. color:#298FFF;
  2225. }
  2226. #u127059 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 2px 2px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u127059_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. }
  2238. #u127060_img {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:40px;
  2244. height:38px;
  2245. }
  2246. #u127060 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:77px;
  2251. width:40px;
  2252. height:38px;
  2253. display:flex;
  2254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:12px;
  2258. color:#606266;
  2259. }
  2260. #u127060 .text {
  2261. position:absolute;
  2262. align-self:center;
  2263. padding:2px 2px 2px 0px;
  2264. box-sizing:border-box;
  2265. width:100%;
  2266. }
  2267. #u127060_text {
  2268. border-width:0px;
  2269. word-wrap:break-word;
  2270. text-transform:none;
  2271. }
  2272. #u127061_img {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:160px;
  2278. height:38px;
  2279. }
  2280. #u127061 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:40px;
  2284. top:77px;
  2285. width:160px;
  2286. height:38px;
  2287. display:flex;
  2288. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:12px;
  2292. color:#606266;
  2293. }
  2294. #u127061 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 2px 2px 0px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u127061_text {
  2302. border-width:0px;
  2303. word-wrap:break-word;
  2304. text-transform:none;
  2305. visibility:hidden;
  2306. }
  2307. #u127062_img {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:152px;
  2313. height:38px;
  2314. }
  2315. #u127062 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:200px;
  2319. top:77px;
  2320. width:152px;
  2321. height:38px;
  2322. display:flex;
  2323. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:12px;
  2327. color:#606266;
  2328. }
  2329. #u127062 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u127062_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u127063_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:135px;
  2348. height:38px;
  2349. }
  2350. #u127063 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:352px;
  2354. top:77px;
  2355. width:135px;
  2356. height:38px;
  2357. display:flex;
  2358. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. color:#606266;
  2363. }
  2364. #u127063 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 2px 2px 0px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u127063_text {
  2372. border-width:0px;
  2373. word-wrap:break-word;
  2374. text-transform:none;
  2375. visibility:hidden;
  2376. }
  2377. #u127064_img {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:135px;
  2383. height:38px;
  2384. }
  2385. #u127064 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:487px;
  2389. top:77px;
  2390. width:135px;
  2391. height:38px;
  2392. display:flex;
  2393. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2394. font-weight:400;
  2395. font-style:normal;
  2396. font-size:12px;
  2397. color:#606266;
  2398. }
  2399. #u127064 .text {
  2400. position:absolute;
  2401. align-self:center;
  2402. padding:2px 2px 2px 0px;
  2403. box-sizing:border-box;
  2404. width:100%;
  2405. }
  2406. #u127064_text {
  2407. border-width:0px;
  2408. word-wrap:break-word;
  2409. text-transform:none;
  2410. visibility:hidden;
  2411. }
  2412. #u127065_img {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:0px;
  2416. top:0px;
  2417. width:152px;
  2418. height:38px;
  2419. }
  2420. #u127065 {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:622px;
  2424. top:77px;
  2425. width:152px;
  2426. height:38px;
  2427. display:flex;
  2428. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2429. font-weight:400;
  2430. font-style:normal;
  2431. font-size:12px;
  2432. color:#606266;
  2433. }
  2434. #u127065 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 0px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u127065_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. }
  2446. #u127066_img {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:160px;
  2452. height:38px;
  2453. }
  2454. #u127066 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:774px;
  2458. top:77px;
  2459. width:160px;
  2460. height:38px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:12px;
  2466. color:#606266;
  2467. }
  2468. #u127066 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 0px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u127066_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. }
  2480. #u127067_img {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:160px;
  2486. height:38px;
  2487. }
  2488. #u127067 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:934px;
  2492. top:77px;
  2493. width:160px;
  2494. height:38px;
  2495. display:flex;
  2496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2497. font-weight:400;
  2498. font-style:normal;
  2499. font-size:12px;
  2500. }
  2501. #u127067 .text {
  2502. position:absolute;
  2503. align-self:center;
  2504. padding:2px 2px 2px 0px;
  2505. box-sizing:border-box;
  2506. width:100%;
  2507. }
  2508. #u127067_text {
  2509. border-width:0px;
  2510. word-wrap:break-word;
  2511. text-transform:none;
  2512. }
  2513. #u127068_img {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:0px;
  2518. width:121px;
  2519. height:38px;
  2520. }
  2521. #u127068 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:1094px;
  2525. top:77px;
  2526. width:121px;
  2527. height:38px;
  2528. display:flex;
  2529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:12px;
  2533. color:#298FFF;
  2534. }
  2535. #u127068 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 0px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u127068_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. }
  2547. #u127069_img {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:40px;
  2553. height:35px;
  2554. }
  2555. #u127069 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:115px;
  2560. width:40px;
  2561. height:35px;
  2562. display:flex;
  2563. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2564. font-weight:400;
  2565. font-style:normal;
  2566. font-size:12px;
  2567. color:#606266;
  2568. }
  2569. #u127069 .text {
  2570. position:absolute;
  2571. align-self:center;
  2572. padding:2px 2px 2px 0px;
  2573. box-sizing:border-box;
  2574. width:100%;
  2575. }
  2576. #u127069_text {
  2577. border-width:0px;
  2578. word-wrap:break-word;
  2579. text-transform:none;
  2580. }
  2581. #u127070_img {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:160px;
  2587. height:35px;
  2588. }
  2589. #u127070 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:40px;
  2593. top:115px;
  2594. width:160px;
  2595. height:35px;
  2596. display:flex;
  2597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:12px;
  2601. color:#606266;
  2602. }
  2603. #u127070 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:2px 2px 2px 0px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u127070_text {
  2611. border-width:0px;
  2612. word-wrap:break-word;
  2613. text-transform:none;
  2614. visibility:hidden;
  2615. }
  2616. #u127071_img {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:152px;
  2622. height:35px;
  2623. }
  2624. #u127071 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:200px;
  2628. top:115px;
  2629. width:152px;
  2630. height:35px;
  2631. display:flex;
  2632. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:12px;
  2636. color:#606266;
  2637. }
  2638. #u127071 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u127071_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u127072_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:135px;
  2657. height:35px;
  2658. }
  2659. #u127072 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:352px;
  2663. top:115px;
  2664. width:135px;
  2665. height:35px;
  2666. display:flex;
  2667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2668. font-weight:400;
  2669. font-style:normal;
  2670. font-size:12px;
  2671. color:#606266;
  2672. }
  2673. #u127072 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:2px 2px 2px 0px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u127072_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u127073_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:135px;
  2692. height:35px;
  2693. }
  2694. #u127073 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:487px;
  2698. top:115px;
  2699. width:135px;
  2700. height:35px;
  2701. display:flex;
  2702. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:12px;
  2706. color:#606266;
  2707. }
  2708. #u127073 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u127073_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. visibility:hidden;
  2720. }
  2721. #u127074_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:152px;
  2727. height:35px;
  2728. }
  2729. #u127074 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:622px;
  2733. top:115px;
  2734. width:152px;
  2735. height:35px;
  2736. display:flex;
  2737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. color:#606266;
  2742. }
  2743. #u127074 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u127074_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u127075_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:160px;
  2762. height:35px;
  2763. }
  2764. #u127075 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:774px;
  2768. top:115px;
  2769. width:160px;
  2770. height:35px;
  2771. display:flex;
  2772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. color:#606266;
  2777. }
  2778. #u127075 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 0px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u127075_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u127076_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:160px;
  2797. height:35px;
  2798. }
  2799. #u127076 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:934px;
  2803. top:115px;
  2804. width:160px;
  2805. height:35px;
  2806. display:flex;
  2807. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. color:#606266;
  2812. }
  2813. #u127076 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u127076_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. visibility:hidden;
  2825. }
  2826. #u127077_img {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:121px;
  2832. height:35px;
  2833. }
  2834. #u127077 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:1094px;
  2838. top:115px;
  2839. width:121px;
  2840. height:35px;
  2841. display:flex;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:12px;
  2846. color:#02A7F0;
  2847. }
  2848. #u127077 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:2px 2px 2px 0px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u127077_text {
  2856. border-width:0px;
  2857. word-wrap:break-word;
  2858. text-transform:none;
  2859. visibility:hidden;
  2860. }
  2861. #u127078_img {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:40px;
  2867. height:36px;
  2868. }
  2869. #u127078 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:150px;
  2874. width:40px;
  2875. height:36px;
  2876. display:flex;
  2877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:12px;
  2881. color:#606266;
  2882. }
  2883. #u127078 .text {
  2884. position:absolute;
  2885. align-self:center;
  2886. padding:2px 2px 2px 0px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u127078_text {
  2891. border-width:0px;
  2892. word-wrap:break-word;
  2893. text-transform:none;
  2894. }
  2895. #u127079_img {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:160px;
  2901. height:36px;
  2902. }
  2903. #u127079 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:40px;
  2907. top:150px;
  2908. width:160px;
  2909. height:36px;
  2910. display:flex;
  2911. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2912. font-weight:400;
  2913. font-style:normal;
  2914. font-size:12px;
  2915. color:#606266;
  2916. }
  2917. #u127079 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 0px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u127079_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u127080_img {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:152px;
  2936. height:36px;
  2937. }
  2938. #u127080 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:200px;
  2942. top:150px;
  2943. width:152px;
  2944. height:36px;
  2945. display:flex;
  2946. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:12px;
  2950. color:#606266;
  2951. }
  2952. #u127080 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 0px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u127080_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u127081_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:135px;
  2971. height:36px;
  2972. }
  2973. #u127081 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:352px;
  2977. top:150px;
  2978. width:135px;
  2979. height:36px;
  2980. display:flex;
  2981. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:12px;
  2985. color:#606266;
  2986. }
  2987. #u127081 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u127081_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u127082_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:135px;
  3006. height:36px;
  3007. }
  3008. #u127082 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:487px;
  3012. top:150px;
  3013. width:135px;
  3014. height:36px;
  3015. display:flex;
  3016. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:12px;
  3020. color:#606266;
  3021. }
  3022. #u127082 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 0px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u127082_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u127083_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:152px;
  3041. height:36px;
  3042. }
  3043. #u127083 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:622px;
  3047. top:150px;
  3048. width:152px;
  3049. height:36px;
  3050. display:flex;
  3051. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:12px;
  3055. color:#606266;
  3056. }
  3057. #u127083 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 0px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u127083_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u127084_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:160px;
  3076. height:36px;
  3077. }
  3078. #u127084 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:774px;
  3082. top:150px;
  3083. width:160px;
  3084. height:36px;
  3085. display:flex;
  3086. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. color:#606266;
  3091. }
  3092. #u127084 .text {
  3093. position:absolute;
  3094. align-self:center;
  3095. padding:2px 2px 2px 0px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u127084_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. visibility:hidden;
  3104. }
  3105. #u127085_img {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:160px;
  3111. height:36px;
  3112. }
  3113. #u127085 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:934px;
  3117. top:150px;
  3118. width:160px;
  3119. height:36px;
  3120. display:flex;
  3121. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:12px;
  3125. color:#606266;
  3126. }
  3127. #u127085 .text {
  3128. position:absolute;
  3129. align-self:center;
  3130. padding:2px 2px 2px 0px;
  3131. box-sizing:border-box;
  3132. width:100%;
  3133. }
  3134. #u127085_text {
  3135. border-width:0px;
  3136. word-wrap:break-word;
  3137. text-transform:none;
  3138. visibility:hidden;
  3139. }
  3140. #u127086_img {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:121px;
  3146. height:36px;
  3147. }
  3148. #u127086 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:1094px;
  3152. top:150px;
  3153. width:121px;
  3154. height:36px;
  3155. display:flex;
  3156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3157. font-weight:400;
  3158. font-style:normal;
  3159. font-size:12px;
  3160. color:#02A7F0;
  3161. }
  3162. #u127086 .text {
  3163. position:absolute;
  3164. align-self:center;
  3165. padding:2px 2px 2px 0px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u127086_text {
  3170. border-width:0px;
  3171. word-wrap:break-word;
  3172. text-transform:none;
  3173. visibility:hidden;
  3174. }
  3175. #u127087_img {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:40px;
  3181. height:34px;
  3182. }
  3183. #u127087 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:186px;
  3188. width:40px;
  3189. height:34px;
  3190. display:flex;
  3191. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:12px;
  3195. color:#606266;
  3196. }
  3197. #u127087 .text {
  3198. position:absolute;
  3199. align-self:center;
  3200. padding:2px 2px 2px 0px;
  3201. box-sizing:border-box;
  3202. width:100%;
  3203. }
  3204. #u127087_text {
  3205. border-width:0px;
  3206. word-wrap:break-word;
  3207. text-transform:none;
  3208. visibility:hidden;
  3209. }
  3210. #u127088_img {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:160px;
  3216. height:34px;
  3217. }
  3218. #u127088 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:40px;
  3222. top:186px;
  3223. width:160px;
  3224. height:34px;
  3225. display:flex;
  3226. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3227. font-weight:400;
  3228. font-style:normal;
  3229. font-size:12px;
  3230. color:#606266;
  3231. }
  3232. #u127088 .text {
  3233. position:absolute;
  3234. align-self:center;
  3235. padding:2px 2px 2px 0px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u127088_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. visibility:hidden;
  3244. }
  3245. #u127089_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:152px;
  3251. height:34px;
  3252. }
  3253. #u127089 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:200px;
  3257. top:186px;
  3258. width:152px;
  3259. height:34px;
  3260. display:flex;
  3261. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:12px;
  3265. color:#606266;
  3266. }
  3267. #u127089 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u127089_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u127090_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:135px;
  3286. height:34px;
  3287. }
  3288. #u127090 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:352px;
  3292. top:186px;
  3293. width:135px;
  3294. height:34px;
  3295. display:flex;
  3296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. color:#606266;
  3301. }
  3302. #u127090 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u127090_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. visibility:hidden;
  3314. }
  3315. #u127091_img {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:135px;
  3321. height:34px;
  3322. }
  3323. #u127091 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:487px;
  3327. top:186px;
  3328. width:135px;
  3329. height:34px;
  3330. display:flex;
  3331. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:12px;
  3335. color:#606266;
  3336. }
  3337. #u127091 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u127091_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. visibility:hidden;
  3349. }
  3350. #u127092_img {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:152px;
  3356. height:34px;
  3357. }
  3358. #u127092 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:622px;
  3362. top:186px;
  3363. width:152px;
  3364. height:34px;
  3365. display:flex;
  3366. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:12px;
  3370. color:#606266;
  3371. }
  3372. #u127092 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:2px 2px 2px 0px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u127092_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. visibility:hidden;
  3384. }
  3385. #u127093_img {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:160px;
  3391. height:34px;
  3392. }
  3393. #u127093 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:774px;
  3397. top:186px;
  3398. width:160px;
  3399. height:34px;
  3400. display:flex;
  3401. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:12px;
  3405. color:#606266;
  3406. }
  3407. #u127093 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u127093_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u127094_img {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:160px;
  3426. height:34px;
  3427. }
  3428. #u127094 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:934px;
  3432. top:186px;
  3433. width:160px;
  3434. height:34px;
  3435. display:flex;
  3436. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:12px;
  3440. color:#606266;
  3441. }
  3442. #u127094 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 0px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u127094_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. visibility:hidden;
  3454. }
  3455. #u127095_img {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:121px;
  3461. height:34px;
  3462. }
  3463. #u127095 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:1094px;
  3467. top:186px;
  3468. width:121px;
  3469. height:34px;
  3470. display:flex;
  3471. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:12px;
  3475. color:#606266;
  3476. }
  3477. #u127095 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u127095_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u127096_div {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:55px;
  3496. height:30px;
  3497. background:inherit;
  3498. background-color:rgba(255, 255, 255, 1);
  3499. box-sizing:border-box;
  3500. border-width:1px;
  3501. border-style:solid;
  3502. border-color:rgba(170, 170, 170, 1);
  3503. border-radius:4px;
  3504. -moz-box-shadow:none;
  3505. -webkit-box-shadow:none;
  3506. box-shadow:none;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:12px;
  3511. color:#555555;
  3512. }
  3513. #u127096 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:420px;
  3517. top:160px;
  3518. width:55px;
  3519. height:30px;
  3520. display:flex;
  3521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:12px;
  3525. color:#555555;
  3526. }
  3527. #u127096 .text {
  3528. position:absolute;
  3529. align-self:center;
  3530. padding:5px 15px 5px 15px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u127096_text {
  3535. border-width:0px;
  3536. white-space:nowrap;
  3537. text-transform:none;
  3538. }
  3539. #u127097_div {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:59px;
  3545. height:30px;
  3546. background:inherit;
  3547. background-color:rgba(41, 143, 255, 1);
  3548. border:none;
  3549. border-radius:4px;
  3550. -moz-box-shadow:none;
  3551. -webkit-box-shadow:none;
  3552. box-shadow:none;
  3553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. font-size:14px;
  3557. color:#FFFFFF;
  3558. }
  3559. #u127097 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:351px;
  3563. top:160px;
  3564. width:59px;
  3565. height:30px;
  3566. display:flex;
  3567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:14px;
  3571. color:#FFFFFF;
  3572. }
  3573. #u127097 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:5px 15px 5px 15px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u127097_text {
  3581. border-width:0px;
  3582. white-space:nowrap;
  3583. text-transform:none;
  3584. }
  3585. #u127098 {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:0px;
  3591. height:0px;
  3592. }
  3593. #u127099_div {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:59px;
  3599. height:30px;
  3600. background:inherit;
  3601. background-color:rgba(41, 143, 255, 1);
  3602. border:none;
  3603. border-radius:4px;
  3604. -moz-box-shadow:none;
  3605. -webkit-box-shadow:none;
  3606. box-shadow:none;
  3607. font-family:'Microsoft YaHei', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:14px;
  3611. color:#FFFFFF;
  3612. }
  3613. #u127099 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:651px;
  3617. top:110px;
  3618. width:59px;
  3619. height:30px;
  3620. display:flex;
  3621. font-family:'Microsoft YaHei', sans-serif;
  3622. font-weight:400;
  3623. font-style:normal;
  3624. font-size:14px;
  3625. color:#FFFFFF;
  3626. }
  3627. #u127099 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:5px 15px 5px 15px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u127099_text {
  3635. border-width:0px;
  3636. white-space:nowrap;
  3637. text-transform:none;
  3638. }
  3639. #u127100_div {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:55px;
  3645. height:30px;
  3646. background:inherit;
  3647. background-color:rgba(255, 255, 255, 1);
  3648. box-sizing:border-box;
  3649. border-width:1px;
  3650. border-style:solid;
  3651. border-color:rgba(170, 170, 170, 1);
  3652. border-radius:4px;
  3653. -moz-box-shadow:none;
  3654. -webkit-box-shadow:none;
  3655. box-shadow:none;
  3656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3657. font-weight:400;
  3658. font-style:normal;
  3659. font-size:12px;
  3660. color:#555555;
  3661. }
  3662. #u127100 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:720px;
  3666. top:110px;
  3667. width:55px;
  3668. height:30px;
  3669. display:flex;
  3670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:12px;
  3674. color:#555555;
  3675. }
  3676. #u127100 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:5px 15px 5px 15px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u127100_text {
  3684. border-width:0px;
  3685. white-space:nowrap;
  3686. text-transform:none;
  3687. }
  3688. #u127101 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:0px;
  3694. height:0px;
  3695. }
  3696. #u127102_div {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:140px;
  3702. height:30px;
  3703. background:inherit;
  3704. background-color:rgba(255, 255, 255, 1);
  3705. box-sizing:border-box;
  3706. border-width:1px;
  3707. border-style:solid;
  3708. border-color:rgba(201, 201, 201, 1);
  3709. border-radius:4px;
  3710. -moz-box-shadow:none;
  3711. -webkit-box-shadow:none;
  3712. box-shadow:none;
  3713. font-family:'Microsoft YaHei', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:14px;
  3717. color:#CCCCCC;
  3718. text-align:left;
  3719. }
  3720. #u127102 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:351px;
  3724. top:110px;
  3725. width:140px;
  3726. height:30px;
  3727. display:flex;
  3728. font-family:'Microsoft YaHei', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:14px;
  3732. color:#CCCCCC;
  3733. text-align:left;
  3734. }
  3735. #u127102 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 8px 2px 8px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u127102_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u127103_input {
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:127px;
  3753. height:25px;
  3754. padding:2px 2px 2px 2px;
  3755. font-family:'Microsoft YaHei', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:10px;
  3759. letter-spacing:normal;
  3760. color:#000000;
  3761. vertical-align:none;
  3762. text-align:left;
  3763. text-transform:none;
  3764. background-color:transparent;
  3765. border-color:transparent;
  3766. }
  3767. #u127103_input.disabled {
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:127px;
  3772. height:25px;
  3773. padding:2px 2px 2px 2px;
  3774. font-family:'Microsoft YaHei', sans-serif;
  3775. font-weight:400;
  3776. font-style:normal;
  3777. font-size:10px;
  3778. letter-spacing:normal;
  3779. color:#000000;
  3780. vertical-align:none;
  3781. text-align:left;
  3782. text-transform:none;
  3783. background-color:transparent;
  3784. border-color:transparent;
  3785. }
  3786. #u127103_div {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:127px;
  3792. height:25px;
  3793. background:inherit;
  3794. background-color:rgba(255, 255, 255, 1);
  3795. border:none;
  3796. border-radius:0px;
  3797. -moz-box-shadow:none;
  3798. -webkit-box-shadow:none;
  3799. box-shadow:none;
  3800. font-family:'Microsoft YaHei', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:10px;
  3804. }
  3805. #u127103 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:359px;
  3809. top:111px;
  3810. width:127px;
  3811. height:25px;
  3812. display:flex;
  3813. font-family:'Microsoft YaHei', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:10px;
  3817. }
  3818. #u127103 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 2px 2px 2px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u127103_div.disabled {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:127px;
  3831. height:25px;
  3832. background:inherit;
  3833. background-color:rgba(240, 240, 240, 1);
  3834. border:none;
  3835. border-radius:0px;
  3836. -moz-box-shadow:none;
  3837. -webkit-box-shadow:none;
  3838. box-shadow:none;
  3839. font-family:'Microsoft YaHei', sans-serif;
  3840. font-weight:400;
  3841. font-style:normal;
  3842. font-size:10px;
  3843. }
  3844. #u127103.disabled {
  3845. }
  3846. #u127104 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:0px;
  3850. top:0px;
  3851. width:0px;
  3852. height:0px;
  3853. }
  3854. #u127105_div {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:140px;
  3860. height:30px;
  3861. background:inherit;
  3862. background-color:rgba(255, 255, 255, 1);
  3863. box-sizing:border-box;
  3864. border-width:1px;
  3865. border-style:solid;
  3866. border-color:rgba(215, 215, 215, 1);
  3867. border-radius:4px;
  3868. -moz-box-shadow:none;
  3869. -webkit-box-shadow:none;
  3870. box-shadow:none;
  3871. font-size:11px;
  3872. }
  3873. #u127105 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:501px;
  3877. top:110px;
  3878. width:140px;
  3879. height:30px;
  3880. display:flex;
  3881. font-size:11px;
  3882. }
  3883. #u127105 .text {
  3884. position:absolute;
  3885. align-self:center;
  3886. padding:2px 2px 2px 2px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u127105_text {
  3891. border-width:0px;
  3892. word-wrap:break-word;
  3893. text-transform:none;
  3894. visibility:hidden;
  3895. }
  3896. #u127106_input {
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:125px;
  3901. height:23px;
  3902. padding:2px 2px 2px 2px;
  3903. font-family:'ArialMT', 'Arial', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:11px;
  3907. letter-spacing:normal;
  3908. color:#AAAAAA;
  3909. vertical-align:none;
  3910. text-align:left;
  3911. text-transform:none;
  3912. background-color:transparent;
  3913. border-color:transparent;
  3914. }
  3915. #u127106_input.disabled {
  3916. position:absolute;
  3917. left:0px;
  3918. top:0px;
  3919. width:125px;
  3920. height:23px;
  3921. padding:2px 2px 2px 2px;
  3922. font-family:'ArialMT', 'Arial', sans-serif;
  3923. font-weight:400;
  3924. font-style:normal;
  3925. font-size:11px;
  3926. letter-spacing:normal;
  3927. color:#AAAAAA;
  3928. vertical-align:none;
  3929. text-align:left;
  3930. text-transform:none;
  3931. background-color:transparent;
  3932. border-color:transparent;
  3933. }
  3934. #u127106_div {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:125px;
  3940. height:23px;
  3941. background:inherit;
  3942. background-color:rgba(255, 255, 255, 1);
  3943. border:none;
  3944. border-radius:0px;
  3945. -moz-box-shadow:none;
  3946. -webkit-box-shadow:none;
  3947. box-shadow:none;
  3948. font-size:11px;
  3949. color:#AAAAAA;
  3950. }
  3951. #u127106 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:507px;
  3955. top:112px;
  3956. width:125px;
  3957. height:23px;
  3958. display:flex;
  3959. font-size:11px;
  3960. color:#AAAAAA;
  3961. }
  3962. #u127106 .text {
  3963. position:absolute;
  3964. align-self:flex-start;
  3965. padding:2px 2px 2px 2px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u127106_div.disabled {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:125px;
  3975. height:23px;
  3976. background:inherit;
  3977. background-color:rgba(240, 240, 240, 1);
  3978. border:none;
  3979. border-radius:0px;
  3980. -moz-box-shadow:none;
  3981. -webkit-box-shadow:none;
  3982. box-shadow:none;
  3983. font-size:11px;
  3984. color:#AAAAAA;
  3985. }
  3986. #u127106.disabled {
  3987. }
  3988. .u127106_input_option {
  3989. font-size:11px;
  3990. }
  3991. #u127107_div {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:1237px;
  3997. height:560px;
  3998. background:inherit;
  3999. background-color:rgba(255, 255, 255, 0);
  4000. border:none;
  4001. border-radius:0px;
  4002. -moz-box-shadow:none;
  4003. -webkit-box-shadow:none;
  4004. box-shadow:none;
  4005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4006. font-weight:400;
  4007. font-style:normal;
  4008. font-size:18px;
  4009. color:#D9001B;
  4010. line-height:40px;
  4011. }
  4012. #u127107 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:535px;
  4016. top:-750px;
  4017. width:1237px;
  4018. height:560px;
  4019. display:flex;
  4020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:18px;
  4024. color:#D9001B;
  4025. line-height:40px;
  4026. }
  4027. #u127107 .text {
  4028. position:absolute;
  4029. align-self:flex-start;
  4030. padding:0px 0px 0px 0px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u127107_text {
  4035. border-width:0px;
  4036. white-space:nowrap;
  4037. text-transform:none;
  4038. }
  4039. #u127108_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:710px;
  4045. height:80px;
  4046. background:inherit;
  4047. background-color:rgba(255, 255, 255, 0);
  4048. border:none;
  4049. border-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:14px;
  4057. color:#D9001B;
  4058. line-height:40px;
  4059. }
  4060. #u127108 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:381px;
  4064. top:469px;
  4065. width:710px;
  4066. height:80px;
  4067. display:flex;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:14px;
  4072. color:#D9001B;
  4073. line-height:40px;
  4074. }
  4075. #u127108 .text {
  4076. position:absolute;
  4077. align-self:flex-start;
  4078. padding:0px 0px 0px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u127108_text {
  4083. border-width:0px;
  4084. white-space:nowrap;
  4085. text-transform:none;
  4086. }
  4087. #u127109 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:0px;
  4093. height:0px;
  4094. }
  4095. #u127110_div {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:800px;
  4101. height:1200px;
  4102. background:inherit;
  4103. background-color:rgba(255, 255, 255, 1);
  4104. box-sizing:border-box;
  4105. border-width:1px;
  4106. border-style:solid;
  4107. border-color:rgba(215, 215, 215, 1);
  4108. border-radius:0px;
  4109. -moz-box-shadow:none;
  4110. -webkit-box-shadow:none;
  4111. box-shadow:none;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:14px;
  4116. color:#AAAAAA;
  4117. text-align:center;
  4118. line-height:30px;
  4119. }
  4120. #u127110 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:1652px;
  4124. top:50px;
  4125. width:800px;
  4126. height:1200px;
  4127. display:flex;
  4128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:14px;
  4132. color:#AAAAAA;
  4133. text-align:center;
  4134. line-height:30px;
  4135. }
  4136. #u127110 .text {
  4137. position:absolute;
  4138. align-self:center;
  4139. padding:5px 10px 5px 10px;
  4140. box-sizing:border-box;
  4141. width:100%;
  4142. }
  4143. #u127110_text {
  4144. border-width:0px;
  4145. word-wrap:break-word;
  4146. text-transform:none;
  4147. visibility:hidden;
  4148. }
  4149. #u127111_div {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:736px;
  4155. height:60px;
  4156. background:inherit;
  4157. background-color:rgba(242, 242, 242, 1);
  4158. border:none;
  4159. border-radius:4px;
  4160. -moz-box-shadow:none;
  4161. -webkit-box-shadow:none;
  4162. box-shadow:none;
  4163. font-size:11px;
  4164. }
  4165. #u127111 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:1672px;
  4169. top:113px;
  4170. width:736px;
  4171. height:60px;
  4172. display:flex;
  4173. font-size:11px;
  4174. }
  4175. #u127111 .text {
  4176. position:absolute;
  4177. align-self:center;
  4178. padding:2px 2px 2px 2px;
  4179. box-sizing:border-box;
  4180. width:100%;
  4181. }
  4182. #u127111_text {
  4183. border-width:0px;
  4184. word-wrap:break-word;
  4185. text-transform:none;
  4186. visibility:hidden;
  4187. }
  4188. #u127112_div {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:155px;
  4194. height:35px;
  4195. background:inherit;
  4196. background-color:rgba(255, 255, 255, 0);
  4197. border:none;
  4198. border-top:0px;
  4199. border-right:0px;
  4200. border-bottom:0px;
  4201. border-radius:0px;
  4202. border-top-left-radius:0px;
  4203. border-bottom-left-radius:0px;
  4204. -moz-box-shadow:none;
  4205. -webkit-box-shadow:none;
  4206. box-shadow:none;
  4207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4208. font-weight:500;
  4209. font-style:normal;
  4210. font-size:18px;
  4211. }
  4212. #u127112 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:1672px;
  4216. top:68px;
  4217. width:155px;
  4218. height:35px;
  4219. display:flex;
  4220. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4221. font-weight:500;
  4222. font-style:normal;
  4223. font-size:18px;
  4224. }
  4225. #u127112 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:5px 10px 5px 0px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u127112_text {
  4233. border-width:0px;
  4234. white-space:nowrap;
  4235. text-transform:none;
  4236. }
  4237. #u127113_div {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:740px;
  4243. height:40px;
  4244. background:inherit;
  4245. background-color:rgba(255, 255, 128, 0.0980392156862745);
  4246. border:none;
  4247. border-radius:6px;
  4248. -moz-box-shadow:none;
  4249. -webkit-box-shadow:none;
  4250. box-shadow:none;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:12px;
  4255. color:#F59A23;
  4256. text-align:left;
  4257. }
  4258. #u127113 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:1672px;
  4262. top:173px;
  4263. width:740px;
  4264. height:40px;
  4265. display:flex;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:12px;
  4270. color:#F59A23;
  4271. text-align:left;
  4272. }
  4273. #u127113 .text {
  4274. position:absolute;
  4275. align-self:center;
  4276. padding:2px 2px 2px 10px;
  4277. box-sizing:border-box;
  4278. width:100%;
  4279. }
  4280. #u127113_text {
  4281. border-width:0px;
  4282. word-wrap:break-word;
  4283. text-transform:none;
  4284. }
  4285. #u127114_div {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:0px;
  4289. top:0px;
  4290. width:99px;
  4291. height:30px;
  4292. background:inherit;
  4293. background-color:rgba(255, 255, 255, 0);
  4294. border:none;
  4295. border-top:0px;
  4296. border-right:0px;
  4297. border-bottom:0px;
  4298. border-radius:0px;
  4299. border-top-left-radius:0px;
  4300. border-bottom-left-radius:0px;
  4301. -moz-box-shadow:none;
  4302. -webkit-box-shadow:none;
  4303. box-shadow:none;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:14px;
  4308. color:#7F7F7F;
  4309. }
  4310. #u127114 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:1693px;
  4314. top:298px;
  4315. width:99px;
  4316. height:30px;
  4317. display:flex;
  4318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4319. font-weight:400;
  4320. font-style:normal;
  4321. font-size:14px;
  4322. color:#7F7F7F;
  4323. }
  4324. #u127114 .text {
  4325. position:absolute;
  4326. align-self:center;
  4327. padding:5px 0px 5px 0px;
  4328. box-sizing:border-box;
  4329. width:100%;
  4330. }
  4331. #u127114_text {
  4332. border-width:0px;
  4333. white-space:nowrap;
  4334. text-transform:none;
  4335. }
  4336. #u127115 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:0px;
  4340. top:0px;
  4341. width:0px;
  4342. height:0px;
  4343. }
  4344. #u127116 {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:0px;
  4350. height:0px;
  4351. }
  4352. #u127117_div {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:0px;
  4356. top:0px;
  4357. width:552px;
  4358. height:100px;
  4359. background:inherit;
  4360. background-color:rgba(255, 255, 255, 1);
  4361. box-sizing:border-box;
  4362. border-width:1px;
  4363. border-style:solid;
  4364. border-color:rgba(215, 215, 215, 1);
  4365. border-radius:4px;
  4366. -moz-box-shadow:none;
  4367. -webkit-box-shadow:none;
  4368. box-shadow:none;
  4369. font-size:11px;
  4370. }
  4371. #u127117 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:1793px;
  4375. top:443px;
  4376. width:552px;
  4377. height:100px;
  4378. display:flex;
  4379. font-size:11px;
  4380. }
  4381. #u127117 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:2px 2px 2px 2px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u127117_text {
  4389. border-width:0px;
  4390. word-wrap:break-word;
  4391. text-transform:none;
  4392. visibility:hidden;
  4393. }
  4394. #u127118_input {
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:515px;
  4399. height:80px;
  4400. padding:2px 2px 2px 2px;
  4401. font-family:'ArialMT', 'Arial', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:13px;
  4405. letter-spacing:normal;
  4406. color:#000000;
  4407. vertical-align:none;
  4408. text-align:left;
  4409. text-transform:none;
  4410. background-color:transparent;
  4411. border-color:transparent;
  4412. resize:none;
  4413. }
  4414. #u127118_input.disabled {
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:515px;
  4419. height:80px;
  4420. padding:2px 2px 2px 2px;
  4421. font-family:'ArialMT', 'Arial', sans-serif;
  4422. font-weight:400;
  4423. font-style:normal;
  4424. font-size:13px;
  4425. letter-spacing:normal;
  4426. color:#000000;
  4427. vertical-align:none;
  4428. text-align:left;
  4429. text-transform:none;
  4430. background-color:transparent;
  4431. border-color:transparent;
  4432. resize:none;
  4433. }
  4434. #u127118_div {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:515px;
  4440. height:80px;
  4441. background:inherit;
  4442. background-color:rgba(255, 255, 255, 1);
  4443. border:none;
  4444. border-radius:0px;
  4445. -moz-box-shadow:none;
  4446. -webkit-box-shadow:none;
  4447. box-shadow:none;
  4448. }
  4449. #u127118 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:1812px;
  4453. top:453px;
  4454. width:515px;
  4455. height:80px;
  4456. display:flex;
  4457. }
  4458. #u127118 .text {
  4459. position:absolute;
  4460. align-self:flex-start;
  4461. padding:2px 2px 2px 2px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u127118_div.disabled {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:515px;
  4471. height:80px;
  4472. background:inherit;
  4473. background-color:rgba(240, 240, 240, 1);
  4474. border:none;
  4475. border-radius:0px;
  4476. -moz-box-shadow:none;
  4477. -webkit-box-shadow:none;
  4478. box-shadow:none;
  4479. }
  4480. #u127118.disabled {
  4481. }
  4482. #u127119_div {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:56px;
  4488. height:14px;
  4489. background:inherit;
  4490. background-color:rgba(242, 242, 242, 1);
  4491. border:none;
  4492. border-radius:19px;
  4493. -moz-box-shadow:none;
  4494. -webkit-box-shadow:none;
  4495. box-shadow:none;
  4496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4497. font-weight:400;
  4498. font-style:normal;
  4499. font-size:10px;
  4500. color:#7F7F7F;
  4501. }
  4502. #u127119 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:2282px;
  4506. top:524px;
  4507. width:56px;
  4508. height:14px;
  4509. display:flex;
  4510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4511. font-weight:400;
  4512. font-style:normal;
  4513. font-size:10px;
  4514. color:#7F7F7F;
  4515. }
  4516. #u127119 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:0px 0px 0px 0px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u127119_text {
  4524. border-width:0px;
  4525. word-wrap:break-word;
  4526. text-transform:none;
  4527. }
  4528. #u127120_div {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:78px;
  4534. height:30px;
  4535. background:inherit;
  4536. background-color:rgba(255, 255, 255, 0);
  4537. border:none;
  4538. border-top:0px;
  4539. border-right:0px;
  4540. border-bottom:0px;
  4541. border-radius:0px;
  4542. border-top-left-radius:0px;
  4543. border-bottom-left-radius:0px;
  4544. -moz-box-shadow:none;
  4545. -webkit-box-shadow:none;
  4546. box-shadow:none;
  4547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:14px;
  4551. color:#7F7F7F;
  4552. text-align:right;
  4553. }
  4554. #u127120 {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:1714px;
  4558. top:348px;
  4559. width:78px;
  4560. height:30px;
  4561. display:flex;
  4562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4563. font-weight:400;
  4564. font-style:normal;
  4565. font-size:14px;
  4566. color:#7F7F7F;
  4567. text-align:right;
  4568. }
  4569. #u127120 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:5px 0px 5px 0px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u127120_text {
  4577. border-width:0px;
  4578. white-space:nowrap;
  4579. text-transform:none;
  4580. }
  4581. #u127121 {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:0px;
  4587. height:0px;
  4588. }
  4589. #u127122_div {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:553px;
  4595. height:40px;
  4596. background:inherit;
  4597. background-color:rgba(255, 255, 255, 1);
  4598. box-sizing:border-box;
  4599. border-width:1px;
  4600. border-style:solid;
  4601. border-color:rgba(215, 215, 215, 1);
  4602. border-radius:4px;
  4603. -moz-box-shadow:none;
  4604. -webkit-box-shadow:none;
  4605. box-shadow:none;
  4606. font-size:11px;
  4607. }
  4608. #u127122 {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:1792px;
  4612. top:343px;
  4613. width:553px;
  4614. height:40px;
  4615. display:flex;
  4616. font-size:11px;
  4617. }
  4618. #u127122 .text {
  4619. position:absolute;
  4620. align-self:center;
  4621. padding:2px 2px 2px 2px;
  4622. box-sizing:border-box;
  4623. width:100%;
  4624. }
  4625. #u127122_text {
  4626. border-width:0px;
  4627. word-wrap:break-word;
  4628. text-transform:none;
  4629. visibility:hidden;
  4630. }
  4631. #u127123_input {
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:502px;
  4636. height:25px;
  4637. padding:2px 2px 2px 2px;
  4638. font-family:'ArialMT', 'Arial', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:13px;
  4642. letter-spacing:normal;
  4643. color:#000000;
  4644. vertical-align:none;
  4645. text-align:left;
  4646. text-transform:none;
  4647. background-color:transparent;
  4648. border-color:transparent;
  4649. }
  4650. #u127123_input.disabled {
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:502px;
  4655. height:25px;
  4656. padding:2px 2px 2px 2px;
  4657. font-family:'ArialMT', 'Arial', sans-serif;
  4658. font-weight:400;
  4659. font-style:normal;
  4660. font-size:13px;
  4661. letter-spacing:normal;
  4662. color:#000000;
  4663. vertical-align:none;
  4664. text-align:left;
  4665. text-transform:none;
  4666. background-color:transparent;
  4667. border-color:transparent;
  4668. }
  4669. #u127123_div {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:0px;
  4673. top:0px;
  4674. width:502px;
  4675. height:25px;
  4676. background:inherit;
  4677. background-color:rgba(255, 255, 255, 1);
  4678. border:none;
  4679. border-radius:0px;
  4680. -moz-box-shadow:none;
  4681. -webkit-box-shadow:none;
  4682. box-shadow:none;
  4683. }
  4684. #u127123 {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:1817px;
  4688. top:351px;
  4689. width:502px;
  4690. height:25px;
  4691. display:flex;
  4692. }
  4693. #u127123 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:2px 2px 2px 2px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u127123_div.disabled {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:502px;
  4706. height:25px;
  4707. background:inherit;
  4708. background-color:rgba(240, 240, 240, 1);
  4709. border:none;
  4710. border-radius:0px;
  4711. -moz-box-shadow:none;
  4712. -webkit-box-shadow:none;
  4713. box-shadow:none;
  4714. }
  4715. #u127123.disabled {
  4716. }
  4717. #u127124 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:0px;
  4723. height:0px;
  4724. }
  4725. #u127125_div {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:800px;
  4731. height:50px;
  4732. background:inherit;
  4733. background-color:rgba(255, 255, 255, 1);
  4734. box-sizing:border-box;
  4735. border-width:1px;
  4736. border-style:solid;
  4737. border-color:rgba(215, 215, 215, 1);
  4738. border-radius:0px;
  4739. -moz-box-shadow:none;
  4740. -webkit-box-shadow:none;
  4741. box-shadow:none;
  4742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:14px;
  4746. color:#AAAAAA;
  4747. text-align:center;
  4748. line-height:30px;
  4749. }
  4750. #u127125 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:1652px;
  4754. top:1200px;
  4755. width:800px;
  4756. height:50px;
  4757. display:flex;
  4758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:14px;
  4762. color:#AAAAAA;
  4763. text-align:center;
  4764. line-height:30px;
  4765. }
  4766. #u127125 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:5px 10px 5px 10px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u127125_text {
  4774. border-width:0px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. visibility:hidden;
  4778. }
  4779. #u127126_div {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:80px;
  4785. height:30px;
  4786. background:inherit;
  4787. background-color:rgba(24, 144, 255, 1);
  4788. border:none;
  4789. border-radius:4px;
  4790. -moz-box-shadow:none;
  4791. -webkit-box-shadow:none;
  4792. box-shadow:none;
  4793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:14px;
  4797. color:#FFFFFF;
  4798. }
  4799. #u127126 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:2352px;
  4803. top:1210px;
  4804. width:80px;
  4805. height:30px;
  4806. display:flex;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:14px;
  4811. color:#FFFFFF;
  4812. }
  4813. #u127126 .text {
  4814. position:absolute;
  4815. align-self:center;
  4816. padding:2px 2px 2px 2px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u127126_text {
  4821. border-width:0px;
  4822. word-wrap:break-word;
  4823. text-transform:none;
  4824. }
  4825. #u127127_div {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:80px;
  4831. height:30px;
  4832. background:inherit;
  4833. background-color:rgba(255, 255, 255, 1);
  4834. box-sizing:border-box;
  4835. border-width:1px;
  4836. border-style:solid;
  4837. border-color:rgba(170, 170, 170, 1);
  4838. border-radius:4px;
  4839. -moz-box-shadow:none;
  4840. -webkit-box-shadow:none;
  4841. box-shadow:none;
  4842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:14px;
  4846. }
  4847. #u127127 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:2252px;
  4851. top:1210px;
  4852. width:80px;
  4853. height:30px;
  4854. display:flex;
  4855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4856. font-weight:400;
  4857. font-style:normal;
  4858. font-size:14px;
  4859. }
  4860. #u127127 .text {
  4861. position:absolute;
  4862. align-self:center;
  4863. padding:2px 2px 2px 2px;
  4864. box-sizing:border-box;
  4865. width:100%;
  4866. }
  4867. #u127127_text {
  4868. border-width:0px;
  4869. word-wrap:break-word;
  4870. text-transform:none;
  4871. }
  4872. #u127128_div {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:71px;
  4878. height:30px;
  4879. background:inherit;
  4880. background-color:rgba(255, 255, 255, 0);
  4881. border:none;
  4882. border-top:0px;
  4883. border-right:0px;
  4884. border-bottom:0px;
  4885. border-radius:0px;
  4886. border-top-left-radius:0px;
  4887. border-bottom-left-radius:0px;
  4888. -moz-box-shadow:none;
  4889. -webkit-box-shadow:none;
  4890. box-shadow:none;
  4891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4892. font-weight:400;
  4893. font-style:normal;
  4894. font-size:14px;
  4895. color:#7F7F7F;
  4896. }
  4897. #u127128 {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:1693px;
  4901. top:129px;
  4902. width:71px;
  4903. height:30px;
  4904. display:flex;
  4905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4906. font-weight:400;
  4907. font-style:normal;
  4908. font-size:14px;
  4909. color:#7F7F7F;
  4910. }
  4911. #u127128 .text {
  4912. position:absolute;
  4913. align-self:center;
  4914. padding:5px 0px 5px 0px;
  4915. box-sizing:border-box;
  4916. width:100%;
  4917. }
  4918. #u127128_text {
  4919. border-width:0px;
  4920. white-space:nowrap;
  4921. text-transform:none;
  4922. }
  4923. #u127129_div {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:0px;
  4927. top:0px;
  4928. width:155px;
  4929. height:30px;
  4930. background:inherit;
  4931. background-color:rgba(255, 255, 255, 0);
  4932. border:none;
  4933. border-top:0px;
  4934. border-right:0px;
  4935. border-bottom:0px;
  4936. border-radius:0px;
  4937. border-top-left-radius:0px;
  4938. border-bottom-left-radius:0px;
  4939. -moz-box-shadow:none;
  4940. -webkit-box-shadow:none;
  4941. box-shadow:none;
  4942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:14px;
  4946. }
  4947. #u127129 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:1772px;
  4951. top:129px;
  4952. width:155px;
  4953. height:30px;
  4954. display:flex;
  4955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:14px;
  4959. }
  4960. #u127129 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:5px 0px 5px 0px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u127129_text {
  4968. border-width:0px;
  4969. white-space:nowrap;
  4970. text-transform:none;
  4971. }
  4972. #u127130_div {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:71px;
  4978. height:30px;
  4979. background:inherit;
  4980. background-color:rgba(255, 255, 255, 0);
  4981. border:none;
  4982. border-top:0px;
  4983. border-right:0px;
  4984. border-bottom:0px;
  4985. border-radius:0px;
  4986. border-top-left-radius:0px;
  4987. border-bottom-left-radius:0px;
  4988. -moz-box-shadow:none;
  4989. -webkit-box-shadow:none;
  4990. box-shadow:none;
  4991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:14px;
  4995. color:#7F7F7F;
  4996. }
  4997. #u127130 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:2096px;
  5001. top:129px;
  5002. width:71px;
  5003. height:30px;
  5004. display:flex;
  5005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:14px;
  5009. color:#7F7F7F;
  5010. }
  5011. #u127130 .text {
  5012. position:absolute;
  5013. align-self:center;
  5014. padding:5px 0px 5px 0px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u127130_text {
  5019. border-width:0px;
  5020. white-space:nowrap;
  5021. text-transform:none;
  5022. }
  5023. #u127131_div {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:0px;
  5027. top:0px;
  5028. width:57px;
  5029. height:30px;
  5030. background:inherit;
  5031. background-color:rgba(255, 255, 255, 0);
  5032. border:none;
  5033. border-top:0px;
  5034. border-right:0px;
  5035. border-bottom:0px;
  5036. border-radius:0px;
  5037. border-top-left-radius:0px;
  5038. border-bottom-left-radius:0px;
  5039. -moz-box-shadow:none;
  5040. -webkit-box-shadow:none;
  5041. box-shadow:none;
  5042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5043. font-weight:400;
  5044. font-style:normal;
  5045. font-size:14px;
  5046. }
  5047. #u127131 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:2175px;
  5051. top:129px;
  5052. width:57px;
  5053. height:30px;
  5054. display:flex;
  5055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:14px;
  5059. }
  5060. #u127131 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:5px 0px 5px 0px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u127131_text {
  5068. border-width:0px;
  5069. white-space:nowrap;
  5070. text-transform:none;
  5071. }
  5072. #u127132_div {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:78px;
  5078. height:30px;
  5079. background:inherit;
  5080. background-color:rgba(255, 255, 255, 0);
  5081. border:none;
  5082. border-top:0px;
  5083. border-right:0px;
  5084. border-bottom:0px;
  5085. border-radius:0px;
  5086. border-top-left-radius:0px;
  5087. border-bottom-left-radius:0px;
  5088. -moz-box-shadow:none;
  5089. -webkit-box-shadow:none;
  5090. box-shadow:none;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:14px;
  5095. color:#7F7F7F;
  5096. }
  5097. #u127132 {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:1715px;
  5101. top:398px;
  5102. width:78px;
  5103. height:30px;
  5104. display:flex;
  5105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5106. font-weight:400;
  5107. font-style:normal;
  5108. font-size:14px;
  5109. color:#7F7F7F;
  5110. }
  5111. #u127132 .text {
  5112. position:absolute;
  5113. align-self:center;
  5114. padding:5px 0px 5px 0px;
  5115. box-sizing:border-box;
  5116. width:100%;
  5117. }
  5118. #u127132_text {
  5119. border-width:0px;
  5120. white-space:nowrap;
  5121. text-transform:none;
  5122. }
  5123. #u127133 {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:0px;
  5129. height:0px;
  5130. }
  5131. #u127134_div {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:0px;
  5135. top:0px;
  5136. width:553px;
  5137. height:40px;
  5138. background:inherit;
  5139. background-color:rgba(255, 255, 255, 1);
  5140. box-sizing:border-box;
  5141. border-width:1px;
  5142. border-style:solid;
  5143. border-color:rgba(215, 215, 215, 1);
  5144. border-radius:4px;
  5145. -moz-box-shadow:none;
  5146. -webkit-box-shadow:none;
  5147. box-shadow:none;
  5148. font-size:11px;
  5149. }
  5150. #u127134 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:1793px;
  5154. top:393px;
  5155. width:553px;
  5156. height:40px;
  5157. display:flex;
  5158. font-size:11px;
  5159. }
  5160. #u127134 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 2px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u127134_text {
  5168. border-width:0px;
  5169. word-wrap:break-word;
  5170. text-transform:none;
  5171. visibility:hidden;
  5172. }
  5173. #u127135_input {
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:502px;
  5178. height:25px;
  5179. padding:2px 2px 2px 2px;
  5180. font-family:'ArialMT', 'Arial', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:13px;
  5184. letter-spacing:normal;
  5185. color:#000000;
  5186. vertical-align:none;
  5187. text-align:left;
  5188. text-transform:none;
  5189. background-color:transparent;
  5190. border-color:transparent;
  5191. }
  5192. #u127135_input.disabled {
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:502px;
  5197. height:25px;
  5198. padding:2px 2px 2px 2px;
  5199. font-family:'ArialMT', 'Arial', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:13px;
  5203. letter-spacing:normal;
  5204. color:#000000;
  5205. vertical-align:none;
  5206. text-align:left;
  5207. text-transform:none;
  5208. background-color:transparent;
  5209. border-color:transparent;
  5210. }
  5211. #u127135_div {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:502px;
  5217. height:25px;
  5218. background:inherit;
  5219. background-color:rgba(255, 255, 255, 1);
  5220. border:none;
  5221. border-radius:0px;
  5222. -moz-box-shadow:none;
  5223. -webkit-box-shadow:none;
  5224. box-shadow:none;
  5225. }
  5226. #u127135 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:1818px;
  5230. top:401px;
  5231. width:502px;
  5232. height:25px;
  5233. display:flex;
  5234. }
  5235. #u127135 .text {
  5236. position:absolute;
  5237. align-self:center;
  5238. padding:2px 2px 2px 2px;
  5239. box-sizing:border-box;
  5240. width:100%;
  5241. }
  5242. #u127135_div.disabled {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:502px;
  5248. height:25px;
  5249. background:inherit;
  5250. background-color:rgba(240, 240, 240, 1);
  5251. border:none;
  5252. border-radius:0px;
  5253. -moz-box-shadow:none;
  5254. -webkit-box-shadow:none;
  5255. box-shadow:none;
  5256. }
  5257. #u127135.disabled {
  5258. }
  5259. #u127136_div {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:71px;
  5265. height:30px;
  5266. background:inherit;
  5267. background-color:rgba(255, 255, 255, 0);
  5268. border:none;
  5269. border-top:0px;
  5270. border-right:0px;
  5271. border-bottom:0px;
  5272. border-radius:0px;
  5273. border-top-left-radius:0px;
  5274. border-bottom-left-radius:0px;
  5275. -moz-box-shadow:none;
  5276. -webkit-box-shadow:none;
  5277. box-shadow:none;
  5278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5279. font-weight:400;
  5280. font-style:normal;
  5281. font-size:14px;
  5282. color:#7F7F7F;
  5283. }
  5284. #u127136 {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:1722px;
  5288. top:443px;
  5289. width:71px;
  5290. height:30px;
  5291. display:flex;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:14px;
  5296. color:#7F7F7F;
  5297. }
  5298. #u127136 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:5px 0px 5px 0px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u127136_text {
  5306. border-width:0px;
  5307. white-space:nowrap;
  5308. text-transform:none;
  5309. }
  5310. #u127137_div {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:40px;
  5316. height:40px;
  5317. background:inherit;
  5318. background-color:rgba(255, 255, 255, 0);
  5319. border:none;
  5320. border-top:0px;
  5321. border-right:0px;
  5322. border-bottom:0px;
  5323. border-radius:0px;
  5324. border-top-left-radius:0px;
  5325. border-bottom-left-radius:0px;
  5326. -moz-box-shadow:none;
  5327. -webkit-box-shadow:none;
  5328. box-shadow:none;
  5329. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5330. font-weight:500;
  5331. font-style:normal;
  5332. font-size:18px;
  5333. text-align:center;
  5334. }
  5335. #u127137 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:2412px;
  5339. top:50px;
  5340. width:40px;
  5341. height:40px;
  5342. display:flex;
  5343. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5344. font-weight:500;
  5345. font-style:normal;
  5346. font-size:18px;
  5347. text-align:center;
  5348. }
  5349. #u127137 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:5px 10px 5px 0px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u127137_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. }
  5361. #u127138_div {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:106px;
  5367. height:30px;
  5368. background:inherit;
  5369. background-color:rgba(255, 255, 255, 0);
  5370. border:none;
  5371. border-top:0px;
  5372. border-right:0px;
  5373. border-bottom:0px;
  5374. border-radius:0px;
  5375. border-top-left-radius:0px;
  5376. border-bottom-left-radius:0px;
  5377. -moz-box-shadow:none;
  5378. -webkit-box-shadow:none;
  5379. box-shadow:none;
  5380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5381. font-weight:400;
  5382. font-style:normal;
  5383. font-size:14px;
  5384. color:#7F7F7F;
  5385. }
  5386. #u127138 {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:1686px;
  5390. top:248px;
  5391. width:106px;
  5392. height:30px;
  5393. display:flex;
  5394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5395. font-weight:400;
  5396. font-style:normal;
  5397. font-size:14px;
  5398. color:#7F7F7F;
  5399. }
  5400. #u127138 .text {
  5401. position:absolute;
  5402. align-self:center;
  5403. padding:5px 0px 5px 0px;
  5404. box-sizing:border-box;
  5405. width:100%;
  5406. }
  5407. #u127138_text {
  5408. border-width:0px;
  5409. white-space:nowrap;
  5410. text-transform:none;
  5411. }
  5412. #u127139_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:78px;
  5418. height:30px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 0);
  5421. border:none;
  5422. border-top:0px;
  5423. border-right:0px;
  5424. border-bottom:0px;
  5425. border-radius:0px;
  5426. border-top-left-radius:0px;
  5427. border-bottom-left-radius:0px;
  5428. -moz-box-shadow:none;
  5429. -webkit-box-shadow:none;
  5430. box-shadow:none;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:14px;
  5435. color:#7F7F7F;
  5436. }
  5437. #u127139 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:1706px;
  5441. top:612px;
  5442. width:78px;
  5443. height:30px;
  5444. display:flex;
  5445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:14px;
  5449. color:#7F7F7F;
  5450. }
  5451. #u127139 .text {
  5452. position:absolute;
  5453. align-self:center;
  5454. padding:5px 0px 5px 0px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u127139_text {
  5459. border-width:0px;
  5460. white-space:nowrap;
  5461. text-transform:none;
  5462. }
  5463. #u127140 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:0px;
  5469. height:0px;
  5470. }
  5471. #u127141_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:553px;
  5477. height:40px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 1);
  5480. box-sizing:border-box;
  5481. border-width:1px;
  5482. border-style:solid;
  5483. border-color:rgba(215, 215, 215, 1);
  5484. border-radius:4px;
  5485. -moz-box-shadow:none;
  5486. -webkit-box-shadow:none;
  5487. box-shadow:none;
  5488. font-size:11px;
  5489. }
  5490. #u127141 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:1792px;
  5494. top:607px;
  5495. width:553px;
  5496. height:40px;
  5497. display:flex;
  5498. font-size:11px;
  5499. }
  5500. #u127141 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 2px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u127141_text {
  5508. border-width:0px;
  5509. word-wrap:break-word;
  5510. text-transform:none;
  5511. visibility:hidden;
  5512. }
  5513. #u127142_input {
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:534px;
  5518. height:31px;
  5519. padding:2px 2px 2px 2px;
  5520. font-family:'ArialMT', 'Arial', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:11px;
  5524. letter-spacing:normal;
  5525. color:#AAAAAA;
  5526. vertical-align:none;
  5527. text-align:left;
  5528. text-transform:none;
  5529. background-color:transparent;
  5530. border-color:transparent;
  5531. }
  5532. #u127142_input.disabled {
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:534px;
  5537. height:31px;
  5538. padding:2px 2px 2px 2px;
  5539. font-family:'ArialMT', 'Arial', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:11px;
  5543. letter-spacing:normal;
  5544. color:#AAAAAA;
  5545. vertical-align:none;
  5546. text-align:left;
  5547. text-transform:none;
  5548. background-color:transparent;
  5549. border-color:transparent;
  5550. }
  5551. #u127142_div {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:534px;
  5557. height:31px;
  5558. background:inherit;
  5559. background-color:rgba(255, 255, 255, 1);
  5560. border:none;
  5561. border-radius:0px;
  5562. -moz-box-shadow:none;
  5563. -webkit-box-shadow:none;
  5564. box-shadow:none;
  5565. font-size:11px;
  5566. color:#AAAAAA;
  5567. }
  5568. #u127142 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:1804px;
  5572. top:611px;
  5573. width:534px;
  5574. height:31px;
  5575. display:flex;
  5576. font-size:11px;
  5577. color:#AAAAAA;
  5578. }
  5579. #u127142 .text {
  5580. position:absolute;
  5581. align-self:flex-start;
  5582. padding:2px 2px 2px 2px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u127142_div.disabled {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:534px;
  5592. height:31px;
  5593. background:inherit;
  5594. background-color:rgba(240, 240, 240, 1);
  5595. border:none;
  5596. border-radius:0px;
  5597. -moz-box-shadow:none;
  5598. -webkit-box-shadow:none;
  5599. box-shadow:none;
  5600. font-size:11px;
  5601. color:#AAAAAA;
  5602. }
  5603. #u127142.disabled {
  5604. }
  5605. .u127142_input_option {
  5606. font-size:11px;
  5607. }
  5608. #u127143_div {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:85px;
  5614. height:30px;
  5615. background:inherit;
  5616. background-color:rgba(255, 255, 255, 0);
  5617. border:none;
  5618. border-top:0px;
  5619. border-right:0px;
  5620. border-bottom:0px;
  5621. border-radius:0px;
  5622. border-top-left-radius:0px;
  5623. border-bottom-left-radius:0px;
  5624. -moz-box-shadow:none;
  5625. -webkit-box-shadow:none;
  5626. box-shadow:none;
  5627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5628. font-weight:500;
  5629. font-style:normal;
  5630. font-size:14px;
  5631. }
  5632. #u127143 {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:1672px;
  5636. top:563px;
  5637. width:85px;
  5638. height:30px;
  5639. display:flex;
  5640. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5641. font-weight:500;
  5642. font-style:normal;
  5643. font-size:14px;
  5644. }
  5645. #u127143 .text {
  5646. position:absolute;
  5647. align-self:center;
  5648. padding:5px 0px 5px 0px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u127143_text {
  5653. border-width:0px;
  5654. white-space:nowrap;
  5655. text-transform:none;
  5656. }
  5657. #u127144_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:78px;
  5663. height:30px;
  5664. background:inherit;
  5665. background-color:rgba(255, 255, 255, 0);
  5666. border:none;
  5667. border-top:0px;
  5668. border-right:0px;
  5669. border-bottom:0px;
  5670. border-radius:0px;
  5671. border-top-left-radius:0px;
  5672. border-bottom-left-radius:0px;
  5673. -moz-box-shadow:none;
  5674. -webkit-box-shadow:none;
  5675. box-shadow:none;
  5676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5677. font-weight:400;
  5678. font-style:normal;
  5679. font-size:14px;
  5680. color:#7F7F7F;
  5681. }
  5682. #u127144 {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:1706px;
  5686. top:662px;
  5687. width:78px;
  5688. height:30px;
  5689. display:flex;
  5690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:14px;
  5694. color:#7F7F7F;
  5695. }
  5696. #u127144 .text {
  5697. position:absolute;
  5698. align-self:center;
  5699. padding:5px 0px 5px 0px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u127144_text {
  5704. border-width:0px;
  5705. white-space:nowrap;
  5706. text-transform:none;
  5707. }
  5708. #u127145 {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:0px;
  5714. height:0px;
  5715. }
  5716. #u127146_div {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:0px;
  5720. top:0px;
  5721. width:553px;
  5722. height:40px;
  5723. background:inherit;
  5724. background-color:rgba(255, 255, 255, 1);
  5725. box-sizing:border-box;
  5726. border-width:1px;
  5727. border-style:solid;
  5728. border-color:rgba(215, 215, 215, 1);
  5729. border-radius:4px;
  5730. -moz-box-shadow:none;
  5731. -webkit-box-shadow:none;
  5732. box-shadow:none;
  5733. font-size:11px;
  5734. }
  5735. #u127146 {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:1792px;
  5739. top:657px;
  5740. width:553px;
  5741. height:40px;
  5742. display:flex;
  5743. font-size:11px;
  5744. }
  5745. #u127146 .text {
  5746. position:absolute;
  5747. align-self:center;
  5748. padding:2px 2px 2px 2px;
  5749. box-sizing:border-box;
  5750. width:100%;
  5751. }
  5752. #u127146_text {
  5753. border-width:0px;
  5754. word-wrap:break-word;
  5755. text-transform:none;
  5756. visibility:hidden;
  5757. }
  5758. #u127147_input {
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:534px;
  5763. height:31px;
  5764. padding:2px 2px 2px 2px;
  5765. font-family:'ArialMT', 'Arial', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:11px;
  5769. letter-spacing:normal;
  5770. color:#AAAAAA;
  5771. vertical-align:none;
  5772. text-align:left;
  5773. text-transform:none;
  5774. background-color:transparent;
  5775. border-color:transparent;
  5776. }
  5777. #u127147_input.disabled {
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:534px;
  5782. height:31px;
  5783. padding:2px 2px 2px 2px;
  5784. font-family:'ArialMT', 'Arial', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:11px;
  5788. letter-spacing:normal;
  5789. color:#AAAAAA;
  5790. vertical-align:none;
  5791. text-align:left;
  5792. text-transform:none;
  5793. background-color:transparent;
  5794. border-color:transparent;
  5795. }
  5796. #u127147_div {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:534px;
  5802. height:31px;
  5803. background:inherit;
  5804. background-color:rgba(255, 255, 255, 1);
  5805. border:none;
  5806. border-radius:0px;
  5807. -moz-box-shadow:none;
  5808. -webkit-box-shadow:none;
  5809. box-shadow:none;
  5810. font-size:11px;
  5811. color:#AAAAAA;
  5812. }
  5813. #u127147 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:1804px;
  5817. top:661px;
  5818. width:534px;
  5819. height:31px;
  5820. display:flex;
  5821. font-size:11px;
  5822. color:#AAAAAA;
  5823. }
  5824. #u127147 .text {
  5825. position:absolute;
  5826. align-self:flex-start;
  5827. padding:2px 2px 2px 2px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u127147_div.disabled {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:0px;
  5835. top:0px;
  5836. width:534px;
  5837. height:31px;
  5838. background:inherit;
  5839. background-color:rgba(240, 240, 240, 1);
  5840. border:none;
  5841. border-radius:0px;
  5842. -moz-box-shadow:none;
  5843. -webkit-box-shadow:none;
  5844. box-shadow:none;
  5845. font-size:11px;
  5846. color:#AAAAAA;
  5847. }
  5848. #u127147.disabled {
  5849. }
  5850. .u127147_input_option {
  5851. font-size:11px;
  5852. }
  5853. #u127148 {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:0px;
  5859. height:0px;
  5860. }
  5861. #u127149_div {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:553px;
  5867. height:40px;
  5868. background:inherit;
  5869. background-color:rgba(255, 255, 255, 1);
  5870. box-sizing:border-box;
  5871. border-width:1px;
  5872. border-style:solid;
  5873. border-color:rgba(215, 215, 215, 1);
  5874. border-radius:4px;
  5875. -moz-box-shadow:none;
  5876. -webkit-box-shadow:none;
  5877. box-shadow:none;
  5878. font-size:11px;
  5879. }
  5880. #u127149 {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:1792px;
  5884. top:293px;
  5885. width:553px;
  5886. height:40px;
  5887. display:flex;
  5888. font-size:11px;
  5889. }
  5890. #u127149 .text {
  5891. position:absolute;
  5892. align-self:center;
  5893. padding:2px 2px 2px 2px;
  5894. box-sizing:border-box;
  5895. width:100%;
  5896. }
  5897. #u127149_text {
  5898. border-width:0px;
  5899. word-wrap:break-word;
  5900. text-transform:none;
  5901. visibility:hidden;
  5902. }
  5903. #u127150_input {
  5904. position:absolute;
  5905. left:0px;
  5906. top:0px;
  5907. width:534px;
  5908. height:31px;
  5909. padding:2px 2px 2px 2px;
  5910. font-family:'ArialMT', 'Arial', sans-serif;
  5911. font-weight:400;
  5912. font-style:normal;
  5913. font-size:11px;
  5914. letter-spacing:normal;
  5915. color:#AAAAAA;
  5916. vertical-align:none;
  5917. text-align:left;
  5918. text-transform:none;
  5919. background-color:transparent;
  5920. border-color:transparent;
  5921. }
  5922. #u127150_input.disabled {
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:534px;
  5927. height:31px;
  5928. padding:2px 2px 2px 2px;
  5929. font-family:'ArialMT', 'Arial', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:11px;
  5933. letter-spacing:normal;
  5934. color:#AAAAAA;
  5935. vertical-align:none;
  5936. text-align:left;
  5937. text-transform:none;
  5938. background-color:transparent;
  5939. border-color:transparent;
  5940. }
  5941. #u127150_div {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:534px;
  5947. height:31px;
  5948. background:inherit;
  5949. background-color:rgba(255, 255, 255, 1);
  5950. border:none;
  5951. border-radius:0px;
  5952. -moz-box-shadow:none;
  5953. -webkit-box-shadow:none;
  5954. box-shadow:none;
  5955. font-size:11px;
  5956. color:#AAAAAA;
  5957. }
  5958. #u127150 {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:1804px;
  5962. top:297px;
  5963. width:534px;
  5964. height:31px;
  5965. display:flex;
  5966. font-size:11px;
  5967. color:#AAAAAA;
  5968. }
  5969. #u127150 .text {
  5970. position:absolute;
  5971. align-self:flex-start;
  5972. padding:2px 2px 2px 2px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u127150_div.disabled {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:534px;
  5982. height:31px;
  5983. background:inherit;
  5984. background-color:rgba(240, 240, 240, 1);
  5985. border:none;
  5986. border-radius:0px;
  5987. -moz-box-shadow:none;
  5988. -webkit-box-shadow:none;
  5989. box-shadow:none;
  5990. font-size:11px;
  5991. color:#AAAAAA;
  5992. }
  5993. #u127150.disabled {
  5994. }
  5995. .u127150_input_option {
  5996. font-size:11px;
  5997. }
  5998. #u127151 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:0px;
  6004. height:0px;
  6005. }
  6006. #u127152_div {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:553px;
  6012. height:40px;
  6013. background:inherit;
  6014. background-color:rgba(255, 255, 255, 1);
  6015. box-sizing:border-box;
  6016. border-width:1px;
  6017. border-style:solid;
  6018. border-color:rgba(215, 215, 215, 1);
  6019. border-radius:4px;
  6020. -moz-box-shadow:none;
  6021. -webkit-box-shadow:none;
  6022. box-shadow:none;
  6023. font-size:11px;
  6024. }
  6025. #u127152 {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:1792px;
  6029. top:243px;
  6030. width:553px;
  6031. height:40px;
  6032. display:flex;
  6033. font-size:11px;
  6034. }
  6035. #u127152 .text {
  6036. position:absolute;
  6037. align-self:center;
  6038. padding:2px 2px 2px 2px;
  6039. box-sizing:border-box;
  6040. width:100%;
  6041. }
  6042. #u127152_text {
  6043. border-width:0px;
  6044. word-wrap:break-word;
  6045. text-transform:none;
  6046. visibility:hidden;
  6047. }
  6048. #u127153_input {
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:534px;
  6053. height:31px;
  6054. padding:2px 2px 2px 2px;
  6055. font-family:'ArialMT', 'Arial', sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:11px;
  6059. letter-spacing:normal;
  6060. color:#AAAAAA;
  6061. vertical-align:none;
  6062. text-align:left;
  6063. text-transform:none;
  6064. background-color:transparent;
  6065. border-color:transparent;
  6066. }
  6067. #u127153_input.disabled {
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:534px;
  6072. height:31px;
  6073. padding:2px 2px 2px 2px;
  6074. font-family:'ArialMT', 'Arial', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:11px;
  6078. letter-spacing:normal;
  6079. color:#AAAAAA;
  6080. vertical-align:none;
  6081. text-align:left;
  6082. text-transform:none;
  6083. background-color:transparent;
  6084. border-color:transparent;
  6085. }
  6086. #u127153_div {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:0px;
  6090. top:0px;
  6091. width:534px;
  6092. height:31px;
  6093. background:inherit;
  6094. background-color:rgba(255, 255, 255, 1);
  6095. border:none;
  6096. border-radius:0px;
  6097. -moz-box-shadow:none;
  6098. -webkit-box-shadow:none;
  6099. box-shadow:none;
  6100. font-size:11px;
  6101. color:#AAAAAA;
  6102. }
  6103. #u127153 {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:1804px;
  6107. top:247px;
  6108. width:534px;
  6109. height:31px;
  6110. display:flex;
  6111. font-size:11px;
  6112. color:#AAAAAA;
  6113. }
  6114. #u127153 .text {
  6115. position:absolute;
  6116. align-self:flex-start;
  6117. padding:2px 2px 2px 2px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u127153_div.disabled {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:0px;
  6125. top:0px;
  6126. width:534px;
  6127. height:31px;
  6128. background:inherit;
  6129. background-color:rgba(240, 240, 240, 1);
  6130. border:none;
  6131. border-radius:0px;
  6132. -moz-box-shadow:none;
  6133. -webkit-box-shadow:none;
  6134. box-shadow:none;
  6135. font-size:11px;
  6136. color:#AAAAAA;
  6137. }
  6138. #u127153.disabled {
  6139. }
  6140. .u127153_input_option {
  6141. font-size:11px;
  6142. }
  6143. #u127154_div {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:435px;
  6149. height:30px;
  6150. background:inherit;
  6151. background-color:rgba(255, 255, 255, 0);
  6152. border:none;
  6153. border-top:0px;
  6154. border-right:0px;
  6155. border-bottom:0px;
  6156. border-radius:0px;
  6157. border-top-left-radius:0px;
  6158. border-bottom-left-radius:0px;
  6159. -moz-box-shadow:none;
  6160. -webkit-box-shadow:none;
  6161. box-shadow:none;
  6162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6163. font-weight:400;
  6164. font-style:normal;
  6165. font-size:14px;
  6166. color:#D9001B;
  6167. }
  6168. #u127154 {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:1792px;
  6172. top:574px;
  6173. width:435px;
  6174. height:30px;
  6175. display:flex;
  6176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6177. font-weight:400;
  6178. font-style:normal;
  6179. font-size:14px;
  6180. color:#D9001B;
  6181. }
  6182. #u127154 .text {
  6183. position:absolute;
  6184. align-self:center;
  6185. padding:5px 0px 5px 0px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u127154_text {
  6190. border-width:0px;
  6191. white-space:nowrap;
  6192. text-transform:none;
  6193. }
  6194. #u127155 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:0px;
  6200. height:0px;
  6201. }
  6202. #u127156_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:800px;
  6208. height:1200px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 1);
  6211. box-sizing:border-box;
  6212. border-width:1px;
  6213. border-style:solid;
  6214. border-color:rgba(215, 215, 215, 1);
  6215. border-radius:0px;
  6216. -moz-box-shadow:none;
  6217. -webkit-box-shadow:none;
  6218. box-shadow:none;
  6219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. font-size:14px;
  6223. color:#AAAAAA;
  6224. text-align:center;
  6225. line-height:30px;
  6226. }
  6227. #u127156 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:2479px;
  6231. top:50px;
  6232. width:800px;
  6233. height:1200px;
  6234. display:flex;
  6235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:14px;
  6239. color:#AAAAAA;
  6240. text-align:center;
  6241. line-height:30px;
  6242. }
  6243. #u127156 .text {
  6244. position:absolute;
  6245. align-self:center;
  6246. padding:5px 10px 5px 10px;
  6247. box-sizing:border-box;
  6248. width:100%;
  6249. }
  6250. #u127156_text {
  6251. border-width:0px;
  6252. word-wrap:break-word;
  6253. text-transform:none;
  6254. visibility:hidden;
  6255. }
  6256. #u127157_div {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:0px;
  6260. top:0px;
  6261. width:736px;
  6262. height:60px;
  6263. background:inherit;
  6264. background-color:rgba(242, 242, 242, 1);
  6265. border:none;
  6266. border-radius:4px;
  6267. -moz-box-shadow:none;
  6268. -webkit-box-shadow:none;
  6269. box-shadow:none;
  6270. font-size:11px;
  6271. }
  6272. #u127157 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:2499px;
  6276. top:113px;
  6277. width:736px;
  6278. height:60px;
  6279. display:flex;
  6280. font-size:11px;
  6281. }
  6282. #u127157 .text {
  6283. position:absolute;
  6284. align-self:center;
  6285. padding:2px 2px 2px 2px;
  6286. box-sizing:border-box;
  6287. width:100%;
  6288. }
  6289. #u127157_text {
  6290. border-width:0px;
  6291. word-wrap:break-word;
  6292. text-transform:none;
  6293. visibility:hidden;
  6294. }
  6295. #u127158_div {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:155px;
  6301. height:35px;
  6302. background:inherit;
  6303. background-color:rgba(255, 255, 255, 0);
  6304. border:none;
  6305. border-top:0px;
  6306. border-right:0px;
  6307. border-bottom:0px;
  6308. border-radius:0px;
  6309. border-top-left-radius:0px;
  6310. border-bottom-left-radius:0px;
  6311. -moz-box-shadow:none;
  6312. -webkit-box-shadow:none;
  6313. box-shadow:none;
  6314. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6315. font-weight:500;
  6316. font-style:normal;
  6317. font-size:18px;
  6318. }
  6319. #u127158 {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:2499px;
  6323. top:68px;
  6324. width:155px;
  6325. height:35px;
  6326. display:flex;
  6327. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6328. font-weight:500;
  6329. font-style:normal;
  6330. font-size:18px;
  6331. }
  6332. #u127158 .text {
  6333. position:absolute;
  6334. align-self:center;
  6335. padding:5px 10px 5px 0px;
  6336. box-sizing:border-box;
  6337. width:100%;
  6338. }
  6339. #u127158_text {
  6340. border-width:0px;
  6341. white-space:nowrap;
  6342. text-transform:none;
  6343. }
  6344. #u127159_div {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:740px;
  6350. height:40px;
  6351. background:inherit;
  6352. background-color:rgba(255, 255, 128, 0.0980392156862745);
  6353. border:none;
  6354. border-radius:6px;
  6355. -moz-box-shadow:none;
  6356. -webkit-box-shadow:none;
  6357. box-shadow:none;
  6358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. font-size:12px;
  6362. color:#F59A23;
  6363. text-align:left;
  6364. }
  6365. #u127159 {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:2499px;
  6369. top:173px;
  6370. width:740px;
  6371. height:40px;
  6372. display:flex;
  6373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:12px;
  6377. color:#F59A23;
  6378. text-align:left;
  6379. }
  6380. #u127159 .text {
  6381. position:absolute;
  6382. align-self:center;
  6383. padding:2px 2px 2px 10px;
  6384. box-sizing:border-box;
  6385. width:100%;
  6386. }
  6387. #u127159_text {
  6388. border-width:0px;
  6389. word-wrap:break-word;
  6390. text-transform:none;
  6391. }
  6392. #u127160 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:0px;
  6396. top:0px;
  6397. width:0px;
  6398. height:0px;
  6399. }
  6400. #u127161 {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:0px;
  6406. height:0px;
  6407. }
  6408. #u127162_div {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:552px;
  6414. height:100px;
  6415. background:inherit;
  6416. background-color:rgba(255, 255, 255, 1);
  6417. box-sizing:border-box;
  6418. border-width:1px;
  6419. border-style:solid;
  6420. border-color:rgba(215, 215, 215, 1);
  6421. border-radius:4px;
  6422. -moz-box-shadow:none;
  6423. -webkit-box-shadow:none;
  6424. box-shadow:none;
  6425. font-size:11px;
  6426. }
  6427. #u127162 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:2647px;
  6431. top:449px;
  6432. width:552px;
  6433. height:100px;
  6434. display:flex;
  6435. font-size:11px;
  6436. }
  6437. #u127162 .text {
  6438. position:absolute;
  6439. align-self:center;
  6440. padding:2px 2px 2px 2px;
  6441. box-sizing:border-box;
  6442. width:100%;
  6443. }
  6444. #u127162_text {
  6445. border-width:0px;
  6446. word-wrap:break-word;
  6447. text-transform:none;
  6448. visibility:hidden;
  6449. }
  6450. #u127163_input {
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:515px;
  6455. height:80px;
  6456. padding:2px 2px 2px 2px;
  6457. font-family:'ArialMT', 'Arial', sans-serif;
  6458. font-weight:400;
  6459. font-style:normal;
  6460. font-size:13px;
  6461. letter-spacing:normal;
  6462. color:#000000;
  6463. vertical-align:none;
  6464. text-align:left;
  6465. text-transform:none;
  6466. background-color:transparent;
  6467. border-color:transparent;
  6468. resize:none;
  6469. }
  6470. #u127163_input.disabled {
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:515px;
  6475. height:80px;
  6476. padding:2px 2px 2px 2px;
  6477. font-family:'ArialMT', 'Arial', sans-serif;
  6478. font-weight:400;
  6479. font-style:normal;
  6480. font-size:13px;
  6481. letter-spacing:normal;
  6482. color:#000000;
  6483. vertical-align:none;
  6484. text-align:left;
  6485. text-transform:none;
  6486. background-color:transparent;
  6487. border-color:transparent;
  6488. resize:none;
  6489. }
  6490. #u127163_div {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:515px;
  6496. height:80px;
  6497. background:inherit;
  6498. background-color:rgba(255, 255, 255, 1);
  6499. border:none;
  6500. border-radius:0px;
  6501. -moz-box-shadow:none;
  6502. -webkit-box-shadow:none;
  6503. box-shadow:none;
  6504. }
  6505. #u127163 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:2666px;
  6509. top:459px;
  6510. width:515px;
  6511. height:80px;
  6512. display:flex;
  6513. }
  6514. #u127163 .text {
  6515. position:absolute;
  6516. align-self:flex-start;
  6517. padding:2px 2px 2px 2px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u127163_div.disabled {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:515px;
  6527. height:80px;
  6528. background:inherit;
  6529. background-color:rgba(240, 240, 240, 1);
  6530. border:none;
  6531. border-radius:0px;
  6532. -moz-box-shadow:none;
  6533. -webkit-box-shadow:none;
  6534. box-shadow:none;
  6535. }
  6536. #u127163.disabled {
  6537. }
  6538. #u127164_div {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:0px;
  6542. top:0px;
  6543. width:56px;
  6544. height:14px;
  6545. background:inherit;
  6546. background-color:rgba(242, 242, 242, 1);
  6547. border:none;
  6548. border-radius:19px;
  6549. -moz-box-shadow:none;
  6550. -webkit-box-shadow:none;
  6551. box-shadow:none;
  6552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6553. font-weight:400;
  6554. font-style:normal;
  6555. font-size:10px;
  6556. color:#7F7F7F;
  6557. }
  6558. #u127164 {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:3136px;
  6562. top:530px;
  6563. width:56px;
  6564. height:14px;
  6565. display:flex;
  6566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:10px;
  6570. color:#7F7F7F;
  6571. }
  6572. #u127164 .text {
  6573. position:absolute;
  6574. align-self:center;
  6575. padding:0px 0px 0px 0px;
  6576. box-sizing:border-box;
  6577. width:100%;
  6578. }
  6579. #u127164_text {
  6580. border-width:0px;
  6581. word-wrap:break-word;
  6582. text-transform:none;
  6583. }
  6584. #u127165_div {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:78px;
  6590. height:30px;
  6591. background:inherit;
  6592. background-color:rgba(255, 255, 255, 0);
  6593. border:none;
  6594. border-top:0px;
  6595. border-right:0px;
  6596. border-bottom:0px;
  6597. border-radius:0px;
  6598. border-top-left-radius:0px;
  6599. border-bottom-left-radius:0px;
  6600. -moz-box-shadow:none;
  6601. -webkit-box-shadow:none;
  6602. box-shadow:none;
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:14px;
  6607. color:#7F7F7F;
  6608. text-align:right;
  6609. }
  6610. #u127165 {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:2568px;
  6614. top:354px;
  6615. width:78px;
  6616. height:30px;
  6617. display:flex;
  6618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6619. font-weight:400;
  6620. font-style:normal;
  6621. font-size:14px;
  6622. color:#7F7F7F;
  6623. text-align:right;
  6624. }
  6625. #u127165 .text {
  6626. position:absolute;
  6627. align-self:center;
  6628. padding:5px 0px 5px 0px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u127165_text {
  6633. border-width:0px;
  6634. white-space:nowrap;
  6635. text-transform:none;
  6636. }
  6637. #u127166 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:0px;
  6641. top:0px;
  6642. width:0px;
  6643. height:0px;
  6644. }
  6645. #u127167_div {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:553px;
  6651. height:40px;
  6652. background:inherit;
  6653. background-color:rgba(255, 255, 255, 1);
  6654. box-sizing:border-box;
  6655. border-width:1px;
  6656. border-style:solid;
  6657. border-color:rgba(215, 215, 215, 1);
  6658. border-radius:4px;
  6659. -moz-box-shadow:none;
  6660. -webkit-box-shadow:none;
  6661. box-shadow:none;
  6662. font-size:11px;
  6663. }
  6664. #u127167 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:2646px;
  6668. top:349px;
  6669. width:553px;
  6670. height:40px;
  6671. display:flex;
  6672. font-size:11px;
  6673. }
  6674. #u127167 .text {
  6675. position:absolute;
  6676. align-self:center;
  6677. padding:2px 2px 2px 2px;
  6678. box-sizing:border-box;
  6679. width:100%;
  6680. }
  6681. #u127167_text {
  6682. border-width:0px;
  6683. word-wrap:break-word;
  6684. text-transform:none;
  6685. visibility:hidden;
  6686. }
  6687. #u127168_input {
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:502px;
  6692. height:25px;
  6693. padding:2px 2px 2px 2px;
  6694. font-family:'ArialMT', 'Arial', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. font-size:13px;
  6698. letter-spacing:normal;
  6699. color:#000000;
  6700. vertical-align:none;
  6701. text-align:left;
  6702. text-transform:none;
  6703. background-color:transparent;
  6704. border-color:transparent;
  6705. }
  6706. #u127168_input.disabled {
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:502px;
  6711. height:25px;
  6712. padding:2px 2px 2px 2px;
  6713. font-family:'ArialMT', 'Arial', sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:13px;
  6717. letter-spacing:normal;
  6718. color:#000000;
  6719. vertical-align:none;
  6720. text-align:left;
  6721. text-transform:none;
  6722. background-color:transparent;
  6723. border-color:transparent;
  6724. }
  6725. #u127168_div {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:502px;
  6731. height:25px;
  6732. background:inherit;
  6733. background-color:rgba(255, 255, 255, 1);
  6734. border:none;
  6735. border-radius:0px;
  6736. -moz-box-shadow:none;
  6737. -webkit-box-shadow:none;
  6738. box-shadow:none;
  6739. }
  6740. #u127168 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:2671px;
  6744. top:357px;
  6745. width:502px;
  6746. height:25px;
  6747. display:flex;
  6748. }
  6749. #u127168 .text {
  6750. position:absolute;
  6751. align-self:center;
  6752. padding:2px 2px 2px 2px;
  6753. box-sizing:border-box;
  6754. width:100%;
  6755. }
  6756. #u127168_div.disabled {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:502px;
  6762. height:25px;
  6763. background:inherit;
  6764. background-color:rgba(240, 240, 240, 1);
  6765. border:none;
  6766. border-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. }
  6771. #u127168.disabled {
  6772. }
  6773. #u127169 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:0px;
  6779. height:0px;
  6780. }
  6781. #u127170_div {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:0px;
  6785. top:0px;
  6786. width:800px;
  6787. height:50px;
  6788. background:inherit;
  6789. background-color:rgba(255, 255, 255, 1);
  6790. box-sizing:border-box;
  6791. border-width:1px;
  6792. border-style:solid;
  6793. border-color:rgba(215, 215, 215, 1);
  6794. border-radius:0px;
  6795. -moz-box-shadow:none;
  6796. -webkit-box-shadow:none;
  6797. box-shadow:none;
  6798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6799. font-weight:400;
  6800. font-style:normal;
  6801. font-size:14px;
  6802. color:#AAAAAA;
  6803. text-align:center;
  6804. line-height:30px;
  6805. }
  6806. #u127170 {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:2479px;
  6810. top:1200px;
  6811. width:800px;
  6812. height:50px;
  6813. display:flex;
  6814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6815. font-weight:400;
  6816. font-style:normal;
  6817. font-size:14px;
  6818. color:#AAAAAA;
  6819. text-align:center;
  6820. line-height:30px;
  6821. }
  6822. #u127170 .text {
  6823. position:absolute;
  6824. align-self:center;
  6825. padding:5px 10px 5px 10px;
  6826. box-sizing:border-box;
  6827. width:100%;
  6828. }
  6829. #u127170_text {
  6830. border-width:0px;
  6831. word-wrap:break-word;
  6832. text-transform:none;
  6833. visibility:hidden;
  6834. }
  6835. #u127171_div {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:80px;
  6841. height:30px;
  6842. background:inherit;
  6843. background-color:rgba(24, 144, 255, 1);
  6844. border:none;
  6845. border-radius:4px;
  6846. -moz-box-shadow:none;
  6847. -webkit-box-shadow:none;
  6848. box-shadow:none;
  6849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:14px;
  6853. color:#FFFFFF;
  6854. }
  6855. #u127171 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:3179px;
  6859. top:1210px;
  6860. width:80px;
  6861. height:30px;
  6862. display:flex;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:14px;
  6867. color:#FFFFFF;
  6868. }
  6869. #u127171 .text {
  6870. position:absolute;
  6871. align-self:center;
  6872. padding:2px 2px 2px 2px;
  6873. box-sizing:border-box;
  6874. width:100%;
  6875. }
  6876. #u127171_text {
  6877. border-width:0px;
  6878. word-wrap:break-word;
  6879. text-transform:none;
  6880. }
  6881. #u127172_div {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:0px;
  6885. top:0px;
  6886. width:80px;
  6887. height:30px;
  6888. background:inherit;
  6889. background-color:rgba(255, 255, 255, 1);
  6890. box-sizing:border-box;
  6891. border-width:1px;
  6892. border-style:solid;
  6893. border-color:rgba(170, 170, 170, 1);
  6894. border-radius:4px;
  6895. -moz-box-shadow:none;
  6896. -webkit-box-shadow:none;
  6897. box-shadow:none;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:14px;
  6902. }
  6903. #u127172 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:3079px;
  6907. top:1210px;
  6908. width:80px;
  6909. height:30px;
  6910. display:flex;
  6911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. font-size:14px;
  6915. }
  6916. #u127172 .text {
  6917. position:absolute;
  6918. align-self:center;
  6919. padding:2px 2px 2px 2px;
  6920. box-sizing:border-box;
  6921. width:100%;
  6922. }
  6923. #u127172_text {
  6924. border-width:0px;
  6925. word-wrap:break-word;
  6926. text-transform:none;
  6927. }
  6928. #u127173_div {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:71px;
  6934. height:30px;
  6935. background:inherit;
  6936. background-color:rgba(255, 255, 255, 0);
  6937. border:none;
  6938. border-top:0px;
  6939. border-right:0px;
  6940. border-bottom:0px;
  6941. border-radius:0px;
  6942. border-top-left-radius:0px;
  6943. border-bottom-left-radius:0px;
  6944. -moz-box-shadow:none;
  6945. -webkit-box-shadow:none;
  6946. box-shadow:none;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:14px;
  6951. color:#7F7F7F;
  6952. }
  6953. #u127173 {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:2520px;
  6957. top:129px;
  6958. width:71px;
  6959. height:30px;
  6960. display:flex;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:14px;
  6965. color:#7F7F7F;
  6966. }
  6967. #u127173 .text {
  6968. position:absolute;
  6969. align-self:center;
  6970. padding:5px 0px 5px 0px;
  6971. box-sizing:border-box;
  6972. width:100%;
  6973. }
  6974. #u127173_text {
  6975. border-width:0px;
  6976. white-space:nowrap;
  6977. text-transform:none;
  6978. }
  6979. #u127174_div {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:0px;
  6983. top:0px;
  6984. width:155px;
  6985. height:30px;
  6986. background:inherit;
  6987. background-color:rgba(255, 255, 255, 0);
  6988. border:none;
  6989. border-top:0px;
  6990. border-right:0px;
  6991. border-bottom:0px;
  6992. border-radius:0px;
  6993. border-top-left-radius:0px;
  6994. border-bottom-left-radius:0px;
  6995. -moz-box-shadow:none;
  6996. -webkit-box-shadow:none;
  6997. box-shadow:none;
  6998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6999. font-weight:400;
  7000. font-style:normal;
  7001. font-size:14px;
  7002. }
  7003. #u127174 {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:2599px;
  7007. top:129px;
  7008. width:155px;
  7009. height:30px;
  7010. display:flex;
  7011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7012. font-weight:400;
  7013. font-style:normal;
  7014. font-size:14px;
  7015. }
  7016. #u127174 .text {
  7017. position:absolute;
  7018. align-self:center;
  7019. padding:5px 0px 5px 0px;
  7020. box-sizing:border-box;
  7021. width:100%;
  7022. }
  7023. #u127174_text {
  7024. border-width:0px;
  7025. white-space:nowrap;
  7026. text-transform:none;
  7027. }
  7028. #u127175_div {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:71px;
  7034. height:30px;
  7035. background:inherit;
  7036. background-color:rgba(255, 255, 255, 0);
  7037. border:none;
  7038. border-top:0px;
  7039. border-right:0px;
  7040. border-bottom:0px;
  7041. border-radius:0px;
  7042. border-top-left-radius:0px;
  7043. border-bottom-left-radius:0px;
  7044. -moz-box-shadow:none;
  7045. -webkit-box-shadow:none;
  7046. box-shadow:none;
  7047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7048. font-weight:400;
  7049. font-style:normal;
  7050. font-size:14px;
  7051. color:#7F7F7F;
  7052. }
  7053. #u127175 {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:2923px;
  7057. top:129px;
  7058. width:71px;
  7059. height:30px;
  7060. display:flex;
  7061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7062. font-weight:400;
  7063. font-style:normal;
  7064. font-size:14px;
  7065. color:#7F7F7F;
  7066. }
  7067. #u127175 .text {
  7068. position:absolute;
  7069. align-self:center;
  7070. padding:5px 0px 5px 0px;
  7071. box-sizing:border-box;
  7072. width:100%;
  7073. }
  7074. #u127175_text {
  7075. border-width:0px;
  7076. white-space:nowrap;
  7077. text-transform:none;
  7078. }
  7079. #u127176_div {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:0px;
  7083. top:0px;
  7084. width:57px;
  7085. height:30px;
  7086. background:inherit;
  7087. background-color:rgba(255, 255, 255, 0);
  7088. border:none;
  7089. border-top:0px;
  7090. border-right:0px;
  7091. border-bottom:0px;
  7092. border-radius:0px;
  7093. border-top-left-radius:0px;
  7094. border-bottom-left-radius:0px;
  7095. -moz-box-shadow:none;
  7096. -webkit-box-shadow:none;
  7097. box-shadow:none;
  7098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7099. font-weight:400;
  7100. font-style:normal;
  7101. font-size:14px;
  7102. }
  7103. #u127176 {
  7104. border-width:0px;
  7105. position:absolute;
  7106. left:3002px;
  7107. top:129px;
  7108. width:57px;
  7109. height:30px;
  7110. display:flex;
  7111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7112. font-weight:400;
  7113. font-style:normal;
  7114. font-size:14px;
  7115. }
  7116. #u127176 .text {
  7117. position:absolute;
  7118. align-self:center;
  7119. padding:5px 0px 5px 0px;
  7120. box-sizing:border-box;
  7121. width:100%;
  7122. }
  7123. #u127176_text {
  7124. border-width:0px;
  7125. white-space:nowrap;
  7126. text-transform:none;
  7127. }
  7128. #u127177_div {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:0px;
  7132. top:0px;
  7133. width:78px;
  7134. height:30px;
  7135. background:inherit;
  7136. background-color:rgba(255, 255, 255, 0);
  7137. border:none;
  7138. border-top:0px;
  7139. border-right:0px;
  7140. border-bottom:0px;
  7141. border-radius:0px;
  7142. border-top-left-radius:0px;
  7143. border-bottom-left-radius:0px;
  7144. -moz-box-shadow:none;
  7145. -webkit-box-shadow:none;
  7146. box-shadow:none;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:14px;
  7151. color:#7F7F7F;
  7152. }
  7153. #u127177 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:2569px;
  7157. top:404px;
  7158. width:78px;
  7159. height:30px;
  7160. display:flex;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:14px;
  7165. color:#7F7F7F;
  7166. }
  7167. #u127177 .text {
  7168. position:absolute;
  7169. align-self:center;
  7170. padding:5px 0px 5px 0px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u127177_text {
  7175. border-width:0px;
  7176. white-space:nowrap;
  7177. text-transform:none;
  7178. }
  7179. #u127178 {
  7180. border-width:0px;
  7181. position:absolute;
  7182. left:0px;
  7183. top:0px;
  7184. width:0px;
  7185. height:0px;
  7186. }
  7187. #u127179_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:553px;
  7193. height:40px;
  7194. background:inherit;
  7195. background-color:rgba(255, 255, 255, 1);
  7196. box-sizing:border-box;
  7197. border-width:1px;
  7198. border-style:solid;
  7199. border-color:rgba(215, 215, 215, 1);
  7200. border-radius:4px;
  7201. -moz-box-shadow:none;
  7202. -webkit-box-shadow:none;
  7203. box-shadow:none;
  7204. font-size:11px;
  7205. }
  7206. #u127179 {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:2647px;
  7210. top:399px;
  7211. width:553px;
  7212. height:40px;
  7213. display:flex;
  7214. font-size:11px;
  7215. }
  7216. #u127179 .text {
  7217. position:absolute;
  7218. align-self:center;
  7219. padding:2px 2px 2px 2px;
  7220. box-sizing:border-box;
  7221. width:100%;
  7222. }
  7223. #u127179_text {
  7224. border-width:0px;
  7225. word-wrap:break-word;
  7226. text-transform:none;
  7227. visibility:hidden;
  7228. }
  7229. #u127180_input {
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:502px;
  7234. height:25px;
  7235. padding:2px 2px 2px 2px;
  7236. font-family:'ArialMT', 'Arial', sans-serif;
  7237. font-weight:400;
  7238. font-style:normal;
  7239. font-size:13px;
  7240. letter-spacing:normal;
  7241. color:#000000;
  7242. vertical-align:none;
  7243. text-align:left;
  7244. text-transform:none;
  7245. background-color:transparent;
  7246. border-color:transparent;
  7247. }
  7248. #u127180_input.disabled {
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:502px;
  7253. height:25px;
  7254. padding:2px 2px 2px 2px;
  7255. font-family:'ArialMT', 'Arial', sans-serif;
  7256. font-weight:400;
  7257. font-style:normal;
  7258. font-size:13px;
  7259. letter-spacing:normal;
  7260. color:#000000;
  7261. vertical-align:none;
  7262. text-align:left;
  7263. text-transform:none;
  7264. background-color:transparent;
  7265. border-color:transparent;
  7266. }
  7267. #u127180_div {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:502px;
  7273. height:25px;
  7274. background:inherit;
  7275. background-color:rgba(255, 255, 255, 1);
  7276. border:none;
  7277. border-radius:0px;
  7278. -moz-box-shadow:none;
  7279. -webkit-box-shadow:none;
  7280. box-shadow:none;
  7281. }
  7282. #u127180 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:2672px;
  7286. top:407px;
  7287. width:502px;
  7288. height:25px;
  7289. display:flex;
  7290. }
  7291. #u127180 .text {
  7292. position:absolute;
  7293. align-self:center;
  7294. padding:2px 2px 2px 2px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u127180_div.disabled {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:0px;
  7302. top:0px;
  7303. width:502px;
  7304. height:25px;
  7305. background:inherit;
  7306. background-color:rgba(240, 240, 240, 1);
  7307. border:none;
  7308. border-radius:0px;
  7309. -moz-box-shadow:none;
  7310. -webkit-box-shadow:none;
  7311. box-shadow:none;
  7312. }
  7313. #u127180.disabled {
  7314. }
  7315. #u127181_div {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:71px;
  7321. height:30px;
  7322. background:inherit;
  7323. background-color:rgba(255, 255, 255, 0);
  7324. border:none;
  7325. border-top:0px;
  7326. border-right:0px;
  7327. border-bottom:0px;
  7328. border-radius:0px;
  7329. border-top-left-radius:0px;
  7330. border-bottom-left-radius:0px;
  7331. -moz-box-shadow:none;
  7332. -webkit-box-shadow:none;
  7333. box-shadow:none;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:14px;
  7338. color:#7F7F7F;
  7339. }
  7340. #u127181 {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:2576px;
  7344. top:449px;
  7345. width:71px;
  7346. height:30px;
  7347. display:flex;
  7348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7349. font-weight:400;
  7350. font-style:normal;
  7351. font-size:14px;
  7352. color:#7F7F7F;
  7353. }
  7354. #u127181 .text {
  7355. position:absolute;
  7356. align-self:center;
  7357. padding:5px 0px 5px 0px;
  7358. box-sizing:border-box;
  7359. width:100%;
  7360. }
  7361. #u127181_text {
  7362. border-width:0px;
  7363. white-space:nowrap;
  7364. text-transform:none;
  7365. }
  7366. #u127182_div {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:40px;
  7372. height:40px;
  7373. background:inherit;
  7374. background-color:rgba(255, 255, 255, 0);
  7375. border:none;
  7376. border-top:0px;
  7377. border-right:0px;
  7378. border-bottom:0px;
  7379. border-radius:0px;
  7380. border-top-left-radius:0px;
  7381. border-bottom-left-radius:0px;
  7382. -moz-box-shadow:none;
  7383. -webkit-box-shadow:none;
  7384. box-shadow:none;
  7385. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7386. font-weight:500;
  7387. font-style:normal;
  7388. font-size:18px;
  7389. text-align:center;
  7390. }
  7391. #u127182 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:3239px;
  7395. top:50px;
  7396. width:40px;
  7397. height:40px;
  7398. display:flex;
  7399. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7400. font-weight:500;
  7401. font-style:normal;
  7402. font-size:18px;
  7403. text-align:center;
  7404. }
  7405. #u127182 .text {
  7406. position:absolute;
  7407. align-self:center;
  7408. padding:5px 10px 5px 0px;
  7409. box-sizing:border-box;
  7410. width:100%;
  7411. }
  7412. #u127182_text {
  7413. border-width:0px;
  7414. word-wrap:break-word;
  7415. text-transform:none;
  7416. }
  7417. #u127183_div {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:0px;
  7421. top:0px;
  7422. width:106px;
  7423. height:30px;
  7424. background:inherit;
  7425. background-color:rgba(255, 255, 255, 0);
  7426. border:none;
  7427. border-top:0px;
  7428. border-right:0px;
  7429. border-bottom:0px;
  7430. border-radius:0px;
  7431. border-top-left-radius:0px;
  7432. border-bottom-left-radius:0px;
  7433. -moz-box-shadow:none;
  7434. -webkit-box-shadow:none;
  7435. box-shadow:none;
  7436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7437. font-weight:400;
  7438. font-style:normal;
  7439. font-size:14px;
  7440. color:#7F7F7F;
  7441. }
  7442. #u127183 {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:2540px;
  7446. top:304px;
  7447. width:106px;
  7448. height:30px;
  7449. display:flex;
  7450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7451. font-weight:400;
  7452. font-style:normal;
  7453. font-size:14px;
  7454. color:#7F7F7F;
  7455. }
  7456. #u127183 .text {
  7457. position:absolute;
  7458. align-self:center;
  7459. padding:5px 0px 5px 0px;
  7460. box-sizing:border-box;
  7461. width:100%;
  7462. }
  7463. #u127183_text {
  7464. border-width:0px;
  7465. white-space:nowrap;
  7466. text-transform:none;
  7467. }
  7468. #u127184_div {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:0px;
  7472. top:0px;
  7473. width:78px;
  7474. height:30px;
  7475. background:inherit;
  7476. background-color:rgba(255, 255, 255, 0);
  7477. border:none;
  7478. border-top:0px;
  7479. border-right:0px;
  7480. border-bottom:0px;
  7481. border-radius:0px;
  7482. border-top-left-radius:0px;
  7483. border-bottom-left-radius:0px;
  7484. -moz-box-shadow:none;
  7485. -webkit-box-shadow:none;
  7486. box-shadow:none;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:14px;
  7491. color:#7F7F7F;
  7492. }
  7493. #u127184 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:2560px;
  7497. top:618px;
  7498. width:78px;
  7499. height:30px;
  7500. display:flex;
  7501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7502. font-weight:400;
  7503. font-style:normal;
  7504. font-size:14px;
  7505. color:#7F7F7F;
  7506. }
  7507. #u127184 .text {
  7508. position:absolute;
  7509. align-self:center;
  7510. padding:5px 0px 5px 0px;
  7511. box-sizing:border-box;
  7512. width:100%;
  7513. }
  7514. #u127184_text {
  7515. border-width:0px;
  7516. white-space:nowrap;
  7517. text-transform:none;
  7518. }
  7519. #u127185 {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:0px;
  7523. top:0px;
  7524. width:0px;
  7525. height:0px;
  7526. }
  7527. #u127186_div {
  7528. border-width:0px;
  7529. position:absolute;
  7530. left:0px;
  7531. top:0px;
  7532. width:553px;
  7533. height:40px;
  7534. background:inherit;
  7535. background-color:rgba(255, 255, 255, 1);
  7536. box-sizing:border-box;
  7537. border-width:1px;
  7538. border-style:solid;
  7539. border-color:rgba(215, 215, 215, 1);
  7540. border-radius:4px;
  7541. -moz-box-shadow:none;
  7542. -webkit-box-shadow:none;
  7543. box-shadow:none;
  7544. font-size:11px;
  7545. }
  7546. #u127186 {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:2646px;
  7550. top:613px;
  7551. width:553px;
  7552. height:40px;
  7553. display:flex;
  7554. font-size:11px;
  7555. }
  7556. #u127186 .text {
  7557. position:absolute;
  7558. align-self:center;
  7559. padding:2px 2px 2px 2px;
  7560. box-sizing:border-box;
  7561. width:100%;
  7562. }
  7563. #u127186_text {
  7564. border-width:0px;
  7565. word-wrap:break-word;
  7566. text-transform:none;
  7567. visibility:hidden;
  7568. }
  7569. #u127187_input {
  7570. position:absolute;
  7571. left:0px;
  7572. top:0px;
  7573. width:534px;
  7574. height:31px;
  7575. padding:2px 2px 2px 2px;
  7576. font-family:'ArialMT', 'Arial', sans-serif;
  7577. font-weight:400;
  7578. font-style:normal;
  7579. font-size:11px;
  7580. letter-spacing:normal;
  7581. color:#AAAAAA;
  7582. vertical-align:none;
  7583. text-align:left;
  7584. text-transform:none;
  7585. background-color:transparent;
  7586. border-color:transparent;
  7587. }
  7588. #u127187_input.disabled {
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:534px;
  7593. height:31px;
  7594. padding:2px 2px 2px 2px;
  7595. font-family:'ArialMT', 'Arial', sans-serif;
  7596. font-weight:400;
  7597. font-style:normal;
  7598. font-size:11px;
  7599. letter-spacing:normal;
  7600. color:#AAAAAA;
  7601. vertical-align:none;
  7602. text-align:left;
  7603. text-transform:none;
  7604. background-color:transparent;
  7605. border-color:transparent;
  7606. }
  7607. #u127187_div {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:0px;
  7611. top:0px;
  7612. width:534px;
  7613. height:31px;
  7614. background:inherit;
  7615. background-color:rgba(255, 255, 255, 1);
  7616. border:none;
  7617. border-radius:0px;
  7618. -moz-box-shadow:none;
  7619. -webkit-box-shadow:none;
  7620. box-shadow:none;
  7621. font-size:11px;
  7622. color:#AAAAAA;
  7623. }
  7624. #u127187 {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:2658px;
  7628. top:617px;
  7629. width:534px;
  7630. height:31px;
  7631. display:flex;
  7632. font-size:11px;
  7633. color:#AAAAAA;
  7634. }
  7635. #u127187 .text {
  7636. position:absolute;
  7637. align-self:flex-start;
  7638. padding:2px 2px 2px 2px;
  7639. box-sizing:border-box;
  7640. width:100%;
  7641. }
  7642. #u127187_div.disabled {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:0px;
  7646. top:0px;
  7647. width:534px;
  7648. height:31px;
  7649. background:inherit;
  7650. background-color:rgba(240, 240, 240, 1);
  7651. border:none;
  7652. border-radius:0px;
  7653. -moz-box-shadow:none;
  7654. -webkit-box-shadow:none;
  7655. box-shadow:none;
  7656. font-size:11px;
  7657. color:#AAAAAA;
  7658. }
  7659. #u127187.disabled {
  7660. }
  7661. .u127187_input_option {
  7662. font-size:11px;
  7663. }
  7664. #u127188_div {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:0px;
  7668. top:0px;
  7669. width:85px;
  7670. height:30px;
  7671. background:inherit;
  7672. background-color:rgba(255, 255, 255, 0);
  7673. border:none;
  7674. border-top:0px;
  7675. border-right:0px;
  7676. border-bottom:0px;
  7677. border-radius:0px;
  7678. border-top-left-radius:0px;
  7679. border-bottom-left-radius:0px;
  7680. -moz-box-shadow:none;
  7681. -webkit-box-shadow:none;
  7682. box-shadow:none;
  7683. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7684. font-weight:500;
  7685. font-style:normal;
  7686. font-size:14px;
  7687. }
  7688. #u127188 {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:2526px;
  7692. top:569px;
  7693. width:85px;
  7694. height:30px;
  7695. display:flex;
  7696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7697. font-weight:500;
  7698. font-style:normal;
  7699. font-size:14px;
  7700. }
  7701. #u127188 .text {
  7702. position:absolute;
  7703. align-self:center;
  7704. padding:5px 0px 5px 0px;
  7705. box-sizing:border-box;
  7706. width:100%;
  7707. }
  7708. #u127188_text {
  7709. border-width:0px;
  7710. white-space:nowrap;
  7711. text-transform:none;
  7712. }
  7713. #u127189_div {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:0px;
  7717. top:0px;
  7718. width:78px;
  7719. height:30px;
  7720. background:inherit;
  7721. background-color:rgba(255, 255, 255, 0);
  7722. border:none;
  7723. border-top:0px;
  7724. border-right:0px;
  7725. border-bottom:0px;
  7726. border-radius:0px;
  7727. border-top-left-radius:0px;
  7728. border-bottom-left-radius:0px;
  7729. -moz-box-shadow:none;
  7730. -webkit-box-shadow:none;
  7731. box-shadow:none;
  7732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7733. font-weight:400;
  7734. font-style:normal;
  7735. font-size:14px;
  7736. color:#7F7F7F;
  7737. }
  7738. #u127189 {
  7739. border-width:0px;
  7740. position:absolute;
  7741. left:2560px;
  7742. top:668px;
  7743. width:78px;
  7744. height:30px;
  7745. display:flex;
  7746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7747. font-weight:400;
  7748. font-style:normal;
  7749. font-size:14px;
  7750. color:#7F7F7F;
  7751. }
  7752. #u127189 .text {
  7753. position:absolute;
  7754. align-self:center;
  7755. padding:5px 0px 5px 0px;
  7756. box-sizing:border-box;
  7757. width:100%;
  7758. }
  7759. #u127189_text {
  7760. border-width:0px;
  7761. white-space:nowrap;
  7762. text-transform:none;
  7763. }
  7764. #u127190 {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:0px;
  7768. top:0px;
  7769. width:0px;
  7770. height:0px;
  7771. }
  7772. #u127191_div {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:0px;
  7776. top:0px;
  7777. width:553px;
  7778. height:40px;
  7779. background:inherit;
  7780. background-color:rgba(255, 255, 255, 1);
  7781. box-sizing:border-box;
  7782. border-width:1px;
  7783. border-style:solid;
  7784. border-color:rgba(215, 215, 215, 1);
  7785. border-radius:4px;
  7786. -moz-box-shadow:none;
  7787. -webkit-box-shadow:none;
  7788. box-shadow:none;
  7789. font-size:11px;
  7790. }
  7791. #u127191 {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:2646px;
  7795. top:663px;
  7796. width:553px;
  7797. height:40px;
  7798. display:flex;
  7799. font-size:11px;
  7800. }
  7801. #u127191 .text {
  7802. position:absolute;
  7803. align-self:center;
  7804. padding:2px 2px 2px 2px;
  7805. box-sizing:border-box;
  7806. width:100%;
  7807. }
  7808. #u127191_text {
  7809. border-width:0px;
  7810. word-wrap:break-word;
  7811. text-transform:none;
  7812. visibility:hidden;
  7813. }
  7814. #u127192_input {
  7815. position:absolute;
  7816. left:0px;
  7817. top:0px;
  7818. width:534px;
  7819. height:31px;
  7820. padding:2px 2px 2px 2px;
  7821. font-family:'ArialMT', 'Arial', sans-serif;
  7822. font-weight:400;
  7823. font-style:normal;
  7824. font-size:11px;
  7825. letter-spacing:normal;
  7826. color:#AAAAAA;
  7827. vertical-align:none;
  7828. text-align:left;
  7829. text-transform:none;
  7830. background-color:transparent;
  7831. border-color:transparent;
  7832. }
  7833. #u127192_input.disabled {
  7834. position:absolute;
  7835. left:0px;
  7836. top:0px;
  7837. width:534px;
  7838. height:31px;
  7839. padding:2px 2px 2px 2px;
  7840. font-family:'ArialMT', 'Arial', sans-serif;
  7841. font-weight:400;
  7842. font-style:normal;
  7843. font-size:11px;
  7844. letter-spacing:normal;
  7845. color:#AAAAAA;
  7846. vertical-align:none;
  7847. text-align:left;
  7848. text-transform:none;
  7849. background-color:transparent;
  7850. border-color:transparent;
  7851. }
  7852. #u127192_div {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:0px;
  7856. top:0px;
  7857. width:534px;
  7858. height:31px;
  7859. background:inherit;
  7860. background-color:rgba(255, 255, 255, 1);
  7861. border:none;
  7862. border-radius:0px;
  7863. -moz-box-shadow:none;
  7864. -webkit-box-shadow:none;
  7865. box-shadow:none;
  7866. font-size:11px;
  7867. color:#AAAAAA;
  7868. }
  7869. #u127192 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:2658px;
  7873. top:667px;
  7874. width:534px;
  7875. height:31px;
  7876. display:flex;
  7877. font-size:11px;
  7878. color:#AAAAAA;
  7879. }
  7880. #u127192 .text {
  7881. position:absolute;
  7882. align-self:flex-start;
  7883. padding:2px 2px 2px 2px;
  7884. box-sizing:border-box;
  7885. width:100%;
  7886. }
  7887. #u127192_div.disabled {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:0px;
  7891. top:0px;
  7892. width:534px;
  7893. height:31px;
  7894. background:inherit;
  7895. background-color:rgba(240, 240, 240, 1);
  7896. border:none;
  7897. border-radius:0px;
  7898. -moz-box-shadow:none;
  7899. -webkit-box-shadow:none;
  7900. box-shadow:none;
  7901. font-size:11px;
  7902. color:#AAAAAA;
  7903. }
  7904. #u127192.disabled {
  7905. }
  7906. .u127192_input_option {
  7907. font-size:11px;
  7908. }
  7909. #u127193 {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:0px;
  7913. top:0px;
  7914. width:0px;
  7915. height:0px;
  7916. }
  7917. #u127194_div {
  7918. border-width:0px;
  7919. position:absolute;
  7920. left:0px;
  7921. top:0px;
  7922. width:553px;
  7923. height:40px;
  7924. background:inherit;
  7925. background-color:rgba(255, 255, 255, 1);
  7926. box-sizing:border-box;
  7927. border-width:1px;
  7928. border-style:solid;
  7929. border-color:rgba(215, 215, 215, 1);
  7930. border-radius:4px;
  7931. -moz-box-shadow:none;
  7932. -webkit-box-shadow:none;
  7933. box-shadow:none;
  7934. font-size:11px;
  7935. }
  7936. #u127194 {
  7937. border-width:0px;
  7938. position:absolute;
  7939. left:2646px;
  7940. top:299px;
  7941. width:553px;
  7942. height:40px;
  7943. display:flex;
  7944. font-size:11px;
  7945. }
  7946. #u127194 .text {
  7947. position:absolute;
  7948. align-self:center;
  7949. padding:2px 2px 2px 2px;
  7950. box-sizing:border-box;
  7951. width:100%;
  7952. }
  7953. #u127194_text {
  7954. border-width:0px;
  7955. word-wrap:break-word;
  7956. text-transform:none;
  7957. visibility:hidden;
  7958. }
  7959. #u127195_input {
  7960. position:absolute;
  7961. left:0px;
  7962. top:0px;
  7963. width:534px;
  7964. height:31px;
  7965. padding:2px 2px 2px 2px;
  7966. font-family:'ArialMT', 'Arial', sans-serif;
  7967. font-weight:400;
  7968. font-style:normal;
  7969. font-size:11px;
  7970. letter-spacing:normal;
  7971. color:#AAAAAA;
  7972. vertical-align:none;
  7973. text-align:left;
  7974. text-transform:none;
  7975. background-color:transparent;
  7976. border-color:transparent;
  7977. }
  7978. #u127195_input.disabled {
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:534px;
  7983. height:31px;
  7984. padding:2px 2px 2px 2px;
  7985. font-family:'ArialMT', 'Arial', sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:11px;
  7989. letter-spacing:normal;
  7990. color:#AAAAAA;
  7991. vertical-align:none;
  7992. text-align:left;
  7993. text-transform:none;
  7994. background-color:transparent;
  7995. border-color:transparent;
  7996. }
  7997. #u127195_div {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:0px;
  8001. top:0px;
  8002. width:534px;
  8003. height:31px;
  8004. background:inherit;
  8005. background-color:rgba(255, 255, 255, 1);
  8006. border:none;
  8007. border-radius:0px;
  8008. -moz-box-shadow:none;
  8009. -webkit-box-shadow:none;
  8010. box-shadow:none;
  8011. font-size:11px;
  8012. color:#AAAAAA;
  8013. }
  8014. #u127195 {
  8015. border-width:0px;
  8016. position:absolute;
  8017. left:2658px;
  8018. top:303px;
  8019. width:534px;
  8020. height:31px;
  8021. display:flex;
  8022. font-size:11px;
  8023. color:#AAAAAA;
  8024. }
  8025. #u127195 .text {
  8026. position:absolute;
  8027. align-self:flex-start;
  8028. padding:2px 2px 2px 2px;
  8029. box-sizing:border-box;
  8030. width:100%;
  8031. }
  8032. #u127195_div.disabled {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:0px;
  8036. top:0px;
  8037. width:534px;
  8038. height:31px;
  8039. background:inherit;
  8040. background-color:rgba(240, 240, 240, 1);
  8041. border:none;
  8042. border-radius:0px;
  8043. -moz-box-shadow:none;
  8044. -webkit-box-shadow:none;
  8045. box-shadow:none;
  8046. font-size:11px;
  8047. color:#AAAAAA;
  8048. }
  8049. #u127195.disabled {
  8050. }
  8051. .u127195_input_option {
  8052. font-size:11px;
  8053. }
  8054. #u127196_div {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:106px;
  8060. height:30px;
  8061. background:inherit;
  8062. background-color:rgba(255, 255, 255, 0);
  8063. border:none;
  8064. border-top:0px;
  8065. border-right:0px;
  8066. border-bottom:0px;
  8067. border-radius:0px;
  8068. border-top-left-radius:0px;
  8069. border-bottom-left-radius:0px;
  8070. -moz-box-shadow:none;
  8071. -webkit-box-shadow:none;
  8072. box-shadow:none;
  8073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8074. font-weight:400;
  8075. font-style:normal;
  8076. font-size:14px;
  8077. color:#7F7F7F;
  8078. }
  8079. #u127196 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:2540px;
  8083. top:249px;
  8084. width:106px;
  8085. height:30px;
  8086. display:flex;
  8087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8088. font-weight:400;
  8089. font-style:normal;
  8090. font-size:14px;
  8091. color:#7F7F7F;
  8092. }
  8093. #u127196 .text {
  8094. position:absolute;
  8095. align-self:center;
  8096. padding:5px 0px 5px 0px;
  8097. box-sizing:border-box;
  8098. width:100%;
  8099. }
  8100. #u127196_text {
  8101. border-width:0px;
  8102. white-space:nowrap;
  8103. text-transform:none;
  8104. }
  8105. #u127197 label {
  8106. left:0px;
  8107. width:100%;
  8108. }
  8109. #u127197_img {
  8110. border-width:0px;
  8111. position:absolute;
  8112. left:0px;
  8113. top:4px;
  8114. width:12px;
  8115. height:12px;
  8116. }
  8117. #u127197 {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:2647px;
  8121. top:254px;
  8122. width:140px;
  8123. height:20px;
  8124. display:flex;
  8125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8126. font-weight:400;
  8127. font-style:normal;
  8128. font-size:14px;
  8129. }
  8130. #u127197 .text {
  8131. position:absolute;
  8132. align-self:center;
  8133. padding:0px 2px 0px 2px;
  8134. box-sizing:border-box;
  8135. }
  8136. #u127197_img.selected {
  8137. }
  8138. #u127197.selected {
  8139. }
  8140. #u127197_img.disabled {
  8141. }
  8142. #u127197.disabled {
  8143. }
  8144. #u127197_img.selectedDisabled {
  8145. }
  8146. #u127197.selectedDisabled {
  8147. }
  8148. #u127197_text {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:14px;
  8152. top:0px;
  8153. width:124px;
  8154. word-wrap:break-word;
  8155. text-transform:none;
  8156. }
  8157. #u127197_input {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:0px;
  8163. height:0px;
  8164. opacity:0;
  8165. }
  8166. #u127198 label {
  8167. left:0px;
  8168. width:100%;
  8169. }
  8170. #u127198_img {
  8171. border-width:0px;
  8172. position:absolute;
  8173. left:0px;
  8174. top:4px;
  8175. width:12px;
  8176. height:12px;
  8177. }
  8178. #u127198 {
  8179. border-width:0px;
  8180. position:absolute;
  8181. left:2807px;
  8182. top:254px;
  8183. width:140px;
  8184. height:20px;
  8185. display:flex;
  8186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8187. font-weight:400;
  8188. font-style:normal;
  8189. font-size:14px;
  8190. }
  8191. #u127198 .text {
  8192. position:absolute;
  8193. align-self:center;
  8194. padding:0px 2px 0px 2px;
  8195. box-sizing:border-box;
  8196. }
  8197. #u127198_img.selected {
  8198. }
  8199. #u127198.selected {
  8200. }
  8201. #u127198_img.disabled {
  8202. }
  8203. #u127198.disabled {
  8204. }
  8205. #u127198_img.selectedDisabled {
  8206. }
  8207. #u127198.selectedDisabled {
  8208. }
  8209. #u127198_text {
  8210. border-width:0px;
  8211. position:absolute;
  8212. left:14px;
  8213. top:0px;
  8214. width:124px;
  8215. word-wrap:break-word;
  8216. text-transform:none;
  8217. }
  8218. #u127198_input {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:0px;
  8222. top:0px;
  8223. width:0px;
  8224. height:0px;
  8225. opacity:0;
  8226. }
  8227. #u127199_div {
  8228. border-width:0px;
  8229. position:absolute;
  8230. left:0px;
  8231. top:0px;
  8232. width:440px;
  8233. height:30px;
  8234. background:inherit;
  8235. background-color:rgba(255, 255, 255, 0);
  8236. border:none;
  8237. border-top:0px;
  8238. border-right:0px;
  8239. border-bottom:0px;
  8240. border-radius:0px;
  8241. border-top-left-radius:0px;
  8242. border-bottom-left-radius:0px;
  8243. -moz-box-shadow:none;
  8244. -webkit-box-shadow:none;
  8245. box-shadow:none;
  8246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8247. font-weight:400;
  8248. font-style:normal;
  8249. font-size:14px;
  8250. color:#D9001B;
  8251. }
  8252. #u127199 {
  8253. border-width:0px;
  8254. position:absolute;
  8255. left:2646px;
  8256. top:580px;
  8257. width:440px;
  8258. height:30px;
  8259. display:flex;
  8260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8261. font-weight:400;
  8262. font-style:normal;
  8263. font-size:14px;
  8264. color:#D9001B;
  8265. }
  8266. #u127199 .text {
  8267. position:absolute;
  8268. align-self:center;
  8269. padding:5px 0px 5px 0px;
  8270. box-sizing:border-box;
  8271. width:100%;
  8272. }
  8273. #u127199_text {
  8274. border-width:0px;
  8275. white-space:nowrap;
  8276. text-transform:none;
  8277. }
  8278. #u127200 {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:0px;
  8282. top:0px;
  8283. width:0px;
  8284. height:0px;
  8285. }
  8286. #u127201_div {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:0px;
  8290. top:0px;
  8291. width:600px;
  8292. height:416px;
  8293. background:inherit;
  8294. background-color:rgba(255, 255, 255, 1);
  8295. box-sizing:border-box;
  8296. border-width:1px;
  8297. border-style:solid;
  8298. border-color:rgba(215, 215, 215, 1);
  8299. border-radius:0px;
  8300. -moz-box-shadow:none;
  8301. -webkit-box-shadow:none;
  8302. box-shadow:none;
  8303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8304. font-weight:400;
  8305. font-style:normal;
  8306. font-size:14px;
  8307. color:#AAAAAA;
  8308. text-align:center;
  8309. line-height:30px;
  8310. }
  8311. #u127201 {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:371px;
  8315. top:580px;
  8316. width:600px;
  8317. height:416px;
  8318. display:flex;
  8319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8320. font-weight:400;
  8321. font-style:normal;
  8322. font-size:14px;
  8323. color:#AAAAAA;
  8324. text-align:center;
  8325. line-height:30px;
  8326. }
  8327. #u127201 .text {
  8328. position:absolute;
  8329. align-self:center;
  8330. padding:5px 10px 5px 10px;
  8331. box-sizing:border-box;
  8332. width:100%;
  8333. }
  8334. #u127201_text {
  8335. border-width:0px;
  8336. word-wrap:break-word;
  8337. text-transform:none;
  8338. visibility:hidden;
  8339. }
  8340. #u127202_div {
  8341. border-width:0px;
  8342. position:absolute;
  8343. left:0px;
  8344. top:0px;
  8345. width:83px;
  8346. height:35px;
  8347. background:inherit;
  8348. background-color:rgba(255, 255, 255, 0);
  8349. border:none;
  8350. border-top:0px;
  8351. border-right:0px;
  8352. border-bottom:0px;
  8353. border-radius:0px;
  8354. border-top-left-radius:0px;
  8355. border-bottom-left-radius:0px;
  8356. -moz-box-shadow:none;
  8357. -webkit-box-shadow:none;
  8358. box-shadow:none;
  8359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8360. font-weight:500;
  8361. font-style:normal;
  8362. font-size:18px;
  8363. }
  8364. #u127202 {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:391px;
  8368. top:598px;
  8369. width:83px;
  8370. height:35px;
  8371. display:flex;
  8372. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8373. font-weight:500;
  8374. font-style:normal;
  8375. font-size:18px;
  8376. }
  8377. #u127202 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:5px 10px 5px 0px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u127202_text {
  8385. border-width:0px;
  8386. white-space:nowrap;
  8387. text-transform:none;
  8388. }
  8389. #u127203_div {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:40px;
  8395. height:40px;
  8396. background:inherit;
  8397. background-color:rgba(255, 255, 255, 0);
  8398. border:none;
  8399. border-top:0px;
  8400. border-right:0px;
  8401. border-bottom:0px;
  8402. border-radius:0px;
  8403. border-top-left-radius:0px;
  8404. border-bottom-left-radius:0px;
  8405. -moz-box-shadow:none;
  8406. -webkit-box-shadow:none;
  8407. box-shadow:none;
  8408. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8409. font-weight:500;
  8410. font-style:normal;
  8411. font-size:18px;
  8412. text-align:center;
  8413. }
  8414. #u127203 {
  8415. border-width:0px;
  8416. position:absolute;
  8417. left:931px;
  8418. top:580px;
  8419. width:40px;
  8420. height:40px;
  8421. display:flex;
  8422. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8423. font-weight:500;
  8424. font-style:normal;
  8425. font-size:18px;
  8426. text-align:center;
  8427. }
  8428. #u127203 .text {
  8429. position:absolute;
  8430. align-self:center;
  8431. padding:5px 10px 5px 0px;
  8432. box-sizing:border-box;
  8433. width:100%;
  8434. }
  8435. #u127203_text {
  8436. border-width:0px;
  8437. word-wrap:break-word;
  8438. text-transform:none;
  8439. }
  8440. #u127204_div {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:81px;
  8446. height:40px;
  8447. background:inherit;
  8448. background-color:rgba(255, 255, 255, 0);
  8449. border:none;
  8450. border-top:0px;
  8451. border-right:0px;
  8452. border-bottom:0px;
  8453. border-radius:0px;
  8454. border-top-left-radius:0px;
  8455. border-bottom-left-radius:0px;
  8456. -moz-box-shadow:none;
  8457. -webkit-box-shadow:none;
  8458. box-shadow:none;
  8459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8460. font-weight:400;
  8461. font-style:normal;
  8462. font-size:14px;
  8463. color:#7F7F7F;
  8464. text-align:right;
  8465. }
  8466. #u127204 {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:421px;
  8470. top:662px;
  8471. width:81px;
  8472. height:40px;
  8473. display:flex;
  8474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8475. font-weight:400;
  8476. font-style:normal;
  8477. font-size:14px;
  8478. color:#7F7F7F;
  8479. text-align:right;
  8480. }
  8481. #u127204 .text {
  8482. position:absolute;
  8483. align-self:center;
  8484. padding:5px 10px 5px 0px;
  8485. box-sizing:border-box;
  8486. width:100%;
  8487. }
  8488. #u127204_text {
  8489. border-width:0px;
  8490. white-space:nowrap;
  8491. text-transform:none;
  8492. }
  8493. #u127205 {
  8494. border-width:0px;
  8495. position:absolute;
  8496. left:0px;
  8497. top:0px;
  8498. width:0px;
  8499. height:0px;
  8500. }
  8501. #u127206_div {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:0px;
  8505. top:0px;
  8506. width:600px;
  8507. height:50px;
  8508. background:inherit;
  8509. background-color:rgba(255, 255, 255, 1);
  8510. box-sizing:border-box;
  8511. border-width:1px;
  8512. border-style:solid;
  8513. border-color:rgba(215, 215, 215, 1);
  8514. border-radius:0px;
  8515. -moz-box-shadow:none;
  8516. -webkit-box-shadow:none;
  8517. box-shadow:none;
  8518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8519. font-weight:400;
  8520. font-style:normal;
  8521. font-size:14px;
  8522. color:#AAAAAA;
  8523. text-align:center;
  8524. line-height:30px;
  8525. }
  8526. #u127206 {
  8527. border-width:0px;
  8528. position:absolute;
  8529. left:371px;
  8530. top:996px;
  8531. width:600px;
  8532. height:50px;
  8533. display:flex;
  8534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8535. font-weight:400;
  8536. font-style:normal;
  8537. font-size:14px;
  8538. color:#AAAAAA;
  8539. text-align:center;
  8540. line-height:30px;
  8541. }
  8542. #u127206 .text {
  8543. position:absolute;
  8544. align-self:center;
  8545. padding:5px 10px 5px 10px;
  8546. box-sizing:border-box;
  8547. width:100%;
  8548. }
  8549. #u127206_text {
  8550. border-width:0px;
  8551. word-wrap:break-word;
  8552. text-transform:none;
  8553. visibility:hidden;
  8554. }
  8555. #u127207_div {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:80px;
  8561. height:30px;
  8562. background:inherit;
  8563. background-color:rgba(24, 144, 255, 1);
  8564. border:none;
  8565. border-radius:4px;
  8566. -moz-box-shadow:none;
  8567. -webkit-box-shadow:none;
  8568. box-shadow:none;
  8569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8570. font-weight:400;
  8571. font-style:normal;
  8572. font-size:14px;
  8573. color:#FFFFFF;
  8574. }
  8575. #u127207 {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:860px;
  8579. top:1006px;
  8580. width:80px;
  8581. height:30px;
  8582. display:flex;
  8583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8584. font-weight:400;
  8585. font-style:normal;
  8586. font-size:14px;
  8587. color:#FFFFFF;
  8588. }
  8589. #u127207 .text {
  8590. position:absolute;
  8591. align-self:center;
  8592. padding:2px 2px 2px 2px;
  8593. box-sizing:border-box;
  8594. width:100%;
  8595. }
  8596. #u127207_text {
  8597. border-width:0px;
  8598. word-wrap:break-word;
  8599. text-transform:none;
  8600. }
  8601. #u127208_div {
  8602. border-width:0px;
  8603. position:absolute;
  8604. left:0px;
  8605. top:0px;
  8606. width:80px;
  8607. height:30px;
  8608. background:inherit;
  8609. background-color:rgba(255, 255, 255, 1);
  8610. box-sizing:border-box;
  8611. border-width:1px;
  8612. border-style:solid;
  8613. border-color:rgba(170, 170, 170, 1);
  8614. border-radius:4px;
  8615. -moz-box-shadow:none;
  8616. -webkit-box-shadow:none;
  8617. box-shadow:none;
  8618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8619. font-weight:400;
  8620. font-style:normal;
  8621. font-size:14px;
  8622. }
  8623. #u127208 {
  8624. border-width:0px;
  8625. position:absolute;
  8626. left:760px;
  8627. top:1006px;
  8628. width:80px;
  8629. height:30px;
  8630. display:flex;
  8631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8632. font-weight:400;
  8633. font-style:normal;
  8634. font-size:14px;
  8635. }
  8636. #u127208 .text {
  8637. position:absolute;
  8638. align-self:center;
  8639. padding:2px 2px 2px 2px;
  8640. box-sizing:border-box;
  8641. width:100%;
  8642. }
  8643. #u127208_text {
  8644. border-width:0px;
  8645. word-wrap:break-word;
  8646. text-transform:none;
  8647. }
  8648. #u127209_div {
  8649. border-width:0px;
  8650. position:absolute;
  8651. left:0px;
  8652. top:0px;
  8653. width:207px;
  8654. height:40px;
  8655. background:inherit;
  8656. background-color:rgba(255, 255, 255, 0);
  8657. border:none;
  8658. border-top:0px;
  8659. border-right:0px;
  8660. border-bottom:0px;
  8661. border-radius:0px;
  8662. border-top-left-radius:0px;
  8663. border-bottom-left-radius:0px;
  8664. -moz-box-shadow:none;
  8665. -webkit-box-shadow:none;
  8666. box-shadow:none;
  8667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8668. font-weight:400;
  8669. font-style:normal;
  8670. font-size:14px;
  8671. }
  8672. #u127209 {
  8673. border-width:0px;
  8674. position:absolute;
  8675. left:502px;
  8676. top:662px;
  8677. width:207px;
  8678. height:40px;
  8679. display:flex;
  8680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8681. font-weight:400;
  8682. font-style:normal;
  8683. font-size:14px;
  8684. }
  8685. #u127209 .text {
  8686. position:absolute;
  8687. align-self:center;
  8688. padding:5px 10px 5px 0px;
  8689. box-sizing:border-box;
  8690. width:100%;
  8691. }
  8692. #u127209_text {
  8693. border-width:0px;
  8694. white-space:nowrap;
  8695. text-transform:none;
  8696. }
  8697. #u127210_div {
  8698. border-width:0px;
  8699. position:absolute;
  8700. left:0px;
  8701. top:0px;
  8702. width:88px;
  8703. height:40px;
  8704. background:inherit;
  8705. background-color:rgba(255, 255, 255, 0);
  8706. border:none;
  8707. border-top:0px;
  8708. border-right:0px;
  8709. border-bottom:0px;
  8710. border-radius:0px;
  8711. border-top-left-radius:0px;
  8712. border-bottom-left-radius:0px;
  8713. -moz-box-shadow:none;
  8714. -webkit-box-shadow:none;
  8715. box-shadow:none;
  8716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8717. font-weight:400;
  8718. font-style:normal;
  8719. font-size:14px;
  8720. color:#7F7F7F;
  8721. text-align:right;
  8722. }
  8723. #u127210 {
  8724. border-width:0px;
  8725. position:absolute;
  8726. left:414px;
  8727. top:823px;
  8728. width:88px;
  8729. height:40px;
  8730. display:flex;
  8731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8732. font-weight:400;
  8733. font-style:normal;
  8734. font-size:14px;
  8735. color:#7F7F7F;
  8736. text-align:right;
  8737. }
  8738. #u127210 .text {
  8739. position:absolute;
  8740. align-self:center;
  8741. padding:5px 10px 5px 0px;
  8742. box-sizing:border-box;
  8743. width:100%;
  8744. }
  8745. #u127210_text {
  8746. border-width:0px;
  8747. white-space:nowrap;
  8748. text-transform:none;
  8749. }
  8750. #u127211 {
  8751. border-width:0px;
  8752. position:absolute;
  8753. left:0px;
  8754. top:0px;
  8755. width:0px;
  8756. height:0px;
  8757. }
  8758. #u127212_div {
  8759. border-width:0px;
  8760. position:absolute;
  8761. left:0px;
  8762. top:0px;
  8763. width:400px;
  8764. height:40px;
  8765. background:inherit;
  8766. background-color:rgba(255, 255, 255, 1);
  8767. box-sizing:border-box;
  8768. border-width:1px;
  8769. border-style:solid;
  8770. border-color:rgba(215, 215, 215, 1);
  8771. border-radius:4px;
  8772. -moz-box-shadow:none;
  8773. -webkit-box-shadow:none;
  8774. box-shadow:none;
  8775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:14px;
  8779. text-align:right;
  8780. }
  8781. #u127212 {
  8782. border-width:0px;
  8783. position:absolute;
  8784. left:502px;
  8785. top:823px;
  8786. width:400px;
  8787. height:40px;
  8788. display:flex;
  8789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8790. font-weight:400;
  8791. font-style:normal;
  8792. font-size:14px;
  8793. text-align:right;
  8794. }
  8795. #u127212 .text {
  8796. position:absolute;
  8797. align-self:center;
  8798. padding:2px 2px 2px 2px;
  8799. box-sizing:border-box;
  8800. width:100%;
  8801. }
  8802. #u127212_text {
  8803. border-width:0px;
  8804. word-wrap:break-word;
  8805. text-transform:none;
  8806. }
  8807. #u127213_input {
  8808. position:absolute;
  8809. left:0px;
  8810. top:0px;
  8811. width:346px;
  8812. height:25px;
  8813. padding:2px 2px 2px 2px;
  8814. font-family:'ArialMT', 'Arial', sans-serif;
  8815. font-weight:400;
  8816. font-style:normal;
  8817. font-size:13px;
  8818. letter-spacing:normal;
  8819. color:#000000;
  8820. vertical-align:none;
  8821. text-align:left;
  8822. text-transform:none;
  8823. background-color:transparent;
  8824. border-color:transparent;
  8825. }
  8826. #u127213_input.disabled {
  8827. position:absolute;
  8828. left:0px;
  8829. top:0px;
  8830. width:346px;
  8831. height:25px;
  8832. padding:2px 2px 2px 2px;
  8833. font-family:'ArialMT', 'Arial', sans-serif;
  8834. font-weight:400;
  8835. font-style:normal;
  8836. font-size:13px;
  8837. letter-spacing:normal;
  8838. color:#000000;
  8839. vertical-align:none;
  8840. text-align:left;
  8841. text-transform:none;
  8842. background-color:transparent;
  8843. border-color:transparent;
  8844. }
  8845. #u127213_div {
  8846. border-width:0px;
  8847. position:absolute;
  8848. left:0px;
  8849. top:0px;
  8850. width:346px;
  8851. height:25px;
  8852. background:inherit;
  8853. background-color:rgba(255, 255, 255, 1);
  8854. border:none;
  8855. border-radius:0px;
  8856. -moz-box-shadow:none;
  8857. -webkit-box-shadow:none;
  8858. box-shadow:none;
  8859. }
  8860. #u127213 {
  8861. border-width:0px;
  8862. position:absolute;
  8863. left:508px;
  8864. top:831px;
  8865. width:346px;
  8866. height:25px;
  8867. display:flex;
  8868. }
  8869. #u127213 .text {
  8870. position:absolute;
  8871. align-self:center;
  8872. padding:2px 2px 2px 2px;
  8873. box-sizing:border-box;
  8874. width:100%;
  8875. }
  8876. #u127213_div.disabled {
  8877. border-width:0px;
  8878. position:absolute;
  8879. left:0px;
  8880. top:0px;
  8881. width:346px;
  8882. height:25px;
  8883. background:inherit;
  8884. background-color:rgba(240, 240, 240, 1);
  8885. border:none;
  8886. border-radius:0px;
  8887. -moz-box-shadow:none;
  8888. -webkit-box-shadow:none;
  8889. box-shadow:none;
  8890. }
  8891. #u127213.disabled {
  8892. }
  8893. #u127214_div {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:0px;
  8897. top:0px;
  8898. width:81px;
  8899. height:40px;
  8900. background:inherit;
  8901. background-color:rgba(255, 255, 255, 0);
  8902. border:none;
  8903. border-top:0px;
  8904. border-right:0px;
  8905. border-bottom:0px;
  8906. border-radius:0px;
  8907. border-top-left-radius:0px;
  8908. border-bottom-left-radius:0px;
  8909. -moz-box-shadow:none;
  8910. -webkit-box-shadow:none;
  8911. box-shadow:none;
  8912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8913. font-weight:400;
  8914. font-style:normal;
  8915. font-size:14px;
  8916. color:#7F7F7F;
  8917. text-align:right;
  8918. }
  8919. #u127214 {
  8920. border-width:0px;
  8921. position:absolute;
  8922. left:421px;
  8923. top:742px;
  8924. width:81px;
  8925. height:40px;
  8926. display:flex;
  8927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8928. font-weight:400;
  8929. font-style:normal;
  8930. font-size:14px;
  8931. color:#7F7F7F;
  8932. text-align:right;
  8933. }
  8934. #u127214 .text {
  8935. position:absolute;
  8936. align-self:center;
  8937. padding:5px 10px 5px 0px;
  8938. box-sizing:border-box;
  8939. width:100%;
  8940. }
  8941. #u127214_text {
  8942. border-width:0px;
  8943. white-space:nowrap;
  8944. text-transform:none;
  8945. }
  8946. #u127215_div {
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:0px;
  8950. top:0px;
  8951. width:263px;
  8952. height:40px;
  8953. background:inherit;
  8954. background-color:rgba(255, 255, 255, 0);
  8955. border:none;
  8956. border-top:0px;
  8957. border-right:0px;
  8958. border-bottom:0px;
  8959. border-radius:0px;
  8960. border-top-left-radius:0px;
  8961. border-bottom-left-radius:0px;
  8962. -moz-box-shadow:none;
  8963. -webkit-box-shadow:none;
  8964. box-shadow:none;
  8965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8966. font-weight:400;
  8967. font-style:normal;
  8968. font-size:14px;
  8969. }
  8970. #u127215 {
  8971. border-width:0px;
  8972. position:absolute;
  8973. left:502px;
  8974. top:742px;
  8975. width:263px;
  8976. height:40px;
  8977. display:flex;
  8978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8979. font-weight:400;
  8980. font-style:normal;
  8981. font-size:14px;
  8982. }
  8983. #u127215 .text {
  8984. position:absolute;
  8985. align-self:center;
  8986. padding:5px 10px 5px 0px;
  8987. box-sizing:border-box;
  8988. width:100%;
  8989. }
  8990. #u127215_text {
  8991. border-width:0px;
  8992. white-space:nowrap;
  8993. text-transform:none;
  8994. }
  8995. #u127216_div {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:0px;
  8999. top:0px;
  9000. width:53px;
  9001. height:40px;
  9002. background:inherit;
  9003. background-color:rgba(255, 255, 255, 0);
  9004. border:none;
  9005. border-top:0px;
  9006. border-right:0px;
  9007. border-bottom:0px;
  9008. border-radius:0px;
  9009. border-top-left-radius:0px;
  9010. border-bottom-left-radius:0px;
  9011. -moz-box-shadow:none;
  9012. -webkit-box-shadow:none;
  9013. box-shadow:none;
  9014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9015. font-weight:400;
  9016. font-style:normal;
  9017. font-size:14px;
  9018. color:#7F7F7F;
  9019. text-align:right;
  9020. }
  9021. #u127216 {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:449px;
  9025. top:873px;
  9026. width:53px;
  9027. height:40px;
  9028. display:flex;
  9029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9030. font-weight:400;
  9031. font-style:normal;
  9032. font-size:14px;
  9033. color:#7F7F7F;
  9034. text-align:right;
  9035. }
  9036. #u127216 .text {
  9037. position:absolute;
  9038. align-self:center;
  9039. padding:5px 10px 5px 0px;
  9040. box-sizing:border-box;
  9041. width:100%;
  9042. }
  9043. #u127216_text {
  9044. border-width:0px;
  9045. white-space:nowrap;
  9046. text-transform:none;
  9047. }
  9048. #u127217 {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:0px;
  9052. top:0px;
  9053. width:0px;
  9054. height:0px;
  9055. }
  9056. #u127218_div {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:0px;
  9060. top:0px;
  9061. width:400px;
  9062. height:60px;
  9063. background:inherit;
  9064. background-color:rgba(255, 255, 255, 1);
  9065. box-sizing:border-box;
  9066. border-width:1px;
  9067. border-style:solid;
  9068. border-color:rgba(215, 215, 215, 1);
  9069. border-radius:4px;
  9070. -moz-box-shadow:none;
  9071. -webkit-box-shadow:none;
  9072. box-shadow:none;
  9073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9074. font-weight:400;
  9075. font-style:normal;
  9076. font-size:14px;
  9077. text-align:right;
  9078. }
  9079. #u127218 {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:502px;
  9083. top:873px;
  9084. width:400px;
  9085. height:60px;
  9086. display:flex;
  9087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9088. font-weight:400;
  9089. font-style:normal;
  9090. font-size:14px;
  9091. text-align:right;
  9092. }
  9093. #u127218 .text {
  9094. position:absolute;
  9095. align-self:center;
  9096. padding:2px 2px 2px 2px;
  9097. box-sizing:border-box;
  9098. width:100%;
  9099. }
  9100. #u127218_text {
  9101. border-width:0px;
  9102. word-wrap:break-word;
  9103. text-transform:none;
  9104. visibility:hidden;
  9105. }
  9106. #u127219_div {
  9107. border-width:0px;
  9108. position:absolute;
  9109. left:0px;
  9110. top:0px;
  9111. width:81px;
  9112. height:40px;
  9113. background:inherit;
  9114. background-color:rgba(255, 255, 255, 0);
  9115. border:none;
  9116. border-top:0px;
  9117. border-right:0px;
  9118. border-bottom:0px;
  9119. border-radius:0px;
  9120. border-top-left-radius:0px;
  9121. border-bottom-left-radius:0px;
  9122. -moz-box-shadow:none;
  9123. -webkit-box-shadow:none;
  9124. box-shadow:none;
  9125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9126. font-weight:400;
  9127. font-style:normal;
  9128. font-size:14px;
  9129. color:#7F7F7F;
  9130. text-align:right;
  9131. }
  9132. #u127219 {
  9133. border-width:0px;
  9134. position:absolute;
  9135. left:421px;
  9136. top:702px;
  9137. width:81px;
  9138. height:40px;
  9139. display:flex;
  9140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9141. font-weight:400;
  9142. font-style:normal;
  9143. font-size:14px;
  9144. color:#7F7F7F;
  9145. text-align:right;
  9146. }
  9147. #u127219 .text {
  9148. position:absolute;
  9149. align-self:center;
  9150. padding:5px 10px 5px 0px;
  9151. box-sizing:border-box;
  9152. width:100%;
  9153. }
  9154. #u127219_text {
  9155. border-width:0px;
  9156. white-space:nowrap;
  9157. text-transform:none;
  9158. }
  9159. #u127220_div {
  9160. border-width:0px;
  9161. position:absolute;
  9162. left:0px;
  9163. top:0px;
  9164. width:71px;
  9165. height:40px;
  9166. background:inherit;
  9167. background-color:rgba(255, 255, 255, 0);
  9168. border:none;
  9169. border-top:0px;
  9170. border-right:0px;
  9171. border-bottom:0px;
  9172. border-radius:0px;
  9173. border-top-left-radius:0px;
  9174. border-bottom-left-radius:0px;
  9175. -moz-box-shadow:none;
  9176. -webkit-box-shadow:none;
  9177. box-shadow:none;
  9178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9179. font-weight:400;
  9180. font-style:normal;
  9181. font-size:14px;
  9182. }
  9183. #u127220 {
  9184. border-width:0px;
  9185. position:absolute;
  9186. left:502px;
  9187. top:702px;
  9188. width:71px;
  9189. height:40px;
  9190. display:flex;
  9191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9192. font-weight:400;
  9193. font-style:normal;
  9194. font-size:14px;
  9195. }
  9196. #u127220 .text {
  9197. position:absolute;
  9198. align-self:center;
  9199. padding:5px 10px 5px 0px;
  9200. box-sizing:border-box;
  9201. width:100%;
  9202. }
  9203. #u127220_text {
  9204. border-width:0px;
  9205. white-space:nowrap;
  9206. text-transform:none;
  9207. }
  9208. #u127221_div {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:0px;
  9212. top:0px;
  9213. width:81px;
  9214. height:40px;
  9215. background:inherit;
  9216. background-color:rgba(255, 255, 255, 0);
  9217. border:none;
  9218. border-top:0px;
  9219. border-right:0px;
  9220. border-bottom:0px;
  9221. border-radius:0px;
  9222. border-top-left-radius:0px;
  9223. border-bottom-left-radius:0px;
  9224. -moz-box-shadow:none;
  9225. -webkit-box-shadow:none;
  9226. box-shadow:none;
  9227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9228. font-weight:400;
  9229. font-style:normal;
  9230. font-size:14px;
  9231. color:#7F7F7F;
  9232. text-align:right;
  9233. }
  9234. #u127221 {
  9235. border-width:0px;
  9236. position:absolute;
  9237. left:421px;
  9238. top:782px;
  9239. width:81px;
  9240. height:40px;
  9241. display:flex;
  9242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9243. font-weight:400;
  9244. font-style:normal;
  9245. font-size:14px;
  9246. color:#7F7F7F;
  9247. text-align:right;
  9248. }
  9249. #u127221 .text {
  9250. position:absolute;
  9251. align-self:center;
  9252. padding:5px 10px 5px 0px;
  9253. box-sizing:border-box;
  9254. width:100%;
  9255. }
  9256. #u127221_text {
  9257. border-width:0px;
  9258. white-space:nowrap;
  9259. text-transform:none;
  9260. }
  9261. #u127222_div {
  9262. border-width:0px;
  9263. position:absolute;
  9264. left:0px;
  9265. top:0px;
  9266. width:70px;
  9267. height:40px;
  9268. background:inherit;
  9269. background-color:rgba(255, 255, 255, 0);
  9270. border:none;
  9271. border-top:0px;
  9272. border-right:0px;
  9273. border-bottom:0px;
  9274. border-radius:0px;
  9275. border-top-left-radius:0px;
  9276. border-bottom-left-radius:0px;
  9277. -moz-box-shadow:none;
  9278. -webkit-box-shadow:none;
  9279. box-shadow:none;
  9280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9281. font-weight:400;
  9282. font-style:normal;
  9283. font-size:14px;
  9284. }
  9285. #u127222 {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:502px;
  9289. top:782px;
  9290. width:70px;
  9291. height:40px;
  9292. display:flex;
  9293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9294. font-weight:400;
  9295. font-style:normal;
  9296. font-size:14px;
  9297. }
  9298. #u127222 .text {
  9299. position:absolute;
  9300. align-self:center;
  9301. padding:5px 10px 5px 0px;
  9302. box-sizing:border-box;
  9303. width:100%;
  9304. }
  9305. #u127222_text {
  9306. border-width:0px;
  9307. white-space:nowrap;
  9308. text-transform:none;
  9309. }
  9310. #u127223 {
  9311. border-width:0px;
  9312. position:absolute;
  9313. left:0px;
  9314. top:0px;
  9315. width:0px;
  9316. height:0px;
  9317. }
  9318. #u127224_div {
  9319. border-width:0px;
  9320. position:absolute;
  9321. left:0px;
  9322. top:0px;
  9323. width:600px;
  9324. height:416px;
  9325. background:inherit;
  9326. background-color:rgba(255, 255, 255, 1);
  9327. box-sizing:border-box;
  9328. border-width:1px;
  9329. border-style:solid;
  9330. border-color:rgba(215, 215, 215, 1);
  9331. border-radius:0px;
  9332. -moz-box-shadow:none;
  9333. -webkit-box-shadow:none;
  9334. box-shadow:none;
  9335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9336. font-weight:400;
  9337. font-style:normal;
  9338. font-size:14px;
  9339. color:#AAAAAA;
  9340. text-align:center;
  9341. line-height:30px;
  9342. }
  9343. #u127224 {
  9344. border-width:0px;
  9345. position:absolute;
  9346. left:371px;
  9347. top:1081px;
  9348. width:600px;
  9349. height:416px;
  9350. display:flex;
  9351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9352. font-weight:400;
  9353. font-style:normal;
  9354. font-size:14px;
  9355. color:#AAAAAA;
  9356. text-align:center;
  9357. line-height:30px;
  9358. }
  9359. #u127224 .text {
  9360. position:absolute;
  9361. align-self:center;
  9362. padding:5px 10px 5px 10px;
  9363. box-sizing:border-box;
  9364. width:100%;
  9365. }
  9366. #u127224_text {
  9367. border-width:0px;
  9368. word-wrap:break-word;
  9369. text-transform:none;
  9370. visibility:hidden;
  9371. }
  9372. #u127225_div {
  9373. border-width:0px;
  9374. position:absolute;
  9375. left:0px;
  9376. top:0px;
  9377. width:83px;
  9378. height:35px;
  9379. background:inherit;
  9380. background-color:rgba(255, 255, 255, 0);
  9381. border:none;
  9382. border-top:0px;
  9383. border-right:0px;
  9384. border-bottom:0px;
  9385. border-radius:0px;
  9386. border-top-left-radius:0px;
  9387. border-bottom-left-radius:0px;
  9388. -moz-box-shadow:none;
  9389. -webkit-box-shadow:none;
  9390. box-shadow:none;
  9391. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9392. font-weight:500;
  9393. font-style:normal;
  9394. font-size:18px;
  9395. }
  9396. #u127225 {
  9397. border-width:0px;
  9398. position:absolute;
  9399. left:391px;
  9400. top:1099px;
  9401. width:83px;
  9402. height:35px;
  9403. display:flex;
  9404. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9405. font-weight:500;
  9406. font-style:normal;
  9407. font-size:18px;
  9408. }
  9409. #u127225 .text {
  9410. position:absolute;
  9411. align-self:center;
  9412. padding:5px 10px 5px 0px;
  9413. box-sizing:border-box;
  9414. width:100%;
  9415. }
  9416. #u127225_text {
  9417. border-width:0px;
  9418. white-space:nowrap;
  9419. text-transform:none;
  9420. }
  9421. #u127226_div {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:0px;
  9425. top:0px;
  9426. width:40px;
  9427. height:40px;
  9428. background:inherit;
  9429. background-color:rgba(255, 255, 255, 0);
  9430. border:none;
  9431. border-top:0px;
  9432. border-right:0px;
  9433. border-bottom:0px;
  9434. border-radius:0px;
  9435. border-top-left-radius:0px;
  9436. border-bottom-left-radius:0px;
  9437. -moz-box-shadow:none;
  9438. -webkit-box-shadow:none;
  9439. box-shadow:none;
  9440. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9441. font-weight:500;
  9442. font-style:normal;
  9443. font-size:18px;
  9444. text-align:center;
  9445. }
  9446. #u127226 {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:931px;
  9450. top:1081px;
  9451. width:40px;
  9452. height:40px;
  9453. display:flex;
  9454. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9455. font-weight:500;
  9456. font-style:normal;
  9457. font-size:18px;
  9458. text-align:center;
  9459. }
  9460. #u127226 .text {
  9461. position:absolute;
  9462. align-self:center;
  9463. padding:5px 10px 5px 0px;
  9464. box-sizing:border-box;
  9465. width:100%;
  9466. }
  9467. #u127226_text {
  9468. border-width:0px;
  9469. word-wrap:break-word;
  9470. text-transform:none;
  9471. }
  9472. #u127227_div {
  9473. border-width:0px;
  9474. position:absolute;
  9475. left:0px;
  9476. top:0px;
  9477. width:81px;
  9478. height:40px;
  9479. background:inherit;
  9480. background-color:rgba(255, 255, 255, 0);
  9481. border:none;
  9482. border-top:0px;
  9483. border-right:0px;
  9484. border-bottom:0px;
  9485. border-radius:0px;
  9486. border-top-left-radius:0px;
  9487. border-bottom-left-radius:0px;
  9488. -moz-box-shadow:none;
  9489. -webkit-box-shadow:none;
  9490. box-shadow:none;
  9491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9492. font-weight:400;
  9493. font-style:normal;
  9494. font-size:14px;
  9495. color:#7F7F7F;
  9496. text-align:right;
  9497. }
  9498. #u127227 {
  9499. border-width:0px;
  9500. position:absolute;
  9501. left:421px;
  9502. top:1163px;
  9503. width:81px;
  9504. height:40px;
  9505. display:flex;
  9506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9507. font-weight:400;
  9508. font-style:normal;
  9509. font-size:14px;
  9510. color:#7F7F7F;
  9511. text-align:right;
  9512. }
  9513. #u127227 .text {
  9514. position:absolute;
  9515. align-self:center;
  9516. padding:5px 10px 5px 0px;
  9517. box-sizing:border-box;
  9518. width:100%;
  9519. }
  9520. #u127227_text {
  9521. border-width:0px;
  9522. white-space:nowrap;
  9523. text-transform:none;
  9524. }
  9525. #u127228 {
  9526. border-width:0px;
  9527. position:absolute;
  9528. left:0px;
  9529. top:0px;
  9530. width:0px;
  9531. height:0px;
  9532. }
  9533. #u127229_div {
  9534. border-width:0px;
  9535. position:absolute;
  9536. left:0px;
  9537. top:0px;
  9538. width:600px;
  9539. height:50px;
  9540. background:inherit;
  9541. background-color:rgba(255, 255, 255, 1);
  9542. box-sizing:border-box;
  9543. border-width:1px;
  9544. border-style:solid;
  9545. border-color:rgba(215, 215, 215, 1);
  9546. border-radius:0px;
  9547. -moz-box-shadow:none;
  9548. -webkit-box-shadow:none;
  9549. box-shadow:none;
  9550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9551. font-weight:400;
  9552. font-style:normal;
  9553. font-size:14px;
  9554. color:#AAAAAA;
  9555. text-align:center;
  9556. line-height:30px;
  9557. }
  9558. #u127229 {
  9559. border-width:0px;
  9560. position:absolute;
  9561. left:371px;
  9562. top:1447px;
  9563. width:600px;
  9564. height:50px;
  9565. display:flex;
  9566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9567. font-weight:400;
  9568. font-style:normal;
  9569. font-size:14px;
  9570. color:#AAAAAA;
  9571. text-align:center;
  9572. line-height:30px;
  9573. }
  9574. #u127229 .text {
  9575. position:absolute;
  9576. align-self:center;
  9577. padding:5px 10px 5px 10px;
  9578. box-sizing:border-box;
  9579. width:100%;
  9580. }
  9581. #u127229_text {
  9582. border-width:0px;
  9583. word-wrap:break-word;
  9584. text-transform:none;
  9585. visibility:hidden;
  9586. }
  9587. #u127230_div {
  9588. border-width:0px;
  9589. position:absolute;
  9590. left:0px;
  9591. top:0px;
  9592. width:80px;
  9593. height:30px;
  9594. background:inherit;
  9595. background-color:rgba(24, 144, 255, 1);
  9596. border:none;
  9597. border-radius:4px;
  9598. -moz-box-shadow:none;
  9599. -webkit-box-shadow:none;
  9600. box-shadow:none;
  9601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9602. font-weight:400;
  9603. font-style:normal;
  9604. font-size:14px;
  9605. color:#FFFFFF;
  9606. }
  9607. #u127230 {
  9608. border-width:0px;
  9609. position:absolute;
  9610. left:860px;
  9611. top:1457px;
  9612. width:80px;
  9613. height:30px;
  9614. display:flex;
  9615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9616. font-weight:400;
  9617. font-style:normal;
  9618. font-size:14px;
  9619. color:#FFFFFF;
  9620. }
  9621. #u127230 .text {
  9622. position:absolute;
  9623. align-self:center;
  9624. padding:2px 2px 2px 2px;
  9625. box-sizing:border-box;
  9626. width:100%;
  9627. }
  9628. #u127230_text {
  9629. border-width:0px;
  9630. word-wrap:break-word;
  9631. text-transform:none;
  9632. }
  9633. #u127231_div {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:0px;
  9637. top:0px;
  9638. width:80px;
  9639. height:30px;
  9640. background:inherit;
  9641. background-color:rgba(255, 255, 255, 1);
  9642. box-sizing:border-box;
  9643. border-width:1px;
  9644. border-style:solid;
  9645. border-color:rgba(170, 170, 170, 1);
  9646. border-radius:4px;
  9647. -moz-box-shadow:none;
  9648. -webkit-box-shadow:none;
  9649. box-shadow:none;
  9650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9651. font-weight:400;
  9652. font-style:normal;
  9653. font-size:14px;
  9654. }
  9655. #u127231 {
  9656. border-width:0px;
  9657. position:absolute;
  9658. left:760px;
  9659. top:1457px;
  9660. width:80px;
  9661. height:30px;
  9662. display:flex;
  9663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9664. font-weight:400;
  9665. font-style:normal;
  9666. font-size:14px;
  9667. }
  9668. #u127231 .text {
  9669. position:absolute;
  9670. align-self:center;
  9671. padding:2px 2px 2px 2px;
  9672. box-sizing:border-box;
  9673. width:100%;
  9674. }
  9675. #u127231_text {
  9676. border-width:0px;
  9677. word-wrap:break-word;
  9678. text-transform:none;
  9679. }
  9680. #u127232_div {
  9681. border-width:0px;
  9682. position:absolute;
  9683. left:0px;
  9684. top:0px;
  9685. width:67px;
  9686. height:40px;
  9687. background:inherit;
  9688. background-color:rgba(255, 255, 255, 0);
  9689. border:none;
  9690. border-top:0px;
  9691. border-right:0px;
  9692. border-bottom:0px;
  9693. border-radius:0px;
  9694. border-top-left-radius:0px;
  9695. border-bottom-left-radius:0px;
  9696. -moz-box-shadow:none;
  9697. -webkit-box-shadow:none;
  9698. box-shadow:none;
  9699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9700. font-weight:400;
  9701. font-style:normal;
  9702. font-size:14px;
  9703. color:#7F7F7F;
  9704. text-align:right;
  9705. }
  9706. #u127232 {
  9707. border-width:0px;
  9708. position:absolute;
  9709. left:435px;
  9710. top:1243px;
  9711. width:67px;
  9712. height:40px;
  9713. display:flex;
  9714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9715. font-weight:400;
  9716. font-style:normal;
  9717. font-size:14px;
  9718. color:#7F7F7F;
  9719. text-align:right;
  9720. }
  9721. #u127232 .text {
  9722. position:absolute;
  9723. align-self:center;
  9724. padding:5px 10px 5px 0px;
  9725. box-sizing:border-box;
  9726. width:100%;
  9727. }
  9728. #u127232_text {
  9729. border-width:0px;
  9730. white-space:nowrap;
  9731. text-transform:none;
  9732. }
  9733. #u127233_div {
  9734. border-width:0px;
  9735. position:absolute;
  9736. left:0px;
  9737. top:0px;
  9738. width:263px;
  9739. height:40px;
  9740. background:inherit;
  9741. background-color:rgba(255, 255, 255, 0);
  9742. border:none;
  9743. border-top:0px;
  9744. border-right:0px;
  9745. border-bottom:0px;
  9746. border-radius:0px;
  9747. border-top-left-radius:0px;
  9748. border-bottom-left-radius:0px;
  9749. -moz-box-shadow:none;
  9750. -webkit-box-shadow:none;
  9751. box-shadow:none;
  9752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9753. font-weight:400;
  9754. font-style:normal;
  9755. font-size:14px;
  9756. }
  9757. #u127233 {
  9758. border-width:0px;
  9759. position:absolute;
  9760. left:502px;
  9761. top:1243px;
  9762. width:263px;
  9763. height:40px;
  9764. display:flex;
  9765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9766. font-weight:400;
  9767. font-style:normal;
  9768. font-size:14px;
  9769. }
  9770. #u127233 .text {
  9771. position:absolute;
  9772. align-self:center;
  9773. padding:5px 10px 5px 0px;
  9774. box-sizing:border-box;
  9775. width:100%;
  9776. }
  9777. #u127233_text {
  9778. border-width:0px;
  9779. white-space:nowrap;
  9780. text-transform:none;
  9781. }
  9782. #u127234_div {
  9783. border-width:0px;
  9784. position:absolute;
  9785. left:0px;
  9786. top:0px;
  9787. width:207px;
  9788. height:40px;
  9789. background:inherit;
  9790. background-color:rgba(255, 255, 255, 0);
  9791. border:none;
  9792. border-top:0px;
  9793. border-right:0px;
  9794. border-bottom:0px;
  9795. border-radius:0px;
  9796. border-top-left-radius:0px;
  9797. border-bottom-left-radius:0px;
  9798. -moz-box-shadow:none;
  9799. -webkit-box-shadow:none;
  9800. box-shadow:none;
  9801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9802. font-weight:400;
  9803. font-style:normal;
  9804. font-size:14px;
  9805. }
  9806. #u127234 {
  9807. border-width:0px;
  9808. position:absolute;
  9809. left:502px;
  9810. top:1163px;
  9811. width:207px;
  9812. height:40px;
  9813. display:flex;
  9814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9815. font-weight:400;
  9816. font-style:normal;
  9817. font-size:14px;
  9818. }
  9819. #u127234 .text {
  9820. position:absolute;
  9821. align-self:center;
  9822. padding:5px 10px 5px 0px;
  9823. box-sizing:border-box;
  9824. width:100%;
  9825. }
  9826. #u127234_text {
  9827. border-width:0px;
  9828. white-space:nowrap;
  9829. text-transform:none;
  9830. }
  9831. #u127235_div {
  9832. border-width:0px;
  9833. position:absolute;
  9834. left:0px;
  9835. top:0px;
  9836. width:88px;
  9837. height:40px;
  9838. background:inherit;
  9839. background-color:rgba(255, 255, 255, 0);
  9840. border:none;
  9841. border-top:0px;
  9842. border-right:0px;
  9843. border-bottom:0px;
  9844. border-radius:0px;
  9845. border-top-left-radius:0px;
  9846. border-bottom-left-radius:0px;
  9847. -moz-box-shadow:none;
  9848. -webkit-box-shadow:none;
  9849. box-shadow:none;
  9850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9851. font-weight:400;
  9852. font-style:normal;
  9853. font-size:14px;
  9854. color:#7F7F7F;
  9855. text-align:right;
  9856. }
  9857. #u127235 {
  9858. border-width:0px;
  9859. position:absolute;
  9860. left:414px;
  9861. top:1283px;
  9862. width:88px;
  9863. height:40px;
  9864. display:flex;
  9865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9866. font-weight:400;
  9867. font-style:normal;
  9868. font-size:14px;
  9869. color:#7F7F7F;
  9870. text-align:right;
  9871. }
  9872. #u127235 .text {
  9873. position:absolute;
  9874. align-self:center;
  9875. padding:5px 10px 5px 0px;
  9876. box-sizing:border-box;
  9877. width:100%;
  9878. }
  9879. #u127235_text {
  9880. border-width:0px;
  9881. white-space:nowrap;
  9882. text-transform:none;
  9883. }
  9884. #u127236 {
  9885. border-width:0px;
  9886. position:absolute;
  9887. left:0px;
  9888. top:0px;
  9889. width:0px;
  9890. height:0px;
  9891. }
  9892. #u127237_div {
  9893. border-width:0px;
  9894. position:absolute;
  9895. left:0px;
  9896. top:0px;
  9897. width:400px;
  9898. height:40px;
  9899. background:inherit;
  9900. background-color:rgba(255, 255, 255, 1);
  9901. box-sizing:border-box;
  9902. border-width:1px;
  9903. border-style:solid;
  9904. border-color:rgba(215, 215, 215, 1);
  9905. border-radius:4px;
  9906. -moz-box-shadow:none;
  9907. -webkit-box-shadow:none;
  9908. box-shadow:none;
  9909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9910. font-weight:400;
  9911. font-style:normal;
  9912. font-size:14px;
  9913. text-align:right;
  9914. }
  9915. #u127237 {
  9916. border-width:0px;
  9917. position:absolute;
  9918. left:502px;
  9919. top:1283px;
  9920. width:400px;
  9921. height:40px;
  9922. display:flex;
  9923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9924. font-weight:400;
  9925. font-style:normal;
  9926. font-size:14px;
  9927. text-align:right;
  9928. }
  9929. #u127237 .text {
  9930. position:absolute;
  9931. align-self:center;
  9932. padding:2px 2px 2px 2px;
  9933. box-sizing:border-box;
  9934. width:100%;
  9935. }
  9936. #u127237_text {
  9937. border-width:0px;
  9938. word-wrap:break-word;
  9939. text-transform:none;
  9940. }
  9941. #u127238_input {
  9942. position:absolute;
  9943. left:0px;
  9944. top:0px;
  9945. width:346px;
  9946. height:25px;
  9947. padding:2px 2px 2px 2px;
  9948. font-family:'ArialMT', 'Arial', sans-serif;
  9949. font-weight:400;
  9950. font-style:normal;
  9951. font-size:13px;
  9952. letter-spacing:normal;
  9953. color:#000000;
  9954. vertical-align:none;
  9955. text-align:left;
  9956. text-transform:none;
  9957. background-color:transparent;
  9958. border-color:transparent;
  9959. }
  9960. #u127238_input.disabled {
  9961. position:absolute;
  9962. left:0px;
  9963. top:0px;
  9964. width:346px;
  9965. height:25px;
  9966. padding:2px 2px 2px 2px;
  9967. font-family:'ArialMT', 'Arial', sans-serif;
  9968. font-weight:400;
  9969. font-style:normal;
  9970. font-size:13px;
  9971. letter-spacing:normal;
  9972. color:#000000;
  9973. vertical-align:none;
  9974. text-align:left;
  9975. text-transform:none;
  9976. background-color:transparent;
  9977. border-color:transparent;
  9978. }
  9979. #u127238_div {
  9980. border-width:0px;
  9981. position:absolute;
  9982. left:0px;
  9983. top:0px;
  9984. width:346px;
  9985. height:25px;
  9986. background:inherit;
  9987. background-color:rgba(255, 255, 255, 1);
  9988. border:none;
  9989. border-radius:0px;
  9990. -moz-box-shadow:none;
  9991. -webkit-box-shadow:none;
  9992. box-shadow:none;
  9993. }
  9994. #u127238 {
  9995. border-width:0px;
  9996. position:absolute;
  9997. left:508px;
  9998. top:1291px;
  9999. width:346px;
  10000. height:25px;
  10001. display:flex;
  10002. }
  10003. #u127238 .text {
  10004. position:absolute;
  10005. align-self:center;
  10006. padding:2px 2px 2px 2px;
  10007. box-sizing:border-box;
  10008. width:100%;
  10009. }
  10010. #u127238_div.disabled {
  10011. border-width:0px;
  10012. position:absolute;
  10013. left:0px;
  10014. top:0px;
  10015. width:346px;
  10016. height:25px;
  10017. background:inherit;
  10018. background-color:rgba(240, 240, 240, 1);
  10019. border:none;
  10020. border-radius:0px;
  10021. -moz-box-shadow:none;
  10022. -webkit-box-shadow:none;
  10023. box-shadow:none;
  10024. }
  10025. #u127238.disabled {
  10026. }
  10027. #u127239_div {
  10028. border-width:0px;
  10029. position:absolute;
  10030. left:0px;
  10031. top:0px;
  10032. width:67px;
  10033. height:40px;
  10034. background:inherit;
  10035. background-color:rgba(255, 255, 255, 0);
  10036. border:none;
  10037. border-top:0px;
  10038. border-right:0px;
  10039. border-bottom:0px;
  10040. border-radius:0px;
  10041. border-top-left-radius:0px;
  10042. border-bottom-left-radius:0px;
  10043. -moz-box-shadow:none;
  10044. -webkit-box-shadow:none;
  10045. box-shadow:none;
  10046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10047. font-weight:400;
  10048. font-style:normal;
  10049. font-size:14px;
  10050. color:#7F7F7F;
  10051. text-align:right;
  10052. }
  10053. #u127239 {
  10054. border-width:0px;
  10055. position:absolute;
  10056. left:435px;
  10057. top:1203px;
  10058. width:67px;
  10059. height:40px;
  10060. display:flex;
  10061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10062. font-weight:400;
  10063. font-style:normal;
  10064. font-size:14px;
  10065. color:#7F7F7F;
  10066. text-align:right;
  10067. }
  10068. #u127239 .text {
  10069. position:absolute;
  10070. align-self:center;
  10071. padding:5px 10px 5px 0px;
  10072. box-sizing:border-box;
  10073. width:100%;
  10074. }
  10075. #u127239_text {
  10076. border-width:0px;
  10077. white-space:nowrap;
  10078. text-transform:none;
  10079. }
  10080. #u127240_div {
  10081. border-width:0px;
  10082. position:absolute;
  10083. left:0px;
  10084. top:0px;
  10085. width:70px;
  10086. height:40px;
  10087. background:inherit;
  10088. background-color:rgba(255, 255, 255, 0);
  10089. border:none;
  10090. border-top:0px;
  10091. border-right:0px;
  10092. border-bottom:0px;
  10093. border-radius:0px;
  10094. border-top-left-radius:0px;
  10095. border-bottom-left-radius:0px;
  10096. -moz-box-shadow:none;
  10097. -webkit-box-shadow:none;
  10098. box-shadow:none;
  10099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10100. font-weight:400;
  10101. font-style:normal;
  10102. font-size:14px;
  10103. }
  10104. #u127240 {
  10105. border-width:0px;
  10106. position:absolute;
  10107. left:502px;
  10108. top:1203px;
  10109. width:70px;
  10110. height:40px;
  10111. display:flex;
  10112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10113. font-weight:400;
  10114. font-style:normal;
  10115. font-size:14px;
  10116. }
  10117. #u127240 .text {
  10118. position:absolute;
  10119. align-self:center;
  10120. padding:5px 10px 5px 0px;
  10121. box-sizing:border-box;
  10122. width:100%;
  10123. }
  10124. #u127240_text {
  10125. border-width:0px;
  10126. white-space:nowrap;
  10127. text-transform:none;
  10128. }
  10129. #u127241_div {
  10130. border-width:0px;
  10131. position:absolute;
  10132. left:0px;
  10133. top:0px;
  10134. width:53px;
  10135. height:40px;
  10136. background:inherit;
  10137. background-color:rgba(255, 255, 255, 0);
  10138. border:none;
  10139. border-top:0px;
  10140. border-right:0px;
  10141. border-bottom:0px;
  10142. border-radius:0px;
  10143. border-top-left-radius:0px;
  10144. border-bottom-left-radius:0px;
  10145. -moz-box-shadow:none;
  10146. -webkit-box-shadow:none;
  10147. box-shadow:none;
  10148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10149. font-weight:400;
  10150. font-style:normal;
  10151. font-size:14px;
  10152. color:#7F7F7F;
  10153. text-align:right;
  10154. }
  10155. #u127241 {
  10156. border-width:0px;
  10157. position:absolute;
  10158. left:449px;
  10159. top:1333px;
  10160. width:53px;
  10161. height:40px;
  10162. display:flex;
  10163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10164. font-weight:400;
  10165. font-style:normal;
  10166. font-size:14px;
  10167. color:#7F7F7F;
  10168. text-align:right;
  10169. }
  10170. #u127241 .text {
  10171. position:absolute;
  10172. align-self:center;
  10173. padding:5px 10px 5px 0px;
  10174. box-sizing:border-box;
  10175. width:100%;
  10176. }
  10177. #u127241_text {
  10178. border-width:0px;
  10179. white-space:nowrap;
  10180. text-transform:none;
  10181. }
  10182. #u127242 {
  10183. border-width:0px;
  10184. position:absolute;
  10185. left:0px;
  10186. top:0px;
  10187. width:0px;
  10188. height:0px;
  10189. }
  10190. #u127243_div {
  10191. border-width:0px;
  10192. position:absolute;
  10193. left:0px;
  10194. top:0px;
  10195. width:400px;
  10196. height:60px;
  10197. background:inherit;
  10198. background-color:rgba(255, 255, 255, 1);
  10199. box-sizing:border-box;
  10200. border-width:1px;
  10201. border-style:solid;
  10202. border-color:rgba(215, 215, 215, 1);
  10203. border-radius:4px;
  10204. -moz-box-shadow:none;
  10205. -webkit-box-shadow:none;
  10206. box-shadow:none;
  10207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10208. font-weight:400;
  10209. font-style:normal;
  10210. font-size:14px;
  10211. text-align:right;
  10212. }
  10213. #u127243 {
  10214. border-width:0px;
  10215. position:absolute;
  10216. left:502px;
  10217. top:1333px;
  10218. width:400px;
  10219. height:60px;
  10220. display:flex;
  10221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10222. font-weight:400;
  10223. font-style:normal;
  10224. font-size:14px;
  10225. text-align:right;
  10226. }
  10227. #u127243 .text {
  10228. position:absolute;
  10229. align-self:center;
  10230. padding:2px 2px 2px 2px;
  10231. box-sizing:border-box;
  10232. width:100%;
  10233. }
  10234. #u127243_text {
  10235. border-width:0px;
  10236. word-wrap:break-word;
  10237. text-transform:none;
  10238. visibility:hidden;
  10239. }
  10240. #u127244 {
  10241. border-width:0px;
  10242. position:absolute;
  10243. left:0px;
  10244. top:0px;
  10245. width:0px;
  10246. height:0px;
  10247. }
  10248. #u127245_div {
  10249. border-width:0px;
  10250. position:absolute;
  10251. left:0px;
  10252. top:0px;
  10253. width:600px;
  10254. height:416px;
  10255. background:inherit;
  10256. background-color:rgba(255, 255, 255, 1);
  10257. box-sizing:border-box;
  10258. border-width:1px;
  10259. border-style:solid;
  10260. border-color:rgba(215, 215, 215, 1);
  10261. border-radius:0px;
  10262. -moz-box-shadow:none;
  10263. -webkit-box-shadow:none;
  10264. box-shadow:none;
  10265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10266. font-weight:400;
  10267. font-style:normal;
  10268. font-size:14px;
  10269. color:#AAAAAA;
  10270. text-align:center;
  10271. line-height:30px;
  10272. }
  10273. #u127245 {
  10274. border-width:0px;
  10275. position:absolute;
  10276. left:1000px;
  10277. top:580px;
  10278. width:600px;
  10279. height:416px;
  10280. display:flex;
  10281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10282. font-weight:400;
  10283. font-style:normal;
  10284. font-size:14px;
  10285. color:#AAAAAA;
  10286. text-align:center;
  10287. line-height:30px;
  10288. }
  10289. #u127245 .text {
  10290. position:absolute;
  10291. align-self:center;
  10292. padding:5px 10px 5px 10px;
  10293. box-sizing:border-box;
  10294. width:100%;
  10295. }
  10296. #u127245_text {
  10297. border-width:0px;
  10298. word-wrap:break-word;
  10299. text-transform:none;
  10300. visibility:hidden;
  10301. }
  10302. #u127246_div {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:0px;
  10306. top:0px;
  10307. width:83px;
  10308. height:35px;
  10309. background:inherit;
  10310. background-color:rgba(255, 255, 255, 0);
  10311. border:none;
  10312. border-top:0px;
  10313. border-right:0px;
  10314. border-bottom:0px;
  10315. border-radius:0px;
  10316. border-top-left-radius:0px;
  10317. border-bottom-left-radius:0px;
  10318. -moz-box-shadow:none;
  10319. -webkit-box-shadow:none;
  10320. box-shadow:none;
  10321. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10322. font-weight:500;
  10323. font-style:normal;
  10324. font-size:18px;
  10325. }
  10326. #u127246 {
  10327. border-width:0px;
  10328. position:absolute;
  10329. left:1020px;
  10330. top:598px;
  10331. width:83px;
  10332. height:35px;
  10333. display:flex;
  10334. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10335. font-weight:500;
  10336. font-style:normal;
  10337. font-size:18px;
  10338. }
  10339. #u127246 .text {
  10340. position:absolute;
  10341. align-self:center;
  10342. padding:5px 10px 5px 0px;
  10343. box-sizing:border-box;
  10344. width:100%;
  10345. }
  10346. #u127246_text {
  10347. border-width:0px;
  10348. white-space:nowrap;
  10349. text-transform:none;
  10350. }
  10351. #u127247_div {
  10352. border-width:0px;
  10353. position:absolute;
  10354. left:0px;
  10355. top:0px;
  10356. width:40px;
  10357. height:40px;
  10358. background:inherit;
  10359. background-color:rgba(255, 255, 255, 0);
  10360. border:none;
  10361. border-top:0px;
  10362. border-right:0px;
  10363. border-bottom:0px;
  10364. border-radius:0px;
  10365. border-top-left-radius:0px;
  10366. border-bottom-left-radius:0px;
  10367. -moz-box-shadow:none;
  10368. -webkit-box-shadow:none;
  10369. box-shadow:none;
  10370. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10371. font-weight:500;
  10372. font-style:normal;
  10373. font-size:18px;
  10374. text-align:center;
  10375. }
  10376. #u127247 {
  10377. border-width:0px;
  10378. position:absolute;
  10379. left:1560px;
  10380. top:580px;
  10381. width:40px;
  10382. height:40px;
  10383. display:flex;
  10384. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10385. font-weight:500;
  10386. font-style:normal;
  10387. font-size:18px;
  10388. text-align:center;
  10389. }
  10390. #u127247 .text {
  10391. position:absolute;
  10392. align-self:center;
  10393. padding:5px 10px 5px 0px;
  10394. box-sizing:border-box;
  10395. width:100%;
  10396. }
  10397. #u127247_text {
  10398. border-width:0px;
  10399. word-wrap:break-word;
  10400. text-transform:none;
  10401. }
  10402. #u127248_div {
  10403. border-width:0px;
  10404. position:absolute;
  10405. left:0px;
  10406. top:0px;
  10407. width:81px;
  10408. height:40px;
  10409. background:inherit;
  10410. background-color:rgba(255, 255, 255, 0);
  10411. border:none;
  10412. border-top:0px;
  10413. border-right:0px;
  10414. border-bottom:0px;
  10415. border-radius:0px;
  10416. border-top-left-radius:0px;
  10417. border-bottom-left-radius:0px;
  10418. -moz-box-shadow:none;
  10419. -webkit-box-shadow:none;
  10420. box-shadow:none;
  10421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10422. font-weight:400;
  10423. font-style:normal;
  10424. font-size:14px;
  10425. color:#7F7F7F;
  10426. text-align:right;
  10427. }
  10428. #u127248 {
  10429. border-width:0px;
  10430. position:absolute;
  10431. left:1050px;
  10432. top:662px;
  10433. width:81px;
  10434. height:40px;
  10435. display:flex;
  10436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10437. font-weight:400;
  10438. font-style:normal;
  10439. font-size:14px;
  10440. color:#7F7F7F;
  10441. text-align:right;
  10442. }
  10443. #u127248 .text {
  10444. position:absolute;
  10445. align-self:center;
  10446. padding:5px 10px 5px 0px;
  10447. box-sizing:border-box;
  10448. width:100%;
  10449. }
  10450. #u127248_text {
  10451. border-width:0px;
  10452. white-space:nowrap;
  10453. text-transform:none;
  10454. }
  10455. #u127249 {
  10456. border-width:0px;
  10457. position:absolute;
  10458. left:0px;
  10459. top:0px;
  10460. width:0px;
  10461. height:0px;
  10462. }
  10463. #u127250_div {
  10464. border-width:0px;
  10465. position:absolute;
  10466. left:0px;
  10467. top:0px;
  10468. width:600px;
  10469. height:50px;
  10470. background:inherit;
  10471. background-color:rgba(255, 255, 255, 1);
  10472. box-sizing:border-box;
  10473. border-width:1px;
  10474. border-style:solid;
  10475. border-color:rgba(215, 215, 215, 1);
  10476. border-radius:0px;
  10477. -moz-box-shadow:none;
  10478. -webkit-box-shadow:none;
  10479. box-shadow:none;
  10480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10481. font-weight:400;
  10482. font-style:normal;
  10483. font-size:14px;
  10484. color:#AAAAAA;
  10485. text-align:center;
  10486. line-height:30px;
  10487. }
  10488. #u127250 {
  10489. border-width:0px;
  10490. position:absolute;
  10491. left:1000px;
  10492. top:996px;
  10493. width:600px;
  10494. height:50px;
  10495. display:flex;
  10496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10497. font-weight:400;
  10498. font-style:normal;
  10499. font-size:14px;
  10500. color:#AAAAAA;
  10501. text-align:center;
  10502. line-height:30px;
  10503. }
  10504. #u127250 .text {
  10505. position:absolute;
  10506. align-self:center;
  10507. padding:5px 10px 5px 10px;
  10508. box-sizing:border-box;
  10509. width:100%;
  10510. }
  10511. #u127250_text {
  10512. border-width:0px;
  10513. word-wrap:break-word;
  10514. text-transform:none;
  10515. visibility:hidden;
  10516. }
  10517. #u127251_div {
  10518. border-width:0px;
  10519. position:absolute;
  10520. left:0px;
  10521. top:0px;
  10522. width:80px;
  10523. height:30px;
  10524. background:inherit;
  10525. background-color:rgba(24, 144, 255, 1);
  10526. border:none;
  10527. border-radius:4px;
  10528. -moz-box-shadow:none;
  10529. -webkit-box-shadow:none;
  10530. box-shadow:none;
  10531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10532. font-weight:400;
  10533. font-style:normal;
  10534. font-size:14px;
  10535. color:#FFFFFF;
  10536. }
  10537. #u127251 {
  10538. border-width:0px;
  10539. position:absolute;
  10540. left:1489px;
  10541. top:1006px;
  10542. width:80px;
  10543. height:30px;
  10544. display:flex;
  10545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10546. font-weight:400;
  10547. font-style:normal;
  10548. font-size:14px;
  10549. color:#FFFFFF;
  10550. }
  10551. #u127251 .text {
  10552. position:absolute;
  10553. align-self:center;
  10554. padding:2px 2px 2px 2px;
  10555. box-sizing:border-box;
  10556. width:100%;
  10557. }
  10558. #u127251_text {
  10559. border-width:0px;
  10560. word-wrap:break-word;
  10561. text-transform:none;
  10562. }
  10563. #u127252_div {
  10564. border-width:0px;
  10565. position:absolute;
  10566. left:0px;
  10567. top:0px;
  10568. width:80px;
  10569. height:30px;
  10570. background:inherit;
  10571. background-color:rgba(255, 255, 255, 1);
  10572. box-sizing:border-box;
  10573. border-width:1px;
  10574. border-style:solid;
  10575. border-color:rgba(170, 170, 170, 1);
  10576. border-radius:4px;
  10577. -moz-box-shadow:none;
  10578. -webkit-box-shadow:none;
  10579. box-shadow:none;
  10580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10581. font-weight:400;
  10582. font-style:normal;
  10583. font-size:14px;
  10584. }
  10585. #u127252 {
  10586. border-width:0px;
  10587. position:absolute;
  10588. left:1389px;
  10589. top:1006px;
  10590. width:80px;
  10591. height:30px;
  10592. display:flex;
  10593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10594. font-weight:400;
  10595. font-style:normal;
  10596. font-size:14px;
  10597. }
  10598. #u127252 .text {
  10599. position:absolute;
  10600. align-self:center;
  10601. padding:2px 2px 2px 2px;
  10602. box-sizing:border-box;
  10603. width:100%;
  10604. }
  10605. #u127252_text {
  10606. border-width:0px;
  10607. word-wrap:break-word;
  10608. text-transform:none;
  10609. }
  10610. #u127253_div {
  10611. border-width:0px;
  10612. position:absolute;
  10613. left:0px;
  10614. top:0px;
  10615. width:207px;
  10616. height:40px;
  10617. background:inherit;
  10618. background-color:rgba(255, 255, 255, 0);
  10619. border:none;
  10620. border-top:0px;
  10621. border-right:0px;
  10622. border-bottom:0px;
  10623. border-radius:0px;
  10624. border-top-left-radius:0px;
  10625. border-bottom-left-radius:0px;
  10626. -moz-box-shadow:none;
  10627. -webkit-box-shadow:none;
  10628. box-shadow:none;
  10629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10630. font-weight:400;
  10631. font-style:normal;
  10632. font-size:14px;
  10633. }
  10634. #u127253 {
  10635. border-width:0px;
  10636. position:absolute;
  10637. left:1131px;
  10638. top:662px;
  10639. width:207px;
  10640. height:40px;
  10641. display:flex;
  10642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10643. font-weight:400;
  10644. font-style:normal;
  10645. font-size:14px;
  10646. }
  10647. #u127253 .text {
  10648. position:absolute;
  10649. align-self:center;
  10650. padding:5px 10px 5px 0px;
  10651. box-sizing:border-box;
  10652. width:100%;
  10653. }
  10654. #u127253_text {
  10655. border-width:0px;
  10656. white-space:nowrap;
  10657. text-transform:none;
  10658. }
  10659. #u127254_div {
  10660. border-width:0px;
  10661. position:absolute;
  10662. left:0px;
  10663. top:0px;
  10664. width:88px;
  10665. height:40px;
  10666. background:inherit;
  10667. background-color:rgba(255, 255, 255, 0);
  10668. border:none;
  10669. border-top:0px;
  10670. border-right:0px;
  10671. border-bottom:0px;
  10672. border-radius:0px;
  10673. border-top-left-radius:0px;
  10674. border-bottom-left-radius:0px;
  10675. -moz-box-shadow:none;
  10676. -webkit-box-shadow:none;
  10677. box-shadow:none;
  10678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10679. font-weight:400;
  10680. font-style:normal;
  10681. font-size:14px;
  10682. color:#7F7F7F;
  10683. text-align:right;
  10684. }
  10685. #u127254 {
  10686. border-width:0px;
  10687. position:absolute;
  10688. left:1043px;
  10689. top:784px;
  10690. width:88px;
  10691. height:40px;
  10692. display:flex;
  10693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10694. font-weight:400;
  10695. font-style:normal;
  10696. font-size:14px;
  10697. color:#7F7F7F;
  10698. text-align:right;
  10699. }
  10700. #u127254 .text {
  10701. position:absolute;
  10702. align-self:center;
  10703. padding:5px 10px 5px 0px;
  10704. box-sizing:border-box;
  10705. width:100%;
  10706. }
  10707. #u127254_text {
  10708. border-width:0px;
  10709. white-space:nowrap;
  10710. text-transform:none;
  10711. }
  10712. #u127255 {
  10713. border-width:0px;
  10714. position:absolute;
  10715. left:0px;
  10716. top:0px;
  10717. width:0px;
  10718. height:0px;
  10719. }
  10720. #u127256_div {
  10721. border-width:0px;
  10722. position:absolute;
  10723. left:0px;
  10724. top:0px;
  10725. width:400px;
  10726. height:40px;
  10727. background:inherit;
  10728. background-color:rgba(255, 255, 255, 1);
  10729. box-sizing:border-box;
  10730. border-width:1px;
  10731. border-style:solid;
  10732. border-color:rgba(215, 215, 215, 1);
  10733. border-radius:4px;
  10734. -moz-box-shadow:none;
  10735. -webkit-box-shadow:none;
  10736. box-shadow:none;
  10737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10738. font-weight:400;
  10739. font-style:normal;
  10740. font-size:14px;
  10741. text-align:right;
  10742. }
  10743. #u127256 {
  10744. border-width:0px;
  10745. position:absolute;
  10746. left:1131px;
  10747. top:784px;
  10748. width:400px;
  10749. height:40px;
  10750. display:flex;
  10751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10752. font-weight:400;
  10753. font-style:normal;
  10754. font-size:14px;
  10755. text-align:right;
  10756. }
  10757. #u127256 .text {
  10758. position:absolute;
  10759. align-self:center;
  10760. padding:2px 2px 2px 2px;
  10761. box-sizing:border-box;
  10762. width:100%;
  10763. }
  10764. #u127256_text {
  10765. border-width:0px;
  10766. word-wrap:break-word;
  10767. text-transform:none;
  10768. }
  10769. #u127257_input {
  10770. position:absolute;
  10771. left:0px;
  10772. top:0px;
  10773. width:346px;
  10774. height:25px;
  10775. padding:2px 2px 2px 2px;
  10776. font-family:'ArialMT', 'Arial', sans-serif;
  10777. font-weight:400;
  10778. font-style:normal;
  10779. font-size:13px;
  10780. letter-spacing:normal;
  10781. color:#000000;
  10782. vertical-align:none;
  10783. text-align:left;
  10784. text-transform:none;
  10785. background-color:transparent;
  10786. border-color:transparent;
  10787. }
  10788. #u127257_input.disabled {
  10789. position:absolute;
  10790. left:0px;
  10791. top:0px;
  10792. width:346px;
  10793. height:25px;
  10794. padding:2px 2px 2px 2px;
  10795. font-family:'ArialMT', 'Arial', sans-serif;
  10796. font-weight:400;
  10797. font-style:normal;
  10798. font-size:13px;
  10799. letter-spacing:normal;
  10800. color:#000000;
  10801. vertical-align:none;
  10802. text-align:left;
  10803. text-transform:none;
  10804. background-color:transparent;
  10805. border-color:transparent;
  10806. }
  10807. #u127257_div {
  10808. border-width:0px;
  10809. position:absolute;
  10810. left:0px;
  10811. top:0px;
  10812. width:346px;
  10813. height:25px;
  10814. background:inherit;
  10815. background-color:rgba(255, 255, 255, 1);
  10816. border:none;
  10817. border-radius:0px;
  10818. -moz-box-shadow:none;
  10819. -webkit-box-shadow:none;
  10820. box-shadow:none;
  10821. }
  10822. #u127257 {
  10823. border-width:0px;
  10824. position:absolute;
  10825. left:1137px;
  10826. top:792px;
  10827. width:346px;
  10828. height:25px;
  10829. display:flex;
  10830. }
  10831. #u127257 .text {
  10832. position:absolute;
  10833. align-self:center;
  10834. padding:2px 2px 2px 2px;
  10835. box-sizing:border-box;
  10836. width:100%;
  10837. }
  10838. #u127257_div.disabled {
  10839. border-width:0px;
  10840. position:absolute;
  10841. left:0px;
  10842. top:0px;
  10843. width:346px;
  10844. height:25px;
  10845. background:inherit;
  10846. background-color:rgba(240, 240, 240, 1);
  10847. border:none;
  10848. border-radius:0px;
  10849. -moz-box-shadow:none;
  10850. -webkit-box-shadow:none;
  10851. box-shadow:none;
  10852. }
  10853. #u127257.disabled {
  10854. }
  10855. #u127258_div {
  10856. border-width:0px;
  10857. position:absolute;
  10858. left:0px;
  10859. top:0px;
  10860. width:81px;
  10861. height:40px;
  10862. background:inherit;
  10863. background-color:rgba(255, 255, 255, 0);
  10864. border:none;
  10865. border-top:0px;
  10866. border-right:0px;
  10867. border-bottom:0px;
  10868. border-radius:0px;
  10869. border-top-left-radius:0px;
  10870. border-bottom-left-radius:0px;
  10871. -moz-box-shadow:none;
  10872. -webkit-box-shadow:none;
  10873. box-shadow:none;
  10874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10875. font-weight:400;
  10876. font-style:normal;
  10877. font-size:14px;
  10878. color:#7F7F7F;
  10879. text-align:right;
  10880. }
  10881. #u127258 {
  10882. border-width:0px;
  10883. position:absolute;
  10884. left:1050px;
  10885. top:742px;
  10886. width:81px;
  10887. height:40px;
  10888. display:flex;
  10889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10890. font-weight:400;
  10891. font-style:normal;
  10892. font-size:14px;
  10893. color:#7F7F7F;
  10894. text-align:right;
  10895. }
  10896. #u127258 .text {
  10897. position:absolute;
  10898. align-self:center;
  10899. padding:5px 10px 5px 0px;
  10900. box-sizing:border-box;
  10901. width:100%;
  10902. }
  10903. #u127258_text {
  10904. border-width:0px;
  10905. white-space:nowrap;
  10906. text-transform:none;
  10907. }
  10908. #u127259_div {
  10909. border-width:0px;
  10910. position:absolute;
  10911. left:0px;
  10912. top:0px;
  10913. width:230px;
  10914. height:40px;
  10915. background:inherit;
  10916. background-color:rgba(255, 255, 255, 0);
  10917. border:none;
  10918. border-top:0px;
  10919. border-right:0px;
  10920. border-bottom:0px;
  10921. border-radius:0px;
  10922. border-top-left-radius:0px;
  10923. border-bottom-left-radius:0px;
  10924. -moz-box-shadow:none;
  10925. -webkit-box-shadow:none;
  10926. box-shadow:none;
  10927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10928. font-weight:400;
  10929. font-style:normal;
  10930. font-size:14px;
  10931. }
  10932. #u127259 {
  10933. border-width:0px;
  10934. position:absolute;
  10935. left:1131px;
  10936. top:742px;
  10937. width:230px;
  10938. height:40px;
  10939. display:flex;
  10940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10941. font-weight:400;
  10942. font-style:normal;
  10943. font-size:14px;
  10944. }
  10945. #u127259 .text {
  10946. position:absolute;
  10947. align-self:center;
  10948. padding:5px 10px 5px 0px;
  10949. box-sizing:border-box;
  10950. width:100%;
  10951. }
  10952. #u127259_text {
  10953. border-width:0px;
  10954. white-space:nowrap;
  10955. text-transform:none;
  10956. }
  10957. #u127260_div {
  10958. border-width:0px;
  10959. position:absolute;
  10960. left:0px;
  10961. top:0px;
  10962. width:53px;
  10963. height:40px;
  10964. background:inherit;
  10965. background-color:rgba(255, 255, 255, 0);
  10966. border:none;
  10967. border-top:0px;
  10968. border-right:0px;
  10969. border-bottom:0px;
  10970. border-radius:0px;
  10971. border-top-left-radius:0px;
  10972. border-bottom-left-radius:0px;
  10973. -moz-box-shadow:none;
  10974. -webkit-box-shadow:none;
  10975. box-shadow:none;
  10976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10977. font-weight:400;
  10978. font-style:normal;
  10979. font-size:14px;
  10980. color:#7F7F7F;
  10981. text-align:right;
  10982. }
  10983. #u127260 {
  10984. border-width:0px;
  10985. position:absolute;
  10986. left:1078px;
  10987. top:834px;
  10988. width:53px;
  10989. height:40px;
  10990. display:flex;
  10991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10992. font-weight:400;
  10993. font-style:normal;
  10994. font-size:14px;
  10995. color:#7F7F7F;
  10996. text-align:right;
  10997. }
  10998. #u127260 .text {
  10999. position:absolute;
  11000. align-self:center;
  11001. padding:5px 10px 5px 0px;
  11002. box-sizing:border-box;
  11003. width:100%;
  11004. }
  11005. #u127260_text {
  11006. border-width:0px;
  11007. white-space:nowrap;
  11008. text-transform:none;
  11009. }
  11010. #u127261 {
  11011. border-width:0px;
  11012. position:absolute;
  11013. left:0px;
  11014. top:0px;
  11015. width:0px;
  11016. height:0px;
  11017. }
  11018. #u127262_div {
  11019. border-width:0px;
  11020. position:absolute;
  11021. left:0px;
  11022. top:0px;
  11023. width:400px;
  11024. height:60px;
  11025. background:inherit;
  11026. background-color:rgba(255, 255, 255, 1);
  11027. box-sizing:border-box;
  11028. border-width:1px;
  11029. border-style:solid;
  11030. border-color:rgba(215, 215, 215, 1);
  11031. border-radius:4px;
  11032. -moz-box-shadow:none;
  11033. -webkit-box-shadow:none;
  11034. box-shadow:none;
  11035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11036. font-weight:400;
  11037. font-style:normal;
  11038. font-size:14px;
  11039. text-align:right;
  11040. }
  11041. #u127262 {
  11042. border-width:0px;
  11043. position:absolute;
  11044. left:1131px;
  11045. top:834px;
  11046. width:400px;
  11047. height:60px;
  11048. display:flex;
  11049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11050. font-weight:400;
  11051. font-style:normal;
  11052. font-size:14px;
  11053. text-align:right;
  11054. }
  11055. #u127262 .text {
  11056. position:absolute;
  11057. align-self:center;
  11058. padding:2px 2px 2px 2px;
  11059. box-sizing:border-box;
  11060. width:100%;
  11061. }
  11062. #u127262_text {
  11063. border-width:0px;
  11064. word-wrap:break-word;
  11065. text-transform:none;
  11066. visibility:hidden;
  11067. }
  11068. #u127263_div {
  11069. border-width:0px;
  11070. position:absolute;
  11071. left:0px;
  11072. top:0px;
  11073. width:81px;
  11074. height:40px;
  11075. background:inherit;
  11076. background-color:rgba(255, 255, 255, 0);
  11077. border:none;
  11078. border-top:0px;
  11079. border-right:0px;
  11080. border-bottom:0px;
  11081. border-radius:0px;
  11082. border-top-left-radius:0px;
  11083. border-bottom-left-radius:0px;
  11084. -moz-box-shadow:none;
  11085. -webkit-box-shadow:none;
  11086. box-shadow:none;
  11087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11088. font-weight:400;
  11089. font-style:normal;
  11090. font-size:14px;
  11091. color:#7F7F7F;
  11092. text-align:right;
  11093. }
  11094. #u127263 {
  11095. border-width:0px;
  11096. position:absolute;
  11097. left:1050px;
  11098. top:702px;
  11099. width:81px;
  11100. height:40px;
  11101. display:flex;
  11102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11103. font-weight:400;
  11104. font-style:normal;
  11105. font-size:14px;
  11106. color:#7F7F7F;
  11107. text-align:right;
  11108. }
  11109. #u127263 .text {
  11110. position:absolute;
  11111. align-self:center;
  11112. padding:5px 10px 5px 0px;
  11113. box-sizing:border-box;
  11114. width:100%;
  11115. }
  11116. #u127263_text {
  11117. border-width:0px;
  11118. white-space:nowrap;
  11119. text-transform:none;
  11120. }
  11121. #u127264_div {
  11122. border-width:0px;
  11123. position:absolute;
  11124. left:0px;
  11125. top:0px;
  11126. width:71px;
  11127. height:40px;
  11128. background:inherit;
  11129. background-color:rgba(255, 255, 255, 0);
  11130. border:none;
  11131. border-top:0px;
  11132. border-right:0px;
  11133. border-bottom:0px;
  11134. border-radius:0px;
  11135. border-top-left-radius:0px;
  11136. border-bottom-left-radius:0px;
  11137. -moz-box-shadow:none;
  11138. -webkit-box-shadow:none;
  11139. box-shadow:none;
  11140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11141. font-weight:400;
  11142. font-style:normal;
  11143. font-size:14px;
  11144. }
  11145. #u127264 {
  11146. border-width:0px;
  11147. position:absolute;
  11148. left:1131px;
  11149. top:702px;
  11150. width:71px;
  11151. height:40px;
  11152. display:flex;
  11153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11154. font-weight:400;
  11155. font-style:normal;
  11156. font-size:14px;
  11157. }
  11158. #u127264 .text {
  11159. position:absolute;
  11160. align-self:center;
  11161. padding:5px 10px 5px 0px;
  11162. box-sizing:border-box;
  11163. width:100%;
  11164. }
  11165. #u127264_text {
  11166. border-width:0px;
  11167. white-space:nowrap;
  11168. text-transform:none;
  11169. }
  11170. #u127265 {
  11171. border-width:0px;
  11172. position:absolute;
  11173. left:0px;
  11174. top:0px;
  11175. width:0px;
  11176. height:0px;
  11177. }
  11178. #u127266_div {
  11179. border-width:0px;
  11180. position:absolute;
  11181. left:0px;
  11182. top:0px;
  11183. width:600px;
  11184. height:416px;
  11185. background:inherit;
  11186. background-color:rgba(255, 255, 255, 1);
  11187. box-sizing:border-box;
  11188. border-width:1px;
  11189. border-style:solid;
  11190. border-color:rgba(215, 215, 215, 1);
  11191. border-radius:0px;
  11192. -moz-box-shadow:none;
  11193. -webkit-box-shadow:none;
  11194. box-shadow:none;
  11195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11196. font-weight:400;
  11197. font-style:normal;
  11198. font-size:14px;
  11199. color:#AAAAAA;
  11200. text-align:center;
  11201. line-height:30px;
  11202. }
  11203. #u127266 {
  11204. border-width:0px;
  11205. position:absolute;
  11206. left:1000px;
  11207. top:1081px;
  11208. width:600px;
  11209. height:416px;
  11210. display:flex;
  11211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11212. font-weight:400;
  11213. font-style:normal;
  11214. font-size:14px;
  11215. color:#AAAAAA;
  11216. text-align:center;
  11217. line-height:30px;
  11218. }
  11219. #u127266 .text {
  11220. position:absolute;
  11221. align-self:center;
  11222. padding:5px 10px 5px 10px;
  11223. box-sizing:border-box;
  11224. width:100%;
  11225. }
  11226. #u127266_text {
  11227. border-width:0px;
  11228. word-wrap:break-word;
  11229. text-transform:none;
  11230. visibility:hidden;
  11231. }
  11232. #u127267_div {
  11233. border-width:0px;
  11234. position:absolute;
  11235. left:0px;
  11236. top:0px;
  11237. width:83px;
  11238. height:35px;
  11239. background:inherit;
  11240. background-color:rgba(255, 255, 255, 0);
  11241. border:none;
  11242. border-top:0px;
  11243. border-right:0px;
  11244. border-bottom:0px;
  11245. border-radius:0px;
  11246. border-top-left-radius:0px;
  11247. border-bottom-left-radius:0px;
  11248. -moz-box-shadow:none;
  11249. -webkit-box-shadow:none;
  11250. box-shadow:none;
  11251. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11252. font-weight:500;
  11253. font-style:normal;
  11254. font-size:18px;
  11255. }
  11256. #u127267 {
  11257. border-width:0px;
  11258. position:absolute;
  11259. left:1020px;
  11260. top:1099px;
  11261. width:83px;
  11262. height:35px;
  11263. display:flex;
  11264. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11265. font-weight:500;
  11266. font-style:normal;
  11267. font-size:18px;
  11268. }
  11269. #u127267 .text {
  11270. position:absolute;
  11271. align-self:center;
  11272. padding:5px 10px 5px 0px;
  11273. box-sizing:border-box;
  11274. width:100%;
  11275. }
  11276. #u127267_text {
  11277. border-width:0px;
  11278. white-space:nowrap;
  11279. text-transform:none;
  11280. }
  11281. #u127268_div {
  11282. border-width:0px;
  11283. position:absolute;
  11284. left:0px;
  11285. top:0px;
  11286. width:40px;
  11287. height:40px;
  11288. background:inherit;
  11289. background-color:rgba(255, 255, 255, 0);
  11290. border:none;
  11291. border-top:0px;
  11292. border-right:0px;
  11293. border-bottom:0px;
  11294. border-radius:0px;
  11295. border-top-left-radius:0px;
  11296. border-bottom-left-radius:0px;
  11297. -moz-box-shadow:none;
  11298. -webkit-box-shadow:none;
  11299. box-shadow:none;
  11300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11301. font-weight:500;
  11302. font-style:normal;
  11303. font-size:18px;
  11304. text-align:center;
  11305. }
  11306. #u127268 {
  11307. border-width:0px;
  11308. position:absolute;
  11309. left:1560px;
  11310. top:1081px;
  11311. width:40px;
  11312. height:40px;
  11313. display:flex;
  11314. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11315. font-weight:500;
  11316. font-style:normal;
  11317. font-size:18px;
  11318. text-align:center;
  11319. }
  11320. #u127268 .text {
  11321. position:absolute;
  11322. align-self:center;
  11323. padding:5px 10px 5px 0px;
  11324. box-sizing:border-box;
  11325. width:100%;
  11326. }
  11327. #u127268_text {
  11328. border-width:0px;
  11329. word-wrap:break-word;
  11330. text-transform:none;
  11331. }
  11332. #u127269_div {
  11333. border-width:0px;
  11334. position:absolute;
  11335. left:0px;
  11336. top:0px;
  11337. width:81px;
  11338. height:40px;
  11339. background:inherit;
  11340. background-color:rgba(255, 255, 255, 0);
  11341. border:none;
  11342. border-top:0px;
  11343. border-right:0px;
  11344. border-bottom:0px;
  11345. border-radius:0px;
  11346. border-top-left-radius:0px;
  11347. border-bottom-left-radius:0px;
  11348. -moz-box-shadow:none;
  11349. -webkit-box-shadow:none;
  11350. box-shadow:none;
  11351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11352. font-weight:400;
  11353. font-style:normal;
  11354. font-size:14px;
  11355. color:#7F7F7F;
  11356. text-align:right;
  11357. }
  11358. #u127269 {
  11359. border-width:0px;
  11360. position:absolute;
  11361. left:1050px;
  11362. top:1163px;
  11363. width:81px;
  11364. height:40px;
  11365. display:flex;
  11366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11367. font-weight:400;
  11368. font-style:normal;
  11369. font-size:14px;
  11370. color:#7F7F7F;
  11371. text-align:right;
  11372. }
  11373. #u127269 .text {
  11374. position:absolute;
  11375. align-self:center;
  11376. padding:5px 10px 5px 0px;
  11377. box-sizing:border-box;
  11378. width:100%;
  11379. }
  11380. #u127269_text {
  11381. border-width:0px;
  11382. white-space:nowrap;
  11383. text-transform:none;
  11384. }
  11385. #u127270 {
  11386. border-width:0px;
  11387. position:absolute;
  11388. left:0px;
  11389. top:0px;
  11390. width:0px;
  11391. height:0px;
  11392. }
  11393. #u127271_div {
  11394. border-width:0px;
  11395. position:absolute;
  11396. left:0px;
  11397. top:0px;
  11398. width:600px;
  11399. height:50px;
  11400. background:inherit;
  11401. background-color:rgba(255, 255, 255, 1);
  11402. box-sizing:border-box;
  11403. border-width:1px;
  11404. border-style:solid;
  11405. border-color:rgba(215, 215, 215, 1);
  11406. border-radius:0px;
  11407. -moz-box-shadow:none;
  11408. -webkit-box-shadow:none;
  11409. box-shadow:none;
  11410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11411. font-weight:400;
  11412. font-style:normal;
  11413. font-size:14px;
  11414. color:#AAAAAA;
  11415. text-align:center;
  11416. line-height:30px;
  11417. }
  11418. #u127271 {
  11419. border-width:0px;
  11420. position:absolute;
  11421. left:1000px;
  11422. top:1447px;
  11423. width:600px;
  11424. height:50px;
  11425. display:flex;
  11426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11427. font-weight:400;
  11428. font-style:normal;
  11429. font-size:14px;
  11430. color:#AAAAAA;
  11431. text-align:center;
  11432. line-height:30px;
  11433. }
  11434. #u127271 .text {
  11435. position:absolute;
  11436. align-self:center;
  11437. padding:5px 10px 5px 10px;
  11438. box-sizing:border-box;
  11439. width:100%;
  11440. }
  11441. #u127271_text {
  11442. border-width:0px;
  11443. word-wrap:break-word;
  11444. text-transform:none;
  11445. visibility:hidden;
  11446. }
  11447. #u127272_div {
  11448. border-width:0px;
  11449. position:absolute;
  11450. left:0px;
  11451. top:0px;
  11452. width:80px;
  11453. height:30px;
  11454. background:inherit;
  11455. background-color:rgba(24, 144, 255, 1);
  11456. border:none;
  11457. border-radius:4px;
  11458. -moz-box-shadow:none;
  11459. -webkit-box-shadow:none;
  11460. box-shadow:none;
  11461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11462. font-weight:400;
  11463. font-style:normal;
  11464. font-size:14px;
  11465. color:#FFFFFF;
  11466. }
  11467. #u127272 {
  11468. border-width:0px;
  11469. position:absolute;
  11470. left:1489px;
  11471. top:1457px;
  11472. width:80px;
  11473. height:30px;
  11474. display:flex;
  11475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11476. font-weight:400;
  11477. font-style:normal;
  11478. font-size:14px;
  11479. color:#FFFFFF;
  11480. }
  11481. #u127272 .text {
  11482. position:absolute;
  11483. align-self:center;
  11484. padding:2px 2px 2px 2px;
  11485. box-sizing:border-box;
  11486. width:100%;
  11487. }
  11488. #u127272_text {
  11489. border-width:0px;
  11490. word-wrap:break-word;
  11491. text-transform:none;
  11492. }
  11493. #u127273_div {
  11494. border-width:0px;
  11495. position:absolute;
  11496. left:0px;
  11497. top:0px;
  11498. width:80px;
  11499. height:30px;
  11500. background:inherit;
  11501. background-color:rgba(255, 255, 255, 1);
  11502. box-sizing:border-box;
  11503. border-width:1px;
  11504. border-style:solid;
  11505. border-color:rgba(170, 170, 170, 1);
  11506. border-radius:4px;
  11507. -moz-box-shadow:none;
  11508. -webkit-box-shadow:none;
  11509. box-shadow:none;
  11510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11511. font-weight:400;
  11512. font-style:normal;
  11513. font-size:14px;
  11514. }
  11515. #u127273 {
  11516. border-width:0px;
  11517. position:absolute;
  11518. left:1389px;
  11519. top:1457px;
  11520. width:80px;
  11521. height:30px;
  11522. display:flex;
  11523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11524. font-weight:400;
  11525. font-style:normal;
  11526. font-size:14px;
  11527. }
  11528. #u127273 .text {
  11529. position:absolute;
  11530. align-self:center;
  11531. padding:2px 2px 2px 2px;
  11532. box-sizing:border-box;
  11533. width:100%;
  11534. }
  11535. #u127273_text {
  11536. border-width:0px;
  11537. word-wrap:break-word;
  11538. text-transform:none;
  11539. }
  11540. #u127274_div {
  11541. border-width:0px;
  11542. position:absolute;
  11543. left:0px;
  11544. top:0px;
  11545. width:67px;
  11546. height:40px;
  11547. background:inherit;
  11548. background-color:rgba(255, 255, 255, 0);
  11549. border:none;
  11550. border-top:0px;
  11551. border-right:0px;
  11552. border-bottom:0px;
  11553. border-radius:0px;
  11554. border-top-left-radius:0px;
  11555. border-bottom-left-radius:0px;
  11556. -moz-box-shadow:none;
  11557. -webkit-box-shadow:none;
  11558. box-shadow:none;
  11559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11560. font-weight:400;
  11561. font-style:normal;
  11562. font-size:14px;
  11563. color:#7F7F7F;
  11564. text-align:right;
  11565. }
  11566. #u127274 {
  11567. border-width:0px;
  11568. position:absolute;
  11569. left:1064px;
  11570. top:1243px;
  11571. width:67px;
  11572. height:40px;
  11573. display:flex;
  11574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11575. font-weight:400;
  11576. font-style:normal;
  11577. font-size:14px;
  11578. color:#7F7F7F;
  11579. text-align:right;
  11580. }
  11581. #u127274 .text {
  11582. position:absolute;
  11583. align-self:center;
  11584. padding:5px 10px 5px 0px;
  11585. box-sizing:border-box;
  11586. width:100%;
  11587. }
  11588. #u127274_text {
  11589. border-width:0px;
  11590. white-space:nowrap;
  11591. text-transform:none;
  11592. }
  11593. #u127275_div {
  11594. border-width:0px;
  11595. position:absolute;
  11596. left:0px;
  11597. top:0px;
  11598. width:230px;
  11599. height:40px;
  11600. background:inherit;
  11601. background-color:rgba(255, 255, 255, 0);
  11602. border:none;
  11603. border-top:0px;
  11604. border-right:0px;
  11605. border-bottom:0px;
  11606. border-radius:0px;
  11607. border-top-left-radius:0px;
  11608. border-bottom-left-radius:0px;
  11609. -moz-box-shadow:none;
  11610. -webkit-box-shadow:none;
  11611. box-shadow:none;
  11612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11613. font-weight:400;
  11614. font-style:normal;
  11615. font-size:14px;
  11616. }
  11617. #u127275 {
  11618. border-width:0px;
  11619. position:absolute;
  11620. left:1131px;
  11621. top:1243px;
  11622. width:230px;
  11623. height:40px;
  11624. display:flex;
  11625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11626. font-weight:400;
  11627. font-style:normal;
  11628. font-size:14px;
  11629. }
  11630. #u127275 .text {
  11631. position:absolute;
  11632. align-self:center;
  11633. padding:5px 10px 5px 0px;
  11634. box-sizing:border-box;
  11635. width:100%;
  11636. }
  11637. #u127275_text {
  11638. border-width:0px;
  11639. white-space:nowrap;
  11640. text-transform:none;
  11641. }
  11642. #u127276_div {
  11643. border-width:0px;
  11644. position:absolute;
  11645. left:0px;
  11646. top:0px;
  11647. width:207px;
  11648. height:40px;
  11649. background:inherit;
  11650. background-color:rgba(255, 255, 255, 0);
  11651. border:none;
  11652. border-top:0px;
  11653. border-right:0px;
  11654. border-bottom:0px;
  11655. border-radius:0px;
  11656. border-top-left-radius:0px;
  11657. border-bottom-left-radius:0px;
  11658. -moz-box-shadow:none;
  11659. -webkit-box-shadow:none;
  11660. box-shadow:none;
  11661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11662. font-weight:400;
  11663. font-style:normal;
  11664. font-size:14px;
  11665. }
  11666. #u127276 {
  11667. border-width:0px;
  11668. position:absolute;
  11669. left:1131px;
  11670. top:1163px;
  11671. width:207px;
  11672. height:40px;
  11673. display:flex;
  11674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11675. font-weight:400;
  11676. font-style:normal;
  11677. font-size:14px;
  11678. }
  11679. #u127276 .text {
  11680. position:absolute;
  11681. align-self:center;
  11682. padding:5px 10px 5px 0px;
  11683. box-sizing:border-box;
  11684. width:100%;
  11685. }
  11686. #u127276_text {
  11687. border-width:0px;
  11688. white-space:nowrap;
  11689. text-transform:none;
  11690. }
  11691. #u127277_div {
  11692. border-width:0px;
  11693. position:absolute;
  11694. left:0px;
  11695. top:0px;
  11696. width:88px;
  11697. height:40px;
  11698. background:inherit;
  11699. background-color:rgba(255, 255, 255, 0);
  11700. border:none;
  11701. border-top:0px;
  11702. border-right:0px;
  11703. border-bottom:0px;
  11704. border-radius:0px;
  11705. border-top-left-radius:0px;
  11706. border-bottom-left-radius:0px;
  11707. -moz-box-shadow:none;
  11708. -webkit-box-shadow:none;
  11709. box-shadow:none;
  11710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11711. font-weight:400;
  11712. font-style:normal;
  11713. font-size:14px;
  11714. color:#7F7F7F;
  11715. text-align:right;
  11716. }
  11717. #u127277 {
  11718. border-width:0px;
  11719. position:absolute;
  11720. left:1043px;
  11721. top:1283px;
  11722. width:88px;
  11723. height:40px;
  11724. display:flex;
  11725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11726. font-weight:400;
  11727. font-style:normal;
  11728. font-size:14px;
  11729. color:#7F7F7F;
  11730. text-align:right;
  11731. }
  11732. #u127277 .text {
  11733. position:absolute;
  11734. align-self:center;
  11735. padding:5px 10px 5px 0px;
  11736. box-sizing:border-box;
  11737. width:100%;
  11738. }
  11739. #u127277_text {
  11740. border-width:0px;
  11741. white-space:nowrap;
  11742. text-transform:none;
  11743. }
  11744. #u127278 {
  11745. border-width:0px;
  11746. position:absolute;
  11747. left:0px;
  11748. top:0px;
  11749. width:0px;
  11750. height:0px;
  11751. }
  11752. #u127279_div {
  11753. border-width:0px;
  11754. position:absolute;
  11755. left:0px;
  11756. top:0px;
  11757. width:400px;
  11758. height:40px;
  11759. background:inherit;
  11760. background-color:rgba(255, 255, 255, 1);
  11761. box-sizing:border-box;
  11762. border-width:1px;
  11763. border-style:solid;
  11764. border-color:rgba(215, 215, 215, 1);
  11765. border-radius:4px;
  11766. -moz-box-shadow:none;
  11767. -webkit-box-shadow:none;
  11768. box-shadow:none;
  11769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11770. font-weight:400;
  11771. font-style:normal;
  11772. font-size:14px;
  11773. text-align:right;
  11774. }
  11775. #u127279 {
  11776. border-width:0px;
  11777. position:absolute;
  11778. left:1131px;
  11779. top:1283px;
  11780. width:400px;
  11781. height:40px;
  11782. display:flex;
  11783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11784. font-weight:400;
  11785. font-style:normal;
  11786. font-size:14px;
  11787. text-align:right;
  11788. }
  11789. #u127279 .text {
  11790. position:absolute;
  11791. align-self:center;
  11792. padding:2px 2px 2px 2px;
  11793. box-sizing:border-box;
  11794. width:100%;
  11795. }
  11796. #u127279_text {
  11797. border-width:0px;
  11798. word-wrap:break-word;
  11799. text-transform:none;
  11800. }
  11801. #u127280_input {
  11802. position:absolute;
  11803. left:0px;
  11804. top:0px;
  11805. width:346px;
  11806. height:25px;
  11807. padding:2px 2px 2px 2px;
  11808. font-family:'ArialMT', 'Arial', sans-serif;
  11809. font-weight:400;
  11810. font-style:normal;
  11811. font-size:13px;
  11812. letter-spacing:normal;
  11813. color:#000000;
  11814. vertical-align:none;
  11815. text-align:left;
  11816. text-transform:none;
  11817. background-color:transparent;
  11818. border-color:transparent;
  11819. }
  11820. #u127280_input.disabled {
  11821. position:absolute;
  11822. left:0px;
  11823. top:0px;
  11824. width:346px;
  11825. height:25px;
  11826. padding:2px 2px 2px 2px;
  11827. font-family:'ArialMT', 'Arial', sans-serif;
  11828. font-weight:400;
  11829. font-style:normal;
  11830. font-size:13px;
  11831. letter-spacing:normal;
  11832. color:#000000;
  11833. vertical-align:none;
  11834. text-align:left;
  11835. text-transform:none;
  11836. background-color:transparent;
  11837. border-color:transparent;
  11838. }
  11839. #u127280_div {
  11840. border-width:0px;
  11841. position:absolute;
  11842. left:0px;
  11843. top:0px;
  11844. width:346px;
  11845. height:25px;
  11846. background:inherit;
  11847. background-color:rgba(255, 255, 255, 1);
  11848. border:none;
  11849. border-radius:0px;
  11850. -moz-box-shadow:none;
  11851. -webkit-box-shadow:none;
  11852. box-shadow:none;
  11853. }
  11854. #u127280 {
  11855. border-width:0px;
  11856. position:absolute;
  11857. left:1137px;
  11858. top:1291px;
  11859. width:346px;
  11860. height:25px;
  11861. display:flex;
  11862. }
  11863. #u127280 .text {
  11864. position:absolute;
  11865. align-self:center;
  11866. padding:2px 2px 2px 2px;
  11867. box-sizing:border-box;
  11868. width:100%;
  11869. }
  11870. #u127280_div.disabled {
  11871. border-width:0px;
  11872. position:absolute;
  11873. left:0px;
  11874. top:0px;
  11875. width:346px;
  11876. height:25px;
  11877. background:inherit;
  11878. background-color:rgba(240, 240, 240, 1);
  11879. border:none;
  11880. border-radius:0px;
  11881. -moz-box-shadow:none;
  11882. -webkit-box-shadow:none;
  11883. box-shadow:none;
  11884. }
  11885. #u127280.disabled {
  11886. }
  11887. #u127281_div {
  11888. border-width:0px;
  11889. position:absolute;
  11890. left:0px;
  11891. top:0px;
  11892. width:67px;
  11893. height:40px;
  11894. background:inherit;
  11895. background-color:rgba(255, 255, 255, 0);
  11896. border:none;
  11897. border-top:0px;
  11898. border-right:0px;
  11899. border-bottom:0px;
  11900. border-radius:0px;
  11901. border-top-left-radius:0px;
  11902. border-bottom-left-radius:0px;
  11903. -moz-box-shadow:none;
  11904. -webkit-box-shadow:none;
  11905. box-shadow:none;
  11906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11907. font-weight:400;
  11908. font-style:normal;
  11909. font-size:14px;
  11910. color:#7F7F7F;
  11911. text-align:right;
  11912. }
  11913. #u127281 {
  11914. border-width:0px;
  11915. position:absolute;
  11916. left:1064px;
  11917. top:1203px;
  11918. width:67px;
  11919. height:40px;
  11920. display:flex;
  11921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11922. font-weight:400;
  11923. font-style:normal;
  11924. font-size:14px;
  11925. color:#7F7F7F;
  11926. text-align:right;
  11927. }
  11928. #u127281 .text {
  11929. position:absolute;
  11930. align-self:center;
  11931. padding:5px 10px 5px 0px;
  11932. box-sizing:border-box;
  11933. width:100%;
  11934. }
  11935. #u127281_text {
  11936. border-width:0px;
  11937. white-space:nowrap;
  11938. text-transform:none;
  11939. }
  11940. #u127282_div {
  11941. border-width:0px;
  11942. position:absolute;
  11943. left:0px;
  11944. top:0px;
  11945. width:70px;
  11946. height:40px;
  11947. background:inherit;
  11948. background-color:rgba(255, 255, 255, 0);
  11949. border:none;
  11950. border-top:0px;
  11951. border-right:0px;
  11952. border-bottom:0px;
  11953. border-radius:0px;
  11954. border-top-left-radius:0px;
  11955. border-bottom-left-radius:0px;
  11956. -moz-box-shadow:none;
  11957. -webkit-box-shadow:none;
  11958. box-shadow:none;
  11959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11960. font-weight:400;
  11961. font-style:normal;
  11962. font-size:14px;
  11963. }
  11964. #u127282 {
  11965. border-width:0px;
  11966. position:absolute;
  11967. left:1131px;
  11968. top:1203px;
  11969. width:70px;
  11970. height:40px;
  11971. display:flex;
  11972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11973. font-weight:400;
  11974. font-style:normal;
  11975. font-size:14px;
  11976. }
  11977. #u127282 .text {
  11978. position:absolute;
  11979. align-self:center;
  11980. padding:5px 10px 5px 0px;
  11981. box-sizing:border-box;
  11982. width:100%;
  11983. }
  11984. #u127282_text {
  11985. border-width:0px;
  11986. white-space:nowrap;
  11987. text-transform:none;
  11988. }
  11989. #u127283_div {
  11990. border-width:0px;
  11991. position:absolute;
  11992. left:0px;
  11993. top:0px;
  11994. width:53px;
  11995. height:40px;
  11996. background:inherit;
  11997. background-color:rgba(255, 255, 255, 0);
  11998. border:none;
  11999. border-top:0px;
  12000. border-right:0px;
  12001. border-bottom:0px;
  12002. border-radius:0px;
  12003. border-top-left-radius:0px;
  12004. border-bottom-left-radius:0px;
  12005. -moz-box-shadow:none;
  12006. -webkit-box-shadow:none;
  12007. box-shadow:none;
  12008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12009. font-weight:400;
  12010. font-style:normal;
  12011. font-size:14px;
  12012. color:#7F7F7F;
  12013. text-align:right;
  12014. }
  12015. #u127283 {
  12016. border-width:0px;
  12017. position:absolute;
  12018. left:1078px;
  12019. top:1333px;
  12020. width:53px;
  12021. height:40px;
  12022. display:flex;
  12023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12024. font-weight:400;
  12025. font-style:normal;
  12026. font-size:14px;
  12027. color:#7F7F7F;
  12028. text-align:right;
  12029. }
  12030. #u127283 .text {
  12031. position:absolute;
  12032. align-self:center;
  12033. padding:5px 10px 5px 0px;
  12034. box-sizing:border-box;
  12035. width:100%;
  12036. }
  12037. #u127283_text {
  12038. border-width:0px;
  12039. white-space:nowrap;
  12040. text-transform:none;
  12041. }
  12042. #u127284 {
  12043. border-width:0px;
  12044. position:absolute;
  12045. left:0px;
  12046. top:0px;
  12047. width:0px;
  12048. height:0px;
  12049. }
  12050. #u127285_div {
  12051. border-width:0px;
  12052. position:absolute;
  12053. left:0px;
  12054. top:0px;
  12055. width:400px;
  12056. height:60px;
  12057. background:inherit;
  12058. background-color:rgba(255, 255, 255, 1);
  12059. box-sizing:border-box;
  12060. border-width:1px;
  12061. border-style:solid;
  12062. border-color:rgba(215, 215, 215, 1);
  12063. border-radius:4px;
  12064. -moz-box-shadow:none;
  12065. -webkit-box-shadow:none;
  12066. box-shadow:none;
  12067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12068. font-weight:400;
  12069. font-style:normal;
  12070. font-size:14px;
  12071. text-align:right;
  12072. }
  12073. #u127285 {
  12074. border-width:0px;
  12075. position:absolute;
  12076. left:1131px;
  12077. top:1333px;
  12078. width:400px;
  12079. height:60px;
  12080. display:flex;
  12081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12082. font-weight:400;
  12083. font-style:normal;
  12084. font-size:14px;
  12085. text-align:right;
  12086. }
  12087. #u127285 .text {
  12088. position:absolute;
  12089. align-self:center;
  12090. padding:2px 2px 2px 2px;
  12091. box-sizing:border-box;
  12092. width:100%;
  12093. }
  12094. #u127285_text {
  12095. border-width:0px;
  12096. word-wrap:break-word;
  12097. text-transform:none;
  12098. visibility:hidden;
  12099. }
  12100. #u127286 {
  12101. border-width:0px;
  12102. position:absolute;
  12103. left:0px;
  12104. top:0px;
  12105. width:0px;
  12106. height:0px;
  12107. }
  12108. #u127287_div {
  12109. border-width:0px;
  12110. position:absolute;
  12111. left:0px;
  12112. top:0px;
  12113. width:200px;
  12114. height:1180px;
  12115. background:inherit;
  12116. background-color:rgba(255, 255, 255, 1);
  12117. border:none;
  12118. border-radius:0px;
  12119. -moz-box-shadow:none;
  12120. -webkit-box-shadow:none;
  12121. box-shadow:none;
  12122. }
  12123. #u127287 {
  12124. border-width:0px;
  12125. position:absolute;
  12126. left:120px;
  12127. top:50px;
  12128. width:200px;
  12129. height:1180px;
  12130. display:flex;
  12131. }
  12132. #u127287 .text {
  12133. position:absolute;
  12134. align-self:center;
  12135. padding:2px 2px 2px 2px;
  12136. box-sizing:border-box;
  12137. width:100%;
  12138. }
  12139. #u127287_text {
  12140. border-width:0px;
  12141. word-wrap:break-word;
  12142. text-transform:none;
  12143. visibility:hidden;
  12144. }
  12145. #u127288_div {
  12146. border-width:0px;
  12147. position:absolute;
  12148. left:0px;
  12149. top:0px;
  12150. width:200px;
  12151. height:60px;
  12152. background:inherit;
  12153. background-color:rgba(224, 231, 247, 1);
  12154. border:none;
  12155. border-radius:0px;
  12156. -moz-box-shadow:none;
  12157. -webkit-box-shadow:none;
  12158. box-shadow:none;
  12159. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12160. font-weight:500;
  12161. font-style:normal;
  12162. font-size:18px;
  12163. }
  12164. #u127288 {
  12165. border-width:0px;
  12166. position:absolute;
  12167. left:120px;
  12168. top:50px;
  12169. width:200px;
  12170. height:60px;
  12171. display:flex;
  12172. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12173. font-weight:500;
  12174. font-style:normal;
  12175. font-size:18px;
  12176. }
  12177. #u127288 .text {
  12178. position:absolute;
  12179. align-self:center;
  12180. padding:0px 0px 0px 20px;
  12181. box-sizing:border-box;
  12182. width:100%;
  12183. }
  12184. #u127288_text {
  12185. border-width:0px;
  12186. word-wrap:break-word;
  12187. text-transform:none;
  12188. }
  12189. #u127289_div {
  12190. border-width:0px;
  12191. position:absolute;
  12192. left:0px;
  12193. top:0px;
  12194. width:65px;
  12195. height:22px;
  12196. background:inherit;
  12197. background-color:rgba(255, 255, 255, 0);
  12198. border:none;
  12199. border-radius:0px;
  12200. -moz-box-shadow:none;
  12201. -webkit-box-shadow:none;
  12202. box-shadow:none;
  12203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12204. font-weight:400;
  12205. font-style:normal;
  12206. font-size:16px;
  12207. }
  12208. #u127289 {
  12209. border-width:0px;
  12210. position:absolute;
  12211. left:146px;
  12212. top:167px;
  12213. width:65px;
  12214. height:22px;
  12215. display:flex;
  12216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12217. font-weight:400;
  12218. font-style:normal;
  12219. font-size:16px;
  12220. }
  12221. #u127289 .text {
  12222. position:absolute;
  12223. align-self:flex-start;
  12224. padding:0px 0px 0px 0px;
  12225. box-sizing:border-box;
  12226. width:100%;
  12227. }
  12228. #u127289_text {
  12229. border-width:0px;
  12230. white-space:nowrap;
  12231. text-transform:none;
  12232. }
  12233. #u127290_div {
  12234. border-width:0px;
  12235. position:absolute;
  12236. left:0px;
  12237. top:0px;
  12238. width:65px;
  12239. height:22px;
  12240. background:inherit;
  12241. background-color:rgba(255, 255, 255, 0);
  12242. border:none;
  12243. border-radius:0px;
  12244. -moz-box-shadow:none;
  12245. -webkit-box-shadow:none;
  12246. box-shadow:none;
  12247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12248. font-weight:400;
  12249. font-style:normal;
  12250. font-size:16px;
  12251. }
  12252. #u127290 {
  12253. border-width:0px;
  12254. position:absolute;
  12255. left:146px;
  12256. top:209px;
  12257. width:65px;
  12258. height:22px;
  12259. display:flex;
  12260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12261. font-weight:400;
  12262. font-style:normal;
  12263. font-size:16px;
  12264. }
  12265. #u127290 .text {
  12266. position:absolute;
  12267. align-self:flex-start;
  12268. padding:0px 0px 0px 0px;
  12269. box-sizing:border-box;
  12270. width:100%;
  12271. }
  12272. #u127290_text {
  12273. border-width:0px;
  12274. white-space:nowrap;
  12275. text-transform:none;
  12276. }
  12277. #u127291_div {
  12278. border-width:0px;
  12279. position:absolute;
  12280. left:0px;
  12281. top:0px;
  12282. width:49px;
  12283. height:17px;
  12284. background:inherit;
  12285. background-color:rgba(255, 255, 255, 0);
  12286. border:none;
  12287. border-radius:0px;
  12288. -moz-box-shadow:none;
  12289. -webkit-box-shadow:none;
  12290. box-shadow:none;
  12291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12292. font-weight:400;
  12293. font-style:normal;
  12294. font-size:12px;
  12295. color:#AAAAAA;
  12296. }
  12297. #u127291 {
  12298. border-width:0px;
  12299. position:absolute;
  12300. left:146px;
  12301. top:130px;
  12302. width:49px;
  12303. height:17px;
  12304. display:flex;
  12305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12306. font-weight:400;
  12307. font-style:normal;
  12308. font-size:12px;
  12309. color:#AAAAAA;
  12310. }
  12311. #u127291 .text {
  12312. position:absolute;
  12313. align-self:flex-start;
  12314. padding:0px 0px 0px 0px;
  12315. box-sizing:border-box;
  12316. width:100%;
  12317. }
  12318. #u127291_text {
  12319. border-width:0px;
  12320. white-space:nowrap;
  12321. text-transform:none;
  12322. }
  12323. #u127292_div {
  12324. border-width:0px;
  12325. position:absolute;
  12326. left:0px;
  12327. top:0px;
  12328. width:49px;
  12329. height:17px;
  12330. background:inherit;
  12331. background-color:rgba(255, 255, 255, 0);
  12332. border:none;
  12333. border-radius:0px;
  12334. -moz-box-shadow:none;
  12335. -webkit-box-shadow:none;
  12336. box-shadow:none;
  12337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12338. font-weight:400;
  12339. font-style:normal;
  12340. font-size:12px;
  12341. color:#AAAAAA;
  12342. }
  12343. #u127292 {
  12344. border-width:0px;
  12345. position:absolute;
  12346. left:146px;
  12347. top:585px;
  12348. width:49px;
  12349. height:17px;
  12350. display:flex;
  12351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12352. font-weight:400;
  12353. font-style:normal;
  12354. font-size:12px;
  12355. color:#AAAAAA;
  12356. }
  12357. #u127292 .text {
  12358. position:absolute;
  12359. align-self:flex-start;
  12360. padding:0px 0px 0px 0px;
  12361. box-sizing:border-box;
  12362. width:100%;
  12363. }
  12364. #u127292_text {
  12365. border-width:0px;
  12366. white-space:nowrap;
  12367. text-transform:none;
  12368. }
  12369. #u127293_img {
  12370. border-width:0px;
  12371. position:absolute;
  12372. left:0px;
  12373. top:0px;
  12374. width:201px;
  12375. height:2px;
  12376. }
  12377. #u127293 {
  12378. border-width:0px;
  12379. position:absolute;
  12380. left:120px;
  12381. top:563px;
  12382. width:200px;
  12383. height:1px;
  12384. display:flex;
  12385. }
  12386. #u127293 .text {
  12387. position:absolute;
  12388. align-self:center;
  12389. padding:2px 2px 2px 2px;
  12390. box-sizing:border-box;
  12391. width:100%;
  12392. }
  12393. #u127293_text {
  12394. border-width:0px;
  12395. word-wrap:break-word;
  12396. text-transform:none;
  12397. visibility:hidden;
  12398. }
  12399. #u127294_div {
  12400. border-width:0px;
  12401. position:absolute;
  12402. left:0px;
  12403. top:0px;
  12404. width:65px;
  12405. height:22px;
  12406. background:inherit;
  12407. background-color:rgba(255, 255, 255, 0);
  12408. border:none;
  12409. border-radius:0px;
  12410. -moz-box-shadow:none;
  12411. -webkit-box-shadow:none;
  12412. box-shadow:none;
  12413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12414. font-weight:400;
  12415. font-style:normal;
  12416. font-size:16px;
  12417. }
  12418. #u127294 {
  12419. border-width:0px;
  12420. position:absolute;
  12421. left:146px;
  12422. top:623px;
  12423. width:65px;
  12424. height:22px;
  12425. display:flex;
  12426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12427. font-weight:400;
  12428. font-style:normal;
  12429. font-size:16px;
  12430. }
  12431. #u127294 .text {
  12432. position:absolute;
  12433. align-self:flex-start;
  12434. padding:0px 0px 0px 0px;
  12435. box-sizing:border-box;
  12436. width:100%;
  12437. }
  12438. #u127294_text {
  12439. border-width:0px;
  12440. white-space:nowrap;
  12441. text-transform:none;
  12442. }
  12443. #u127295_div {
  12444. border-width:0px;
  12445. position:absolute;
  12446. left:0px;
  12447. top:0px;
  12448. width:97px;
  12449. height:22px;
  12450. background:inherit;
  12451. background-color:rgba(255, 255, 255, 0);
  12452. border:none;
  12453. border-radius:0px;
  12454. -moz-box-shadow:none;
  12455. -webkit-box-shadow:none;
  12456. box-shadow:none;
  12457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12458. font-weight:400;
  12459. font-style:normal;
  12460. font-size:16px;
  12461. }
  12462. #u127295 {
  12463. border-width:0px;
  12464. position:absolute;
  12465. left:146px;
  12466. top:665px;
  12467. width:97px;
  12468. height:22px;
  12469. display:flex;
  12470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12471. font-weight:400;
  12472. font-style:normal;
  12473. font-size:16px;
  12474. }
  12475. #u127295 .text {
  12476. position:absolute;
  12477. align-self:flex-start;
  12478. padding:0px 0px 0px 0px;
  12479. box-sizing:border-box;
  12480. width:100%;
  12481. }
  12482. #u127295_text {
  12483. border-width:0px;
  12484. white-space:nowrap;
  12485. text-transform:none;
  12486. }
  12487. #u127296_div {
  12488. border-width:0px;
  12489. position:absolute;
  12490. left:0px;
  12491. top:0px;
  12492. width:97px;
  12493. height:22px;
  12494. background:inherit;
  12495. background-color:rgba(255, 255, 255, 0);
  12496. border:none;
  12497. border-radius:0px;
  12498. -moz-box-shadow:none;
  12499. -webkit-box-shadow:none;
  12500. box-shadow:none;
  12501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12502. font-weight:400;
  12503. font-style:normal;
  12504. font-size:16px;
  12505. }
  12506. #u127296 {
  12507. border-width:0px;
  12508. position:absolute;
  12509. left:146px;
  12510. top:707px;
  12511. width:97px;
  12512. height:22px;
  12513. display:flex;
  12514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12515. font-weight:400;
  12516. font-style:normal;
  12517. font-size:16px;
  12518. }
  12519. #u127296 .text {
  12520. position:absolute;
  12521. align-self:flex-start;
  12522. padding:0px 0px 0px 0px;
  12523. box-sizing:border-box;
  12524. width:100%;
  12525. }
  12526. #u127296_text {
  12527. border-width:0px;
  12528. white-space:nowrap;
  12529. text-transform:none;
  12530. }
  12531. #u127297_div {
  12532. border-width:0px;
  12533. position:absolute;
  12534. left:0px;
  12535. top:0px;
  12536. width:97px;
  12537. height:22px;
  12538. background:inherit;
  12539. background-color:rgba(255, 255, 255, 0);
  12540. border:none;
  12541. border-radius:0px;
  12542. -moz-box-shadow:none;
  12543. -webkit-box-shadow:none;
  12544. box-shadow:none;
  12545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12546. font-weight:400;
  12547. font-style:normal;
  12548. font-size:16px;
  12549. }
  12550. #u127297 {
  12551. border-width:0px;
  12552. position:absolute;
  12553. left:146px;
  12554. top:749px;
  12555. width:97px;
  12556. height:22px;
  12557. display:flex;
  12558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12559. font-weight:400;
  12560. font-style:normal;
  12561. font-size:16px;
  12562. }
  12563. #u127297 .text {
  12564. position:absolute;
  12565. align-self:flex-start;
  12566. padding:0px 0px 0px 0px;
  12567. box-sizing:border-box;
  12568. width:100%;
  12569. }
  12570. #u127297_text {
  12571. border-width:0px;
  12572. white-space:nowrap;
  12573. text-transform:none;
  12574. }
  12575. #u127298_div {
  12576. border-width:0px;
  12577. position:absolute;
  12578. left:0px;
  12579. top:0px;
  12580. width:97px;
  12581. height:22px;
  12582. background:inherit;
  12583. background-color:rgba(255, 255, 255, 0);
  12584. border:none;
  12585. border-radius:0px;
  12586. -moz-box-shadow:none;
  12587. -webkit-box-shadow:none;
  12588. box-shadow:none;
  12589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12590. font-weight:400;
  12591. font-style:normal;
  12592. font-size:16px;
  12593. }
  12594. #u127298 {
  12595. border-width:0px;
  12596. position:absolute;
  12597. left:146px;
  12598. top:791px;
  12599. width:97px;
  12600. height:22px;
  12601. display:flex;
  12602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12603. font-weight:400;
  12604. font-style:normal;
  12605. font-size:16px;
  12606. }
  12607. #u127298 .text {
  12608. position:absolute;
  12609. align-self:flex-start;
  12610. padding:0px 0px 0px 0px;
  12611. box-sizing:border-box;
  12612. width:100%;
  12613. }
  12614. #u127298_text {
  12615. border-width:0px;
  12616. white-space:nowrap;
  12617. text-transform:none;
  12618. }
  12619. #u127299_div {
  12620. border-width:0px;
  12621. position:absolute;
  12622. left:0px;
  12623. top:0px;
  12624. width:49px;
  12625. height:17px;
  12626. background:inherit;
  12627. background-color:rgba(255, 255, 255, 0);
  12628. border:none;
  12629. border-radius:0px;
  12630. -moz-box-shadow:none;
  12631. -webkit-box-shadow:none;
  12632. box-shadow:none;
  12633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12634. font-weight:400;
  12635. font-style:normal;
  12636. font-size:12px;
  12637. color:#AAAAAA;
  12638. }
  12639. #u127299 {
  12640. border-width:0px;
  12641. position:absolute;
  12642. left:146px;
  12643. top:858px;
  12644. width:49px;
  12645. height:17px;
  12646. display:flex;
  12647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12648. font-weight:400;
  12649. font-style:normal;
  12650. font-size:12px;
  12651. color:#AAAAAA;
  12652. }
  12653. #u127299 .text {
  12654. position:absolute;
  12655. align-self:flex-start;
  12656. padding:0px 0px 0px 0px;
  12657. box-sizing:border-box;
  12658. width:100%;
  12659. }
  12660. #u127299_text {
  12661. border-width:0px;
  12662. white-space:nowrap;
  12663. text-transform:none;
  12664. }
  12665. #u127300_img {
  12666. border-width:0px;
  12667. position:absolute;
  12668. left:0px;
  12669. top:0px;
  12670. width:201px;
  12671. height:2px;
  12672. }
  12673. #u127300 {
  12674. border-width:0px;
  12675. position:absolute;
  12676. left:120px;
  12677. top:836px;
  12678. width:200px;
  12679. height:1px;
  12680. display:flex;
  12681. }
  12682. #u127300 .text {
  12683. position:absolute;
  12684. align-self:center;
  12685. padding:2px 2px 2px 2px;
  12686. box-sizing:border-box;
  12687. width:100%;
  12688. }
  12689. #u127300_text {
  12690. border-width:0px;
  12691. word-wrap:break-word;
  12692. text-transform:none;
  12693. visibility:hidden;
  12694. }
  12695. #u127301_div {
  12696. border-width:0px;
  12697. position:absolute;
  12698. left:0px;
  12699. top:0px;
  12700. width:97px;
  12701. height:22px;
  12702. background:inherit;
  12703. background-color:rgba(255, 255, 255, 0);
  12704. border:none;
  12705. border-radius:0px;
  12706. -moz-box-shadow:none;
  12707. -webkit-box-shadow:none;
  12708. box-shadow:none;
  12709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12710. font-weight:400;
  12711. font-style:normal;
  12712. font-size:16px;
  12713. }
  12714. #u127301 {
  12715. border-width:0px;
  12716. position:absolute;
  12717. left:146px;
  12718. top:896px;
  12719. width:97px;
  12720. height:22px;
  12721. display:flex;
  12722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12723. font-weight:400;
  12724. font-style:normal;
  12725. font-size:16px;
  12726. }
  12727. #u127301 .text {
  12728. position:absolute;
  12729. align-self:flex-start;
  12730. padding:0px 0px 0px 0px;
  12731. box-sizing:border-box;
  12732. width:100%;
  12733. }
  12734. #u127301_text {
  12735. border-width:0px;
  12736. white-space:nowrap;
  12737. text-transform:none;
  12738. }
  12739. #u127302_div {
  12740. border-width:0px;
  12741. position:absolute;
  12742. left:0px;
  12743. top:0px;
  12744. width:97px;
  12745. height:22px;
  12746. background:inherit;
  12747. background-color:rgba(255, 255, 255, 0);
  12748. border:none;
  12749. border-radius:0px;
  12750. -moz-box-shadow:none;
  12751. -webkit-box-shadow:none;
  12752. box-shadow:none;
  12753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12754. font-weight:400;
  12755. font-style:normal;
  12756. font-size:16px;
  12757. }
  12758. #u127302 {
  12759. border-width:0px;
  12760. position:absolute;
  12761. left:146px;
  12762. top:938px;
  12763. width:97px;
  12764. height:22px;
  12765. display:flex;
  12766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12767. font-weight:400;
  12768. font-style:normal;
  12769. font-size:16px;
  12770. }
  12771. #u127302 .text {
  12772. position:absolute;
  12773. align-self:flex-start;
  12774. padding:0px 0px 0px 0px;
  12775. box-sizing:border-box;
  12776. width:100%;
  12777. }
  12778. #u127302_text {
  12779. border-width:0px;
  12780. white-space:nowrap;
  12781. text-transform:none;
  12782. }
  12783. #u127303_div {
  12784. border-width:0px;
  12785. position:absolute;
  12786. left:0px;
  12787. top:0px;
  12788. width:65px;
  12789. height:22px;
  12790. background:inherit;
  12791. background-color:rgba(255, 255, 255, 0);
  12792. border:none;
  12793. border-radius:0px;
  12794. -moz-box-shadow:none;
  12795. -webkit-box-shadow:none;
  12796. box-shadow:none;
  12797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12798. font-weight:400;
  12799. font-style:normal;
  12800. font-size:16px;
  12801. }
  12802. #u127303 {
  12803. border-width:0px;
  12804. position:absolute;
  12805. left:146px;
  12806. top:437px;
  12807. width:65px;
  12808. height:22px;
  12809. display:flex;
  12810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12811. font-weight:400;
  12812. font-style:normal;
  12813. font-size:16px;
  12814. }
  12815. #u127303 .text {
  12816. position:absolute;
  12817. align-self:flex-start;
  12818. padding:0px 0px 0px 0px;
  12819. box-sizing:border-box;
  12820. width:100%;
  12821. }
  12822. #u127303_text {
  12823. border-width:0px;
  12824. white-space:nowrap;
  12825. text-transform:none;
  12826. }
  12827. #u127304_div {
  12828. border-width:0px;
  12829. position:absolute;
  12830. left:0px;
  12831. top:0px;
  12832. width:49px;
  12833. height:17px;
  12834. background:inherit;
  12835. background-color:rgba(255, 255, 255, 0);
  12836. border:none;
  12837. border-radius:0px;
  12838. -moz-box-shadow:none;
  12839. -webkit-box-shadow:none;
  12840. box-shadow:none;
  12841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12842. font-weight:400;
  12843. font-style:normal;
  12844. font-size:12px;
  12845. color:#AAAAAA;
  12846. }
  12847. #u127304 {
  12848. border-width:0px;
  12849. position:absolute;
  12850. left:146px;
  12851. top:400px;
  12852. width:49px;
  12853. height:17px;
  12854. display:flex;
  12855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12856. font-weight:400;
  12857. font-style:normal;
  12858. font-size:12px;
  12859. color:#AAAAAA;
  12860. }
  12861. #u127304 .text {
  12862. position:absolute;
  12863. align-self:flex-start;
  12864. padding:0px 0px 0px 0px;
  12865. box-sizing:border-box;
  12866. width:100%;
  12867. }
  12868. #u127304_text {
  12869. border-width:0px;
  12870. white-space:nowrap;
  12871. text-transform:none;
  12872. }
  12873. #u127305_img {
  12874. border-width:0px;
  12875. position:absolute;
  12876. left:0px;
  12877. top:0px;
  12878. width:201px;
  12879. height:2px;
  12880. }
  12881. #u127305 {
  12882. border-width:0px;
  12883. position:absolute;
  12884. left:120px;
  12885. top:380px;
  12886. width:200px;
  12887. height:1px;
  12888. display:flex;
  12889. }
  12890. #u127305 .text {
  12891. position:absolute;
  12892. align-self:center;
  12893. padding:2px 2px 2px 2px;
  12894. box-sizing:border-box;
  12895. width:100%;
  12896. }
  12897. #u127305_text {
  12898. border-width:0px;
  12899. word-wrap:break-word;
  12900. text-transform:none;
  12901. visibility:hidden;
  12902. }
  12903. #u127306_div {
  12904. border-width:0px;
  12905. position:absolute;
  12906. left:0px;
  12907. top:0px;
  12908. width:65px;
  12909. height:22px;
  12910. background:inherit;
  12911. background-color:rgba(255, 255, 255, 0);
  12912. border:none;
  12913. border-radius:0px;
  12914. -moz-box-shadow:none;
  12915. -webkit-box-shadow:none;
  12916. box-shadow:none;
  12917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12918. font-weight:400;
  12919. font-style:normal;
  12920. font-size:16px;
  12921. }
  12922. #u127306 {
  12923. border-width:0px;
  12924. position:absolute;
  12925. left:146px;
  12926. top:479px;
  12927. width:65px;
  12928. height:22px;
  12929. display:flex;
  12930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12931. font-weight:400;
  12932. font-style:normal;
  12933. font-size:16px;
  12934. }
  12935. #u127306 .text {
  12936. position:absolute;
  12937. align-self:flex-start;
  12938. padding:0px 0px 0px 0px;
  12939. box-sizing:border-box;
  12940. width:100%;
  12941. }
  12942. #u127306_text {
  12943. border-width:0px;
  12944. white-space:nowrap;
  12945. text-transform:none;
  12946. }
  12947. #u127307_div {
  12948. border-width:0px;
  12949. position:absolute;
  12950. left:0px;
  12951. top:0px;
  12952. width:65px;
  12953. height:22px;
  12954. background:inherit;
  12955. background-color:rgba(255, 255, 255, 0);
  12956. border:none;
  12957. border-radius:0px;
  12958. -moz-box-shadow:none;
  12959. -webkit-box-shadow:none;
  12960. box-shadow:none;
  12961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12962. font-weight:400;
  12963. font-style:normal;
  12964. font-size:16px;
  12965. }
  12966. #u127307 {
  12967. border-width:0px;
  12968. position:absolute;
  12969. left:146px;
  12970. top:521px;
  12971. width:65px;
  12972. height:22px;
  12973. display:flex;
  12974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12975. font-weight:400;
  12976. font-style:normal;
  12977. font-size:16px;
  12978. }
  12979. #u127307 .text {
  12980. position:absolute;
  12981. align-self:flex-start;
  12982. padding:0px 0px 0px 0px;
  12983. box-sizing:border-box;
  12984. width:100%;
  12985. }
  12986. #u127307_text {
  12987. border-width:0px;
  12988. white-space:nowrap;
  12989. text-transform:none;
  12990. }
  12991. #u127308_div {
  12992. border-width:0px;
  12993. position:absolute;
  12994. left:0px;
  12995. top:0px;
  12996. width:65px;
  12997. height:22px;
  12998. background:inherit;
  12999. background-color:rgba(255, 255, 255, 0);
  13000. border:none;
  13001. border-radius:0px;
  13002. -moz-box-shadow:none;
  13003. -webkit-box-shadow:none;
  13004. box-shadow:none;
  13005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13006. font-weight:400;
  13007. font-style:normal;
  13008. font-size:16px;
  13009. }
  13010. #u127308 {
  13011. border-width:0px;
  13012. position:absolute;
  13013. left:146px;
  13014. top:334px;
  13015. width:65px;
  13016. height:22px;
  13017. display:flex;
  13018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13019. font-weight:400;
  13020. font-style:normal;
  13021. font-size:16px;
  13022. }
  13023. #u127308 .text {
  13024. position:absolute;
  13025. align-self:flex-start;
  13026. padding:0px 0px 0px 0px;
  13027. box-sizing:border-box;
  13028. width:100%;
  13029. }
  13030. #u127308_text {
  13031. border-width:0px;
  13032. white-space:nowrap;
  13033. text-transform:none;
  13034. }
  13035. #u127309_div {
  13036. border-width:0px;
  13037. position:absolute;
  13038. left:0px;
  13039. top:0px;
  13040. width:65px;
  13041. height:22px;
  13042. background:inherit;
  13043. background-color:rgba(255, 255, 255, 0);
  13044. border:none;
  13045. border-radius:0px;
  13046. -moz-box-shadow:none;
  13047. -webkit-box-shadow:none;
  13048. box-shadow:none;
  13049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13050. font-weight:400;
  13051. font-style:normal;
  13052. font-size:16px;
  13053. }
  13054. #u127309 {
  13055. border-width:0px;
  13056. position:absolute;
  13057. left:146px;
  13058. top:251px;
  13059. width:65px;
  13060. height:22px;
  13061. display:flex;
  13062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13063. font-weight:400;
  13064. font-style:normal;
  13065. font-size:16px;
  13066. }
  13067. #u127309 .text {
  13068. position:absolute;
  13069. align-self:flex-start;
  13070. padding:0px 0px 0px 0px;
  13071. box-sizing:border-box;
  13072. width:100%;
  13073. }
  13074. #u127309_text {
  13075. border-width:0px;
  13076. white-space:nowrap;
  13077. text-transform:none;
  13078. }
  13079. #u127310_div {
  13080. border-width:0px;
  13081. position:absolute;
  13082. left:0px;
  13083. top:0px;
  13084. width:65px;
  13085. height:22px;
  13086. background:inherit;
  13087. background-color:rgba(255, 255, 255, 0);
  13088. border:none;
  13089. border-radius:0px;
  13090. -moz-box-shadow:none;
  13091. -webkit-box-shadow:none;
  13092. box-shadow:none;
  13093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13094. font-weight:400;
  13095. font-style:normal;
  13096. font-size:16px;
  13097. }
  13098. #u127310 {
  13099. border-width:0px;
  13100. position:absolute;
  13101. left:146px;
  13102. top:293px;
  13103. width:65px;
  13104. height:22px;
  13105. display:flex;
  13106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13107. font-weight:400;
  13108. font-style:normal;
  13109. font-size:16px;
  13110. }
  13111. #u127310 .text {
  13112. position:absolute;
  13113. align-self:flex-start;
  13114. padding:0px 0px 0px 0px;
  13115. box-sizing:border-box;
  13116. width:100%;
  13117. }
  13118. #u127310_text {
  13119. border-width:0px;
  13120. white-space:nowrap;
  13121. text-transform:none;
  13122. }