styles.css 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2321px;
  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. #u42221_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. #u42221 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u42221 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u42221_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u42222_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. #u42222 {
  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. #u42222 .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. #u42222_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u42223_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. #u42223 {
  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. #u42223 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u42223_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u42224 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u42225_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u42225 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u42225 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u42225_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u42226_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. #u42226 {
  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. #u42226 .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. #u42226_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u42227_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. #u42227 {
  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. #u42227 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u42227_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u42228 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u42229_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u42229_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u42229_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u42229 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u42229 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u42229_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u42229.disabled {
  356. }
  357. .u42229_input_option {
  358. font-size:14px;
  359. }
  360. #u42230_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u42230 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u42230 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u42230_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u42231_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u42231 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u42231 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u42231_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u42232_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u42232 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u42232 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u42232_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u42233 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u42234_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u42234 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u42234 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u42234_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u42235_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u42235 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u42235 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u42235_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u42236 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u42237_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u42237 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u42237 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u42237_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u42238_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u42238 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u42238 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u42238_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u42239 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u42240_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u42240 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u42240 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u42240_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u42241_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u42241 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u42241 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u42241_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u42242 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u42243_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u42243 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u42243 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u42243_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u42244_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u42244 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u42244 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u42244_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u42245 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u42246_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u42246 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u42246 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u42246_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u42247_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u42247 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u42247 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u42247_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u42248 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u42249_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u42249 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u42249 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u42249_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u42250_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u42250 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u42250 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u42250_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u42251 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u42252_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u42252 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u42252 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u42252_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u42253_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u42253 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u42253 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u42253_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u42254 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u42255_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u42255 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u42255 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u42255_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u42256_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u42256 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u42256 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u42256_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u42257 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u42258_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u42258 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u42258 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u42258_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u42259_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u42259 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u42259 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u42259_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u42260 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u42261_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u42261 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u42261 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u42261_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u42262_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u42262 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u42262 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u42262_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u42263_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u42263 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u42263 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u42263_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u42264_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u42264 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u42264 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u42264_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u42265_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u42265 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u42265 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u42265_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u42266_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u42266 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u42266 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u42266_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u42267 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u42268_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u42268 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u42268 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u42268_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u42269_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u42269 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u42269 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u42269_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u42270 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u42271_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u42271 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u42271 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u42271_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u42272_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u42272 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u42272 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u42272_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u42273_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1262px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:38px;
  1656. color:#D7D7D7;
  1657. }
  1658. #u42273 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:330px;
  1662. top:50px;
  1663. width:1262px;
  1664. height:1191px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:38px;
  1670. color:#D7D7D7;
  1671. }
  1672. #u42273 .text {
  1673. position:absolute;
  1674. align-self:center;
  1675. padding:2px 2px 2px 50px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u42273_text {
  1680. border-width:0px;
  1681. word-wrap:break-word;
  1682. text-transform:none;
  1683. visibility:hidden;
  1684. }
  1685. #u42274_div {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:73px;
  1691. height:50px;
  1692. background:inherit;
  1693. background-color:rgba(255, 255, 255, 0);
  1694. border:none;
  1695. border-left:0px;
  1696. border-top:0px;
  1697. border-right:0px;
  1698. border-radius:0px;
  1699. border-bottom-right-radius:0px;
  1700. border-bottom-left-radius:0px;
  1701. -moz-box-shadow:none;
  1702. -webkit-box-shadow:none;
  1703. box-shadow:none;
  1704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:18px;
  1708. }
  1709. #u42274 {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:349px;
  1713. top:50px;
  1714. width:73px;
  1715. height:50px;
  1716. display:flex;
  1717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1718. font-weight:400;
  1719. font-style:normal;
  1720. font-size:18px;
  1721. }
  1722. #u42274 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:0px 0px 0px 0px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u42274_text {
  1730. border-width:0px;
  1731. white-space:nowrap;
  1732. text-transform:none;
  1733. }
  1734. #u42275 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:349px;
  1738. top:195px;
  1739. width:1224px;
  1740. height:238px;
  1741. }
  1742. #u42276_img {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:38px;
  1748. height:34px;
  1749. }
  1750. #u42276 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:38px;
  1756. height:34px;
  1757. display:flex;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:14px;
  1762. color:#FFFFFF;
  1763. line-height:30px;
  1764. }
  1765. #u42276 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 0px 2px 0px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u42276_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. }
  1777. #u42277_img {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:169px;
  1783. height:34px;
  1784. }
  1785. #u42277 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:38px;
  1789. top:0px;
  1790. width:169px;
  1791. height:34px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:14px;
  1797. color:#FFFFFF;
  1798. line-height:30px;
  1799. }
  1800. #u42277 .text {
  1801. position:absolute;
  1802. align-self:center;
  1803. padding:2px 0px 2px 0px;
  1804. box-sizing:border-box;
  1805. width:100%;
  1806. }
  1807. #u42277_text {
  1808. border-width:0px;
  1809. word-wrap:break-word;
  1810. text-transform:none;
  1811. }
  1812. #u42278_img {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:169px;
  1818. height:34px;
  1819. }
  1820. #u42278 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:207px;
  1824. top:0px;
  1825. width:169px;
  1826. height:34px;
  1827. display:flex;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:14px;
  1832. color:#FFFFFF;
  1833. line-height:30px;
  1834. }
  1835. #u42278 .text {
  1836. position:absolute;
  1837. align-self:center;
  1838. padding:2px 0px 2px 0px;
  1839. box-sizing:border-box;
  1840. width:100%;
  1841. }
  1842. #u42278_text {
  1843. border-width:0px;
  1844. word-wrap:break-word;
  1845. text-transform:none;
  1846. }
  1847. #u42279_img {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:148px;
  1853. height:34px;
  1854. }
  1855. #u42279 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:376px;
  1859. top:0px;
  1860. width:148px;
  1861. height:34px;
  1862. display:flex;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:14px;
  1867. color:#FFFFFF;
  1868. line-height:30px;
  1869. }
  1870. #u42279 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:2px 0px 2px 0px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u42279_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }
  1882. #u42280_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:156px;
  1888. height:34px;
  1889. }
  1890. #u42280 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:524px;
  1894. top:0px;
  1895. width:156px;
  1896. height:34px;
  1897. display:flex;
  1898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:14px;
  1902. color:#FFFFFF;
  1903. line-height:30px;
  1904. }
  1905. #u42280 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 0px 2px 0px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u42280_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. }
  1917. #u42281_img {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:136px;
  1923. height:34px;
  1924. }
  1925. #u42281 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:680px;
  1929. top:0px;
  1930. width:136px;
  1931. height:34px;
  1932. display:flex;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:14px;
  1937. color:#FFFFFF;
  1938. line-height:30px;
  1939. }
  1940. #u42281 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 0px 2px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u42281_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u42282_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:156px;
  1958. height:34px;
  1959. }
  1960. #u42282 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:816px;
  1964. top:0px;
  1965. width:156px;
  1966. height:34px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:14px;
  1972. color:#FFFFFF;
  1973. line-height:30px;
  1974. }
  1975. #u42282 .text {
  1976. position:absolute;
  1977. align-self:center;
  1978. padding:2px 0px 2px 0px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u42282_text {
  1983. border-width:0px;
  1984. word-wrap:break-word;
  1985. text-transform:none;
  1986. }
  1987. #u42283_img {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:136px;
  1993. height:34px;
  1994. }
  1995. #u42283 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:972px;
  1999. top:0px;
  2000. width:136px;
  2001. height:34px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:14px;
  2007. color:#FFFFFF;
  2008. line-height:30px;
  2009. }
  2010. #u42283 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:2px 0px 2px 0px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u42283_text {
  2018. border-width:0px;
  2019. word-wrap:break-word;
  2020. text-transform:none;
  2021. }
  2022. #u42284_img {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:116px;
  2028. height:34px;
  2029. }
  2030. #u42284 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:1108px;
  2034. top:0px;
  2035. width:116px;
  2036. height:34px;
  2037. display:flex;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:14px;
  2042. color:#FFFFFF;
  2043. line-height:30px;
  2044. }
  2045. #u42284 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 0px 2px 0px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u42284_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. }
  2057. #u42285_img {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:38px;
  2063. height:34px;
  2064. }
  2065. #u42285 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:34px;
  2070. width:38px;
  2071. height:34px;
  2072. display:flex;
  2073. font-size:14px;
  2074. line-height:30px;
  2075. }
  2076. #u42285 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:2px 0px 2px 0px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u42285_text {
  2084. border-width:0px;
  2085. word-wrap:break-word;
  2086. text-transform:none;
  2087. }
  2088. #u42286_img {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:169px;
  2094. height:34px;
  2095. }
  2096. #u42286 {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:38px;
  2100. top:34px;
  2101. width:169px;
  2102. height:34px;
  2103. display:flex;
  2104. font-size:14px;
  2105. line-height:30px;
  2106. }
  2107. #u42286 .text {
  2108. position:absolute;
  2109. align-self:center;
  2110. padding:2px 0px 2px 0px;
  2111. box-sizing:border-box;
  2112. width:100%;
  2113. }
  2114. #u42286_text {
  2115. border-width:0px;
  2116. word-wrap:break-word;
  2117. text-transform:none;
  2118. visibility:hidden;
  2119. }
  2120. #u42287_img {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:169px;
  2126. height:34px;
  2127. }
  2128. #u42287 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:207px;
  2132. top:34px;
  2133. width:169px;
  2134. height:34px;
  2135. display:flex;
  2136. font-size:14px;
  2137. line-height:30px;
  2138. }
  2139. #u42287 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 0px 2px 0px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u42287_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. visibility:hidden;
  2151. }
  2152. #u42288_img {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:148px;
  2158. height:34px;
  2159. }
  2160. #u42288 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:376px;
  2164. top:34px;
  2165. width:148px;
  2166. height:34px;
  2167. display:flex;
  2168. font-size:14px;
  2169. line-height:30px;
  2170. }
  2171. #u42288 .text {
  2172. position:absolute;
  2173. align-self:center;
  2174. padding:2px 0px 2px 0px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u42288_text {
  2179. border-width:0px;
  2180. word-wrap:break-word;
  2181. text-transform:none;
  2182. visibility:hidden;
  2183. }
  2184. #u42289_img {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:0px;
  2189. width:156px;
  2190. height:34px;
  2191. }
  2192. #u42289 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:524px;
  2196. top:34px;
  2197. width:156px;
  2198. height:34px;
  2199. display:flex;
  2200. font-size:14px;
  2201. line-height:30px;
  2202. }
  2203. #u42289 .text {
  2204. position:absolute;
  2205. align-self:center;
  2206. padding:2px 0px 2px 0px;
  2207. box-sizing:border-box;
  2208. width:100%;
  2209. }
  2210. #u42289_text {
  2211. border-width:0px;
  2212. word-wrap:break-word;
  2213. text-transform:none;
  2214. visibility:hidden;
  2215. }
  2216. #u42290_img {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:136px;
  2222. height:34px;
  2223. }
  2224. #u42290 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:680px;
  2228. top:34px;
  2229. width:136px;
  2230. height:34px;
  2231. display:flex;
  2232. font-size:14px;
  2233. line-height:30px;
  2234. }
  2235. #u42290 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 0px 2px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u42290_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u42291_img {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:156px;
  2254. height:34px;
  2255. }
  2256. #u42291 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:816px;
  2260. top:34px;
  2261. width:156px;
  2262. height:34px;
  2263. display:flex;
  2264. font-size:14px;
  2265. line-height:30px;
  2266. }
  2267. #u42291 .text {
  2268. position:absolute;
  2269. align-self:center;
  2270. padding:2px 0px 2px 0px;
  2271. box-sizing:border-box;
  2272. width:100%;
  2273. }
  2274. #u42291_text {
  2275. border-width:0px;
  2276. word-wrap:break-word;
  2277. text-transform:none;
  2278. visibility:hidden;
  2279. }
  2280. #u42292_img {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:136px;
  2286. height:34px;
  2287. }
  2288. #u42292 {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:972px;
  2292. top:34px;
  2293. width:136px;
  2294. height:34px;
  2295. display:flex;
  2296. font-size:14px;
  2297. line-height:30px;
  2298. }
  2299. #u42292 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:2px 0px 2px 0px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u42292_text {
  2307. border-width:0px;
  2308. word-wrap:break-word;
  2309. text-transform:none;
  2310. visibility:hidden;
  2311. }
  2312. #u42293_img {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:0px;
  2316. top:0px;
  2317. width:116px;
  2318. height:34px;
  2319. }
  2320. #u42293 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:1108px;
  2324. top:34px;
  2325. width:116px;
  2326. height:34px;
  2327. display:flex;
  2328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2329. font-weight:400;
  2330. font-style:normal;
  2331. font-size:14px;
  2332. line-height:30px;
  2333. }
  2334. #u42293 .text {
  2335. position:absolute;
  2336. align-self:center;
  2337. padding:2px 0px 2px 0px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u42293_text {
  2342. border-width:0px;
  2343. word-wrap:break-word;
  2344. text-transform:none;
  2345. }
  2346. #u42294_img {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:38px;
  2352. height:34px;
  2353. }
  2354. #u42294 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:68px;
  2359. width:38px;
  2360. height:34px;
  2361. display:flex;
  2362. font-size:14px;
  2363. line-height:30px;
  2364. }
  2365. #u42294 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 0px 2px 0px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u42294_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. }
  2377. #u42295_img {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:169px;
  2383. height:34px;
  2384. }
  2385. #u42295 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:38px;
  2389. top:68px;
  2390. width:169px;
  2391. height:34px;
  2392. display:flex;
  2393. font-size:14px;
  2394. line-height:30px;
  2395. }
  2396. #u42295 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 0px 2px 0px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u42295_text {
  2404. border-width:0px;
  2405. word-wrap:break-word;
  2406. text-transform:none;
  2407. visibility:hidden;
  2408. }
  2409. #u42296_img {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:169px;
  2415. height:34px;
  2416. }
  2417. #u42296 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:207px;
  2421. top:68px;
  2422. width:169px;
  2423. height:34px;
  2424. display:flex;
  2425. font-size:14px;
  2426. line-height:30px;
  2427. }
  2428. #u42296 .text {
  2429. position:absolute;
  2430. align-self:center;
  2431. padding:2px 0px 2px 0px;
  2432. box-sizing:border-box;
  2433. width:100%;
  2434. }
  2435. #u42296_text {
  2436. border-width:0px;
  2437. word-wrap:break-word;
  2438. text-transform:none;
  2439. visibility:hidden;
  2440. }
  2441. #u42297_img {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:148px;
  2447. height:34px;
  2448. }
  2449. #u42297 {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:376px;
  2453. top:68px;
  2454. width:148px;
  2455. height:34px;
  2456. display:flex;
  2457. font-size:14px;
  2458. line-height:30px;
  2459. }
  2460. #u42297 .text {
  2461. position:absolute;
  2462. align-self:center;
  2463. padding:2px 0px 2px 0px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u42297_text {
  2468. border-width:0px;
  2469. word-wrap:break-word;
  2470. text-transform:none;
  2471. visibility:hidden;
  2472. }
  2473. #u42298_img {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:156px;
  2479. height:34px;
  2480. }
  2481. #u42298 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:524px;
  2485. top:68px;
  2486. width:156px;
  2487. height:34px;
  2488. display:flex;
  2489. font-size:14px;
  2490. line-height:30px;
  2491. }
  2492. #u42298 .text {
  2493. position:absolute;
  2494. align-self:center;
  2495. padding:2px 0px 2px 0px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u42298_text {
  2500. border-width:0px;
  2501. word-wrap:break-word;
  2502. text-transform:none;
  2503. visibility:hidden;
  2504. }
  2505. #u42299_img {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:136px;
  2511. height:34px;
  2512. }
  2513. #u42299 {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:680px;
  2517. top:68px;
  2518. width:136px;
  2519. height:34px;
  2520. display:flex;
  2521. font-size:14px;
  2522. line-height:30px;
  2523. }
  2524. #u42299 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:2px 0px 2px 0px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u42299_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. visibility:hidden;
  2536. }
  2537. #u42300_img {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:156px;
  2543. height:34px;
  2544. }
  2545. #u42300 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:816px;
  2549. top:68px;
  2550. width:156px;
  2551. height:34px;
  2552. display:flex;
  2553. font-size:14px;
  2554. line-height:30px;
  2555. }
  2556. #u42300 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 0px 2px 0px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u42300_text {
  2564. border-width:0px;
  2565. word-wrap:break-word;
  2566. text-transform:none;
  2567. visibility:hidden;
  2568. }
  2569. #u42301_img {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:136px;
  2575. height:34px;
  2576. }
  2577. #u42301 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:972px;
  2581. top:68px;
  2582. width:136px;
  2583. height:34px;
  2584. display:flex;
  2585. font-size:14px;
  2586. line-height:30px;
  2587. }
  2588. #u42301 .text {
  2589. position:absolute;
  2590. align-self:center;
  2591. padding:2px 0px 2px 0px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u42301_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. visibility:hidden;
  2600. }
  2601. #u42302_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:116px;
  2607. height:34px;
  2608. }
  2609. #u42302 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:1108px;
  2613. top:68px;
  2614. width:116px;
  2615. height:34px;
  2616. display:flex;
  2617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. font-size:14px;
  2621. line-height:30px;
  2622. }
  2623. #u42302 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 0px 2px 0px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u42302_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. }
  2635. #u42303_img {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:38px;
  2641. height:34px;
  2642. }
  2643. #u42303 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:102px;
  2648. width:38px;
  2649. height:34px;
  2650. display:flex;
  2651. font-size:14px;
  2652. line-height:30px;
  2653. }
  2654. #u42303 .text {
  2655. position:absolute;
  2656. align-self:center;
  2657. padding:2px 0px 2px 0px;
  2658. box-sizing:border-box;
  2659. width:100%;
  2660. }
  2661. #u42303_text {
  2662. border-width:0px;
  2663. word-wrap:break-word;
  2664. text-transform:none;
  2665. visibility:hidden;
  2666. }
  2667. #u42304_img {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:169px;
  2673. height:34px;
  2674. }
  2675. #u42304 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:38px;
  2679. top:102px;
  2680. width:169px;
  2681. height:34px;
  2682. display:flex;
  2683. font-size:14px;
  2684. line-height:30px;
  2685. }
  2686. #u42304 .text {
  2687. position:absolute;
  2688. align-self:center;
  2689. padding:2px 0px 2px 0px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u42304_text {
  2694. border-width:0px;
  2695. word-wrap:break-word;
  2696. text-transform:none;
  2697. visibility:hidden;
  2698. }
  2699. #u42305_img {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:169px;
  2705. height:34px;
  2706. }
  2707. #u42305 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:207px;
  2711. top:102px;
  2712. width:169px;
  2713. height:34px;
  2714. display:flex;
  2715. font-size:14px;
  2716. line-height:30px;
  2717. }
  2718. #u42305 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 0px 2px 0px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u42305_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u42306_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:148px;
  2737. height:34px;
  2738. }
  2739. #u42306 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:376px;
  2743. top:102px;
  2744. width:148px;
  2745. height:34px;
  2746. display:flex;
  2747. font-size:14px;
  2748. line-height:30px;
  2749. }
  2750. #u42306 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 0px 2px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u42306_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u42307_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:156px;
  2769. height:34px;
  2770. }
  2771. #u42307 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:524px;
  2775. top:102px;
  2776. width:156px;
  2777. height:34px;
  2778. display:flex;
  2779. font-size:14px;
  2780. line-height:30px;
  2781. }
  2782. #u42307 .text {
  2783. position:absolute;
  2784. align-self:center;
  2785. padding:2px 0px 2px 0px;
  2786. box-sizing:border-box;
  2787. width:100%;
  2788. }
  2789. #u42307_text {
  2790. border-width:0px;
  2791. word-wrap:break-word;
  2792. text-transform:none;
  2793. visibility:hidden;
  2794. }
  2795. #u42308_img {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:136px;
  2801. height:34px;
  2802. }
  2803. #u42308 {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:680px;
  2807. top:102px;
  2808. width:136px;
  2809. height:34px;
  2810. display:flex;
  2811. font-size:14px;
  2812. line-height:30px;
  2813. }
  2814. #u42308 .text {
  2815. position:absolute;
  2816. align-self:center;
  2817. padding:2px 0px 2px 0px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u42308_text {
  2822. border-width:0px;
  2823. word-wrap:break-word;
  2824. text-transform:none;
  2825. visibility:hidden;
  2826. }
  2827. #u42309_img {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:156px;
  2833. height:34px;
  2834. }
  2835. #u42309 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:816px;
  2839. top:102px;
  2840. width:156px;
  2841. height:34px;
  2842. display:flex;
  2843. font-size:14px;
  2844. line-height:30px;
  2845. }
  2846. #u42309 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 0px 2px 0px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u42309_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u42310_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:136px;
  2865. height:34px;
  2866. }
  2867. #u42310 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:972px;
  2871. top:102px;
  2872. width:136px;
  2873. height:34px;
  2874. display:flex;
  2875. font-size:14px;
  2876. line-height:30px;
  2877. }
  2878. #u42310 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 0px 2px 0px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u42310_text {
  2886. border-width:0px;
  2887. word-wrap:break-word;
  2888. text-transform:none;
  2889. visibility:hidden;
  2890. }
  2891. #u42311_img {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:116px;
  2897. height:34px;
  2898. }
  2899. #u42311 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:1108px;
  2903. top:102px;
  2904. width:116px;
  2905. height:34px;
  2906. display:flex;
  2907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:14px;
  2911. line-height:30px;
  2912. }
  2913. #u42311 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 0px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u42311_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. }
  2925. #u42312_img {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:0px;
  2929. top:0px;
  2930. width:38px;
  2931. height:34px;
  2932. }
  2933. #u42312 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:136px;
  2938. width:38px;
  2939. height:34px;
  2940. display:flex;
  2941. font-size:14px;
  2942. line-height:30px;
  2943. }
  2944. #u42312 .text {
  2945. position:absolute;
  2946. align-self:center;
  2947. padding:2px 0px 2px 0px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u42312_text {
  2952. border-width:0px;
  2953. word-wrap:break-word;
  2954. text-transform:none;
  2955. visibility:hidden;
  2956. }
  2957. #u42313_img {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:169px;
  2963. height:34px;
  2964. }
  2965. #u42313 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:38px;
  2969. top:136px;
  2970. width:169px;
  2971. height:34px;
  2972. display:flex;
  2973. font-size:14px;
  2974. line-height:30px;
  2975. }
  2976. #u42313 .text {
  2977. position:absolute;
  2978. align-self:center;
  2979. padding:2px 0px 2px 0px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u42313_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. visibility:hidden;
  2988. }
  2989. #u42314_img {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:169px;
  2995. height:34px;
  2996. }
  2997. #u42314 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:207px;
  3001. top:136px;
  3002. width:169px;
  3003. height:34px;
  3004. display:flex;
  3005. font-size:14px;
  3006. line-height:30px;
  3007. }
  3008. #u42314 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:2px 0px 2px 0px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u42314_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. visibility:hidden;
  3020. }
  3021. #u42315_img {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:148px;
  3027. height:34px;
  3028. }
  3029. #u42315 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:376px;
  3033. top:136px;
  3034. width:148px;
  3035. height:34px;
  3036. display:flex;
  3037. font-size:14px;
  3038. line-height:30px;
  3039. }
  3040. #u42315 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 0px 2px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u42315_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. visibility:hidden;
  3052. }
  3053. #u42316_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:156px;
  3059. height:34px;
  3060. }
  3061. #u42316 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:524px;
  3065. top:136px;
  3066. width:156px;
  3067. height:34px;
  3068. display:flex;
  3069. font-size:14px;
  3070. line-height:30px;
  3071. }
  3072. #u42316 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 0px 2px 0px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u42316_text {
  3080. border-width:0px;
  3081. word-wrap:break-word;
  3082. text-transform:none;
  3083. visibility:hidden;
  3084. }
  3085. #u42317_img {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:136px;
  3091. height:34px;
  3092. }
  3093. #u42317 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:680px;
  3097. top:136px;
  3098. width:136px;
  3099. height:34px;
  3100. display:flex;
  3101. font-size:14px;
  3102. line-height:30px;
  3103. }
  3104. #u42317 .text {
  3105. position:absolute;
  3106. align-self:center;
  3107. padding:2px 0px 2px 0px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u42317_text {
  3112. border-width:0px;
  3113. word-wrap:break-word;
  3114. text-transform:none;
  3115. visibility:hidden;
  3116. }
  3117. #u42318_img {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:156px;
  3123. height:34px;
  3124. }
  3125. #u42318 {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:816px;
  3129. top:136px;
  3130. width:156px;
  3131. height:34px;
  3132. display:flex;
  3133. font-size:14px;
  3134. line-height:30px;
  3135. }
  3136. #u42318 .text {
  3137. position:absolute;
  3138. align-self:center;
  3139. padding:2px 0px 2px 0px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u42318_text {
  3144. border-width:0px;
  3145. word-wrap:break-word;
  3146. text-transform:none;
  3147. visibility:hidden;
  3148. }
  3149. #u42319_img {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:136px;
  3155. height:34px;
  3156. }
  3157. #u42319 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:972px;
  3161. top:136px;
  3162. width:136px;
  3163. height:34px;
  3164. display:flex;
  3165. font-size:14px;
  3166. line-height:30px;
  3167. }
  3168. #u42319 .text {
  3169. position:absolute;
  3170. align-self:center;
  3171. padding:2px 0px 2px 0px;
  3172. box-sizing:border-box;
  3173. width:100%;
  3174. }
  3175. #u42319_text {
  3176. border-width:0px;
  3177. word-wrap:break-word;
  3178. text-transform:none;
  3179. visibility:hidden;
  3180. }
  3181. #u42320_img {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:116px;
  3187. height:34px;
  3188. }
  3189. #u42320 {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:1108px;
  3193. top:136px;
  3194. width:116px;
  3195. height:34px;
  3196. display:flex;
  3197. font-size:14px;
  3198. line-height:30px;
  3199. }
  3200. #u42320 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:2px 0px 2px 0px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u42320_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u42321_img {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:38px;
  3219. height:34px;
  3220. }
  3221. #u42321 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:170px;
  3226. width:38px;
  3227. height:34px;
  3228. display:flex;
  3229. font-size:14px;
  3230. line-height:30px;
  3231. }
  3232. #u42321 .text {
  3233. position:absolute;
  3234. align-self:center;
  3235. padding:2px 0px 2px 0px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u42321_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. visibility:hidden;
  3244. }
  3245. #u42322_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:169px;
  3251. height:34px;
  3252. }
  3253. #u42322 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:38px;
  3257. top:170px;
  3258. width:169px;
  3259. height:34px;
  3260. display:flex;
  3261. font-size:14px;
  3262. line-height:30px;
  3263. }
  3264. #u42322 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 0px 2px 0px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u42322_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. visibility:hidden;
  3276. }
  3277. #u42323_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:169px;
  3283. height:34px;
  3284. }
  3285. #u42323 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:207px;
  3289. top:170px;
  3290. width:169px;
  3291. height:34px;
  3292. display:flex;
  3293. font-size:14px;
  3294. line-height:30px;
  3295. }
  3296. #u42323 .text {
  3297. position:absolute;
  3298. align-self:center;
  3299. padding:2px 0px 2px 0px;
  3300. box-sizing:border-box;
  3301. width:100%;
  3302. }
  3303. #u42323_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u42324_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:148px;
  3315. height:34px;
  3316. }
  3317. #u42324 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:376px;
  3321. top:170px;
  3322. width:148px;
  3323. height:34px;
  3324. display:flex;
  3325. font-size:14px;
  3326. line-height:30px;
  3327. }
  3328. #u42324 .text {
  3329. position:absolute;
  3330. align-self:center;
  3331. padding:2px 0px 2px 0px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u42324_text {
  3336. border-width:0px;
  3337. word-wrap:break-word;
  3338. text-transform:none;
  3339. visibility:hidden;
  3340. }
  3341. #u42325_img {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:156px;
  3347. height:34px;
  3348. }
  3349. #u42325 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:524px;
  3353. top:170px;
  3354. width:156px;
  3355. height:34px;
  3356. display:flex;
  3357. font-size:14px;
  3358. line-height:30px;
  3359. }
  3360. #u42325 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 0px 2px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u42325_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. visibility:hidden;
  3372. }
  3373. #u42326_img {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:0px;
  3377. top:0px;
  3378. width:136px;
  3379. height:34px;
  3380. }
  3381. #u42326 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:680px;
  3385. top:170px;
  3386. width:136px;
  3387. height:34px;
  3388. display:flex;
  3389. font-size:14px;
  3390. line-height:30px;
  3391. }
  3392. #u42326 .text {
  3393. position:absolute;
  3394. align-self:center;
  3395. padding:2px 0px 2px 0px;
  3396. box-sizing:border-box;
  3397. width:100%;
  3398. }
  3399. #u42326_text {
  3400. border-width:0px;
  3401. word-wrap:break-word;
  3402. text-transform:none;
  3403. visibility:hidden;
  3404. }
  3405. #u42327_img {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:156px;
  3411. height:34px;
  3412. }
  3413. #u42327 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:816px;
  3417. top:170px;
  3418. width:156px;
  3419. height:34px;
  3420. display:flex;
  3421. font-size:14px;
  3422. line-height:30px;
  3423. }
  3424. #u42327 .text {
  3425. position:absolute;
  3426. align-self:center;
  3427. padding:2px 0px 2px 0px;
  3428. box-sizing:border-box;
  3429. width:100%;
  3430. }
  3431. #u42327_text {
  3432. border-width:0px;
  3433. word-wrap:break-word;
  3434. text-transform:none;
  3435. visibility:hidden;
  3436. }
  3437. #u42328_img {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:136px;
  3443. height:34px;
  3444. }
  3445. #u42328 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:972px;
  3449. top:170px;
  3450. width:136px;
  3451. height:34px;
  3452. display:flex;
  3453. font-size:14px;
  3454. line-height:30px;
  3455. }
  3456. #u42328 .text {
  3457. position:absolute;
  3458. align-self:center;
  3459. padding:2px 0px 2px 0px;
  3460. box-sizing:border-box;
  3461. width:100%;
  3462. }
  3463. #u42328_text {
  3464. border-width:0px;
  3465. word-wrap:break-word;
  3466. text-transform:none;
  3467. visibility:hidden;
  3468. }
  3469. #u42329_img {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:116px;
  3475. height:34px;
  3476. }
  3477. #u42329 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:1108px;
  3481. top:170px;
  3482. width:116px;
  3483. height:34px;
  3484. display:flex;
  3485. font-size:14px;
  3486. line-height:30px;
  3487. }
  3488. #u42329 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 0px 2px 0px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u42329_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. visibility:hidden;
  3500. }
  3501. #u42330_img {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:38px;
  3507. height:34px;
  3508. }
  3509. #u42330 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:204px;
  3514. width:38px;
  3515. height:34px;
  3516. display:flex;
  3517. font-size:14px;
  3518. line-height:30px;
  3519. }
  3520. #u42330 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:2px 0px 2px 0px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u42330_text {
  3528. border-width:0px;
  3529. word-wrap:break-word;
  3530. text-transform:none;
  3531. visibility:hidden;
  3532. }
  3533. #u42331_img {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:169px;
  3539. height:34px;
  3540. }
  3541. #u42331 {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:38px;
  3545. top:204px;
  3546. width:169px;
  3547. height:34px;
  3548. display:flex;
  3549. font-size:14px;
  3550. line-height:30px;
  3551. }
  3552. #u42331 .text {
  3553. position:absolute;
  3554. align-self:center;
  3555. padding:2px 0px 2px 0px;
  3556. box-sizing:border-box;
  3557. width:100%;
  3558. }
  3559. #u42331_text {
  3560. border-width:0px;
  3561. word-wrap:break-word;
  3562. text-transform:none;
  3563. visibility:hidden;
  3564. }
  3565. #u42332_img {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:169px;
  3571. height:34px;
  3572. }
  3573. #u42332 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:207px;
  3577. top:204px;
  3578. width:169px;
  3579. height:34px;
  3580. display:flex;
  3581. font-size:14px;
  3582. line-height:30px;
  3583. }
  3584. #u42332 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:2px 0px 2px 0px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u42332_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. visibility:hidden;
  3596. }
  3597. #u42333_img {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:148px;
  3603. height:34px;
  3604. }
  3605. #u42333 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:376px;
  3609. top:204px;
  3610. width:148px;
  3611. height:34px;
  3612. display:flex;
  3613. font-size:14px;
  3614. line-height:30px;
  3615. }
  3616. #u42333 .text {
  3617. position:absolute;
  3618. align-self:center;
  3619. padding:2px 0px 2px 0px;
  3620. box-sizing:border-box;
  3621. width:100%;
  3622. }
  3623. #u42333_text {
  3624. border-width:0px;
  3625. word-wrap:break-word;
  3626. text-transform:none;
  3627. visibility:hidden;
  3628. }
  3629. #u42334_img {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:0px;
  3633. top:0px;
  3634. width:156px;
  3635. height:34px;
  3636. }
  3637. #u42334 {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:524px;
  3641. top:204px;
  3642. width:156px;
  3643. height:34px;
  3644. display:flex;
  3645. font-size:14px;
  3646. line-height:30px;
  3647. }
  3648. #u42334 .text {
  3649. position:absolute;
  3650. align-self:center;
  3651. padding:2px 0px 2px 0px;
  3652. box-sizing:border-box;
  3653. width:100%;
  3654. }
  3655. #u42334_text {
  3656. border-width:0px;
  3657. word-wrap:break-word;
  3658. text-transform:none;
  3659. visibility:hidden;
  3660. }
  3661. #u42335_img {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:0px;
  3665. top:0px;
  3666. width:136px;
  3667. height:34px;
  3668. }
  3669. #u42335 {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:680px;
  3673. top:204px;
  3674. width:136px;
  3675. height:34px;
  3676. display:flex;
  3677. font-size:14px;
  3678. line-height:30px;
  3679. }
  3680. #u42335 .text {
  3681. position:absolute;
  3682. align-self:center;
  3683. padding:2px 0px 2px 0px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u42335_text {
  3688. border-width:0px;
  3689. word-wrap:break-word;
  3690. text-transform:none;
  3691. visibility:hidden;
  3692. }
  3693. #u42336_img {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:156px;
  3699. height:34px;
  3700. }
  3701. #u42336 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:816px;
  3705. top:204px;
  3706. width:156px;
  3707. height:34px;
  3708. display:flex;
  3709. font-size:14px;
  3710. line-height:30px;
  3711. }
  3712. #u42336 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 0px 2px 0px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u42336_text {
  3720. border-width:0px;
  3721. word-wrap:break-word;
  3722. text-transform:none;
  3723. visibility:hidden;
  3724. }
  3725. #u42337_img {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:136px;
  3731. height:34px;
  3732. }
  3733. #u42337 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:972px;
  3737. top:204px;
  3738. width:136px;
  3739. height:34px;
  3740. display:flex;
  3741. font-size:14px;
  3742. line-height:30px;
  3743. }
  3744. #u42337 .text {
  3745. position:absolute;
  3746. align-self:center;
  3747. padding:2px 0px 2px 0px;
  3748. box-sizing:border-box;
  3749. width:100%;
  3750. }
  3751. #u42337_text {
  3752. border-width:0px;
  3753. word-wrap:break-word;
  3754. text-transform:none;
  3755. visibility:hidden;
  3756. }
  3757. #u42338_img {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:116px;
  3763. height:34px;
  3764. }
  3765. #u42338 {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:1108px;
  3769. top:204px;
  3770. width:116px;
  3771. height:34px;
  3772. display:flex;
  3773. font-size:14px;
  3774. line-height:30px;
  3775. }
  3776. #u42338 .text {
  3777. position:absolute;
  3778. align-self:center;
  3779. padding:2px 0px 2px 0px;
  3780. box-sizing:border-box;
  3781. width:100%;
  3782. }
  3783. #u42338_text {
  3784. border-width:0px;
  3785. word-wrap:break-word;
  3786. text-transform:none;
  3787. visibility:hidden;
  3788. }
  3789. #u42339 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:0px;
  3795. height:0px;
  3796. }
  3797. #u42340_div {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:140px;
  3803. height:30px;
  3804. background:inherit;
  3805. background-color:rgba(255, 255, 255, 1);
  3806. box-sizing:border-box;
  3807. border-width:1px;
  3808. border-style:solid;
  3809. border-color:rgba(201, 201, 201, 1);
  3810. border-radius:4px;
  3811. -moz-box-shadow:none;
  3812. -webkit-box-shadow:none;
  3813. box-shadow:none;
  3814. font-family:'Microsoft YaHei', sans-serif;
  3815. font-weight:400;
  3816. font-style:normal;
  3817. font-size:14px;
  3818. color:#CCCCCC;
  3819. text-align:left;
  3820. }
  3821. #u42340 {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:502px;
  3825. top:100px;
  3826. width:140px;
  3827. height:30px;
  3828. display:flex;
  3829. font-family:'Microsoft YaHei', sans-serif;
  3830. font-weight:400;
  3831. font-style:normal;
  3832. font-size:14px;
  3833. color:#CCCCCC;
  3834. text-align:left;
  3835. }
  3836. #u42340 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 8px 2px 8px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u42340_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. visibility:hidden;
  3848. }
  3849. #u42341_input {
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:131px;
  3854. height:28px;
  3855. padding:2px 2px 2px 2px;
  3856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3857. font-weight:400;
  3858. font-style:normal;
  3859. font-size:14px;
  3860. letter-spacing:normal;
  3861. color:#000000;
  3862. vertical-align:none;
  3863. text-align:left;
  3864. text-transform:none;
  3865. background-color:transparent;
  3866. border-color:transparent;
  3867. }
  3868. #u42341_input.disabled {
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:131px;
  3873. height:28px;
  3874. padding:2px 2px 2px 2px;
  3875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3876. font-weight:400;
  3877. font-style:normal;
  3878. font-size:14px;
  3879. letter-spacing:normal;
  3880. color:#000000;
  3881. vertical-align:none;
  3882. text-align:left;
  3883. text-transform:none;
  3884. background-color:transparent;
  3885. border-color:transparent;
  3886. }
  3887. #u42341_div {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:131px;
  3893. height:28px;
  3894. background:inherit;
  3895. background-color:rgba(255, 255, 255, 1);
  3896. border:none;
  3897. border-radius:0px;
  3898. -moz-box-shadow:none;
  3899. -webkit-box-shadow:none;
  3900. box-shadow:none;
  3901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:14px;
  3905. }
  3906. #u42341 {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:507px;
  3910. top:101px;
  3911. width:131px;
  3912. height:28px;
  3913. display:flex;
  3914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:14px;
  3918. }
  3919. #u42341 .text {
  3920. position:absolute;
  3921. align-self:center;
  3922. padding:2px 2px 2px 2px;
  3923. box-sizing:border-box;
  3924. width:100%;
  3925. }
  3926. #u42341_div.disabled {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:131px;
  3932. height:28px;
  3933. background:inherit;
  3934. background-color:rgba(240, 240, 240, 1);
  3935. border:none;
  3936. border-radius:0px;
  3937. -moz-box-shadow:none;
  3938. -webkit-box-shadow:none;
  3939. box-shadow:none;
  3940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3941. font-weight:400;
  3942. font-style:normal;
  3943. font-size:14px;
  3944. }
  3945. #u42341.disabled {
  3946. }
  3947. #u42342 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:0px;
  3953. height:0px;
  3954. }
  3955. #u42343_div {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:60px;
  3961. height:30px;
  3962. background:inherit;
  3963. background-color:rgba(24, 144, 255, 1);
  3964. border:none;
  3965. border-radius:4px;
  3966. -moz-box-shadow:none;
  3967. -webkit-box-shadow:none;
  3968. box-shadow:none;
  3969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:14px;
  3973. color:#FFFFFF;
  3974. }
  3975. #u42343 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:952px;
  3979. top:100px;
  3980. width:60px;
  3981. height:30px;
  3982. display:flex;
  3983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3984. font-weight:400;
  3985. font-style:normal;
  3986. font-size:14px;
  3987. color:#FFFFFF;
  3988. }
  3989. #u42343 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:2px 2px 2px 2px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u42343_text {
  3997. border-width:0px;
  3998. word-wrap:break-word;
  3999. text-transform:none;
  4000. }
  4001. #u42344_div {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:60px;
  4007. height:30px;
  4008. background:inherit;
  4009. background-color:rgba(255, 255, 255, 1);
  4010. box-sizing:border-box;
  4011. border-width:1px;
  4012. border-style:solid;
  4013. border-color:rgba(170, 170, 170, 1);
  4014. border-radius:4px;
  4015. -moz-box-shadow:none;
  4016. -webkit-box-shadow:none;
  4017. box-shadow:none;
  4018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4019. font-weight:400;
  4020. font-style:normal;
  4021. font-size:14px;
  4022. }
  4023. #u42344 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:1022px;
  4027. top:100px;
  4028. width:60px;
  4029. height:30px;
  4030. display:flex;
  4031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4032. font-weight:400;
  4033. font-style:normal;
  4034. font-size:14px;
  4035. }
  4036. #u42344 .text {
  4037. position:absolute;
  4038. align-self:center;
  4039. padding:2px 2px 2px 2px;
  4040. box-sizing:border-box;
  4041. width:100%;
  4042. }
  4043. #u42344_text {
  4044. border-width:0px;
  4045. word-wrap:break-word;
  4046. text-transform:none;
  4047. }
  4048. #u42345 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:0px;
  4054. height:0px;
  4055. }
  4056. #u42346_div {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:140px;
  4062. height:30px;
  4063. background:inherit;
  4064. background-color:rgba(255, 255, 255, 1);
  4065. box-sizing:border-box;
  4066. border-width:1px;
  4067. border-style:solid;
  4068. border-color:rgba(215, 215, 215, 1);
  4069. border-radius:4px;
  4070. -moz-box-shadow:none;
  4071. -webkit-box-shadow:none;
  4072. box-shadow:none;
  4073. font-size:11px;
  4074. }
  4075. #u42346 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:349px;
  4079. top:100px;
  4080. width:140px;
  4081. height:30px;
  4082. display:flex;
  4083. font-size:11px;
  4084. }
  4085. #u42346 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 2px 2px 2px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u42346_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u42347_input {
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:126px;
  4103. height:23px;
  4104. padding:2px 2px 2px 2px;
  4105. font-family:'ArialMT', 'Arial', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:11px;
  4109. letter-spacing:normal;
  4110. color:#AAAAAA;
  4111. vertical-align:none;
  4112. text-align:left;
  4113. text-transform:none;
  4114. background-color:transparent;
  4115. border-color:transparent;
  4116. }
  4117. #u42347_input.disabled {
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:126px;
  4122. height:23px;
  4123. padding:2px 2px 2px 2px;
  4124. font-family:'ArialMT', 'Arial', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. font-size:11px;
  4128. letter-spacing:normal;
  4129. color:#AAAAAA;
  4130. vertical-align:none;
  4131. text-align:left;
  4132. text-transform:none;
  4133. background-color:transparent;
  4134. border-color:transparent;
  4135. }
  4136. #u42347_div {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:126px;
  4142. height:23px;
  4143. background:inherit;
  4144. background-color:rgba(255, 255, 255, 1);
  4145. border:none;
  4146. border-radius:0px;
  4147. -moz-box-shadow:none;
  4148. -webkit-box-shadow:none;
  4149. box-shadow:none;
  4150. font-size:11px;
  4151. color:#AAAAAA;
  4152. }
  4153. #u42347 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:356px;
  4157. top:102px;
  4158. width:126px;
  4159. height:23px;
  4160. display:flex;
  4161. font-size:11px;
  4162. color:#AAAAAA;
  4163. }
  4164. #u42347 .text {
  4165. position:absolute;
  4166. align-self:flex-start;
  4167. padding:2px 2px 2px 2px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u42347_div.disabled {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:126px;
  4177. height:23px;
  4178. background:inherit;
  4179. background-color:rgba(240, 240, 240, 1);
  4180. border:none;
  4181. border-radius:0px;
  4182. -moz-box-shadow:none;
  4183. -webkit-box-shadow:none;
  4184. box-shadow:none;
  4185. font-size:11px;
  4186. color:#AAAAAA;
  4187. }
  4188. #u42347.disabled {
  4189. }
  4190. .u42347_input_option {
  4191. font-size:11px;
  4192. }
  4193. #u42348 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:0px;
  4199. height:0px;
  4200. }
  4201. #u42349_div {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:140px;
  4207. height:30px;
  4208. background:inherit;
  4209. background-color:rgba(255, 255, 255, 1);
  4210. box-sizing:border-box;
  4211. border-width:1px;
  4212. border-style:solid;
  4213. border-color:rgba(201, 201, 201, 1);
  4214. border-radius:4px;
  4215. -moz-box-shadow:none;
  4216. -webkit-box-shadow:none;
  4217. box-shadow:none;
  4218. font-family:'Microsoft YaHei', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. font-size:14px;
  4222. color:#CCCCCC;
  4223. text-align:left;
  4224. }
  4225. #u42349 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:652px;
  4229. top:100px;
  4230. width:140px;
  4231. height:30px;
  4232. display:flex;
  4233. font-family:'Microsoft YaHei', sans-serif;
  4234. font-weight:400;
  4235. font-style:normal;
  4236. font-size:14px;
  4237. color:#CCCCCC;
  4238. text-align:left;
  4239. }
  4240. #u42349 .text {
  4241. position:absolute;
  4242. align-self:center;
  4243. padding:2px 8px 2px 8px;
  4244. box-sizing:border-box;
  4245. width:100%;
  4246. }
  4247. #u42349_text {
  4248. border-width:0px;
  4249. word-wrap:break-word;
  4250. text-transform:none;
  4251. visibility:hidden;
  4252. }
  4253. #u42350_input {
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:131px;
  4258. height:28px;
  4259. padding:2px 2px 2px 2px;
  4260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:14px;
  4264. letter-spacing:normal;
  4265. color:#000000;
  4266. vertical-align:none;
  4267. text-align:left;
  4268. text-transform:none;
  4269. background-color:transparent;
  4270. border-color:transparent;
  4271. }
  4272. #u42350_input.disabled {
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:131px;
  4277. height:28px;
  4278. padding:2px 2px 2px 2px;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:14px;
  4283. letter-spacing:normal;
  4284. color:#000000;
  4285. vertical-align:none;
  4286. text-align:left;
  4287. text-transform:none;
  4288. background-color:transparent;
  4289. border-color:transparent;
  4290. }
  4291. #u42350_div {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:131px;
  4297. height:28px;
  4298. background:inherit;
  4299. background-color:rgba(255, 255, 255, 1);
  4300. border:none;
  4301. border-radius:0px;
  4302. -moz-box-shadow:none;
  4303. -webkit-box-shadow:none;
  4304. box-shadow:none;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:14px;
  4309. }
  4310. #u42350 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:657px;
  4314. top:101px;
  4315. width:131px;
  4316. height:28px;
  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. }
  4323. #u42350 .text {
  4324. position:absolute;
  4325. align-self:center;
  4326. padding:2px 2px 2px 2px;
  4327. box-sizing:border-box;
  4328. width:100%;
  4329. }
  4330. #u42350_div.disabled {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:131px;
  4336. height:28px;
  4337. background:inherit;
  4338. background-color:rgba(240, 240, 240, 1);
  4339. border:none;
  4340. border-radius:0px;
  4341. -moz-box-shadow:none;
  4342. -webkit-box-shadow:none;
  4343. box-shadow:none;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:14px;
  4348. }
  4349. #u42350.disabled {
  4350. }
  4351. #u42351_div {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:0px;
  4355. top:0px;
  4356. width:59px;
  4357. height:30px;
  4358. background:inherit;
  4359. background-color:rgba(24, 144, 255, 1);
  4360. border:none;
  4361. border-radius:4px;
  4362. -moz-box-shadow:none;
  4363. -webkit-box-shadow:none;
  4364. box-shadow:none;
  4365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4366. font-weight:400;
  4367. font-style:normal;
  4368. font-size:14px;
  4369. color:#FFFFFF;
  4370. }
  4371. #u42351 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:348px;
  4375. top:150px;
  4376. width:59px;
  4377. height:30px;
  4378. display:flex;
  4379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:14px;
  4383. color:#FFFFFF;
  4384. }
  4385. #u42351 .text {
  4386. position:absolute;
  4387. align-self:center;
  4388. padding:5px 15px 5px 15px;
  4389. box-sizing:border-box;
  4390. width:100%;
  4391. }
  4392. #u42351_text {
  4393. border-width:0px;
  4394. white-space:nowrap;
  4395. text-transform:none;
  4396. }
  4397. #u42352 {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:0px;
  4401. top:0px;
  4402. width:0px;
  4403. height:0px;
  4404. }
  4405. #u42353_div {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:680px;
  4411. height:1198px;
  4412. background:inherit;
  4413. background-color:rgba(255, 255, 255, 1);
  4414. box-sizing:border-box;
  4415. border-width:1px;
  4416. border-style:solid;
  4417. border-color:rgba(215, 215, 215, 1);
  4418. border-radius:0px;
  4419. -moz-box-shadow:none;
  4420. -webkit-box-shadow:none;
  4421. box-shadow:none;
  4422. }
  4423. #u42353 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:1641px;
  4427. top:43px;
  4428. width:680px;
  4429. height:1198px;
  4430. display:flex;
  4431. }
  4432. #u42353 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:2px 2px 2px 2px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u42353_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. visibility:hidden;
  4444. }
  4445. #u42354_div {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:73px;
  4451. height:30px;
  4452. background:inherit;
  4453. background-color:rgba(255, 255, 255, 0);
  4454. border:none;
  4455. border-radius:0px;
  4456. -moz-box-shadow:none;
  4457. -webkit-box-shadow:none;
  4458. box-shadow:none;
  4459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4460. font-weight:400;
  4461. font-style:normal;
  4462. font-size:18px;
  4463. color:#000000;
  4464. line-height:30px;
  4465. }
  4466. #u42354 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:1661px;
  4470. top:63px;
  4471. width:73px;
  4472. height:30px;
  4473. display:flex;
  4474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4475. font-weight:400;
  4476. font-style:normal;
  4477. font-size:18px;
  4478. color:#000000;
  4479. line-height:30px;
  4480. }
  4481. #u42354 .text {
  4482. position:absolute;
  4483. align-self:flex-start;
  4484. padding:0px 0px 0px 0px;
  4485. box-sizing:border-box;
  4486. width:100%;
  4487. }
  4488. #u42354_text {
  4489. border-width:0px;
  4490. white-space:nowrap;
  4491. text-transform:none;
  4492. }
  4493. #u42355_div {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:71px;
  4499. height:30px;
  4500. background:inherit;
  4501. background-color:rgba(255, 255, 255, 0);
  4502. border:none;
  4503. border-top:0px;
  4504. border-right:0px;
  4505. border-bottom:0px;
  4506. border-radius:0px;
  4507. border-top-left-radius:0px;
  4508. border-bottom-left-radius:0px;
  4509. -moz-box-shadow:none;
  4510. -webkit-box-shadow:none;
  4511. box-shadow:none;
  4512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4513. font-weight:400;
  4514. font-style:normal;
  4515. font-size:14px;
  4516. text-align:right;
  4517. }
  4518. #u42355 {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:1705px;
  4522. top:276px;
  4523. width:71px;
  4524. height:30px;
  4525. display:flex;
  4526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4527. font-weight:400;
  4528. font-style:normal;
  4529. font-size:14px;
  4530. text-align:right;
  4531. }
  4532. #u42355 .text {
  4533. position:absolute;
  4534. align-self:center;
  4535. padding:5px 0px 5px 0px;
  4536. box-sizing:border-box;
  4537. width:100%;
  4538. }
  4539. #u42355_text {
  4540. border-width:0px;
  4541. white-space:nowrap;
  4542. text-transform:none;
  4543. }
  4544. #u42356 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:0px;
  4550. height:0px;
  4551. }
  4552. #u42357_div {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:400px;
  4558. height:40px;
  4559. background:inherit;
  4560. background-color:rgba(255, 255, 255, 1);
  4561. box-sizing:border-box;
  4562. border-width:1px;
  4563. border-style:solid;
  4564. border-color:rgba(170, 170, 170, 1);
  4565. border-radius:4px;
  4566. -moz-box-shadow:none;
  4567. -webkit-box-shadow:none;
  4568. box-shadow:none;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. text-align:left;
  4573. }
  4574. #u42357 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:1786px;
  4578. top:121px;
  4579. width:400px;
  4580. height:40px;
  4581. display:flex;
  4582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. text-align:left;
  4586. }
  4587. #u42357 .text {
  4588. position:absolute;
  4589. align-self:center;
  4590. padding:2px 2px 2px 10px;
  4591. box-sizing:border-box;
  4592. width:100%;
  4593. }
  4594. #u42357_text {
  4595. border-width:0px;
  4596. word-wrap:break-word;
  4597. text-transform:none;
  4598. visibility:hidden;
  4599. }
  4600. #u42358_input {
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:188px;
  4605. height:31px;
  4606. padding:2px 2px 2px 2px;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:13px;
  4611. letter-spacing:normal;
  4612. color:#AAAAAA;
  4613. vertical-align:none;
  4614. text-align:left;
  4615. text-transform:none;
  4616. background-color:transparent;
  4617. border-color:transparent;
  4618. }
  4619. #u42358_input.disabled {
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:188px;
  4624. height:31px;
  4625. padding:2px 2px 2px 2px;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:13px;
  4630. letter-spacing:normal;
  4631. color:#AAAAAA;
  4632. vertical-align:none;
  4633. text-align:left;
  4634. text-transform:none;
  4635. background-color:transparent;
  4636. border-color:transparent;
  4637. }
  4638. #u42358_div {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:188px;
  4644. height:31px;
  4645. background:inherit;
  4646. background-color:rgba(255, 255, 255, 0);
  4647. border:none;
  4648. border-radius:0px;
  4649. -moz-box-shadow:none;
  4650. -webkit-box-shadow:none;
  4651. box-shadow:none;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. color:#AAAAAA;
  4656. }
  4657. #u42358 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:1796px;
  4661. top:126px;
  4662. width:188px;
  4663. height:31px;
  4664. display:flex;
  4665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. color:#AAAAAA;
  4669. }
  4670. #u42358 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 2px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u42358_div.disabled {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:188px;
  4683. height:31px;
  4684. background:inherit;
  4685. background-color:rgba(240, 240, 240, 1);
  4686. border:none;
  4687. border-radius:0px;
  4688. -moz-box-shadow:none;
  4689. -webkit-box-shadow:none;
  4690. box-shadow:none;
  4691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. color:#AAAAAA;
  4695. }
  4696. #u42358.disabled {
  4697. }
  4698. #u42359 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:0px;
  4704. height:0px;
  4705. }
  4706. #u42360_div {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:40px;
  4712. height:40px;
  4713. background:inherit;
  4714. background-color:rgba(255, 255, 255, 0);
  4715. border:none;
  4716. border-top:0px;
  4717. border-right:0px;
  4718. border-bottom:0px;
  4719. border-radius:0px;
  4720. border-top-left-radius:0px;
  4721. border-bottom-left-radius:0px;
  4722. -moz-box-shadow:none;
  4723. -webkit-box-shadow:none;
  4724. box-shadow:none;
  4725. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4726. font-weight:500;
  4727. font-style:normal;
  4728. font-size:18px;
  4729. text-align:center;
  4730. }
  4731. #u42360 {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:2281px;
  4735. top:43px;
  4736. width:40px;
  4737. height:40px;
  4738. display:flex;
  4739. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4740. font-weight:500;
  4741. font-style:normal;
  4742. font-size:18px;
  4743. text-align:center;
  4744. }
  4745. #u42360 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:5px 10px 5px 0px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u42360_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. }
  4757. #u42361_img {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:13px;
  4763. height:17px;
  4764. }
  4765. #u42361 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:2268px;
  4769. top:55px;
  4770. width:13px;
  4771. height:17px;
  4772. display:flex;
  4773. }
  4774. #u42361 .text {
  4775. position:absolute;
  4776. align-self:center;
  4777. padding:2px 2px 2px 2px;
  4778. box-sizing:border-box;
  4779. width:100%;
  4780. }
  4781. #u42361_text {
  4782. border-width:0px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. visibility:hidden;
  4786. }
  4787. #u42362 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:0px;
  4793. height:0px;
  4794. }
  4795. #u42363_div {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:680px;
  4801. height:60px;
  4802. background:inherit;
  4803. background-color:rgba(255, 255, 255, 1);
  4804. box-sizing:border-box;
  4805. border-width:1px;
  4806. border-style:solid;
  4807. border-color:rgba(215, 215, 215, 1);
  4808. border-radius:0px;
  4809. -moz-box-shadow:none;
  4810. -webkit-box-shadow:none;
  4811. box-shadow:none;
  4812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:14px;
  4816. color:#AAAAAA;
  4817. text-align:center;
  4818. line-height:30px;
  4819. }
  4820. #u42363 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:1641px;
  4824. top:1181px;
  4825. width:680px;
  4826. height:60px;
  4827. display:flex;
  4828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4829. font-weight:400;
  4830. font-style:normal;
  4831. font-size:14px;
  4832. color:#AAAAAA;
  4833. text-align:center;
  4834. line-height:30px;
  4835. }
  4836. #u42363 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:5px 10px 5px 10px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u42363_text {
  4844. border-width:0px;
  4845. word-wrap:break-word;
  4846. text-transform:none;
  4847. visibility:hidden;
  4848. }
  4849. #u42364_div {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:80px;
  4855. height:30px;
  4856. background:inherit;
  4857. background-color:rgba(24, 144, 255, 1);
  4858. border:none;
  4859. border-radius:4px;
  4860. -moz-box-shadow:none;
  4861. -webkit-box-shadow:none;
  4862. box-shadow:none;
  4863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4864. font-weight:400;
  4865. font-style:normal;
  4866. font-size:14px;
  4867. color:#FFFFFF;
  4868. }
  4869. #u42364 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:2196px;
  4873. top:1196px;
  4874. width:80px;
  4875. height:30px;
  4876. display:flex;
  4877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4878. font-weight:400;
  4879. font-style:normal;
  4880. font-size:14px;
  4881. color:#FFFFFF;
  4882. }
  4883. #u42364 .text {
  4884. position:absolute;
  4885. align-self:center;
  4886. padding:2px 2px 2px 2px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u42364_text {
  4891. border-width:0px;
  4892. word-wrap:break-word;
  4893. text-transform:none;
  4894. }
  4895. #u42365_div {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:80px;
  4901. height:30px;
  4902. background:inherit;
  4903. background-color:rgba(255, 255, 255, 1);
  4904. box-sizing:border-box;
  4905. border-width:1px;
  4906. border-style:solid;
  4907. border-color:rgba(170, 170, 170, 1);
  4908. border-radius:4px;
  4909. -moz-box-shadow:none;
  4910. -webkit-box-shadow:none;
  4911. box-shadow:none;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:14px;
  4916. }
  4917. #u42365 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:2097px;
  4921. top:1196px;
  4922. width:80px;
  4923. height:30px;
  4924. display:flex;
  4925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4926. font-weight:400;
  4927. font-style:normal;
  4928. font-size:14px;
  4929. }
  4930. #u42365 .text {
  4931. position:absolute;
  4932. align-self:center;
  4933. padding:2px 2px 2px 2px;
  4934. box-sizing:border-box;
  4935. width:100%;
  4936. }
  4937. #u42365_text {
  4938. border-width:0px;
  4939. word-wrap:break-word;
  4940. text-transform:none;
  4941. }
  4942. #u42366 {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:0px;
  4948. height:0px;
  4949. }
  4950. #u42367_div {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:0px;
  4954. top:0px;
  4955. width:400px;
  4956. height:80px;
  4957. background:inherit;
  4958. background-color:rgba(255, 255, 255, 1);
  4959. box-sizing:border-box;
  4960. border-width:1px;
  4961. border-style:solid;
  4962. border-color:rgba(170, 170, 170, 1);
  4963. border-radius:4px;
  4964. -moz-box-shadow:none;
  4965. -webkit-box-shadow:none;
  4966. box-shadow:none;
  4967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4968. font-weight:400;
  4969. font-style:normal;
  4970. text-align:left;
  4971. }
  4972. #u42367 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:1786px;
  4976. top:321px;
  4977. width:400px;
  4978. height:80px;
  4979. display:flex;
  4980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. text-align:left;
  4984. }
  4985. #u42367 .text {
  4986. position:absolute;
  4987. align-self:center;
  4988. padding:2px 2px 2px 10px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u42367_text {
  4993. border-width:0px;
  4994. word-wrap:break-word;
  4995. text-transform:none;
  4996. visibility:hidden;
  4997. }
  4998. #u42368_input {
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:188px;
  5003. height:31px;
  5004. padding:2px 2px 2px 2px;
  5005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:13px;
  5009. letter-spacing:normal;
  5010. color:#AAAAAA;
  5011. vertical-align:none;
  5012. text-align:left;
  5013. text-transform:none;
  5014. background-color:transparent;
  5015. border-color:transparent;
  5016. }
  5017. #u42368_input.disabled {
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:188px;
  5022. height:31px;
  5023. padding:2px 2px 2px 2px;
  5024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:13px;
  5028. letter-spacing:normal;
  5029. color:#AAAAAA;
  5030. vertical-align:none;
  5031. text-align:left;
  5032. text-transform:none;
  5033. background-color:transparent;
  5034. border-color:transparent;
  5035. }
  5036. #u42368_div {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:188px;
  5042. height:31px;
  5043. background:inherit;
  5044. background-color:rgba(255, 255, 255, 0);
  5045. border:none;
  5046. border-radius:0px;
  5047. -moz-box-shadow:none;
  5048. -webkit-box-shadow:none;
  5049. box-shadow:none;
  5050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. color:#AAAAAA;
  5054. }
  5055. #u42368 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:1796px;
  5059. top:326px;
  5060. width:188px;
  5061. height:31px;
  5062. display:flex;
  5063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5064. font-weight:400;
  5065. font-style:normal;
  5066. color:#AAAAAA;
  5067. }
  5068. #u42368 .text {
  5069. position:absolute;
  5070. align-self:center;
  5071. padding:2px 2px 2px 2px;
  5072. box-sizing:border-box;
  5073. width:100%;
  5074. }
  5075. #u42368_div.disabled {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:188px;
  5081. height:31px;
  5082. background:inherit;
  5083. background-color:rgba(240, 240, 240, 1);
  5084. border:none;
  5085. border-radius:0px;
  5086. -moz-box-shadow:none;
  5087. -webkit-box-shadow:none;
  5088. box-shadow:none;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. color:#AAAAAA;
  5093. }
  5094. #u42368.disabled {
  5095. }
  5096. #u42369_div {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:39px;
  5102. height:24px;
  5103. background:inherit;
  5104. background-color:rgba(255, 255, 255, 0);
  5105. border:none;
  5106. border-top:0px;
  5107. border-right:0px;
  5108. border-bottom:0px;
  5109. border-radius:0px;
  5110. border-top-left-radius:0px;
  5111. border-bottom-left-radius:0px;
  5112. -moz-box-shadow:none;
  5113. -webkit-box-shadow:none;
  5114. box-shadow:none;
  5115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5116. font-weight:400;
  5117. font-style:normal;
  5118. font-size:10px;
  5119. color:#AAAAAA;
  5120. text-align:right;
  5121. }
  5122. #u42369 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:2144px;
  5126. top:376px;
  5127. width:39px;
  5128. height:24px;
  5129. display:flex;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:10px;
  5134. color:#AAAAAA;
  5135. text-align:right;
  5136. }
  5137. #u42369 .text {
  5138. position:absolute;
  5139. align-self:center;
  5140. padding:5px 0px 5px 0px;
  5141. box-sizing:border-box;
  5142. width:100%;
  5143. }
  5144. #u42369_text {
  5145. border-width:0px;
  5146. white-space:nowrap;
  5147. text-transform:none;
  5148. }
  5149. #u42370 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:0px;
  5155. height:0px;
  5156. }
  5157. #u42371_div {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:400px;
  5163. height:40px;
  5164. background:inherit;
  5165. background-color:rgba(255, 255, 255, 1);
  5166. box-sizing:border-box;
  5167. border-width:1px;
  5168. border-style:solid;
  5169. border-color:rgba(170, 170, 170, 1);
  5170. border-radius:4px;
  5171. -moz-box-shadow:none;
  5172. -webkit-box-shadow:none;
  5173. box-shadow:none;
  5174. }
  5175. #u42371 {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:1786px;
  5179. top:271px;
  5180. width:400px;
  5181. height:40px;
  5182. display:flex;
  5183. }
  5184. #u42371 .text {
  5185. position:absolute;
  5186. align-self:center;
  5187. padding:2px 2px 2px 0px;
  5188. box-sizing:border-box;
  5189. width:100%;
  5190. }
  5191. #u42371_text {
  5192. border-width:0px;
  5193. word-wrap:break-word;
  5194. text-transform:none;
  5195. visibility:hidden;
  5196. }
  5197. #u42372_input {
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:380px;
  5202. height:30px;
  5203. padding:2px 2px 2px 0px;
  5204. font-family:'ArialMT', 'Arial', sans-serif;
  5205. font-weight:400;
  5206. font-style:normal;
  5207. font-size:13px;
  5208. letter-spacing:normal;
  5209. color:#AAAAAA;
  5210. vertical-align:none;
  5211. text-align:left;
  5212. text-transform:none;
  5213. background-color:transparent;
  5214. border-color:transparent;
  5215. }
  5216. #u42372_input.disabled {
  5217. position:absolute;
  5218. left:0px;
  5219. top:0px;
  5220. width:380px;
  5221. height:30px;
  5222. padding:2px 2px 2px 0px;
  5223. font-family:'ArialMT', 'Arial', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:13px;
  5227. letter-spacing:normal;
  5228. color:#AAAAAA;
  5229. vertical-align:none;
  5230. text-align:left;
  5231. text-transform:none;
  5232. background-color:transparent;
  5233. border-color:transparent;
  5234. }
  5235. #u42372_div {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:380px;
  5241. height:30px;
  5242. background:inherit;
  5243. background-color:rgba(255, 255, 255, 1);
  5244. border:none;
  5245. border-radius:0px;
  5246. -moz-box-shadow:none;
  5247. -webkit-box-shadow:none;
  5248. box-shadow:none;
  5249. color:#AAAAAA;
  5250. }
  5251. #u42372 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:1796px;
  5255. top:277px;
  5256. width:380px;
  5257. height:30px;
  5258. display:flex;
  5259. color:#AAAAAA;
  5260. }
  5261. #u42372 .text {
  5262. position:absolute;
  5263. align-self:flex-start;
  5264. padding:2px 2px 2px 0px;
  5265. box-sizing:border-box;
  5266. width:100%;
  5267. }
  5268. #u42372_div.disabled {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:380px;
  5274. height:30px;
  5275. background:inherit;
  5276. background-color:rgba(240, 240, 240, 1);
  5277. border:none;
  5278. border-radius:0px;
  5279. -moz-box-shadow:none;
  5280. -webkit-box-shadow:none;
  5281. box-shadow:none;
  5282. color:#AAAAAA;
  5283. }
  5284. #u42372.disabled {
  5285. }
  5286. .u42372_input_option {
  5287. }
  5288. #u42373_div {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:71px;
  5294. height:30px;
  5295. background:inherit;
  5296. background-color:rgba(255, 255, 255, 0);
  5297. border:none;
  5298. border-top:0px;
  5299. border-right:0px;
  5300. border-bottom:0px;
  5301. border-radius:0px;
  5302. border-top-left-radius:0px;
  5303. border-bottom-left-radius:0px;
  5304. -moz-box-shadow:none;
  5305. -webkit-box-shadow:none;
  5306. box-shadow:none;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:14px;
  5311. text-align:right;
  5312. }
  5313. #u42373 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:1705px;
  5317. top:321px;
  5318. width:71px;
  5319. height:30px;
  5320. display:flex;
  5321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5322. font-weight:400;
  5323. font-style:normal;
  5324. font-size:14px;
  5325. text-align:right;
  5326. }
  5327. #u42373 .text {
  5328. position:absolute;
  5329. align-self:center;
  5330. padding:5px 0px 5px 0px;
  5331. box-sizing:border-box;
  5332. width:100%;
  5333. }
  5334. #u42373_text {
  5335. border-width:0px;
  5336. white-space:nowrap;
  5337. text-transform:none;
  5338. }
  5339. #u42374_div {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:78px;
  5345. height:30px;
  5346. background:inherit;
  5347. background-color:rgba(255, 255, 255, 0);
  5348. border:none;
  5349. border-top:0px;
  5350. border-right:0px;
  5351. border-bottom:0px;
  5352. border-radius:0px;
  5353. border-top-left-radius:0px;
  5354. border-bottom-left-radius:0px;
  5355. -moz-box-shadow:none;
  5356. -webkit-box-shadow:none;
  5357. box-shadow:none;
  5358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5359. font-weight:400;
  5360. font-style:normal;
  5361. font-size:14px;
  5362. text-align:right;
  5363. }
  5364. #u42374 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:1698px;
  5368. top:126px;
  5369. width:78px;
  5370. height:30px;
  5371. display:flex;
  5372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:14px;
  5376. text-align:right;
  5377. }
  5378. #u42374 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:5px 0px 5px 0px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u42374_text {
  5386. border-width:0px;
  5387. white-space:nowrap;
  5388. text-transform:none;
  5389. }
  5390. #u42375 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:0px;
  5396. height:0px;
  5397. }
  5398. #u42376_div {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:400px;
  5404. height:40px;
  5405. background:inherit;
  5406. background-color:rgba(255, 255, 255, 1);
  5407. box-sizing:border-box;
  5408. border-width:1px;
  5409. border-style:solid;
  5410. border-color:rgba(170, 170, 170, 1);
  5411. border-radius:4px;
  5412. -moz-box-shadow:none;
  5413. -webkit-box-shadow:none;
  5414. box-shadow:none;
  5415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5416. font-weight:400;
  5417. font-style:normal;
  5418. text-align:left;
  5419. }
  5420. #u42376 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:1786px;
  5424. top:171px;
  5425. width:400px;
  5426. height:40px;
  5427. display:flex;
  5428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. text-align:left;
  5432. }
  5433. #u42376 .text {
  5434. position:absolute;
  5435. align-self:center;
  5436. padding:2px 2px 2px 10px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u42376_text {
  5441. border-width:0px;
  5442. word-wrap:break-word;
  5443. text-transform:none;
  5444. visibility:hidden;
  5445. }
  5446. #u42377_input {
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:188px;
  5451. height:31px;
  5452. padding:2px 2px 2px 2px;
  5453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5454. font-weight:400;
  5455. font-style:normal;
  5456. font-size:13px;
  5457. letter-spacing:normal;
  5458. color:#AAAAAA;
  5459. vertical-align:none;
  5460. text-align:left;
  5461. text-transform:none;
  5462. background-color:transparent;
  5463. border-color:transparent;
  5464. }
  5465. #u42377_input.disabled {
  5466. position:absolute;
  5467. left:0px;
  5468. top:0px;
  5469. width:188px;
  5470. height:31px;
  5471. padding:2px 2px 2px 2px;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:13px;
  5476. letter-spacing:normal;
  5477. color:#AAAAAA;
  5478. vertical-align:none;
  5479. text-align:left;
  5480. text-transform:none;
  5481. background-color:transparent;
  5482. border-color:transparent;
  5483. }
  5484. #u42377_div {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:188px;
  5490. height:31px;
  5491. background:inherit;
  5492. background-color:rgba(255, 255, 255, 0);
  5493. border:none;
  5494. border-radius:0px;
  5495. -moz-box-shadow:none;
  5496. -webkit-box-shadow:none;
  5497. box-shadow:none;
  5498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5499. font-weight:400;
  5500. font-style:normal;
  5501. color:#AAAAAA;
  5502. }
  5503. #u42377 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:1796px;
  5507. top:176px;
  5508. width:188px;
  5509. height:31px;
  5510. display:flex;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. color:#AAAAAA;
  5515. }
  5516. #u42377 .text {
  5517. position:absolute;
  5518. align-self:center;
  5519. padding:2px 2px 2px 2px;
  5520. box-sizing:border-box;
  5521. width:100%;
  5522. }
  5523. #u42377_div.disabled {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:0px;
  5527. top:0px;
  5528. width:188px;
  5529. height:31px;
  5530. background:inherit;
  5531. background-color:rgba(240, 240, 240, 1);
  5532. border:none;
  5533. border-radius:0px;
  5534. -moz-box-shadow:none;
  5535. -webkit-box-shadow:none;
  5536. box-shadow:none;
  5537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. color:#AAAAAA;
  5541. }
  5542. #u42377.disabled {
  5543. }
  5544. #u42378_div {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:0px;
  5548. top:0px;
  5549. width:78px;
  5550. height:30px;
  5551. background:inherit;
  5552. background-color:rgba(255, 255, 255, 0);
  5553. border:none;
  5554. border-top:0px;
  5555. border-right:0px;
  5556. border-bottom:0px;
  5557. border-radius:0px;
  5558. border-top-left-radius:0px;
  5559. border-bottom-left-radius:0px;
  5560. -moz-box-shadow:none;
  5561. -webkit-box-shadow:none;
  5562. box-shadow:none;
  5563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5564. font-weight:400;
  5565. font-style:normal;
  5566. font-size:14px;
  5567. text-align:right;
  5568. }
  5569. #u42378 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:1698px;
  5573. top:176px;
  5574. width:78px;
  5575. height:30px;
  5576. display:flex;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:14px;
  5581. text-align:right;
  5582. }
  5583. #u42378 .text {
  5584. position:absolute;
  5585. align-self:center;
  5586. padding:5px 0px 5px 0px;
  5587. box-sizing:border-box;
  5588. width:100%;
  5589. }
  5590. #u42378_text {
  5591. border-width:0px;
  5592. white-space:nowrap;
  5593. text-transform:none;
  5594. }
  5595. #u42379_div {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:0px;
  5599. top:0px;
  5600. width:57px;
  5601. height:35px;
  5602. background:inherit;
  5603. background-color:rgba(255, 255, 255, 0);
  5604. border:none;
  5605. border-top:0px;
  5606. border-right:0px;
  5607. border-bottom:0px;
  5608. border-radius:0px;
  5609. border-top-left-radius:0px;
  5610. border-bottom-left-radius:0px;
  5611. -moz-box-shadow:none;
  5612. -webkit-box-shadow:none;
  5613. box-shadow:none;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:14px;
  5618. color:#1890FF;
  5619. }
  5620. #u42379 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:2196px;
  5624. top:126px;
  5625. width:57px;
  5626. height:35px;
  5627. display:flex;
  5628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5629. font-weight:400;
  5630. font-style:normal;
  5631. font-size:14px;
  5632. color:#1890FF;
  5633. }
  5634. #u42379 .text {
  5635. position:absolute;
  5636. align-self:center;
  5637. padding:5px 0px 5px 0px;
  5638. box-sizing:border-box;
  5639. width:100%;
  5640. }
  5641. #u42379_text {
  5642. border-width:0px;
  5643. white-space:nowrap;
  5644. text-transform:none;
  5645. }
  5646. #u42380 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:0px;
  5652. height:0px;
  5653. }
  5654. #u42381_div {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:400px;
  5660. height:40px;
  5661. background:inherit;
  5662. background-color:rgba(255, 255, 255, 1);
  5663. box-sizing:border-box;
  5664. border-width:1px;
  5665. border-style:solid;
  5666. border-color:rgba(170, 170, 170, 1);
  5667. border-radius:4px;
  5668. -moz-box-shadow:none;
  5669. -webkit-box-shadow:none;
  5670. box-shadow:none;
  5671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. text-align:left;
  5675. }
  5676. #u42381 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:1786px;
  5680. top:221px;
  5681. width:400px;
  5682. height:40px;
  5683. display:flex;
  5684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. text-align:left;
  5688. }
  5689. #u42381 .text {
  5690. position:absolute;
  5691. align-self:center;
  5692. padding:2px 2px 2px 10px;
  5693. box-sizing:border-box;
  5694. width:100%;
  5695. }
  5696. #u42381_text {
  5697. border-width:0px;
  5698. word-wrap:break-word;
  5699. text-transform:none;
  5700. visibility:hidden;
  5701. }
  5702. #u42382_input {
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:188px;
  5707. height:31px;
  5708. padding:2px 2px 2px 2px;
  5709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5710. font-weight:400;
  5711. font-style:normal;
  5712. font-size:13px;
  5713. letter-spacing:normal;
  5714. color:#AAAAAA;
  5715. vertical-align:none;
  5716. text-align:left;
  5717. text-transform:none;
  5718. background-color:transparent;
  5719. border-color:transparent;
  5720. }
  5721. #u42382_input.disabled {
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:188px;
  5726. height:31px;
  5727. padding:2px 2px 2px 2px;
  5728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5729. font-weight:400;
  5730. font-style:normal;
  5731. font-size:13px;
  5732. letter-spacing:normal;
  5733. color:#AAAAAA;
  5734. vertical-align:none;
  5735. text-align:left;
  5736. text-transform:none;
  5737. background-color:transparent;
  5738. border-color:transparent;
  5739. }
  5740. #u42382_div {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:188px;
  5746. height:31px;
  5747. background:inherit;
  5748. background-color:rgba(255, 255, 255, 0);
  5749. border:none;
  5750. border-radius:0px;
  5751. -moz-box-shadow:none;
  5752. -webkit-box-shadow:none;
  5753. box-shadow:none;
  5754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5755. font-weight:400;
  5756. font-style:normal;
  5757. color:#AAAAAA;
  5758. }
  5759. #u42382 {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:1796px;
  5763. top:226px;
  5764. width:188px;
  5765. height:31px;
  5766. display:flex;
  5767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. color:#AAAAAA;
  5771. }
  5772. #u42382 .text {
  5773. position:absolute;
  5774. align-self:center;
  5775. padding:2px 2px 2px 2px;
  5776. box-sizing:border-box;
  5777. width:100%;
  5778. }
  5779. #u42382_div.disabled {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:188px;
  5785. height:31px;
  5786. background:inherit;
  5787. background-color:rgba(240, 240, 240, 1);
  5788. border:none;
  5789. border-radius:0px;
  5790. -moz-box-shadow:none;
  5791. -webkit-box-shadow:none;
  5792. box-shadow:none;
  5793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5794. font-weight:400;
  5795. font-style:normal;
  5796. color:#AAAAAA;
  5797. }
  5798. #u42382.disabled {
  5799. }
  5800. #u42383_div {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:0px;
  5804. top:0px;
  5805. width:57px;
  5806. height:30px;
  5807. background:inherit;
  5808. background-color:rgba(255, 255, 255, 0);
  5809. border:none;
  5810. border-top:0px;
  5811. border-right:0px;
  5812. border-bottom:0px;
  5813. border-radius:0px;
  5814. border-top-left-radius:0px;
  5815. border-bottom-left-radius:0px;
  5816. -moz-box-shadow:none;
  5817. -webkit-box-shadow:none;
  5818. box-shadow:none;
  5819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. font-size:14px;
  5823. text-align:right;
  5824. }
  5825. #u42383 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:1719px;
  5829. top:226px;
  5830. width:57px;
  5831. height:30px;
  5832. display:flex;
  5833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5834. font-weight:400;
  5835. font-style:normal;
  5836. font-size:14px;
  5837. text-align:right;
  5838. }
  5839. #u42383 .text {
  5840. position:absolute;
  5841. align-self:center;
  5842. padding:5px 0px 5px 0px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u42383_text {
  5847. border-width:0px;
  5848. white-space:nowrap;
  5849. text-transform:none;
  5850. }
  5851. #u42384_div {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:60px;
  5857. height:30px;
  5858. background:inherit;
  5859. background-color:rgba(255, 255, 255, 1);
  5860. box-sizing:border-box;
  5861. border-width:1px;
  5862. border-style:solid;
  5863. border-color:rgba(170, 170, 170, 1);
  5864. border-radius:4px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:14px;
  5872. }
  5873. #u42384 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:417px;
  5877. top:150px;
  5878. width:60px;
  5879. height:30px;
  5880. display:flex;
  5881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:14px;
  5885. }
  5886. #u42384 .text {
  5887. position:absolute;
  5888. align-self:center;
  5889. padding:2px 2px 2px 2px;
  5890. box-sizing:border-box;
  5891. width:100%;
  5892. }
  5893. #u42384_text {
  5894. border-width:0px;
  5895. word-wrap:break-word;
  5896. text-transform:none;
  5897. }
  5898. #u42385_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:60px;
  5904. height:30px;
  5905. background:inherit;
  5906. background-color:rgba(255, 255, 255, 1);
  5907. box-sizing:border-box;
  5908. border-width:1px;
  5909. border-style:solid;
  5910. border-color:rgba(170, 170, 170, 1);
  5911. border-radius:4px;
  5912. -moz-box-shadow:none;
  5913. -webkit-box-shadow:none;
  5914. box-shadow:none;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:14px;
  5919. }
  5920. #u42385 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:487px;
  5924. top:150px;
  5925. width:60px;
  5926. height:30px;
  5927. display:flex;
  5928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5929. font-weight:400;
  5930. font-style:normal;
  5931. font-size:14px;
  5932. }
  5933. #u42385 .text {
  5934. position:absolute;
  5935. align-self:center;
  5936. padding:2px 2px 2px 2px;
  5937. box-sizing:border-box;
  5938. width:100%;
  5939. }
  5940. #u42385_text {
  5941. border-width:0px;
  5942. word-wrap:break-word;
  5943. text-transform:none;
  5944. }
  5945. #u42386 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:0px;
  5951. height:0px;
  5952. }
  5953. #u42387_div {
  5954. border-width:0px;
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:140px;
  5959. height:30px;
  5960. background:inherit;
  5961. background-color:rgba(255, 255, 255, 1);
  5962. box-sizing:border-box;
  5963. border-width:1px;
  5964. border-style:solid;
  5965. border-color:rgba(201, 201, 201, 1);
  5966. border-radius:4px;
  5967. -moz-box-shadow:none;
  5968. -webkit-box-shadow:none;
  5969. box-shadow:none;
  5970. font-family:'Microsoft YaHei', sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:14px;
  5974. color:#CCCCCC;
  5975. text-align:left;
  5976. }
  5977. #u42387 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:802px;
  5981. top:100px;
  5982. width:140px;
  5983. height:30px;
  5984. display:flex;
  5985. font-family:'Microsoft YaHei', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:14px;
  5989. color:#CCCCCC;
  5990. text-align:left;
  5991. }
  5992. #u42387 .text {
  5993. position:absolute;
  5994. align-self:center;
  5995. padding:2px 8px 2px 8px;
  5996. box-sizing:border-box;
  5997. width:100%;
  5998. }
  5999. #u42387_text {
  6000. border-width:0px;
  6001. word-wrap:break-word;
  6002. text-transform:none;
  6003. visibility:hidden;
  6004. }
  6005. #u42388_input {
  6006. position:absolute;
  6007. left:0px;
  6008. top:0px;
  6009. width:131px;
  6010. height:28px;
  6011. padding:2px 2px 2px 2px;
  6012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:14px;
  6016. letter-spacing:normal;
  6017. color:#000000;
  6018. vertical-align:none;
  6019. text-align:left;
  6020. text-transform:none;
  6021. background-color:transparent;
  6022. border-color:transparent;
  6023. }
  6024. #u42388_input.disabled {
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:131px;
  6029. height:28px;
  6030. padding:2px 2px 2px 2px;
  6031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6032. font-weight:400;
  6033. font-style:normal;
  6034. font-size:14px;
  6035. letter-spacing:normal;
  6036. color:#000000;
  6037. vertical-align:none;
  6038. text-align:left;
  6039. text-transform:none;
  6040. background-color:transparent;
  6041. border-color:transparent;
  6042. }
  6043. #u42388_div {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:131px;
  6049. height:28px;
  6050. background:inherit;
  6051. background-color:rgba(255, 255, 255, 1);
  6052. border:none;
  6053. border-radius:0px;
  6054. -moz-box-shadow:none;
  6055. -webkit-box-shadow:none;
  6056. box-shadow:none;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:14px;
  6061. }
  6062. #u42388 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:807px;
  6066. top:101px;
  6067. width:131px;
  6068. height:28px;
  6069. display:flex;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:14px;
  6074. }
  6075. #u42388 .text {
  6076. position:absolute;
  6077. align-self:center;
  6078. padding:2px 2px 2px 2px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u42388_div.disabled {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:131px;
  6088. height:28px;
  6089. background:inherit;
  6090. background-color:rgba(240, 240, 240, 1);
  6091. border:none;
  6092. border-radius:0px;
  6093. -moz-box-shadow:none;
  6094. -webkit-box-shadow:none;
  6095. box-shadow:none;
  6096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:14px;
  6100. }
  6101. #u42388.disabled {
  6102. }
  6103. #u42389 {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:0px;
  6109. height:0px;
  6110. }
  6111. #u42390_div {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:120px;
  6117. height:100px;
  6118. background:inherit;
  6119. background-color:rgba(255, 255, 255, 1);
  6120. box-sizing:border-box;
  6121. border-width:1px;
  6122. border-style:solid;
  6123. border-color:rgba(242, 242, 242, 1);
  6124. border-left:0px;
  6125. border-right:0px;
  6126. border-radius:3px;
  6127. border-top-left-radius:0px;
  6128. border-top-right-radius:0px;
  6129. border-bottom-right-radius:0px;
  6130. border-bottom-left-radius:0px;
  6131. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6132. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6133. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6134. }
  6135. #u42390 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:533px;
  6139. top:564px;
  6140. width:120px;
  6141. height:100px;
  6142. display:flex;
  6143. }
  6144. #u42390 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 2px 2px 2px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u42390_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u42391_div {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:100px;
  6163. height:40px;
  6164. background:inherit;
  6165. background-color:rgba(255, 255, 255, 1);
  6166. box-sizing:border-box;
  6167. border-width:1px;
  6168. border-style:solid;
  6169. border-color:rgba(242, 242, 242, 1);
  6170. border-left:0px;
  6171. border-top:0px;
  6172. border-right:0px;
  6173. border-radius:4px;
  6174. border-bottom-right-radius:0px;
  6175. border-bottom-left-radius:0px;
  6176. -moz-box-shadow:none;
  6177. -webkit-box-shadow:none;
  6178. box-shadow:none;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:14px;
  6183. }
  6184. #u42391 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:543px;
  6188. top:575px;
  6189. width:100px;
  6190. height:40px;
  6191. display:flex;
  6192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:14px;
  6196. }
  6197. #u42391 .text {
  6198. position:absolute;
  6199. align-self:center;
  6200. padding:5px 0px 5px 0px;
  6201. box-sizing:border-box;
  6202. width:100%;
  6203. }
  6204. #u42391_text {
  6205. border-width:0px;
  6206. word-wrap:break-word;
  6207. text-transform:none;
  6208. }
  6209. #u42392_div {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:100px;
  6215. height:40px;
  6216. background:inherit;
  6217. background-color:rgba(255, 255, 255, 1);
  6218. border:none;
  6219. border-left:0px;
  6220. border-top:0px;
  6221. border-right:0px;
  6222. border-radius:4px;
  6223. border-bottom-right-radius:0px;
  6224. border-bottom-left-radius:0px;
  6225. -moz-box-shadow:none;
  6226. -webkit-box-shadow:none;
  6227. box-shadow:none;
  6228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:14px;
  6232. }
  6233. #u42392 {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:543px;
  6237. top:615px;
  6238. width:100px;
  6239. height:40px;
  6240. display:flex;
  6241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6242. font-weight:400;
  6243. font-style:normal;
  6244. font-size:14px;
  6245. }
  6246. #u42392 .text {
  6247. position:absolute;
  6248. align-self:center;
  6249. padding:5px 0px 5px 0px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u42392_text {
  6254. border-width:0px;
  6255. word-wrap:break-word;
  6256. text-transform:none;
  6257. }
  6258. #u42393_div {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:59px;
  6264. height:30px;
  6265. background:inherit;
  6266. background-color:rgba(24, 144, 255, 1);
  6267. border:none;
  6268. border-radius:4px;
  6269. -moz-box-shadow:none;
  6270. -webkit-box-shadow:none;
  6271. box-shadow:none;
  6272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:14px;
  6276. color:#FFFFFF;
  6277. }
  6278. #u42393 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:534px;
  6282. top:534px;
  6283. width:59px;
  6284. height:30px;
  6285. display:flex;
  6286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:14px;
  6290. color:#FFFFFF;
  6291. }
  6292. #u42393 .text {
  6293. position:absolute;
  6294. align-self:center;
  6295. padding:5px 15px 5px 15px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u42393_text {
  6300. border-width:0px;
  6301. white-space:nowrap;
  6302. text-transform:none;
  6303. }
  6304. #u42394 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:0px;
  6310. height:0px;
  6311. }
  6312. #u42395_div {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:0px;
  6316. top:0px;
  6317. width:200px;
  6318. height:1180px;
  6319. background:inherit;
  6320. background-color:rgba(255, 255, 255, 1);
  6321. border:none;
  6322. border-radius:0px;
  6323. -moz-box-shadow:none;
  6324. -webkit-box-shadow:none;
  6325. box-shadow:none;
  6326. }
  6327. #u42395 {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:119px;
  6331. top:50px;
  6332. width:200px;
  6333. height:1180px;
  6334. display:flex;
  6335. }
  6336. #u42395 .text {
  6337. position:absolute;
  6338. align-self:center;
  6339. padding:2px 2px 2px 2px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u42395_text {
  6344. border-width:0px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. visibility:hidden;
  6348. }
  6349. #u42396_div {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:200px;
  6355. height:60px;
  6356. background:inherit;
  6357. background-color:rgba(224, 231, 247, 1);
  6358. border:none;
  6359. border-radius:0px;
  6360. -moz-box-shadow:none;
  6361. -webkit-box-shadow:none;
  6362. box-shadow:none;
  6363. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6364. font-weight:500;
  6365. font-style:normal;
  6366. font-size:18px;
  6367. }
  6368. #u42396 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:119px;
  6372. top:50px;
  6373. width:200px;
  6374. height:60px;
  6375. display:flex;
  6376. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6377. font-weight:500;
  6378. font-style:normal;
  6379. font-size:18px;
  6380. }
  6381. #u42396 .text {
  6382. position:absolute;
  6383. align-self:center;
  6384. padding:0px 0px 0px 20px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u42396_text {
  6389. border-width:0px;
  6390. word-wrap:break-word;
  6391. text-transform:none;
  6392. }
  6393. #u42397_div {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:65px;
  6399. height:22px;
  6400. background:inherit;
  6401. background-color:rgba(255, 255, 255, 0);
  6402. border:none;
  6403. border-radius:0px;
  6404. -moz-box-shadow:none;
  6405. -webkit-box-shadow:none;
  6406. box-shadow:none;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:16px;
  6411. }
  6412. #u42397 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:146px;
  6416. top:250px;
  6417. width:65px;
  6418. height:22px;
  6419. display:flex;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:16px;
  6424. }
  6425. #u42397 .text {
  6426. position:absolute;
  6427. align-self:flex-start;
  6428. padding:0px 0px 0px 0px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u42397_text {
  6433. border-width:0px;
  6434. white-space:nowrap;
  6435. text-transform:none;
  6436. }
  6437. #u42398_div {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:65px;
  6443. height:22px;
  6444. background:inherit;
  6445. background-color:rgba(255, 255, 255, 0);
  6446. border:none;
  6447. border-radius:0px;
  6448. -moz-box-shadow:none;
  6449. -webkit-box-shadow:none;
  6450. box-shadow:none;
  6451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6452. font-weight:400;
  6453. font-style:normal;
  6454. font-size:16px;
  6455. }
  6456. #u42398 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:146px;
  6460. top:165px;
  6461. width:65px;
  6462. height:22px;
  6463. display:flex;
  6464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6465. font-weight:400;
  6466. font-style:normal;
  6467. font-size:16px;
  6468. }
  6469. #u42398 .text {
  6470. position:absolute;
  6471. align-self:flex-start;
  6472. padding:0px 0px 0px 0px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u42398_text {
  6477. border-width:0px;
  6478. white-space:nowrap;
  6479. text-transform:none;
  6480. }
  6481. #u42399_div {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:65px;
  6487. height:22px;
  6488. background:inherit;
  6489. background-color:rgba(255, 255, 255, 0);
  6490. border:none;
  6491. border-radius:0px;
  6492. -moz-box-shadow:none;
  6493. -webkit-box-shadow:none;
  6494. box-shadow:none;
  6495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6496. font-weight:400;
  6497. font-style:normal;
  6498. font-size:16px;
  6499. }
  6500. #u42399 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:146px;
  6504. top:207px;
  6505. width:65px;
  6506. height:22px;
  6507. display:flex;
  6508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:16px;
  6512. }
  6513. #u42399 .text {
  6514. position:absolute;
  6515. align-self:flex-start;
  6516. padding:0px 0px 0px 0px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u42399_text {
  6521. border-width:0px;
  6522. white-space:nowrap;
  6523. text-transform:none;
  6524. }
  6525. #u42400_div {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:49px;
  6531. height:17px;
  6532. background:inherit;
  6533. background-color:rgba(255, 255, 255, 0);
  6534. border:none;
  6535. border-radius:0px;
  6536. -moz-box-shadow:none;
  6537. -webkit-box-shadow:none;
  6538. box-shadow:none;
  6539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6540. font-weight:400;
  6541. font-style:normal;
  6542. font-size:12px;
  6543. color:#AAAAAA;
  6544. }
  6545. #u42400 {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:146px;
  6549. top:129px;
  6550. width:49px;
  6551. height:17px;
  6552. display:flex;
  6553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:12px;
  6557. color:#AAAAAA;
  6558. }
  6559. #u42400 .text {
  6560. position:absolute;
  6561. align-self:flex-start;
  6562. padding:0px 0px 0px 0px;
  6563. box-sizing:border-box;
  6564. width:100%;
  6565. }
  6566. #u42400_text {
  6567. border-width:0px;
  6568. white-space:nowrap;
  6569. text-transform:none;
  6570. }